/* =============================================
   HAMADA GAKU FUKUOKA HARMONY TOUR
   Navy × Gold × Musical Theme - Complete Version
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --navy-dark:     #0f1419;
  --navy:          #1a2332;
  --navy-mid:      #243447;
  --navy-light:    #2e4057;
  --navy-lighter:  #3a4d66;
  --gold:          #d4a843;
  --gold-light:    #eac97a;
  --gold-bright:   #f5df90;
  --gold-dark:     #9a7820;
  --gold-muted:    #b8922e;
  --silver:        #b8b8c4;
  --silver-light:  #dcdce8;
  --red:           #c0392b;
  --red-bright:    #e74c3c;
  --yellow:        #f1c40f;
  --white:         #f5f5f5;
  --off-white:     #ede8e0;
  --text-primary:   #f0ece4;
  --text-secondary: #c8c4bc;
  --text-muted:     #8a8a96;
  --font-display: 'Cinzel Decorative', serif;
  --font-serif:   'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-jp:      'Noto Serif JP', serif;
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1240px;
  --gutter: clamp(20px, 5vw, 60px);
  --text-xs:   0.875rem;
  --text-sm:   1rem;
  --text-base: 1.125rem;
  --text-md:   1.25rem;
  --text-lg:   1.5rem;
  --text-xl:   1.875rem;
  --text-2xl:  2.25rem;
  --text-3xl:  3rem;
}

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}


html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  background: var(--navy-dark);
  color: var(--text-primary);
  font-family: var(--font-jp);
  line-height: 1.85;
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { 
  max-width: 100%; 
  display: block; 
}

a { 
  color: inherit; 
  text-decoration: none; 
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-dark), var(--gold)); border-radius: 3px; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.6s var(--ease-luxury), opacity 0.6s var(--ease-luxury);
}

.sticky-cta.visible { 
  transform: translateY(0); 
  opacity: 1; 
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 1px solid var(--gold-dark);
  border-radius: 50px;
  padding: 10px 10px 10px 20px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.25), 0 0 0 1px rgba(201,168,76,0.15);
}

.sticky-cta__label {
  font-family: var(--font-jp);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-muted), var(--gold), var(--gold-bright));
  color: var(--navy-dark);
  font-family: var(--font-jp);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 22px;
  border-radius: 40px;
  white-space: nowrap;
  transition: all 0.3s var(--ease-luxury);
  box-shadow: 0 2px 12px rgba(201,168,76,0.3);
}

.sticky-cta__btn:hover {
  box-shadow: 0 0 28px rgba(201,168,76,0.6), 0 4px 16px rgba(201,168,76,0.4);
  transform: scale(1.04);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold-light));
}

.hero__main-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; /* さらに小さく */
  height: 80vh; /* さらに小さく */
  margin: 0;
  padding: 0;
  z-index: 1;
  
  /* 境界線をぼかすフィルター */
  filter: blur(0px);
  -webkit-mask: radial-gradient(ellipse at center, #021334 60%, transparent 85%);
  mask: radial-gradient(ellipse at center, #021334 60%, transparent 85%);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* coverからcontainに変更して全体を表示 */
  display: block;
  border-radius: 12px; /* 角を少し丸く */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* または、より自然なぼかし効果の場合 */
.hero__main-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  box-shadow: 
    inset 0 0 50px rgba(15, 20, 25, 0.3),
    inset 0 0 100px rgba(15, 20, 25, 0.2);
  pointer-events: none;
  z-index: 1;
}


/* PC用／SP用の画像切り替え（レイアウトは元のまま、表示・非表示だけ制御） */
.hero__image:nth-of-type(2){
	display: none;
}

@media screen and (max-width: 1024px){
	.hero__image:nth-of-type(1){
		display: none;
	}
	.hero__image:nth-of-type(2){
		display: block;
	}
}


.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 1rem;
}

.price-table th,
.price-table td {
  padding: 14px 18px;
  text-align: left;
}

/* ヘッダー行：青グラデーション＋白太字 */
.price-table thead th {
  background: #9a7820;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price-table__corner {
  background:#9a7820;
}

/* 左列（プラン名） */
.price-table__plan {
  background: #fff;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  border-right: 1px dashed rgba(0, 0, 0, 0.15);
}

/* 行の区切り線（点線） */
.price-table tbody tr {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

/* 偶数行に薄い縞々 */
.price-table tbody tr:nth-child(even) .price-table__plan,
.price-table tbody tr:nth-child(even) td {
  background: #eef3f9;
}

.price-table tbody td {
  background: #fff;
}

/* スマホ幅対応 */
@media (max-width: 600px) {
  .price-table th,
  .price-table td {
    padding: 10px 10px;
    font-size: 0.9rem;
  }
}






/* heroセクションは全画面のまま */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* 背景グラデーションが見えるようになります */
}
/* キラキラを画像の上に表示 */
.hero__sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3; /* 画像より上に表示 */
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .hero__main-image {
    padding: 0 20px;
  }
}

@keyframes waveFlow {
  0% { background-position-x: 0px; }
  100% { background-position-x: -1200px; }
}

/* ランダムキラキラ */
/* キラキラパーティクル - 修正版 */
.hero__sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3; /* z-indexを上げる */
}

.sparkle {
  position: absolute;
  color: var(--gold-bright);
  animation: sparkleFloat 4s ease-in-out infinite;
  text-shadow: 0 0 15px currentColor;
  display: block; /* 明示的に表示 */
  opacity: 1; /* 初期値を設定 */
}


@keyframes sparkleFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1) rotate(0deg); 
    opacity: 0.6; 
  }
  25% { 
    transform: translateY(-12px) scale(1.4) rotate(90deg); 
    opacity: 1; 
  }
  50% { 
    transform: translateY(-20px) scale(1.1) rotate(180deg); 
    opacity: 0.8; 
  }
  75% { 
    transform: translateY(-8px) scale(1.3) rotate(270deg); 
    opacity: 0.9; 
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 0.15;
    transform: scale(0.7) rotate(0deg);
    filter: blur(0px);
  }

  25% {
    opacity: .5;
  }

  50% {
    opacity: 1;
    transform: scale(1.35) rotate(25deg);
    filter: drop-shadow(0 0 10px rgba(255,255,255,.9));
  }

  75% {
    opacity: .4;
  }
}
/* デバッグ用 - 一時的に背景色を付けて確認 */
.sparkle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 50%;
  z-index: -1;
}

/* レスポンシブでのキラキラ調整 */
@media (max-width: 768px) {
  .sparkle-1 { font-size: 1rem; }
  .sparkle-2 { font-size: 1.4rem; }
  .sparkle-3 { font-size: 1.2rem; }
  .sparkle-4 { font-size: 1.1rem; }
  .sparkle-5 { font-size: 1.3rem; }
  .sparkle-6 { font-size: 0.9rem; }
  .sparkle-7 { font-size: 1.2rem; }
  .sparkle-8 { font-size: 1rem; }
}

