/* ==========================================================
   40 ALSTA RENTAL CAR – LP STYLESHEET
   Built from Figma (tzpqdfrjZ4MfQzrYOHR1zx) pixel-match
   ========================================================== */

:root {
  --gold: #d4b96b;
  --gold-dark: #bc8c00;
  --black: #000000;
  --dark: #0a0a0a;
  --dark-2: #1e1e1e;
  --dark-3: #2a2a2a;
  --white: #ffffff;
  --gray: #767676;
  --gray-mid: #6a6a6a;
  --gray-light: #c0c0c0;
  --beige: #e0ddd6;
  --green: #06c755;
  --gold-gradient: linear-gradient(101.6deg, #d4b96b 1.67%, #bc8c00 100%);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ==========================================================
   HEADER – Figma: transparent, floats over hero
   ========================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 0 0 160px;
  height: 64px;
  background: transparent;
  transition: background 0.3s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 24px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.8));
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

nav a {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 20.4px;
  color: var(--white);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
  transition: color 0.2s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

nav a:hover {
  color: var(--gold);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  flex-shrink: 0;
}

.tel-header {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 18.7px;
  color: var(--gold);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.btn-line-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 0 20px;
  height: 64px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 18.7px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-line-header:hover {
  opacity: 0.9;
}

.line-icon-header {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

/* ==========================================================
   HERO – Figma 1:543
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: var(--black);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(146.31deg, rgb(0,0,0) 3.99%, rgba(0,0,0,0) 52.71%);
  transform: scaleY(-1) rotate(180deg);
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  padding-right: 153px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  animation: fadeInRight 0.8s ease both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 4px;
  line-height: 32px;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 70.4px;
  color: var(--white);
  text-shadow: 0 0 24px rgba(0,0,0,0.8);
  text-align: right;
}

.hero-title-gold {
  color: var(--gold);
}

.hero-sub {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: var(--gray-light);
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
  padding-top: 9px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--dark);
  border: none;
  border-radius: 4px;
  padding: 16px 44px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 1px;
  line-height: 25.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.booking-bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 780px;
  padding: 0;
  z-index: 3;
}

.booking-bar-iframe {
  width: 100%;
  height: 310px;
  border: none;
  border-radius: 8px;
  background: transparent;
}

/* ==========================================================
   SECTION COMMON
   ========================================================== */
section {
  position: relative;
}

/* Large background text (ABOUT, SERVICE, etc.) */
.section-bg-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 160px;
  color: rgba(192,192,192,0.3);
  line-height: 160px;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ---- Centered section header (ABOUT, SERVICE, GALLERY, FLOW, FAQ, INFO) ---- */
.section-label {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 4px;
  line-height: 32px;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 54.4px;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}

.section-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 25.5px;
  color: var(--gray);
  text-align: center;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ---- Left-aligned section header (PRICING, COMPANY, NEWS) ---- */
.pricing-left .section-label,
.company-content-block .section-label,
.news-inner > div:first-child .section-label {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pricing-left .section-label::before,
.company-content-block .section-label::before,
.news-inner > div:first-child .section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.pricing-left .section-title,
.company-content-block .section-title,
.news-inner > div:first-child .section-title {
  text-align: left;
}

.pricing-left .section-desc,
.company-content-block .section-desc,
.news-inner > div:first-child .section-desc {
  text-align: left;
}

.pricing-left .section-divider,
.company-content-block .section-divider,
.news-inner > div:first-child .section-divider {
  display: none;
}

/* ==========================================================
   ABOUT – Figma
   ========================================================== */
.about {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.about-header-row {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1126px;
  margin: 0 auto 24px;
  padding: 0 60px;
}

.about-header-left {
  flex-shrink: 0;
  width: 530px;
}

.about-header-left .section-label {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-header-left .section-label::before {
  content: '';
  width: 25px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.about-header-left .section-title {
  text-align: left;
}

.about-header-left .section-desc {
  text-align: left;
}

.about-header-big {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 160px;
  line-height: 160px;
  color: rgba(192,192,192,0.3);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.about-text-center {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: var(--beige);
  margin-bottom: 56px;
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.about-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-photos img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.4s ease;
}

.about-photos img:hover {
  filter: brightness(1);
}

/* ==========================================================
   SERVICE – Figma: 3 cards with gap
   ========================================================== */
.service {
  padding-top: 160px;
  padding-bottom: 120px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.service-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.service-cards {
  display: flex;
  gap: 21px;
  justify-content: center;
  max-width: 1122px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.service-card {
  width: 360px;
  min-height: 270px;
  background: linear-gradient(125.3deg, #2c2c2c 1.06%, #1e1e1e 101.23%);
  padding: 32px 30px;
  text-align: center;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  background: linear-gradient(125.3deg, #333 1.06%, #252525 101.23%);
}

.service-icon {
  width: 70px;
  height: 70px;
  min-height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
}

.service-icon svg,
.service-icon img {
  width: 24px;
  height: 24px;
}

.service-card-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 30.6px;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  color: var(--gray-light);
}

/* ==========================================================
   FULL-WIDTH PHOTOS
   ========================================================== */
.fullwidth-photo {
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

.fullwidth-photo.service-photo {
  height: 580px;
}

.fullwidth-photo.pricing-photo {
  height: 540px;
}

/* ==========================================================
   REASON – Figma 1:102
   Numbers: Shippori Mincho Bold 72px gold
   REASON label overlaid on number
   ========================================================== */
.reason {
  margin-top: 120px;
  padding-top: 160px;
  padding-bottom: 120px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.reason-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.reason-item {
  display: flex;
  gap: 62px;
  align-items: center;
  max-width: 1122px;
  margin: 0 auto 100px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.reason-item.reverse {
  flex-direction: row-reverse;
}

.reason-text {
  width: 500px;
  flex-shrink: 0;
}

.reason-number-block {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.reason-number-label {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  line-height: 12px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.reason-number {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 72px;
  color: var(--gold);
  margin-bottom: 24px;
}

.reason-item-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 37.4px;
  color: var(--white);
  margin-bottom: 8px;
}

.reason-item-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30.4px;
  color: var(--gray-light);
  padding-top: 4px;
}

.reason-item-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 30.4px;
  color: var(--gray-light);
  padding-top: 4px;
}

.reason-photo {
  width: 560px;
  height: 315px;
  overflow: hidden;
  flex-shrink: 0;
}

.reason-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reason-photo:hover img {
  transform: scale(1.04);
}

/* ==========================================================
   VEHICLE – Figma 1:136
   Big photo left (720px), content right
   ========================================================== */
.vehicle {
  padding: 0;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.vehicle-inner {
  display: flex;
  align-items: flex-end;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.vehicle-photo {
  width: 720px;
  height: 720px;
  flex-shrink: 0;
  overflow: hidden;
}

.vehicle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-content {
  width: 653px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 221px;
  position: relative;
}

/* Vehicle section header area */
.vehicle-header-area {
  position: relative;
  height: 205px;
  width: 100%;
}

.vehicle-bg-text {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 160px;
  line-height: 160px;
  color: rgba(192,192,192,0.3);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.vehicle-header-inner {
  position: absolute;
  left: 57px;
  top: 80px;
  z-index: 1;
}

.vehicle-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.vehicle-gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.vehicle-eyebrow {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 4px;
  line-height: 32px;
  color: var(--gold);
  text-transform: uppercase;
}

.vehicle-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 54.4px;
  color: var(--white);
}

.vehicle-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 25.5px;
  color: var(--gray);
}

/* Vehicle detail area */
.vehicle-detail {
  width: 478px;
  height: 319px;
  align-self: center;
}

.vehicle-car-label {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 4px;
  line-height: 32px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0;
}

.vehicle-car-name {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 54.4px;
  color: var(--white);
  margin-bottom: 4px;
}

.vehicle-car-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30.4px;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.vehicle-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.vehicle-tag {
  background: rgba(212,185,107,0.3);
  color: var(--gold);
  padding: 8px 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  border-radius: 150px;
  border: none;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  border: 1px solid var(--gold);
  color: var(--black);
  padding: 15px 20px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 25.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-arrow {
  width: 35px;
  height: auto;
  vertical-align: middle;
}

.btn-outline-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

/* Vehicle carousel */
.vehicle-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 72px;
  padding-bottom: 120px;
}

.carousel-viewport {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  height: 486px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 680px;
  height: 486px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  transform: translate(0, 0) scale(0.559);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
  will-change: transform, opacity;
}
/* translate() moves center, scale() sizes — independent, no interaction during transition */

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dark-3);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
}

/* ==========================================================
   GALLERY – Figma 1:174
   ========================================================== */
.gallery {
  padding-top: 160px;
  padding-bottom: 120px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 238px 238px;
  gap: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* ==========================================================
   PRICING – Figma 1:200
   Left-aligned header with gold line
   ========================================================== */
.pricing {
  padding-top: 200px;
  padding-bottom: 120px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.pricing-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.pricing-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.pricing-left {
  flex-shrink: 0;
  width: 239px;
}

.pricing-left .section-desc {
  white-space: nowrap;
}

.pricing-right {
  flex: 1;
  min-width: 0;
}

.pricing-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-light);
  line-height: 27.4px;
  margin-bottom: 24px;
}

.pricing-main-price {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 16px;
}

.pricing-period {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--beige);
}

.pricing-amount {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--gold);
}

.pricing-option-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--gray);
  line-height: 20.4px;
  white-space: nowrap;
}

.booking-widget {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  border: none;
  border-radius: 8px;
  padding: 0;
  text-align: center;
  background: transparent;
  min-height: 310px;
}

.booking-widget-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 22.1px;
  color: var(--gray-light);
  margin-bottom: 12px;
}

.booking-widget-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23.8px;
  color: var(--gold);
  margin-bottom: 0;
}

.booking-widget-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23.8px;
  color: var(--gold);
  margin-bottom: 12px;
}

.booking-widget-iframe {
  width: 100%;
  height: 310px;
  border: none;
  display: block;
}

/* ==========================================================
   FLOW – Figma 1:219
   ========================================================== */
.flow {
  margin-top: 120px;
  padding-top: 176px;
  padding-bottom: 120px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.flow-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.flow-step {
  flex: 1;
  min-width: 140px;
  text-align: left;
  position: relative;
  padding: 0 10px;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(50% + 30px);
  right: calc(-50% + 30px);
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.flow-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
  position: relative;
  z-index: 1;
}

.flow-step-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  text-align: center;
}

.flow-step-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-light);
  line-height: 23.8px;
  text-align: left;
  max-width: 248px;
}

/* ==========================================================
   INFO – Figma 1:247
   ========================================================== */
.info {
  padding-top: 200px;
  padding-bottom: 120px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.info-header {
  text-align: center;
  margin-bottom: 60px;
}

.info-inner {
  max-width: 1242px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-bottom: 60px;
}

.info-card {
  border: 1px solid #666;
  padding: 32px;
  background: var(--black);
}

.info-card-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
}

.info-card-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-card-item {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--gray-light);
  padding: 6px 0;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-dash {
  display: block;
  width: 10px;
  height: 4px;
  background: var(--gold);
  flex-shrink: 0;
}

.info-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--gray-light);
  line-height: 2;
}

.info-card-gold {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--gold);
  margin-top: 16px;
  line-height: 1.5;
}

