/* ============================================
   glamore 8th Anniversary LP
   背景グラデーション: #FFECF4 → #AEE2FF
   ============================================ */

html {
  scroll-behavior: smooth;
}
.sp-br {
  display: block;
}
@media screen and (max-width: 500px) {
  .sp-br {
    display: none;
  }
}
/* ----- 全体 ----- */
body {
  min-height: 100vh;
  color: #4a3728;
}

/* FV以降のグラデーション背景ラッパー */
.main-wrap {
  background: linear-gradient(180deg, #FFECF4 0%, #FFF5F9 15%, #FFECF4 25%, #FFF0F5 35%, #e8f0fa 50%, #c8e4ff 70%, #AEE2FF 100%);
  position: relative;
  overflow: hidden;
}

/* ページ内雲装飾 */
.cloud-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cloud-deco.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: cloudFloat 4s ease-in-out infinite;
}

@keyframes cloudFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes cloudFloatDirect {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.cloud-deco img {
  width: 100%;
  height: auto;
}

.cloud-deco--01 { width: 560px; top: 0%; left: -160px; animation-delay: 0s; }
.cloud-deco--02 { width: 440px; top: 18%; right: -120px; animation-delay: 1.5s; }
.cloud-deco--03 { width: 600px; top: 36%; left: -200px; animation-delay: 0.8s; }
.cloud-deco--04 { width: 500px; top: 54%; right: -140px; animation-delay: 2s; }
.cloud-deco--05 { width: 520px; top: 72%; left: -180px; animation-delay: 0.5s; }
.cloud-deco--06 { width: 460px; top: 90%; right: -100px; animation-delay: 1.2s; }

/* ----- 共通 inner ----- */
.fv__inner,
.summary__inner,
.calendar__inner {
  max-width: 990px;
  margin: 0 auto;
  padding: 0 4%;
}
.detail-block__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 4%;
}

/* ============================================
   FV (ファーストビュー)
   ============================================ */
.fv {
  position: relative;
  padding: 105px 0 180px;
  text-align: center;
  overflow: hidden;
}

.fv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #FFECF4);
  z-index: 1;
  pointer-events: none;
}

/* 雲背景画像 */
.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv__inner {
  position: relative;
  z-index: 1;
}

/* 雲装飾 */
.fv__cloud {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: fvCloudIn 1.2s ease-out forwards;
}

@keyframes fvCloudIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fv__cloud.is-float {
  animation: cloudFloatDirect 4s ease-in-out infinite;
  opacity: 1;
}

.fv__cloud img {
  width: 100%;
  height: auto;
}

.fv__cloud--01 {
  width: 400px;
  top: 210px;
  left: 270px;
  z-index: 1;
  animation-delay: 0.5s;
}

.fv__cloud--03 {
  width: 300px;
  bottom: 40px;
  right: -60px;
  z-index: 1;
  animation-delay: 2s;
}

.fv__title {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.fv__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: titleShine 3.5s ease-in-out infinite;
}

@keyframes titleShine {
  0% { left: -100%; }
  60% { left: 150%; }
  100% { left: 150%; }
}

.fv__title img {
  width: 100%;
  height: auto;
}

.fv__date {
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  color: #b8962e;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 500px) {
  .fv__date {
    display: none;
  }
}

/* ============================================
   記念企画内容（サマリー）- バナー画像版
   ============================================ */
.summary {
  padding: 50px 0 40px;
}

.summary__heading {
  text-align: center;
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 500;
  color: #D7B478;
  letter-spacing: 0.2em;
  margin-bottom: 25px;
  position: relative;
}

.summary__heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #D7B478;
  margin: 10px auto 0;
}

.summary__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary__item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.summary__item:hover {
  transform: translateY(-2px);
}

.summary__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   イベントカレンダー - 画像版
   ============================================ */
.calendar {
  padding: 40px 0 50px;
}

.calendar__heading-ja {
  text-align: center;
  font-size: clamp(28px, 2.2vw, 36px);
  color: #D7B478;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

.calendar__content {
  position: relative;
}

.calendar__heading-en {
  position: absolute;
    top: -60px;
    left: -70px;
    width: 330px;
    z-index: 1;
    pointer-events: none;
}

.calendar__img {
  position: relative;
  z-index: 1;
}

.calendar__img img {
  width: 100%;
  height: auto;
  display: block;
}

.calendar__note {
  text-align: center;
  font-size: clamp(10px, 1.4vw, 12px);
  color: #a09080;
  margin-top: 16px;
}

/* ============================================
   企画詳細ブロック（下部5ブロック）
   縦積みレイアウト: 背景画像 → タイトル → テキスト
   ============================================ */
.detail-block {
  padding: 50px 0 20px;
  position: relative;
}

.detail-block__inner {
  position: relative;
}

/* 日付メダルバッジ（画像） */
.detail-block__date-badge {
  position: absolute;
  top: -30px;
  left: 10px;
  z-index: 2;
  width: 120px;
  height: 120px;
}

.detail-block__date-badge img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(180, 150, 50, 0.3));
}

