@charset "UTF-8";

/* =========================================================
   EN Top (Renewal)  -  page-en-renewal.php
   namespace: .p-entop
   ========================================================= */

.p-entop {
  --color-text: #1a1a1a;
  --color-text-sub: #555;
  --color-accent: #e63312;
  /* accent red */
  --color-orange: #ff9900;
  /* button orange */
  --color-navy: #1d4a67;
  --color-bg-gray: #f2f2f2;
  --color-border: #e2e2e2;
  --container: 1600px;
  --radius: 12px;
  /* セクション見出し共通サイズ（lg: vehicle/location用の大きめ） */
  --h2-size: 44px;
  --h2-size-lg: 48px;

  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  .p-entop {
    --h2-size: 28px;
    --h2-size-lg: 30px;
  }
}

.p-entop *,
.p-entop *::before,
.p-entop *::after {
  box-sizing: border-box;
}

.p-entop img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ---- container ---- */
.p-entop__inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- section ---- */
.p-entop__section {
  padding: 64px 0;
}

/* ---- スクロールで下からふわっと出現（JS: initFadeIn が is-visible を付与） ---- */
.js-fadein {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- ↗付きリンク: ホバーで矢印が斜め上に飛んで一周して戻る ---- */
@keyframes p-entop-arrow-fly {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  45% {
    transform: translate(1em, -1em);
    opacity: 0;
  }

  50% {
    transform: translate(-1em, 1em);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.p-entop__vehicle-more a span,
.p-entop__location-more a span,
.p-entop__stories-more a span {
  display: inline-block;
}

.p-entop__vehicle-more a:hover span,
.p-entop__location-more a:hover span,
.p-entop__stories-more a:hover span {
  animation: p-entop-arrow-fly 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {

  .p-entop__vehicle-more a:hover span,
  .p-entop__location-more a:hover span,
  .p-entop__stories-more a:hover span {
    animation: none;
  }

  .p-entop__enjoy-inner {
    transform: none !important;
    transition: none;
  }
}

/* ---- headings ---- */
.p-entop__h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 16px;
}

.p-entop__lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text-sub);
  margin: 0 auto 40px;
}

/* ---- 予約ブロック（既存 en-top.css 由来クラスの互換定義） ---- */
.p-entop .c-section__inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.p-entop .c-headingH2 {
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* =========================================================
   FV / Hero（full-bleed 100vw + text overlay）
   ========================================================= */
.p-entop__fv {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* slider (full width) */
.p-entop__fv-slider {
  position: relative;
  width: 100%;
  /* PCは80vh（object-fit: cover でクロップ許容）。SP/タブレットは別途上書き */
  height: 80vh;
  min-height: 420px;
  overflow: hidden;
}

.p-entop__fv-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.p-entop__fv-slide {
  min-width: 100%;
  height: 100%;
}

.p-entop__fv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

/* text overlay (bottom-left) */
.p-entop__fv-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 40px 290px; /* 下にめり込む予約フォーム分を退避（PCは深く重ねる分テキストを上へ） */
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* テキストはポインタ操作を受けてドラッグ選択できるようにする
   （コンテナはpointer-events: noneのまま） */
.p-entop__fv-eyebrow,
.p-entop__fv-title {
  pointer-events: auto;
}

.p-entop__fv-eyebrow {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
}

.p-entop__fv-title {
  /* 横幅可変: 下限30px(見出しとして担保) 〜 上限64px(現行サイズ、約1420px以上で到達) */
  font-size: clamp(30px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.p-entop__fv-cta {
  margin: 0;
}

.p-entop__fv-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  background: var(--color-orange);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  text-shadow: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease;
}

.p-entop__fv-cta a:hover {
  background: #e68a00;
}

.p-entop__fv-cta-icon {
  font-size: 18px;
}

/* nav arrows (bottom-right) */
.p-entop__fv-nav {
  position: absolute;
  right: 40px;
  bottom: 330px; /* FVタイトル2行目「with El Monte today!」の高さに合わせる（PC） */
  z-index: 3;
  display: flex;
  gap: 14px;
}

.p-entop__fv-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(90, 90, 90, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.p-entop__fv-btn:hover {
  background: rgba(40, 40, 40, 0.9);
}

.p-entop__fv-btn::before {
  content: "";
  display: inline-block;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  padding: 5px;
}

.p-entop__fv-btn--prev::before {
  transform: rotate(135deg);
  margin-left: 4px;
}

.p-entop__fv-btn--next::before {
  transform: rotate(-45deg);
  margin-right: 4px;
}

/* 次スライドまでのカウントを示すプログレスリング（JSがstroke-dashoffsetを更新） */
.p-entop__fv-btn--next {
  position: relative;
}

.p-entop__fv-ring {
  position: absolute;
  inset: -5px;
  transform: rotate(-90deg); /* 12時の位置から時計回りに描画 */
  pointer-events: none;
}

.p-entop__fv-ring circle {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
}

/* スクロール誘導矢印（予約モジュール下） */
.p-entop__scroll-hint {
  display: flex;
  justify-content: center;
  padding: 18px 0 26px;
  color: #555; /* 黒〜グレー */
  transition: color 0.2s ease;
}

.p-entop__scroll-hint:hover {
  color: #222;
}

.p-entop__scroll-hint-icon {
  animation: p-entop-scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes p-entop-scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* 固定ヘッダー分のスクロール位置オフセット */
#entop-our-vehicle {
  scroll-margin-top: 160px;
}

/* SPではスクロール誘導矢印は非表示 */
@media (max-width: 768px) {
  .p-entop__scroll-hint {
    display: none;
  }
}

/* =========================================================
   Free Airport Taxi Service
   （公開版 page-en.php / css/en-top.css の見た目をそのまま複製）
   ========================================================= */
.p-airport-taxi-promo {
  max-width: 1200px;
  width: 100%;
  margin: 60px auto;
  padding: 0 20px;
}

.p-airport-taxi-promo__inner {
  width: 100%;
  margin: 0 auto;
  padding: 32px;
  background: #fff5f4;
  border: 2px solid #e63312;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(230, 51, 18, 0.08);
}

.p-airport-taxi-promo__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 14px;
  background: #e63312;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.06em;
  border-radius: 999px;
  text-transform: uppercase;
}

.p-airport-taxi-promo__title {
  margin: 8px 0 12px;
  color: #e63312;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}

.p-airport-taxi-promo__lead {
  margin: 0 auto;
  padding-bottom: 24px;
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}

.p-airport-taxi-promo__benefits {
  display: flex;
  flex-direction: row; /* 10 days / 15 days を横並びに */
  justify-content: center;
  gap: 16px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.p-airport-taxi-promo__benefit {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid #f0c9c2;
  border-radius: 10px;
  text-align: left;
}

.p-airport-taxi-promo__benefit--highlight {
  background: #fff;
  border-color: #e63312;
  box-shadow: 0 0 0 1px #e63312 inset;
}

.p-airport-taxi-promo__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid #e63312;
  border-radius: 999px;
  color: #e63312;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
}

.p-airport-taxi-promo__badge--accent {
  background: #e63312;
  color: #fff;
}

.p-airport-taxi-promo__benefit-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.p-airport-taxi-promo__benefit-text strong {
  color: #e63312;
}

.p-airport-taxi-promo__pickup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
  font-size: 15px;
  color: #444;
}

.p-airport-taxi-promo__pickup li {
  position: relative;
  padding-left: 16px;
}

.p-airport-taxi-promo__pickup li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: #e63312;
  border-radius: 50%;
}

.p-airport-taxi-promo__cta {
  margin: 8px 0 0;
}

.p-airport-taxi-promo .c-btn {
  display: inline-block;
  border: none;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

.p-airport-taxi-promo .c-btn--accent,
.p-airport-taxi-promo .c-btn--accent:link,
.p-airport-taxi-promo .c-btn--accent:visited {
  background-color: #e63312;
  color: #fff !important;
  font-weight: bold;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 17px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}

.p-airport-taxi-promo .c-btn--accent:hover,
.p-airport-taxi-promo .c-btn--accent:focus,
.p-airport-taxi-promo .c-btn--accent:active {
  background-color: #c8290d;
  color: #fff !important;
  opacity: 1;
}

.p-airport-taxi-promo .c-btn__arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.p-airport-taxi-promo .c-btn--accent:hover .c-btn__arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .p-airport-taxi-promo {
    margin: 40px auto;
  }

  .p-airport-taxi-promo__inner {
    padding: 32px 18px;
  }

  .p-airport-taxi-promo__title {
    font-size: 28px;
  }

  .p-airport-taxi-promo__lead {
    font-size: 15px;
  }

  /* SPは縦積みに戻す */
  .p-airport-taxi-promo__benefits {
    flex-direction: column;
  }

  .p-airport-taxi-promo__benefit {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 16px;
  }

  .p-airport-taxi-promo__badge {
    min-width: auto;
    font-size: 14px;
    padding: 8px 14px;
  }

  .p-airport-taxi-promo__benefit-text {
    font-size: 16px;
  }

  .p-airport-taxi-promo__pickup {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
    padding-left: 8px;
  }

  .p-airport-taxi-promo .c-btn--accent {
    padding: 12px 28px;
    font-size: 15px;
  }
}

/* =========================================================
   Our Vehicle
   ========================================================= */
.p-entop__vehicle {
  padding: 24px 0 80px;
}

/* head */
.p-entop__vehicle-head {
  position: relative;
  margin-bottom: 36px;
  padding-top: 0;
  min-height: 0;
}

.p-entop__vehicle-h2 {
  font-size: var(--h2-size-lg);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
}

.p-entop__vehicle-h2 span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
}

.p-entop__vehicle-lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text-sub);
  margin: 0;
  max-width: 860px;
}