.hero__header {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* 写真セクション */
.hero__portrait-frame {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.3s var(--ease-luxury);
}

.hero__header-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.hero__title-group {
  text-align: left;
  position: relative;
}

/* メインタイトル全体をゴールドに */
.hero__main-title {
  font-family: var(--font-jp);
  font-size: clamp(1.8rem, 2.3vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;

  
  /* ゴールドグラデーション */
  background: linear-gradient(
    135deg,
    #b8922e 0%,
    #d4a843 15%,
    #f5df90 30%,
    #eac97a 45%,
    #d4a843 60%,
    #f5df90 75%,
    #eac97a 90%,
    #b8922e 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s ease-in-out infinite;
  
  /* 光沢効果 */
  text-shadow: 
    0 0 30px rgba(212, 168, 67, 0.8),
    0 4px 20px rgba(0, 0, 0, 0.5);
  
  /* 3D効果 */
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* タイトルの光沢効果 */
.hero__main-title::before {
  content: '濱田岳と紡ぐ、福岡ハーモニーの旅';
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #9a7820, #b8922e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -1;
  transform: translate(2px, 2px);
  opacity: 0.3;
}

.text_c{
	text-align: center;
}

@keyframes goldShine {
  0%, 100% { 
    background-position: 0% 50%; 
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)) brightness(1);
  }
  50% { 
    background-position: 100% 50%; 
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5)) brightness(1.2);
  }
}

@keyframes titleGloss {
  0% { 
    transform: translateX(-100%) skewX(-15deg); 
    opacity: 0; 
  }
  50% { 
    transform: translateX(0%) skewX(-15deg); 
    opacity: 1; 
  }
  100% { 
    transform: translateX(100%) skewX(-15deg); 
    opacity: 0; 
  }
}

/* サブタイトル - 通常の色 */
.hero__subtitle {
  font-family: var(--font-jp);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  font-weight: 600;
	text-align: center;
}

.subtitle-glow {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(212, 168, 67, 0.6);
}

.hero__subtitle-sub {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--gold-bright);
  font-style: italic;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	text-align: center;
}

/* ツアー情報 */
.hero__tour-info {
  background: 
    linear-gradient(135deg, 
      rgba(15, 20, 25, 0.95) 0%, 
      rgba(26, 35, 50, 0.9) 100%
    );
  border: 1px solid var(--gold);
  border-radius: 0;
  padding: 25px;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

/* 装飾コーナー */
.hero__tour-info::before,
.hero__tour-info::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold-bright);
}

.hero__tour-info::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.hero__tour-info::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}
.timeline-item__image{
	display: block;
	width: 100%;
	max-width: 480px;
	margin-top: 18px;
	border-radius: var(--radius-md, 12px);
	box-shadow: 0 8px 20px rgba(11, 42, 73, 0.12);
}

@media screen and (max-width: 600px){
	.timeline-item__image{
		max-width: 100%;
	}
}
.hero__date-badge {
  text-align: center;
  position: relative;
}

.date-crown {
  font-size: 2.5rem;
  margin-bottom: 15px;
  animation: crownFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px var(--gold));
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.hero__date-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-bright);
  letter-spacing: 0.3em;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(212, 168, 67, 0.6);
  position: relative;
}

.hero__date-label::before,
.hero__date-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 5px var(--gold);
}

.hero__date-label::before { left: -60px; }
.hero__date-label::after { right: -60px; }

.hero__date-value {
  display: block;
  font-family: var(--font-jp);
  font-size: clamp(0.8rem, 2.0vw, 1.6rem);
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.date-sparkles {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.date-sparkles span {
  font-size: 1.2rem;
  animation: dateSparkle 2s ease-in-out infinite;
}

.date-sparkles span:nth-child(1) { animation-delay: 0s; }
.date-sparkles span:nth-child(2) { animation-delay: 0.7s; }
.date-sparkles span:nth-child(3) { animation-delay: 1.4s; }

@keyframes dateSparkle {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
    opacity: 0.7; 
  }
  50% { 
    transform: scale(1.4) rotate(180deg); 
    opacity: 1; 
  }
}

/* 浮遊オーブ */
.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.6) 0%, rgba(212, 168, 67, 0.2) 70%, transparent 100%);
  animation: orbFloat 12s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.3);
}

.orb-1 { top: 25%; right: 20%; animation-delay: 0s; }
.orb-2 { top: 65%; right: 10%; animation-delay: 3s; }
.orb-3 { top: 85%; right: 30%; animation-delay: 6s; }
.orb-4 { top: 35%; right: 5%; animation-delay: 9s; }

@keyframes orbFloat {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(1); 
    opacity: 0.5; 
  }
  33% { 
    transform: translateY(-30px) translateX(15px) scale(1.2); 
    opacity: 0.8; 
  }
  66% { 
    transform: translateY(-50px) translateX(-10px) scale(0.8); 
    opacity: 1; 
  }
}