/* カード本体（背景画像 + タイトル + テキストを1つに） */
.detail-block__visual {
  position: relative;
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 18px;
  border: 1px solid #D7B478;
  padding-top: 230px;
  padding-bottom: 10px;
}

.detail-block__title-img {
  max-width: 460px;
  margin: 0 auto;
}

.detail-block__title-img img {
  width: 100%;
  height: auto;
}

/* テキストエリア */
.detail-block__body {
  padding: 16px 24px 24px;
}

.detail-block__desc {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
  color: #6b5b4b;
  margin-bottom: 24px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 24px;
}
.small-t {
  font-size: 12px;
  max-width: 500px;
  margin: 0 auto 24px;
}

.detail-block__sub-note {
  font-size: clamp(10px, 1.4vw, 12px);
  color: #a09080;
}

.detail-block__links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.detail-block__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(11px, 1.5vw, 13px);
  color: #A0783C;
  border: 1px solid #c4a882;
  border-radius: 20px;
  padding: 14px 30px 14px 20px;
  transition: all 0.3s;
  text-align: center;
  position: relative;
}

.detail-block__link::after {
  content: "→";
  display: inline-block;
  transform: scaleX(1.2);
  margin-left: 4px;
}

.detail-block__link:hover {
  background: linear-gradient(135deg, #b8962e, #d4b44a);
  color: #fff;
  border-color: transparent;
}

#tokuten {
  padding-bottom: 70px;
}

/* ============================================
   スクロール フェードイン
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   セクション装飾ライン
   ============================================ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 0;
}

.section-divider::before,
.section-divider::after {
  content: "";
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D7B478, transparent);
}

.section-divider__diamond {
  width: 8px;
  height: 8px;
  background: #D7B478;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 30px 0;
  text-align: center;
}

.footer__copy {
  font-size: clamp(10px, 1.4vw, 12px);
  color: #a09080;
  letter-spacing: 0.1em;
}


/* ============================================ */

/* ============================================
   レスポンシブ (タブレット)
   ============================================ */
@media screen and (max-width: 768px) {
  /* FV */
  .fv {
    padding: 60px 0 120px;
  }

  .fv__title {
    max-width: 80%;
  }

  /* サマリー */
  .summary {
    padding: 36px 0 30px;
  }

  .summary__heading {
    margin-bottom: 18px;
  }

  /* カレンダー */
  .calendar__heading-en {
    width: 220px;
    top: -40px;
    left: -30px;
  }

  .calendar__heading-ja {
    margin-bottom: 28px;
  }

  /* 詳細ブロック */
  .detail-block {
    padding: 40px 0 16px;
  }

  .detail-block__date-badge {
    width: 140px;
    height: 90px;
    top: -34px;
  }

  .detail-block__visual {
    padding-top: 180px;
  }

  .detail-block__title-img {
    max-width: 360px;
  }

  .detail-block__links {
    gap: 24px;
  }
  .detail-block__visual {
    padding-top: 270px;
  }

  /* ホバー無効化 */
  .summary__item:hover {
    transform: none;
  }

  .detail-block__link:hover {
    background: transparent;
    color: #A0783C;
    border-color: #c4a882;
  }
}

/* ============================================
   レスポンシブ (SP)
   ============================================ */
@media screen and (max-width: 480px) {
  /* FV */
  .fv {
    padding: 40px 0 80px;
  }

  .fv::after {
    height: 80px;
  }

  .fv__title {
    max-width: 90%;
  }

  /* サマリー */
  .summary {
    padding: 24px 0 20px;
  }

  .summary__heading {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .summary__list {
    gap: 8px;
  }

  /* カレンダー */
  .calendar {
    padding: 24px 0 30px;
  }

  .calendar__heading-ja {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .calendar__heading-en {
    width: 160px;
    top: -28px;
    left: -16px;
  }

  /* 詳細ブロック */
  .detail-block {
    padding: 36px 0 12px;
  }

  .detail-block__date-badge {
    width: 84px;
    height: 84px;
    left: 6px;
    top: -28px;
  }

  .detail-block__visual {
    padding-top: 230px;
    border-radius: 12px;
    padding-bottom: 6px;
  }

  .detail-block__title-img {
    max-width: 280px;
  }

  .detail-block__body {
    padding: 12px 14px 16px;
  }

  .detail-block__desc {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .small-t {
    font-size: 10px;
  }

  .detail-block__links {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .detail-block__link {
    font-size: 12px;
    padding: 16px 24px 16px 16px;
    width: 85%;
    justify-content: center;
  }

  /* フッター */
  .footer {
    padding: 20px 0;
  }
}
