/* ===================================
   TS Limo - Main Stylesheet
   =================================== */

/* ===================================
   1. CSS Variables & Reset
   =================================== */

:root {
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;

  /* Brand: Gold */
  --gold-primary: #9b804a;
  --gold-light: #c4aa6f;
  --gold-dark: #7a6438;

  /* Brand: Green */
  --green-dark: #132a1f;
  --green-base: #1a3829;
  --green-light: #2d5940;

  /* Neutral */
  --white: #ffffff;
  --off-white: #f8f8f8;
  --cream: #f2ede3;
  --black: #000000;
  --gray-100: #f0f0f0;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;

  /* Accent (functional) */
  --red-error: #dc3545;
  --cancel-free: #1a7a3c;
  --cancel-warn: #c05000;
  --cancel-danger: #b00020;

  /* Typography */
  --font-en-serif: 'Playfair Display', serif;
  --font-en-sans: 'Libre Franklin', sans-serif;
  --font-ja-serif: 'Noto Serif JP', serif;
  --font-ja-sans: 'Noto Sans JP', sans-serif;

  /* Spacing */
  --container-width: min(1200px, 92vw);
  --section-padding: 80px 0;
  --section-padding-mobile: 50px 0;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;
  --radius-round: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-Index */
  --z-header: 1000;
  --z-dropdown: 1010;
  --z-modal: 1020;
  --z-overlay: 1030;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ja-sans);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-base);
}

/* ===================================
   2. Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-ja-serif);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }

main p,
.section p,
.section li,
.section dd,
.section dt,
.card p,
[class*="card"] p,
main [class*="text"],
main [class*="desc"],
.section [class*="text"],
.section [class*="desc"] {
  font-family: var(--font-ja-sans);
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

.feature-title,
.feature-box-title,
.info-card-title,
.service-title,
.spec-card-title,
.business-card-title,
.contact-option-title,
.booking-option-title,
.biz-feature-title,
.biz-intro-title,
.payment-card-title,
.option-card-title,
.faq-section-title {
  font-family: var(--font-ja-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.01em;
}

table th,
.company-info-tbl th,
.spec-table th,
.pricing-tbl th,
.tokusho-price-table th,
.pricing-header .pricing-cell {
  font-family: var(--font-ja-serif);
  font-size: 0.95rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  font-weight: 700;
}

table td,
.company-info-tbl td,
.spec-table td,
.pricing-tbl td,
.tokusho-price-table td,
.pricing-row .pricing-cell {
  font-family: var(--font-ja-sans);
  font-size: 0.95rem;
  line-height: 1.75;
}

main .btn,
section .btn,
.card .btn,
[class*="card"] .btn {
  font-family: var(--font-ja-sans);
  font-size: 0.95rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.title-en {
  font-family: var(--font-en-serif);
  display: block;
  font-size: 0.6em;
  font-weight: 400;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.title-ja {
  display: block;
}

/* ===================================
   3. Layout
   =================================== */

.container {
  width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.bg-dark {
  background-color: var(--green-dark);
  color: var(--white);
}

.bg-dark .section-title,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--cream);
}

.bg-dark .section-subtitle,
.bg-dark p {
  color: var(--gray-300);
}

.bg-light {
  background-color: var(--gray-100);
}

/* ===================================
   4. Buttons
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-ja-sans);
  text-align: center;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn i { font-size: 1.1em; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
}

.btn-secondary {
  background-color: var(--green-base);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--gold-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}

/* ===================================
   5. Header / Navigation
   =================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(19, 42, 31, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  z-index: var(--z-header);
  transition: var(--transition-base);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 2rem;
}

.header-logo { flex-shrink: 0; }

.logo-img {
  height: 50px;
  width: auto;
}

.nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-ja-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.nav-link i {
  font-size: 1.1em;
  color: var(--gold-light);
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

.nav-link.active {
  background-color: rgba(155, 128, 74, 0.2);
  color: var(--gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-ja-sans);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.btn-header span { display: inline; }

/* Desktop Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-arrow {
  font-size: 0.6em;
  margin-left: 0.2rem;
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--green-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: var(--z-dropdown);
  list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu--wide { min-width: 260px; }

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  background: rgba(155, 128, 74, 0.2);
  color: var(--gold-light);
}

.nav-dropdown-menu li a.active {
  color: var(--gold-light);
  background: rgba(155, 128, 74, 0.12);
}

.nav-dropdown-menu li a i {
  width: 18px;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.8rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-dropdown-menu li a:hover i { opacity: 1; }

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.4rem 0.75rem;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

@media (max-width: 1024px) {
  .nav-dropdown-menu { display: none !important; }
  .nav-dropdown-arrow { display: none; }
}

/* Language Button */
.btn-language {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: var(--cream);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-family: var(--font-ja-sans);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.btn-language:hover {
  background-color: rgba(155, 128, 74, 0.2);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-language i { color: var(--gold-light); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  background-color: transparent;
  cursor: pointer;
  border: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background-color: var(--cream);
  transition: var(--transition-base);
}

/* ===================================
   6. Top Hero Section (index page)
   =================================== */

.top-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
}

.top-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.top-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.top-hero-slide.is-active { opacity: 1; }

.top-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10, 26, 18, 0.65) 0%, rgba(10, 26, 18, 0.45) 50%, rgba(10, 26, 18, 0.75) 100%);
}

.top-hero-body {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 0 1.25rem;
  width: 100%;
  max-width: 860px;
}

.top-hero-label {
  display: block;
  font-family: var(--font-en-serif);
  font-size: clamp(1.15rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  text-align: center;
}

.top-hero-catch {
  font-family: var(--font-ja-serif);
  font-weight: 700;
  line-height: 1.8;
  color: var(--white);
  margin: 0 0 1.4rem;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
  text-align: center;
}

.top-hero-catch span {
  display: block;
  font-size: clamp(1.05rem, 2.4vw, 1.75rem);
}

.top-hero-sub {
  font-family: var(--font-ja-sans);
  font-size: clamp(0.875rem, 1.8vw, 1.1rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2.2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.top-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.top-hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}

.top-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}

.top-hero-dot.is-active {
  background: var(--gold-primary);
  width: 28px;
}

.top-hero-dot:hover { background: var(--gold-light); }

@media (max-width: 767px) {
  .top-hero { min-height: 600px; padding-top: 64px; }
  .top-hero-label { font-size: clamp(0.9rem, 4vw, 1.25rem); margin-bottom: 0.9rem; }
  .top-hero-catch { line-height: 1.8; margin-bottom: 1rem; }
  .top-hero-catch span { font-size: clamp(0.95rem, 4vw, 1.2rem); }
  .top-hero-sub { font-size: 0.85rem; margin-bottom: 1.8rem; }
  .top-hero-btns { flex-direction: column; align-items: center; }
  .top-hero-btns .btn { width: min(320px, 90vw); justify-content: center; }
}

/* ===================================
   7. Features Section
   =================================== */

.features { background-color: var(--gray-100); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.features-grid--narrow {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.features-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ===================================
   7-1. Card Base (shared properties)
   =================================== */

.feature-card,
.feature-box,
.info-card,
.recruit-point-card,
.business-card,
.page-option-card,
.biz-feature-card,
.optional-service-card,
.route-card,
.faq-item,
.recruit-position-card,
.topic-item,
.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.feature-card:hover,
.feature-box:hover,
.info-card:hover,
.recruit-point-card:hover,
.business-card:hover,
.page-option-card:hover,
.biz-feature-card:hover,
.optional-service-card:hover,
.route-card:hover,
.faq-item:hover,
.recruit-position-card:hover,
.topic-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   7-2. Feature Card / Feature Box
   =================================== */

.feature-card {
  padding: 2.5rem 2rem;
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.feature-text {
  color: var(--gray-700);
  line-height: 1.7;
}

.feature-box {
  padding: 2.5rem 2rem;
  text-align: center;
}

.feature-box-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green-base));
  border-radius: var(--radius-round);
  font-size: 2rem;
  color: var(--gold-light);
}

.feature-box-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.feature-box-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.feature-box--compact {
  padding: 1.5rem;
  text-align: center;
}

.feature-box--compact .feature-box-icon {
  width: 60px;
  height: 60px;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.feature-box--compact .feature-box-title {
  font-size: 1rem;
}

.feature-box--compact .feature-box-text {
  font-size: 0.85rem;
}

/* ===================================
   8. Services Overview Section
   =================================== */

.services-overview { background-color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.services-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-featured { box-shadow: var(--shadow-lg); }

.service-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.service-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img { transform: scale(1.1); }

.service-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(19, 42, 31, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-base);
}

.service-card:hover .service-overlay { opacity: 1; }

.service-content { padding: 2rem; }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.service-text {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-weight: 600;
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--gold-dark);
  gap: 0.75rem;
}
/* ===================================
   9. Vehicles Preview Section
   =================================== */

.vehicles-preview { padding: 5rem 0; }

.vehicles-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.vehicle-simple-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
  text-align: center;
}