/* レスポンシブ調整 */
@media (max-width: 1024px) {
  .hero__header {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero__portrait-frame {
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__title-group {
    text-align: center;
  }
  
  .hero__date-label::before,
  .hero__date-label::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
  
  .hero__portrait-frame {
    height: 300px;
    max-width: 300px;
  }
  
  .hero__tour-info {
    padding: 25px;
  }
  
  .orb {
    width: 8px;
    height: 8px;
  }
  
  /* スマホでキラキラを少し調整 */
  .sparkle {
    font-size: 0.8rem !important;
  }
}
/* ===== SECTION HEADERS ===== */
.section-header { 
  text-align: center; 
  margin-bottom: clamp(48px, 7vw, 80px); 
}

.section-header__eyebrow {
  font-family: var(--font-serif); 
  font-size: 0.75rem; 
  letter-spacing: 0.42em;
  color: var(--gold); 
  margin-bottom: 18px;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 16px;
}

.section-header__eyebrow::before, 
.section-header__eyebrow::after {
  content: ''; 
  display: block; 
  width: 32px; 
  height: 1px; 
  background: var(--gold-dark);
}

.section-header__title {
  font-family: var(--font-jp);
  font-size: clamp(1.75rem, 4.5vw, 2.875rem);
  font-weight: 700; 
  letter-spacing: 0.1em; 
  color: var(--text-primary);
  line-height: 1.35; 
  margin-bottom: 22px;
}

.section-header__line {
  width: 60px; 
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); 
  margin: 0 auto;
}

/* ===== SCROLL REVEAL ===== */
[data-scroll-reveal] {
  opacity: 0; 
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}

[data-scroll-reveal].revealed { 
  opacity: 1; 
  transform: translateY(0); 
}

[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="450"] { transition-delay: 0.45s; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* ===== TOUR POINTS ===== */
.timeline{
    max-width:900px;
    margin:0 auto;
}

.timeline-item{
    position:relative;
    padding-bottom:70px;
}

.timeline-item:last-child{
    padding-bottom:0;
}

.timeline-item__head{
    display:flex;
    flex-direction:column;
    align-items:center;
    margin-bottom:32px;
}

.timeline-item__dot{
    width:16px;
    height:16px;
    border-radius:50%;
    background:var(--gold);
    box-shadow:
    0 0 0 6px rgba(212,168,67,.08),
    0 0 18px rgba(212,168,67,.55);
}

.timeline-item__line{
    width:2px;
    height:70px;
    background:
    linear-gradient(
    to bottom,
    var(--gold),
    rgba(212,168,67,.15)
    );
}

.timeline-item:last-child .timeline-item__line{
    display:none;
}

.timeline-item__number{
    font-family:var(--font-serif);
    font-size:.75rem;
    letter-spacing:.35em;
    color:var(--gold-light);
	margin-top:18px;
}

.timeline-item__content{
    padding:48px;
    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
    );
    border:1px solid rgba(212,168,67,.18);
    backdrop-filter:blur(12px);
    transition:.4s;
}

.timeline-item__content:hover{
    transform:translateY(-6px);
    border-color:var(--gold);
    box-shadow:
    0 20px 60px rgba(0,0,0,.35),
    0 0 40px rgba(212,168,67,.12);
}

.timeline-item__content h3{
    font-size:1.5rem;
    margin-bottom:18px;
    color:var(--gold-light);
    letter-spacing:.08em;
}

.timeline-item__content p{
    color:var(--text-secondary);
    line-height:2;
}


.tour-points {
  position: relative; 
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  overflow: hidden;
}

.tour-points__bg-text {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  font-family: var(--font-display); 
  font-size: clamp(100px, 20vw, 220px); 
  font-weight: 900;
  color: transparent; 
  -webkit-text-stroke: 1px rgba(201,168,76,0.07);
  pointer-events: none; 
  white-space: nowrap; 
  letter-spacing: 0.2em; 
  user-select: none;
}

/* ツアーポイント縦並びリスト */
.points-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

/* 左端の縦ライン */
.points-list::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(201,168,76,0.35) 8%,
    rgba(201,168,76,0.35) 92%,
    transparent 100%
  );
  pointer-events: none;
}

.point-row {
  display: grid;
  grid-template-columns: 72px 56px 1fr;
  align-items: flex-start;
  gap: 0 24px;
  padding: 32px 0 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.35s var(--ease-luxury);
}

.point-row:last-child { 
  border-bottom: none; 
}

.point-row:hover { 
  background: rgba(201,168,76,0.03); 
}

/* 番号 */
.point-row__num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 6px;
  text-align: center;
  transition: filter 0.35s;
  position: relative;
  z-index: 1;
}

.point-row:hover .point-row__num {
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.6));
}

/* アイコン */
.point-row__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 4px;
  opacity: 0.8;
  transition: opacity 0.35s, transform 0.35s var(--ease-luxury);
}

.point-row:hover .point-row__icon {
  opacity: 1;
  transform: scale(1.1);
}

/* テキスト本体 */
.point-row__body {
  padding-right: 16px;
}

.point-row__title {
  font-family: var(--font-jp);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  transition: color 0.35s;
}

.point-row:hover .point-row__title { 
  color: var(--gold-light); 
}

.point-row__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.95;
}

/* リードポイント（特別強調） */
.point-row--lead {
  display: block;
  padding: 56px 64px;
  margin-bottom: 48px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.13) 0%,
    rgba(26, 35, 50, 0.6) 50%,
    rgba(201, 168, 76, 0.10) 100%
  );
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(201, 168, 76, 0.12),
    0 8px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 60px rgba(201, 168, 76, 0.04);
  animation: leadFadeIn 1.2s var(--ease-luxury) both;
}

/* 左縦ライン */
.point-row--lead::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 3px; 
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold) 20%,
    var(--gold-light) 50%,
    var(--gold) 80%,
    transparent 100%
  );
}

/* 右縦ライン */
.point-row--lead::after {
  content: '';
  position: absolute;
  top: 0; 
  right: 0;
  width: 3px; 
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold) 20%,
    var(--gold-light) 50%,
    var(--gold) 80%,
    transparent 100%
  );
}

.point-row--lead .point-row__lead-inner {
  position: relative;
  padding: 32px 0;
}

.point-row--lead .point-row__lead-inner::before,
.point-row--lead .point-row__lead-inner::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 76, 0.5) 20%,
    var(--gold-light) 50%,
    rgba(201, 168, 76, 0.5) 80%,
    transparent
  );
  position: absolute;
  left: 0;
}

.point-row--lead .point-row__lead-inner::before { 
  top: 0; 
}

.point-row--lead .point-row__lead-inner::after { 
  bottom: 0; 
}

