@charset 'UTF-8';


/* ====================================================
    BASE & RESET
==================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'M PLUS Rounded 1c', sans-serif;
  color: #2D3748;
  background-color: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ====================================================
    DYNAMIC BACKGROUND DESIGN (Radiant Blobs & Petals)
==================================================== */
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: -1;
  overflow: hidden;
  background: #FFFFFF;
}

/* ブロブ共通設定 */
.hero__blob {
  position: absolute;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, border-radius;
  mix-blend-mode: multiply;
}

/* 1. ピンクブロブ（明るく優しい色調・控えめな動き） */
.hero__blob--1 {
  width: min(75vw, 580px);
  left: -18%;
  top: -18%;
  background: radial-gradient(closest-side, rgba(255, 180, 215, 0.75), rgba(255, 180, 215, 0));
  animation: gum-blob-pink 10s ease-in-out infinite alternate;
}

/* 2. アクアブルー */
.hero__blob--2 {
  width: min(80vw, 640px);
  right: -14%;
  top: -8%;
  background: radial-gradient(closest-side, rgba(64, 224, 255, 0.75), rgba(64, 224, 255, 0));
  animation: gum-blob-2 8s ease-in-out infinite alternate;
}

/* 3. ライムグリーン */
.hero__blob--3 {
  width: min(75vw, 580px);
  left: 10%;
  bottom: -20%;
  background: radial-gradient(closest-side, rgba(180, 255, 80, 0.75), rgba(180, 255, 80, 0));
  filter: blur(20px);
  animation: gum-blob-3 9s ease-in-out infinite alternate;
}

/* 4. サンシャインイエロー */
.hero__blob--4 {
  width: min(68vw, 520px);
  right: 5%;
  bottom: -16%;
  background: radial-gradient(closest-side, rgba(255, 235, 90, 0.8), rgba(255, 235, 90, 0));
  filter: blur(20px);
  animation: gum-blob-2 7s ease-in-out infinite reverse;
}

/* 5. マンダリンオレンジ */
.hero__blob--5 {
  width: min(60vw, 450px);
  left: 32%;
  top: -4%;
  background: radial-gradient(closest-side, rgba(255, 160, 80, 0.75), rgba(255, 160, 80, 0));
  filter: blur(22px);
  animation: gum-blob-2 7.5s ease-in-out infinite reverse;
}

/* 6. ラベンダーパープル */
.hero__blob--6 {
  width: min(55vw, 420px);
  left: 2%;
  bottom: 10%;
  background: radial-gradient(closest-side, rgba(165, 105, 255, 0.65), rgba(165, 105, 255, 0));
  filter: blur(22px);
  animation: gum-blob-3 8.5s ease-in-out infinite reverse;
}

@keyframes gum-blob-pink {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  50% {
    border-radius: 60% 40% 40% 60% / 50% 40% 60% 50%;
    transform: translate(35px, 20px) rotate(45deg) scale(1.05);
  }
  100% {
    border-radius: 35% 65% 55% 45% / 45% 55% 45% 55%;
    transform: translate(-20px, 30px) rotate(90deg) scale(0.96);
  }
}

@keyframes gum-blob-2 {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  50% {
    border-radius: 30% 70% 70% 30% / 50% 60% 40% 50%;
    transform: translate(-100px, 60px) rotate(-180deg) scale(1.1);
  }
  100% {
    border-radius: 50% 50% 20% 80% / 40% 70% 30% 60%;
    transform: translate(40px, -70px) rotate(-360deg) scale(0.92);
  }
}

@keyframes gum-blob-3 {
  0% {
    border-radius: 50% 50% 60% 40% / 40% 60% 40% 60%;
    transform: translate(0px, 0px) scale(1);
  }
  50% {
    border-radius: 80% 20% 40% 60% / 30% 70% 50% 50%;
    transform: translate(70px, -80px) scale(1.18);
  }
  100% {
    border-radius: 30% 70% 50% 50% / 70% 30% 60% 40%;
    transform: translate(-80px, -30px) scale(0.9);
  }
}

/* 花びらパーティクル */
.petal-particle {
  position: absolute;
  width: 16px;
  height: 22px;
  background: linear-gradient(135deg, #FFB7C5 0%, #FF69B4 100%);
  border-radius: 15px 0 15px 15px;
  opacity: 0.85;
  filter: drop-shadow(0 2px 6px rgba(255, 105, 180, 0.35));
  pointer-events: none;
  will-change: transform;
  animation: petalMotion 5s ease-in-out infinite alternate;
}

@keyframes petalMotion {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-30px) translateX(20px) rotate(110deg) scale(1.15);
    opacity: 0.95;
  }
  100% {
    transform: translateY(-60px) translateX(-15px) rotate(220deg) scale(0.9);
    opacity: 0.6;
  }
}

