@charset "UTF-8";

/* =========================================
   1. 変数定義・和色（日本の明るい伝統色）
========================================= */
:root {
  --wafu-bg-base: #ffffff;      
  --wafu-bg-light: #f9f9f9;     
  
  --wafu-text-main: #333333;    
  --wafu-text-sub: #666666;     
  
  --wafu-red: #bb3336;          
  --wafu-gold: #daa520;         
  --wafu-navy: #2d457f;         
  
  --wafu-border: #eeeeee;
  --wafu-border-dark: #dddddd;
}

* { box-sizing: border-box; }

body {
  font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', sans-serif;
  margin: 0; padding: 0; padding-bottom: 90px; 
  background-color: var(--wafu-bg-base); 
  color: var(--wafu-text-main);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.mincho { font-family: 'Shippori Mincho', 'Noto Serif JP', serif; }
.wafu-bg { background-color: var(--wafu-bg-base); }
.wafu-section-light { background-color: var(--wafu-bg-light); border-top: 1px solid var(--wafu-border); border-bottom: 1px solid var(--wafu-border); }

.wafu-color-red { color: var(--wafu-red) !important; }
.wafu-color-gold { color: var(--wafu-gold) !important; }

/* =========================================
   A. スクロールアニメーション（左右からスライド）
========================================= */
.reveal-element {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.from-left { transform: translateX(-50px); }
.from-right { transform: translateX(50px); }

.reveal-element.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* =========================================
   2. ヘッダー・ナビゲーション
========================================= */
.global-header { background: #ffffff; border-bottom: 1px solid var(--wafu-border); position: relative; z-index: 1000; }
.header-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
.header-logo img { display: block; }
.hamburger-btn { font-size: 1.5rem; color: var(--wafu-navy); cursor: pointer; background: none; border: none; padding: 5px; }

.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9998; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.menu-overlay.is-active { opacity: 1; visibility: visible; }
.drawer-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100%; background: #fff; z-index: 9999; border-left: 1px solid var(--wafu-border); display: flex; flex-direction: column; transition: right 0.3s ease; }
.drawer-menu.is-open { right: 0; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--wafu-border); }
.close-btn { background: none; border: none; font-size: 1.5rem; color: var(--wafu-text-sub); cursor: pointer; }
.drawer-content { overflow-y: auto; padding: 0; margin: 0; list-style: none; flex-grow: 1; }
.drawer-content li { border-bottom: 1px solid var(--wafu-border); }
.drawer-content a { display: flex; align-items: center; padding: 15px 20px; color: var(--wafu-text-main); text-decoration: none; font-size: 0.95rem; }
.drawer-content a i { width: 25px; color: var(--wafu-red); text-align: center; margin-right: 10px; }
.drawer-footer { background: var(--wafu-bg-light); padding: 20px; text-align: center; border-top: 1px solid var(--wafu-border); }
.drawer-footer a { display: inline-block; background: #fff; border: 1px solid var(--wafu-border-dark); color: var(--wafu-text-main); text-decoration: none; padding: 8px 15px; border-radius: 4px; font-size: 0.8rem; margin: 0 5px 10px; }

body.menu-open { overflow: hidden; }

.breadcrumbs { width: 100%; max-width: 1000px; margin: 0 auto; padding: 12px 20px; font-size: 11px; color: var(--wafu-text-sub); background-color: transparent; white-space: nowrap; overflow-x: auto; }
.breadcrumbs a { color: var(--wafu-text-sub); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; color: var(--wafu-navy); }

/* =========================================
   3. レイアウトユーティリティ
========================================= */
.lp-container { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 15px; }
.lp-section { padding: 40px 0; }

.wafu-section-header { text-align: center; margin-bottom: 35px; }
.wafu-section-title { font-size: clamp(20px, 5vw, 28px); color: var(--wafu-navy); margin: 0; display: inline-block; position: relative; padding: 0 15px; }
.wafu-section-title::before, .wafu-section-title::after { content: ''; position: absolute; top: 50%; width: 20px; height: 1px; background-color: var(--wafu-gold); }
.wafu-section-title::before { left: -10px; }
.wafu-section-title::after { right: -10px; }
.wafu-section-sub { font-size: 13px; color: var(--wafu-red); margin: 10px 0 0; }

.wafu-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--wafu-red) 0%, #bb3336 100%);
  color: #fff !important; font-size: 16px; font-weight: bold; text-decoration: none;
  padding: 16px 24px; border-radius: 4px; border: none; width: 100%;
  transition: opacity 0.3s;
}
.wafu-btn-primary:hover { opacity: 0.9; }

/* =========================================
   4. ヒーローセクション（写真の鮮やかさ優先）
========================================= */
.lp-hero { position: relative; width: 100%; min-height: 480px; padding: 60px 0; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.lp-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('https://www.orion-tour.co.jp/bustour/kumano-hanabi/img/kumano1200x900-001.jpg'); background-size: cover; background-position: center; z-index: 0; }
.lp-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.6) 100%); z-index: 1; } 