.vehicle-simple-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 40px rgba(155, 128, 74, 0.3);
}

.vehicle-simple-image {
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1rem;
}

.vehicle-simple-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.vehicle-simple-card:hover .vehicle-simple-image img { transform: scale(1.05); }

.vehicle-simple-info { padding: 2rem 1.5rem; }

.vehicle-simple-name {
  font-family: var(--font-en-serif);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.vehicle-simple-name-ja {
  font-size: 1.125rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.vehicle-simple-desc {
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ===================================
   9-2. Topics / News Section
   =================================== */

.topics-section { background-color: var(--gray-100); }

.topics-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.topic-item {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.topic-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--white);
  text-align: center;
}

.topic-day {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.topic-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.topic-content { flex: 1; }

.topic-title {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
}

.topic-title a {
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.topic-title a:hover { color: var(--gold-primary); }

.topic-title i { font-size: 0.85em; opacity: 0.6; }

/* ===================================
   10. CTA Section
   =================================== */

.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green-base));
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-ja-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.cta-text {
  font-family: var(--font-ja-sans);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  color: var(--gray-300);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-actions .btn {
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 767px) {
  .cta-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

/* ===================================
   11. Footer
   =================================== */

.footer {
  background-color: var(--green-dark);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  width: auto;
  height: 160px;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: var(--font-ja-serif);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-text {
  font-family: var(--font-ja-sans);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact p {
  font-family: var(--font-ja-sans);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.footer-contact i { color: var(--gold-primary); font-size: 1.1em; }

.footer-contact a {
  color: var(--gray-300);
  transition: var(--transition-fast);
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-heading {
  font-family: var(--font-ja-serif);
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-family: var(--font-ja-sans);
  font-size: 0.95rem;
  color: var(--gray-300);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright,
.footer-license {
  font-family: var(--font-ja-sans);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer-license {
  color: var(--gold-light);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===================================
   12. Back to Top Button
   =================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(155, 128, 74, 0.4);
}

/* ===================================
   13. Responsive Design
   =================================== */

@media (max-width: 1024px) {
  .nav-list { gap: 0.25rem; }
  .nav-link span { display: none; }
  .nav-link { padding: 0.75rem; }
}

/* ===================================
   14. Mobile Drawer Navigation
   =================================== */

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: calc(var(--z-header) + 5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active { display: block; opacity: 1; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 340px);
  height: 100vh;
  height: 100dvh;
  background: var(--green-dark);
  z-index: calc(var(--z-header) + 10);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.35);
  -webkit-transform: translateX(100%);
  will-change: transform;
}

.mobile-drawer.active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.drawer-logo img { height: 44px; width: auto; }

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.drawer-close:hover { background: rgba(255, 255, 255, 0.18); }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(155, 128, 74, 0.4) transparent;
}

.drawer-body::-webkit-scrollbar { width: 4px; }
.drawer-body::-webkit-scrollbar-track { background: transparent; }
.drawer-body::-webkit-scrollbar-thumb { background: rgba(155, 128, 74, 0.4); border-radius: 2px; }

.drawer-nav-list { list-style: none; padding: 0; margin: 0; }

.drawer-nav-item { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.5rem;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.drawer-nav-link i.link-icon {
  width: 20px;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
  background: rgba(155, 128, 74, 0.15);
  color: var(--gold-light);
}

.drawer-nav-link.active {
  border-left: 3px solid var(--gold-primary);
  padding-left: calc(1.5rem - 3px);
}

.drawer-accordion-trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}

.drawer-accordion-trigger i.link-icon {
  width: 20px;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.drawer-accordion-trigger:hover {
  background: rgba(155, 128, 74, 0.15);
  color: var(--gold-light);
}

.drawer-accordion-trigger .accordion-arrow {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.drawer-accordion-trigger.open .accordion-arrow { transform: rotate(180deg); }

.drawer-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-sub-list.open { max-height: 600px; }

.drawer-sub-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem 0.85rem 2.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-left: 2px solid transparent;
}

.drawer-sub-link i {
  color: var(--gold-light);
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.drawer-sub-link:hover {
  background: rgba(155, 128, 74, 0.1);
  color: var(--gold-light);
  border-left-color: var(--gold-primary);
}

.drawer-cta {
  padding: 0.65rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
}

.drawer-cta-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.drawer-cta-reserve:hover { opacity: 0.9; transform: translateY(-1px); }

.drawer-cta-english {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-size: 0.8rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}

.drawer-cta-english:hover { background: rgba(255, 255, 255, 0.15); }
.drawer-cta-english i { color: var(--gold-light); }

@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none; }
}

@media (max-width: 1024px) {
  .nav { display: none; }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

  .header-actions .btn-language,
  .header-actions .btn-secondary.btn-header { display: none; }
  .header-actions .btn-primary.btn-header span { display: none; }
  .header-actions .btn-primary.btn-header { padding: 0.65rem 0.9rem; }
  .header-actions { gap: 0.5rem; }

  .section { padding: var(--section-padding-mobile); }
  .section-header { margin-bottom: 2rem; }

  .features-grid,
  .services-grid,
  .services-featured-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-logo { height: 100px; }

  .topic-item { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .topic-date { width: 70px; height: 70px; }
  .topic-day { font-size: 1.5rem; }
  .topic-content { text-align: center; }

  .vehicles-simple-grid { grid-template-columns: 1fr; }

  .back-to-top { bottom: 1rem; right: 1rem; width: 45px; height: 45px; }
}

@media (max-width: 480px) {
  .logo-img { height: 40px; }
  .btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
  .service-image { height: 200px; }
  .vehicle-simple-image { height: 240px; padding: 0.75rem; }
  .topic-date { width: 60px; height: 60px; }
  .topic-day { font-size: 1.25rem; }
  .topic-month { font-size: 0.7rem; }
  .footer-logo { height: 80px; }
}

/* ===================================
   15. Animations
   =================================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.fade-in { animation: fadeIn 0.6s ease forwards; }

/* ===================================
   16. Utility Classes
   =================================== */

.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.text-white { color: var(--white); }

.text-link-accent { color: var(--gold-primary); font-weight: 600; }
.text-link-accent-strong { color: var(--gold-dark); font-weight: 700; }
.text-link-accent:hover,
.text-link-accent-strong:hover { text-decoration: underline; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 3rem; }
.pt-0 { padding-top: 0; }
.pt-2 { padding-top: 1rem; }
.pb-0 { padding-bottom: 0; }

.hidden { display: none; }

.mobile-only { display: none; }
@media (max-width: 767px) { .mobile-only { display: inline; } }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.content-narrow {
  display: block;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid--4col {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.features-grid--4col-narrow {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.optional-services-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .optional-services-grid--2col {
    grid-template-columns: 1fr;
  }
}

.icon-gold {
  color: var(--gold-primary);
  margin-right: 0.5rem;
}

.icon-gold-light {
  color: var(--gold-light);
  margin-right: 0.5rem;
}

.section-title--sm {
  font-size: 1.4rem;
}

.section-title--md {
  font-size: 1.4rem;
}

/* ===================================
   17. Page Hero Section (sub-pages)
   =================================== */

.page-hero,
.page-hero--compact {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 18, 0.65) 0%, rgba(10, 26, 18, 0.45) 50%, rgba(10, 26, 18, 0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.25rem;
  width: 100%;
  max-width: 860px;
}

.service-hero-badge {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: var(--radius-round);
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-title { margin-bottom: 0.75rem; color: var(--cream); }

.page-hero-title .title-en {
  display: block;
  font-family: var(--font-en-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.page-hero-title .title-ja {
  display: block;
  font-family: var(--font-ja-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
  font-family: var(--font-ja-sans);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb a { color: var(--gold-light); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.4); font-size: 0.75em; }
.breadcrumb span:last-child { color: rgba(255, 255, 255, 0.85); }

@media (max-width: 767px) {
  .page-hero, .page-hero--compact { min-height: 600px; padding-top: 64px; }
  .page-hero-content { padding: 0 1rem; }
  .service-hero-badge { width: 54px; height: 54px; font-size: 1.35rem; margin-bottom: 0.9rem; }
  .page-hero-title .title-en { font-size: clamp(1.5rem, 7vw, 2.25rem); }
  .page-hero-title .title-ja { font-size: clamp(0.95rem, 4vw, 1.25rem); }
  .page-hero-subtitle { font-size: 0.9rem; margin-bottom: 1.25rem; }
  .breadcrumb { font-size: 0.8rem; padding: 0.5rem 1rem; }
}

/* ===================================
   18. Services List Page Styles
   =================================== */

.services-list { padding: 5rem 0; }

.service-detailed { display: flex; flex-direction: column; }

.service-detailed .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-title-en {
  font-family: var(--font-en-sans);
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 400;
  margin-top: 0.25rem;
}

.service-description {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features { list-style: none; margin-bottom: 1.5rem; }

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.service-features i { color: var(--gold-primary); margin-top: 0.25rem; flex-shrink: 0; }

.service-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.badge-popular { background: linear-gradient(135deg, var(--red-error), #c82333); }
.badge-recommend { background: linear-gradient(135deg, var(--gold-primary), var(--gold-light)); }

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.info-card {
  padding: 2.5rem 2rem;
  text-align: center;
}

.info-card-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: var(--radius-round);
  color: var(--white);
  font-size: 2rem;
}

.info-card-title { font-size: 1.5rem; font-weight: 600; color: var(--green-dark); margin-bottom: 1rem; }

.info-card-text { color: var(--gray-700); line-height: 1.7; margin-bottom: 1.5rem; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
}

@media (max-width: 767px) {
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .info-cards-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===================================
   19. Service Detail Page Styles
   =================================== */

.service-overview { padding: 5rem 0; }

.service-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-intro-content { padding-right: 2rem; }

.intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.service-intro-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-intro-image img { width: 100%; height: auto; display: block; }

.service-features-section { padding: 5rem 0; }

/* Service Flow */
.service-flow-section { padding: 5rem 0; }

.flow-steps {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.flow-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 90px;
  width: 2px;
  height: calc(100% - 2rem);
  background: linear-gradient(180deg, var(--gold-primary), transparent);
}

.flow-step-number {
  flex-shrink: 0;
  width: 70px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: var(--radius-round);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.flow-step-content { flex: 1; padding-top: 0.5rem; }

.flow-step-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.flow-step-title i { color: var(--gold-primary); }

.flow-step-text { font-size: 1rem; line-height: 1.7; color: var(--gray-700); }

/* Route & Pricing */
.route-pricing-section { padding: 5rem 0; }

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}

.pricing-tab {
  padding: 1rem 2.5rem;
  background-color: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition-base);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.pricing-tab:hover { border-color: var(--gold-primary); color: var(--gold-primary); }

.pricing-tab.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-color: var(--gold-primary);
  color: var(--white);
}

.pricing-content { display: none; animation: fadeIn 0.4s ease; }
.pricing-content.active { display: block; }

.pricing-table {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-row:last-child { border-bottom: none; }

.pricing-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: linear-gradient(135deg, var(--green-dark), var(--green-base));
  color: var(--white);
  font-weight: 600;
}

.pricing-cell { padding: 1.25rem 1.5rem; text-align: left; }
.pricing-header .pricing-cell { text-align: center; }
.pricing-header .pricing-cell:first-child { text-align: left; }

.pricing-row:not(.pricing-header) .pricing-cell:not(:first-child) {
  text-align: center;
  font-weight: 600;
  color: var(--gold-primary);
  font-size: 1.0625rem;
}

.row-sub { font-size: 0.82rem; color: var(--gray-700); }

.pricing-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.pricing-note p:last-child { margin-bottom: 0; }

.pricing-note i { color: var(--gold-primary); margin-top: 0.25rem; flex-shrink: 0; }

/* Pricing Plan Tabs */
.pricing-plan-lead {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pricing-route-heading {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.pricing-route-heading i {
  color: var(--gold-primary);
  margin-right: 0.4rem;
}

/* Travel Time Section */
.travel-time-section {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.travel-time-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.travel-time-title i { color: var(--gold-primary); font-size: 1.25rem; }

.travel-time-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.travel-time-tab {
  padding: 0.75rem 2rem;
  background-color: var(--gray-100);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 0.95rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.travel-time-tab:hover { border-color: var(--gold-primary); color: var(--gold-primary); }

.travel-time-tab.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-color: var(--gold-primary);
  color: var(--white);
}

.travel-time-content { display: none; }
.travel-time-content.active { display: block; animation: fadeIn 0.4s ease; }

.travel-time-info {
  background-color: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.travel-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-300);
}

.travel-time-row:last-child { border-bottom: none; padding-bottom: 0; }
.travel-time-row:first-child { padding-top: 0; }

.travel-time-label { font-size: 1rem; color: var(--green-dark); font-weight: 500; }

.travel-time-value { font-size: 1.125rem; font-weight: 700; color: var(--gold-primary); }

.travel-time-note {
  font-size: 0.875rem;
  color: var(--gray-700);
  text-align: center;
  padding: 0.75rem;
  background-color: var(--gray-100);
  border-radius: var(--radius-sm);
  margin: 0;
}

/* FAQ Section */
.faq-section { padding: 5rem 0; }

.faq-list {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 1.0625rem;
  transition: var(--transition-base);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.faq-question:hover { background-color: var(--gray-100); }
.faq-question > i:first-child { color: var(--gold-primary); font-size: 1.25rem; flex-shrink: 0; }
.faq-question > span { flex: 1; }

.faq-toggle {
  font-size: 1rem;
  color: var(--gray-700);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
  padding: 0 2rem 1.5rem 4.5rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* Optional Services Section */
.optional-services-section {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.optional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.optional-service-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.optional-service-image {
  height: 220px;
  overflow: hidden;
  background-color: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.optional-service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.optional-service-card:hover .optional-service-image img { transform: scale(1.05); }

.optional-service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.optional-service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.optional-service-icon {
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: var(--radius-round);
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.optional-service-title { font-size: 1.25rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.25rem; }

.optional-service-price { font-size: 1.125rem; font-weight: 700; color: var(--gold-primary); }

.optional-service-text { font-size: 0.95rem; line-height: 1.7; color: var(--gray-700); margin-bottom: 1rem; }

.optional-service-note {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-700);
  padding: 0.75rem 1rem;
  background-color: var(--gray-100);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  margin-top: auto;
}

.optional-service-price-variable { font-size: 1rem; font-weight: 600; color: var(--gold-primary); }

.optional-service-pricing-detail {
  margin-top: auto;
  padding: 1rem;
  background-color: var(--gray-100);
  border-radius: var(--radius-md);
}

.pricing-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.pricing-detail-row:not(:last-child) { border-bottom: 1px solid var(--gray-300); }

.pricing-detail-label { font-weight: 600; color: var(--green-dark); }
.pricing-detail-value { font-weight: 600; color: var(--gold-primary); }

/* Related Services Compact */
.related-services-compact { padding: 3rem 0; }

.section-header-compact { text-align: center; margin-bottom: 2rem; }

.section-title-small { font-size: 1.5rem; font-weight: 600; color: var(--green-dark); }
.section-title-small .title-ja { display: block; }

.related-services-compact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.related-service-compact-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-pill);
  font-weight: 500;
  color: var(--green-dark);
  transition: var(--transition-base);
}

.related-service-compact-card:hover {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.related-service-compact-card i { font-size: 1rem; }

.section-cta-compact { text-align: center; margin-top: 2rem; }

/* Popular Routes */
.popular-routes-section { padding: 5rem 0; }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.routes-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .routes-grid--2col {
    grid-template-columns: 1fr;
  }
}

.route-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.route-image { position: relative; height: 250px; overflow: hidden; }

.route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.route-card:hover .route-image img { transform: scale(1.1); }

.route-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--gold-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.route-duration-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold-primary);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: var(--shadow-sm);
}

.route-content { padding: 2rem; }

.route-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-family: var(--font-ja-serif);
}

.route-description { color: var(--gray-700); line-height: 1.8; margin-bottom: 1.5rem; }

.route-highlights { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  background-color: var(--gray-100);
  color: var(--gold-primary);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
}

.highlight-tag i { font-size: 0.75rem; }

/* Model Course */
.model-course-section { padding: 5rem 0; background-color: var(--gray-100); }

.model-course-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-top: 3rem;
}

.model-course-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-base));
  color: var(--white);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.model-course-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-ja-serif);
  color: var(--white);
}

.model-course-title i { font-size: 1.75rem; color: var(--gold-light); }

.model-course-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 1rem;
}

.model-course-timeline { padding: 2.5rem 2rem; }

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50px;
  top: 60px;
  width: 2px;
  height: calc(100% - 80px);
  background: linear-gradient(to bottom, var(--gold-primary), var(--gold-light));
}

.timeline-time {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-primary);
  font-family: var(--font-en-sans);
  text-align: right;
  padding-top: 0.5rem;
}

.timeline-content { display: flex; gap: 1.5rem; align-items: flex-start; }

.timeline-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.timeline-details { flex: 1; padding-top: 0.5rem; }

.timeline-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-ja-sans);
}

.timeline-description { color: var(--gray-700); line-height: 1.6; font-size: 0.95rem; }

.model-course-note {
  background-color: var(--cream);
  padding: 1.5rem 2rem;
  border-top: 2px solid var(--gold-primary);
}

.model-course-note p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.model-course-note p:last-child { margin-bottom: 0; }
.model-course-note i { color: var(--gold-primary); margin-top: 0.25rem; }

/* Pricing Example */
.pricing-example {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border-radius: var(--radius-lg);
}

.pricing-example-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-example-title i { color: var(--gold-primary); margin-right: 0.5rem; }

.pricing-example-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pricing-example-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
}

.pricing-example-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.pricing-example-header { margin-bottom: 1.5rem; }

.pricing-example-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.pricing-example-vehicle {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--gold-primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-example-calculation { border-top: 2px dashed var(--gray-300); padding-top: 1.5rem; }

.calculation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.calculation-divider { border-top: 2px solid var(--gray-300); margin: 1rem 0; }

.calculation-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  padding-top: 1rem;
}

.pricing-example-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
}

/* Responsive for Service Detail */
@media (max-width: 1024px) {
  .service-intro { grid-template-columns: 1fr; gap: 3rem; }
  .service-intro-content { padding-right: 0; }
  .routes-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 767px) {
  .service-overview { padding: 3rem 0; }
  .flow-steps { gap: 1.5rem; }
  .flow-step { flex-direction: column; gap: 1rem; }
  .flow-step:not(:last-child)::after { left: 35px; top: 90px; height: calc(100% - 2rem); }
  .flow-step-number { width: 60px; height: 60px; font-size: 1.25rem; }
  .pricing-tabs { flex-direction: column; gap: 0.75rem; }
  .pricing-tab { padding: 0.875rem 1.5rem; }
  .optional-services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .related-services-compact-grid { flex-direction: column; align-items: stretch; }
  .related-service-compact-card { justify-content: center; }
  .travel-time-tabs { flex-direction: column; gap: 0.75rem; }
  .travel-time-tab { padding: 0.875rem 1.5rem; }
  .travel-time-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .travel-time-label, .travel-time-value { font-size: 0.95rem; }
  .routes-grid { grid-template-columns: 1fr; }
  .route-image { height: 220px; }
  .route-content { padding: 1.5rem; }
  .route-title { font-size: 1.25rem; }
  .pricing-example-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-example { padding: 1.5rem; }
  .pricing-example-title { font-size: 1.25rem; }
  .pricing-example-card { padding: 1.5rem; }
  .model-course-header { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .model-course-title { font-size: 1.25rem; }
  .model-course-timeline { padding: 2rem 1rem; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 1rem; padding-bottom: 2rem; }
  .timeline-item:not(:last-child)::after { left: 35px; top: 55px; height: calc(100% - 80px); }
  .timeline-time { font-size: 1rem; padding-top: 0.75rem; }
  .timeline-content { flex-direction: column; gap: 1rem; }
  .timeline-icon { width: 40px; height: 40px; font-size: 1rem; }
  .timeline-title { font-size: 1rem; }
  .timeline-description { font-size: 0.9rem; }
  .model-course-note { padding: 1.25rem 1rem; }
}

/* ===================================
   20. Company Page Styles
   =================================== */

.greeting-section { background: var(--green-dark); color: var(--white); }

.greeting-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}

.greeting-title-en {
  font-family: var(--font-en-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.greeting-title-ja {
  font-family: var(--font-ja-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  display: block;
  margin-bottom: 2rem;
}

.greeting-body { font-size: 0.95rem; line-height: 2; color: rgba(255, 255, 255, 0.85); }
.greeting-body p { margin-bottom: 1.2rem; }
.greeting-body p:last-child { margin-bottom: 0; }

.greeting-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.greeting-signature .company { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 0.3rem; }

.greeting-signature .name {
  font-family: var(--font-ja-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.greeting-image-wrap { position: relative; }

.greeting-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  max-height: 480px;
}

.company-info-tbl-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.company-info-tbl { width: 100%; border-collapse: collapse; }
.company-info-tbl tr { border-bottom: 1px solid var(--gray-300); }
.company-info-tbl tr:last-child { border-bottom: none; }

.company-info-tbl th {
  background: var(--gray-100);
  color: var(--green-dark);
  font-family: var(--font-ja-serif);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  text-align: left;
  white-space: nowrap;
  width: 180px;
  vertical-align: top;
}

.company-info-tbl td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-900);
  line-height: 1.7;
}

.company-info-tbl .highlight-cell { font-weight: 600; color: var(--green-dark); }

.business-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.business-card {
  padding: 2rem 1.8rem;
  border-top: 4px solid var(--gold-primary);
  text-align: center;
}

.business-card-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--green-base), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--gold-light);
}

.business-card-title {
  font-family: var(--font-ja-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.business-card-text { font-size: 0.875rem; color: var(--gray-700); line-height: 1.7; }

.mission-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green-base));
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  color: var(--white);
  text-align: center;
}

.mission-box .title-en {
  font-family: var(--font-en-serif);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
}

.mission-box h3 {
  font-family: var(--font-ja-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.mission-box p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

.map-address-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.map-info h3 {
  font-family: var(--font-ja-serif);
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.map-info-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }

.map-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-300);
}

.map-info-list li:last-child { border-bottom: none; }
.map-info-list li i { color: var(--gold-primary); width: 18px; text-align: center; flex-shrink: 0; margin-top: 0.15rem; }
.map-info-list li strong { color: var(--green-dark); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 360px;
}

.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

@media (max-width: 1023px) {
  .greeting-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .greeting-image-wrap img { max-height: 320px; aspect-ratio: 16/9; }
  .greeting-title-ja { font-size: 1.4rem; }
}

@media (max-width: 767px) {
  .greeting-title-en { font-size: 1.1rem; }
  .greeting-title-ja { font-size: 1.2rem; }
  .company-info-tbl th { width: 120px; padding: 0.8rem 1rem; font-size: 0.83rem; }
  .company-info-tbl td { padding: 0.8rem 1rem; font-size: 0.85rem; }
  .map-address-block { grid-template-columns: 1fr; gap: 2rem; }
  .map-embed { height: 280px; }
  .mission-box { padding: 1.8rem 1.5rem; }
}

/* ===================================
   21. Pricing Page Styles
   =================================== */

.dispatch-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.dispatch-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 100px;
}

.dispatch-flow-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  background: var(--green-base);
  flex-shrink: 0;
}

.dispatch-flow-step.billing .dispatch-flow-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.dispatch-flow-label { font-size: 0.78rem; font-weight: 600; color: var(--green-dark); text-align: center; }
.dispatch-flow-label small { display: block; font-weight: 400; color: var(--gray-700); font-size: 0.72rem; margin-top: 0.15rem; }

.dispatch-flow-arrow { font-size: 1.2rem; color: var(--gold-primary); margin: 0 0.3rem; padding-top: 18px; }

.billing-brace-wrapper { text-align: center; margin-top: 0.5rem; }

.billing-brace {
  display: inline-block;
  border-bottom: 3px solid var(--gold-primary);
  border-left: 3px solid var(--gold-primary);
  border-right: 3px solid var(--gold-primary);
  height: 14px;
  width: calc(100% - 4rem);
  max-width: 580px;
}

.billing-brace-label { text-align: center; font-size: 0.8rem; font-weight: 700; color: var(--gold-dark); margin-top: 0.3rem; }

.pricing-plan-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gray-300);
  padding-bottom: 0;
}

