/* =========================================================
   機能目的：全要素の余白計算を安定させる
========================================================= */
* {
  box-sizing: border-box;
}

/* =========================================================
   機能目的：ページ内リンクの移動をなめらかにする
========================================================= */
html {
  scroll-behavior: smooth;
}

/* =========================================================
   機能目的：ページ全体の基本フォント・背景色・文字色・横スクロール抑制を設定する
========================================================= */
body {
  margin: 0;
  color: #1f2933;
  background: #f7f3ea;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =========================================================
   機能目的：画像のはみ出しを防ぎ、レスポンシブ表示に対応する
========================================================= */
img {
  display: block;
  max-width: 100%;
}

/* =========================================================
   機能目的：リンクの標準下線を消し、デザインを統一する
========================================================= */
a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   機能目的：ボタンのフォントをページ全体と統一する
========================================================= */
button {
  font-family: inherit;
}

/* =========================================================
   機能目的：ヘッダーを画面上部に固定し、常にナビゲーションを使えるようにする
========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(5, 18, 34, 0.9);
  border-bottom: 1px solid rgba(215, 184, 103, 0.22);
  backdrop-filter: blur(10px);
}

/* =========================================================
   機能目的：ヘッダー内のロゴ・ナビ・スマホボタンを横並びに配置する
========================================================= */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   機能目的：ロゴ文字を上下2段で表示する
========================================================= */
.site-logo {
  display: inline-flex;
  flex-direction: column;
  color: #ffffff;
  line-height: 1.15;
}

/* 機能目的：ロゴのメイン文字を目立たせる */
.site-logo-main {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* 機能目的：ロゴのサブ文字をゴールドで表示する */
.site-logo-sub {
  color: #d7b867;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================================================
   機能目的：PC用ナビゲーションを横並びに表示する
========================================================= */
.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
}

/* 機能目的：ナビゲーションリンクの下線アニメーション基準を作る */
.global-nav a {
  position: relative;
  transition: color 0.25s ease;
}

/* 機能目的：ナビゲーションリンクのホバー下線を表示する */
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: #d7b867;
  transition: width 0.25s ease;
}

/* 機能目的：ナビゲーションリンクをホバー時にゴールドへ変える */
.global-nav a:hover {
  color: #d7b867;
}

/* 機能目的：ナビゲーションリンクのホバー時に下線を伸ばす */
.global-nav a:hover::after {
  width: 100%;
}

/* 機能目的：PC用言語切替ボタンを枠付きで表示する */
.language-link {
  padding: 8px 14px;
  border: 1px solid rgba(215, 184, 103, 0.65);
  border-radius: 999px;
  color: #d7b867;
}

/* =========================================================
   機能目的：スマホ用の言語切替とハンバーガーメニューを横並びで管理する
========================================================= */
.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

/* 機能目的：スマホ用言語切替ボタンを表示する */
.mobile-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  border: 1px solid rgba(215, 184, 103, 0.65);
  border-radius: 999px;
  color: #d7b867;
  font-size: 0.82rem;
  font-weight: 700;
}

/* 機能目的：スマホ用ハンバーガーボタンを丸枠で表示する */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(215, 184, 103, 0.5);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

/* 機能目的：ハンバーガーメニューの3本線を表示する */
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #d7b867;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* 機能目的：スマホメニューを初期状態では非表示にする */
.mobile-nav {
  display: none;
}

/* 機能目的：メニュー展開時にハンバーガー1本目を斜め線へ変化させる */
.site-header.is-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

/* 機能目的：メニュー展開時にハンバーガー2本目を非表示にする */
.site-header.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

/* 機能目的：メニュー展開時にハンバーガー3本目を斜め線へ変化させる */
.site-header.is-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   機能目的：共通セクションの上下余白を統一する
========================================================= */
.section {
  padding: 96px 0;
}

/* 機能目的：各セクションの横幅を統一する */
.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* 機能目的：セクション見出しの下余白を整える */
.section-heading {
  margin-bottom: 38px;
}

/* 機能目的：見出しを中央寄せで表示する */
.section-heading.center {
  text-align: center;
}

