/* =============================================
   JKM 日本租车网站 - 主样式文件
   设计稿基准: Figma 1440px 宽度
   基准单位: 1rem = 16px (浏览器默认)
   主色调: #ff3600 (橙红)
   ============================================= */

/* ===== CSS RESET & 基础 ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* 字体基准: 设计稿 1440px 下使用 px 值，通过 vw 实现缩放 */
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: #0a0a0a;
  background-color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
div,
a,
textarea,
input,
span {
	box-sizing: border-box;
}
/* ===== 布局容器 ===== */
/* Figma: 内容区域最大宽度 1440px, 内边距两侧约 72-80px */
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  width: 100%;
}

/* ===== 通用区块标题样式 ===== */
/* Figma: section label 装饰线 + 文字 + 装饰线 布局 */
.section-label-center {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* Figma: 红色装饰线 w 30px h 2px #ff3600 */
.label-line,
.label-line-after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #ff3600;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

/* Figma: 小标签文字 Bold 14px #ff3600 uppercase */
.label-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.875rem; /* 14px */
  color: #ff3600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Figma: section title SemiBold 32px */
.section-title {
  font-weight: 600;
  font-size: 2rem; /* 32px */
  line-height: 1.31;
  color: #0a0a0a;
}

.section-title.dark {
  color: #212121;
}

/* Figma: section subtitle Regular 18px */
.section-subtitle {
  font-size: 1.125rem; /* 18px */
  color: #212121;
  margin-top: 12px;
}

/* ===== 通用按钮 ===== */
/* Figma: 主按钮 bg #ff3600, h 46px, 圆角 */
.btn-primary {
  display: inline-block;
  background-color: #ff3600;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1rem; /* 16px */
  height: 60px;
  line-height: 60px;
  padding: 0 24px;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #e03000;
}

/* Figma: 外框按钮 border #ff3600, bg white */
.btn-outline-red {
  display: inline-block;
  border: 1px solid #ff3600;
  color: #ff3600;
  font-family: 'Open Sans', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  height: 46px;
  line-height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-outline-red:hover {
  background-color: #ff3600;
  color: #fff;
}

/* ============================================
   HEADER
   Figma: 高度 85px, bg white, shadow
   ============================================ */
.site-header {
  position: fixed; /* 固定导航栏 */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  /* Figma: shadow 0px 10px 40px 0px rgba(202,202,202,0.2) */
  -webkit-box-shadow: 0px 10px 40px 0px rgba(202, 202, 202, 0.2);
  box-shadow: 0px 10px 40px 0px rgba(202, 202, 202, 0.2);
  height: 85px; /* Figma: 导航栏高度 85px */
}

.header-inner {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 0;
}

/* Figma: Logo Times Regular 36px #050508 */
.header-logo {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 2.25rem; /* 36px */
  color: #050508;
  line-height: 1;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: auto;
}

/* Figma: nav 居中, Noto Sans JP Medium 15px, gap 48px */
.header-nav {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.nav-list {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 2rem; /* 实际间距约 32px，设计稿 48px 是宽屏优化 */
}

.nav-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem; /* 15px */
  color: #040401;
  white-space: nowrap;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  line-height: 25px;
}

/* Figma: 当前页 nav link color #ff3600 */
.nav-link.active,
.nav-link:hover {
  color: #ff3600;
}

/* Figma: 登录按钮 bg #ff3600, border #ff3600, h 46px, w 114px, border-radius 2px */
.btn-login {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  background-color: #ff3600;
  border: 1px solid #ff3600;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1rem; /* 16px */
  height: 46px;
  padding: 0 18px;
  border-radius: 2px;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-left: 24px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.btn-login:hover {
  background-color: #e03000;
}

.login-icon {
  font-family: 'Font Awesome 5 Free', sans-serif;
  /* font-size: 1rem; */
  background-image: url(../img/icon-user.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
}

/* 汉堡菜单按钮（移动端） */
.nav-toggle {
  display: none;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0a0a0a;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   HERO SECTION
   Figma: top 85px, height 620px, width 1440px
   ============================================ */
.hero {
  position: relative;
  /* Figma: hero 区域高度 620px */
  min-height: 620px;
  margin-top: 85px; /* 导航栏高度补偿 */
  /* overflow: hidden; */
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

/* 背景图层 */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Figma: 遮罩层 rgba(101,101,101,0.2) */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(101, 101, 101, 0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-text-block {
  max-width: 620px;
  margin-left: auto; /* Figma: 文字靠右侧偏移 */
}

/* Figma: Hero 标题 Bold 56px #fbfbfd, text-shadow 3px 0px 0px black, text-center */
.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.9vw, 3.5rem); /* Figma: 56px */
  color: #fbfbfd;
  text-align: center;
  line-height: 1.14; /* Figma: line-height 64px */
  text-shadow: 3px 0px 0px #000;
  white-space: nowrap;
}

/* Figma: Hero 副标题 18px tracking 2px */
.hero-subtitle {
  font-size: clamp(0.875rem, 1.25vw, 1.125rem); /* Figma: 18px */
  color: #fbfbfd;
  text-align: center;
  letter-spacing: 0.125rem; /* 2px */
  margin-top: 24px;
  line-height: 1.67;
}

/* Hero 右侧大图 */
.hero-image-wrap {
  display: none; /* 在大屏上可选显示 */
}

/* QRコード 悬浮窗 */
.hero-qr {
  position: fixed;
  right: 24px;
  bottom: 10%;
  z-index: 999;
  /* background: #fff; */
  padding: 12px;
  /* border-radius: 8px; */
  /* border: 2px solid #17bd17; */
  /* -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); */
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); */
}

.hero-qr-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 26px;
  height: 26px;
  border: none;
  background: #666;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.hero-qr-close:hover {
  background: #333;
}

.hero-qr-inner {
  padding: 4px;
  border: 2px solid #17bd17;
  border-radius: 6px;
}

.hero-qr-img {
  width: 140px;
  height: 140px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================
   预约表单 - 悬浮窗样式
   ============================================ */
.booking-form-wrap {
  position: absolute;
  left: 80px;
  bottom: 24px;
  z-index: 2;
  width: 480px;
  max-width: calc(100vw - 160px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* 标签: 空港送迎选中=白底, 貸し切り未选=橙底白字 */
.booking-tabs {
  display: -webkit-flex;
  display: flex;
}

.booking-tab {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  height: 53px;
  width: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
  background-color: #fff;
  color: #333;
}

.booking-tab:first-child {
  border-radius: 14px 0 0 0;
}

.booking-tab:last-child {
  border-radius: 0 14px 0 0;
}

.booking-tab.active {
  background-color: #ff3600;
  color: #fff;
}

.booking-form {
  background-color: #fff;
  padding: 24px;
  overflow: visible;
  box-sizing: border-box;
  border-radius: 0 0 14px 14px;
      max-height: 500px;
      overflow: hidden;
      overflow-y: auto;
}

.form-group {
  position: relative;
  margin-bottom: 14px;
}

/* 图标入输入框结构 */
.form-group-with-icon {
  margin-bottom: 14px;
}

.form-label-inline {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #333;
  margin-bottom: 8px;
}

.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f5f6f8;
  border: 1px solid #e8eaef;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input-wrap:focus-within {
  border-color: #ff3600;
  box-shadow: 0 0 0 2px rgba(255, 54, 0, 0.1);
}

.form-input-wrap .form-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 16px 14px 40px;
  margin: 0;
}

.form-input-wrap .form-input::placeholder {
  color: #9ca3af;
}

.form-input-icon {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  object-fit: contain;
  pointer-events: none;
}

.form-input-wrap-sm {
  min-height: 58px;
}

.form-input-wrap-sm .form-input-icon {
  width: 17px;
  height: 14px;
}

.form-input-wrap-sm .form-input,
.form-input.form-input-sm {
  padding: 12px 14px 12px 36px;
  font-size: 0.9375rem;
  height: auto;
  min-height: 56px;
}

.form-row-date-time .form-group {
  flex: 1;
  margin-bottom: 0;
}

/* 利用時間 下拉框 */
.form-input-wrap-select {
  position: relative;
}

.form-input-wrap-select .form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  cursor: pointer;
  background-color: transparent;
  color: #1f2937;
  font-weight: 500;
}

.form-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #6b7280;
  pointer-events: none;
}

/* 帰り行（動的追加） */
.form-row-return {
  position: relative;
  margin-bottom: 12px;
  align-items: flex-end;
}

.form-row-return .form-group {
  flex: 1;
  margin-bottom: 0;
}

.btn-remove-return {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
  margin-left: 10px;
  border: none;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 18px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.btn-remove-return:hover {
  background: #d1d5db;
  color: #374151;
}

/* 标签上置 (出発地/到着地) - 旧结构兼容 */
.form-group-label-top .form-label-top {
  position: relative;
  top: auto;
  left: auto;
  margin-bottom: 8px;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.form-group-label-top .form-input {
  padding-top: 14px;
  padding-left: 16px;
}

.form-label {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  pointer-events: none;
}

.form-icon {
  width: 12px;
  height: 16px;
  -o-object-fit: contain;
  object-fit: contain;
}

.form-input {
  width: 100%;
  /* height: 78px; */
  background-color: #f0f2f7;
  border: 1px solid #fff;
  border-radius: 4.8px;
  padding: 42px 26px 12px 33px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.125rem; /* 18px */
  color: #c9c9c9;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: #ff3600;
  color: #333;
}

/* 日期/时间/人数/荷物 行布局 */
.form-row {
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row .form-group {
  -webkit-flex: 1;
  flex: 1;
  margin-bottom: 0;
}

.form-label-small {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem; /* 14px */
  color: #8e8e8e;
  position: absolute;
  top: 8px;
  left: 12px;
  pointer-events: none;
  z-index: 1;
}

.form-icon-small {
  width: 17px;
  height: 14px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Figma: 小输入框 h 58px */
.form-input-small {
  width: 100%;
  height: 58px;
  background-color: #f0f2f7;
  border: 1px solid #fff;
  border-radius: 4.8px;
  padding: 34px 16px 10px 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1rem; /* 16px */
  color: #535353;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input-small::-webkit-inner-spin-button,
.form-input-small::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

/* 乗客数・荷物 点击触发 + 下拉弹窗 */
.form-passenger-trigger-wrap {
  position: relative;
  margin-bottom: 14px;
}

.form-row-trigger {
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  margin-bottom: 0;
}

.form-trigger-item {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 18px;
  background-color: #f5f6f8;
  border-radius: 8px;
  line-height: normal;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.form-trigger-item:hover {
  background-color: #ebeef2;
}

.form-trigger-item.active {
  border-color: #ff3600;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 12px rgba(255, 54, 0, 0.12);
  box-shadow: 0 2px 12px rgba(255, 54, 0, 0.12);
}

.form-trigger-icon {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
}

.form-trigger-text {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.form-trigger-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8125rem;
  color: #6b7280;
}

.form-trigger-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1f2937;
}

/* 下拉弹窗 */
.form-passenger-popup {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 10px;
  min-width: 360px;
  background: #fff;
  border-radius: 14px;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.06);
  z-index: 100;
  overflow: hidden;
}

.form-passenger-popup.is-open {
  display: block;
}

/* 顶部汇总栏：标签在上，数值在下 */
.passenger-popup-header {
  display: -webkit-flex;
  display: flex;
  padding: 20px;
  gap: 32px;
  background-color: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.passenger-popup-summary {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
}

.passenger-popup-summary .popup-icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
}

.popup-summary-text {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.popup-summary-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8125rem;
  color: #6b7280;
}

.passenger-popup-summary .popup-summary-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: #1f2937;
}

/* 弹窗主体：左右两栏 */
.passenger-popup-body {
  padding: 20px;
}

.passenger-popup-columns {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.passenger-popup-col {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}

.passenger-col-left {
  border-right: 1px solid #e5e7eb;
  padding-right: 20px;
}

.passenger-col-right {
  padding-top: 0;
}

.passenger-popup-body .age-row {
  margin-bottom: 16px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 12px;
}

.passenger-popup-body .age-row:last-child {
  margin-bottom: 0;
}

.passenger-col-right .age-row {
  margin-bottom: 0;
}

/* 年龄标签：主标签+副标签垂直排列 */
.age-label-block {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}

.age-label-main {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
}

.age-label-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 400;
}

/* 弹窗内数字深色背景 */
.counter-value-dark {
  color: #fff !important;
  background-color: #4a4a4a;
  min-width: 32px;
  padding: 4px 8px;
  border-radius: 6px;
}

/* 乗客数・荷物 计数器 (弹窗内使用) */
.form-group-counter {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.form-group-counter .form-label-small {
  position: relative;
  top: auto;
  left: auto;
  margin-bottom: 6px;
  display: -webkit-inline-flex;
  display: inline-flex;
}

.form-counter {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  height: 52px;
  background-color: #f0f2f7;
  border-radius: 6px;
  padding: 0 14px;
}

.counter-btn {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background-color: #ff3600;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.counter-btn:hover {
  background-color: #e03000;
}

.counter-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.form-counter .counter-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  min-width: 24px;
  text-align: center;
}

.age-row {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 12px;
}

.age-row:last-child {
  margin-bottom: 0;
}

.form-counter-sm {
  height: 40px;
  padding: 0 10px;
  gap: 8px;
  background-color: #f0f2f7;
}

.form-counter-sm .counter-btn {
  width: 24px;
  height: 24px;
  font-size: 16px;
}

.form-counter-sm .counter-value {
  font-size: 0.9375rem;
  min-width: 20px;
}

.btn-add-return {
  width: 100%;
  height: 48px;
  background-color: #ff3600;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 14px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-add-return:hover {
  background-color: #e03000;
}


.btn-search {
  width: 100%;
  height: 52px;
  background-color: #ff3600;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  margin-top: 4px;
}

.btn-search:hover {
  background-color: #e03000;
}

.search-icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ============================================
   ABOUT SECTION
   Figma: 公司介绍区域
   ============================================ */
.about {
  padding: 100px 0;
}

.about-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 60px;
}

.about-text {
  -webkit-flex: 0 0 45%;
  flex: 0 0 45%;
  max-width: 657px;
}

/* About 区域的 section label (左对齐) */
.about-text .section-label {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

/* Figma: About 标题 Bold 34px, line-height 57px, #0a0a0a */
.about-title {
  font-family: 'Open Sans', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.125rem); /* Figma: 34px */
  line-height: 1.67; /* Figma: 57px */
  color: #0a0a0a;
  margin-bottom: 24px;
}

/* Figma: About 正文 Medium 16px, #414141, line-height 40px, text-justify */
.about-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1rem; /* 16px */
  color: #414141;
  line-height: 2.5; /* Figma: 40px */
  text-align: justify;
  margin-bottom: 40px;
}

/* 右侧图片容器 */
.about-images {
  -webkit-flex: 1;
  flex: 1;
  position: relative;
  /* Figma: 大图 441×608, 小图 313×388, 重叠布局 */
  height: 680px;
}

/* Figma: 大圆形图 441×608px, border-radius 500px */
.about-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 441px;
  height: 608px;
  border-radius: 500px;
  overflow: hidden;
  border: 1px solid #fff;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Figma: 小圆形图 313×388px, border-radius 200px, 偏移叠加 */
.about-img-sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 313px;
  height: 388px;
  border-radius: 200px;
  overflow: hidden;
  border: 1px solid #fff;
}

.about-img-sub img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ============================================
   事業内容 SECTION
   Figma 1:1 还原: bg #fcfbfb, 3列, 画像上・テキスト下
   ============================================ */
.services {
  padding: 80px 0 100px;
  /* Figma: 背景 #fcfbfb */
  background-color: #fcfbfb;
}

/* Figma: 3列横並び、等間隔 */
.services-grid {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Figma: カード縦型、画像上 272px / テキスト下 336px、bg #fff8f6 */
.service-card {
  -webkit-flex: 0 0 calc(33.333% - 16px);
  flex: 0 0 calc(33.333% - 16px);
  max-width: 400px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  background-color: transparent;
  border-radius: 4px;
  overflow: hidden;
}

/* Figma: 画像高さ 272px, border-radius 4px */
.service-card-img {
  width: 100%;
  height: 272px;
  overflow: hidden;
  border-radius: 4px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

/* Figma: テキストエリア bg #fff8f6, padding 40px, min-height 336px */
.service-card-body {
  background-color: #fff8f6;
  padding: 40px;
  min-height: 336px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: 0;
}

/* Figma: Service 番号 Open Sans SemiBold 14px #ff3600 uppercase */
.service-num {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  color: #ff3600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 26px;
  margin-bottom: 10px;
}

/* Figma: タイトル Noto Sans JP Bold 20px black */
.service-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.25rem; /* 20px */
  color: #000;
  line-height: 30px;
  margin-bottom: 16px;
}

/* Figma: ボタン w 139px, h 46px, border-radius 4px */
.service-btn {
  width: 139px;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0;
}

/* ============================================
   選べる車種 SECTION - 轮播
   ============================================ */
.cars {
  padding: 80px 0 100px;
  background-color: #fff;
}

.cars-carousel {
  position: relative;
  padding: 0 56px;
}

.cars-swiper .swiper-slide {
  height: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

/* Swiper 按钮样式覆盖 */
.cars-swiper .cars-swiper-prev,
.cars-swiper .cars-swiper-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.cars-swiper .cars-swiper-prev::after,
.cars-swiper .cars-swiper-next::after {
  font-size: 20px;
}

.cars-swiper .cars-swiper-prev:hover,
.cars-swiper .cars-swiper-next:hover {
  background: #ff3600;
  color: #fff;
  -webkit-box-shadow: 0 4px 20px rgba(255, 54, 0, 0.35);
  box-shadow: 0 4px 20px rgba(255, 54, 0, 0.35);
}

.cars-swiper .swiper-button-disabled {
  opacity: 0.4;
}

/* Swiper 分页点样式 */
.cars-swiper .cars-swiper-pagination {
  position: relative;
  margin-top: 24px;
}

.cars-swiper .cars-swiper-pagination .swiper-pagination-bullet {
  background: #d1d5db;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.cars-swiper .cars-swiper-pagination .swiper-pagination-bullet-active {
  background: #ff3600;
  width: 24px;
  border-radius: 4px;
}

/* Figma: 单个车卡 */
.cars-swiper .car-card {
  width: 100%;
  max-width: 260px;
}

.car-card {
  -webkit-flex: 0 0 220px;
  flex: 0 0 220px;
  min-width: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Figma: 车辆图片容器 h 166px */
.car-img-wrap {
  width: 251px;
  height: 166px;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 8px;
}

.car-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Figma: 车名 SemiBold 20px #212121, top 124px */
.car-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1.25rem; /* 20px */
  color: #212121;
  line-height: 1.5;
  margin-bottom: 4px;
}

/* Figma: 车型 Roboto Medium 18px #7f7f7f */
.car-model {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1.125rem; /* 18px */
  color: #7f7f7f;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Figma: 座位/行李 图标+数字 */
.car-specs {
  display: -webkit-flex;
  display: flex;
  gap: 32px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.car-spec {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 6px;
}

/* Figma: 小图标 24×24px */
.spec-icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Figma: 数字 Regular 20px #333 */
.spec-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.25rem; /* 20px */
  color: #333;
  line-height: 1.12;
}


/* ============================================
   選ばれる理由 SECTION
   ============================================ */
.reasons {
  padding: 80px 0 100px;
  background-color: #fff8f6;
}

.reasons-flow {
  display: flex;
  flex-wrap: wrap;
  /* display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 8px; */
}

/* カード間の曲線矢印 */
.reason-arrow {
  -webkit-flex: 0 0 48px;
  flex: 0 0 48px;
  width: 48px;
  height: 24px;
  color: #ffc4b8;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.reason-arrow svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1100px) {
  .reason-arrow {
    display: none;
  }
}

.reason-card {
  width: 25%;
  padding: 0 30px;
  position: relative;
  /* -webkit-flex: 0 0 240px;
  flex: 0 0 240px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center; */
  /* text-align: center; */
}
.reason-card:nth-child(even){
  margin-top: 45px;
}
.reason-card::after{
  content: '';
  width: 90px;
  height: 100%;
  background-image: url(../img/bg_1.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  right: -45px;
  top: 0;
}
.reason-card:nth-child(even)::after{
  background-image: url(../img/bg_2.png);
}
.reason-card:nth-child(4n)::after{
  display: none;
}
/* 圆形图标容器: 白底 + 阴影 */
.reason-icon-wrap {
  width: 120px;
  height: 120px;
  background-color: #fff;
  margin: auto;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 24px;
}

.reason-icon {
  width: 68px;
  height: 68px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Figma: 理由标题 SemiBold 24px #0a0a0a, line-height 30.67px */
.reason-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1.5rem; /* 24px */
  color: #0a0a0a;
  line-height: 1.28;
  margin-bottom: 20px;
  text-align: center;
}

/* Figma: 理由描述 Regular 14px #4b4b4b, line-height 28px */
.reason-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #4b4b4b;
  line-height: 1.9;
  max-width: 260px;
}

/* ============================================
   CTA BANNER
   Figma: h 370px, overlay rgba(0,0,0,0.2), 深色背景
   ============================================ */
.cta-banner {
  position: relative;
  min-height: 370px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Figma: CTA 遮罩 rgba(0,0,0,0.2) */
.cta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Figma: CTA 大标题 SemiBold 34px #fbfbfd, tracking 0.15px, line-height 48px */
.cta-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2.125rem); /* Figma: 34px */
  color: #fbfbfd;
  line-height: 1.41; /* Figma: 48px */
  letter-spacing: 0.15px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Figma: CTA 副文 Bold 15px #fbfbfd, line-height 32px */
.cta-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem; /* 15px */
  color: #fbfbfd;
  line-height: 2.13; /* Figma: 32px */
  letter-spacing: 0.15px;
}

/* ============================================
   予約ステップ SECTION
   Figma: bg #f9f9f9 (implicit, step cards bg #f9f9f9)
   ============================================ */
.steps {
  padding: 80px 0 100px;
  background-color: #fff;
}

/* Figma: 3列步骤卡片 */
.steps-grid {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Figma: 步骤卡片 bg #f9f9f9, border-radius 8px, shadow rgba(82,63,105,0.05) */
.step-card {
  -webkit-flex: 0 0 calc(33.333% - 16px);
  flex: 0 0 calc(33.333% - 16px);
  max-width: 416px;
  background-color: #f9f9f9;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(82, 63, 105, 0.05);
  box-shadow: 0px 0px 13px 0px rgba(82, 63, 105, 0.05);
  padding: 24px 24px 32px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}

/* Figma: step header bg #ff3600, h 81px, w 368px, border-radius 10px */
.step-header {
  width: 100%;
  height: 81px;
  background-color: #ff3600;
  border-radius: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* Figma: step 编号文字 Bold 28px white */
.step-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.75rem; /* 28px */
  color: #fff;
  line-height: 1.5;
}

/* Figma: step 标题 Bold 24px #2f2f2f */
.step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  color: #2f2f2f;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Figma: step 描述 Regular 15px #212529, line-height 22.5px */
.step-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem; /* 15px */
  color: #212529;
  line-height: 1.5; /* Figma: 22.5px */
  max-width: 262px;
  text-align: center;
}

/* ============================================
   新着情報 SECTION
   Figma: bg #f9f9f9, h 928px
   ============================================ */
.news {
  padding: 80px 0 100px;
  background-color: #f9f9f9;
}

/* Figma: 3列新闻卡片 */
.news-grid {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Figma: 新闻卡片 bg white, border-radius 10px, shadow, w 416px, h 561px */
.news-card {
  -webkit-flex: 0 0 calc(33.333% - 16px);
  flex: 0 0 calc(33.333% - 16px);
  max-width: 416px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(82, 63, 105, 0.05);
  box-shadow: 0px 0px 13px 0px rgba(82, 63, 105, 0.05);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

/* Figma: 卡片图片 h 284.77px */
.news-card-img-link {
  display: block;
  height: 285px;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.news-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.news-card-body {
  padding: 21px;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

/* Figma: 日期行 */
.news-meta {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
}

.news-date-icon {
  width: 15px;
}

/* Figma: 日期 Open Sans Regular 14px #757575 */
.news-date {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 0.875rem; /* 14px */
  color: #757575;
  line-height: 1.5;
}

/* Figma: 新闻标题 Bold 20px #201f1d, line-height 30px */
.news-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.25rem; /* 20px */
  color: #201f1d;
  line-height: 1.5; /* Figma: 30px */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Figma: 新闻摘要 Regular 16px #676767, line-height 24px */
.news-card-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1rem; /* 16px */
  color: #676767;
  line-height: 1.5; /* Figma: 24px */
  -webkit-flex: 1;
  flex: 1;
}

/* Figma: 详情按钮 bg #ff3600, border 1px #ff3600, h 50px, w 139px, border-radius 6px */
.btn-news {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 6px;
  background-color: #ff3600;
  border: 1px solid #ff3600;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  height: 50px;
  padding: 0 16px;
  border-radius: 6px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  white-space: nowrap;
}

.btn-news:hover {
  background-color: #e03000;
}

.btn-arrow {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* 回顶部按钮 */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.scroll-top-btn img {
  width: 48px;
  height: 48px;
}

/* ============================================
   FOOTER
   Figma: bg #1a1a1a, h 482px
   ============================================ */
.site-footer {
  background-color: #1a1a1a;
}

.footer-inner {
  padding-top: 0;
  padding-bottom: 0;
}

/* フッタートップ: Logo + ナビゲーション */
.footer-top {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 40px 0 24px;
}

/* Figma: Footer Logo Times Regular 36px white */
.footer-logo {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 2.25rem; /* 36px */
  color: #fff;
  line-height: 1;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

/* Figma: Footer nav Bold 15px, gap 48px */
.footer-nav-list {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 3rem;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.footer-nav-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem; /* 15px */
  color: #fff;
  line-height: 1.67;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-nav-link.active,
.footer-nav-link:hover {
  color: #ff3600;
}

/* Figma: 分割线 border-top #606060 */
.footer-separator {
  border: none;
  border-top: 1px solid #606060;
  margin: 0;
}

/* フッター本文: 四列 */
.footer-body {
  display: -webkit-flex;
  display: flex;
  gap: 48px 60px;
  padding: 40px 0 48px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.footer-col {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 140px;
}

/* 連絡先列: 无橙色下划线 */
.footer-col-contact .footer-col-accent {
  display: none;
}

.footer-col-contact .footer-contact-text {
  color: #ff3600;
}

.footer-col-contact .footer-contact-icon {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(2000%) hue-rotate(350deg) brightness(98%) contrast(108%);
}

/* 右列: 決済・著作権・法務 */
.footer-col-right {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 16px;
}

/* Figma: 列标题 Bold 20px white */
.footer-col-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.25rem; /* 20px */
  color: #fff;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Figma: 列标题下红色装饰线 w 27px bg #ff3600 */
.footer-col-accent {
  width: 27px;
  height: 2px;
  background-color: #ff3600;
  margin-bottom: 16px;
}

/* Figma: 列链接 Bold 15px #cbcbcb, gap 20px */
.footer-col-links {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.footer-col-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1.5;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-col-link:hover {
  color: #ff3600;
}

/* Figma: 联系方式行 */
.footer-contact-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

/* Figma: 联系方式文字 SemiBold 18px white */
.footer-contact-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1.125rem; /* 18px */
  color: #fff;
  line-height: 1.5;
}

.footer-copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.5;
}

.footer-legal-links {
  display: -webkit-flex;
  display: flex;
  gap: 1.8125rem; /* 29px */
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-bottom: 40px;
}

.footer-legal-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-legal-link:hover {
  color: #ff3600;
}

/* 支付图标: 深色底, 白图标 */
.footer-payments {
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  -webkit-align-items: center;
  align-items: center;
}

.payment-icon {
  background-color: #fff;
  border-radius: 6px;
  width: 44px;
  height: 28px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}

.footer-col-right .payment-icon img {
  max-width: 32px;
  max-height: 22px;
  -o-object-fit: contain;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}

/* ============================================
   RESPONSIVE - 移动优先断点
   ============================================ */

/* ===== 平板 ≤ 1200px ===== */
@media (max-width: 1200px) {
  .container-wide {
    padding: 0 40px;
  }

  .nav-list {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.875rem;
  }

  .booking-form-wrap {
    width: 400px;
    left: 40px;
  }

  .about-img-main {
    width: 360px;
    height: 480px;
  }

  .about-img-sub {
    width: 240px;
    height: 300px;
  }

  .about-images {
    height: 540px;
  }

  .hero-qr {
    right: 40px;
    bottom: 40px;
  }

  .hero-qr-img {
    width: 120px;
    height: 120px;
  }

  .service-card {
    -webkit-flex: 0 0 calc(100% - 0px);
    flex: 0 0 calc(100% - 0px);
  }

  .step-card {
    -webkit-flex: 0 0 calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }

  .news-card {
    -webkit-flex: 0 0 calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }

  .footer-body {
    gap: 40px;
  }
}

/* ===== 中等屏幕 ≤ 900px ===== */
@media (max-width: 900px) {
  .container-wide {
    padding: 0 24px;
  }

  /* 隐藏导航 + 登录按钮，显示汉堡 */
  .header-nav,
  .btn-login {
    display: none;
  }

  .header-inner {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .nav-toggle {
    display: -webkit-flex;
    display: flex;
  }

  /* 移动端导航展开 */
  .header-nav.open {
    display: -webkit-flex;
    display: flex;
    position: fixed;
    /* top: 85px; */
    top: 60px;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
    padding: 24px;
    -webkit-box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  .header-nav.open .nav-list {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }

  .header-nav.open .nav-link {
    font-size: 1rem;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  /* Hero 区域 */
  .hero {
    min-height: 500px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-content {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
  }

  .hero-text-block {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .hero-title {
    white-space: normal;
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  /* 隐藏 QR 码在小屏 */
  .hero-qr {
    display: none;
  }

  /* 预约表单调整为底部全宽 */
  .booking-form-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    /* max-width: 480px; */
    max-width: 100%;
    margin: 0 auto;
  }
  .booking-form{
    max-height: auto;
  }
  /* 乘客弹窗响应式：左右栏改为上下堆叠 */
  .passenger-popup-columns {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .passenger-col-left {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding-right: 0;
    padding-bottom: 16px;
  }

  .passenger-col-right {
    padding-top: 16px;
  }

  .form-passenger-popup {
    min-width: 100%;
  }

  .hero-content {
    -webkit-padding-after: 0;
    padding-bottom: 0;
  }

  .hero {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
  }

  /* About */
  .about-inner {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .about-text {
    -webkit-flex: none;
    flex: none;
    max-width: 100%;
  }

  .about-images {
    width: 100%;
    height: 380px;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-img-main {
    width: 260px;
    height: 340px;
    right: 0;
  }

  .about-img-sub {
    width: 180px;
    height: 240px;
    left: 0;
    bottom: 0;
  }

  /* 步骤卡片 */
  .step-card {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* 新闻卡片 */
  .news-card {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Footer */
  .footer-top {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }

  .footer-nav-list {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .footer-body {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }

  .footer-col-right {
    margin-left: 0;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }

  .footer-legal-links {
    gap: 1rem;
  }
  .reason-card::after{
    display: none;
  }

}

/* ===== 手机 ≤ 600px ===== */
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  .container-wide {
    padding: 0 16px;
  }

  .site-header {
    height: 60px;
  }

  .header-logo {
    font-size: 1.75rem;
  }

  .hero {
    margin-top: 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    white-space: normal;
  }

  .about {
    padding: 60px 0;
  }

  /* about-images 手机端：取消重叠，改为上下排列 */
  .about-images {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: auto;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-img-main {
    position: relative;
    right: auto;
    top: auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .about-img-sub {
    position: relative;
    left: auto;
    bottom: auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .services {
    padding: 60px 0;
  }

  .service-card {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .service-card-img {
    -webkit-flex: none;
    flex: none;
    width: 100%;
    height: 200px;
  }

  .service-card-body {
    padding: 24px;
  }

  .cars {
    padding: 60px 0;
  }

  .cars-carousel {
    padding: 0 44px;
  }

  .cars-swiper .cars-swiper-prev,
  .cars-swiper .cars-swiper-next {
    width: 40px;
    height: 40px;
  }

  .cars-swiper .cars-swiper-prev::after,
  .cars-swiper .cars-swiper-next::after {
    font-size: 18px;
  }

  .car-img-wrap {
    width: 100%;
    max-width: 200px;
    height: 130px;
  }

  .car-name {
    font-size: 0.9rem;
  }

  .car-model {
    font-size: 0.875rem;
  }

  .reasons {
    padding: 60px 0;
  }

  .reasons-flow {
    gap: 24px;
  }

  .reason-card {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-desc {
    font-size: 0.875rem;
  }

  .steps {
    padding: 60px 0;
  }

  .step-card {
    padding: 20px 16px 24px;
  }

  .step-header {
    height: 64px;
  }

  .news {
    padding: 60px 0;
  }

  .news-card-img-link {
    height: 200px;
  }

  .footer-nav-list {
    gap: 1rem;
  }

  .footer-nav-link {
    font-size: 0.875rem;
  }

  .footer-payments {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
  }

  .scroll-top-btn {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .scroll-top-btn img {
    width: 40px;
    height: 40px;
  }
}

/* ===== 超小屏幕 ≤ 375px ===== */
@media (max-width: 375px) {
  .cars-carousel {
    padding: 0 36px;
  }

  .cars-swiper .cars-swiper-prev,
  .cars-swiper .cars-swiper-next {
    width: 36px;
    height: 36px;
  }

  .cars-swiper .cars-swiper-prev::after,
  .cars-swiper .cars-swiper-next::after {
    font-size: 16px;
  }

  .booking-tabs {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .booking-tab {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .booking-tab:first-child {
    border-radius: 8px 8px 0 0;
  }

  .booking-tab.active {
    border-radius: 0;
  }

  /* about-images 超小屏：进一步缩小 */
  .about-images {
    max-width: 280px;
    gap: 20px;
  }

  .about-img-main {
    width: 180px;
    height: 180px;
  }

  .about-img-sub {
    width: 150px;
    height: 150px;
  }
}

/* ============================================
   告知弹窗
   ============================================ */
.alert-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.2s, opacity 0.2s;
  transition: visibility 0.2s, opacity 0.2s;
}

.alert-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.alert-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.alert-modal-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.alert-modal-header {
  background-color: #ff3600;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  padding: 16px;
}

.alert-modal-body {
  padding: 24px;
  text-align: center;
}

.alert-modal-body p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 8px;
}

.alert-modal-body p:last-child {
  margin-bottom: 0;
}

.alert-modal-btn {
  display: block;
  width: calc(100% - 48px);
  margin: 0 24px 24px;
  padding: 12px 24px;
  background: #ff3600;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.alert-modal-btn:hover {
  background: #e03000;
}

/* ============================================
   打印/可访问性 改善
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== 聚焦样式（无障碍） ===== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #ff3600;
  outline-offset: 2px;
}