.point-row__lead-text {
  font-family: var(--font-jp);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 2.1;
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

@keyframes leadFadeIn {
  from { 
    opacity: 0; 
    transform: translateY(24px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

.point-row__fig {
  margin: 16px auto 0;
  text-align: center;
  width: 50%;
}

.point-row__fig img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.point-row__fig-caption {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  margin-top: 6px;
  opacity: 0.7;
}
.timeline-item__images{
	display: flex;
	gap: 16px;
	margin-top: 18px;
	width: 100%;
}

.timeline-item__image{
	display: block;
	width: 100%;
	min-width: 0;          /* ← これを追加：flexアイテムの縮小を妨げる初期値をリセット */
	flex: 1 1 0;
	border-radius: var(--radius-md, 12px);
	box-shadow: 0 8px 20px rgba(11, 42, 73, 0.12);
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

@media screen and (max-width: 600px){
	.timeline-item__images{
		flex-direction: column;
	}
}
/* ===== REQUIREMENTS ===== */
.requirements {
  position: relative; 
  padding: var(--section-padding) 0;
  background: var(--navy);
}

.requirements__deco-line {
  position: absolute; 
  left: 0; 
  right: 0; 
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
}

.requirements__deco-line--top { 
  top: 0; 
}

.requirements__deco-line--bottom { 
  bottom: 0; 
}

.req-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 60px; 
}

.req-table { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
}

.req-row {
  display: grid; 
  grid-template-columns: 220px 1fr; 
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); 
  padding: 28px 0;
}

.req-row:first-child { 
  border-top: 1px solid rgba(255,255,255,0.08); 
}

.req-label {
  font-family: var(--font-jp); 
  font-size: var(--text-sm); 
  font-weight: 700;
  color: var(--gold-light); 
  letter-spacing: 0.06em;
  padding-right: 24px; 
  padding-top: 2px; 
  align-self: start;
}

.req-value { 
  font-size: var(--text-base); 
  color: var(--text-primary); 
  line-height: 1.85; 
}

.req-badge {
  display: inline-block; 
  padding: 5px 16px; 
  font-size: var(--text-xs);
  font-weight: 700; 
  letter-spacing: 0.06em; 
  border-radius: 2px; 
  margin-bottom: 10px;
}

.req-badge--closed {
  background: rgba(192,57,43,0.22); 
  border: 1px solid rgba(192,57,43,0.55); 
  color: var(--red-bright);
}

.req-small { 
  display: block; 
  font-size: var(--text-sm); 
  margin-bottom: 10px; 
  color: var(--text-primary); 
}

.req-note { 
  font-size: var(--text-xs); 
  color: var(--text-secondary); 
  line-height: 1.75; 
  margin-top: 8px; 
}

.req-price {
  display: block; 
  font-family: var(--font-body); 
  font-size: 2.0rem; 
  font-weight: 600;
  color: var(--gold-light); 
  line-height: 1; 
  margin-bottom: 10px; 
  letter-spacing: -0.02em;
}

.req-price-unit { 
  font-size: 1rem; 
}

.req-highlight { 
  color: var(--gold-light); 
  font-weight: 700; 
}

.req-single {
  display: flex; 
  align-items: center; 
  gap: 16px; 
  margin-top: 14px; 
  padding: 14px 20px;
  background: rgba(201,168,76,0.07); 
  border-left: 2px solid var(--gold-dark);
}

.req-single-label { 
  font-size: var(--text-xs); 
  color: var(--text-secondary); 
}

.req-single-price { 
  font-weight: 700; 
  color: var(--text-primary); 
  font-size: var(--text-base); 
}

/* ===== HOTELS ===== */
.hotel-section__title {
  font-family: var(--font-jp); 
  font-size: var(--text-md); 
  font-weight: 700;
  color: var(--gold-light); 
  letter-spacing: 0.1em; 
  margin-bottom: 28px;
  padding-bottom: 14px; 
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.hotel-card {
  display: grid; 
  grid-template-columns: 300px 1fr; 
  gap: 32px; 
  padding: 32px;
  background: var(--navy-light); 
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px; 
  transition: border-color 0.3s;
}

.hotel-card:hover { 
  border-color: rgba(201,168,76,0.25); 
}

.hotel-card__images { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}

.hotel-card__images img { 
  width: 100%; 
  object-fit: cover; 
  height: 130px; 
}

.hotel-card__images--single img { 
  height: 270px; 
}

.hotel-card__location {
  font-family: var(--font-serif); 
  font-size: 0.7rem;
  letter-spacing: 0.22em; 
  color: var(--gold); 
  margin-bottom: 10px;
}

.hotel-card__name {
  font-family: var(--font-jp); 
  font-size: var(--text-md); 
  font-weight: 700;
  color: var(--text-primary); 
  margin-bottom: 10px; 
  line-height: 1.55;
}

.hotel-card__name span { 
  font-size: var(--text-sm); 
  font-weight: 400; 
  color: var(--text-secondary); 
}

.hotel-card__room { 
  font-size: var(--text-xs); 
  color: var(--gold-muted); 
  margin-bottom: 14px; 
}

.hotel-card__desc, 
.hotel-card__access {
  font-size: var(--text-sm); 
  color: var(--text-secondary); 
  line-height: 1.85; 
  margin-bottom: 10px;
}

.hotel-card__note { 
  font-size: var(--text-xs); 
  color: rgba(201,168,76,0.65); 
}

/* ===== TALK EVENTS ===== */
.talk-events {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
}

.talk-event-card {
  display: grid; 
  grid-template-columns: 380px 1fr; 
  gap: 64px;
  margin-bottom: 88px; 
  padding-bottom: 88px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.talk-event-card:last-child { 
  border-bottom: none; 
  margin-bottom: 0; 
  padding-bottom: 0; 
}

.talk-event-card--reverse { 
  grid-template-columns: 1fr 380px; 
}

.talk-event-card--reverse .talk-event-card__media { 
  order: 2; 
}

.talk-event-card--reverse .talk-event-card__body { 
  order: 1; 
}

.talk-event-card__img-wrap { 
  position: relative; 
  overflow: hidden; 
  aspect-ratio: 4/5; 
}

.talk-event-card__img-wrap img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.talk-event-card__img-wrap:hover img { 
  transform: scale(1.05); 
}

.talk-event-card__img-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
}

.talk-event-card__caption {
  font-size: var(--text-xs); 
  color: var(--text-muted); 
  margin-top: 10px; 
  letter-spacing: 0.05em;
}

.talk-event-card__photo-strip img {
  width: 100%; 
  margin-top: 12px; 
  border: 1px solid rgba(201,168,76,0.18);
}

.talk-event-card__eyebrow {
  font-family: var(--font-serif); 
  font-size: 0.7rem; 
  letter-spacing: 0.38em;
  color: var(--gold); 
  margin-bottom: 14px; 
  display: flex; 
  align-items: center; 
  gap: 12px;
}

.talk-event-card__eyebrow::before {
  content: ''; 
  display: block; 
  width: 24px; 
  height: 1px; 
  background: var(--gold);
}

.talk-event-card__name {
  font-family: var(--font-jp); 
  font-size: clamp(1.25rem, 2.8vw, 1.75rem); 
  font-weight: 700;
  color: var(--text-primary); 
  margin-bottom: 18px; 
  line-height: 1.45;
}

.talk-event-card__date {
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-size: var(--text-sm);
  color: var(--gold-light); 
  margin-bottom: 24px; 
  padding: 12px 18px;
  border: 1px solid rgba(201,168,76,0.25); 
  background: rgba(201,168,76,0.07);
  backdrop-filter: blur(4px);
}

.talk-event-card__text {
  font-size: var(--text-base); 
  color: var(--text-secondary); 
  line-height: 2; 
  margin-bottom: 32px;
}

.talk-event-card__profile {
  padding: 28px; 
  background: rgba(255,255,255,0.03); 
  border-left: 2px solid var(--gold-dark);
}

.talk-event-card__profile-title {
  font-family: var(--font-serif); 
  font-size: 0.72rem; 
  letter-spacing: 0.22em;
  color: var(--gold); 
  margin-bottom: 14px; 
  text-transform: uppercase;
}

.talk-event-card__profile-text {
  font-size: var(--text-sm); 
  color: var(--text-secondary); 
  line-height: 1.95;
}

/* ===== SACRED SITES ===== */
.sacred-sites { 
  padding: var(--section-padding) 0; 
  background: var(--navy-dark); 
  position: relative; 
  overflow: hidden; 
}

.sacred-sites__bg-text {
  position: absolute; 
  bottom: -40px; 
  right: -40px;
  font-family: var(--font-display); 
  font-size: clamp(120px, 25vw, 300px); 
  font-weight: 900;
  color: transparent; 
  -webkit-text-stroke: 1px rgba(201,168,76,0.05);
  pointer-events: none; 
  user-select: none; 
  line-height: 1;
}

.day-group { 
  margin-bottom: 64px; 
}

.day-group__header {
  display: flex; 
  align-items: baseline; 
  gap: 22px; 
  margin-bottom: 30px;
  padding-bottom: 18px; 
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

.day-group__date {
  font-family: var(--font-body); 
  font-size: 2.1rem; 
  font-style: italic;
  color: var(--gold-light); 
  letter-spacing: 0.05em;
}

.day-group__city { 
  font-family: var(--font-serif); 
  font-size: 0.75rem; 
  letter-spacing: 0.42em; 
  color: var(--silver-light); 
}

.sites-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); 
  gap: 22px; 
}

.sites-grid--single { 
  grid-template-columns: 1fr; 
}

.site-card { 
  background: var(--navy-mid); 
  border: 1px solid rgba(255,255,255,0.07); 
  overflow: hidden; 
  transition: border-color 0.4s, box-shadow 0.4s; 
}

.site-card:hover { 
  border-color: rgba(201,168,76,0.28); 
  box-shadow: 0 14px 44px rgba(0,0,0,0.5); 
}

.site-card--wide { 
  display: grid; 
  grid-template-columns: 40% 1fr; 
}

.site-card__img-wrap { 
  position: relative; 
  overflow: hidden; 
  height: 210px; 
}

.site-card--wide .site-card__img-wrap { 
  height: 100%; 
}

.site-card__img-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.7s var(--ease-luxury); 
}

.site-card:hover .site-card__img-wrap img { 
  transform: scale(1.08); 
}

.site-card__overlay {
  position: absolute; 
  inset: 0; 
  background: rgba(0,0,0,0.45);
  display: flex; 
  align-items: flex-end; 
  padding: 12px; 
  opacity: 0; 
  transition: opacity 0.4s;
}

.site-card:hover .site-card__overlay { 
  opacity: 1; 
}

.site-card__overlay-text { 
  font-size: var(--text-xs); 
  color: var(--silver-light); 
}

.site-card__featured-badge {
  position: absolute; 
  top: 12px; 
  right: 12px; 
  padding: 5px 14px;
  font-size: var(--text-xs); 
  font-family: var(--font-serif); 
  letter-spacing: 0.1em; 
  z-index: 2;
}

.site-card--featured .site-card__featured-badge { 
  background: var(--gold); 
  color: var(--navy-dark); 
  font-weight: 700; 
}

.site-card__featured-badge--gold { 
  background: var(--gold); 
  color: var(--navy-dark); 
  font-weight: 700; 
}

.site-card__featured-badge--red { 
  background: var(--red); 
  color: var(--white); 
  font-weight: 700; 
}

.site-card__body { 
  padding: 22px; 
}

.site-card--wide .site-card__body { 
  padding: 32px 36px; 
}

.site-card__name { 
  font-family: var(--font-jp); 
  font-size: var(--text-md); 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 5px; 
  line-height: 1.45; 
}

.site-card__en { 
  display: block; 
  font-family: var(--font-serif); 
  font-size: 0.68rem; 
  letter-spacing: 0.16em; 
  color: var(--gold-dark); 
  margin-bottom: 14px; 
}

.site-card__desc { 
  font-size: var(--text-sm); 
  color: var(--text-secondary); 
  line-height: 1.9; 
  margin-bottom: 10px; 
}

.site-card__note { 
  display: block; 
  font-size: var(--text-xs); 
  color: rgba(201,168,76,0.6); 
  margin-top: 10px; 
}

.site-card__extra-img { 
  margin-top: 18px; 
}

.site-card__extra-img img { 
  width: 100%; 
  margin-bottom: 8px; 
}

.site-card__extra-img span { 
  font-size: var(--text-xs); 
  color: var(--text-muted); 
}

/* ===== SITE LIST ===== */
.site-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.site-list::before {
  content: '';
  position: absolute;
  left: 200px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201,168,76,0.25) 5%,
    rgba(201,168,76,0.25) 95%,
    transparent 100%
  );
  pointer-events: none;
}

