@charset "UTF-8";

/* =========================================
   1. 変数定義・旅の上品なポップカラー
========================================= */
:root {
  --date-bg-base: #fffcfb;      
  --date-bg-light: #fdf7f5;     
  --date-text-main: #4a4543;    
  --date-text-sub: #7a7370;     
  
  --date-primary: #d67a7a;       /* コーラルレッド */
  --date-primary-hover: #c46262; 
  --date-secondary: #5c6e7a;     /* ブルーグレー */
  --date-accent: #d4a373;        /* モカベージュ */
  
  --date-border: #f0e6e3;
  --date-border-dark: #e0d2cd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* =========================================
   ★ ブラウザ背景と全体レイアウト
========================================= */
body {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  margin: 0; padding: 0; padding-bottom: 90px; 
  background: linear-gradient(135deg, #fdfbfb 0%, #f4eee9 100%); 
  color: var(--date-text-main);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.tour-lp-main {
  background-color: var(--date-bg-base);
  max-width: 1000px; 
  margin: 10px auto 60px; 
  border-radius: 30px; 
  box-shadow: 
    0 20px 40px rgba(214, 122, 122, 0.08), 
    0 8px 16px rgba(0, 0, 0, 0.04); 
  overflow: visible !important; 
  opacity: 0;
  transform: translateY(40px);
  animation: pageFloatUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@keyframes pageFloatUp {
  to { opacity: 1; transform: translateY(0); }
}

.mincho { font-family: 'Shippori Mincho', 'Noto Serif JP', serif; }
.date-section-light { background-color: var(--date-bg-light); border-top: 4px dashed var(--date-border); border-bottom: 4px dashed var(--date-border); }

.date-color-primary { color: var(--date-primary) !important; }
.date-color-accent { color: var(--date-accent) !important; }
.date-color-secondary { color: var(--date-secondary) !important; }

/* =========================================
   2. スクロールアニメーション設定
========================================= */
.reveal-element {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-element.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================================
   3. ヘッダー ＆ パンくずリスト
========================================= */
.global-header { background: #ffffff; border-bottom: 1px solid var(--date-border); position: relative; z-index: 1000; box-shadow: 0 2px 10px rgba(214,122,122,0.05); }
.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; height: 35px; width: auto; max-width: 100%; }
.hamburger-btn { font-size: 1.4rem; color: var(--date-primary); cursor: pointer; background: none; border: none; padding: 5px; }

.breadcrumbs { 
  display: block !important;
  visibility: visible !important;
  width: 100%; max-width: 1000px; 
  margin: 15px auto 5px !important; 
  padding: 0 20px; 
  font-size: 12px; color: var(--date-text-sub); 
  white-space: nowrap; overflow-x: auto; font-weight: bold;
  position: relative; z-index: 900;
}
.breadcrumbs a { color: var(--date-text-sub); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { text-decoration: none; color: var(--date-primary); }

.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(92,110,122,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: 300px; height: 100%; background: #fff; z-index: 9999; border-left: 6px solid var(--date-primary); display: flex; flex-direction: column; transition: right 0.3s ease; border-radius: 30px 0 0 30px; }
.drawer-menu.is-open { right: 0; }

.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 3px dashed var(--date-border); }
.drawer-header img { height: 28px; width: auto; max-width: 100%; }
.close-btn { background: none; border: none; font-size: 1.4rem; color: var(--date-text-sub); cursor: pointer; padding: 5px; margin: -5px; }

.drawer-content { overflow-y: auto; padding: 0; margin: 0; list-style: none; flex-grow: 1; }
.drawer-content li { border-bottom: 2px dashed var(--date-border); }
.drawer-content li:last-child { border-bottom: none; }
.drawer-content a { display: flex; align-items: center; padding: 18px 20px; color: var(--date-text-main); text-decoration: none; font-size: 1rem; font-weight: bold; }
.drawer-content a i { width: 25px; color: var(--date-primary); text-align: center; margin-right: 10px; }

body.menu-open { overflow: hidden; }

/* =========================================
   4. レイアウト・共通ポップデザイン
========================================= */
.lp-container { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 15px; }
.lp-section { padding: 60px 0; }

.date-section-header { text-align: center; margin-bottom: 45px; }

.date-section-title { 
  font-size: clamp(16px, 4.5vw, 24px); 
  color: #fff; 
  background: var(--date-secondary);
  display: inline-block; 
  padding: 10px 30px; 
  line-height: 1.5; 
  border-radius: 50px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px var(--date-secondary), 0 6px 15px rgba(0,0,0,0.1);
  margin: 0;
}

.date-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--date-primary);
  color: #fff !important; font-size: 16px; font-weight: 800; text-decoration: none;
  padding: 18px 24px; border-radius: 50px; border: none; width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 0 var(--date-primary-hover), 0 10px 15px rgba(214,122,122,0.3);
}
.date-btn-primary:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--date-primary-hover), 0 4px 10px rgba(214,122,122,0.3); }

.date-feature-block, .date-price-container {
  background: #fff;
  border: 6px solid var(--date-primary);
  border-radius: 24px;
  box-shadow: 0 8px 0 rgba(214,122,122,0.2);
  margin: 0 auto 40px;
  max-width: 840px;
  overflow: hidden;
}

/* =========================================
   5. ヒーローセクション
========================================= */
.lp-hero { position: relative; width: 100%; min-height: 480px; padding: 50px 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/mastuesuigou/img/mastuesuigou1200x900-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.2) 50%, 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; }
.date-hero-catch span { font-size: 14px; color: #fff; background: var(--date-primary); border: 2px solid #fff; padding: 8px 20px; display: inline-block; letter-spacing: 0.05em; border-radius: 30px; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.hero-title-container { position: relative; width: 100%; padding: 0 10px; margin: 25px 0; }
.date-hero-title { font-size: clamp(22px, 5.5vw, 34px); line-height: 1.6; 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.5); }
.date-hero-title .highlight { display: inline-block; color: #fff; font-size: 1.1em; border-bottom: 4px dotted var(--date-primary); padding-bottom: 2px; margin-bottom: 8px; }

/* =========================================
   6. 【リクエスト統合】いい感じのサイズ（最大幅640px）カルーセル
========================================= */
.date-carousel-slider-box {
  background: #fff;
  border: 6px solid var(--date-primary);
  border-radius: 24px;
  box-shadow: 0 8px 0 rgba(214,122,122,0.2);
  margin: 0 auto 40px;
  max-width: 840px;
  overflow: visible !important; 
}

.carousel-wrapper { 
  position: relative; width: 100%; background: #fff; padding: 15px 0;
  max-width: 640px !important; margin: 0 auto !important;
}
.carousel-container-outer {
  position: relative; width: 100%; display: flex; align-items: center; justify-content: center;
}
.carousel-container-inner {
  width: calc(100% - 70px); 
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.horizontal-slider {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch; width: 100%;
}
.horizontal-slider::-webkit-scrollbar { display: none; }
.visual-box { flex: 0 0 100%; width: 100%; scroll-snap-align: start; }
.visual-box img { 
  width: 100%; 
  aspect-ratio: 4 / 3; 
  object-fit: cover;
  display: block; 
}

/* 左右の矢印ボタンを画像の外側に配置 */
.date-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background-color: #fff; 
  border: 2px solid var(--date-primary);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  z-index: 100; font-size: 14px; color: var(--date-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.1s ease;
}
.date-carousel-btn:active { transform: translateY(-50%) scale(0.9); }
.date-carousel-btn.prev { left: 4px; }
.date-carousel-btn.next { right: 4px; }

/* 下部のドットナビゲーション */
.carousel-dots { display: flex; justify-content: center; gap: 8px; padding: 12px 0 0 0; background: #fff; }
.carousel-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--date-border-dark); cursor: pointer; }
.carousel-dots .dot.active { background: var(--date-primary); width: 18px; border-radius: 4px; }

.date-feature-content { padding: 25px 20px; }
.date-feature-subtitle { font-size: 18px; color: var(--date-secondary); margin: 0 0 12px; display: flex; align-items: center; gap: 8px; font-weight: 800; }
.date-feature-subtitle::before { content: '★'; color: var(--date-accent); font-size: 16px; }
.date-desc-text { font-size: 14.5px; color: var(--date-text-sub); line-height: 1.8; margin: 0; font-weight: 500; }

.date-visual-header { padding: 25px 20px 15px; text-align: center; border-bottom: 4px dashed var(--date-border); margin-bottom: 15px; }
.date-feature-title { font-size: 20px; font-weight: 800; color: var(--date-text-main); margin: 0; }

.grid-gallery { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0 20px 15px; }
.grid-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 20px; border: 4px solid var(--date-border); }
.split-grid { display: flex; flex-direction: column; gap: 30px; }

.grid-gallery-horizontal { display: flex; flex-direction: column; gap: 15px; padding: 0 20px 20px; }
.grid-gallery-horizontal img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 20px; border: 4px solid var(--date-border); }