.info-detail {
  margin-top: 48px;
}

.info-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-bottom: 48px;
}

.info-section-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
}

.insurance-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.insurance-table thead {
  background: var(--dark-2);
}

.insurance-table th {
  padding: 12px 20px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  text-align: left;
}

.insurance-table td {
  padding: 12px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  border-bottom: 1px solid #2a2a2a;
  color: var(--beige);
}

.insurance-table tbody tr:last-child td {
  border-bottom: none;
}

.insurance-table tbody td:first-child {
  font-weight: 700;
  color: var(--beige);
}

.noc-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--gray-light);
  line-height: 2;
  margin-bottom: 16px;
}

.noc-detail {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--gray-light);
  line-height: 2;
  margin-bottom: 16px;
}

.noc-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--gray);
  line-height: 2;
}

.cancel-section {
  margin-top: 0;
}

.cancel-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.cancel-table thead {
  background: var(--dark-2);
}

.cancel-table th {
  padding: 12px 20px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  text-align: left;
}

.cancel-table td {
  padding: 12px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  border-bottom: 1px solid #2a2a2a;
  color: var(--beige);
}

.cancel-table tbody tr:last-child td {
  border-bottom: none;
}

.cancel-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--gray);
  line-height: 2;
}

/* ==========================================================
   FAQ – Figma 1:336
   ========================================================== */