.site-list__item {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0 48px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background 0.4s var(--ease-luxury);
}

.site-list__item:last-child { 
  border-bottom: none; 
}

.site-list__item:hover { 
  background: rgba(201,168,76,0.02); 
}

.site-list__date-badge {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  padding: 4px 20px;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

.site-list__img-wrap {
  position: relative;
  overflow: hidden;
  align-self: start;
}

.site-list__img-wrap > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-luxury);
}

.site-list__item:hover .site-list__img-wrap > img {
  transform: scale(1.04);
}

.site-list__img-sub {
  margin-top: 8px;
}

.site-list__img-sub img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.site-list__img-sub span {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.6;
}

.site-list__img-caption {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 8px;
}

.site-list__body {
  align-self: center;
  padding: 8px 0;
}

.site-list__name {
  font-family: var(--font-jp);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  transition: color 0.35s;
}

.site-list__item:hover .site-list__name { 
  color: var(--gold-light); 
}

.site-list__en {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.site-list__desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 14px;
}

.site-list__note {
  display: block;
  font-size: var(--text-xs);
  color: rgba(201,168,76,0.55);
}

/* フレディ特別レイアウト */
.site-list__item--freddie {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 48px 0;
}

.freddie-gallery__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.freddie-gallery__main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.freddie-gallery__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.freddie-gallery__sub img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.freddie-gallery__logo-wrap {
  display: flex;
  justify-content: center;
  padding: 16px 0 8px;
}