.pricing-plan-tab-btn {
  padding: 0.7rem 1.4rem;
  border: none;
  background: transparent;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.pricing-plan-tab-btn:hover { color: var(--green-dark); }
.pricing-plan-tab-btn.active { color: var(--green-dark); border-bottom-color: var(--gold-primary); }

.pricing-plan-panel { display: none; }
.pricing-plan-panel.active { display: block; }

.pricing-tbl-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.pricing-tbl { width: 100%; border-collapse: collapse; min-width: 480px; }

.pricing-tbl thead th {
  background: var(--green-dark);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.pricing-tbl thead th:first-child { text-align: left; }
.pricing-tbl thead th.hl { background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark)); }

.pricing-tbl tbody tr:nth-child(even) { background: var(--gray-100); }
.pricing-tbl tbody tr:nth-child(odd) { background: var(--white); }

.pricing-tbl tbody td {
  padding: 0.85rem 1.2rem;
  font-size: 0.9rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-300);
  color: var(--gray-900);
}

.pricing-tbl tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--green-dark);
}

.pricing-tbl .price-value { font-weight: 700; color: var(--green-dark); font-size: 0.975rem; }

.pricing-note-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }

.pricing-note-list li {
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 0.4rem 0 0.4rem 1.4em;
  position: relative;
  line-height: 1.65;
}