/* 機能目的：英字ラベル風の小見出しを表示する */
.section-label {
  margin: 0 0 12px;
  color: #b58a32;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

/* 機能目的：セクションタイトルの文字サイズ・色・行間を統一する */
.section-heading h2,
.reservation-content h2 {
  margin: 0;
  color: #071426;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  line-height: 1.45;
  letter-spacing: 0.06em;
}

/* 機能目的：セクション説明文を読みやすい幅と色で表示する */
.section-lead {
  max-width: 760px;
  margin: 16px auto 0;
  color: #5d6673;
}

/* =========================================================
   機能目的：ファーストビュー全体の高さ・背景・画像スライド領域を管理する
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #071426;
}

/* 機能目的：スライド画像をファーストビュー全面に重ねて配置する */
.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

/* 機能目的：非表示スライドを透明にする */
.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

/* 機能目的：表示中スライドだけを見せる */
.hero-slide.is-active {
  opacity: 1;
}

/* 機能目的：TOP画像を画面いっぱいにトリミング表示する */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 機能目的：TOP画像の視認性を保ちながら、暗いシャドウ感を極薄に抑える */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 34, 0.22), rgba(5, 18, 34, 0.06)),
    linear-gradient(180deg, rgba(5, 18, 34, 0.02), rgba(5, 18, 34, 0.18));
}

/* 機能目的：ファーストビューのテキストを中央付近に配置する */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1120px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 76px;
  color: #ffffff;
}

/* 機能目的：ファーストビューの小ラベルをゴールドで表示する */
.hero-label {
  margin: 0 0 18px;
  color: #d7b867;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

/* 機能目的：ファーストビューの大見出しを大きく表示する */
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.22;
  letter-spacing: 0.04em;
}

/* 機能目的：ファーストビュー説明文を読みやすく表示する */
.hero-text {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 2;
}

/* 機能目的：ファーストビュー内のボタンを横並びで表示する */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

/* 機能目的：共通ボタンの形・サイズ・アニメーションを設定する */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* 機能目的：主要ボタンをゴールドで強調する */
.btn-primary {
  color: #071426;
  background: linear-gradient(135deg, #e5c772, #b58a32);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* 機能目的：サブボタンを白枠で表示する */
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* 機能目的：ボタンに触れた時に少し浮かせる */
.btn:hover {
  transform: translateY(-3px);
}

/* 機能目的：スライド切替ドットをファーストビュー下部に表示する */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

/* 機能目的：スライド切替ドットの基本形を設定する */
.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

/* 機能目的：表示中スライドのドットをゴールドで強調する */
.hero-dot.is-active {
  border-color: #d7b867;
  background: #d7b867;
}

/* =========================================================
   機能目的：CONCEPTセクションを濃紺背景にし、スクショ風の丸型フロー表示を配置する
========================================================= */
.concept-flow-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(215, 184, 103, 0.16), transparent 34%),
    linear-gradient(135deg, #071426 0%, #0b1e36 48%, #071426 100%);
}

/* =========================================================
   機能目的：TOPとCONCEPTの境目に、太めで目立つ金色の動くラインを追加する
========================================================= */
.concept-flow-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      rgba(215, 184, 103, 0.25) 0%,
      rgba(255, 244, 189, 0.95) 12%,
      rgba(215, 184, 103, 0.5) 24%,
      rgba(215, 184, 103, 0.25) 36%,
      rgba(255, 255, 230, 1) 48%,
      rgba(215, 184, 103, 0.55) 60%,
      rgba(215, 184, 103, 0.25) 72%,
      rgba(255, 244, 189, 0.95) 84%,
      rgba(215, 184, 103, 0.25) 100%
    );
  background-size: 320% 100%;
  animation: goldBorderSlowMove 9.5s linear infinite;
  box-shadow:
    0 0 10px rgba(215, 184, 103, 0.7),
    0 0 22px rgba(215, 184, 103, 0.38),
    0 0 36px rgba(255, 244, 189, 0.2);
}

/* 機能目的：金色ラインの上下に広めの光を重ね、キラッと光る回数を増やす */
.concept-flow-section::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 20px;
  background:
    radial-gradient(circle at 8% 50%, rgba(255, 255, 235, 0.9) 0 2px, transparent 7px),
    radial-gradient(circle at 22% 50%, rgba(215, 184, 103, 0.65) 0 2px, transparent 8px),
    radial-gradient(circle at 38% 50%, rgba(255, 255, 235, 0.85) 0 2px, transparent 7px),
    radial-gradient(circle at 56% 50%, rgba(215, 184, 103, 0.7) 0 2px, transparent 8px),
    radial-gradient(circle at 74% 50%, rgba(255, 255, 235, 0.9) 0 2px, transparent 7px),
    radial-gradient(circle at 90% 50%, rgba(215, 184, 103, 0.7) 0 2px, transparent 8px),
    linear-gradient(
      90deg,
      rgba(215, 184, 103, 0) 0%,
      rgba(215, 184, 103, 0.28) 22%,
      rgba(255, 244, 189, 0.48) 50%,
      rgba(215, 184, 103, 0.28) 78%,
      rgba(215, 184, 103, 0) 100%
    );
  background-size: 300% 100%;
  filter: blur(2px);
  opacity: 0.95;
  pointer-events: none;
  animation:
    goldBorderSlowMove 9.5s linear infinite,
    goldSparkleBlink 2.4s ease-in-out infinite;
}

