:root {
  --green: #0F4A4A;
  --dark: #1F2A2A;
  --gray: #5F6B6B;
  --light: #DDE5E1;
  --line: #E4EAE6;
  --white: #FFFFFF;
  --cream: #FAF8F4;
  --beige: #F7F5F0;
  --mint: #EEF5F2;
  --shadow: 0 24px 60px rgba(15, 74, 74, .08);
  --radius: 28px;
  --font-jp: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-en: "Montserrat", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  color: var(--dark);
  font-family: var(--font-jp);
  line-height: 1.9;
  letter-spacing: .03em;
  background: var(--white);
}

img,
video,
iframe {
  max-width: 100%;
  display: block;
}

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

::selection {
  background: rgba(15, 74, 74, .14);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 86px;
  display: flex;
  align-items: center;
  padding: 18px clamp(22px, 5vw, 72px);
  gap: 32px;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(31, 42, 42, .06);
}

.header-label {
  margin: 0;
  color: var(--gray);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
  line-height: 1;
}

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

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.header-nav a {
  position: relative;
  padding: 8px 0;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width .25s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 1px;
  background: var(--green);
  margin: 8px 0;
  transition: transform .25s ease;
}

.mobile-nav {
  display: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}

.pill:hover {
  transform: translateY(-2px);
}

.pill-primary {
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
}

.pill-outline {
  color: var(--green);
  background: rgba(255,255,255,.62);
  border: 1px solid var(--green);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px clamp(26px, 7vw, 104px) 90px;
  isolation: isolate;
  background: var(--beige);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,.44) 100%),
    linear-gradient(180deg, rgba(250,248,244,.70), rgba(247,245,240,.50));
}

.hero-inner {
  width: min(760px, 100%);
}

.hero-en,
.section-kicker {
  font-family: var(--font-en);
  color: var(--green);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.55;
}

.hero-en {
  margin: 0 0 26px;
  font-size: clamp(17px, 2.2vw, 25px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(43px, 7vw, 78px);
  line-height: 1.18;
  letter-spacing: .04em;
}

.hero-lead {
  margin: 26px 0 0;
  color: var(--gray);
  font-size: clamp(16px, 2vw, 23px);
  line-height: 2;
}

.hero-inline-video {
  display: none;
}

.hero-section-links {
  position: absolute;
  right: clamp(30px, 7vw, 104px);
  bottom: 70px;
  display: flex;
  gap: clamp(36px, 5vw, 72px);
  font-family: var(--font-en);
  color: var(--green);
  font-weight: 700;
  letter-spacing: .12em;
}

/* PC版：ファーストビュー下リンクを非表示 */
.hero-section-links {
  display: none;
}

.hero-section-links a {
  position: relative;
  padding-bottom: 14px;
}

.hero-section-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 1px;
  background: var(--green);
  transform: translateX(-50%) scaleX(.25);
  transform-origin: center;
  opacity: .25;
  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    opacity .25s ease;
}

.hero-section-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.scroll-sign {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: var(--gray);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .12em;
  text-align: center;
  width: max-content;
}

.scroll-sign::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--light);
}

section {
  position: relative;
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-beige {
  background: var(--beige);
}

.section-grid {
  width: min(1248px, calc(100% - 52px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 126px) 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(42px, 7vw, 96px);
}

.section-grid-border {
  position: relative;
}

.section-grid-border::before {
  content: "";
  position: absolute;
  top: clamp(78px, 10vw, 126px);
  bottom: clamp(78px, 10vw, 126px);
  left: calc(42.5% + 8px);
  width: 1px;
  background: var(--line);
}

.section-kicker {
  margin: 0 0 18px;
  font-size: 15px;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.45;
  letter-spacing: .04em;
}

.section-heading p:not(.section-kicker),
.section-body,
.contact p,
.shop-info {
  color: var(--gray);
  font-size: clamp(15px, 1.7vw, 20px);
}

.section-body p {
  margin: 0 0 24px;
}

.section-body .emphasis {
  color: var(--gray);
  font-weight: 400;
  font-size: 1.08em;
}

.works-slider {
  display: flex;
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 4px 0 18px;
}

.insta-card {
  flex: 0 0 268px;
  min-width: 268px;
}

.insta-thumb {
  height: 208px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #F9F7F2, #E8EFEA);
  position: relative;
  box-shadow: var(--shadow);
}

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

.insta-thumb.placeholder::before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 999px;
  border: 1px solid rgba(15, 74, 74, .2);
}

.insta-card h3 {
  margin: 18px 0 2px;
  font-size: 18px;
  line-height: 1.55;
}

.insta-card p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.insta-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--green);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
}

/* 深緑強調テキスト */
.green-text {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  font-size: 1.16em;
  letter-spacing: .06em;
}

