﻿/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .ryusho-hero              - TOPページのMVヒーロー（グラデーション背景）
 * .ryusho-price-card        - ヒーロー内の料金カード
 * .ryusho-feature-strip     - ヒーロー直下の特徴アイコン4列バナー
 * .ryusho-reserve-cta       - 予約促進グラデーションバナー
 * .ryusho-link-banners      - 車種・料金 / ご利用ガイドへのリンクバナー
 * .ryusho-store-grid        - 店舗情報マップ+詳細2列グリッド
 * .ryusho-text-grad         - グラデーションテキスト
 * .ryusho-price-table       - 料金表テーブル
 * .ryusho-season-box        - ハイシーズン料金ボックス
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 *
 * グラデーション系（構造不足）:
 *   $base_color単色はあるがCSSグラデーション変数が共通CSSに定義されていない
 *   → --ryusho-grad-main CSS変数としてルートに定義して全体で利用
 *
 * 大型グラデーションCTAバナー（構造不足）:
 *   footer-ctaに近いが横長カード型+左テキスト+右ボタンの2カラム構造がない
 *
 * ページヒーローのグラデーション背景（状態不足）:
 *   page-hero--solidはbase_color単色のみ。グラデーション版が必要
 *
 */

/* ============================================================
   CSS変数（グラデーション定義）
   ============================================================ */