.p-entop__vehicle-deco {
  display: none; /* 一旦非表示 */
  position: absolute;
  bottom: 24px;
  right: 0;
  width: 34%;
  max-width: 400px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* grey zone: tabs + panels as one rounded block */
.p-entop__vehicle-box {
  border-radius: 16px;
  overflow: hidden;
  background: #f4f4f4;
}

/* tabs */
.p-entop__vehicle-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.p-entop__vehicle-tab {
  padding: 22px 12px;
  border: none;
  background: #ececec;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #555;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.p-entop__vehicle-tab.is-active {
  background: #e0e0e0;
  font-weight: 700;
  color: var(--color-text);
}

/* panels: stack every panel in one grid cell so the tallest fixes the height */
/* ステージ: 矢印の配置基準。パネルのはみ出し制御もここで行う */
.p-entop__vehicle-stage {
  position: relative;
}

.p-entop__vehicle-panels {
  position: relative;
  display: grid;
  overflow: hidden; /* スライド中のパネルをクリップ */
  /* JSが表示中パネルの高さに合わせる（スライド時もなめらかに） */
  transition: height 0.4s ease;
  /* 横スワイプはJSで処理、縦スクロールはブラウザに委ねる */
  touch-action: pan-y;
}

/* 全パネルを同一セルに重ね、スライド+フェードで切替（JS制御） */
.p-entop__vehicle-panel {
  grid-area: 1 / 1;
  /* 親のinline height（JS設定）に引き伸ばされると offsetHeight が実寸を返さず、
     SP→PCリサイズ時に高さが縮まなくなるため stretch させない */
  align-self: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 40px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.p-entop__vehicle-panel.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1;
}

/* media (single vehicle photo) */
.p-entop__vehicle-media {
  align-self: flex-start;
  text-align: center;
}

.p-entop__vehicle-photo {
  width: 86%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Our Vehicle: 画像ギャラリー（スライダー） */
.p-entop__vehicle-gallery {
  position: relative;
  width: 100%; /* 媒体カラムいっぱいに広げる（440px制限を撤廃） */
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.p-entop__vehicle-gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}

.p-entop__vehicle-gallery-slide {
  min-width: 100%;
  aspect-ratio: 4 / 3; /* 全スライド同一比率で高さを安定させる */
}

.p-entop__vehicle-gallery .p-entop__vehicle-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover; /* 枠いっぱいに表示（大きく見せる・余白なし） */
  margin: 0;
}

/* 前後ボタン */
.p-entop__vehicle-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.p-entop__vehicle-gallery-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}