.freddie-gallery__logo-wrap img {
  width: 40%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.freddie-gallery__body {
  padding-top: 8px;
}

.freddie-gallery__main figure,
.freddie-gallery__sub figure {
  margin: 0;
}

.site-list__item--freddie .site-list__img-caption {
  display: block;
  text-align: right;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== ITINERARY ===== */
.itinerary { 
  padding: var(--section-padding) 0; 
  background: linear-gradient(180deg, var(--navy), var(--navy-mid)); 
}

.itinerary-note {
  background: transparent;
  border: none;
  border-left: 2px solid rgba(154, 120, 32, 0.3);
  padding: 0 0 0 20px;
  margin-bottom: 40px;
  font-size: var(--text-sm);
  color: #7a6440;
  line-height: 2;
}

.itinerary-note p { 
  margin-bottom: 2px; 
}

.itinerary-table-wrap { 
  overflow-x: auto; 
}

.itinerary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  min-width: 820px;
  background: #f7f2ea;
}

.itinerary-table thead tr {
  border-bottom: 2px solid #9a7820;
}

.itinerary-table th {
  background: transparent;
  color: #9a7820;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 14px 16px;
  white-space: nowrap;
}

.itinerary-table td {
  padding: 13px 16px;
  border-bottom: none;
  color: #3d2c0a;
  vertical-align: top;
  line-height: 1.8;
  background: #f7f2ea;
  font-size: 15px;
}

.itinerary-table__day-row > td:first-child {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  color: #9a7820;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  background: #f7f2ea;
  padding: 20px 12px;
}

.itinerary-table__day-row td {
  border-top: 2px solid #c9a84c;
  padding-top: 24px;
}

.itinerary-table__day-row:first-child td {
  border-top: none;
}

.itinerary-table__hotel {
  color: #9a7820 !important;
  font-style: italic;
  font-size: var(--text-xs) !important;
  background: #f7f2ea !important;
  padding-bottom: 20px !important;
}

.itinerary-table strong {
  color: #7a1e10;
  font-weight: 700;
}

.itinerary-table tbody tr:hover td {
  background: #f7f2ea !important;
}

.itinerary-table th,
.itinerary-table td {
  border-right: 1px solid rgba(154, 120, 32, 0.2);
}

.itinerary-table th:last-child,
.itinerary-table td:last-child {
  border-right: none;
}

.table_outer {
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* ===== PRICING ===== */
.pricing-details { 
  padding: var(--section-padding) 0; 
  background: var(--navy); 
}

.pricing-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
  margin-bottom: 64px; 
}

.pricing-card { 
  padding: 40px; 
  border: 1px solid rgba(255,255,255,0.08); 
  background: var(--navy-light); 
}

.pricing-card--included { 
  border-top: 2px solid var(--gold); 
}

.pricing-card--excluded { 
  border-top: 2px solid var(--silver); 
}

.pricing-card__title {
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-family: var(--font-jp);
  font-size: var(--text-md); 
  font-weight: 700; 
  margin-bottom: 28px; 
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-card--included .pricing-card__title { 
  color: var(--gold-light); 
}

.pricing-card--excluded .pricing-card__title { 
  color: var(--silver-light); 
}

.pricing-card__list { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  margin-bottom: 18px; 
}

.pricing-card__list li {
  font-size: var(--text-sm); 
  color: var(--text-secondary);
  padding-left: 22px; 
  position: relative; 
  line-height: 1.75;
}

.pricing-card__list li::before {
  content: ''; 
  position: absolute; 
  left: 0; 
  top: 11px; 
  width: 8px; 
  height: 1px; 
  background: var(--gold-dark);
}

.pricing-card__note { 
  font-size: var(--text-xs); 
  color: rgba(255,255,255,0.35); 
  line-height: 1.75; 
  margin-top: 8px; 
}

.pricing-notes { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
}

.pricing-note-block { 
  padding: 28px; 
  border: 1px solid rgba(255,255,255,0.06); 
  background: rgba(255,255,255,0.02); 
}

.pricing-note-block h4 {
  font-family: var(--font-jp); 
  font-size: var(--text-sm); 
  font-weight: 700;
  color: var(--gold-light); 
  margin-bottom: 14px; 
  padding-bottom: 10px; 
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.pricing-note-block p, 
.pricing-note-block li {
  font-size: var(--text-xs); 
  color: var(--text-secondary); 
  line-height: 1.85; 
  margin-bottom: 8px;
}

.pricing-note-block ul { 
  list-style: disc; 
  padding-left: 20px; 
}

.pricing-note-block ul.disc {
  list-style: disc;
  padding-left: 20px;
}

.pricing-note-block ul.list {
  list-style: decimal;
  padding-left: 20px;
}

.red_b {
  color: var(--red-bright);
  font-weight: bold;
}

/* ===== CANCELLATION ===== */
.cancellation { 
  padding: var(--section-padding) 0; 
  background: var(--navy-mid); 
}

.cancel-block { 
  max-width: 820px; 
  margin: 0 auto; 
}

.cancel-block__intro { 
  font-size: var(--text-base); 
  color: var(--text-secondary); 
  margin-bottom: 28px; 
  line-height: 1.85; 
}

.cancel-block__subtitle { 
  font-family: var(--font-jp); 
  font-size: var(--text-md); 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 14px; 
}

.cancel-table { 
  width: 100%; 
  border-collapse: collapse; 
  margin: 22px 0 28px; 
}

.cancel-table td {
  padding: 18px 22px; 
  border: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-base); 
  color: var(--text-secondary); 
  vertical-align: middle; 
  line-height: 1.7;
}

.cancel-table__rate {
  text-align: center; 
  font-size: var(--text-md); 
  color: var(--text-primary);
  white-space: nowrap; 
  background: rgba(201,168,76,0.06);
}

.cancel-table__rate strong { 
  color: var(--gold-light); 
  font-size: 1.4rem; 
}

.cancel-table__rate--full { 
  background: rgba(192,57,43,0.1); 
}

.cancel-table__rate--full strong { 
  color: var(--red-bright); 
}

.cancel-notes p { 
  font-size: var(--text-xs); 
  color: var(--text-secondary); 
  margin-bottom: 6px; 
  line-height: 1.75; 
}

/* ===== APPLY STEPS ===== */
.apply-steps { 
  padding: var(--section-padding) 0; 
  background: var(--navy-dark); 
}

.steps-flow { 
  max-width: 820px; 
  margin: 0 auto; 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
}

.step-item { 
  padding: 40px 0 40px 72px; 
  position: relative; 
}

.step-item::before {
  content: ''; 
  position: absolute; 
  left: 26px; 
  top: 0; 
  bottom: 0; 
  width: 1px;
  background: linear-gradient(180deg, rgba(201,168,76,0.35), rgba(201,168,76,0.12));
}

.step-item:first-child::before { 
  top: 44px; 
}

.step-item:last-child::before { 
  bottom: calc(100% - 44px); 
}

.step-item__number {
  position: absolute; 
  left: 0; 
  top: 40px; 
  width: 52px; 
  height: 52px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  font-family: var(--font-serif); 
  font-size: 0.48rem; 
  letter-spacing: 0.2em;
  color: var(--navy-dark); 
  font-weight: 700; 
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
}

.step-item__number span { 
  font-size: 1.2rem; 
  line-height: 1; 
  letter-spacing: 0; 
  font-family: var(--font-body); 
  font-style: italic; 
}

.step-item__title { 
  font-family: var(--font-jp); 
  font-size: var(--text-lg); 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 14px; 
}

.step-item__text { 
  font-size: var(--text-base); 
  color: var(--text-secondary); 
  line-height: 1.95; 
  margin-bottom: 14px; 
}

.step-item__text p { 
  margin-bottom: 10px; 
}

.step-item__text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

.step-item__text ul li {
  margin-bottom: 8px;
}

.step-item__note {
  background: rgba(201,168,76,0.05); 
  border-left: 2px solid rgba(201,168,76,0.25);
  padding: 18px 22px; 
  font-size: var(--text-xs); 
  color: var(--text-secondary); 
  line-height: 1.85;
}

.step-item__note p { 
  margin-bottom: 6px; 
}

.step-item__closed {
  display: inline-block; 
  padding: 5px 14px; 
  background: rgba(192,57,43,0.17);
  border: 1px solid rgba(192,57,43,0.45); 
  color: var(--red-bright); 
  font-weight: 700;
  font-size: var(--text-sm); 
  letter-spacing: 0.06em; 
  margin: 10px 0;
}

.step-connector { 
  display: none; 
}

.bank-info {
  background: rgba(255,255,255,0.03); 
  border: 1px solid rgba(255,255,255,0.07);
  padding: 18px 22px; 
  margin: 14px 0; 
  font-size: var(--text-sm); 
  color: var(--text-primary); 
  line-height: 2;
}

.step-note__period {
  text-align: center;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  padding: 4px 0 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 20px;
}

.step-note__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--gold-muted), var(--gold), var(--gold-bright));
  color: var(--navy-dark);
  font-family: var(--font-jp);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
  transition: box-shadow 0.3s var(--ease-luxury), transform 0.3s var(--ease-luxury), background 0.3s;
}