.faq {
  padding-top: 200px;
  padding-bottom: 40px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.faq-list {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.faq-item:first-child .faq-question {
  padding-top: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid var(--gray-mid);
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
}

.faq-q-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  line-height: 1.5;
}

.faq-q-mark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  padding: 16px 0 24px 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-light);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================
   NEWS
   ========================================================== */
.news {
  padding: 100px 0;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.news-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 192px;
  position: relative;
  z-index: 1;
}

.news-list {
  list-style: none;
}

.news-list li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 2px solid #666;
  align-items: center;
}

.news-date {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  white-space: nowrap;
}

.news-badge {
  border: 1px solid rgba(212,185,107,0.68);
  color: var(--gold);
  padding: 5px 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  border-radius: 0;
}

.news-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--beige);
}

/* ==========================================================
   COMPANY
   ========================================================== */
.company {
  padding: 100px 0;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.company-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 720px 483px;
  gap: 77px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.map-container {
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  width: 720px;
  height: 720px;
  display: flex;
  flex-direction: column;
}

.map-container iframe {
  width: 100%;
  flex: 1;
  border: none;
  filter: grayscale(30%) brightness(0.85);
}

.company-content-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.company-table th {
  padding: 16px 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-align: left;
  width: 122px;
  vertical-align: top;
  border-bottom: 2px solid #666;
}

.company-table td {
  padding: 16px 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--beige);
  line-height: 1.9;
  border-bottom: 2px solid #666;
}