.p-entop__vehicle-gallery-arrow--prev {
  left: 8px;
}

.p-entop__vehicle-gallery-arrow--next {
  right: 8px;
}

.p-entop__vehicle-gallery-arrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border: solid #fff;
  border-width: 2px 2px 0 0;
}

.p-entop__vehicle-gallery-arrow--prev::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.p-entop__vehicle-gallery-arrow--next::before {
  transform: rotate(45deg);
  margin-right: 3px;
}

/* ドット */
.p-entop__vehicle-gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.p-entop__vehicle-gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: background 0.2s ease;
}

.p-entop__vehicle-gallery-dot.is-active {
  background: #fff;
}

/* info */
.p-entop__vehicle-info-head {
  margin-bottom: 16px;
}

.p-entop__vehicle-name {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  margin: 12px 0 6px;
  /* 2行分の高さで固定し、車種によらず価格行の位置を揃える */
  min-height: calc(30px * 1.25 * 2);
}

.p-entop__vehicle-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0;
  line-height: 1.1;
  color: var(--color-accent);
}

.p-entop__vehicle-price-yen {
  font-size: 20px;
  font-weight: 700;
}

.p-entop__vehicle-price-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.p-entop__vehicle-price-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-sub);
  margin-left: 2px;
}

.p-entop__vehicle-desc {
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  margin: 0 0 24px;
}

.p-entop__vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  margin-bottom: 24px;
}

.p-entop__vehicle-specs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-entop__vehicle-specs li {
  display: flex;
  align-items: baseline;
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text);
}

.p-entop__vehicle-spec-mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  background: #1a1a1a;
  flex-shrink: 0;
}

.p-entop__vehicle-more a {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
}

.p-entop__vehicle-more a:hover {
  opacity: 0.6;
}

/* vehicle prev/next nav（全パネル共通・PCは情報カラム右上に固定） */
.p-entop__vehicle-nav {
  position: absolute;
  top: 129px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 14px;
}

.p-entop__vehicle-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(90, 90, 90, 0.82);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.p-entop__vehicle-arrow:hover {
  background: rgba(60, 60, 60, 0.95);
}

.p-entop__vehicle-arrow::before {
  content: "";
  display: inline-block;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  padding: 4px;
}

.p-entop__vehicle-arrow--prev::before {
  transform: rotate(135deg);
  margin-left: 4px;
}

.p-entop__vehicle-arrow--next::before {
  transform: rotate(-45deg);
  margin-right: 4px;
}

/* info panel needs relative for the nav anchor */
.p-entop__vehicle-info {
  position: relative;
  min-width: 0;
}

.p-entop__vehicle-media {
  min-width: 0;
}

/* =========================================================
   Long-term RV Rental Discount (h3, under Our Vehicle)
   ========================================================= */
.p-entop__discount {
  padding: 16px 0 24px;
}

.p-entop__discount-h3 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 18px;
}

.p-entop__discount-lead {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text-sub);
}