:root {
  --ryusho-grad-main: linear-gradient(135deg, #ED7E1A 0%, #F8C71B 100%);
  --ryusho-grad-deep: linear-gradient(135deg, #C25A0F 0%, #ED7E1A 100%);
  --ryusho-grad-soft: linear-gradient(135deg, #FFE0B3 0%, #FFEC9A 100%);
  --ryusho-shadow-card: 0 8px 24px rgba(194, 90, 15, 0.10);
  --ryusho-shadow-hi:   0 18px 48px rgba(194, 90, 15, 0.18);
}

/* ============================================================
   グローバルフォント上書き（Noto Sans JP 統一）
   ============================================================ */
body,
button, input, select, textarea {
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/* ============================================================
   header-logo（テキストロゴ）
   ============================================================ */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ryusho-grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(194, 90, 15, 0.32);
}
.header-logo__body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header-logo__name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2B2417;
  letter-spacing: 0.04em;
}
.header-logo--dark .header-logo__name {
  color: #FFF9EE;
}
.header-logo--dark .header-logo__icon {
  box-shadow: none;
}

/* ヘッダースクロール時の強調 */
.header-bar.is-scrolled {
  box-shadow: 0 2px 16px rgba(194, 90, 15, 0.12);
}

/* ============================================================
   ページヒーロー グラデーション variant
   ============================================================ */
.page-hero--grad {
  background: var(--ryusho-grad-main);
}
.page-hero--grad .page-hero__content {
  color: #2B2417;
}

/* ============================================================
   グラデーションテキスト utility
   ============================================================ */
.ryusho-text-grad {
  background: var(--ryusho-grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   ボタン gradient variants
   ============================================================ */
.btn--ryusho-grad {
  background: var(--ryusho-grad-main);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(194, 90, 15, 0.32);
}
.btn--ryusho-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(194, 90, 15, 0.44);
}
.btn--ryusho-dark {
  background: #2B2417;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}
.btn--ryusho-dark:hover {
  background: #1d1810;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
}
.btn--ryusho-white {
  background: #fff;
  color: #2B2417;
  border-color: #EDE2C8;
}
.btn--ryusho-white:hover {
  border-color: #C25A0F;
  color: #C25A0F;
}

/* ============================================================
   MV ヒーロー
   ============================================================ */
.ryusho-hero {
  background: var(--ryusho-grad-main);
  padding: 108px 0 48px; /* 80px fixed header + 28px breathing room */
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #2B2417;
}

/* 装飾画像（mv_deco01 / mv_deco02） */
.ryusho-hero__deco-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ryusho-hero__deco-img--left  { left: 0; }
.ryusho-hero__deco-img--right { right: 0; }
@media (max-width: 896px) {
  .ryusho-hero__deco-img {
    display: block;
    height: 40%;
    opacity: 0.35;
  }
}
@media (max-width: 480px) {
  .ryusho-hero__deco-img {
    height: 100%;
    opacity: 0.38;
  }
}

/* ヒーロー内ラッパー */
.ryusho-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* バッジ */
.ryusho-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: #2B2417;
  color: #F8C71B;
  border-radius: 9999px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.ryusho-hero__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #F8C71B;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ヒーロータイトル */
.ryusho-hero__title {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  color: #2B2417;
}

/* ヒーローグリッド（左:カード / 右:車両イラスト） */
.ryusho-hero__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 24px;
  align-items: center;
}

/* 料金カード */
.ryusho-price-card {
  background: #fff;
  border-radius: 28px;
  padding: 26px 30px;
  box-shadow: 0 18px 40px rgba(75, 40, 5, 0.16);
  margin-bottom: 20px;
}
.ryusho-price-card:last-child {
  margin-bottom: 0;
}
.ryusho-price-card__cat {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2B2417;
  padding-bottom: 8px;
  border-bottom: 3px solid #F8C71B;
  margin-bottom: 10px;
  display: inline-block;
}
.ryusho-price-card__capacity {
  font-size: 1.6rem;
  color: #6B5E48;
  margin: 0 0 16px;
  line-height: 1.6;
}
.ryusho-price-card__row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.ryusho-price-card__row:last-child {
  margin-bottom: 0;
}
.ryusho-price-card__tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 5px 14px;
  background: #2B2417;
  color: #fff;
  border-radius: 9999px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ryusho-price-card__price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #C25A0F;
  line-height: 1;
  letter-spacing: 0.02em;
}
.ryusho-price-card__price small {
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 2px;
}

/* 車両画像エリア */
.ryusho-hero__car-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 580px;
  width: 100%;
  justify-self: end;
}
.ryusho-hero__car-circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 30px 60px rgba(75, 40, 5, 0.22);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ryusho-hero__car-circle img {
  width: 210%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
/* 画像なし時のプレースホルダー */
.ryusho-hero__car-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #C25A0F;
}
.ryusho-hero__car-placeholder i {
  font-size: 8rem;
  opacity: 0.6;
}
.ryusho-hero__car-placeholder span {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 5px 14px;
  border: 1px dashed #C25A0F;
  border-radius: 9999px;
  background: rgba(255,255,255,0.9);
}

/* 浮遊フィーチャーピル */
.ryusho-feature-pill {
  position: absolute;
  background: #fff;
  border-radius: 28px;
  padding: 16px 24px;
  box-shadow: 0 14px 30px rgba(75, 40, 5, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.ryusho-feature-pill--top  { top: 4%;  left: -8%; }
.ryusho-feature-pill--right { top: 80%; right: -8%; }
.ryusho-feature-pill__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ryusho-grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 2.0rem;
}
.ryusho-feature-pill__text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2B2417;
  line-height: 1.3;
}
.ryusho-feature-pill__text small {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #6B5E48;
  margin-top: 2px;
}

/* ヒーロー下部（テキスト + CTA） */
.ryusho-hero__bottom {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.ryusho-hero__sub {
  font-size: 1.6rem;
  line-height: 1.95;
  opacity: 0.92;
  max-width: 540px;
  margin: 0;
}
.ryusho-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   特徴バナー（ヒーロー直下4列）
   ============================================================ */
.ryusho-features-strip {
  background: #fff;
  border-radius: 32px;
  border: 1px solid #EDE2C8;
  box-shadow: var(--ryusho-shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.ryusho-feature-item {
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  border-right: 1px solid #FFF4D8;
}
.ryusho-feature-item:last-child { border-right: none; }
.ryusho-feature-item__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFF4D8;
  border: 1.5px dashed #C25A0F;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C25A0F;
  font-size: 2.8rem;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.ryusho-feature-item__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2B2417;
  line-height: 1.4;
}
.ryusho-feature-item__desc {
  font-size: 1.6rem;
  color: #6B5E48;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* ============================================================
   選ばれる理由：セクション見出し
   ============================================================ */
.ryusho-sec-head {
  text-align: center;
  margin-bottom: 40px;
}
.ryusho-sec-head__label {
  display: inline-block;
  padding: 5px 20px;
  background: #FFF4D8;
  color: #C25A0F;
  border-radius: 999px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.ryusho-sec-head__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2B2417;
  margin: 0;
}
.ryusho-sec-head__title em {
  font-style: normal;
  color: #C25A0F;
}
.ryusho-sec-head__sub {
  font-size: 1.6rem;
  color: #6B5E48;
  margin: 10px 0 0;
  line-height: 1.8;
}

/* 選ばれる理由：グリッド修飾子（負のマージンなし） */
.ryusho-features-strip--reasons {
  margin-top: 0;
}

/* 選ばれる理由：画像 */
.ryusho-feature-item__illust {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.ryusho-feature-item__illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   お知らせ（ニュースボックス）
   ============================================================ */
.ryusho-news-box {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #EDE2C8;
  overflow: hidden;
  box-shadow: var(--ryusho-shadow-card);
}

/* ============================================================
   お知らせ リスト（NEWS行型）
   ============================================================ */
.ryusho-news-list {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #EDE2C8;
  overflow: hidden;
  box-shadow: var(--ryusho-shadow-card);
}
.ryusho-news-row {
  display: grid;
  grid-template-columns: 120px 100px 1fr 28px;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid #FFF4D8;
  text-decoration: none;
  color: #2B2417;
  transition: background 0.2s;
}
.ryusho-news-row:last-child {
  border-bottom: none;
}
.ryusho-news-row:hover {
  background: #FFFBF2;
}
.ryusho-news-row__date {
  font-size: 1.4rem;
  color: #6B5E48;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ryusho-news-row__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  background: #FFF4D8;
  border-radius: 9999px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #C25A0F;
  white-space: nowrap;
}
.ryusho-news-row__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}
.ryusho-news-row__arrow {
  font-size: 1.6rem;
  color: #C25A0F;
  justify-self: end;
}

/* ============================================================
   予約CTAバナー
   ============================================================ */
.ryusho-reserve-cta {
  position: relative;
  border-radius: 32px;
  background-color: #ED7E1A;
  background-image: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28114/orange.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 110% auto;
  padding: 64px 56px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 20px 50px rgba(194, 90, 15, 0.28);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
}

.ryusho-reserve-cta__copy {
  position: relative;
  z-index: 2;
}
.ryusho-reserve-cta__kicker {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0.95;
}
.ryusho-reserve-cta__title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px;
}
.ryusho-reserve-cta__sub {
  font-size: 1.6rem;
  line-height: 1.85;
  opacity: 0.95;
  margin: 0;
}
.ryusho-reserve-cta__action {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 260px;
}
.ryusho-reserve-cta__btn {
  background: #fff;
  color: #C25A0F;
  padding: 20px 40px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.8rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}
.ryusho-reserve-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}
.ryusho-reserve-cta__btn--tel {
  background: #2B2417;
  color: #F8C71B;
  border: 2px solid transparent;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}
.ryusho-reserve-cta__btn--tel:hover {
  background: #1d1810;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
}
.ryusho-reserve-cta__tel-wrap {
  text-align: center;
  font-size: 1.6rem;
  opacity: 0.9;
  color: #fff;
}
.ryusho-reserve-cta__tel-wrap strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 4px;
  color: #fff;
  text-decoration: none;
}
.ryusho-reserve-cta__tel-wrap a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   リンクバナー（車種・料金 / ご利用ガイド）
   ============================================================ */
.ryusho-link-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ryusho-link-banner {
  position: relative;
  border-radius: 32px;
  padding: 44px 40px;
  border: 1px solid #EDE2C8;
  background: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 16px;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--ryusho-shadow-card);
  text-decoration: none;
  color: inherit;
}
.ryusho-link-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--ryusho-shadow-hi);
}
.ryusho-link-banner__num {
  font-size: 1.6rem;
  color: #C25A0F;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.ryusho-link-banner__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #2B2417;
}
.ryusho-link-banner__title em {
  font-style: normal;
  background: var(--ryusho-grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ryusho-link-banner__desc {
  font-size: 1.6rem;
  color: #6B5E48;
  margin: 0 0 18px;
  line-height: 1.85;
}
.ryusho-link-banner__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2B2417;
  font-weight: 700;
  font-size: 1.6rem;
  transition: gap 0.2s;
}
.ryusho-link-banner:hover .ryusho-link-banner__more {
  gap: 12px;
  color: #C25A0F;
}
.ryusho-link-banner__illust {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--ryusho-grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C25A0F;
  font-size: 4.8rem;
  flex-shrink: 0;
}

/* ============================================================
   店舗情報グリッド
   ============================================================ */
.ryusho-store-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.ryusho-store-map {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--ryusho-shadow-card);
}
.ryusho-store-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}
.ryusho-store-name {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #2B2417;
}
.ryusho-store-subname {
  font-size: 1.6rem;
  color: #6B5E48;
  margin: 0 0 24px;
}
.ryusho-store-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ryusho-store-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed #EDE2C8;
  font-size: 1.6rem;
  align-items: baseline;
}
.ryusho-store-row:last-child { border-bottom: none; }
.ryusho-store-row__label {
  font-size: 1.6rem;
  color: #C25A0F;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.ryusho-store-row__value {
  margin: 0;
  color: #2B2417;
}
.ryusho-store-row__value.is-tel {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ryusho-store-row__value.is-tel a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   料金テーブル（price.php）
   ============================================================ */
.ryusho-price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ryusho-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.6rem;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #EDE2C8;
  min-width: 680px;
}
.ryusho-price-table th,
.ryusho-price-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #EDE2C8;
  border-right: 1px solid #EDE2C8;
  white-space: nowrap;
}
.ryusho-price-table th {
  background: #FFF9EE;
  font-weight: 700;
  color: #6B5E48;
  font-size: 1.6rem;
}
.ryusho-price-table td:last-child,
.ryusho-price-table th:last-child { border-right: none; }
.ryusho-price-table tr:last-child td { border-bottom: none; }
.ryusho-price-table td.is-price {
  font-weight: 700;
  color: #C25A0F;
}
.ryusho-price-table td.is-accent {
  background: #FFF4D8;
  font-weight: 700;
  color: #C25A0F;
}
.ryusho-price-table .table-header-main th {
  background: var(--ryusho-grad-main);
  color: #fff;
  font-size: 1.6rem;
}