.step-note__btn:hover {
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.6), 0 4px 16px rgba(201, 168, 76, 0.4);
  transform: scale(1.04);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold-light));
}

.step-note__btn span,
.step-note__btn svg {
  position: relative;
  z-index: 1;
}

/* ===== CONTACT ===== */
.contact { 
  padding: var(--section-padding) 0; 
  background: linear-gradient(180deg, var(--navy-mid), var(--navy)); 
}

.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
  margin-bottom: 44px; 
}

.contact-card { 
  padding: 40px; 
  background: var(--navy-light); 
  border: 1px solid rgba(255,255,255,0.08); 
}

.contact-card__title {
  font-family: var(--font-jp); 
  font-size: var(--text-md); 
  font-weight: 700;
  color: var(--gold-light); 
  margin-bottom: 24px; 
  padding-bottom: 14px; 
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

.contact-card__body { 
  font-size: var(--text-sm); 
  color: var(--text-secondary); 
  line-height: 2; 
}

.contact-card__company { 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 5px; 
}

.contact-card__tour-name { 
  color: var(--text-primary); 
  margin-bottom: 10px; 
  line-height: 1.65; 
}

.contact-card__domain-note { 
  font-size: var(--text-xs); 
  color: var(--gold-muted); 
}

.contact-card__notes { 
  list-style: disc; 
  padding-left: 20px; 
  font-size: var(--text-xs); 
  margin-top: 10px; 
}

.contact-card__notes li { 
  margin-bottom: 5px; 
}

.contact-card__manager { 
  font-size: var(--text-xs); 
  color: rgba(255,255,255,0.45); 
  margin-top: 14px; 
  line-height: 1.75; 
}

.contact-link { 
  color: var(--gold-light); 
  text-decoration: underline; 
  text-underline-offset: 3px; 
}

.contact-logo img { 
  max-width: 250px; 
  margin-bottom: 18px; 
  filter: brightness(0.95); 
}

.contact-card__privacy { 
  margin-top: 22px; 
  padding-top: 18px; 
  border-top: 1px solid rgba(255,255,255,0.05); 
  font-size: var(--text-xs); 
  color: var(--text-secondary); 
}

.contact-card__privacy h4 { 
  font-size: var(--text-xs); 
  color: var(--gold-muted); 
  margin-bottom: 8px; 
}

.contact-card__links { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  margin-top: 18px; 
  padding-top: 18px; 
  border-top: 1px solid rgba(255,255,255,0.05); 
}

.contact-card__links a { 
  font-size: var(--text-xs); 
  color: var(--text-secondary); 
  padding: 5px 12px; 
  border: 1px solid rgba(255,255,255,0.1); 
  transition: color 0.3s, border-color 0.3s; 
}

.contact-card__links a:hover { 
  color: var(--gold-light); 
  border-color: rgba(201,168,76,0.35); 
}

.registration-info { 
  text-align: center; 
  font-size: var(--text-xs); 
  color: rgba(255,255,255,0.25); 
  padding-top: 28px; 
  border-top: 1px solid rgba(255,255,255,0.05); 
}

/* ===== FOOTER ===== */
.footer { 
  background: var(--navy-light); 
  border-top: 1px solid rgba(201,168,76,0.12); 
  padding: 56px 20px; 
  text-align: center; 
}

.footer__crown { 
  font-size: 2.2rem; 
  color: var(--gold); 
  margin-bottom: 14px; 
  opacity: 0.7; 
  display: block; 
}

.footer__copy { 
  font-size: var(--text-xs); 
  color: var(--text-secondary); 
  margin-bottom: 10px; 
  letter-spacing: 0.06em; 
  text-align: center;
}

.footer__company { 
  font-size: var(--text-xs); 
  color: rgba(255,255,255,0.28); 
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ===== UTILITY CLASSES ===== */
.parallax { 
  will-change: transform; 
}

.mini-photo { 
  margin: 28px 0; 
}

.mini-photo img { 
  max-width: 320px; 
}

.mini-photo figcaption { 
  font-size: var(--text-xs); 
  color: var(--text-muted); 
  margin-top: 8px; 
}

.fwb {
  font-weight: bold;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

/* ===== SEMINAR BANNER ===== */
.seminar-banner {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  background: var(--navy);
  border: 1px solid var(--gold);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
  max-width: 560px;
  width: 100%;
  box-sizing: border-box;
}

.seminar-banner:hover {
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.45);
  transform: translateY(-2px);
}

.seminar-banner__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  border-right: 1px solid rgba(212, 168, 67, 0.35);
  padding-right: 20px;
}

.seminar-banner__month {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
}

.seminar-banner__day {
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.seminar-banner__week {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 700;
}

.seminar-banner__body {
  flex: 1;
  text-align: left;
}

.seminar-banner__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 700;
}

.seminar-banner__title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-bottom: 6px;
}