/* ====================================================
    HEADER
==================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 5px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.joyca-brand {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.4rem;
  color: #00a859;
  letter-spacing: -0.5px;
}

.joyca-logo,
.joyca-logo img {
  height: 100%;
}

.logo-badge {
  background: linear-gradient(135deg, #00a859, #028845);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.header-cta-button {
  background: linear-gradient(135deg, #ff3366, #ff6b00);
  color: #fff;
  text-decoration: none;
  padding: 7px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.35);
  transition: all 0.3s ease;
}

.joyca-brand img:hover,
.joyca-brand p:hover,
.joyca-brand span:hover,
.header-cta-button:hover {
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

/* ====================================================
    HERO SECTION (100vh / 100dvh 完全収容 & PC重なり防止)
==================================================== */
.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 55px; /* スクロール誘導用の安全余白 */
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  overflow: hidden;
}

.hero-main-content {
  flex: 1;
  width: 100%;
  max-width: 1050px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
}

.campaign-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #E60012, #FF5E00);
  color: #FFFFFF;
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  font-weight: 900;
  padding: 6px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(230, 0, 18, 0.3);
  border: 2.5px solid #FFFFFF;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  z-index: 2;
  margin-bottom: 0.8rem;
}

/* メインビジュアルフレーム ＆ 背面ホワイト発光 */
.main-visual-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
}

.main-visual-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 110%;
  background: radial-gradient(
    ellipse at center, 
    rgba(255, 255, 255, 0.98) 25%, 
    rgba(255, 255, 255, 0.85) 55%, 
    rgba(255, 255, 255, 0) 80%
  );
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.main-visual-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 40vh; /* PCでテキストと被らない最適高 */
  max-height: 40dvh;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  pointer-events: none;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(ellipse 92% 92% at 50% 50%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  filter: contrast(106%) brightness(103%);
}

.campaign-info-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 28px;
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  max-width: 680px;
  flex-shrink: 0;
  z-index: 2;
}

.campaign-text-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 900;
  color: #1A202C;
  margin-bottom: 2px;
}

.campaign-text-lead mark {
  background: linear-gradient(transparent 60%, #FFDF00 60%);
  color: #E60012;
  padding: 0 4px;
}

.campaign-text-sub {
  font-size: clamp(0.75rem, 1.1vw, 0.88rem);
  font-weight: 700;
  color: #4A5568;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.campaign-text-sub i {
  color: #FF9900;
}

/* ====================================================
    SCROLL INDICATOR (絶対配置 & 上下バウンド)
==================================================== */
.scroll-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: #1A202C;
  font-weight: 800;
  cursor: pointer;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
}

.scroll-hint.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.scroll-hint.is-scrolled-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateX(-50%) translateY(-15px) !important;
  pointer-events: none !important;
}

.scroll-pill {
  /* background: rgba(255, 255, 255, 0.95); */
  background-color:  blueviolet;
  color: #fff;
  padding: 3px 16px;
  border-radius: 30px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
}

.scroll-pill:hover {
  transform: scale(1.1);
}

.scroll-arrow-icon {
  font-size: 1.25rem;
  color: #FF3366;
  animation: verticalBounce 1.5s infinite ease-in-out;
}

@keyframes verticalBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ====================================================
    DETAILS SECTION
==================================================== */
.details-container {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 70px 20px 60px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.04);
  z-index: 10;
}

.inner-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 30px;
  color: #1A202C;
}

.section-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #00A859, #FFD700);
  margin: 12px auto 0;
  border-radius: 10px;
}

/* ====================================================
    重要案内 ＆ 対象ステーション一覧カード
==================================================== */
.station-notice-card {
  background: linear-gradient(135deg, #FFFDF0 0%, #FFF8E1 100%);
  border: 2px solid #FFE082;
  border-radius: 24px;
  padding: 26px 30px;
  margin-bottom: 35px;
  box-shadow: 0 8px 25px rgba(255, 179, 0, 0.1);
  position: relative;
}

.notice-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 900;
  color: #D97706;
  margin-bottom: 10px;
}

.notice-lead-text {
  font-size: 0.98rem;
  font-weight: 700;
  color: #2D3748;
  line-height: 1.6;
  margin-bottom: 18px;
}

.notice-lead-text .highlight-text {
  color: #E60012;
  font-weight: 900;
  background: linear-gradient(transparent 60%, #FFE082 60%);
}

.station-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
}