/* ハイシーズンボックス */
.ryusho-season-box {
  background: #FFF4D8;
  border: 2px solid #F8C71B;
  border-radius: 12px;
  padding: 24px 28px;
}
.ryusho-season-box__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #C25A0F;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   車両紹介カード
   ============================================================ */
.ryusho-vehicle-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #EDE2C8;
  overflow: hidden;
  box-shadow: var(--ryusho-shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ryusho-vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ryusho-shadow-hi);
}
.ryusho-vehicle-card__img {
  height: 200px;
  background: #FFF4D8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C25A0F;
  font-size: 6rem;
}
.ryusho-vehicle-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ryusho-vehicle-card__body {
  padding: 24px;
}
.ryusho-vehicle-card__badge {
  display: inline-block;
  background: var(--ryusho-grad-soft);
  color: #C25A0F;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 10px;
}
.ryusho-vehicle-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #2B2417;
}
.ryusho-vehicle-card__capacity {
  font-size: 1.6rem;
  color: #6B5E48;
  margin: 0 0 12px;
}
.ryusho-vehicle-card__desc {
  font-size: 1.6rem;
  color: #6B5E48;
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   ph__label（ビジュアル内プレースホルダーラベル）
   ============================================================ */
.ph__label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px dashed #C25A0F;
  color: #C25A0F;
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================================
   car-card（車両カード - price.php）
   ============================================================ */
.car-card {
  background: #fff;
  border-radius: 32px;
  border: 1px solid #EDE2C8;
  overflow: hidden;
  box-shadow: var(--ryusho-shadow-card);
  margin-bottom: 48px;
}
.car-card__head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}
.car-card__visual {
  aspect-ratio: 4 / 3;
  background: #2B2417;
  position: relative;
  overflow: hidden;
}
.car-slider,
.car-slider .slick-list,
.car-slider .slick-track,
.car-slider .slick-slide,
.car-slider .slick-slide > div {
  height: 100%;
}
.car-slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car-slider .slick-dots {
  bottom: 10px;
}
.car-slider .slick-dots li button::before {
  color: #fff;
  opacity: 0.7;
  font-size: 8px;
}
.car-slider .slick-dots li.slick-active button::before {
  color: #F8C71B;
  opacity: 1;
}
.car-slider .slick-prev,
.car-slider .slick-next {
  z-index: 2;
}
.car-slider .slick-prev { left: 10px; }
.car-slider .slick-next { right: 10px; }
.car-card__body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.car-card__type {
  display: inline-block;
  background: var(--ryusho-grad-main);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 9999px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  align-self: start;
}
.car-card__name {
  font-size: 3.4rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #2B2417;
}
.car-card__cap {
  font-size: 1.6rem;
  color: #6B5E48;
  margin: 0 0 24px;
}
.car-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #EDE2C8;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.car-card__price-label {
  font-size: 1.6rem;
  color: #6B5E48;
  font-weight: 700;
}
.car-card__price-num {
  font-size: 4.4rem;
  font-weight: 700;
  background: var(--ryusho-grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.car-card__price-unit {
  font-size: 1.6rem;
  color: #6B5E48;
}
.car-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 1.6rem;
}
.car-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.car-card__features li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--ryusho-grad-main);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.car-card__table {
  padding: 0 44px 40px;
}
.car-card__table-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #2B2417;
  display: flex;
  align-items: center;
  gap: 8px;
}
.car-card__table-title::before {
  content: "";
  width: 4px;
  height: 18px;
  background: var(--ryusho-grad-main);
  border-radius: 2px;
  flex-shrink: 0;
}

/* pricing table */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.6rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #EDE2C8;
  min-width: 680px;
}
.pricing th,
.pricing td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #EDE2C8;
  border-right: 1px solid #EDE2C8;
  white-space: nowrap;
}
.pricing th {
  background: #FFF4D8;
  font-weight: 700;
  color: #6B5E48;
}
.pricing td:last-child,
.pricing th:last-child { border-right: none; }
.pricing tr:last-child td { border-bottom: none; }
.pricing td.price {
  font-weight: 700;
  color: #C25A0F;
}

/* ============================================================
   high-season（ハイシーズン料金 - price.php）
   ============================================================ */
.high-season {
  background: #fff;
  border-radius: 18px;
  padding: 36px 40px;
  border: 2px dashed #F8C71B;
  margin-top: 24px;
}
.high-season h3 {
  margin: 0 0 16px;
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2B2417;
}
.high-season h3::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ryusho-grad-main);
  flex-shrink: 0;
}
.high-season__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.high-season__item {
  padding: 16px;
  background: #FFF9EE;
  border-radius: 12px;
  text-align: center;
}
.high-season__item dt {
  font-size: 1.6rem;
  color: #C25A0F;
  font-weight: 700;
  margin-bottom: 4px;
}
.high-season__item dd {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #2B2417;
}
.high-season__amount {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  padding: 14px;
  background: var(--ryusho-grad-soft);
  border-radius: 12px;
  color: #2B2417;
}
.high-season__amount strong {
  color: #C25A0F;
  font-size: 2.4rem;
  margin: 0 4px;
}

/* ============================================================
   callout（サービス案内 - price.php）
   ============================================================ */
.callout {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid #EDE2C8;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: var(--ryusho-shadow-card);
}
.callout + .callout { margin-top: 16px; }
/* btn-pill + btn--outline の組み合わせ: background変更とopacityの競合を解消しシンプルなホバーに統一 */
.btn-pill.btn--outline {
  transition: opacity 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.btn-pill.btn--outline:hover {
  background: transparent;
  color: #ED7E1A;
  opacity: 0.75;
  box-shadow: 0 4px 14px rgba(194, 90, 15, 0.22);
  transform: translateY(-2px);
}
.callout__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ryusho-grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C25A0F;
  flex-shrink: 0;
}
.callout__title {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #2B2417;
}
.callout__desc {
  font-size: 1.6rem;
  color: #6B5E48;
  margin: 0;
  line-height: 1.7;
}
.callout__icon-fa {
  font-size: 2.5rem;
}