/* 機能目的：コンセプトコピーと丸型フローを2カラムで表示する */
.concept-flow-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 56px;
  align-items: center;
}

/* 機能目的：CONCEPT内ラベルをゴールドで表示する */
.concept-flow-copy .section-label {
  color: #d7b867;
}

/* 機能目的：CONCEPT内の大見出しを白で表示する */
.concept-flow-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.42;
  letter-spacing: 0.12em;
}

/* 機能目的：CONCEPT本文を白寄せで読みやすく表示する */
.concept-flow-copy p:not(.section-label) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 2;
}

/* =========================================================
   機能目的：受け取り・移動・宿泊返却の流れを丸型アイコンで表示する
========================================================= */
.combo-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* 機能目的：CONCEPT内の丸型フローを右寄せにする */
.concept-flow {
  justify-content: flex-end;
}

/* 機能目的：流れアイコンの丸型カードを作り、スクロール表示前は非表示状態にする */
.combo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 176px;
  min-height: 198px;
  padding: 24px 18px;
  border: 1px solid rgba(215, 184, 103, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(5, 18, 34, 0.74);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.35s ease;
}

/* 機能目的：スクロールで表示領域に入った流れアイコンを表示状態にする */
.combo-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 機能目的：流れアイコンに触れた時に影を強める */
.combo-step:hover {
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.36),
    0 0 30px rgba(215, 184, 103, 0.12);
}

/* 機能目的：アイコン背景の丸い土台を作る */
.combo-step-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.78) 62%, rgba(215, 184, 103, 0.08) 100%);
}

/* 機能目的：メインアイコンを中央に表示する */
.combo-icon-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
}

/* 機能目的：補助アイコンをメインアイコン周辺に配置する */
.combo-icon-mini {
  position: absolute;
  font-size: 1rem;
  line-height: 1;
}

/* 機能目的：駅アイコンを右上に配置する */
.combo-icon-mini-train {
  top: 12px;
  right: 11px;
}

/* 機能目的：指定場所アイコンを左下に配置する */
.combo-icon-mini-pin {
  left: 12px;
  bottom: 10px;
}