/* WORKS：PC版 スライダー操作を写真の真下に配置 */
.works-slider-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.slider-controls {
  width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .08em;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--light);
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  color: var(--green);
  cursor: pointer;
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 110px;
}

.service-list {
  display: grid;
}

.service-item {
  display: block;
  text-align: center;
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.service-item h3 {
  margin: 0px 0 10px;
  font-size: clamp(23px, 3vw, 33px);
  line-height: 1.45;
}

.service-item p {
  margin: 0;
  color: var(--gray);
  font-size: clamp(15px, 1.6vw, 19px);
}

.service-price {
  display: inline-block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 700;
}

/* =========================
   COATING PRICE
========================= */

.coating-grid {
  align-items: start;
}

.coating-content {
  min-width: 0;
}

.coating-recommend {
  margin-top: 34px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}

.coating-recommend span {
  display: block;
  margin-bottom: 6px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}

.coating-recommend strong {
  display: block;
  color: var(--green);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
}

.coating-recommend p {
  margin: 8px 0 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
}

.coating-price-table {
  min-width: 0;
  background: rgba(255, 255, 255, .50);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding-bottom: 6px;
}

.coating-table-head {
  display: grid;
  grid-template-columns: 1.45fr 1.3fr 1fr 1fr 1fr;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.coating-table-head div {
  padding: 16px 14px;
  text-align: center;
}

.coating-table-head .is-recommend {
  background: rgba(255, 255, 255, .16);
}

.coating-price-row {
  display: grid;
  grid-template-columns: 1.45fr 1.3fr 1fr 1fr 1fr;
  align-items: center;
  min-height: 128px;
  margin: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  overflow: hidden;
}

.car-size {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.car-size img {
  width: 110px;
  height: 78px;
  object-fit: contain;
}

.car-size h3 {
  margin: 0;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.4;
}

.car-size p {
  display: none;
}

.car-example {
  margin: 0;
  padding: 18px 14px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.size-note {
  text-align: left;
}

.plan-price {
  height: 100%;
  min-height: 128px;
  display: grid;
  place-content: center;
  padding: 18px 10px;
  text-align: center;
}

.plan-price span {
  display: block;
  margin-top: 6px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.4;
}

.plan-price strong {
  display: block;
  color: var(--green);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.4;
  white-space: nowrap;
}

.plan-price.recommend {
  background: rgba(15, 74, 74, .09);
  position: relative;
}

/* CONTACTの見出しラベルを他セクションと統一 */
.contact .section-kicker {
  color: var(--green);
}

/* PC版 COATING PRICE 横ズレ調整 */
@media (min-width: 961px) {

/* PC版：COATING見出しを一行にする */
  #coatingTitle {
    white-space: nowrap;
  }

.coating-table-head,
.coating-price-row {
  grid-template-columns: 105px minmax(120px, .85fr) repeat(3, minmax(120px, 1fr));
}

  .coating-table-head div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 14px 10px;
    line-height: 1.5;
    text-align: center;
  }

  .coating-price-row {
    min-height: 112px;
  }

  .car-size {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
  }

  .car-size h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    white-space: nowrap;
  }

   .car-example {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 12px 10px;
    text-align: center;
  }

  .car-example img {
    display: block;
    width: 100%;
    max-width: 145px;
    height: 76px;
    object-fit: contain;
  }

  .car-example span {
    display: none;
  } 

  .size-guide h3,
  .size-guide > p {
    text-align: center;
  }

}

  .plan-price {
    min-height: 112px;
    padding: 18px 10px;
  }

  .plan-price span {
    font-size: 13px;
    white-space: nowrap;
  }

.plan-price strong {
  font-size: clamp(18px, 1.55vw, 22px);
  white-space: nowrap;
}

.plan-price.recommend span,
.plan-price.recommend strong {
  color: var(--green);
}

/* =========================
   COATING PACK
========================= */

.coating-pack {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(15, 74, 74, .06);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.coating-pack + .coating-price-table {
  margin-top: 42px;
}

.coating-pack h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
}

.pack-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.pack-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.pack-table th,
.pack-table td {
  padding: 14px 12px;
  border: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.6;
}

.pack-table thead th {
  background: var(--mint);
  color: var(--green);
  font-weight: 800;
}

.pack-table tbody th {
  width: 34%;
  background: rgba(238, 245, 242, .72);
  color: var(--dark);
  font-weight: 700;
}

.pack-table td {
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
}

.pack-table td span {
  display: inline-block;
  margin-top: 4px;
  color: var(--dark);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.pack-note {
  margin: 16px 0 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.8;
}

.coating-price-note {
  margin: 0;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 13px;
  line-height: 1.8;
  background: rgba(255, 255, 255, .54);
}

.coating-price-table {
  width: 100%;
  overflow: hidden;
}

.coating-content {
  min-width: 0;
}

.size-guide {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.size-guide h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.5;
}

.size-guide p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.9;
}

.size-formula {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .65);
  color: var(--green);
  font-weight: 700;
  text-align: center;
}