@media (max-width: 896px) {
  .car-card__head { grid-template-columns: 1fr; }
  .car-card__body { padding: 32px 24px; }
  .car-card__table { padding: 0 24px 32px; }
  .high-season { padding: 24px 20px; }
  .high-season__grid { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 56px 1fr; }
  .callout__icon { width: 48px; height: 48px; }
  .callout > a { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 639px) {
  .car-card { border-radius: 20px; margin-bottom: 32px; }
  .car-card__name { font-size: 2.8rem; }
  .car-card__price-num { font-size: 3.6rem; }
  .callout { padding: 20px; gap: 16px; }

  /* 時間別料金テーブル：カードグリッドに変換 */
  .table-wrap { overflow: visible; }
  .pricing {
    display: block;
    min-width: 0;
    border: none;
    background: transparent;
    border-radius: 0;
  }
  .pricing thead { display: none; }
  .pricing tbody {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .pricing tbody tr { display: contents; }
  .pricing td {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    border: 1px solid #EDE2C8;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    white-space: normal;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B2417;
  }
  .pricing td::before {
    content: attr(data-label);
    font-size: 1.1rem;
    font-weight: 700;
    color: #6B5E48;
    line-height: 1.4;
  }
  .pricing td.price {
    background: #FFF9EE;
    color: #C25A0F;
  }
}

/* ============================================================
   guide-flow（ご利用の流れ - guide.php）
   ============================================================ */
.guide-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 28px;
}
.guide-flow__step {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid #EDE2C8;
  box-shadow: var(--ryusho-shadow-card);
  position: relative;
  z-index: 1;
}
.guide-flow__num {
  position: absolute;
  top: -20px; left: 24px;
  width: 52px; height: 52px;
  background: var(--ryusho-grad-main);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 2rem;
  box-shadow: 0 6px 14px rgba(194, 90, 15, 0.32);
}
.guide-flow__icon {
  display: block;
  font-size: 3.6rem;
  margin: 12px 0 16px;
  color: #C25A0F;
  text-align: center;
}
.guide-flow__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #2B2417;
  text-align: center;
}
.guide-flow__desc {
  font-size: 1.6rem;
  color: #6B5E48;
  margin: 0;
  line-height: 1.85;
}

/* ============================================================
   guide-notice（注意事項 - guide.php）
   ============================================================ */
.guide-notice {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #EDE2C8;
  overflow: hidden;
  margin-bottom: 24px;
}
.guide-notice__head {
  background: #FFF9EE;
  padding: 22px 32px;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px solid #EDE2C8;
  display: flex; align-items: center; gap: 12px;
}
.guide-notice__head::before {
  content: "";
  width: 4px; height: 22px;
  background: var(--ryusho-grad-main);
  border-radius: 2px;
  flex-shrink: 0;
}
.guide-notice__body { padding: 28px 32px; }
.guide-notice__body > p {
  font-size: 1.6rem;
  margin: 0 0 12px;
  line-height: 1.95;
  color: #6B5E48;
}
.guide-notice__body > p:last-child { margin-bottom: 0; }
.guide-notice__body h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: #2B2417;
}
.guide-notice__list {
  list-style: none; padding: 0;
  display: grid; gap: 10px;
  font-size: 1.6rem;
  line-height: 1.85;
  margin: 0;
}
.guide-notice__list li {
  position: relative;
  padding-left: 22px;
  color: #2B2417;
}
.guide-notice__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ryusho-grad-main);
}
.guide-notice__sub-list {
  list-style: none; padding: 0;
  margin: 12px 0 0;
  display: grid; gap: 8px;
  font-size: 1.6rem;
  line-height: 1.85;
}
.guide-notice__sub-list li {
  position: relative;
  padding-left: 22px;
  color: #2B2417;
}
.guide-notice__sub-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ryusho-grad-main);
}
.guide-notice__note {
  font-size: 1.6rem;
  color: #6B5E48;
  margin: 10px 0 0;
  line-height: 1.85;
}

/* ============================================================
   table.comp（補償テーブル - guide.php）
   ============================================================ */
table.comp {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #EDE2C8;
  margin: 16px 0;
  font-size: 1.6rem;
}
table.comp th, table.comp td {
  padding: 14px 16px;
  border-bottom: 1px solid #EDE2C8;
  border-right: 1px solid #EDE2C8;
  text-align: left;
}
table.comp tr:last-child th,
table.comp tr:last-child td { border-bottom: none; }
table.comp th:last-child,
table.comp td:last-child { border-right: none; }
table.comp thead th {
  background: #FFF9EE;
  font-size: 1.6rem;
  color: #6B5E48;
  text-align: center;
}
table.comp tbody th {
  background: #FFFCF4;
  font-weight: 700;
  width: 28%;
}
table.comp--small td.ok {
  text-align: center;
  color: #C25A0F;
  font-size: 2rem;
  font-weight: 700;
}
table.comp--small td.ng {
  text-align: center;
  color: #bbb;
  font-size: 2rem;
}
.cdw-card {
  margin-top: 16px;
  background: var(--ryusho-grad-main);
  color: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  display: flex; align-items: center; gap: 24px;
  box-shadow: 0 10px 24px rgba(194, 90, 15, 0.28);
}
.cdw-card__price {
  font-size: 3.6rem; font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}
.cdw-card__price small { font-size: 1.6rem; font-weight: 500; opacity: 0.95; }
.cdw-card__text { font-size: 1.6rem; line-height: 1.75; }

/* ============================================================
   table.cancel（キャンセルテーブル - guide.php）
   ============================================================ */
table.cancel {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #EDE2C8;
  font-size: 1.6rem;
  margin: 16px 0;
}
table.cancel th, table.cancel td {
  padding: 14px 16px;
  border-bottom: 1px solid #EDE2C8;
  border-right: 1px solid #EDE2C8;
}
table.cancel tr:last-child th,
table.cancel tr:last-child td { border-bottom: none; }
table.cancel th:last-child,
table.cancel td:last-child { border-right: none; }
table.cancel thead th {
  background: #FFF9EE;
  text-align: center;
  font-size: 1.6rem;
  color: #6B5E48;
}
table.cancel tbody th {
  text-align: left;
  background: #FFFCF4;
  font-weight: 500;
  width: 40%;
}
table.cancel td { text-align: center; font-weight: 700; }

/* ============================================================
   guide-faq（よくあるご質問 - guide.php）
   ============================================================ */