.p-entop__discount-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-entop__discount-card {
  background: #f2f2f2;
  border-radius: var(--radius);
  padding: 36px 20px 32px;
  text-align: center;
}

.p-entop__discount-term {
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--color-text);
}

.p-entop__discount-term strong {
  font-weight: 700;
}

.p-entop__discount-rate {
  margin: 0 0 14px;
  line-height: 1;
  white-space: nowrap;
}

.p-entop__discount-num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.p-entop__discount-pct {
  font-size: 30px;
  font-weight: 700;
}

.p-entop__discount-off {
  font-size: 30px;
  font-weight: 700;
  margin-left: 4px;
}

.p-entop__discount-note {
  font-size: 20px;
  margin: 0;
  color: var(--color-text);
}

/* =========================================================
   Marquee (infinite scrolling decoration, standalone section)
   ========================================================= */
.p-entop__marquee {
  overflow: hidden;
  padding: 80px 0;
}

.p-entop__marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: p-entop-marquee 40s linear infinite;
}

.p-entop__marquee-item {
  flex: 0 0 auto;
  width: 360px;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* 交互に上下へ少しずらす */
.p-entop__marquee-item:nth-child(odd) {
  transform: translateY(-20px);
}

.p-entop__marquee-item:nth-child(even) {
  transform: translateY(20px);
}

.p-entop__marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes p-entop-marquee {
  from {
    transform: translateX(0);
  }

  to {
    /* 1セット分（4枚 × (360 + 24gap) = 1536px）移動 */
    transform: translateX(-1536px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-entop__marquee-track {
    animation: none;
  }
}

/* =========================================================
   Easy RV Rental For You (flow steps)
   ========================================================= */
.p-entop__flow {
  padding: 72px 0 80px;
}

.p-entop__flow-h2 {
  font-size: var(--h2-size);
  font-weight: 800;
  text-align: center;
  margin: 0 0 40px;
}

.p-entop__flow-box {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid #1a1a1a;
  border-radius: 20px;
  padding: 48px 24px 56px;
}

.p-entop__flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: flow;
}

.p-entop__flow-step {
  text-align: center;
  padding: 24px 0;
}

.p-entop__flow-badge {
  display: inline-block;
  padding: 7px 26px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  margin-bottom: 16px;
}

.p-entop__flow-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 12px;
}

.p-entop__flow-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* =========================================================
   Why El Monte?
   ========================================================= */
.p-entop__why {
  padding: 72px 0 80px;
}

.p-entop__why-h2 {
  font-size: var(--h2-size);
  font-weight: 800;
  text-align: center;
  margin: 0 0 18px;
}

.p-entop__why-lead {
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-sub);
  margin: 0 0 40px;
}

.p-entop__why-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-entop__why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.p-entop__why-row--reverse .p-entop__why-img {
  order: 2;
}

.p-entop__why-img {
  overflow: hidden;
  border-radius: 10px;
}

.p-entop__why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-entop__why-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 40px 48px;
}

.p-entop__why-no {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 18px;
}

.p-entop__why-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.p-entop__why-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 20px;
}

.p-entop__why-text {
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  margin: 0;
}

/* =========================================================
   Customers Stories
   ========================================================= */
.p-entop__stories {
  background: #fff;
  padding: 64px 0 72px;
  overflow: hidden;
}

.p-entop__stories-head {
  position: relative;
  margin-bottom: 36px;
}

.p-entop__stories-h2 {
  font-size: var(--h2-size);
  font-weight: 800;
  margin: 0 0 18px;
}

.p-entop__stories-lead {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin: 0;
  max-width: 760px;
}

.p-entop__stories-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 14px;
}

.p-entop__stories-arrow {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(90, 90, 90, 0.82);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.p-entop__stories-arrow:hover {
  background: rgba(60, 60, 60, 0.95);
}

.p-entop__stories-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.p-entop__stories-arrow::before {
  content: "";
  display: inline-block;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  padding: 4px;
}

.p-entop__stories-arrow--prev::before {
  transform: rotate(135deg);
  margin-left: 4px;
}

.p-entop__stories-arrow--next::before {
  transform: rotate(-45deg);
  margin-right: 4px;
}

.p-entop__stories-slider {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y; /* 縦スクロールはブラウザ、横スワイプはJSが処理 */
  user-select: none;
  -webkit-user-select: none;
}

.p-entop__stories-slider:active {
  cursor: grabbing;
}

.p-entop__stories-track {
  display: flex;
  gap: 28px;
  transition: transform 0.4s ease;
}

.p-entop__stories-card {
  flex: 0 0 calc((100% - 56px) / 3);
  text-decoration: none;
  color: var(--color-text);
}

.p-entop__stories-card-img {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #e2e2e2;
}

.p-entop__stories-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-entop__stories-tag {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}

.p-entop__stories-tag--green {
  background: #5ab552;
}

.p-entop__stories-tag--blue {
  background: #3f7fd0;
}

.p-entop__stories-tag--red {
  background: #e0584f;
}

.p-entop__stories-title {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.p-entop__stories-more {
  text-align: center;
  margin: 44px 0 0;
}

.p-entop__stories-more a {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
}

.p-entop__stories-more a:hover {
  opacity: 0.6;
}

/* =========================================================
   CTA Banner (reused from existing EN)
   ========================================================= */
.p-entop__cta-banner {
  margin: 0;
}

.p-entop__cta-banner a {
  display: block;
}

.p-entop__cta-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   News
   ========================================================= */
.p-entop__news {
  padding: 80px 0;
}

.p-entop__news-head {
  margin: 0 0 36px;
}

.p-entop__news-body {
  max-width: 1000px;
  margin: 0 auto;
}

.p-entop__news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.p-entop__news-item {
  border-bottom: 1px solid var(--color-border);
}

.p-entop__news-link {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 8px;
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}

.p-entop__news-link:hover {
  color: var(--color-accent);
  padding-left: 16px;
}

.p-entop__news-date {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-sub);
  letter-spacing: 0.02em;
}

.p-entop__news-title {
  flex: 1;
  font-size: 17px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.p-entop__news-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--color-border);
  transition: transform 0.2s ease, color 0.2s ease;
}