.lp-hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; width: 100%; color: #fff; }

.wafu-hero-catch span { font-size: 13px; color: #fff; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.4); padding: 6px 16px; display: inline-block; letter-spacing: 0.05em; border-radius: 2px; }

.hero-title-container { position: relative; width: 100%; padding: 0 10px; margin: 25px 0; }
.wafu-hero-title { font-size: clamp(24px, 6vw, 38px); line-height: 1.5; margin: 0; letter-spacing: 0.05em; text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.8); }
.wafu-hero-title .highlight { display: inline-block; color: var(--wafu-gold); font-size: 1.1em; border-bottom: 2px solid var(--wafu-gold); padding-bottom: 4px; margin-bottom: 8px; text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6); }

.wafu-hero-badge { border: 1px solid rgba(255,255,255,0.5); background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); padding: 10px 20px; font-size: 14px; display: inline-block; letter-spacing: 0.05em; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }

/* =========================================
   5. おすすめポイント
========================================= */
.wafu-point-box { background: #fff; border: 1px solid var(--wafu-border); padding: 30px 20px; max-width: 820px; margin: -40px auto 40px; position: relative; z-index: 10; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.wafu-point-title { font-size: 20px; text-align: center; margin: 0 0 20px; color: var(--wafu-red); }
.wafu-point-list { display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; margin: 0; }
.wafu-point-list li { position: relative; padding-left: 24px; font-size: 14.5px; line-height: 1.6; text-align: left; }
.wafu-point-list li::before { content: '■'; position: absolute; left: 0; top: 0; color: var(--wafu-gold); font-size: 12px; }

/* =========================================
   6. メリットグリッド
========================================= */
.benefit-grid { display: flex; flex-direction: column; gap: 20px; }
.wafu-card { background: #fff; border: 1px solid var(--wafu-border); padding: 25px 20px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.wafu-icon { font-size: 32px; margin-bottom: 15px; color: var(--wafu-red); }
.wafu-card h3 { font-size: 17px; margin: 0 0 12px; color: var(--wafu-navy); letter-spacing: 0.05em; }
.wafu-card p { font-size: 13.5px; color: var(--wafu-text-sub); margin: 0; text-align: left; line-height: 1.7; }

/* =========================================
   7. フィーチャーブロック
========================================= */
.wafu-feature-block { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--wafu-border); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.wafu-visual-header { padding: 25px 20px 10px; text-align: center; }
.wafu-feature-title { font-size: 20px; color: var(--wafu-navy); margin: 0; display: flex; align-items: center; justify-content: center; gap: 10px; }

.visual-area { padding: 0 20px; }
.carousel-wrapper { width: 100%; position: relative; }
.carousel-container { position: relative; width: 100%; overflow: hidden; border: 1px solid var(--wafu-border-dark); }
.horizontal-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; } 
.horizontal-slider::-webkit-scrollbar { display: none; }
.visual-box { flex: 0 0 100%; width: 100%; aspect-ratio: 4 / 3; scroll-snap-align: start; }
.visual-box img { width: 100%; height: 100%; object-fit: cover; }

.wafu-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; background: rgba(255,255,255,0.9); border: 1px solid var(--wafu-border); color: var(--wafu-text-main); transition: background-color 0.2s; }
.wafu-carousel-btn:hover { background-color: rgba(255,255,255,1); }
.wafu-carousel-btn.prev { left: 0; } .wafu-carousel-btn.next { right: 0; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin: 15px 0 0; }
.carousel-dots .dot { width: 8px; height: 8px; background: var(--wafu-border-dark); border-radius: 50%; cursor: pointer; transition: background-color 0.2s; }
.carousel-dots .dot.active { background: var(--wafu-red); }

.wafu-feature-content { padding: 25px 20px; }
.wafu-feature-subtitle { font-size: 16px; color: var(--wafu-navy); margin: 0 0 12px; border-left: 3px solid var(--wafu-red); padding-left: 10px; }
.wafu-desc-text { font-size: 14px; color: var(--wafu-text-sub); line-height: 1.75; margin: 0 0 15px; text-align: left; }