.guide-faq-group { margin-bottom: 36px; }
.guide-faq-group__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #EDE2C8;
  display: flex; align-items: center; gap: 10px;
  color: #2B2417;
}
.guide-faq-group__title::before {
  content: attr(data-num);
  display: inline-flex;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ryusho-grad-main);
  color: #fff;
  align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.guide-faq {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #EDE2C8;
  padding: 22px 28px;
  margin-bottom: 10px;
}
.guide-faq__q {
  display: flex; gap: 14px;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #2B2417;
}
.guide-faq__q::before {
  content: "Q";
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ryusho-grad-main);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.6rem;
}
.guide-faq__a {
  display: flex; gap: 14px;
  font-size: 1.6rem;
  color: #6B5E48;
  line-height: 1.95;
}
.guide-faq__a::before {
  content: "A";
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #C25A0F;
  color: #C25A0F;
  display: grid; place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.guide-faq__a ul {
  list-style: disc; padding-left: 18px;
  margin: 4px 0;
}

/* ============================================================
   shuttle（送迎について - shuttle.php）
   ============================================================ */
.shuttle-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.shuttle-intro__visual {
  aspect-ratio: 4 / 3;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--ryusho-shadow-card);
}
.shuttle-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shuttle-intro__text h2 {
  font-size: 3.4rem;
  margin: 0 0 18px;
  line-height: 1.5;
  color: #2B2417;
}
.shuttle-intro__text p {
  color: #6B5E48;
  line-height: 2;
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.shuttle-placeholder-note {
  margin-top: 40px;
  padding: 24px 28px;
  background: #FFF9EE;
  border-left: 4px solid #F8C71B;
  border-radius: 0 10px 10px 0;
  font-size: 1.6rem;
  color: #6B5E48;
  line-height: 1.95;
}
.shuttle-scene-head {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 20px;
  display: flex; align-items: center; gap: 10px;
  color: #2B2417;
}
.shuttle-scene-head::before {
  content: "";
  width: 4px; height: 22px;
  background: var(--ryusho-grad-main);
  border-radius: 2px;
  flex-shrink: 0;
}
.shuttle-reserved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.shuttle-reserved-item {
  background: #fff;
  border: 1px dashed #C25A0F;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}
.shuttle-reserved-item__icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--ryusho-grad-soft);
  display: grid; place-items: center;
  color: #C25A0F;
  font-size: 2.4rem;
}
.shuttle-reserved-item__title {
  font-weight: 700;
  font-size: 1.7rem;
  margin: 0 0 6px;
  color: #2B2417;
}
.shuttle-reserved-item__hint {
  font-size: 1.6rem;
  color: #9B8E7A;
  margin: 0;
  line-height: 1.7;
}
.shuttle-cta {
  margin-top: 56px;
  text-align: center;
}
.shuttle-cta .btn-pill {
  padding: 18px 48px;
  font-size: 1.8rem;
}
@media (max-width: 896px) {
  .shuttle-intro { grid-template-columns: 1fr; gap: 24px; }
  .shuttle-reserved-grid { grid-template-columns: 1fr; }
  .shuttle-intro__text h2 { font-size: 2.8rem; }
}
@media (max-width: 639px) {
  .shuttle-intro { margin-bottom: 40px; }
  .shuttle-placeholder-note { padding: 18px 20px; }
  .shuttle-reserved-item { padding: 24px 20px; }
}

/* ============================================================
   info（店舗情報 - info.php）
   ============================================================ */
.info-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #EDE2C8;
  box-shadow: var(--ryusho-shadow-card);
}
.info-table dl {
  margin: 0;
  display: grid;
  grid-template-columns: 200px 1fr;
}
.info-table dt,
.info-table dd {
  padding: 22px 28px;
  margin: 0;
  border-bottom: 1px solid #EDE2C8;
}
.info-table dt {
  background: #FFF9EE;
  font-weight: 700;
  font-size: 1.6rem;
  color: #C25A0F;
  letter-spacing: 0.08em;
  border-right: 1px solid #EDE2C8;
}
.info-table dd {
  font-size: 1.6rem;
  color: #2B2417;
  line-height: 1.75;
}
.info-table dl > dt:last-of-type,
.info-table dl > dd:last-of-type { border-bottom: none; }
.info-table .tel {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2B2417;
}
.info-table__note {
  font-size: 1.4rem;
  color: #6B5E48;
}
.access-map {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ryusho-shadow-card);
}
.access-map iframe { width: 100%; height: 100%; border: none; display: block; }
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.access-item {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #EDE2C8;
  display: flex; gap: 14px; align-items: flex-start;
}
.access-item__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--ryusho-grad-soft);
  display: grid; place-items: center;
  color: #C25A0F;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.access-item h4 { margin: 0 0 4px; font-size: 1.6rem; font-weight: 700; color: #C25A0F; }