.station-item-row {
  background: #FFFFFF;
  border: 1.5px solid #FDE68A;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.station-item-row:hover {
  transform: translateY(-2px);
  border-color: #00A859;
  box-shadow: 0 6px 16px rgba(0, 168, 89, 0.15);
}

.station-name-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #1F2937;
}

.station-pin-icon {
  color: #00A859;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.station-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #00A859, #028845);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 168, 89, 0.25);
  transition: all 0.2s ease;
}

.station-detail-btn:hover {
  background: linear-gradient(135deg, #FF3366, #FF6B00);
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.35);
  transform: scale(1.04);
}

/* ====================================================
    概要カード（入会キャンペーンについて／クーポンについて）
==================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #FFFFFF;
  border: 2px solid #EDF2F7;
  border-radius: 24px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
  border-color: #00A859;
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00A859, #028845);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 0 20px 0;
  box-shadow: 0 6px 15px rgba(0, 168, 89, 0.25);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1A202C;
  border-bottom: 2px dashed #E2E8F0;
  padding-bottom: 10px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  font-size: 0.92rem;
  color: #2D3748;
  line-height: 1.6;
}

.info-label {
  display: inline-block;
  font-weight: 800;
  color: #00A859;
  background: #E6F4ED;
  padding: 2px 8px;
  border-radius: 6px;
  margin-right: 6px;
  font-size: 0.85rem;
}

.info-note {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #718096;
  line-height: 1.5;
}

/* サンプル画像サムネイル */
.sample-img-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sample-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  background: #F8FAFC;
}

.sample-img-wrapper:hover {
  transform: translateY(-2px);
  border-color: #00A859;
  box-shadow: 0 8px 20px rgba(0, 168, 89, 0.2);
}

.sample-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.sample-img-wrapper:hover img {
  transform: scale(1.03);
}

.sample-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.sample-img-wrapper:hover .sample-img-overlay {
  opacity: 1;
  background: rgba(0, 168, 89, 0.35);
}

.sample-img-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #1A202C;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ====================================================
    FAQ SECTION (よくある質問 アコーディオン)
==================================================== */
.faq-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 2px solid #EDF2F7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00A859;
  box-shadow: 0 8px 24px rgba(0, 168, 89, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: #FFFFFF;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #F8FAFC;
}

.faq-q-text {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1A202C;
  line-height: 1.5;
}

.faq-q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #FF3366, #FF6B00);
  color: #FFFFFF;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 51, 102, 0.25);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EDF2F7;
  color: #4A5568;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  background: #00A859;
  color: #FFFFFF;
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #F8FAFC;
  border-top: 1px dashed transparent;
}

.faq-item.is-open .faq-answer-wrapper {
  border-top-color: #E2E8F0;
}

.faq-answer {
  padding: 22px 28px 26px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.7;
}

.faq-a-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #00A859, #028845);
  color: #FFFFFF;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 168, 89, 0.25);
}

.faq-a-content {
  flex: 1;
  padding-top: 4px;
}