.wafu-notice-box { padding: 15px; border: 1px solid var(--wafu-border-dark); background: var(--wafu-bg-light); margin-top: 20px; border-radius: 0; }
.wafu-notice-box .notice-title { margin: 0 0 8px; color: var(--wafu-red); font-weight: bold; font-size: 13.5px; }

.grid-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 20px; }
.grid-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--wafu-border-dark); }
.split-grid { display: flex; flex-direction: column; gap: 25px; }

/* =========================================
   8. 代金案内・タイムライン（【修正済】白飛び・レイアウト崩れ防止の堅牢な設定）
========================================= */
.wafu-price-container { 
  display: block;
  width: 100%;
  max-width: 600px !important; /* 保護 */
  margin: 0 auto 40px !important; /* 保護・中央揃え */
  background: #ffffff !important; /* 保護 */
  border: 2px solid var(--wafu-gold) !important; /* 保護 */
  box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important; /* 保護・影を少し強調 */
  border-radius: 8px !important; /* 角丸を追加して和モダンに */
  overflow: hidden;
}
.wafu-price-header { 
  background: var(--wafu-gold) !important; /* 保護 */
  color: #ffffff !important; /* 保護 */
  text-align: center; 
  padding: 16px; 
  font-size: 18px; 
  letter-spacing: 0.1em; 
  font-weight: bold; 
}
.wafu-price-body { 
  padding: 30px 20px; 
  text-align: center; 
  background: #ffffff !important; /* 保護 */
}
.price-target { 
  margin: 0 0 10px; 
  font-size: 14px; 
  font-weight: bold; 
  color: var(--wafu-text-sub) !important; /* 保護 */
}
.price-display { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px; 
  margin-bottom: 25px; 
}
/* 数字が消えないように !important とフォールバックを追加 */
.price-amount { 
  font-size: 36px; /* clamp非対応ブラウザ用フォールバック */
  font-size: clamp(32px, 7vw, 46px); 
  color: var(--wafu-red) !important; /* 強制的に赤に固定（白飛び対策） */
  font-weight: bold;
  line-height: 1;
}
.price-unit { 
  font-size: 15px; 
  font-weight: bold; 
  color: var(--wafu-text-main) !important; /* 保護 */
}
.price-wave { 
  font-size: 20px; 
  color: var(--wafu-text-sub) !important; /* 保護 */
  padding: 0 8px; 
  font-weight: bold;
}

.wafu-included-box { background: var(--wafu-bg-light); border: 1px solid var(--wafu-border); padding: 18px; text-align: left; }
.included-title { font-size: 13.5px; font-weight: bold; color: var(--wafu-navy); margin-bottom: 10px; border-bottom: 1px solid var(--wafu-border-dark); padding-bottom: 6px; }
.included-list { list-style: none; padding: 0; margin: 0; font-size: 13.5px; color: var(--wafu-text-sub); }
.included-list li { margin-bottom: 8px; display: flex; gap: 8px; line-height: 1.5; }
.included-list i { color: var(--wafu-gold); margin-top: 3px; }