.pricing-note-list li::before {
  content: '\203B';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 0.78rem;
}

.cancel-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.cancel-table { width: 100%; border-collapse: collapse; min-width: 440px; }

.cancel-table thead th {
  background: var(--green-dark);
  color: var(--white);
  padding: 0.85rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.cancel-table tbody tr:nth-child(even) { background: var(--gray-100); }

.cancel-table tbody td {
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-300);
}

.cancel-table tbody td:first-child { text-align: left; font-weight: 600; }

.cancel-table .cancel-free { color: var(--cancel-free); font-weight: 700; }
.cancel-table .cancel-warn { color: var(--cancel-warn); font-weight: 700; }
.cancel-table .cancel-danger { color: var(--cancel-danger); font-weight: 700; }

.fare-system-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border-left: 5px solid var(--gold-primary);
}

.fare-system-box h3,
.fare-system-box-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
}

.fare-system-box-title i,
.fare-system-box h3 i {
  color: var(--gold-primary);
  margin-right: 0.5rem;
}

.fare-system-box p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.8; margin: 0 0 0.6rem; }
.fare-system-box p:last-child { margin-bottom: 0; }
.fare-system-box strong { color: var(--green-dark); }

.request-list { list-style: none; padding: 0; margin: 0; }

.request-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.request-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: bold;
}

