@charset "UTF-8";

/* =========================================
   Variables & Common for Title Page
========================================= */
:root {
  --content-width-title: 980px;
  
  --mdl-pc-txt: 100px;
  --mdl-sp-txt: 14vw;
  --mdm-pc-txt: 90px;
  --mdm-sp-txt: 11vw;
  --title-pc-txt: 46px;
  --title-sp-txt: 7.8vw;
  --date-pc-txt: clamp(16px, 8.0vw, 40px);
  --date-sp-txt: 8.0vw;
  --name-pc-txt: clamp(18px, 1.8vw, 22px);
  --name-sp-txt: 4.0vw;
  --desc-pc-txt: 16px;
  --desc-sp-txt: 3.6vw;
}

.inner-title {
  max-width: var(--content-width-title);
  margin: 0px auto 0;
  padding: 0 20px 100px;
  position: relative;
  z-index: 10;
}

.special-fv {
  width: 100vw;
  height: auto;
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

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

.main-content section {
  padding: 0px 0;
}

/* =========================================
   SPECIAL SECTION
========================================= */
.sec-special-page {
  background-color: var(--color-bg-white);
  color: var(--color-black);
  padding: 60px 0 100px;
  position: relative;
}

/* 白背景の動くノイズレイヤー（MAPページと同じ手法ではみ出し防止） */
.sec-special-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  animation: bg-noise-special 0.4s steps(4) infinite;
}

@keyframes bg-noise-special {
  0% { background-position: 0px 0px; }
  25% { background-position: -40px 60px; }
  50% { background-position: 20px -40px; }
  75% { background-position: -60px 20px; }
  100% { background-position: 40px -20px; }
}

/* 大見出し */
.sec-heading {
  font-family: "purista-web", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: var(--mdl-pc-txt);
  line-height: 0.8;
  margin-top: -20px;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-shadow: none;
  position: relative;
  display: inline-block;
  color: var(--color-black);
}

.sec-heading::before,
.sec-heading::after {
  display: none;
}

/* イントロダクション（FVのすぐ下） */
.special-intro {
  margin-bottom: 80px;
}

.intro-title {
  font-weight: 800;
  font-size: var(--title-pc-txt);
  line-height: 1.2;
  margin-bottom: 20px;
}

.intro-desc {
  font-weight: 500;
  font-size: var(--desc-pc-txt);
  line-height: 1.6;
}

/* 各セクションブロック（RULE / STAMP CARD / NOVELTY） */
.special-block {
  margin-top: 100px;
}

/* 中見出し */
.mdm-heading {
  font-family: "purista-web", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: var(--mdm-pc-txt);
  line-height: 1;
  margin-bottom: 20px;
}

/* ブロック内の説明文 */
.block-desc {
  font-weight: 500;
  font-size: var(--desc-pc-txt);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* スタンプアイテム（黒帯＋テキスト） */
.stamp-item {
  margin-bottom: 40px;
}

.stamp-head {
  background-color: var(--color-black);
  color: var(--color-bg-white);
  font-weight: 800;
  font-size: var(--name-pc-txt);
  padding: 10px 15px;
  margin-bottom: 20px;
}

.stamp-text {
  font-weight: 500;
  font-size: var(--desc-pc-txt);
  line-height: 1.6;
}

/* スタンプ対象タイトルのグレー背景 */
.stamp-bg-box {
  background-color: #ddd;
  padding: 30px;
  margin-top: 40px;
  line-height: 1.6;
  font-weight: 700;
}

.target-title-list dt {
  font-weight: 800;
  font-size: var(--desc-pc-txt);
  margin-top: 15px;
}
.target-title-list dt:first-child {
  margin-top: 0;
}

.target-title-list dd {
  font-weight: 500;
  font-size: var(--desc-pc-txt);
  line-height: 1.6;
  padding-left: 10px;
}

/* COMING SOON ボックス */
.coming-soon-box {
  width: 100%;
  aspect-ratio: 16 / 5;
  background-color: var(--color-bg-black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.coming-soon-box span {
  font-family: "purista-web", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--color-bg-white);
}

/* ノベルティ グリッド */
.novelty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.novelty-item {
  display: flex;
  flex-direction: column;
}

.novelty-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.novelty-name {
  font-weight: 700;
  font-size: var(--desc-pc-txt);
  margin-top: 10px;
  text-align: left;
}

/* =========================================
   モーダル本体
========================================= */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-wrapper.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 5, 0.9);
  cursor: pointer;
}

.modal-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}

.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  border: var(--border-width) solid var(--color-black);
  border-radius: var(--radius);
  background-color: var(--color-bg-white);
}


/* =========================================
   モーダル用ホバースタイル (NOVELTY画像用)
========================================= */
.novelty-thumb {
  cursor: pointer;
}
.novelty-thumb img {
  transition: opacity 0.3s ease;
}
.novelty-thumb:hover img {
  opacity: 0.7;
}





/* =========================================
   SP Media Queries
========================================= */
@media screen and (max-width: 768px) {

  /* ノイズのサイズ調整 */
  .sec-special-page::after {
    background-size: 170px 170px;
    opacity: 0.35;
  }

  .sec-special-page {
    padding: 10vw 0 15vw;
  }

  .inner-title {
    max-width: var(--content-width-sp);
    padding: 0 0 15vw;
  }

  /* 大見出し */
  .sec-heading {
    font-size: var(--mdl-sp-txt);
    margin-top: -3vw;
    margin-bottom: 6vw;
  }

  .special-intro {
    margin-bottom: 12vw;
  }

  .intro-title {
    font-size: var(--title-sp-txt);
    line-height: 1.2;
    margin-bottom: 4vw;
  }

  .intro-desc {
    font-size: var(--desc-sp-txt);
    line-height: 1.6;
  }

  /* セクションブロックの余白 */
  .special-block {
    margin-top: 15vw;
  }

  /* 中見出し */
  .mdm-heading {
    font-size: var(--mdm-sp-txt);
    margin-bottom: 4vw;
  }

  .block-desc {
    font-size: var(--desc-sp-txt);
    margin-bottom: 6vw;
  }

  /* スタンプアイテム */
  .stamp-item {
    margin-bottom: 6vw;
  }

  .stamp-head {
    padding: 1.3vw 2.7vw;
    font-size: var(--name-sp-txt);
    margin-bottom: 2vw;
  }

  .stamp-text {
    font-size: var(--desc-sp-txt);
  }

  .stamp-bg-box {
    padding: 3.4vw;
    margin-top: 5vw;
  }

  .target-title-list dt {
    font-size: var(--desc-sp-txt);
    margin-top: 4vw;
  }
  .target-title-list dd {
    font-size: var(--desc-sp-txt);
    padding-left: 2vw;
  }

  /* COMING SOON ボックス */
  .coming-soon-box {
    aspect-ratio: 16 / 9;
    border-radius: 1.333vw;
  }
  .coming-soon-box span {
    font-size: 6vw;
  }

  /* ノベルティ グリッド */
  .novelty-grid {
    grid-template-columns: 1fr;
    gap: 8vw;
  }

  .novelty-thumb img {
    border-radius: 1.333vw;
  }

  .novelty-name {
    font-size: var(--desc-sp-txt);
    margin-top: 2vw;
  }

  
  .modal-bg {
    height: 100dvh;
  }


}