.wafu-schedule-box { max-width: 820px; margin: 0 auto; }
.wafu-schedule-badge { display: table; margin: 0 auto 30px; background: var(--wafu-navy); color: #fff; font-size: 16px; padding: 8px 25px; letter-spacing: 0.05em; font-weight: bold; }

.wafu-timeline { position: relative; padding-left: 15px; }
.wafu-timeline::after { content: ''; position: absolute; top: 5px; left: 2px; width: 1px; height: calc(100% - 20px); background: var(--wafu-border-dark); }

.wafu-timeline-step { display: flex; flex-direction: column; position: relative; margin-bottom: 25px; }
.wafu-timeline-step::before { content: ''; position: absolute; left: -12.5px; top: 8px; width: 6px; height: 6px; background: var(--wafu-bg-base); border: 2px solid var(--wafu-gold); border-radius: 50%; z-index: 2; }
.wafu-timeline-step.main-event-step::before { content: '🎇'; left: -20px; top: 0px; font-size: 14px; background: none; border: none; z-index: 3; }

.step-time { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.wafu-day-label { font-size: 11px; padding: 2px 6px; background: var(--wafu-red); color: #fff; font-weight: bold; }
.gray-label { background: var(--wafu-text-sub); }
.time-num { font-size: 16px; color: var(--wafu-navy); font-weight: bold; }

.wafu-tl-card { padding: 18px; background: #fff; border: 1px solid var(--wafu-border); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.wafu-card-highlight { border: 2px solid var(--wafu-red); background: #fffdfd; }
.step-title { font-size: 15px; font-weight: bold; color: var(--wafu-text-main); margin: 0 0 8px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.highlight-title { font-size: 17px; color: var(--wafu-red); }
.wafu-step-desc { font-size: 13.5px; color: var(--wafu-text-sub); margin: 0; line-height: 1.6; }

.wafu-badge { font-size: 10.5px; padding: 2px 6px; border: 1px solid; border-radius: 0; font-weight: bold; }
.wafu-badge-red { border-color: var(--wafu-red); color: var(--wafu-red); }
.wafu-badge-navy { border-color: var(--wafu-navy); color: var(--wafu-navy); }
.wafu-badge-gold { border-color: var(--wafu-gold); color: var(--wafu-gold); }
.wafu-badge-gray { border-color: var(--wafu-text-sub); color: var(--wafu-text-sub); }

.wafu-duration-tag { display: inline-block; background: var(--wafu-bg-light); border: 1px solid var(--wafu-border-dark); color: var(--wafu-text-sub); font-size: 11.5px; padding: 3px 8px; margin-top: 6px; }
.red-tag { border-color: var(--wafu-red); color: var(--wafu-red); background: transparent; }

.wafu-meal-summary { margin-top: 10px; border-top: 1px dashed var(--wafu-border-dark); padding-top: 8px; display: flex; gap: 10px; font-size: 12px; color: var(--wafu-text-sub); }

/* =========================================
   8.5 旅行条件テーブル（ご指定の4項目用）
========================================= */
.aio-data-table-wrap {
  max-width: 820px;
  margin: 40px auto 0;
  padding: 30px; 
  background: #fff;
  border: 1px solid var(--wafu-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
  border-radius: 8px; 
  position: relative;
  overflow: hidden; 
}

.wafu-table-caption {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif; 
  font-size: 20px;
  font-weight: bold;
  color: var(--wafu-text-main);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wafu-table-caption::before {
  content: '\f526'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--wafu-red);
  font-size: 18px;
}

.wafu-structured-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: left;
  border: none; 
}

.wafu-structured-table th, .wafu-structured-table td {
  padding: 18px; 
  border: none; 
  line-height: 1.6;
}

.wafu-structured-table th {
  background: var(--wafu-navy); 
  color: var(--wafu-gold); 
  width: 28%; 
  font-weight: bold;
  font-size: 14.5px;
  letter-spacing: 0.1em;
  position: relative;
}
.wafu-structured-table th::after {
  content: ''; 
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: repeating-linear-gradient(45deg, var(--wafu-gold) 0px, var(--wafu-gold) 1px, transparent 1px, transparent 4px), repeating-linear-gradient(-45deg, var(--wafu-gold) 0px, var(--wafu-gold) 1px, transparent 1px, transparent 4px);
}

.wafu-structured-table td {
  color: var(--wafu-text-main);
  border-bottom: 1px dashed var(--wafu-border-dark); 
}

.wafu-structured-table th:first-child, .wafu-structured-table td:first-child {
  padding-left: 25px; 
  position: relative;
}
.wafu-structured-table td:first-child {
  color: var(--wafu-navy); 
  font-weight: bold;
}
.wafu-structured-table td:first-child::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.wafu-structured-table tr:nth-child(1) td:first-child::before { content: '\f073'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--wafu-gold); background-image: none; font-size: 13px; } 
.wafu-structured-table tr:nth-child(2) td:first-child::before { content: '\f500'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--wafu-navy); background-image: none; font-size: 13px; } 
.wafu-structured-table tr:nth-child(3) td:first-child::before { content: '\f207'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--wafu-red); background-image: none; font-size: 13px; } 
.wafu-structured-table tr:nth-child(4) td:first-child::before { content: '\f2e7'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--wafu-gold); background-image: none; font-size: 13px; } 

.wafu-structured-table tr:nth-child(even) td {
  background-color: var(--wafu-bg-light); 
}

/* =========================================
   9. アコーディオン ＆ 固定バー
========================================= */
.wafu-accordion-wrap { max-width: 820px; margin: 0 auto; }
.wafu-accordion { margin-bottom: 10px; border: 1px solid var(--wafu-border); background: #fff; }
.wafu-accordion-summary { padding: 16px; font-weight: bold; cursor: pointer; font-size: 14.5px; display: flex; justify-content: space-between; align-items: center; color: var(--wafu-navy); }
.wafu-accordion-summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--wafu-text-sub); font-size: 12px; transition: transform 0.3s; }
.wafu-accordion[open] .wafu-accordion-summary::after { transform: rotate(180deg); }
.wafu-accordion-content { padding: 16px; font-size: 13.5px; color: var(--wafu-text-sub); border-top: 1px dashed var(--wafu-border); background: var(--wafu-bg-base); }
.wafu-accordion-content ul { padding-left: 20px; margin: 0; }
.wafu-accordion-content li { margin-bottom: 8px; line-height: 1.6; }