.seminar-banner__sub {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

.seminar-banner__arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-muted), var(--gold), var(--gold-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  transition: transform 0.25s;
}

.seminar-banner:hover .seminar-banner__arrow {
  transform: scale(1.1);
}

.seminar-banner__arrow svg {
  width: 18px;
  height: 18px;
}

.seminar-banner-wrap {
  display: flex;
  justify-content: center;
}

/* ===== CONSENT BUTTONS ===== */
.consent-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.consent-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 64px;
  font-family: var(--font-jp);
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 40px;
  cursor: pointer;
  transition: box-shadow 0.3s var(--ease-luxury), transform 0.3s var(--ease-luxury);
}

.consent-btn svg {
  width: 22px;
  height: 22px;
}

.consent-btn--yes {
  background: linear-gradient(135deg, var(--gold-muted), var(--gold), var(--gold-bright));
  color: var(--navy-dark);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.consent-btn--yes:hover {
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.6), 0 4px 16px rgba(201, 168, 76, 0.4);
  transform: scale(1.04);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold-light));
}

.consent-btn--no {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(184, 184, 196, 0.4);
  box-shadow: none;
}

.consent-btn--no:hover {
  border-color: rgba(184, 184, 196, 0.7);
  color: var(--text-primary);
  transform: scale(1.04);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__header {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero__portrait {
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__title-group {
    text-align: center;
  }
  
  .talk-event-card, 
  .talk-event-card--reverse { 
    grid-template-columns: 1fr; 
  }
  
  .talk-event-card--reverse .talk-event-card__media { 
    order: 0; 
  }
  
  .talk-event-card--reverse .talk-event-card__body { 
    order: 1; 
  }
  
  .hotel-card { 
    grid-template-columns: 1fr; 
  }
  
  .site-card--wide { 
    grid-template-columns: 1fr; 
  }
  
  .site-card--wide .site-card__img-wrap { 
    height: 230px; 
  }
  
  .pricing-grid, 
  .pricing-notes, 
  .contact-grid { 
    grid-template-columns: 1fr; 
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
  
  .hero__portrait {
    height: 300px;
    max-width: 300px;
  }
  
  .hero__main-title {
    font-size: 2rem;
  }
  
  .points-list::before { 
    left: 28px; 
  }
  
  .point-row {
    grid-template-columns: 56px 44px 1fr;
    gap: 0 16px;
    padding: 24px 0;
  }
  
  .point-row__num { 
    font-size: 1.35rem; 
  }
  
  .point-row__icon { 
    width: 34px; 
    height: 34px; 
  }
  
  .point-row--lead {
    padding: 40px 32px;
    margin-bottom: 36px;
  }
  
  .req-row { 
    grid-template-columns: 1fr; 
  }
  
  .req-label { 
    border-bottom: 1px solid rgba(201,168,76,0.12); 
    margin-bottom: 10px; 
    padding-bottom: 6px; 
  }
  
  .site-list::before { 
    display: none; 
  }
  
  .site-list__item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 0;
  }
  
  .site-list__img-wrap > img { 
    height: 500px; 
  }
  
  .site-list__name { 
    font-size: var(--text-lg); 
  }
  
  .freddie-gallery__main,
  .freddie-gallery__sub {
    grid-template-columns: 1fr;
  }
  
  .freddie-gallery__main img { 
    height: 220px; 
  }
  
  .freddie-gallery__sub img { 
    height: 160px; 
  }
  
  .freddie-gallery__logo-wrap img { 
    width: 65%; 
  }
}

@media (max-width: 480px) {
  .hero__portrait {
    height: 250px;
    max-width: 250px;
  }
  
  .point-row--lead {
    padding: 32px 20px;
  }
  
  .point-row__lead-text {
    font-size: 0.97rem;
    line-height: 1.95;
  }
  
  .seminar-banner { 
    padding: 16px 20px; 
    gap: 14px; 
  }
  
  .seminar-banner__day { 
    font-size: 32px; 
  }
  
  .seminar-banner__title { 
    font-size: 15px; 
  }
  
  .seminar-banner__arrow { 
    width: 36px; 
    height: 36px; 
  }
}

/* ===== ANIMATIONS ===== */
@keyframes goldGlow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(201,168,76,0.12); 
  }
  50% { 
    box-shadow: 0 0 44px rgba(201,168,76,0.32), 0 0 80px rgba(201,168,76,0.1); 
  }
}

@keyframes shimmer {
  0% { 
    background-position: -200% center; 
  }
  100% { 
    background-position: 200% center; 
  }
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 30%, var(--gold-bright) 50%, var(--gold-light) 70%, var(--gold-dark) 100%);
  background-size: 200% auto; 
  -webkit-background-clip: text; 
  background-clip: text;
  -webkit-text-fill-color: transparent; 
  animation: shimmer 4s linear infinite;
}

/* ===== FINAL OVERRIDES ===== */
section + section::before { 
  display: none; 
}

.conditions-section { 
  padding: 44px 0; 
}

.conditions-section h4 { 
  font-family: var(--font-jp); 
  font-size: var(--text-md); 
  color: var(--gold-light); 
  margin-bottom: 14px; 
}

.conditions-section ul { 
  list-style: disc; 
  padding-left: 22px; 
  font-size: var(--text-sm); 
  color: var(--text-secondary); 
  line-height: 1.95; 
}

.faq-link { 
  display: inline-block; 
  margin: 22px 0; 
}

.faq-link img { 
  border: 1px solid rgba(201,168,76,0.22); 
  transition: border-color 0.3s; 
}

.faq-link:hover img { 
  border-color: var(--gold); 
}


/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
  /* 基本レイアウト修正 */
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ヒーローセクション修正 */
  .hero {
    width: 100% !important;
    min-height: auto !important;
    padding: 20px 0 !important;
    margin: 0 !important;
    overflow: hidden;
  }

  .hero__main-image {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-mask: none !important;
    mask: none !important;
  }
}


/* iPhone SE専用の強制修正 */
@media (max-width: 500px) {
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  *:not(html):not(body) {
    width: auto !important;
    min-width: 0 !important;
  }
  
  /* 固定幅を持つ要素を強制的に調整 */
  [style*="width"] {
    width: 100% !important;
    max-width: 100% !important;
  }
	
  .price-table {
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch !important;
  }	
	
	
}
@media (max-width: 375px) {
  /* 全てのテーブルを横スクロールに */
  .price-table,
  .cancel-table,
  .itinerary-table {
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  /* テーブルのラッパー */
  .table_outer,
  .price-table-wrap,
  .itinerary-table-wrap {
    overflow-x: auto !important;
    margin: 0 5px !important;
    padding: 0 12px !important;
    width: calc(100% + 24px) !important;
  }
}