.p-entop__news-link:hover .p-entop__news-arrow {
  color: var(--color-accent);
  transform: translateX(4px);
}

.p-entop__news-empty {
  padding: 24px 8px;
  color: var(--color-text-sub);
}

.p-entop__news-more {
  margin: 32px 0 0;
  text-align: center;
}

.p-entop__news-more a {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
}

.p-entop__news-more a:hover {
  opacity: 0.6;
}

.p-entop__news-more a span {
  display: inline-block;
}

.p-entop__news-more a:hover span {
  animation: p-entop-arrow-fly 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .p-entop__news-more a:hover span {
    animation: none;
  }
}

/* =========================================================
   FAQ Page (dedicated /en/faq) - tabs + accordion
   ========================================================= */
.p-entop__faqpage {
  padding: 64px 0 96px;
}

.p-entop__faqpage-head {
  text-align: center;
  margin: 0 0 36px;
}

.p-entop__faqpage-h1 {
  font-size: var(--h2-size);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.p-entop__faqpage-lead {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0 auto;
  max-width: 720px;
}

.p-entop__faqpage-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto 24px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.p-entop__faqpage-tab {
  padding: 18px 10px;
  border: none;
  background: #ececec;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #555;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.p-entop__faqpage-tab:hover {
  background: #e3e3e3;
}

.p-entop__faqpage-tab.is-active {
  background: #d8d8d8;
  font-weight: 700;
  color: var(--color-text);
}

.p-entop__faqpage-panels {
  position: relative;
}

.p-entop__faqpage-panel {
  display: none;
}

.p-entop__faqpage-panel.is-active {
  display: block;
}

/* SP: タブを2行ラップ */
@media (max-width: 768px) {
  .p-entop__faqpage {
    padding: 32px 0 64px;
  }

  .p-entop__faqpage-h1 {
    font-size: 24px;
  }

  .p-entop__faqpage-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    border-radius: 8px;
  }

  .p-entop__faqpage-tab {
    padding: 14px 8px;
    font-size: 13px;
  }
}

/* =========================================================
   FAQ (accordion)
   ========================================================= */
.p-entop__faq {
  padding: 80px 0;
}

.p-entop__faq-head {
  margin: 0 0 36px;
}

.p-entop__faq-list {
  max-width: 1000px;
  margin: 0 auto;
}

.p-entop__faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 16px;
  overflow: hidden;
}

.p-entop__faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--color-text);
}

.p-entop__faq-q,
.p-entop__faq-a {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-orange);
}

.p-entop__faq-a {
  color: var(--color-navy);
}

.p-entop__faq-q-text {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 1px;
}

.p-entop__faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  color: var(--color-text-sub);
  transition: transform 0.3s ease;
}

.p-entop__faq-question[aria-expanded="true"] .p-entop__faq-icon {
  transform: rotate(180deg);
}

/* 回答: max-height でスムーズに開閉 */
.p-entop__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.p-entop__faq-answer-text {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

/* 回答本文に <a>/<br>/<strong> が混在しても flex item が増えないよう、本文側を1つにまとめる */
.p-entop__faq-answer-body {
  flex: 1 1 auto;
  min-width: 0;
}

.p-entop__faq-answer-body a {
  color: var(--color-orange);
  text-decoration: underline;
}

.p-entop__faq-answer-body a:hover {
  opacity: 0.7;
}

.p-entop__faq-more {
  max-width: 1000px;
  margin: 32px auto 0;
  text-align: center;
}

.p-entop__faq-more a {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
}

.p-entop__faq-more a:hover {
  opacity: 0.6;
}

.p-entop__faq-more a span {
  display: inline-block;
}

.p-entop__faq-more a:hover span {
  animation: p-entop-arrow-fly 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .p-entop__faq-more a:hover span {
    animation: none;
  }

  .p-entop__faq-answer {
    transition: none;
  }
}

/* =========================================================
   RV Rental Location
   ========================================================= */
.p-entop__location {
  position: relative;
  background: #f2f2f2;
  padding: 64px 0 72px;
  overflow: hidden;
}

.p-entop__location-head {
  position: relative;
  margin-bottom: 36px;
}

/* OneWay Special Price カード（スライダー内） */
.p-entop__location-card--oneway {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.2s ease;
}

.p-entop__location-card--oneway:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}