/* ====================================================
    MODAL POPUP SYSTEM
==================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-content-box {
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 16px;
  max-width: 90vw;
  max-height: 85vh;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.is-active .modal-content-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: #FF3366;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  transform: scale(1.1);
  background: #E60012;
}

.modal-caption-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1A202C;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-img-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: auto;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}

.modal-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.cta-banner {
  background: linear-gradient(135deg, #1A202C, #2D3748);
  color: white;
  border-radius: 28px;
  padding: 45px 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.cta-banner p {
  color: #A0AEC0;
  font-size: 0.98rem;
  margin-bottom: 25px;
}

.cta-button-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF3366, #FF6B00);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
  transition: all 0.3s ease;
}

.cta-button-main:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 51, 102, 0.5);
}

footer {
  background: #0F172A;
  color: #64748B;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.8rem;
}

.contact {
  margin: 0 auto 1rem;
  background-color: yellow;
  color: #333;
  border-radius: 50px;
  display: inline-block;
  padding: 5px 1rem;
  pointer-events: none; 
}

.contact a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fas {
  font-size: 1.5rem;
}

.tel {
  margin: 0 1rem;
  font-size: 15.68px;
  font-weight: bold;
}

.tel br:first-child {
  display: none;
}

/* ====================================================
    MOBILE RESPONSIVE ADJUSTMENTS (スマホ用余白・文字最適化)
==================================================== */
@media (max-width: 768px) {
  header {
    height: 48px;
    padding: 0 14px;
  }

  .logo-brand {
    font-size: 1.15rem;
    gap: 6px;
  }

  .logo-badge {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  .header-cta-button {
    padding: 5px 12px;
    font-size: 0.74rem;
  }

  .hero-container {
    padding-top: 50px;
    padding-bottom: 36px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .campaign-tag {
    font-size: 0.95rem;
    padding: 5px 18px;
    margin-bottom: 1rem;
  }

  .main-visual-frame {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 1rem;
  }

  .main-visual-frame img {
    max-height: 43vh;
    max-height: 43dvh;
  }

  .campaign-info-card {
    padding: 8px 16px;
    border-radius: 14px;
    max-width: 95%;
  }

  .campaign-text-lead {
    font-size: 1.05rem;
  }

  .campaign-text-sub {
    font-size: 0.8rem;
  }

  .scroll-hint {
    bottom: 6px;
  }

  .scroll-pill {
    padding: 3px 14px;
    font-size: 0.7rem;
  }

  .details-container {
    padding: 45px 14px 40px;
    border-radius: 28px 28px 0 0;
  }

  .section-heading {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  /* スマホ時のステーション通知カード */
  .station-notice-card {
    padding: 20px 16px;
    border-radius: 18px;
    margin-bottom: 25px;
  }

  .notice-header-title {
    font-size: 1.05rem;
  }
  .notice-lead-text {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .station-list-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .station-item-row {
    padding: 10px 14px;
  }
  
  .station-name-wrap {
    font-size: 0.88rem;
  }

  .feature-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .card-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .info-item {
    font-size: 0.85rem;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-answer {
    padding: 14px 16px 18px;
    font-size: 0.88rem;
  }

  .faq-q-text {
    font-size: 0.88rem;
    gap: 10px;
  }

  .faq-q-badge, .faq-a-badge {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .cta-banner {
    padding: 30px 16px;
    border-radius: 20px;
  }

  .cta-banner h2 {
    font-size: 1.25rem;
  }

  .cta-button-main {
    font-size: 0.95rem;
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
  }

  .contact {
    pointer-events: initial;
  }

  .tel br:first-child {
    display: block;
  }
}

/* ここから加藤修正Final */
.cta-banner span {
  background-color: #fff;
  color: red;
  padding: 3px 8px;
  border-radius: 20px;
  margin: 0 10px;
}

.campaign-text-lead br {
  display: none;
}

.cta-banner br {
  display: none;
}

.refferal-cord {
  background-color: #fff;
  border: 1.5px solid #fde68a;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  margin-bottom: 14px;
}

.code-name-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #1f2937;
}

.code-key-icon {
  color: #d97706;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.code-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #e60012;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
  background-color: #fff3f3;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px dashed #ffcdd2;
}

@media (max-width: 768px) {
  .joyca-logo {
    height: 80%;
  }

  .logo-badge {
    display: none;
  }
  .campaign-text-lead br {
  display: block;
  } 

  .cta-banner br {
    display: block;
  }

  .cta-banner span {
    margin: 5px 0;
  
  }

  .refferal-cord {
    padding: 10px 14px;
  }

  .code-name-wrap {
    font-size: 0.88rem;
  }

  .code-value {
    font-size: 1.05rem;
    padding: 3px 10px;
  }
}

/* ====================================================
   紹介コード クリックトリガー & ダイアログスタイル
==================================================== */
/* register内のクリック可能テキスト */
.code-link-trigger {
  color: #FFD700;
  /* text-decoration: underline; */
  text-underline-offset: 4px;
  font-weight: 800;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.code-link-trigger:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #FFFFFF;
}

/* ダイアログボックス本体 */
.code-dialog-box {
  width: 90%;
  max-width: 440px;
  padding: 32px 24px 28px;
  text-align: center;
  border-radius: 24px;
}

.code-dialog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.code-dialog-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #FF3366, #FF6B00);
  color: #FFFFFF;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
}

.code-dialog-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #1A202C;
  margin: 0;
}

.code-dialog-desc {
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* 紹介コード表示エリア */
.code-dialog-display {
  background: #FFF5F5;
  border: 2px dashed #FEB2B2;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.code-dialog-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #E53E3E;
}

.code-dialog-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #C53030;
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
  user-select: all; /* クリックで全選択しやすい仕様 */
}

/* 「閉じる」ボタン */
.code-dialog-btn {
  background: #EDF2F7;
  color: #4A5568;
  border: none;
  padding: 10px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.code-dialog-btn:hover {
  background: #E2E8F0;
  color: #1A202C;
}

@media (min-width: 600px) {
  .cta-banner br {
    display: none;
  }
}


