@charset "UTF-8";

/*--------------------------------------------------------------
custom.css
公開後の調整を記載したcss
--------------------------------------------------------------*/
/* ---------------------------------------------------------- */
/* Top-Event */
.top-event {
  background: #957A5D;
}

.top-event.sub .announce-list {
  margin-bottom: 0;
}

.top-event .data-box {
  margin-top: 6.2rem;
  text-align: center;
}

.top-event .data-box .main-img {
  max-width: 107rem;
  margin-bottom: 8.4rem;
}

.top-event .data-box p {
  max-width: max-content;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.top-event .point-box .list-item {
  max-width: 605px;
}

.top-event .data-box .main-img {
  position: relative;
}

.top-event .data-box .main-img {
  padding-bottom: 6rem;
}

.top-event .head-box .jp .small {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.top-event .head-box .jp .fuki {
  width: 185px;
  height: 161px;
  top: -13rem;
  right: -17rem;
}

.top-event .head-box .jp .fuki picture,
.top-event .head-box .jp .fuki img {
  width: 100%;
}

.top-event .head-box .jp .fuki::before,
.top-event .head-box .jp .fuki::after {
  display: none;
}

.top-event .head-box .main-ttl {
  margin-bottom: 4rem;
}

.top-event .point-box h3 {
  background: #957A5D;
}

.top-event .head-box p {
  font-size: 1.8rem;
  line-height: 4.5rem;
}

.top-event .announce-list .list-item .icon.mail {
  background-image: url("../img/top-event_img-03.svg?260514-1015");
}

.top-event .announce-list .list-item .icon.tel {
  background-image: url("../img/top-event_img-04.svg?260514-1015");
}

.top-event .announce-list .list-item .icon.whether {
  background-image: url("../img/top-event_img-05.svg?260514-1015");
}

.top-event .point-box .list-item::before {
  background-image: url("../img/top-event_img-06.svg?260514-1015");
}


/* ページネーション */
.top-event .swiper-horizontal>.swiper-pagination-bullets,
.top-event .swiper-pagination-bullets.swiper-pagination-horizontal,
.top-event .swiper-pagination-custom,
.top-event .swiper-pagination-fraction {
  max-width: 550px;
  width: 56%;
}

.top-event .swiper-pagination {
  position: absolute;
  right: 0;
  left: 0;
  top: auto;
  bottom: 0;
  margin: 0 auto;
}

/* プログレスバー */
.top-event .swiper-pagination-progressbar {
  background: var(--bk-color);
  height: 1px;
  width: 56%;
  margin: 0 auto;
}

.top-event .swiper-pagination-progressbar-fill {
  background: var(--wh-color);
  transition: transform 0.5s ease;
}

@media (max-width: 767px) {
  .top-event.sub .announce-list {
    margin-bottom: 0;
  }

  .top-event .data-box {
    margin-top: 4.3rem;
  }

  .top-event .data-box .main-img {
    margin-bottom: 5.5rem;
  }

  .top-event .data-box .main-img {
    padding-bottom: 3rem;
  }

  .top-event .head-box .jp .small {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
  }

  .top-event .head-box .jp .fuki {
    width: 93px;
    height: 123px;
    right: -5rem;
    top: -12.5rem;
  }

  .top-event .head-box p {
    font-size: 1.3rem;
    line-height: 2.4rem;
  }
}

/* ---------------------------------------------------------- */
/* Fixed */
@media only screen and (min-width: 768px) {
  #fixed {
    display: block;
    max-width: max-content;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    bottom: 5%;
    right: 0;
    z-index: 10001;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    transform: translateX(100%);
  }

  #fixed.is-fixed {
    transform: translateX(0);
  }

  #fixed .fixed-list .list-item:first-of-type {
    display: none;
  }

  #fixed .fixed-list .list-item a {
    padding: 0 3%;
    font-size: 1.4rem;
    line-height: 2.3rem;
    width: 12.3rem;
    height: 12.3rem;
    background: #E0E0E0;
    color: var(--bk-color);
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 20px 0 0 20px;
    position: relative;
    transition: 0.3s;
  }

  #fixed .fixed-list .list-item a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: var(--bk-color);
    line-height: 1;
    width: .9rem;
    height: .9rem;
    border: 1px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
    position: absolute;
    z-index: 2;
    right: 0;
    left: 0;
    bottom: 2.5rem;
    margin: 0 auto;
  }

  #fixed .fixed-list .list-item a:hover {
    opacity: .7;
  }

  #fixed .fixed-list .list-item a span {
    display: inline-block;
    margin-top: -1.5rem;
  }
}

@media (max-width: 767px) {
  #fixed .fixed-list .list-item a::before {
    display: none;
  }
}