.p-entop__location-card-price {
  font-size: 28px;
  font-weight: 800;
  color: #c41e1e;
  margin: 8px 0;
  line-height: 1.2;
}

.p-entop__location-card-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #c41e1e;
}

.p-entop__location-h2 {
  font-size: var(--h2-size-lg);
  font-weight: 800;
  margin: 0 0 20px;
}

.p-entop__location-sub {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 18px;
}

.p-entop__location-lead {
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  margin: 0 0 20px;
  max-width: 860px;
}

.p-entop__location-more a {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
}

.p-entop__location-more a:hover {
  opacity: 0.6;
}

/* prev/next */
.p-entop__location-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 14px;
}

.p-entop__location-arrow {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(90, 90, 90, 0.82);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.p-entop__location-arrow:hover {
  background: rgba(60, 60, 60, 0.95);
}

.p-entop__location-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.p-entop__location-arrow::before {
  content: "";
  display: inline-block;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  padding: 4px;
}

.p-entop__location-arrow--prev::before {
  transform: rotate(135deg);
  margin-left: 4px;
}

.p-entop__location-arrow--next::before {
  transform: rotate(-45deg);
  margin-right: 4px;
}

/* slider */
.p-entop__location-slider {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y; /* 縦スクロールはブラウザ、横スワイプはJSが処理 */
  user-select: none;
  -webkit-user-select: none;
}

.p-entop__location-slider:active {
  cursor: grabbing;
}

.p-entop__location-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.p-entop__location-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 4);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.p-entop__location-card-img {
  width: 100%;
  height: 180px;
  background: #ddd;
}

.p-entop__location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-entop__location-card-body {
  padding: 16px 18px 56px;
}

.p-entop__location-card-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}

.p-entop__location-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 2px;
}

.p-entop__location-card-text a {
  color: #333;
  text-decoration: underline;
}

.p-entop__location-card-map {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.p-entop__location-card-map:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* =========================================================
   Enjoy RV Vacation in Japan
   (見出し・テキストを画面に固定したまま、右画像が3枚目まで
    スクロールで重なり、その後セクションごと流れる)
   ========================================================= */
.p-entop__enjoy {
  /* 固定ヘッダーの高さ（body padding-top と連動） */
  --enjoy-header-h: 150px;
  /* 上余白は見出しの初期オフセット(-60px)分を含めて広めに取る */
  padding: 180px 0 140px;
}

body.admin-bar .p-entop__enjoy {
  --enjoy-header-h: 182px;
}

.p-entop__enjoy-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  /* 見出しが見え始めた時点では画面外（下）に控え、
     見出しの縮小(--enjoy-progress)と同時に下から定位置へ迎えに上がる */
  transform: translateY(calc((1 - var(--enjoy-progress, 0)) * 30vh));
  transition: transform 0.1s linear;
}

/* left column: 右の画像群をスクロールする間、固定ヘッダーの下に固定 */
.p-entop__enjoy-left {
  position: sticky;
  top: calc(var(--enjoy-header-h) + 24px);
}

.p-entop__enjoy-sticky {
  width: 100%;
}

/* 見出しが縮んでも下のコンテンツが動かないよう、最大サイズ分の高さを確保 */
.p-entop__enjoy-head {
  min-height: calc(clamp(40px, 6.75vw, 108px) * 1.1 + 32px);
}

.p-entop__enjoy-h2 {
  /* 最大サイズはテキストがコンテナ幅(1600px)いっぱいに広がる大きさ。
     スクロール進捗(--enjoy-progress: JSが0〜1で更新)に応じて
     縮小(100% → 55%)しながら、上(-60px)から定位置(0)へ降りてくる */
  font-size: max(36px, calc(clamp(40px, 6.75vw, 108px) * (1 - var(--enjoy-progress, 0) * 0.45)));
  transform: translateY(calc((1 - var(--enjoy-progress, 0)) * -60px));
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 32px;
  white-space: nowrap;
  transition: font-size 0.1s linear, transform 0.1s linear;
}

.p-entop__enjoy-emoji {
  font-size: 0.7em;
}

.p-entop__enjoy-strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 24px;
}

.p-entop__enjoy-text {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin: 0 0 24px;
}

/* right column: 高さのある画像を縦に3枚並べる */
.p-entop__enjoy-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-entop__enjoy-pic {
  border-radius: 10px;
  overflow: hidden;
}

/* テキスト内インライン画像はPCでは非表示（SPのみ使用） */
.p-entop__enjoy-inline {
  display: none;
}

.p-entop__enjoy-pic img {
  width: 100%;
  aspect-ratio: 4 / 3; /* 画像自体に高さを持たせる */
  object-fit: cover;
  display: block;
}

/* =========================================================
   Responsive (tablet: 横幅が狭く高さのある画面)
   ========================================================= */