/* 機能目的：流れアイコンのタイトルを白で表示する */
.combo-step h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* 機能目的：流れアイコンの説明文を白寄せで表示する */
.combo-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* 機能目的：流れアイコンの英字補足をゴールドで表示する */
.combo-step span {
  margin-top: 10px;
  color: #d7b867;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

/* 機能目的：流れアイコン同士をゴールドの矢印でつなぐ */
.combo-arrow {
  color: #d7b867;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

/* 機能目的：受け取りアイコンの飛行機をふわっと動かす */
.pickup .combo-icon-main {
  animation: pickupMainFloat 3.6s ease-in-out infinite;
}

/* 機能目的：受け取りアイコン内の駅アイコンを左右に小さく動かす */
.pickup .combo-icon-mini-train {
  animation: pickupTrainMove 2.8s ease-in-out infinite;
}

/* 機能目的：受け取りアイコン内の指定場所アイコンを軽く拡大縮小させる */
.pickup .combo-icon-mini-pin {
  animation: pickupPinPulse 2.2s ease-in-out infinite;
}

/* 機能目的：移動アイコンの車を左右に走るように動かす */
.drive .combo-icon-main {
  animation: driveCarMove 2.6s ease-in-out infinite;
}

/* 機能目的：宿泊・返却アイコンの家をふわっと拡大縮小させる */
.stay .combo-icon-main {
  animation: stayHomePulse 3.2s ease-in-out infinite;
}

/* =========================================================
   機能目的：ゲストハウス紹介セクションの明るい背景を設定する
========================================================= */
.light-section {
  background: linear-gradient(180deg, #f7f3ea 0%, #fffaf0 100%);
}

/* =========================================================
   機能目的：RENT A CARセクションを明るい背景で表示する
========================================================= */
.rentacar-section {
  background:
    linear-gradient(180deg, #f7f3ea 0%, #fffaf0 100%);
}

/* 機能目的：RENT A CAR見出しを濃紺で表示する */
.rentacar-section .section-heading h2 {
  color: #071426;
}

/* 機能目的：RENT A CAR説明文を通常の本文色で表示する */
.rentacar-section .section-lead {
  color: #5d6673;
}

/* =========================================================
   機能目的：特徴カードをグリッドで表示する
========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* 機能目的：3枚カード用のグリッド列数を設定する */
.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 機能目的：レンタカーの実資料画像2枚を横並びで見やすく表示する */
.feature-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 機能目的：ゲストハウス写真をPCでは3列で一覧表示し、各写真を大きめに見せる */
.guesthouse-photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 機能目的：特徴カードの見た目・スクロール表示前の初期状態を設定する */
.feature-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 24, 31, 0.11);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.35s ease;
}

/* 機能目的：スクロールで表示領域に入った特徴カードを表示状態にする */
.feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 機能目的：カードに触れた時に影を強める */
.feature-card:hover {
  box-shadow: 0 24px 48px rgba(20, 24, 31, 0.16);
}

/* 機能目的：カード画像の高さを統一する */
.feature-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* 機能目的：レンタカー料金表・案内画像だけはトリミングせず全体表示する */
.info-image-card img {
  height: 300px;
  padding: 12px;
  object-fit: contain;
  background: #ffffff;
}

/* 機能目的：カード内テキスト領域の余白を設定する */
.feature-content {
  padding: 24px;
}

/* 機能目的：カードタイトルを見やすく表示する */
.feature-content h3 {
  margin: 0 0 10px;
  color: #071426;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

/* 機能目的：カード説明文を読みやすく表示する */
.feature-content p {
  margin: 0;
  color: #5d6673;
  font-size: 0.94rem;
}

/* =========================================================
   機能目的：TRAVEL SUPPORTを濃紺背景にし、自由な組み合わせ訴求として表示する
========================================================= */
.plans-section-combo {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at top left, rgba(215, 184, 103, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #071426 0%, #0b1e36 48%, #071426 100%);
}

/* 機能目的：TRAVEL SUPPORTセクションに薄いゴールド枠を表示する */
.plans-section-combo::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(215, 184, 103, 0.22);
  pointer-events: none;
}

/* 機能目的：TRAVEL SUPPORT内の要素を装飾枠より前面に表示する */
.plans-section-combo .section-inner {
  position: relative;
  z-index: 1;
}

/* 機能目的：組み合わせ訴求のコピーエリアを表示する */
.combo-hero {
  margin-bottom: 36px;
}

/* 機能目的：TRAVEL SUPPORTのテキスト訴求を中央寄せで表示する */
.combo-hero-text-only {
  display: block;
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

/* 機能目的：TRAVEL SUPPORT内ラベルをゴールドで表示する */
.combo-copy .section-label {
  color: #d7b867;
}

/* 機能目的：TRAVEL SUPPORT内の大見出しを白で表示する */
.combo-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1.42;
  letter-spacing: 0.12em;
}

/* 機能目的：TRAVEL SUPPORT内の説明文を白寄せで表示する */
.combo-lead {
  max-width: 560px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 2;
}

/* 機能目的：TRAVEL SUPPORT内の補足文を白寄せで表示する */
.combo-subtext {
  max-width: 580px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.95;
}

/* =========================================================
   機能目的：自由な組み合わせ例を濃紺背景上で目立つボックスとして表示する
========================================================= */
.combo-example-box {
  margin: 0 0 34px;
  padding: 18px 22px;
  border-left: 4px solid #d7b867;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.075);
}

/* 機能目的：組み合わせ例のラベルをゴールドで表示する */
.combo-example-label {
  margin: 0 0 6px;
  color: #d7b867;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

/* 機能目的：組み合わせ例の本文を白で強調する */
.combo-example-text {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.9;
}

/* =========================================================
   機能目的：指定場所・空港・駅の対応内容を濃紺背景上のカードで表示する
========================================================= */
.combo-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* 機能目的：組み合わせプランカードをガラス風に表示し、スクロール表示前は非表示状態にする */
.combo-plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 24px 24px;
  border: 1px solid rgba(215, 184, 103, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(5, 18, 34, 0.74);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* 機能目的：スクロールで表示領域に入ったプランカードを表示状態にする */
.combo-plan-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 機能目的：プランカードに触れた時に影と枠色を強調する */
.combo-plan-card:hover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.36),
    0 0 32px rgba(215, 184, 103, 0.12);
  border-color: rgba(215, 184, 103, 0.58);
}

/* 機能目的：中央の空港対応カードを濃紺背景上で少し目立たせる */
.combo-plan-card-featured {
  border-color: rgba(215, 184, 103, 0.58);
  background:
    linear-gradient(145deg, rgba(215, 184, 103, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(5, 18, 34, 0.82);
}

/* 機能目的：プラン番号とタイトルを横並びで表示する */
.combo-plan-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* 機能目的：プラン番号をゴールドの丸で表示する */
.combo-plan-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7b867, #a77a25);
  color: #071426;
  font-size: 0.92rem;
  font-weight: 800;
}

/* 機能目的：プランカードのタイトルを白で表示する */
.combo-plan-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* 機能目的：プランカードのキャッチ文をゴールド寄せで表示する */
.combo-plan-catch {
  margin: 0 0 16px;
  color: #f7e7b1;
  font-weight: 700;
  line-height: 1.85;
}

/* 機能目的：プラン対応内容を箇条書きで表示する */
.combo-plan-list {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

/* 機能目的：プラン箇条書きの行間と色を整える */
.combo-plan-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

/* 機能目的：プラン箇条書きの先頭にゴールドの丸を表示する */
.combo-plan-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7b867;
  transform: translateY(-50%);
}

/* 機能目的：組み合わせルート例をカード下部に分けて表示する */
.combo-route-list {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(215, 184, 103, 0.2);
}

/* 機能目的：組み合わせルート例の見出しをゴールドで表示する */
.combo-route-title {
  margin: 0 0 10px;
  color: #d7b867;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* 機能目的：組み合わせルート例のリスト余白を整える */
.combo-route-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

/* 機能目的：組み合わせルート例の本文を白寄せで表示する */
.combo-route-list li {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
  font-size: 0.93rem;
}

/* =========================================================
   機能目的：対応条件や注意事項を濃紺背景上の補足ボックスとして表示する
========================================================= */
.combo-note-box {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(215, 184, 103, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
}

/* 機能目的：補足ボックス内の文章を白寄せで読みやすく表示する */
.combo-note-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
  font-size: 0.92rem;
}

/* =========================================================
   機能目的：TRAVEL SUPPORT下部に確定した一般レンタカー料金をカード形式で表示する
========================================================= */
.travel-price-box {
  margin-top: 34px;
  padding: 28px 26px;
  border: 1px solid rgba(215, 184, 103, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(5, 18, 34, 0.72);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* 機能目的：レンタカー料金エリアの見出しと説明文を中央寄せで表示する */
.travel-price-heading {
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
}

/* 機能目的：レンタカー料金エリアの見出しラベルをゴールドで表示する */
.travel-price-heading .section-label {
  color: #d7b867;
}

/* 機能目的：レンタカー料金エリアのタイトルを白で表示する */
.travel-price-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  letter-spacing: 0.08em;
}

/* 機能目的：レンタカー料金エリアの説明文を白寄せで読みやすく表示する */
.travel-price-heading p:not(.section-label) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

/* 機能目的：レンタカー料金カードをグリッドで表示する */
.travel-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* 機能目的：各レンタカー料金を白いカードで見やすく区切る */
.travel-price-card {
  padding: 20px 18px;
  border: 1px solid rgba(215, 184, 103, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

/* 機能目的：レンタカー料金カードの車種名をゴールド寄せで表示する */
.travel-price-card span {
  display: block;
  color: #8b661f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* 機能目的：レンタカー料金カードの主要料金を大きく強調する */
.travel-price-card strong {
  display: block;
  margin-top: 8px;
  color: #071426;
  font-size: 1.28rem;
  line-height: 1.45;
}

/* 機能目的：レンタカー料金カードの24時間・延長料金を読みやすく表示する */
.travel-price-card p {
  margin: 10px 0 0;
  color: #5d6673;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* 機能目的：税別・延長単位未確認・配達回収・カード対応の補足を表示する */
.travel-price-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.8;
  text-align: center;
}

/* =========================================================
   機能目的：予約セクションの背景をゴールド寄りの淡い色にする
========================================================= */
.reservation-section {
  background: linear-gradient(135deg, #fffaf0 0%, #efe3c8 100%);
}

/* 機能目的：予約説明と電話ボックスを2カラムで表示する */
.reservation-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
}

/* 機能目的：予約説明文の色と余白を整える */
.reservation-content p:not(.section-label) {
  margin: 18px 0 0;
  color: #4c5765;
}

/* 機能目的：電話予約ボックスを濃紺背景で目立たせ、表示前は非表示状態にする */
.reservation-tel-box {
  padding: 30px 28px;
  border: 1px solid rgba(181, 138, 50, 0.36);
  border-radius: 22px;
  background: #071426;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 38px rgba(20, 24, 31, 0.18);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 機能目的：スクロールで表示領域に入った電話予約ボックスを表示状態にする */
.reservation-tel-box.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 機能目的：電話予約ボックスのラベルをゴールドで表示する */
.tel-label {
  margin: 0 0 12px;
  color: #d7b867;
  font-size: 0.92rem;
  font-weight: 700;
}

/* 機能目的：電話番号を大きく太字で表示する */
.tel-number {
  display: block;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* 機能目的：受付時間を補足として表示する */
.tel-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}


/* =========================================================
   機能目的：予約欄の会社情報・FAX・外国人向けメールフォームを表示する
========================================================= */
.reservation-side {
  display: grid;
  gap: 18px;
}

/* 機能目的：電話予約ボックス内の会社名を補足表示する */
.company-name {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* 機能目的：FAX番号を電話番号の下に読みやすく表示する */
.fax-number {
  display: block;
  margin-top: 6px;
}

/* 機能目的：外国人のお客様向けメール問い合わせフォームを白いカードで表示する */
.email-form-box {
  padding: 24px 22px;
  border: 1px solid rgba(181, 138, 50, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(20, 24, 31, 0.12);
}

/* 機能目的：メールフォームの対象者ラベルをゴールドで表示する */
.email-form-label {
  margin: 0 0 8px;
  color: #b58a32;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

/* 機能目的：メールフォームの見出しを濃紺で表示する */
.email-form-box h3 {
  margin: 0;
  color: #071426;
  font-size: 1.22rem;
  line-height: 1.45;
}

/* 機能目的：メールフォームの説明文を読みやすい色で表示する */
.email-form-text {
  margin: 10px 0 0;
  color: #4c5765;
  font-size: 0.9rem;
  line-height: 1.75;
}

/* 機能目的：メールフォーム内の入力項目を縦並びで表示する */
.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

/* 機能目的：入力項目ラベルを見やすく表示する */
.contact-form label {
  display: grid;
  gap: 6px;
  color: #071426;
  font-size: 0.88rem;
  font-weight: 700;
}

/* 機能目的：入力欄とテキストエリアの見た目を統一する */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(7, 20, 38, 0.18);
  border-radius: 12px;
  background: #ffffff;
  color: #1f2933;
  font: inherit;
}

/* 機能目的：問い合わせ内容を複数行で入力できるようにする */
.contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

/* 機能目的：メール送信用ボタンをゴールドで強調する */
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: #071426;
  background: linear-gradient(135deg, #e5c772, #b58a32);
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
}

/* 機能目的：SMTPフォーム送信時の注意点を小さく補足する */
.form-note {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.65;
}



/* 機能目的：Bot対策用ハニーポットを画面外に配置し、通常操作やレイアウトへ影響させない */
.form-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* 機能目的：送信中のボタンを無効状態として視覚的にも示す */
.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

/* 機能目的：SMTP送信結果をフォーム直下に読みやすく表示する */
.form-status {
  margin: 14px 0 0;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.6;
}

/* 機能目的：SMTP送信成功を利用者へ明確に通知する */
.form-status.is-success {
  border: 1px solid rgba(24, 120, 76, 0.3);
  background: rgba(24, 120, 76, 0.08);
}

/* 機能目的：入力不備またはSMTP送信失敗を利用者へ明確に通知する */
.form-status.is-error {
  border: 1px solid rgba(170, 45, 45, 0.3);
  background: rgba(170, 45, 45, 0.08);
}

/* =========================================================
   機能目的：フッター全体を濃紺背景で表示する
========================================================= */
.site-footer {
  background: #050f1e;
  color: #ffffff;
  padding: 44px 0;
}

/* 機能目的：フッター内のロゴ情報とリンクを横並びにする */
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* 機能目的：フッターのサイト名をゴールドで表示する */
.footer-logo {
  margin: 0 0 8px;
  color: #d7b867;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* 機能目的：フッター説明文を白寄せで表示する */
.footer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* 機能目的：フッターリンクを横並びで表示する */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

/* =========================================================
   機能目的：画面右下に電話予約ボタンを固定表示する
========================================================= */
.floating-tel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #071426;
  background: linear-gradient(135deg, #e5c772, #b58a32);
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

/* =========================================================
   機能目的：金色ラインの光をゆっくり横方向へ流す
========================================================= */
@keyframes goldBorderSlowMove {
  0% {
    background-position: 280% 0;
  }

  100% {
    background-position: -80% 0;
  }
}

/* =========================================================
   機能目的：境目ライン周辺の光を短い間隔で明滅させ、キラッと光る印象を増やす
========================================================= */
@keyframes goldSparkleBlink {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleY(0.9);
  }

  35% {
    opacity: 1;
    transform: scaleY(1.15);
  }

  62% {
    opacity: 0.75;
    transform: scaleY(1);
  }

  82% {
    opacity: 1;
    transform: scaleY(1.12);
  }
}

/* =========================================================
   機能目的：受け取りアイコンの飛行機を上下左右にふわっと動かす
========================================================= */
@keyframes pickupMainFloat {
  0%, 100% {
    transform: translate(-3px, 0) rotate(-4deg);
  }

  50% {
    transform: translate(5px, -6px) rotate(4deg);
  }
}

/* =========================================================
   機能目的：駅アイコンを左右に小さく動かす
========================================================= */
@keyframes pickupTrainMove {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

/* =========================================================
   機能目的：指定場所アイコンを拡大縮小させて目に留まりやすくする
========================================================= */
@keyframes pickupPinPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

/* =========================================================
   機能目的：車アイコンを左右に動かし、走行感を出す
========================================================= */
@keyframes driveCarMove {
  0%, 100% {
    transform: translateX(-5px) rotate(-2deg);
  }

  50% {
    transform: translateX(6px) rotate(2deg);
  }
}

/* =========================================================
   機能目的：宿泊アイコンを軽く浮かせて拡大縮小する
========================================================= */
@keyframes stayHomePulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.08);
  }
}

/* =========================================================
   機能目的：横幅1100px以下でCONCEPTの丸型フローを1カラムへ調整する
========================================================= */
@media (max-width: 1100px) {
  .concept-flow-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .concept-flow {
    justify-content: flex-start;
  }
}

/* =========================================================
   機能目的：タブレット幅でナビ・カード・予約欄を見やすく調整する
========================================================= */
@media (max-width: 980px) {
  .global-nav {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 18px;
    background: rgba(5, 18, 34, 0.96);
    border-top: 1px solid rgba(215, 184, 103, 0.18);
  }

  .site-header.is-open .mobile-nav {
    display: flex;
  }

  .mobile-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
  }

  .feature-grid,
  .feature-grid.three,
  .feature-grid.two,
  .guesthouse-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .combo-plan-grid {
    grid-template-columns: 1fr;
  }

  .travel-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .combo-flow {
    gap: 14px;
  }

  .combo-step {
    width: 160px;
    min-height: 182px;
  }

  .reservation-inner {
    grid-template-columns: 1fr;
  }

  .reservation-tel-box {
    max-width: 420px;
    margin: 0 auto;
  }

  .reservation-side {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .reservation-side .reservation-tel-box {
    width: 100%;
    max-width: none;
  }
}

/* =========================================================
   機能目的：スマホ幅で余白・文字サイズ・カード列数・固定ボタンを最適化する
========================================================= */
@media (max-width: 640px) {
  .header-inner {
    height: 68px;
    padding: 0 16px;
  }

  .site-logo-main {
    font-size: 0.98rem;
  }

  .site-logo-sub {
    font-size: 0.68rem;
  }

  .section {
    padding: 74px 0;
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  /* =========================================================
     機能目的：スマホ版TOPの縦長すぎる表示を抑え、ファーストビューを見やすい高さに調整する
  ========================================================= */
  .hero {
    min-height: 620px;
  }

  /* =========================================================
     機能目的：スマホ版TOP内の文字エリアの高さを短くし、余白を詰める
  ========================================================= */
  .hero-content {
    width: min(100% - 32px, 1120px);
    min-height: 620px;
    padding-top: 68px;
    padding-bottom: 92px;
    justify-content: center;
  }

  /* =========================================================
     機能目的：スマホ版TOPの大見出しを少しだけ抑え、縦方向の圧迫を減らす
  ========================================================= */
  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.32;
  }

  /* =========================================================
     機能目的：スマホ版TOPの説明文余白を少し詰めて縦長感を抑える
  ========================================================= */
  .hero-text {
    margin-top: 20px;
    font-size: 0.94rem;
    line-height: 1.85;
  }

  /* =========================================================
     機能目的：スマホ版TOPのボタンを中央寄せにし、表示位置を整える
  ========================================================= */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }

  /* =========================================================
     機能目的：スマホ版TOPのボタン幅を保ちつつ、縦方向の余白を少し抑える
  ========================================================= */
  .btn {
    width: 100%;
    max-width: 250px;
    min-height: 46px;
  }

  /* =========================================================
     機能目的：スマホ版TOPのスライド点を下げすぎず、ボタンと被らない位置に調整する
  ========================================================= */
  .hero-dots {
    bottom: 48px;
  }

  .feature-grid,
  .feature-grid.three,
  .feature-grid.two,
  .guesthouse-photo-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: 220px;
  }

  /* 機能目的：スマホでも料金表・案内画像は縦横比を維持して全体表示する */
  .info-image-card img {
    height: auto;
    max-height: 360px;
  }

  .concept-flow-copy h2,
  .combo-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    letter-spacing: 0.08em;
    line-height: 1.5;
  }

  .concept-flow-copy p:not(.section-label),
  .combo-lead,
  .combo-subtext {
    font-size: 0.94rem;
  }

  .combo-flow {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .combo-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .combo-step {
    width: 100%;
    max-width: 240px;
    min-height: 168px;
    border-radius: 40px;
  }

  .plans-section-combo {
    padding: 76px 0;
  }

  .plans-section-combo::before {
    inset: 14px;
  }

  .combo-hero-text-only {
    text-align: left;
  }

  .combo-lead,
  .combo-subtext {
    margin-left: 0;
    margin-right: 0;
  }

  .combo-example-box,
  .combo-note-box {
    padding: 16px;
  }

  .combo-plan-card {
    padding: 24px 18px 20px;
    border-radius: 18px;
  }

  .travel-price-box {
    padding: 22px 16px;
  }

  .travel-price-heading {
    text-align: left;
  }

  .travel-price-grid {
    grid-template-columns: 1fr;
  }

  .travel-price-note {
    text-align: left;
  }

  .combo-plan-head h3 {
    font-size: 1.2rem;
  }

  .combo-route-list li {
    font-size: 0.9rem;
  }

  .reservation-tel-box {
    padding: 26px 20px;
  }

  .email-form-box {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .floating-tel {
    right: 16px;
    bottom: 16px;
    min-width: 112px;
    height: 44px;
    font-size: 0.88rem;
  }
}
/* =========================================================
   変更箇所：提供された民泊所在地と確定レンタカー料金の表示を追加
   機能目的：所在地・料金情報をPC/スマホの双方で読みやすく表示する
========================================================= */
.guesthouse-address-box {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(181, 138, 50, 0.28);
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(20, 24, 31, 0.08);
}
.guesthouse-address-box strong { display: block; margin-bottom: 6px; color: #8b661f; }
.guesthouse-address-box address { color: #374151; font-style: normal; line-height: 1.8; }
.rental-price-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.company-address { margin: 14px 0 0; color: rgba(255,255,255,.72); font-size: .82rem; line-height: 1.65; }
@media (max-width: 980px) { .rental-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .guesthouse-address-box { margin-top: 24px; padding: 18px 16px; text-align: left; }
  .rental-price-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   機能目的：概要画像・料金表を大きく見せる単体カードレイアウトを追加する
========================================================= */
.featured-visual-card {
  max-width: 1040px;
  margin: 0 auto 28px;
}

.featured-visual-card-poster {
  max-width: 820px;
  margin-bottom: 40px;
}

.featured-visual-card-banner {
  max-width: 980px;
}

.featured-visual-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #ffffff;
}

.featured-visual-card .feature-content {
  padding: 20px 24px 24px;
}

.gallery-heading {
  max-width: 1120px;
  margin: 0 auto 26px;
}

.gallery-heading h3 {
  margin: 0 0 8px;
  color: #071426;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.gallery-heading p {
  margin: 0;
  color: #5d6673;
}

.rentacar-note-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 18px 24px;
  border: 1px solid rgba(10, 36, 72, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 32px rgba(20, 24, 31, 0.08);
}

.rentacar-note-box p {
  margin: 0;
  color: #4c5562;
}

.rentacar-note-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #0b56c3;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.05em;
}

@media (max-width: 980px) {
  .rentacar-note-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .rentacar-note-box a {
    min-width: 0;
  }
}


/* =========================================================
   機能目的：民泊所在地からGoogle Mapsを開く導線を見やすく表示する
========================================================= */
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(11, 86, 195, 0.24);
  border-radius: 999px;
  background: #0b56c3;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.map-link:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .map-link {
    width: 100%;
    margin-top: 12px;
  }
}