.wafu-fixed-bar { 
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; padding: 12px 15px; 
  background: rgba(255, 255, 255, 0.95); border-top: 1px solid var(--wafu-border); box-shadow: 0 -2px 10px rgba(0,0,0,0.05); 
  transition: none;
}
.fixed-bottom-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: center; }

/* フッター */
.wafu-footer { padding: 40px 15px 30px; font-size: 11px; text-align: center; background: var(--wafu-bg-light); border-top: 1px solid var(--wafu-border-dark); }
.wafu-footer-links { list-style: none; padding: 0; margin: 0 0 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px 25px; }
.wafu-footer-links a { color: var(--wafu-text-sub); text-decoration: none; transition: color 0.2s; }
.wafu-footer-links a:hover { color: var(--wafu-navy); text-decoration: underline; }
.company-info { margin: 0 0 10px; line-height: 1.5; color: var(--wafu-text-sub); }
.copyright { color: var(--wafu-text-sub); margin: 0; font-size: 0.68rem; }

/* =========================================
   10. メディアクエリ（PC表示最適化）
========================================= */
@media screen and (min-width: 768px) {
  .lp-section { padding: 60px 0; }
  .wafu-section-header { margin-bottom: 45px; }
  .wafu-section-title { font-size: 32px; padding: 0 25px; }
  .wafu-section-title::before, .wafu-section-title::after { width: 40px; }
  
  .wafu-point-box { padding: 40px; margin: -50px auto 50px; }
  .wafu-point-title { font-size: 22px; margin-bottom: 25px; }
  .wafu-point-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; }
  
  .benefit-grid { display: grid !important; grid-template-columns: 1fr 1fr 1fr !important; gap: 25px !important; }
  .split-grid { display: flex; gap: 25px; max-width: 820px; margin: 0 auto; flex-direction: row; }
  .flex-one { flex: 1; margin: 0; }
  
  .hero-title-container { padding: 0 60px; margin: 35px 0; }
  
  .wafu-visual-header { padding: 35px 30px 15px; }
  .wafu-feature-title { font-size: 24px; }
  .visual-area { padding: 0 30px; }
  .wafu-feature-content { padding: 30px; }

  /* タイムラインPCレイアウト */
  .wafu-timeline { padding-left: 0; }
  .wafu-timeline::after { left: 95px; }
  .wafu-timeline-step { flex-direction: row; margin-bottom: 30px; align-items: start; }
  .wafu-timeline-step::before { left: 91.5px; top: 22px; width: 8px; height: 8px; border-width: 2px; }
  .wafu-timeline-step.main-event-step::before { left: 88px; top: 12px; font-size: 15px; }
  
  .step-time { width: 95px; flex-shrink: 0; padding-right: 20px; text-align: right; flex-direction: column; align-items: flex-end; justify-content: flex-start; padding-top: 14px; margin-bottom: 0; gap: 4px; }
  .time-num { text-align: right; width: 100%; font-size: 16px; }
  .step-content { padding-left: 25px; flex-grow: 1; }
  .wafu-tl-card { padding: 22px; border-radius: 0; border-left-width: 4px; border-bottom: 1px solid var(--wafu-border); border-top: 1px solid var(--wafu-border); border-right: 1px solid var(--wafu-border); }
  .wafu-card-highlight { border-left-color: var(--wafu-red); border-width: 2px 2px 2px 4px; }
  
  /* テーブルのPC対応 */
  .aio-data-table-wrap { padding: 40px; margin-top: 50px; }
  .wafu-table-caption { font-size: 24px; margin-bottom: 25px; }
  .wafu-table-caption::before { font-size: 20px; }
  .wafu-structured-table { font-size: 14.5px; }
  .wafu-structured-table th { font-size: 16px; padding: 22px 25px; }
  .wafu-structured-table td { padding: 22px 25px; }
  .wafu-structured-table td:first-child { padding-left: 35px; }
  .wafu-structured-table td:first-child::before { left: 10px; font-size: 14px; }

  .wafu-fixed-bar { padding: 15px; }
  .wafu-btn-primary { font-size: 18px; padding: 18px 30px; }
}