/* ==========================================================
   BEACH
   ========================================================== */
.beach {
  height: 650px;
  overflow: hidden;
  position: relative;
}

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

.beach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0.2deg, rgba(0,0,0,0) 6.5%, rgb(0,0,0) 95.6%);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================
   CTA – Figma 1:475
   ========================================================== */
.cta {
  padding: 100px 0;
  background: var(--black);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.cta-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
}

.cta-box {
  background: rgba(0,0,0,0.8);
  padding: 54px 60px;
  margin-top: 48px;
}

.cta-tagline {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.36;
  margin-bottom: 16px;
}

.cta-tagline span {
  color: var(--gold);
}

.cta-sub {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 32px;
}

.cta-tel {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 41px;
  letter-spacing: 4px;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-price {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--dark);
  border: 1px solid var(--gold);
  border-radius: 0;
  padding: 20px 30px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover, .btn-cta-price:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-cta-line {
  display: inline-block;
  border: 1px solid var(--gold);
  border-radius: 0;
  color: var(--gold);
  padding: 20px 30px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-line:hover {
  background: rgba(201,168,76,0.1);
}

/* ==========================================================
   FOOTER – Figma 1:475
   ========================================================== */
footer {
  background: var(--black);
  border-top: 1px solid var(--dark-3);
  overflow: hidden;
}

.footer-inner {
  padding: 80px 60px 100px;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 40px;
  margin-bottom: 0;
  align-items: start;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
}

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

.footer-nav {
  display: grid;
  grid-template-columns: auto auto;
  gap: 9px 48px;
  justify-content: start;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav a {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
  line-height: 21px;
  transition: color 0.2s ease;
}

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

.footer-contact {
  text-align: right;
}

.footer-contact-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ddd;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.footer-tel {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.footer-qr {
  width: 96px;
  height: 96px;
  margin-left: auto;
}

.footer-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid var(--dark-3);
  margin-top: 40px;
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom small {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--white);
}

.footer-bottom a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ==========================================================
   GALLERY MODAL
   ========================================================== */
.gallery-item {
  cursor: pointer;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  visibility: hidden;
  transition: background 0.35s ease, visibility 0s 0.4s;
}

.gallery-modal.open {
  background: rgba(0, 0, 0, 0.85);
  pointer-events: auto;
  visibility: visible;
  transition: background 0.35s ease, visibility 0s 0s;
}

.gallery-modal-wrap {
  position: relative;
  display: inline-block;
  transform: scale(0.3);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.gallery-modal.open .gallery-modal-wrap {
  transform: scale(1);
  opacity: 1;
}

/* 閉じるとき用：フェードアウト */
.gallery-modal.closing .gallery-modal-wrap {
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease-in, opacity 0.25s ease-in;
}

.gallery-modal.closing {
  background: rgba(0, 0, 0, 0);
  visibility: visible;
  pointer-events: none;
  transition: background 0.3s ease, visibility 0s 0.35s;
}

.gallery-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.2s ease 0.15s;
}

.gallery-modal.open .gallery-modal-close {
  opacity: 1;
}

.gallery-modal-close:hover {
  opacity: 0.7;
}

.gallery-modal-img {
  width: 800px;
  height: 533px;
  object-fit: contain;
  background: #000;
  border-radius: 4px;
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1280px) {
  header {
    padding: 0 40px;
  }

  .hero-content {
    padding-right: 80px;
  }

  .booking-bar {
    padding: 0 20px;
    max-width: 100%;
  }

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

  .vehicle-photo {
    width: 100%;
    height: 500px;
  }

  .vehicle-content {
    width: 100%;
    gap: 40px;
    padding: 60px 60px;
  }

  .vehicle-detail {
    width: 100%;
  }
}

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

  .hero-content {
    padding-right: 40px;
  }

  .reason-item {
    flex-direction: column;
    gap: 40px;
    padding: 0 40px;
  }

  .reason-item.reverse {
    flex-direction: column;
  }

  .reason-text {
    width: 100%;
  }

  .reason-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .pricing-inner {
    flex-direction: column;
    gap: 40px;
  }

  .pricing-content {
    padding: 0 40px;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }

  .tel-header {
    display: none;
  }

  .btn-line-header {
    display: none;
  }

  .section-bg-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    font-size: 64px;
    line-height: 64px;
  }

  .section-label {
    font-size: 13px;
    letter-spacing: 3.25px;
    line-height: 26px;
  }

  .section-title {
    font-size: 26px;
    line-height: 44.2px;
  }

  .section-desc {
    font-size: 14px;
    letter-spacing: 0.84px;
  }

  .section-divider {
    margin: 8px auto 0;
  }

  .service-header,
  .reason-header,
  .flow-header {
    margin-bottom: 32px;
    gap: 4px;
  }

  .gallery-header {
    margin-bottom: 40px;
    gap: 4px;
  }

  .hero {
    height: 743px;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 25px 148px 0;
  }

  .hero-content {
    max-width: 340px !important;
    width: 340px !important;
    padding: 0 !important;
    padding-right: 0 !important;
    margin: 0;
    margin-left: auto;
    text-align: right;
    align-items: flex-end;
    gap: 8px;
  }

  .hero-eyebrow {
    font-size: 14px;
    letter-spacing: 2.75px;
    line-height: 22px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 52px;
    text-align: right;
    margin-right: -10px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1;
    color: #c0c0c0;
  }

  .btn-primary {
    width: auto;
    padding: 12px 32px;
    font-size: 15px;
    margin-top: 19px;
    border-radius: 3px;
    letter-spacing: 0.75px;
    text-align: center;
    white-space: nowrap;
  }

  .booking-bar {
    bottom: 20px;
    padding: 0 15px;
    max-width: 100%;
  }

  .booking-bar-iframe {
    height: 280px;
  }

  .about-header-row {
    flex-direction: column;
    gap: 0;
    padding: 0;
    align-items: center;
  }

  .about-header-big {
    font-size: 64px;
    line-height: 64px;
    order: -1;
  }

  .about-header-left {
    width: 100%;
    text-align: center;
  }

  .about-header-left .section-label {
    text-align: center;
    justify-content: center;
  }

  .about-header-left .section-label::before {
    display: none;
  }

  .about-header-left::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 8px auto 0;
  }

  .about-header-left .section-title {
    text-align: center;
  }

  .about-header-left .section-desc {
    text-align: center;
  }

  .about-text-center {
    padding: 0 25px;
    font-size: 14px;
    line-height: 26px;
    color: #e0ddd6;
    text-align: left;
  }

  .about-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .about-photos img {
    width: 100%;
    height: 98px;
    object-fit: cover;
  }

  .service-cards {
    flex-direction: column;
    gap: 21px;
    padding: 0;
    max-width: 340px;
    margin: 0 auto;
  }

  .service-card {
    width: 100%;
    background: linear-gradient(126deg, #2c2c2c, #1e1e1e);
    border-bottom: none;
    padding: 32px 30px 51px;
    border-radius: 0;
  }

  .service-card .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-card h3 {
    font-size: 18px;
    line-height: 30.6px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 27px;
    max-width: 280px;
    text-align: left;
    color: #c0c0c0;
  }

  .reason-item {
    flex-direction: column;
    gap: 24px;
    padding: 0 25px;
  }

  .reason-item + .reason-item {
    margin-top: 16px;
  }

  .reason-item.reverse {
    flex-direction: column;
  }

  .reason-img {
    width: 100%;
    height: auto;
    aspect-ratio: 341/192;
  }

  .reason-text {
    padding: 0;
  }

  .reason-item {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    margin-bottom: 40px;
  }

  .reason-item.reverse {
    flex-direction: column;
  }

  .reason-text {
    text-align: center;
  }

  .reason-number-label {
    font-size: 12px;
    letter-spacing: 4px;
    line-height: 12px;
    text-align: center;
  }

  .reason-number {
    font-size: 50px;
    line-height: 50px;
    text-align: center;
  }

  .reason-item-title {
    font-size: 22px;
    line-height: 37.4px;
    text-align: center;
  }

  .reason-item-text {
    font-size: 15px;
    line-height: 30.4px;
    text-align: left;
  }

  .reason-item-note {
    text-align: left;
  }

  /* ---- VEHICLE section SP ---- */
  .vehicle-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .vehicle-inner {
    flex-direction: column;
    gap: 0;
  }

  .vehicle-content {
    display: flex;
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .vehicle-header-area {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .vehicle-bg-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    font-size: 64px;
    line-height: 64px;
    text-align: center;
  }

  .vehicle-header-inner {
    position: relative;
    left: auto;
    top: auto;
    width: 304px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .vehicle-eyebrow-line {
    justify-content: center;
    margin-bottom: 0;
  }

  .vehicle-gold-line {
    display: none;
  }

  .vehicle-eyebrow {
    font-size: 13px;
    letter-spacing: 4px;
    line-height: 32px;
  }

  .vehicle-title {
    font-size: 26px;
    line-height: 44.2px;
    text-align: center;
  }

  .vehicle-sub {
    font-size: 14px;
    line-height: 25.5px;
    letter-spacing: 1px;
    text-align: center;
  }

  .vehicle-sub::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 8px auto 0;
  }

  .vehicle-detail {
    width: 340px;
    height: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
  }

  .vehicle-car-label {
    font-size: 14px;
    letter-spacing: 4px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 0;
  }

  .vehicle-car-name {
    font-size: 22px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 0;
  }

  .vehicle-car-text {
    font-size: 15px;
    line-height: 30.4px;
    text-align: left;
    margin-bottom: 0;
    width: 340px;
  }

  .vehicle-tags {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .vehicle-tag {
    font-size: 13px;
    padding: 8px 10px;
  }

  .btn-outline-gold {
    font-size: 18px;
    padding: 15px 20px;
    margin-top: 8px;
  }

  .vehicle-carousel {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 24px;
  }

  .carousel-viewport {
    height: 132px;
  }

  .carousel-slide {
    width: 184px;
    height: 132px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dots {
    gap: 12px;
  }

  .fullwidth-photo.service-photo {
    height: 240px;
    margin-bottom: 80px;
  }

  .fullwidth-photo.pricing-photo {
    height: 240px;
  }

  .vehicle-tag {
    font-size: 13px;
    padding: 8px 12px;
    background: rgba(212,185,107,0.3);
    border-radius: 20px;
  }

  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    max-width: 340px;
    margin: 0 auto;
    grid-template-columns: unset;
  }

  .gallery-item {
    overflow: hidden;
    height: auto;
  }

  /* Full-width rows: 1st, 6th */
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    width: 100%;
    height: 200px;
  }

  /* 2-col rows: 2nd/3rd, 4th/5th, 7th/8th, 9th/10th */
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(9),
  .gallery-item:nth-child(10) {
    width: calc(50% - 4px);
    height: 132px;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: unset;
  }

  .gallery-item:nth-child(n+6) {
    display: flex;
  }

  .pricing {
    padding: 64px 25px;
    overflow: visible;
  }

  .pricing-content {
    padding: 0;
    max-width: 340px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
  }

  .pricing-inner {
    flex-direction: column;
    gap: 40px;
    width: 340px;
  }

  .pricing-left {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pricing-left .section-label {
    justify-content: center;
  }

  .pricing-left .section-label::before {
    display: none;
  }

  .pricing-left .section-title {
    font-size: 26px;
    line-height: 44.2px;
    text-align: center;
  }

  .pricing-left .section-desc {
    font-size: 14px;
    text-align: center;
    white-space: normal;
  }

  .pricing-left .section-desc::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 8px auto 0;
  }

  .pricing-right {
    width: 340px;
  }

  .pricing-note {
    text-align: left;
    font-size: 14px;
    line-height: 23.4px;
    margin-bottom: 24px;
  }

  .pricing-main-price {
    justify-content: center;
    gap: 17px;
    margin-bottom: 16px;
  }

  .pricing-period {
    font-size: 18px;
  }

  .pricing-amount {
    font-size: 18px;
  }

  .pricing-option-note {
    font-size: 14px;
    line-height: 20.4px;
    white-space: normal;
    text-align: left;
  }

  .booking-widget {
    width: 340px;
    margin: 0 auto;
    padding: 24px 16px;
  }

  .flow-steps {
    flex-direction: column;
    align-items: center;
    padding: 0 25px;
    gap: 0;
  }

  .flow-step {
    width: 205px;
    max-width: 205px;
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .flow-step:not(:last-child) {
    margin-bottom: 64px;
  }

  .flow-step-num {
    width: 48px;
    height: 48px;
    font-size: 15px;
    margin: 0 auto 8px;
  }

  .flow-step-title {
    text-align: center;
    font-size: 15px;
  }

  .flow-step-text {
    text-align: center;
    font-size: 14px;
    line-height: 20.4px;
  }

  .flow-step:not(:last-child)::after {
    left: 50%;
    top: auto;
    bottom: -48px;
    transform: translateX(-50%);
    width: 1px;
    height: 32px;
    right: auto;
    background: var(--gold);
    opacity: 1;
  }

  .info .section-bg-text {
    font-size: 48px;
    line-height: 64px;
  }

  .info-inner {
    padding: 0 25px;
    max-width: 390px;
    margin: 0 auto;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 340px;
    margin: 0 auto;
  }

  .info-card {
    padding: 26px 20px;
    width: 340px;
    box-sizing: border-box;
  }

  .info-card-item {
    font-size: 14px;
    line-height: 26px;
    padding: 0;
  }

  .info-card-text {
    font-size: 14px;
    line-height: 24px;
  }

  .info-card-gold {
    font-size: 14px;
    line-height: 22px;
  }

  .info-detail-row {
    grid-template-columns: 1fr;
  }

  .insurance-table th,
  .cancel-table th {
    font-size: 15px;
    padding: 12px 16px;
  }

  .insurance-table td,
  .cancel-table td {
    font-size: 14px;
    padding: 12px 16px;
    white-space: nowrap;
  }

  .insurance-table td:last-child,
  .cancel-table td:last-child {
    white-space: normal;
  }

  .info-section-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .noc-text,
  .noc-detail,
  .noc-note,
  .cancel-note {
    font-size: 13px;
    line-height: 26px;
  }

  .info-subsection {
    width: 100%;
  }

  .info-card table {
    font-size: 14px;
  }

  .info-card table th {
    padding-left: 22px;
  }

  .info-card table td {
    padding-left: 139px;
  }

  /* SP Section padding overrides */
  .about {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .service {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .reason {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 16px;
  }

  .gallery {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .flow {
    margin-top: 80px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .info {
    margin-top: 80px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .info-header {
    margin-bottom: 32px;
  }

  .faq {
    margin-top: 80px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .company {
    margin-top: 80px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .company-inner {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 48px;
    max-width: 390px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .company-map-block {
    order: 2;
  }

  .company-content-block {
    order: 1;
    padding: 0 25px;
    text-align: center;
    align-items: center;
  }

  .company-content-block .section-label {
    justify-content: center;
  }

  .company-content-block .section-label::before {
    display: none;
  }

  .company-content-block .section-title {
    text-align: center;
  }

  .company-content-block .section-desc {
    text-align: center;
  }

  .company-content-block .section-desc::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 8px auto 0;
  }

  .company-content-block .section-divider {
    display: block;
    margin: 8px auto 0;
  }

  .company-table {
    width: 340px;
    margin-top: 32px;
  }

  .company-table tr {
    display: block;
    padding: 0;
  }

  .company-table tr:not(:last-child) {
    border-bottom: 2px solid #666;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .company-table th {
    display: block;
    width: 100%;
    padding: 0;
    font-size: 15px;
    line-height: 30.4px;
    border-bottom: none;
    text-align: left;
  }

  .company-table td {
    display: block;
    padding: 0;
    margin-top: 8px;
    font-size: 15px;
    line-height: 15px;
    border-bottom: none;
    text-align: left;
  }

  .company-table tr:nth-child(3) td {
    line-height: 24px;
  }

  .map-container {
    width: 100%;
    height: 390px;
    border: none;
  }

  .faq-list {
    padding: 0;
    max-width: 340px;
    margin: 0 auto;
  }

  .faq-q-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 20.8px;
  }

  .faq-q-mark {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 25.2px;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 25.2px;
    color: #c0c0c0;
    padding: 16px 0 24px 0;
  }

  .faq-item {
    border-bottom-color: #6a6a6a;
  }

  .news {
    margin-top: 80px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .news-inner {
    grid-template-columns: 1fr;
    padding: 0 25px;
    gap: 32px;
    max-width: 390px;
    margin: 0 auto;
  }

  .news-inner > div:first-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .news-inner > div:first-child .section-label {
    justify-content: center;
  }

  .news-inner > div:first-child .section-label::before {
    display: none;
  }

  .news-inner > div:first-child .section-title {
    font-size: 26px;
    text-align: center;
  }

  .news-inner > div:first-child .section-desc {
    text-align: center;
  }

  .news-inner > div:first-child .section-desc::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 8px auto 0;
  }

  .news-list {
    width: 340px;
  }

  .news-list > li {
    display: block;
    padding: 16px 0;
    border-bottom: 2px solid #666;
  }

  .news-list > li:first-child {
    padding-top: 0;
  }

  .news-list > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .news-date {
    font-size: 12px;
    display: inline;
    margin-right: 26px;
  }

  .news-badge {
    display: inline-block;
  }

  .news-text {
    display: block;
    margin-top: 8px;
    font-size: 15px;
  }

  .cta {
    padding: 0;
    margin-top: 80px;
  }

  .cta-inner {
    max-width: 390px;
    margin: 0 auto;
    padding: 0 25px;
    box-sizing: border-box;
  }

  .cta-tagline {
    font-size: 24px;
    font-weight: 500;
    line-height: 38.4px;
    letter-spacing: 1.2px;
    margin-bottom: 0;
  }

  .cta-box {
    background: none;
    padding: 0;
    margin-top: 32px;
  }

  .cta-sub {
    font-size: 14px;
    margin-bottom: 17px;
  }

  .cta-tel {
    font-size: 30px;
    letter-spacing: 2.89px;
    margin-bottom: 17px;
  }

  .cta-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 17px;
    justify-content: center;
  }

  .btn-cta-primary,
  .btn-cta-price {
    width: auto;
    max-width: none;
    padding: 14px 22px;
    font-size: 14px;
    letter-spacing: 0.72px;
    white-space: nowrap;
  }

  .btn-cta-line {
    width: auto;
    max-width: none;
    padding: 14px 22px;
    font-size: 14px;
    letter-spacing: 0.72px;
    white-space: nowrap;
  }

  .beach {
    height: 176px;
    margin-top: 80px;
  }

  footer {
    border-top: none;
    margin-top: 80px;
  }

  .footer-inner {
    padding: 0 25px 40px;
    max-width: 340px;
    margin: 0 auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo-col {
    align-items: center;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: none;
  }

  .footer-nav a {
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.8px;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact-label {
    font-size: 14px;
    letter-spacing: 0;
  }

  .footer-tel {
    font-size: 20px;
  }

  .footer-qr {
    width: auto;
    height: auto;
    margin: 0 auto;
  }

  .footer-qr img {
    display: none;
  }

  .footer-qr a {
    display: inline-block;
    border: 1px solid var(--gold);
    padding: 14px 22px;
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.72px;
    color: var(--gold);
    text-decoration: none;
  }

  .footer-qr a::after {
    content: '公式LINEはこちら';
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 8px;
    text-align: center;
    border-top-color: #2a2a2a;
    margin-top: 32px;
    padding-top: 20px;
  }

  .footer-bottom a {
    font-size: 12px;
  }

  .footer-bottom small {
    font-size: 12px;
  }

  /* SP Header */
  header {
    height: 40px;
  }

  .logo img {
    height: 16px;
  }

  .header-right {
    gap: 20px;
    padding-right: 0;
  }

  .tel-header-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
  }

  .tel-header-sp svg {
    width: 17px;
    height: 17px;
  }

  .btn-line-header-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 0;
    text-decoration: none;
  }

  .btn-line-header-sp svg {
    width: 19px;
    height: 18px;
  }

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
  }

  .burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
  }

  /* SP Menu Overlay */
  .sp-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: #1e1e1e;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding: 60px 40px;
  }

  .sp-menu.open {
    transform: translateX(0);
  }

  .sp-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .sp-menu-close span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background: var(--white);
  }

  .sp-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(30deg);
  }

  .sp-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-30deg);
  }

  .sp-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
  }

  .sp-menu-link {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
  }

  .sp-menu-link:hover {
    color: var(--gold);
  }

  .sp-menu-tel {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.91px;
    margin-bottom: 20px;
    padding: 10px;
  }

  .sp-menu-line {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 16px 20px;
    text-decoration: none;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .sp-menu-line-icon {
    width: 19px;
    height: 18px;
    flex-shrink: 0;
  }
}

/* PC: hide SP elements */
@media (min-width: 769px) {
  .burger-btn { display: none; }
  .sp-menu { display: none !important; }
  .tel-header-sp { display: none; }
  .btn-line-header-sp { display: none; }
}