.size-table-wrap {
  overflow-x: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.size-table th,
.size-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 15px;
}

.size-table th {
  background: var(--mint);
  color: var(--green);
  font-weight: 700;
}

.size-table td:first-child {
  color: var(--green);
  font-weight: 700;
  width: 32%;
}

/* 車両サイズ確認イメージ */
.size-guide-image {
  margin: 26px auto 24px;
  max-width: 620px;
}

.size-guide-image img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

/* PC版：サイズ表下の注意文を表に合わせて左寄せ */
.size-guide .size-note {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: 18px;
}

.shop-grid {
  align-items: center;
}

.shop-info {
  margin-top: 34px;
}

.shop-info p {
  margin: 0 0 8px;
}

.map-wrap {
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--mint);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
}

.contact {
  text-align: center;
}

.contact-inner {
  width: min(980px, calc(100% - 52px));
  margin: 0 auto;
  padding: clamp(84px, 10vw, 130px) 0;
}

.contact h2 {
  margin-bottom: 26px;
}

.contact-buttons {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--gray);
}

.site-footer {
  min-height: 190px;
  padding: 52px clamp(26px, 7vw, 96px);
  background: var(--green);
  color: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  margin: 0 0 6px;
  color: var(--white);
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .08em;
}

.site-footer p {
  margin: 0;
}

.fixed-cta {
  display: none;
}

.sp-only {
  display: none;
}

/* CONCEPT：締めの文章を少し印象的に */
.section-body .emphasis {
  margin-top: 34px;
  line-height: 2.25;
}

.pack-scroll-note {
  display: none;
}

@media (max-width: 960px) {
  .site-header {
    height: 78px;
    padding: 18px 18px;
    justify-content: center;
  }

  .header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  max-width: none;
  font-size: 9px;
  letter-spacing: .02em;
  white-space: nowrap;
  color: var(--gray);
}