@media (min-width: 769px) and (max-width: 1100px) {

  /* 横幅基準だと低くなりすぎるので高さを優先（中央クロップ許容） */
  .p-entop__fv-slider {
    height: min(64vh, 60vw);
    min-height: 500px;
  }

  /* フォームのめり込みが浅くなる分、退避も浅く */
  .p-entop__fv-overlay {
    padding: 0 32px 112px;
  }

  .p-entop__fv-nav {
    right: 24px;
    bottom: 88px;
  }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 768px) {
  .p-entop__section {
    padding: 40px 0;
  }

  /* セクション見出しとその下のリード文は左づめ */
  .p-entop__h2,
  .p-entop__lead,
  .p-entop .c-headingH2,
  .p-entop__discount-h3,
  .p-entop__discount-lead,
  .p-entop__flow-h2,
  .p-entop__why-h2,
  .p-entop__why-lead {
    text-align: left;
  }

  /* Enjoy: stack, disable scroll-pinning on mobile */
  .p-entop__enjoy {
    padding: 64px 0 56px;
  }

  .p-entop__enjoy-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    transform: none; /* SPは迎えアニメなし */
  }

  .p-entop__enjoy-left {
    position: static;
  }

  .p-entop__enjoy-sticky {
    position: static;
    padding: 0 0 8px;
  }

  .p-entop__enjoy-h2 {
    font-size: 30px;
    white-space: normal;
    margin-bottom: 24px;
    transform: none;
  }

  .p-entop__enjoy-strong {
    font-size: 20px;
  }

  /* SPは右カラムの3枚を隠し、テキスト内に差し込んだ画像を表示 */
  .p-entop__enjoy-right {
    display: none;
  }

  .p-entop__enjoy-inline {
    display: block;
    margin: 8px 0 24px;
    border-radius: 10px;
    overflow: hidden;
  }

  .p-entop__enjoy-inline img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  /* Easy RV Rental */
  .p-entop__flow {
    padding: 40px 0 48px;
  }

  .p-entop__flow-box {
    padding: 28px 16px 32px;
    border-radius: 14px;
  }

  .p-entop__flow-title {
    font-size: 22px;
  }

  /* Why El Monte */
  .p-entop__why {
    padding: 40px 0 48px;
  }

  .p-entop__why-row,
  .p-entop__why-row--reverse {
    grid-template-columns: 1fr;
  }

  .p-entop__why-row--reverse .p-entop__why-img {
    order: 0;
  }

  .p-entop__why-img {
    aspect-ratio: 16 / 10;
  }

  .p-entop__why-body {
    padding: 24px 20px;
  }

  .p-entop__why-title {
    font-size: 22px;
  }

  /* Customers Stories */
  .p-entop__stories-lead {
    font-size: 14px;
  }

  .p-entop__stories-nav {
    position: static;
    margin-top: 20px;
    justify-content: flex-end;
  }

  .p-entop__stories-card {
    flex: 0 0 80%;
  }

  .p-entop__stories-card-img {
    height: 240px;
  }

  .p-entop__stories-arrow {
    width: 40px;
    height: 40px;
  }

  /* FAQ */
  .p-entop__faq {
    padding: 48px 0;
  }

  .p-entop__faq-more a {
    font-size: 17px;
  }

  .p-entop__faq-question {
    gap: 10px;
    padding: 18px 16px;
  }

  .p-entop__faq-q-text {
    font-size: 15px;
  }

  .p-entop__faq-answer-text {
    gap: 10px;
    padding: 0 16px 20px;
    font-size: 14px;
  }

  /* News */
  .p-entop__news {
    padding: 48px 0;
  }

  .p-entop__news-more a {
    font-size: 17px;
  }

  .p-entop__news-link {
    flex-wrap: wrap;
    gap: 4px 16px;
    padding: 16px 4px;
  }

  .p-entop__news-link:hover {
    padding-left: 4px;
  }

  .p-entop__news-date {
    font-size: 13px;
  }

  .p-entop__news-title {
    flex: 1 0 100%;
    font-size: 15px;
  }

  .p-entop__news-arrow {
    display: none;
  }

  /* RV Rental Location */
  .p-entop__location-sub {
    font-size: 20px;
  }

  .p-entop__location-lead {
    font-size: 14px;
  }

  .p-entop__location-nav {
    position: static;
    margin-top: 20px;
    justify-content: flex-end;
  }

  .p-entop__location-card {
    flex: 0 0 78%;
  }

  .p-entop__location-arrow {
    width: 40px;
    height: 40px;
  }

  /* Discount */
  .p-entop__discount-h3 {
    font-size: 24px;
  }

  .p-entop__discount-lead {
    font-size: 14px;
  }

  .p-entop__discount-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* SPは縦に積むため、各カードの高さを抑える */
  .p-entop__discount-card {
    padding: 20px 16px;
  }

  .p-entop__discount-term {
    margin: 0 0 8px;
  }

  .p-entop__discount-rate {
    margin: 0 0 8px;
  }

  .p-entop__discount-num {
    font-size: 44px;
  }

  /* Marquee */
  .p-entop__marquee {
    padding: 48px 0;
  }

  .p-entop__marquee-item {
    width: 240px;
    height: 170px;
  }

  /* SPは上下のずれをなくす */
  .p-entop__marquee-item:nth-child(odd),
  .p-entop__marquee-item:nth-child(even) {
    transform: none;
  }

  @keyframes p-entop-marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-1056px);
    }
  }

  .p-entop__fv-slider {
    height: 50vh;
    min-height: 360px;
  }

  .p-entop__fv-overlay {
    padding: 0 20px 150px; /* テキストを上げて矢印にかからないように */
  }

  .p-entop__fv-eyebrow {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .p-entop__fv-title {
    /* 「Rent a motorhome in Japan」(25文字) が1行に収まる最大サイズに自動調整。
       overlay 利用可能幅 = 100vw - 40px(左右padding)。bold800 の実測字幅比から係数14。
       上限 42px。white-space:nowrap で改行を抑止 */
    font-size: min(calc((100vw - 40px) / 14), 42px);
    line-height: 1.2;
    margin-bottom: 16px;
    white-space: nowrap;
  }

  .p-entop__fv-cta a {
    font-size: 15px;
    padding: 13px 26px;
  }

  .p-entop__fv-nav {
    right: 16px;
    bottom: 88px;
    gap: 8px;
  }

  .p-entop__fv-btn {
    width: 42px;
    height: 42px;
  }

  /* Our Vehicle */
  .p-entop__vehicle {
    padding: 40px 0 48px;
  }

  .p-entop__vehicle-lead {
    font-size: 14px;
  }

  .p-entop__vehicle-deco {
    display: none;
  }

  /* 矢印を箱の外へはみ出させるためクリップ解除。角丸はタブ側で担保 */
  .p-entop__vehicle-box {
    overflow: visible;
  }

  .p-entop__vehicle-tabs {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }

  .p-entop__vehicle-tab {
    padding: 14px 8px;
    font-size: 13px;
  }

  /* SPは1カラム。全パネルを重ねてスライド切替（高さはJSが表示中に合わせる） */
  .p-entop__vehicle-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }

  /* 車両説明文のSP短縮（詳細フレーズを非表示にして約2/3に） */
  .p-entop__vehicle-desc-detail {
    display: none;
  }

  .p-entop__vehicle-name {
    font-size: 22px;
    min-height: 0; /* SPは行数固定しない */
  }

  .p-entop__vehicle-price-yen {
    font-size: 16px;
  }

  .p-entop__vehicle-price-num {
    font-size: 30px;
  }

  .p-entop__vehicle-price-unit {
    font-size: 13px;
  }

  .p-entop__vehicle-specs {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* SPは全長と定員のみ表示（他スペックは非表示）
     ベースの .p-entop__vehicle-specs li { display: flex } に勝つよう詳細度を上げる */
  .p-entop__vehicle-specs li.p-entop__vehicle-spec-detail {
    display: none;
  }

  .p-entop__vehicle-more a {
    font-size: 17px;
  }

  /* SPは画像を一定比率にして、共通の矢印を画像の縦中心・左右端に固定
     （タブ切替で位置が動かないよう panels 基準で配置） */
  .p-entop__vehicle-photo {
    width: 100%;
    max-width: none;
    aspect-ratio: 3 / 2;
    object-fit: contain;
  }

  .p-entop__vehicle-nav {
    /* 車両名のあたりに配置: パネル上padding24px + 画像高さ(3:2) + gap24px + 見出し上余白12px + 名前中心 */
    top: calc(84px + (100vw - 72px) * 2 / 3);
    /* 箱の外側へ少しはみ出す */
    left: -16px;
    right: -16px;
    transform: translateY(-50%);
    justify-content: space-between;
    gap: 0;
    pointer-events: none; /* 隙間はスワイプを透過させる */
  }

  /* 画像の左右端に少しはみ出す形で配置 */
  .p-entop__vehicle-arrow {
    width: 38px;
    height: 38px;
    pointer-events: auto;
  }
}