@media (max-width: 767px) {
  .dispatch-flow { gap: 0.3rem; }
  .dispatch-flow-step { min-width: 70px; }
  .dispatch-flow-icon { width: 48px; height: 48px; font-size: 1.1rem; }
  .dispatch-flow-arrow { font-size: 0.9rem; margin: 0 0.15rem; padding-top: 14px; }
  .fare-system-box { padding: 1.5rem; }
}

/* ===================================
   22. Airport Page Styles
   =================================== */

.note-small {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.flow-step-note {
  margin-top: 0.8rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 6px 6px 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.flow-step-note i { color: var(--gold-primary); margin-right: 0.4rem; }
.flow-step-note strong { color: var(--green-dark); }

/* ===================================
   23. Scene Card Styles
   =================================== */

.scene-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.scene-card:last-child { margin-bottom: 0; }

.scene-card-image { flex: 0 0 40%; max-width: 40%; }
.scene-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.scene-card-body {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scene-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.scene-card-title i { color: var(--gold-primary); font-size: 1.1rem; }

.scene-card-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.scene-card-highlights { list-style: none; padding: 0; margin: 0; }

.scene-card-highlights li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.scene-card-highlights li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: bold;
}

.scene-card:nth-child(even) { flex-direction: row-reverse; }

@media (max-width: 767px) {
  .scene-card,
  .scene-card:nth-child(even) { flex-direction: column; }
  .scene-card-image { flex: none; max-width: 100%; height: 220px; }
  .scene-card-body { padding: 1.5rem; }
}

/* ===================================
   24. FAQ Page Styles
   =================================== */

.faq-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.faq-category-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition-base);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.faq-category-tab:hover { border-color: var(--gold-primary); color: var(--gold-primary); }

.faq-category-tab.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-color: var(--gold-primary);
  color: var(--white);
}

.faq-category-tab i { font-size: 0.85rem; }

.faq-category-panel { display: none; }
.faq-category-panel.active { display: block; }

