@charset "UTF-8";
/*==================================================
** like (ロイネのイイネ)
==================================================*/
/* ページの背景色（他ページと同じベージュ） */
.page-like {
  background: #f6f5f2;
}

#likeSec {
  padding-top: 180px;
  padding-bottom: 100px;
  /* タイトルエリア */
  /* スライダー全体エリア */
}
@media screen and (max-width: 767px) {
  #likeSec {
    padding-top: 25vw;
    padding-bottom: 80px;
  }
}
#likeSec .like-header {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #likeSec .like-header {
    margin-bottom: 3vw;
  }
}
#likeSec .like-header .like-ttl {
  font-size: 3.8rem;
  font-weight: bold;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #likeSec .like-header .like-ttl {
    font-size: 2.8rem;
  }
}
#likeSec .like-header .like-ttl img {
  max-width: 360px;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  #likeSec .like-header .like-ttl img {
    max-width: 280px;
  }
}
#likeSec .like-header .like-ttl .en {
  display: block;
  font-size: 2.2rem;
  color: #e60012;
  font-family: "Gantari", sans-serif;
  margin-top: 5px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #likeSec .like-header .like-ttl .en {
    font-size: 1.6rem;
  }
}
#likeSec .like-slider-sec {
  background: transparent;
  padding: 40px 0;
  width: 100%;
  overflow: hidden;
  /* Swiper本体の設定 */
  /* ==================================
     ページネーション（プログレスバー）
  ================================== */
}
@media screen and (max-width: 767px) {
  #likeSec .like-slider-sec {
    padding: 30px 0;
  }
}
#likeSec .like-slider-sec .swiper-like {
  width: 100%;
}
#likeSec .like-slider-sec .swiper-like .swiper-slide {
  width: 28%;
}
@media screen and (max-width: 767px) {
  #likeSec .like-slider-sec .swiper-like .swiper-slide {
    width: 85%;
  }
}
#likeSec .like-slider-sec .swiper-like .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes progressGrowLike {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
#likeSec .like-slider-sec .swiper-pagination-like {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 1;
  /* 各ボタン（バーの背景枠） */
}
@media screen and (max-width: 767px) {
  #likeSec .like-slider-sec .swiper-pagination-like {
    margin-top: 25px;
  }
}
#likeSec .like-slider-sec .swiper-pagination-like .swiper-pagination-bullet {
  width: 50px;
  height: 4px;
  margin: 0 5px !important;
  border-radius: 0;
  display: block;
  position: relative;
  overflow: hidden;
  /* ★通常時（非アクティブの薄い赤系ベース） */
  background: #ffcccc !important;
  opacity: 1 !important;
  /* 中身のバー（通常時は幅0） */
  /* アクティブ時 */
}
@media screen and (max-width: 767px) {
  #likeSec .like-slider-sec .swiper-pagination-like .swiper-pagination-bullet {
    width: 35px;
    height: 3px;
    margin: 0 3px !important;
  }
}
#likeSec .like-slider-sec .swiper-pagination-like .swiper-pagination-bullet .like-progress-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #e60012; /* ★アクティブで伸びる濃い赤色 */
  z-index: 2;
}
#likeSec .like-slider-sec .swiper-pagination-like .swiper-pagination-bullet-active {
  background: #ffcccc !important; /* ★ベース色と同じままにする */
}
#likeSec .like-slider-sec .swiper-pagination-like .swiper-pagination-bullet-active .like-progress-inner {
  animation: progressGrowLike 4s linear forwards;
}