.menu-button {
  position: absolute;
  right: 14px;
}

  .hero-video {
    display: none;
  }

  .hero-inline-video {
    display: block;
    width: calc(100% + 52px);
    margin: 28px 0 0 -26px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: var(--cream);
  }

  .hero-inline-video video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .header-logo img {
    width: 140px;
  }

  .header-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
    position: absolute;
    right: 14px;
    margin-left: 0;
  }

  body.nav-open .menu-button span:first-child {
    transform: translateY(4.5px) rotate(28deg);
  }

  body.nav-open .menu-button span:last-child {
    transform: translateY(-4.5px) rotate(-28deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 45;
    inset: 78px 16px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  body.nav-open .mobile-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 12px 14px;
    color: var(--dark);
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: .08em;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav .mobile-nav-cta {
    margin-top: 8px;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    text-align: center;
  }

  .hero {
    min-height: 100svh;
    padding: 72px 20px 92px;
    align-items: flex-start;
    background: var(--beige);
  }

  .hero-overlay {
    display: none;
  }

  .hero-en {
    margin-top: 14px;
    margin-bottom: 24px;
    font-size: 17px;
  }

  .hero h1 {
    font-size: clamp(32px, 8.8vw, 40px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: .01em;
  }

  .pill {
    min-height: 52px;
    padding: 0 18px;
    font-size: 14px;
  }

.hero-section-links {
  position: static;
  display: flex;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  margin-top: 26px;
  font-size: 13px;
}

  .hero-section-links a::after {
    width: 68px;
  }

  .scroll-sign {
    bottom: 24px;
  }

  .section-grid,
  .shop-grid {
    width: min(100% - 52px, 560px);
    padding: 74px 0;
    display: block;
  }

  .section-grid-border::before {
    display: none;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .section-heading p:not(.section-kicker),
  .section-body,
  .contact p,
  .shop-info {
    font-size: 15px;
  }

  .section-body {
    margin-top: 36px;
  }

  /* スマホ版：強調テキストを少し大きく */
.green-text {
  font-size: 1.2em;
}

  .works-slider-wrap {
    margin-top: 36px;
    width: calc(100vw - 26px);
  }

  .works-slider {
    overflow-x: auto;
    padding-right: 26px;
    scroll-snap-type: x mandatory;
  }

  .insta-card {
    flex-basis: 240px;
    min-width: 240px;
    scroll-snap-align: start;
  }

  .insta-thumb {
    height: 188px;
  }

  /* COATING PACK - mobile */
.coating-pack {
  margin-top: 24px;
  padding: 20px 16px;
  border-radius: 22px;
}

.coating-pack h3 {
  text-align: center;
  font-size: 22px;
}

  .pack-scroll-note {
    display: block;
    margin: 0 0 10px;
    color: var(--gray);
    font-size: 12px;
    text-align: center;
  }

.pack-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pack-table {
  min-width: 560px;
}

.pack-table th,
.pack-table td {
  padding: 12px 10px;
  font-size: 13px;
}

.pack-table td {
  font-size: 17px;
}

.pack-table td span {
  font-size: 11px;
}

.pack-note {
  text-align: left;
  font-size: 12px;
}

/* WORKS：スマホ版 スライダー操作を中央寄せ */
.slider-controls {
  justify-content: center;
  width: calc(100vw - 52px);
  margin-top: 10px;
}

  .sticky-heading {
    position: static;
  }

  .service-list {
    margin-top: 48px;
  }

  .service-item {
    display: block;
    text-align: center;
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .service-item h3 {
    margin-top: 0px;
    font-size: 23px;
  }

.size-guide {
  margin-top: 36px;
  padding-top: 30px;
}

.size-formula {
  padding: 16px;
  font-size: 14px;
}

.size-table th,
.size-table td {
  padding: 14px 12px;
  font-size: 14px;
}

.size-note {
  text-align: left;
  margin-top: 18px;
  font-size: 13px;
}

/* COATING PRICE - mobile */

.coating-recommend {
  margin-top: 28px;
  padding: 20px;
  border-radius: 22px;
}

.coating-recommend strong {
  font-size: 21px;
}

.coating-price-table {
  margin-top: 42px;
  border-radius: 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.coating-table-head {
  display: none;
}

.coating-price-row {
  display: block;
  min-height: 0;
  margin-bottom: 22px;
  padding: 22px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 42px rgba(15, 74, 74, .07);
}

.car-size {
  display: block;
  padding: 0;
  text-align: center;
}

.car-size h3 {
  font-size: 24px;
}

.car-size p {
  display: none;
}

.car-example {
  display: block;
  margin: 4px 0 18px;
  padding: 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.car-example img {
  display: block;
  width: 82%;
  max-width: 260px;
  height: 120px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.car-example span {
  display: block;
}

.plan-price {
  min-height: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  text-align: left;
}

.plan-price span {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.plan-price strong {
  font-size: 20px;
}

.plan-price.recommend {
  margin: 0 -18px;
  padding: 16px 18px;
  background: rgba(15, 74, 74, .09);
}

.coating-price-note {
  margin-top: 10px;
  padding: 16px 2px 0;
  border-top: 0;
  background: transparent;
  font-size: 12px;
  line-height: 1.8;
}

  .map-wrap {
    margin-top: 36px;
    min-height: 280px;
    border-radius: 22px;
  }

  .map-wrap iframe {
    height: 310px;
  }

  .contact-inner {
    width: min(100% - 52px, 560px);
    padding: 78px 0 96px;
  }

  /* CONCEPT：スマホ版 締めの文章 */
.section-body .emphasis {
  margin-top: 34px;
  line-height: 2.15;
}

  .contact-buttons {
    display: grid;
    gap: 12px;
  }

  .site-footer {
    padding: 52px 26px 110px;
    display: block;
  }

  .site-footer small {
    display: block;
    margin-top: 26px;
  }

  .fixed-cta {
    position: fixed;
    z-index: 60;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 16px 42px rgba(31,42,42,.16);
    backdrop-filter: blur(16px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(28px) scale(.98);
    pointer-events: none;
    transition:
      opacity .75s ease,
      transform .75s cubic-bezier(.16, 1, .3, 1),
      visibility .75s ease;
  }

  .fixed-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .fixed-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
  }

  .fixed-cta a:last-child {
    background: var(--white);
    border: 1px solid var(--green);
    color: var(--green);
  }

  .sp-only {
    display: block;
  }

/* スマホ版：各セクションの文章を中央寄せ */
.section-heading,
.section-heading h2,
.section-heading p,
.section-body,
.section-body p,
.coating-recommend,
.coating-recommend p,
.size-guide,
.size-guide h3,
.shop-info,
.shop-info p {
  text-align: center;
}

/* サイズ確認の説明文は中央、注意文は左寄せ */
.size-guide > p {
  text-align: center;
}

.size-guide .size-note {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: 18px;
}

/* スマホ版：CONCEPT本文の余白を少し整える */
.section-body p {
  margin-left: auto;
  margin-right: auto;
}

/* スマホ版：SHOP情報の見え方調整 */
.shop-info {
  margin-left: auto;
  margin-right: auto;
}

/* スマホ版：フッターのコピーライトだけ右寄せ */
.site-footer small {
  text-align: right;
}

/* 車両サイズ注意文は読みやすく左寄せ */
.size-note {
  text-align: left;
}

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  .hero {
    background: url("./assets/hero-poster.jpg") center / cover;
  }

  .pill,
  .header-nav a::after,
  .mobile-nav,
  .menu-button span {
    transition: none;
  }
}