.faq-category-heading {
  font-family: var(--font-ja-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.faq-category-heading i { color: var(--gold-primary); font-size: 1.1rem; }

.faq-answer a { color: var(--gold-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.faq-answer a:hover { color: var(--gold-dark); }

@media (max-width: 767px) {
  .faq-category-tabs { gap: 0.4rem; }
  .faq-category-tab { padding: 0.55rem 0.9rem; font-size: 0.78rem; }
  .faq-category-heading { font-size: 1.1rem; }
}
/* ===================================
   25. Vehicles Page Styles
   =================================== */

.vehicle-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vehicle-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.vehicle-tab-btn:hover { border-color: var(--gold-primary); color: var(--gold-light); }

.vehicle-tab-btn.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-color: var(--gold-primary);
  color: var(--white);
}

.vehicle-tab-btn i { font-size: 0.9rem; }

.vehicle-section { display: none; }
.vehicle-section.active { display: block; }

.vehicle-name-badge { text-align: center; margin-bottom: 2.5rem; }
.vehicle-name-badge-inner { display: inline-block; }

.vehicle-name-en {
  display: block;
  font-family: var(--font-en-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.vehicle-name-sub {
  display: block;
  font-family: var(--font-en-serif);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.vehicle-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.vehicle-showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.vehicle-showcase-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.vehicle-showcase-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.vehicle-showcase-item:hover img { transform: scale(1.05); }

.vehicle-showcase-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vehicle-showcase-label i { color: var(--gold-light); }

.vehicle-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.spec-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.spec-card-title {
  font-family: var(--font-ja-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-card-title i { color: var(--gold-primary); }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.spec-table tr:last-child { border-bottom: none; }

.spec-table th {
  text-align: left;
  padding: 0.7rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  width: 120px;
  vertical-align: top;
}

.spec-table td { padding: 0.7rem 0; font-size: 0.95rem; color: var(--cream); }

.spec-highlight { color: var(--gold-light) !important; font-weight: 700; font-size: 1.1rem !important; }

.capacity-visual { display: flex; gap: 0.4rem; }
.capacity-icon { font-size: 1.1rem; color: var(--gold-primary); }
.capacity-icon.ghost { opacity: 0.25; }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox-overlay.open { opacity: 1; visibility: visible; }

.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px; height: 36px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }

.lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* Dark theme route-card (vehicles page) */
.bg-dark .route-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.bg-dark .route-card:hover { border-color: var(--gold-primary); box-shadow: 0 12px 40px rgba(155, 128, 74, 0.2); }
.bg-dark .route-title { color: var(--cream); }
.bg-dark .route-description { color: rgba(255, 255, 255, 0.75); }

@media (max-width: 767px) {
  .vehicle-tabs { flex-direction: column; align-items: center; gap: 0.75rem; }
  .vehicle-tab-btn { width: min(300px, 90vw); justify-content: center; }
  .vehicle-showcase { grid-template-columns: 1fr; }
  .vehicle-showcase-item img { height: 220px; }
  .vehicle-detail-grid { grid-template-columns: 1fr; }
}

/* ===================================
   26. Recruit Page Styles
   =================================== */

.recruit-positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.recruit-position-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.recruit-position-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-base));
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.recruit-position-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-round);
  background: rgba(155, 128, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.recruit-position-name {
  font-family: var(--font-ja-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.recruit-position-body { padding: 2rem; }

.recruit-position-desc { font-size: 0.92rem; line-height: 1.8; color: var(--gray-700); margin-bottom: 1.25rem; }

.recruit-welcome-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.recruit-welcome-title i { color: var(--gold-primary); }

.recruit-welcome-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }

.recruit-welcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.recruit-welcome-list li i { color: var(--gold-primary); font-size: 0.4rem; margin-top: 0.55rem; flex-shrink: 0; }

.recruit-position-meta { border-top: 1px solid var(--gray-200); padding-top: 1rem; }

.recruit-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.recruit-meta-row i { color: var(--gold-primary); width: 16px; text-align: center; flex-shrink: 0; margin-top: 0.15rem; }
.recruit-meta-row strong { color: var(--green-dark); min-width: 60px; flex-shrink: 0; }

.recruit-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.recruit-point-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.recruit-point-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--green-dark), var(--green-base));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin: 0 auto 1rem;
}

.recruit-point-title {
  font-family: var(--font-ja-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.recruit-point-text { font-size: 0.88rem; line-height: 1.7; color: var(--gray-700); }

.recruit-flow-steps {
  max-width: 800px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.recruit-flow-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}

.recruit-flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 64px;
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(180deg, var(--gold-primary), transparent);
}

.recruit-flow-number {
  width: 56px; height: 56px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.recruit-flow-content { flex: 1; padding-top: 0.25rem; }

.recruit-flow-title {
  font-family: var(--font-ja-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.recruit-flow-text { font-size: 0.9rem; line-height: 1.75; color: var(--gray-700); }

.recruit-cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green-base));
  padding: 4rem 0;
  text-align: center;
}

.recruit-cta-title {
  font-family: var(--font-ja-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.recruit-cta-text { font-size: 1rem; color: var(--gray-300); line-height: 1.8; margin-bottom: 2rem; }

.recruit-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 767px) {
  .recruit-positions-grid { grid-template-columns: 1fr; }
  .recruit-flow-step:not(:last-child)::after { display: none; }
  .recruit-cta-actions { flex-direction: column; align-items: center; }
  .recruit-cta-actions .btn { width: min(320px, 90vw); justify-content: center; }
}

/* ===================================
   27. Shared Form Page Styles
   =================================== */

.page-notice {
  background: var(--cream);
  border: 1px solid rgba(155, 128, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  margin-bottom: 2.5rem;
}

.page-notice-title {
  font-family: var(--font-ja-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-notice-title i { color: var(--gold-primary); }

.page-notice-sub { font-size: 0.9rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 1.1rem; }

.page-notice-list ul { list-style: none; padding: 0; margin: 0; }

.page-notice-list li {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-700);
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 0.25rem;
}

.page-notice-list li::before {
  content: '\30FB';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.page-notice-list li strong { color: var(--green-dark); }

.page-notice-list--bordered {
  border-top: 1px solid rgba(155, 128, 74, 0.2);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.page-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.page-contact-item i { color: var(--gold-primary); width: 16px; text-align: center; }
.page-contact-item a { color: var(--green-dark); font-weight: 700; text-decoration: none; }
.page-contact-item a:hover { color: var(--gold-primary); }

.page-contact-note { font-size: 0.8rem; color: var(--gray-700); margin-left: 0.3rem; }

.page-notice-scope-lead { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 0.8rem; font-weight: 700; }

.scope-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }

.scope-tag {
  font-size: 0.8rem;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.page-notice-intro { max-width: 800px; margin: 0 auto 3rem; }

.page-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.page-options-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 3rem;
}

.page-option-card {
  padding: 2rem;
  border-top: 4px solid var(--gold-primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-option-card.highlight {
  border-top-color: var(--green-dark);
  background: linear-gradient(160deg, #f0f7f2 0%, var(--white) 60%);
}

.page-option-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--green-base), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: var(--gold-light);
}

.page-option-icon--large { width: auto; height: auto; background: none; font-size: 2rem; color: var(--gold-primary); }

.page-option-card.highlight .page-option-icon { background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary)); }
.page-option-card.highlight .page-option-icon--large { background: none; color: var(--green-dark); }

.page-option-title {
  font-family: var(--font-ja-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.page-option-desc { font-size: 0.85rem; color: var(--gray-700); line-height: 1.65; margin-bottom: 1.5rem; flex-grow: 1; }

.page-option-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  width: 100%;
  max-width: 240px;
  margin-top: auto;
}

.page-option-link:hover { background: var(--gold-primary); color: var(--white); transform: translateY(-2px); }

.page-option-link.secondary { background: var(--white); color: var(--green-dark); border: 1px solid var(--green-dark); }
.page-option-link.secondary:hover { background: var(--green-dark); color: var(--white); }

.section-header-form { margin-bottom: 1.5rem; }

.section-header-form h2 {
  font-family: var(--font-ja-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-header-form h2 i { color: var(--gold-primary); }

.section-header-form p { font-size: 0.88rem; color: var(--gray-700); margin-top: 0.4rem; line-height: 1.7; }

.square-iframe-wrap {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-300);
}

.square-iframe-inner {
  width: 100%;
  min-height: 600px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.square-iframe-inner iframe { width: 100%; height: 100%; border: none; display: block; }

.square-direct-link { text-align: center; margin-top: 1.2rem; }
.square-direct-link p { font-size: 0.85rem; color: var(--gray-700); margin-bottom: 0.7rem; }

.section-bg-accent { background-color: var(--off-white); }

@media (max-width: 767px) {
  .page-notice { padding: 1.2rem; }
  .page-options-grid, .page-options-grid--wide { grid-template-columns: 1fr; }
  .page-contact-row { flex-direction: column; gap: 0.6rem; }
}

/* ===================================
   28. Quote Flow Styles
   =================================== */

.quote-flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.quote-flow-step { text-align: center; position: relative; }

.quote-flow-step-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--green-base), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--gold-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quote-flow-step-num {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(16px);
  width: 24px; height: 24px;
  border-radius: var(--radius-round);
  background: var(--gold-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-flow-step h3 {
  font-family: var(--font-ja-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.quote-flow-step p { font-size: 0.83rem; color: var(--gray-700); line-height: 1.65; }

@media (max-width: 767px) {
  .quote-flow-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================
   29. Legal Page Shared Styles
   =================================== */

.legal-body { max-width: 820px; margin: 0 auto; }

.legal-revision { text-align: right; font-size: 0.85rem; color: var(--gray-300); margin-bottom: 2rem; }

.lang-switch-banner {
  background: rgba(155, 128, 74, 0.1);
  border: 1px solid rgba(155, 128, 74, 0.4);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.lang-switch-banner p { font-size: 0.9rem; color: var(--gray-300); margin: 0; }
.lang-switch-banner p strong { color: var(--gold-light); }
.lang-switch-banner .btn { white-space: nowrap; flex-shrink: 0; }

.legal-lead {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-toc {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(155, 128, 74, 0.3);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.legal-toc-title {
  font-family: var(--font-ja-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-toc-title i { color: var(--gold-primary); }

.legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.3rem 1.5rem;
}

.legal-toc-list li { font-size: 0.85rem; }

.legal-toc-list a {
  color: var(--gray-300);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.legal-toc-list a:hover { color: var(--gold-light); }

.legal-toc-list a::before {
  content: '\25B8';
  color: var(--gold-primary);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.legal-article {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-article:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.legal-article-title {
  font-family: var(--font-ja-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  padding-left: 0.8rem;
  border-left: 4px solid var(--gold-primary);
  line-height: 1.5;
}

.legal-article p { font-size: 0.9rem; line-height: 1.9; color: var(--gray-300); margin-bottom: 0.9rem; }
.legal-article p:last-child { margin-bottom: 0; }

.legal-sub-item { margin: 1rem 0; }

.legal-sub-item-title,
.legal-sub-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.legal-sub-title { margin: 1.2rem 0 0.5rem; }
.legal-sub-title:first-of-type { margin-top: 0; }
.legal-sub-item p { margin-bottom: 0.5rem !important; }

.legal-list { list-style: none; padding: 0; margin: 0.5rem 0; }

.legal-list li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-300);
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 0.3rem;
}

.legal-list li::before {
  content: '\30FB';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.legal-list li strong { color: var(--cream); }

.legal-note { font-size: 0.83rem; color: var(--gray-300); line-height: 1.8; margin-bottom: 0.5rem; }
.legal-note::before { content: '\203B\0020'; color: var(--gold-primary); }

.legal-external-link { font-size: 0.85rem; color: var(--gold-light); word-break: break-all; }
.legal-external-link:hover { color: var(--gold-primary); }

.legal-tbl-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  margin-top: 1.2rem;
}

.legal-tbl { width: 100%; border-collapse: collapse; background-color: var(--white); }
.legal-tbl tr { border-bottom: 1px solid var(--gray-300); }
.legal-tbl tr:last-child { border-bottom: none; }

.legal-tbl th {
  background: var(--gray-100);
  color: var(--green-dark);
  font-family: var(--font-ja-serif);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.95rem 1.4rem;
  text-align: left;
  white-space: nowrap;
  width: 200px;
  vertical-align: top;
}

.legal-tbl td { padding: 0.95rem 1.4rem; font-size: 0.9rem; color: var(--gray-900); line-height: 1.75; }
.legal-tbl td a { color: var(--green-dark); }
.legal-tbl td a:hover { color: var(--gold-primary); }

.legal-info-box {
  background: rgba(155, 128, 74, 0.1);
  border: 1px solid rgba(155, 128, 74, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  margin: 1rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.legal-info-box i { color: var(--gold-light); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.legal-info-box p { font-size: 0.875rem; line-height: 1.8; color: var(--gray-300) !important; margin: 0 !important; }
.legal-info-box p strong { color: var(--gold-light); }

@media (max-width: 767px) {
  .lang-switch-banner { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .legal-toc { padding: 1.2rem; }
  .legal-article-title { font-size: 0.975rem; }
  .legal-tbl th { width: 130px; padding: 0.8rem 1rem; font-size: 0.82rem; }
  .legal-tbl td { padding: 0.8rem 1rem; font-size: 0.85rem; }
}

/* ===================================
   30. Tokusho Page Specific Styles
   =================================== */

.tokusho-price-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tokusho-price-table { width: 100%; border-collapse: collapse; min-width: 420px; background-color: var(--white); }

.tokusho-price-table thead th {
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-ja-serif);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  text-align: center;
}

.tokusho-price-table thead th:first-child { text-align: left; background: #1a1a1a; }
.tokusho-price-table thead th:nth-child(2) { background: var(--green-base); }
.tokusho-price-table thead th:nth-child(3) { background: var(--green-light); }

.tokusho-price-table tbody tr:nth-child(even) { background: var(--gray-100); }
.tokusho-price-table tbody tr:nth-child(odd) { background: var(--white); }

.tokusho-price-table tbody td {
  padding: 0.75rem 1.2rem;
  font-size: 0.875rem;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-300);
  text-align: center;
}

.tokusho-price-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--green-dark); }
.tokusho-price-table tbody tr:last-child td { border-bottom: none; }

.tokusho-cancel-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tokusho-cancel-table { width: 100%; border-collapse: collapse; min-width: 380px; background-color: var(--white); }

.tokusho-cancel-table thead th {
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-ja-serif);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  text-align: center;
}

.tokusho-cancel-table thead th:first-child { text-align: left; background: #1a1a1a; }

.tokusho-cancel-table tbody tr:nth-child(even) { background: var(--gray-100); }
.tokusho-cancel-table tbody tr:nth-child(odd) { background: var(--white); }

.tokusho-cancel-table tbody td {
  padding: 0.75rem 1.2rem;
  font-size: 0.875rem;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-300);
  text-align: center;
}

.tokusho-cancel-table tbody td:first-child { text-align: left; color: var(--gray-700); }
.tokusho-cancel-table tbody tr:last-child td { border-bottom: none; }

.cancel-free { color: var(--cancel-free); font-weight: 700; }
.cancel-30 { color: #a06c00; font-weight: 700; }
.cancel-50 { color: var(--cancel-warn); font-weight: 700; }
.cancel-100 { color: var(--cancel-danger); font-weight: 700; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.payment-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--gold-primary);
}

.payment-card-title {
  font-family: var(--font-ja-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-card-title i { color: var(--gold-light); font-size: 1rem; }
.payment-card p { font-size: 0.83rem; line-height: 1.7; color: var(--gray-300); margin: 0 !important; }
.payment-card .legal-list li { color: var(--gray-300); }
.payment-card .legal-list li strong { color: var(--cream); }
.payment-card .legal-note { color: rgba(255, 255, 255, 0.6); }

@media (max-width: 767px) {
  .payment-grid { grid-template-columns: 1fr; }
}

/* ===================================
   31. Business Page Styles
   =================================== */

.biz-tabs-wrapper {
  background: var(--gray-100);
  border-bottom: 2px solid var(--gray-200);
  position: sticky;
  top: 78px;
  z-index: 100;
}

.biz-tabs {
  display: flex;
  width: var(--container-width);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.biz-tab-btn {
  flex: 1;
  padding: 1.1rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-ja-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.biz-tab-btn:hover { color: var(--green-dark); background: rgba(0, 0, 0, 0.03); }
.biz-tab-btn.active { color: var(--gold-primary); border-bottom-color: var(--gold-primary); }
.biz-tab-btn i { font-size: 1rem; }

.biz-tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: var(--radius-round);
  background: var(--gray-300);
  color: var(--gray-700);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.biz-tab-btn.active .biz-tab-num { background: var(--gold-primary); color: var(--white); }

.biz-tab-panel { display: none; }
.biz-tab-panel.active { display: block; }

.biz-intro { background: var(--green-dark); padding: 3rem 0; }

.biz-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.biz-intro-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(155, 128, 74, 0.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.biz-intro-card:hover,
.biz-intro-card.active {
  background: rgba(155, 128, 74, 0.15);
  border-color: var(--gold-primary);
}

.biz-intro-num {
  width: 48px; height: 48px;
  border-radius: var(--radius-round);
  background: rgba(155, 128, 74, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en-serif);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.biz-intro-card.active .biz-intro-num { background: var(--gold-primary); color: var(--white); }

.biz-intro-en {
  font-family: var(--font-en-serif);
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.biz-intro-title {
  font-family: var(--font-ja-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.biz-intro-desc { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); line-height: 1.65; }

.biz-intro-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }

.biz-intro-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: rgba(155, 128, 74, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(155, 128, 74, 0.3);
}

.biz-band { background: var(--gray-100); padding: 3.5rem 0; }
.biz-band-dark { background: var(--green-dark); padding: 3.5rem 0; }
.biz-section { padding: 3.5rem 0; }

.biz-heading { margin-bottom: 2rem; }

.biz-heading-en {
  display: block;
  font-family: var(--font-en-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.biz-heading-ja {
  font-family: var(--font-ja-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
}

.biz-heading-ja.light { color: var(--white); }

.biz-heading-sub { font-size: 0.9rem; color: var(--gray-700); margin-top: 0.4rem; line-height: 1.7; }

.biz-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.biz-overview-text h2 {
  font-family: var(--font-ja-serif);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.biz-overview-text h2 .en {
  display: block;
  font-family: var(--font-en-serif);
  font-size: 0.85rem;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.biz-overview-text p { font-size: 0.95rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 1rem; }
.biz-overview-text p:last-child { margin-bottom: 0; }

.biz-overview-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.biz-overview-img img { width: 100%; height: 320px; object-fit: cover; display: block; }

.biz-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.biz-feature-card {
  border: 1px solid var(--gray-200);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.biz-feature-icon {
  width: 80px; height: 80px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--green-dark), var(--green-base));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.biz-feature-title {
  font-family: var(--font-ja-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.biz-feature-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; }

.biz-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.biz-usecase-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(155, 128, 74, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  color: var(--white);
}

.biz-usecase-icon { font-size: 1.9rem; color: var(--gold-light); margin-bottom: 0.75rem; }

.biz-usecase-title {
  font-family: var(--font-ja-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.biz-usecase-text { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); line-height: 1.65; }

.biz-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.biz-flow::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
}

.biz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}

.biz-step-icon {
  width: 76px; height: 76px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 4px 16px rgba(155, 128, 74, 0.3);
  flex-shrink: 0;
}

.biz-step-num { font-size: 0.7rem; font-weight: 700; color: var(--gold-primary); margin-bottom: 0.2rem; letter-spacing: 0.1em; }

.biz-step-title {
  font-family: var(--font-ja-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.biz-step-text { font-size: 0.775rem; color: var(--gray-700); line-height: 1.5; }

.biz-highlight {
  background: linear-gradient(135deg, rgba(155, 128, 74, 0.07), rgba(155, 128, 74, 0.02));
  border: 1px solid rgba(155, 128, 74, 0.2);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1rem;
}

.biz-highlight:last-child { margin-bottom: 0; }
.biz-highlight p { font-size: 0.925rem; color: var(--green-dark); line-height: 1.75; margin: 0; }
.biz-highlight strong { color: var(--gold-dark); }

.biz-info-box {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
}

.biz-info-box-title {
  font-family: var(--font-ja-serif);
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.biz-info-box-title i { color: var(--gold-primary); }

@media (max-width: 1024px) {
  .biz-intro-inner { grid-template-columns: 1fr 1fr; }
  .biz-flow { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .biz-flow::before { display: none; }
  .biz-features-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-usecase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .biz-tabs-wrapper { top: 64px; }
  .biz-tab-btn { font-size: 0.875rem; padding: 0.9rem 0.5rem; gap: 0.35rem; }
  .biz-tab-num { width: 18px; height: 18px; font-size: 0.7rem; }
  .biz-tab-btn i { display: none; }
  .biz-intro-inner { grid-template-columns: 1fr; }
  .biz-overview { grid-template-columns: 1fr; gap: 1.5rem; }
  .biz-overview-img img { height: 220px; }
  .biz-features-grid { grid-template-columns: 1fr; }
  .biz-usecase-grid { grid-template-columns: 1fr; }
  .biz-flow { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .biz-info-box { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .biz-flow { grid-template-columns: 1fr; }
  .biz-step-icon { width: 64px; height: 64px; font-size: 1.4rem; }
}

/* ===================================
   32. Page-specific Overrides
   =================================== */

#main-content {
  background-color: var(--gray-100);
}

.related-services-section,
.additional-services-section {
  background-color: var(--off-white);
}

.square-iframe-inner--widget {
  padding: 2rem;
}

@media (max-width: 767px) {
  .square-iframe-inner--widget {
    padding: 1rem 0.5rem;
    min-height: 500px;
  }
}

.square-iframe-inner--form {
  height: 1400px;
}

@media (max-width: 767px) {
  .square-iframe-inner--form {
    height: 1600px;
  }
}

/* ===================================
   33. Dark Page Base Theme
   =================================== */

body.bg-dark {
  background-color: var(--green-dark);
  color: var(--white);
}

body.bg-dark .bg-dark {
  background-color: transparent;
}

body.bg-dark .bg-light {
  background-color: rgba(255, 255, 255, 0.04);
}

body.bg-dark #main-content {
  background-color: var(--green-dark);
}

body.bg-dark .features,
body.bg-dark .topics-section,
body.bg-dark .section-bg-accent,
body.bg-dark .related-services-section,
body.bg-dark .additional-services-section {
  background-color: rgba(255, 255, 255, 0.03);
}

body.bg-dark .services-overview {
  background-color: transparent;
}

/* Cards on dark */
body.bg-dark .feature-card,
body.bg-dark .service-card,
body.bg-dark .info-card,
body.bg-dark .recruit-position-card,
body.bg-dark .recruit-point-card,
body.bg-dark .topic-item,
body.bg-dark .faq-item,
body.bg-dark .page-option-card,
body.bg-dark .feature-box,
body.bg-dark .business-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.bg-dark .feature-card:hover,
body.bg-dark .service-card:hover,
body.bg-dark .info-card:hover,
body.bg-dark .recruit-position-card:hover,
body.bg-dark .recruit-point-card:hover,
body.bg-dark .topic-item:hover,
body.bg-dark .faq-item:hover,
body.bg-dark .page-option-card:hover,
body.bg-dark .feature-box:hover,
body.bg-dark .business-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 40px rgba(155, 128, 74, 0.2);
  transform: translateY(-4px);
}

/* Titles on dark */
body.bg-dark .feature-title,
body.bg-dark .feature-box-title,
body.bg-dark .service-title,
body.bg-dark .info-card-title,
body.bg-dark .recruit-point-title,
body.bg-dark .recruit-welcome-title,
body.bg-dark .recruit-flow-title,
body.bg-dark .page-option-title,
body.bg-dark .section-header-form h2,
body.bg-dark .quote-flow-step h3,
body.bg-dark .page-notice-title,
body.bg-dark .page-notice-scope-lead,
body.bg-dark .recruit-meta-row strong,
body.bg-dark .page-notice-list li strong,
body.bg-dark .business-card-title,
body.bg-dark .map-info h3,
body.bg-dark .map-info-list li strong {
  color: var(--cream);
}

/* Text on dark */
body.bg-dark .feature-text,
body.bg-dark .feature-box-text,
body.bg-dark .service-text,
body.bg-dark .service-description,
body.bg-dark .service-title-en,
body.bg-dark .info-card-text,
body.bg-dark .intro-text,
body.bg-dark .recruit-position-desc,
body.bg-dark .recruit-welcome-list li,
body.bg-dark .recruit-meta-row,
body.bg-dark .recruit-point-text,
body.bg-dark .recruit-flow-text,
body.bg-dark .page-option-desc,
body.bg-dark .page-notice-sub,
body.bg-dark .page-notice-list li,
body.bg-dark .page-contact-item,
body.bg-dark .page-contact-note,
body.bg-dark .section-header-form p,
body.bg-dark .square-direct-link p,
body.bg-dark .quote-flow-step p,
body.bg-dark .topic-title a,
body.bg-dark .business-card-text,
body.bg-dark .map-info-list li,
body.bg-dark .service-features li {
  color: var(--gray-300);
}

/* Links on dark */
body.bg-dark .service-link,
body.bg-dark .faq-answer a,
body.bg-dark .page-contact-item a,
body.bg-dark .map-info-list li i {
  color: var(--gold-light);
}

body.bg-dark .service-link:hover,
body.bg-dark .faq-answer a:hover,
body.bg-dark .topic-title a:hover {
  color: var(--gold-primary);
}

/* Borders on dark */
body.bg-dark .service-footer,
body.bg-dark .recruit-position-meta,
body.bg-dark .map-info-list li {
  border-color: rgba(255, 255, 255, 0.1);
}

/* FAQ on dark */
body.bg-dark .faq-question {
  color: var(--cream);
}

body.bg-dark .faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

body.bg-dark .faq-toggle,
body.bg-dark .faq-answer p {
  color: var(--gray-300);
}

/* FAQ category tabs on dark */
body.bg-dark .faq-category-tab {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--gray-300);
}

body.bg-dark .faq-category-tab:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

body.bg-dark .faq-category-tab.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-color: var(--gold-primary);
  color: var(--white);
}

body.bg-dark .faq-category-heading {
  color: var(--cream);
}

body.bg-dark .faq-category-heading i {
  color: var(--gold-primary);
}

/* Company-specific on dark */
body.bg-dark .mission-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.bg-dark .business-card {
  border-top: 4px solid var(--gold-primary);
}

body.bg-dark .business-card-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
}

body.bg-dark .company-info-tbl-wrapper {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

/* Pricing on dark */
body.bg-dark .fare-system-box {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--gold-light);
}

body.bg-dark .fare-system-box h3,
body.bg-dark .fare-system-box-title {
  color: var(--cream);
}

body.bg-dark .fare-system-box p {
  color: rgba(255, 255, 255, 0.85);
}

body.bg-dark .fare-system-box strong {
  color: var(--gold-light);
}

body.bg-dark .request-list li {
  color: rgba(255, 255, 255, 0.85);
}

body.bg-dark .request-list li::before {
  color: var(--gold-light);
}

body.bg-dark .service-intro-image {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Page notice on dark */
body.bg-dark .page-notice {
  background: rgba(155, 128, 74, 0.1);
  border-color: rgba(155, 128, 74, 0.3);
}

body.bg-dark .scope-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--gray-300);
}

body.bg-dark .page-option-card.highlight {
  background: rgba(155, 128, 74, 0.08);
  border-top-color: var(--gold-light);
}

body.bg-dark .page-option-link {
  background: var(--gold-primary);
  color: var(--white);
}

body.bg-dark .page-option-link:hover {
  background: var(--gold-light);
}

body.bg-dark .page-option-link.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.2);
}

body.bg-dark .page-option-link.secondary:hover {
  background: var(--gold-primary);
  color: var(--white);
  border-color: var(--gold-primary);
}

body.bg-dark .square-iframe-wrap {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Related services on dark */
body.bg-dark .related-service-compact-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--cream);
}

body.bg-dark .related-service-compact-card:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--white);
}

/* Section title on dark */
body.bg-dark .section-title-small {
  color: var(--cream);
}

/* Cancel table on dark */
body.bg-dark .cancel-table-wrap {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Pricing note on dark */
body.bg-dark .pricing-note {
  background-color: rgba(255, 255, 255, 0.06);
  border-left-color: var(--gold-light);
}

body.bg-dark .pricing-note p {
  color: var(--gray-300);
}

/* ===================================
   34. Hero Slider Backgrounds
   =================================== */

.hero-bg-1 { background-image: url('../images/vehicles/airport_alphard.jpg'); background-position: center 60%; }
.hero-bg-2 { background-image: url('../images/services/tokyo_ginza_luxury_car.png'); background-position: center 40%; }
.hero-bg-3 { background-image: url('../images/services/ceremonial.jpg'); background-position: center 35%; }
.hero-bg-4 { background-image: url('../images/services/shibuya-crossing.jpg'); background-position: center 50%; }
.hero-bg-5 { background-image: url('../images/services/sakura_kimono_back.jpg'); background-position: center 50%; }

.hero-bg-1,
.hero-bg-2,
.hero-bg-3,
.hero-bg-4,
.hero-bg-5 {
  background-size: cover;
  background-repeat: no-repeat;
}
/* --- Cancellation Policy --- */
.cancel-table-wrap {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.cancel-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.cancel-table th,
.cancel-table td {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  text-align: left;
}

.cancel-table th {
  background-color: var(--gray-100);
  font-weight: 600;
  color: var(--gray-700);
}

.cancel-free { color: var(--cancel-free); font-weight: 700; }
.cancel-30 { color: var(--cancel-warn); font-weight: 700; }
.cancel-50 { color: var(--cancel-warn); font-weight: 700; }
.cancel-100 { color: var(--cancel-danger); font-weight: 700; }