.access-item p { margin: 0; font-size: 1.6rem; color: #6B5E48; line-height: 1.75; }
.info-cta {
  margin-top: 56px;
  text-align: center;
}
.info-cta .btn-pill {
  padding: 18px 48px;
  font-size: 1.8rem;
}
@media (max-width: 896px) {
  .info-table dl { grid-template-columns: 1fr; }
  .info-table dt { border-right: none; border-bottom: 1px solid #EDE2C8; padding: 14px 24px; }
  .info-table dd { padding: 14px 24px 22px; }
  .access-grid { grid-template-columns: 1fr; }
}
@media (max-width: 639px) {
  .info-table dt, .info-table dd { padding: 12px 20px; }
  .access-item { padding: 18px 20px; }
}

@media (max-width: 896px) {
  .guide-flow { grid-template-columns: 1fr 1fr; gap: 32px; }
  .guide-flow::before { display: none; }
  .guide-notice__head { padding: 18px 24px; }
  .guide-notice__body { padding: 22px 24px; }
  .cdw-card { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 639px) {
  .guide-flow { grid-template-columns: 1fr; }
  .guide-notice__head { padding: 16px 20px; font-size: 1.6rem; }
  .guide-notice__body { padding: 18px 20px; }
  table.comp, table.cancel { font-size: 1.4rem; }
  table.comp th, table.comp td,
  table.cancel th, table.cancel td { padding: 10px 12px; }
  .guide-faq { padding: 18px 20px; }

  /* NOCテーブル：1カラム（th/td縦積み）*/
  table.comp--noc { display: block; overflow: hidden; }
  table.comp--noc tbody { display: block; }
  table.comp--noc tr {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #EDE2C8;
    border-radius: 10px;
    overflow: hidden;
  }
  table.comp--noc tr:last-child { margin-bottom: 0; }
  table.comp--noc th,
  table.comp--noc td,
  table.comp--noc tbody th {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-right: none;
    text-align: left;
  }
  table.comp--noc th {
    border-bottom: 1px solid #EDE2C8;
    border-radius: 0;
    padding: 12px 16px;
    font-size: 1.4rem;
  }
  table.comp--noc td {
    border-bottom: none;
    padding: 10px 16px;
    font-size: 1.7rem;
    font-weight: 700;
    color: #C25A0F;
  }
}

/* ============================================================
   フッターCTA 上書き
   ============================================================ */
.footer-cta {
  background: var(--ryusho-grad-main);
}
.footer-cta::before {
  background: var(--ryusho-grad-main);
}

/* ============================================================
   ブログ詳細（entry.php）
   ============================================================ */
.blog-detail {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #EDE2C8;
  padding: 40px 48px;
}
.blog-detail__date {
  color: #6B5E48;
}
.blog-detail__title {
  color: #2B2417;
  border-bottom: 2px solid #EDE2C8;
  padding-bottom: 20px;
  margin: 0;
}
.blog-detail__body {
  padding-top: 28px;
  color: #2B2417;
  font-size: 1.6rem;
}
.blog-detail__body p {
  margin: 0 0 1.6em;
}
.blog-detail__body p:last-child {
  margin-bottom: 0;
}

/* サイドバー */
.side-widget {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #EDE2C8;
  overflow: hidden;
}
.side-widget__title {
  background: #FFF9EE;
  color: #C25A0F;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 12px 20px;
  margin: 0;
  border-bottom: 1px solid #EDE2C8;
}
.side-widget__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-widget__item {
  border-bottom: 1px solid #EDE2C8;
}
.side-widget__item:last-child {
  border-bottom: none;
}
.side-widget__link {
  display: block;
  padding: 11px 20px;
  font-size: 1.6rem;
  color: #2B2417;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.side-widget__link:hover {
  background: #FFF4D8;
  color: #C25A0F;
}

@media (max-width: 639px) {
  .blog-detail { padding: 24px 20px; }
}

/* ============================================================
   SP固定バー（3ボタン）
   ============================================================ */
.sp-fixed-bar {
  background: #2B2417;
}
.sp-fixed-bar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  color: #FFF9EE;
  text-decoration: none;
}
.sp-fixed-bar__icon {
  font-size: 1.9rem;
  line-height: 1;
}
.sp-fixed-bar__text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.sp-fixed-bar__link--tel {
  background: #2B2417;
  color: #FFF9EE;
}
.sp-fixed-bar__link--reserve {
  background: var(--ryusho-grad-main);
  color: #fff;
}
.sp-fixed-bar__link--contact {
  background: #6B5E48;
  color: #FFF9EE;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1100px) {
  .ryusho-hero__grid { grid-template-columns: 360px 1fr; gap: 32px; }
  .ryusho-hero__title { font-size: 4.4rem; }
  .ryusho-feature-pill--top  { left: -4%; }
  .ryusho-feature-pill--right { right: -4%; }
}

@media (max-width: 896px) {
  .ryusho-hero { padding: 108px 0 60px; } /* 60px fixed header + 48px design spacing */
  .ryusho-hero__title { font-size: 3.6rem; }
  .ryusho-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ryusho-hero__car-wrap {
    max-width: 360px;
    margin: 0 auto;
    justify-self: center;
  }
  .ryusho-hero__bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ryusho-hero__cta { width: 100%; }

  .ryusho-features-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -20px;
  }
  .ryusho-features-strip--reasons {
    margin-top: 0;
  }
  .ryusho-feature-item {
    border-right: none;
    border-bottom: 1px solid #FFF4D8;
  }
  .ryusho-feature-item:nth-child(odd) { border-right: 1px solid #FFF4D8; }
  .ryusho-feature-item:nth-last-child(-n+2) { border-bottom: none; }

  .ryusho-news-row {
    grid-template-columns: 100px 1fr;
    row-gap: 6px;
    padding: 18px 20px;
  }
  .ryusho-news-row__cat { grid-column: 2; justify-self: start; }
  .ryusho-news-row__title { grid-column: 1 / -1; }
  .ryusho-news-row__arrow { display: none; }

  .ryusho-reserve-cta {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    background-size: cover;
  }
  .ryusho-reserve-cta__title { font-size: 3rem; }
  .ryusho-reserve-cta__action { min-width: unset; }

  .ryusho-link-banners { grid-template-columns: 1fr; }
  .ryusho-link-banner {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }
  .ryusho-link-banner__illust { display: none; }

  .ryusho-store-grid { grid-template-columns: 1fr; gap: 32px; }
  .ryusho-store-map iframe { height: 280px; }
}

@media (max-width: 639px) {
  .ryusho-hero { padding: 100px 0 50px; } /* 60px fixed header + 40px design spacing */
  .ryusho-hero__title { font-size: 2.8rem; }
  .ryusho-price-card { padding: 20px; }
  .ryusho-price-card__price { font-size: 2.4rem; }
  .ryusho-feature-pill { padding: 8px 12px; font-size: 1.6rem; }
  .ryusho-feature-pill__icon { width: 30px; height: 30px; font-size: 1.6rem; }
  .ryusho-feature-pill__text { font-size: 1.6rem; }

  .ryusho-features-strip { border-radius: 20px; }

  .ryusho-reserve-cta { padding: 32px 20px; border-radius: 20px; }
  .ryusho-reserve-cta__title { font-size: 2.4rem; }
  .ryusho-reserve-cta__btn { padding: 16px 28px; font-size: 1.6rem; }

  .ryusho-link-banner { border-radius: 20px; }
  .ryusho-link-banner__title { font-size: 2.2rem; }

  .header-logo__name { font-size: 1.6rem; }
  .header-logo__icon { width: 36px; height: 36px; font-size: 1.6rem; }
}

/* ============================================================
   ヘッダービジュアル調整（デザイン再現）
   ============================================================ */

/* ヘッダー背景・ボーダー */
.header-bar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #EDE2C8;
  box-shadow: none;
}
.header-bar.is-scrolled {
  box-shadow: 0 2px 16px rgba(194, 90, 15, 0.12);
}

/* ロゴ：RYUSHO RENTACAR を疑似要素で追加 */
.header-logo__body::before {
  content: "RYUSHO RENTACAR";
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #6B5E48;
  line-height: 1;
  margin-bottom: 3px;
}

/* 「琉」丸マークを非表示 */
.header-logo__icon {
  display: none;
}

/* ロゴ日本語サイズ */
.header-logo__name {
  font-size: 2.0rem;
}

/* ナビ：英語ラベルを非表示 */
.header__nav-en {
  display: none;
}

/* ナビ：日本語ラベルのみ表示 */
.header__nav-ja {
  font-size: 1.6rem;
  font-weight: 500;
  color: #2B2417;
  margin-top: 0;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ナビアイテムのリンク：横並び・余白調整 */
.header__nav-item a {
  flex-direction: row;
  padding: 6px 14px;
}

/* ナビホバー下線：グラデーション */
.header__nav-item a::after {
  height: 3px;
  background: linear-gradient(135deg, #ED7E1A 0%, #F8C71B 100%);
  border-radius: 2px;
}

/* ナビアクティブ下線（現在ページ）：transform をリセットして中央寄せ */
.header__nav-item--current a::after {
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}

/* 電話番号非表示（デザインにない） */
.header__tel {
  display: none;
}

/* header__right の高さをauto化（フルハイトCTAを解除） */
.header__right {
  height: auto;
  margin-right: 32px;
}

/* CTAボタン：ピル型グラデーションボタン */
.header__cta {
  height: auto;
  padding: 12px 26px;
  background: var(--ryusho-grad-main);
  border-radius: 9999px;
  font-size: 1.6rem;
  font-weight: 700;
  flex-direction: row;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(194, 90, 15, 0.32);
  color: #fff;
  white-space: nowrap;
}
.header__cta::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f073";
  font-size: 0.85em;
}
.header__cta:hover {
  background: var(--ryusho-grad-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(194, 90, 15, 0.44);
  opacity: 1;
}
.header__cta__sub {
  display: none;
}

/* ============================================================
   MV ヒーロー ビジュアル調整（デザイン再現）
   ============================================================ */

/* タイトル：フォントサイズ・行間をデザインに合わせる */
.ryusho-hero__title {
  font-size: 5.6rem;
  line-height: 1.28;
  margin-top: 10px;
}

/* PC時にキャッチコピーを1行に（brを非表示）
   .fz-32 は display:block 済みなので改行は維持される */
.ryusho-hero__title br {
  display: none;
}

/* 「行きたい場所」アンダーライン */
.ryusho-hero__title-underline {
  display: inline;
  border-bottom: 8px solid #fff;
  padding-bottom: 0px;
  opacity: 0.85;
  border-radius: 4px;
}

/* タイトル内サブコピー span.fz-32 を軽量化（デザインでは非存在） */
.ryusho-hero__title .fz-32 {
  display: block;
  font-size: 2.0rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.72;
  margin-top: 12px;
  line-height: 1.6;
}

/* メイングリッド列幅・グリッド上余白（mt-30を上書き） */
.ryusho-hero__grid {
  grid-template-columns: 380px 1fr;
  margin-top: 16px !important;
}

/* ============================================================
   フッター デザイン再現
   ============================================================ */

/* body エリア：上下余白を設計値に */
.footer-body--dark {
  padding: 72px 0 56px;
}

/* inner：縦揃えを top に、カラム間隔を広く */
.footer-body--dark .footer-body__inner {
  align-items: flex-start;
  gap: 64px;
}

/* ── 左：ブランドカラム ── */
.footer-body--dark .footer-body__left {
  width: 320px;
  flex-shrink: 0;
}

/* フッター内の RYUSHO RENTACAR サブテキストを白系に */
.footer-body--dark .header-logo__body::before {
  color: rgba(255, 249, 238, 0.48);
}

/* info エリア：文字色・行間 */
.footer-body--dark .footer-body__info {
  font-size: 1.45rem;
  line-height: 1.9;
  color: rgba(255, 249, 238, 0.65);
}
.footer-body--dark .footer-body__info-row {
  color: rgba(255, 249, 238, 0.65);
}
.footer-body--dark .footer-body__info-row .fas {
  color: #C25A0F;
  opacity: 0.85;
}

/* 電話番号の行：アイコンと番号を横並び・縦中央揃え */
.footer-body--dark .footer-body__info-row:has(a[href^="tel:"]) {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 電話番号リンクを目立たせる */
.footer-body--dark .footer-body__info a[href^="tel:"] {
  display: inline;
  font-size: 2.8rem;
  font-weight: 700;
  color: #F8C71B;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* ── 右：2カラムグリッド（SITEMAP ｜ ACCESS） ── */
.footer-body--dark .footer-body__right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

/* SITEMAP カラム：縦並びリスト */
.footer-body--dark .footer-body__nav {
  flex-direction: column;
  gap: 12px;
}

/* SITEMAP 見出し（疑似要素） */
.footer-body--dark .footer-body__nav::before {
  content: "SITEMAP";
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 249, 238, 0.42);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 6px;
}

/* nav リンク */
.footer-body--dark .footer-body__nav-item {
  font-size: 1.45rem;
  font-weight: 500;
  color: rgba(255, 249, 238, 0.75);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-body--dark .footer-body__nav-item:hover {
  color: #fff;
  opacity: 1;
}

/* ACCESS カラム：overflow をリセットして ::before を表示可能に */
.footer-body--dark .footer-body__map {
  overflow: visible;
  height: auto;
  border-radius: 0;
  margin-top: 0;
}

/* ACCESS 見出し（疑似要素） */
.footer-body--dark .footer-body__map::before {
  content: "ACCESS";
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 249, 238, 0.42);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}

/* map の embed ラッパーに overflow:hidden と角丸を移動 */
.footer-body--dark .footer-body__map .embed {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}
.footer-body--dark .footer-body__map .embed iframe {
  height: 100%;
  min-height: 0;
}

/* ── bottom バー ── */
.footer-bottom--dark {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}
.footer-bottom--dark .footer-bottom__copyright {
  font-size: 1.25rem;
  color: rgba(255, 249, 238, 0.45);
  letter-spacing: 0.04em;
}

/* ============================================================
   お知らせ一覧：メイン＋サイドバーレイアウト
   ============================================================ */
.entry-list-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: start;
}
.entry-archive-widget {
  background: #fff;
  border: 1px solid #EDE2C8;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--ryusho-shadow-card);
}
.entry-archive-widget__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2B2417;
  padding-bottom: 12px;
  border-bottom: 1px solid #EDE2C8;
  margin-bottom: 16px;
}
@media (max-width: 896px) {
  .entry-list-layout {
    grid-template-columns: 1fr;
  }
  .entry-list-layout__side {
    order: -1;
  }
}

/* ── レスポンシブ ── */
@media (max-width: 896px) {
  .footer-body--dark {
    padding: 56px 0 40px;
  }
  .footer-body--dark .footer-body__left {
    width: 100%;
  }
  .footer-body--dark .footer-body__right {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-body--dark .footer-body__nav,
  .footer-body--dark .footer-body__nav::before {
    display: none;
  }
}
@media (max-width: 639px) {
  .footer-body--dark .footer-body__info a[href^="tel:"] {
    font-size: 2.4rem;
  }
}

@media (max-width: 896px) {
  .ryusho-sec-head__sub--left-sp {
    text-align: left;
  }
}

/* ============================================================
   ページヒーロー（下層ページ共通）
   ============================================================ */
.page-hero--ryusho {
  position: relative;
  background: #FFF9EE;
  padding: 160px 0 64px; /* 80px fixed header + 80px design spacing */
  overflow: hidden;
}

/* 右上の装飾円 */
.page-hero--ryusho::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, #FFE0B3 0%, #FFEC9A 100%);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}

/* パンくず */
.page-hero__crumb {
  font-size: 1.3rem;
  color: #6B5E48;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* ページタイトル */
.page-hero__h1 {
  font-size: 5.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2B2417;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 18px;
  position: relative;
  z-index: 1;
}

/* タイトル前のオレンジバー */
.page-hero__h1::before {
  content: "";
  display: block;
  width: 56px;
  height: 6px;
  background: linear-gradient(135deg, #ED7E1A 0%, #F8C71B 100%);
  border-radius: 4px;
  flex-shrink: 0;
  align-self: center;
}

/* レスポンシブ */
@media (max-width: 896px) {
  .page-hero--ryusho { padding: 116px 0 44px; } /* 60px fixed header + 56px design spacing */
  .page-hero__h1 { font-size: 3.6rem; }
  .page-hero__h1::before { width: 40px; height: 5px; }
}
@media (max-width: 639px) {
  .page-hero--ryusho { padding: 100px 0 32px; } /* 60px fixed header + 40px design spacing */
  .page-hero__h1 { font-size: 2.8rem; gap: 12px; }
  .page-hero__h1::before { width: 32px; height: 4px; }
}

/* 下部テキスト色 */
.ryusho-hero__sub {
  color: #2B2417;
}

/* 料金カード下のキャッチ＆CTAエリア */
.ryusho-hero__lead-cta {
  margin-top: 20px;
}
.ryusho-hero__lead-text {
  font-size: 1.5rem;
  line-height: 1.85;
  color: #2B2417;
  opacity: 0.88;
  margin: 0 0 16px;
}

/* 下部CTA余白 */
.ryusho-hero__bottom {
  margin-top: 56px;
}

/* CTAボタン：btn--sm を上書きしてデザインサイズに合わせる */
.ryusho-hero__cta .btn {
  width: auto;
  max-width: none;
  padding: 14px 28px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* 車両ビジュアル：プレースホルダー改善 */
.ryusho-hero__car-placeholder i {
  font-size: 10rem;
  opacity: 0.5;
}
.ryusho-hero__car-placeholder span {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

/* ============================================================
   MV レスポンシブ更新（基本サイズ変更に合わせて再調整）
   ============================================================ */
@media (max-width: 1100px) {
  .ryusho-hero { padding-top: 92px; } /* 60px fixed header + 32px breathing room */
  .ryusho-hero__title { font-size: 4.8rem; }
  .ryusho-hero__grid  { grid-template-columns: 360px 1fr; }
}

@media (max-width: 896px) {
  /* padding-top を上書き（1100pxルールの132pxを打ち消す）・min-height解除 */
  .ryusho-hero { padding-top: 108px; min-height: unset; display: block; }
  .ryusho-hero__title { font-size: 4.0rem; line-height: 1.35; }
  .ryusho-hero__cta .btn { padding: 12px 22px; font-size: 1.6rem; }
  /* SP: re-enable title line breaks (hidden on PC) */
  .ryusho-hero__title br { display: inline; }
  /* grid を1列に戻す（380px 1fr / 360px 1fr の上書きを打ち消す） */
  .ryusho-hero__grid { grid-template-columns: 1fr; }
  .ryusho-hero__car-wrap { max-width: 360px; justify-self: center; margin-left: auto; margin-right: auto; }
  .ryusho-feature-pill--top  { left: -2%; top: 2%; }
  .ryusho-feature-pill--right { right: -2%; top: 76%; }
}

@media (max-width: 639px) {
  .ryusho-hero { padding-top: 100px; }
  .ryusho-hero__title { font-size: 3.2rem; line-height: 1.4; }
  .ryusho-hero__title .fz-32 { font-size: 1.6rem; margin-top: 8px; }
  .ryusho-hero__cta .btn { padding: 11px 18px; font-size: 1.6rem; }
  .ryusho-hero__cta .btn { flex: 1; justify-content: center; }
  .ryusho-price-card { padding: 18px 20px; }
  .ryusho-price-card__price { font-size: 2.4rem; }
  .ryusho-feature-pill { padding: 9px 12px; }
  .ryusho-feature-pill__icon { width: 28px; height: 28px; font-size: 1.3rem; }
  .ryusho-feature-pill__text { font-size: 1.3rem; }
  .ryusho-feature-pill__text small { font-size: 1.1rem; }
}

/* ============================================================
   予約フォーム (reserve.php)
   ============================================================ */

/* Phone CTA */
.phone-cta {
  background: var(--ryusho-grad-main);
  color: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--ryusho-shadow-hi);
}
.phone-cta__title { font-size: 2.0rem; font-weight: 700; margin: 0 0 6px; }
.phone-cta__desc { font-size: 1.6rem; opacity: 0.9; margin: 0; }
.phone-cta__tel {
  background: #fff;
  border-radius: 12px;
  padding: 16px 28px;
  text-align: center;
  color: #C25A0F;
  white-space: nowrap;
}
.phone-cta__tel-label { font-size: 1.6rem; font-weight: 700; letter-spacing: 0.1em; display: block; }
.phone-cta__tel-num { font-size: 3.2rem; font-weight: 700; letter-spacing: 0.02em; display: block; }

/* Form Card */
.form-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #EDE2C8;
  padding: 48px 56px;
  box-shadow: var(--ryusho-shadow-card);
  margin-bottom: 48px;
}
.form-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 2px solid #EDE2C8;
}
.form-card__num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ryusho-grad-main);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(194, 90, 15, 0.3);
}
.form-card__title { font-size: 2.6rem; font-weight: 700; margin: 0; }
.form-card__desc { font-size: 1.6rem; color: #6B5E48; margin: 4px 0 0; }

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--full { grid-column: 1 / -1; }
.field > label {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2B2417;
  display: flex;
  align-items: center;
  gap: 8px;
}
.field .req {
  background: var(--ryusho-grad-main);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}
.field .opt {
  background: #EDE2C8;
  color: #6B5E48;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 9999px;
}
.field__hint {
  font-size: 1.4rem;
  color: #6B5E48;
  line-height: 1.6;
}
.field__hint a { color: #C25A0F; text-decoration: underline; }

/* Inputs */
.f-input,
.f-select,
.f-textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid #EDE2C8;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1.6rem;
  background: #fff;
  color: #2B2417;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.f-input:focus,
.f-select:focus,
.f-textarea:focus {
  outline: none;
  border-color: #ED7E1A;
  box-shadow: 0 0 0 4px rgba(237, 126, 26, 0.20);
}
.f-textarea { min-height: 140px; resize: vertical; }
.f-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E89B2A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

/* Radio Group */
.f-radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.f-radio-group label {
  flex: 1;
  min-width: 120px;
  padding: 15px 18px;
  border: 1.5px solid #EDE2C8;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all .15s;
  background: #fff;
}
.f-radio-group input[type="radio"] {
  accent-color: #C25A0F;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.f-radio-group label:has(input:checked) {
  border-color: #C25A0F;
  background: #FFF9EE;
}

/* DateTime Row */
.f-datetime-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Submit Row */
.submit-row {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #EDE2C8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.submit-row__note {
  font-size: 1.6rem;
  color: #6B5E48;
  text-align: center;
}
.submit-row__note a { color: #C25A0F; text-decoration: underline; }
.btn--submit {
  padding: 24px 80px;
  background: var(--ryusho-grad-main);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-size: 2.0rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(194, 90, 15, 0.32);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(194, 90, 15, 0.44);
}

/* Reserve section */
.reserve-inner { max-width: 920px; margin: 0 auto; }

@media (max-width: 896px) {
  .phone-cta { grid-template-columns: 1fr; padding: 28px 28px; }
  .form-card { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .f-datetime-row { grid-template-columns: 1fr; }
  .btn--submit { padding: 18px 48px; width: 100%; justify-content: center; }
}
@media (max-width: 639px) {
  .phone-cta { padding: 24px 20px; border-radius: 16px; }
  .phone-cta__tel-num { font-size: 2.4rem; }
  .form-card { border-radius: 16px; }
  .form-card__title { font-size: 2.2rem; }
}

/* ============================================================
   サンクスページ (thanks.php)
   ============================================================ */
.thanks-card {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #EDE2C8;
  box-shadow: var(--ryusho-shadow-card);
  padding: 56px 48px;
  text-align: center;
}
.thanks-card__icon {
  font-size: 5.6rem;
  color: #ED7E1A;
  margin-bottom: 24px;
  line-height: 1;
}
.thanks-card__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2B2417;
  margin: 0 0 16px;
}
.thanks-card__lead {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #6B5E48;
  margin: 0 0 32px;
}
.thanks-card__info {
  background: #FFF9EE;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.thanks-card__info p {
  font-size: 1.6rem;
  color: #6B5E48;
  margin: 0 0 12px;
}
.thanks-card__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #C25A0F;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.thanks-card__hours {
  font-size: 1.4rem;
  color: #6B5E48;
  margin: 0 !important;
}
.thanks-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (max-width: 639px) {
  .thanks-card { padding: 36px 24px; }
  .thanks-card__title { font-size: 2.2rem; }
  .thanks-card__tel { font-size: 2.4rem; }
}

.sp-nav__link::after {
  margin-left: 10px;
}

.sp-nav__en {
  font-size: 1.5rem;
}