/* =========================================
   7. 価格表示
========================================= */
.date-price-header { background: var(--date-primary); color: #ffffff; text-align: center; padding: 18px; font-size: 18px; font-weight: 900; letter-spacing: 0.05em; }
.date-price-body { padding: 30px 20px; text-align: center; }
.price-target { margin: 0 0 8px; font-size: 14px; font-weight: 800; color: var(--date-text-sub); }
.price-display { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 25px; }
.price-amount { font-size: clamp(38px, 8vw, 52px); color: var(--date-primary); font-weight: 900; line-height: 1; text-shadow: 2px 2px 0 var(--date-border); }
.price-unit { font-size: 16px; font-weight: 800; color: var(--date-text-main); }

.date-included-box { background: var(--date-bg-light); border: 4px dashed var(--date-primary); padding: 20px; text-align: left; margin-top: 30px; border-radius: 16px; }
.included-title { font-size: 15px; font-weight: 800; color: var(--date-secondary); margin-bottom: 12px; border-bottom: 2px solid var(--date-border-dark); padding-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.included-title i { color: var(--date-primary); }
.included-list { list-style: none; padding: 0; margin: 0; font-size: 14px; color: var(--date-text-main); font-weight: 500; }
.included-list li { margin-bottom: 8px; display: flex; gap: 8px; line-height: 1.6; }
.included-list li i { color: var(--date-primary); margin-top: 4px; }


/* =========================================
   8. 道路風 タイムライン
========================================= */
.road-timeline-wrapper {
  padding: 0 15px;
  max-width: 840px;
  margin: 0 auto 40px;
}

.road-timeline-inner {
  border: 6px solid var(--date-primary); 
  background-color: #fdfdfd;
  padding: 30px 20px 40px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 8px 0 rgba(214,122,122,0.2);
}

.rt-decorations {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.deco-icon { position: absolute; opacity: 0.1; color: var(--date-primary); } 
.deco-1 { top: 20px; left: 20px; font-size: 40px; transform: rotate(-15deg); }
.deco-2 { top: 120px; left: 50px; font-size: 30px; }
.deco-3 { top: 40px; right: 30px; font-size: 50px; transform: rotate(10deg); }

.rt-header-top {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.rt-badge-wrap { margin-bottom: 15px; }
.rt-badge {
  background: var(--date-primary); 
  color: #fff;
  padding: 6px 24px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 15px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.05em;
}
.rt-badge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--date-primary) transparent transparent;
}

.rt-main-title {
  font-size: clamp(22px, 5vw, 32px);
  color: var(--date-primary); 
  font-weight: 900;
  margin: 0 0 5px;
  letter-spacing: 0.05em;
}

.rt-date-range {
  font-size: clamp(20px, 4vw, 28px);
  color: var(--date-secondary);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.rt-day-header {
  background: var(--date-primary); 
  color: #fff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
  border-radius: 8px;
}

.rt-day-left {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.day-num { color: #fff; font-size: 22px; font-weight: 900; }
.day-date { font-size: 22px; font-weight: bold; }
.day-dow { font-size: 14px; }

.rt-day-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  font-weight: bold;
}

.rt-transport { display: flex; align-items: center; gap: 5px; }
.rt-transport-badge { background: #fff; color: var(--date-primary); padding: 2px 8px; border-radius: 12px; font-size: 11px; }

.rt-body {
  position: relative;
  margin-bottom: 40px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.rt-road-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 75px; 
  width: 14px;
  background-color: var(--date-primary); 
  border-radius: 7px;
  z-index: 1;
}
.rt-road-line::after {
  content: '';
  position: absolute;
  top: 5px; bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-image: linear-gradient(to bottom, #fff 60%, transparent 40%);
  background-size: 2px 20px;
}

.rt-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}
.rt-item:last-child { margin-bottom: 0; }

.rt-time { width: 75px; text-align: center; padding-top: 5px; }
.rt-time-text { font-size: 18px; font-weight: 800; color: var(--date-primary); }
.rt-time-arrow { color: #ccc; font-size: 12px; margin-top: 8px; }

.rt-icon {
  position: absolute;
  left: 82px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  font-size: 16px;
  color: var(--date-primary); 
  z-index: 3;
}

.rt-content { margin-left: 55px; padding-top: 5px; flex: 1; }
.rt-item-title { font-size: 16px; font-weight: 800; color: var(--date-text-main); margin: 0 0 5px; }
.rt-item-desc { font-size: 13px; color: var(--date-text-sub); margin: 0; line-height: 1.5; }


/* =========================================
   9. 注意事項・アコーディオン
========================================= */
.date-accordion-wrap { max-width: 840px; margin: 0 auto; }
.date-accordion { margin-bottom: 15px; border: 4px solid var(--date-border-dark); background: #fff; border-radius: 16px; overflow: hidden; transition: border-color 0.3s; }
.date-accordion:hover { border-color: var(--date-primary); }

.date-accordion-summary { padding: 18px 20px; font-weight: 800; cursor: pointer; font-size: 15px; display: flex; justify-content: space-between; align-items: center; color: var(--date-text-main); }
.date-accordion-summary span { display: flex; align-items: center; gap: 8px; color: var(--date-secondary); }
.date-accordion-summary span i { color: var(--date-primary); }
.date-accordion-summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--date-primary); font-size: 14px; transition: transform 0.3s; }
.date-accordion[open] .date-accordion-summary::after { transform: rotate(180deg); }

.date-accordion-content { padding: 20px; font-size: 14px; color: var(--date-text-main); border-top: 4px dashed var(--date-border-dark); background: var(--date-bg-light); font-weight: 500; }
.date-accordion-content ul { margin: 0; padding-left: 15px; }
.date-accordion-content li { margin-bottom: 10px; line-height: 1.7; }

/* =========================================
   10. 固定バー ＆ フッター
========================================= */
.date-fixed-bar { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; padding: 15px; background: rgba(255, 255, 255, 0.95); border-top: 4px solid var(--date-primary); box-shadow: 0 -4px 20px rgba(214,122,122,0.1); backdrop-filter: blur(10px); }
.fixed-bottom-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: center; }

.date-footer { padding: 40px 15px 30px; font-size: 12px; font-weight: bold; text-align: center; background: transparent; }
.company-info { margin: 0 0 10px 0; line-height: 1.6; color: var(--date-text-sub); }
.copyright { color: var(--date-text-sub); margin: 0; }

.sp-only { display: inline; }

/* =========================================
   11. メディアクエリ
========================================= */
@media screen and (max-width: 600px) {
  .breadcrumbs { margin: 10px auto 0 !important; padding: 0 10px; }
  
  .carousel-container-outer { padding: 0 5px; }
  .carousel-container-inner { width: calc(100% - 70px); }
  .visual-box img { aspect-ratio: 4 / 3; }
  
  .date-carousel-btn {
    width: 36px; height: 36px; font-size: 13px; background-color: #fff;
  }
  .date-carousel-btn.prev { left: 2px; }
  .date-carousel-btn.next { right: 2px; }

  .road-timeline-inner { border-width: 6px; padding: 20px 10px 30px; }
  .rt-time { width: 55px; text-align: center; padding-left: 0; }
  .rt-time-text { font-size: 15px; letter-spacing: 0; }
  .rt-road-line { left: 62px; width: 10px; }
  .rt-icon { left: 67px; width: 32px; height: 32px; font-size: 14px; }
  .rt-content { margin-left: 35px; padding-top: 0; }
  .rt-item-title { font-size: 15px; margin-bottom: 6px; line-height: 1.4; } 
  .rt-item-desc { font-size: 13px; line-height: 1.6; }
  
  .date-section-title { font-size: 18px; padding: 10px 25px; }
  
  .deco-1 { font-size: 30px; left: 10px; top: 10px; }
  .deco-2 { font-size: 20px; left: 30px; }
  .deco-3 { font-size: 35px; right: 10px; top: 20px; }
}

@media screen and (max-width: 1024px) {
  .tour-lp-main {
    margin: 10px 10px 40px;
    border-radius: 20px;
  }
}

@media screen and (min-width: 768px) {
  .lp-section { padding: 60px 0; }
  .date-section-title { font-size: 30px; padding: 12px 50px; }
  .date-section-title::before, .date-section-title::after { width: 35px; }
  .sp-only { display: none; }
  
  .split-grid { flex-direction: row; gap: 30px; flex-wrap: wrap; }
  .flex-one { flex: 1; min-width: calc(33.333% - 20px); margin: 0; }
  .flex-full { width: 100%; flex: 0 0 100%; margin: 0; }
  
  .grid-gallery-horizontal { display: flex; flex-direction: row; gap: 20px; align-items: center; padding: 0 20px 20px; }
  .grid-gallery-horizontal img { width: 50%; max-height: 250px; object-fit: cover; border-radius: 20px; border: 4px solid var(--date-border); margin-bottom: 0; }
  .hotel-info-text { width: 50%; padding-right: 15px; }
}