/* =========================================================
   Discover the best of Spring Season（フッター上・既存ENから移植）
   ========================================================= */
.p-entop__discover {
  padding: 8px 0 88px;
}

.p-entop__discover-h2 {
  font-size: var(--h2-size);
  font-weight: 800;
  text-align: center;
  margin: 0 0 48px;
}

.p-entop__discover-videos {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
}

.p-entop__discover-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}

.p-entop__discover-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-entop__discover-video-title {
  font-size: 22px;
  font-weight: 700;
  margin: 16px 0 0;
}

.p-entop__discover-banners {
  list-style: none;
  margin: 56px auto 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.p-entop__discover-banners li {
  max-width: 480px;
  width: 100%;
}

.p-entop__discover-banners img {
  width: 100%;
  height: auto;
  display: block;
}

.p-entop__discover-agoda {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  /* Agodaウィジェットは909px固定幅のため、狭い画面では横スクロールで逃がす */
  overflow-x: auto;
}

@media (max-width: 768px) {
  .p-entop__discover {
    padding: 0 0 64px;
  }

  .p-entop__discover-h2 {
    margin-bottom: 32px;
  }

  .p-entop__discover-videos {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-entop__discover-video-title {
    font-size: 18px;
    margin-top: 12px;
  }

  .p-entop__discover-banners {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
}
