      :root {
        --bg: #0a0a0a;
        --surface: #0f1116;
        --line: #252a33;
        --gold: #a8864b;
        --gold-soft: #d3ba84;
        --text: #f2f4f8;
        --muted: #9ca3af;
        --section-gray: #f4f4f4;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        background: #ebebeb;
        color: var(--text);
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      }

      .page {
        width: 100%;
        margin: 0;
        background: #f4f4f4;
      }

      .hero {
        position: relative;
        min-height: 600px;
        color: #fff;
        background: #000;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        left: 8%;
        right: 8%;
        bottom: 28px;
        height: 220px;
        border-radius: 50%;
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0.95) 72%);
      }

      .hero::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 58%;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(90deg, #000 0%, #000 45%, rgba(0, 0, 0, 0) 100%);
      }

      .hero-video-wrap {
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        height: 100%;
        overflow: hidden;
      }

      .hero-video-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0.55));
      }

      .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .hero.hero--company-image .hero-video-wrap--static-bg {
        left: 0;
        right: 0;
        width: 100%;
        background-image: url("../img/other_hero.png");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
      }

      .hero.hero--line-image .hero-video-wrap--static-bg {
        background-image: url("../img/line_hero.png");
        filter: brightness(0.45) saturate(0.92);
      }

      .hero.hero--line-image .hero-video-wrap::after {
        display: block;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.86),
          rgba(0, 0, 0, 0.58) 36%,
          rgba(0, 0, 0, 0.8)
        );
      }

      .hero.hero--company-overlay .hero-video-wrap--static-bg {
        filter: brightness(0.45) saturate(0.92);
      }

      .hero.hero--company-overlay .hero-video-wrap::after {
        display: block;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.86),
          rgba(0, 0, 0, 0.58) 36%,
          rgba(0, 0, 0, 0.8)
        );
      }

      .hero.hero--company-image .hero-video-wrap::after {
        display: none;
      }

      .hero.hero--company-image::after {
        background: linear-gradient(
          90deg,
          rgba(0, 0, 0, 0.3) 0%,
          rgba(0, 0, 0, 0.3) 45%,
          rgba(0, 0, 0, 0) 100%
        );
      }

      .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 60;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 38px;
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(4px);
      }

      .header-bar {
        display: contents;
      }

      .logo {
        position: relative;
        z-index: 21;
        display: inline-flex;
        align-items: center;
      }

      .header .logo > a {
        display: inline-flex;
        line-height: 0;
        text-decoration: none;
      }

      .logo img {
        display: block;
        width: 170px;
        height: auto;
      }

      footer .logo img {
        width: 150px;
      }

      .nav {
        display: flex;
        align-items: center;
        gap: 32px;
        font-size: 12px;
        color: #3d4248;
      }

      .nav a {
        position: relative;
        display: inline-block;
        color: #3d4248;
        text-decoration: none;
      }

      .nav a:not(.cta) {
        font-weight: 700;
      }

      @media (min-width: 901px) {
        .nav {
          margin-right: 32px;
        }
      }

      .nav a:not(.cta)::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 1px;
        background: #c7a564;
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
      }

      .nav a:not(.cta):hover::after,
      .nav a:not(.cta):focus-visible::after {
        transform: scaleX(1);
      }

      .nav .cta {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 14px;
        margin-left: 20px;
        padding: 13px 20px 13px 24px;
        background: #b18d4f;
        color: #fff;
        font-weight: 700;
        overflow: hidden;
        transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        isolation: isolate;
      }

      .nav .cta::after {
        content: "";
        width: 6px;
        height: 6px;
        border-top: 1.5px solid #fff;
        border-right: 1.5px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.28s ease;
      }

      .nav .cta::before {
        content: "";
        position: absolute;
        top: -8%;
        bottom: -8%;
        left: -20%;
        right: -20%;
        z-index: -1;
        background: linear-gradient(
          120deg,
          rgba(196, 166, 106, 0) 0%,
          rgba(196, 166, 106, 0.86) 32%,
          rgba(138, 106, 53, 0.92) 62%,
          rgba(138, 106, 53, 0) 100%
        );
        filter: blur(2px);
        transform: translateX(-62%);
        transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
      }

      .nav .cta:hover {
        color: #ffffff;
        transform: translateY(-1px);
      }

      .nav .cta:hover::before {
        transform: translateX(0);
      }

      .nav .cta:hover::after {
        transform: translateX(6px) rotate(45deg);
      }

      .nav-toggle {
        display: none;
        position: relative;
        z-index: 72;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        border-radius: 4px;
        background: rgba(0, 0, 0, 0.05);
        color: #3d4248;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease;
      }

      .nav-toggle:hover,
      .nav-toggle:focus-visible {
        background: rgba(0, 0, 0, 0.08);
        outline: none;
      }

      .nav-toggle:focus-visible {
        box-shadow: 0 0 0 2px rgba(177, 141, 79, 0.5);
      }

      .nav-toggle-bar {
        position: absolute;
        left: 11px;
        right: 11px;
        height: 2px;
        background: currentColor;
        border-radius: 1px;
        transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
      }

      .nav-toggle-bar:nth-child(1) {
        top: 14px;
      }

      .nav-toggle-bar:nth-child(2) {
        top: 21px;
      }

      .nav-toggle-bar:nth-child(3) {
        top: 28px;
      }

      .header.nav-open .nav-toggle-bar:nth-child(1) {
        top: 21px;
        transform: rotate(45deg);
      }

      .header.nav-open .nav-toggle-bar:nth-child(2) {
        opacity: 0;
      }

      .header.nav-open .nav-toggle-bar:nth-child(3) {
        top: 21px;
        transform: rotate(-45deg);
      }

      .nav-backdrop {
        display: none;
      }

      .hero-copy {
        position: relative;
        z-index: 3;
        padding: 197px 50px 90px 90px;
        max-width: 640px;
      }

      .hero-copy h1 {
        margin: 0 0 18px;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
        font-size: 60px;
        font-weight: 500;
        letter-spacing: 0.08em;
        white-space: nowrap;
      }

      .hero-copy h1 .gold {
        background: linear-gradient(90deg, #f1dfa8 0%, #d0aa63 48%, #a87f3f 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
      }

      .hero-copy > p {
        margin: 0 0 26px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 17px;
        line-height: 1.8;
        letter-spacing: 0.04em;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 18px;
        padding: 12px 18px;
        border: 1px solid rgba(196, 160, 96, 0.7);
        color: #f2e7cf;
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 0.06em;
      }

      .hero-copy:not(.hero-copy--dual-coating):not(.hero-copy--dual-repair):not(.hero-copy--dual-company) .btn,
      .consult-main .btn {
        position: relative;
        border: 0;
        padding: 16px 24px 16px 30px;
        background: #b18d4f;
        color: #fff;
        font-size: 15px;
        letter-spacing: 0.08em;
        overflow: hidden;
        transition: color 0.32s ease, transform 0.32s ease, box-shadow 0.32s ease;
        isolation: isolate;
      }

      .consult-main .btn {
        margin-top: 20px;
        flex-shrink: 0;
        align-self: center;
      }

      .hero-copy:not(.hero-copy--dual-coating):not(.hero-copy--dual-repair):not(.hero-copy--dual-company) .btn::after,
      .consult-main .btn::after {
        content: "";
        width: 9px;
        height: 9px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.28s ease;
      }

      .hero-copy:not(.hero-copy--dual-coating):not(.hero-copy--dual-repair):not(.hero-copy--dual-company) .btn::before,
      .consult-main .btn::before {
        content: "";
        position: absolute;
        top: -8%;
        bottom: -8%;
        left: -18%;
        right: -18%;
        z-index: -1;
        background: linear-gradient(
          115deg,
          rgba(201, 173, 115, 0) 0%,
          rgba(201, 173, 115, 0.88) 34%,
          rgba(142, 107, 50, 0.93) 65%,
          rgba(142, 107, 50, 0) 100%
        );
        filter: blur(2px);
        transform: translateX(-58%);
        transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
      }

      .hero-copy:not(.hero-copy--dual-coating):not(.hero-copy--dual-repair):not(.hero-copy--dual-company) .btn:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
      }

      .consult-main .btn:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: none;
      }

      .hero-copy:not(.hero-copy--dual-coating):not(.hero-copy--dual-repair):not(.hero-copy--dual-company) .btn:hover::before,
      .consult-main .btn:hover::before {
        transform: translateX(0);
      }

      .hero-copy:not(.hero-copy--dual-coating):not(.hero-copy--dual-repair):not(.hero-copy--dual-company) .btn:hover::after,
      .consult-main .btn:hover::after {
        transform: translateX(5px) rotate(45deg);
      }

      .section-dark {
        margin: 0;
        background: #06080d;
      }

      .coating-page-main-placeholder,
      .repair-page-main-placeholder {
        padding-block: clamp(2.5rem, 5vw, 4rem);
        background: #f4f4f4;
      }

      .repair-page-main {
        padding-top: 0;
        padding-bottom: 0;
        color: #1f2937;
        background-color: #f6f4ef;
        background-image:
          linear-gradient(to bottom, rgba(246, 244, 239, 0.94), rgba(246, 244, 239, 0.98)),
          url("../img/coating_back.png");
        background-repeat: no-repeat;
        background-position: center top, center top;
        background-size: 100% 100%, 100% auto;
      }

      .repair-main-shell {
        width: min(1320px, 100%);
        margin: 0 auto;
        padding-inline: clamp(16px, 3vw, 40px);
        padding-top: clamp(2.5rem, 5vw, 4rem);
      }

      .repair-block {
        position: relative;
        z-index: 0;
        margin-bottom: 0;
        padding: clamp(18px, 2.6vw, 28px);
      }

      .repair-block:last-child {
        margin-bottom: 0;
      }

      .repair-main-shell > .repair-block::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%);
        z-index: -1;
      }

      .repair-main-shell > .repair-block:nth-of-type(odd)::before {
        background: rgba(255, 255, 255, 0.9);
      }

      .repair-main-shell > .repair-block:nth-of-type(even)::before {
        background: rgba(251, 248, 243, 0.46);
      }

      .repair-kicker {
        margin: 0 0 8px;
        font-size: 11px;
        letter-spacing: 0.2em;
        color: #c39d5a;
        text-transform: uppercase;
      }

      .repair-block h2 {
        margin: 0 0 14px;
        font-size: clamp(20px, 2.6vw, 26px);
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: 0.06em;
        color: #111827;
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      }

      .repair-block p {
        margin: 0;
        color: #374151;
        line-height: 1.9;
        font-size: 14px;
      }

      .repair-block--accident .line-box--repair-match .line-box-kicker {
        margin: 0 0 4px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.06em;
        line-height: 1.3;
        color: #fff;
        opacity: 0.96;
      }

      .repair-block--accident .line-box--repair-match .line-box-title {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.06em;
        line-height: 1.15;
        color: #fff;
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      }

      .repair-block--accident .line-box--repair-match .line-box-area-title {
        margin: 0 0 8px;
        font-size: 12px;
        font-weight: 600;
        color: #111827;
        letter-spacing: 0.03em;
      }

      .repair-block--accident .line-box--repair-match .line-box-areas {
        margin: 0 0 5px;
        font-size: 10px;
        font-weight: 500;
        color: #1f2937;
        line-height: 1.65;
        letter-spacing: 0.02em;
      }

      .repair-block--accident .line-box--repair-match .line-box-areas:last-child {
        margin-bottom: 0;
      }

      .repair-block--accident .line-box--repair-match {
        border: none;
      }

      .repair-block--accident .line-box--repair-match .line-box-body {
        padding-top: 32px;
        padding-bottom: 28px;
      }

      @media (min-width: 901px) {
        .repair-block--accident .line-box--repair-match .line-box-body {
          padding-top: 16px;
          padding-bottom: 16px;
        }

        .repair-block--accident .line-box--repair-match .line-box-kicker {
          font-size: 14px;
          margin-bottom: 3px;
        }

        .repair-block--accident .line-box--repair-match .line-box-title {
          font-size: 31px;
          line-height: 1.1;
        }
      }

      .repair-page-main .coating-svc-kicker {
        margin: 0 0 6px;
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        font-weight: 600;
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
        color: #a8864b;
      }

      .repair-page-main .repair-svc-step-title {
        display: block;
        margin-bottom: 4px;
        color: #a8864b;
        font-weight: 600;
      }

      .repair-page-main .repair-svc-step-subtitle {
        display: block;
        color: #e5e7eb;
      }

      .repair-page-main .coating-svc-step {
        background: #2b2521;
        border-color: #b99657;
        color: #f3f4f6;
      }

      .repair-block--intro {
        padding: 0;
        margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
      }

      .repair-main-shell > .repair-block--intro::before {
        content: none;
      }

      .repair-page-main .coating-svc-lead {
        margin: 0 0 18px;
        color: #374151;
      }

      .repair-intro-copy {
        padding: 0;
        border: 0;
        background: transparent;
      }

      .repair-intro-media {
        margin: 0;
        border: 1px solid #e4dbcc;
        background: #ffffff;
      }

      .repair-intro-media img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
      }

      .repair-intro-media h3 {
        margin: 12px 14px 8px;
        font-size: 22px;
        color: #111827;
      }

      .repair-intro-media ul {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 0 14px 14px;
        list-style: none;
      }

      .repair-intro-media li {
        border: 1px solid #e4dbcc;
        background: #f7f3ea;
        color: #374151;
        font-size: 12px;
        line-height: 1.5;
        padding: 10px 8px;
      }

      .repair-intro-media li span,
      .repair-flow-grid span {
        display: block;
        margin-bottom: 4px;
        color: #a8864b;
        font-size: 11px;
        letter-spacing: 0.12em;
      }

      .repair-block-lead {
        margin-bottom: 12px !important;
      }

      .repair-block--menu {
        padding-top: clamp(48px, 6vw, 72px);
        padding-bottom: clamp(48px, 6vw, 72px);
      }

      .repair-menu-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
      }

      .repair-menu-card {
        border: 1px solid #b99657;
        background: #2b2521;
        padding: 0;
      }

      .repair-menu-card-image {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        margin: 0;
      }

      .repair-menu-card h3 {
        margin: 12px 14px 8px;
        font-size: 16px;
        color: #d3ba84;
      }

      .repair-menu-card p {
        margin: 0 14px 14px;
        font-size: 12px;
        line-height: 1.8;
        color: #e5e7eb;
      }

      .repair-block--quality {
        padding-top: clamp(48px, 6vw, 72px);
        padding-bottom: clamp(48px, 6vw, 72px);
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
        gap: clamp(20px, 3vw, 32px);
        align-items: start;
      }

      .repair-ba {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .repair-ba figure {
        margin: 0;
      }

      .repair-ba img {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        display: block;
      }

      .repair-ba figcaption {
        margin-top: 8px;
        font-size: 12px;
        color: #f4efe6;
      }

      .repair-block--accident {
        padding-top: clamp(48px, 6vw, 72px);
        padding-bottom: clamp(48px, 6vw, 72px);
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
        gap: 18px;
        align-items: center;
      }

      .repair-block--flow,
      .repair-block--faq {
        padding-top: clamp(48px, 6vw, 72px);
        padding-bottom: clamp(48px, 6vw, 72px);
      }

      .repair-accident-copy .btn {
        margin-top: 14px;
      }

      .repair-accident-copy .btn--bottom-cta-match {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px 12px 18px;
        border: 1px solid #b99657;
        background: #2b2521;
        color: #f3f4f6;
        text-decoration: none;
        font-size: 11px;
        letter-spacing: 0.06em;
        transition: transform 0.3s ease, color 0.3s ease;
      }

      .repair-accident-copy .btn--bottom-cta-match::before {
        display: none;
      }

      .repair-accident-copy .btn--bottom-cta-match::after {
        content: "";
        width: 6px;
        height: 6px;
        border-top: 1.5px solid currentColor;
        border-right: 1.5px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
      }

      .repair-accident-copy .btn--bottom-cta-match:hover {
        color: #ffffff;
        background: #3a332d;
        transform: none;
        box-shadow: none;
      }

      .repair-accident-copy .btn--bottom-cta-match:hover::after {
        transform: translateX(4px) rotate(45deg);
      }

      .repair-line-card {
        border: 1px solid rgba(31, 210, 112, 0.42);
        background: #00c756;
        color: #022610;
        padding: 18px;
        display: grid;
        gap: 8px;
      }

      .repair-line-card img {
        height: 34px;
        width: auto;
      }

      .repair-line-card strong {
        font-size: 24px;
      }

      .repair-line-card p {
        color: rgba(2, 38, 16, 0.8);
      }

      .repair-flow-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
      }

      .repair-flow-grid article {
        border: 1px solid #e4dbcc;
        background: #ffffff;
        padding: 12px;
      }

      .repair-flow-grid h3 {
        margin: 0 0 6px;
        color: #111827;
        font-size: 14px;
      }

      .repair-flow-grid p {
        font-size: 12px;
        line-height: 1.7;
      }

      .repair-faq-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .repair-faq-grid article {
        border: 1px solid #b99657;
        background: #2b2521;
        padding: 14px;
      }

      .repair-faq-grid h3 {
        margin: 0 0 8px;
        font-size: 15px;
        color: #d3ba84;
      }

      .repair-faq-grid p {
        font-size: 12px;
        line-height: 1.8;
        color: #e5e7eb;
      }

      .repair-main-cta {
        position: relative;
        z-index: 0;
        margin-top: 0;
        border: none;
        background: transparent;
        padding-top: clamp(8px, 1.2vw, 14px);
        padding-right: clamp(20px, 3vw, 34px);
        padding-bottom: clamp(34px, 4.8vw, 56px);
        padding-left: clamp(20px, 3vw, 34px);
        text-align: center;
      }

      .repair-main-cta::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%);
        z-index: -1;
        background: rgba(251, 248, 243, 0.46);
      }

      .repair-main-cta h2 {
        margin: 0 0 14px;
        font-size: clamp(20px, 2.4vw, 30px);
        letter-spacing: 0.08em;
      }

      .repair-main-cta-actions {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
      }

      .repair-main-cta .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px 12px 18px;
        border: 1px solid #b99657;
        background: #2b2521;
        color: #f3f4f6;
        text-decoration: none;
        font-size: 11px;
        letter-spacing: 0.06em;
        transition: transform 0.3s ease, color 0.3s ease;
      }

      .repair-main-cta .btn::before {
        display: none;
      }

      .repair-main-cta .btn::after {
        content: "";
        width: 6px;
        height: 6px;
        border-top: 1.5px solid currentColor;
        border-right: 1.5px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
      }

      .repair-main-cta .btn:hover {
        color: #ffffff;
        background: #3a332d;
        transform: none;
        box-shadow: none;
      }

      .repair-main-cta .btn:hover::after {
        transform: translateX(4px) rotate(45deg);
      }

      .repair-main-cta .btn-line {
        border-color: #00b85d;
        background: #00c756;
        color: #ffffff;
      }

      .repair-main-cta .btn-line:hover {
        color: #ffffff;
      }

      .coating-page--service {
        padding-top: clamp(2.5rem, 5vw, 4rem);
        padding-bottom: 0;
        color: #1f2937;
        background-color: #f6f4ef;
        background-image:
          linear-gradient(
            to bottom,
            rgba(246, 244, 239, 0.94) 0,
            rgba(246, 244, 239, 0.98) min(22vh, 200px),
            #f6f4ef min(40vh, 360px)
          ),
          url("../img/coating_back.png");
        background-repeat: no-repeat;
        background-position: center top, center top;
        background-size: 100% 100%, 100% auto;
      }

      .coating-page-main-placeholder-inner,
      .repair-page-main-placeholder-inner {
        min-height: clamp(18rem, 45vh, 36rem);
      }

      @media (max-width: 1024px) {
        .line-photo-preview {
          justify-content: flex-start;
        }

        .repair-block--intro,
        .repair-block--quality,
        .repair-block--accident {
          grid-template-columns: 1fr;
        }

        .repair-menu-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .repair-flow-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }
      }

      @media (max-width: 720px) {
        .repair-menu-grid,
        .repair-faq-grid,
        .repair-flow-grid {
          grid-template-columns: 1fr;
        }

        .repair-intro-media ul,
        .repair-ba {
          grid-template-columns: 1fr;
        }
      }

      .coating-svc-inner {
        max-width: min(1320px, 100%);
        margin: 0 auto;
        padding-inline: clamp(16px, 3vw, 40px);
        box-sizing: border-box;
        color: #1f2937;
      }

      .coating-svc-intro {
        text-align: center;
        padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: clamp(0.5rem, 2vw, 1rem);
        border-bottom: 1px solid rgba(168, 134, 75, 0.22);
      }

      .coating-svc-intro-achievement {
        margin: 0 0 14px;
        font-size: clamp(30px, 4.8vw, 44px);
        font-weight: 800;
        letter-spacing: 0.1em;
        line-height: 1.2;
        color: #111827;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
      }

      .coating-svc-intro-achievement::before {
        content: "";
        display: block;
        width: 56px;
        height: 2px;
        margin: 0 auto 18px;
        background: linear-gradient(90deg, #e7d09b 0%, #bb9553 50%, #8f6a33 100%);
      }

      .coating-svc-intro-num {
        font-size: 1.12em;
        font-weight: 800;
        background: linear-gradient(90deg, #c9a463 0%, #8f6a33 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
      }

      .coating-svc-intro-title {
        margin: 0 0 22px;
        font-size: clamp(24px, 3.4vw, 34px);
        font-weight: 700;
        letter-spacing: 0.12em;
        line-height: 1.45;
        color: #111827;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
      }

      .coating-svc-intro-lead {
        margin: 0 auto;
        max-width: calc(42em + 50px);
        font-size: clamp(14px, 1.7vw, 16px);
        line-height: 2;
        font-weight: 500;
        text-align: center;
      }

      .coating-svc-section {
        margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
      }

      .coating-svc-section:last-child {
        margin-bottom: 0;
      }

      #coating-wheel,
      #coating-headlight,
      #coating-moulding,
      #coating-room,
      #coating-window,
      #coating-wheel-clean,
      #coating-resin,
      #coating-plated {
        position: relative;
        z-index: 0;
        margin-bottom: 0;
        padding-block: clamp(30px, 4.4vw, 54px);
        scroll-margin-top: 88px;
      }

      #coating-wheel::before,
      #coating-headlight::before,
      #coating-moulding::before,
      #coating-room::before,
      #coating-window::before,
      #coating-wheel-clean::before,
      #coating-resin::before,
      #coating-plated::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%);
        z-index: -1;
      }

      #coating-wheel::before,
      #coating-moulding::before,
      #coating-window::before {
        background: rgba(255, 255, 255, 0.9);
      }

      #coating-headlight::before,
      #coating-room::before,
      #coating-wheel-clean::before,
      #coating-plated::before,
      #coating-resin::before {
        background: rgba(251, 248, 243, 0.46);
      }

      .coating-svc-inner > .coating-svc-note {
        position: relative;
        z-index: 0;
        margin-top: 0;
        padding-top: 12px;
        padding-bottom: clamp(36px, 5vw, 56px);
      }

      .coating-svc-inner > .coating-svc-note::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%);
        z-index: -1;
        background: rgba(251, 248, 243, 0.46);
      }

      .coating-svc-section--split {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .coating-svc-split-text {
        min-width: 0;
      }

      .coating-svc-split-media {
        min-width: 0;
      }

      .coating-svc-section--split .coating-svc-lead {
        max-width: none;
      }

      .coating-svc-section--split .coating-svc-price-block {
        max-width: 100%;
      }

      .coating-svc-kicker {
        margin: 0 0 6px;
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #9a7439;
        font-weight: 600;
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      }

      .coating-svc-h2 {
        margin: 0 0 14px;
        font-size: clamp(20px, 2.6vw, 26px);
        font-weight: 600;
        letter-spacing: 0.06em;
        color: #111827;
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
        line-height: 1.35;
      }

      .coating-svc-tax {
        font-size: 0.78em;
        font-weight: 500;
        letter-spacing: 0.04em;
      }

      .coating-svc-lead {
        margin: 0 0 18px;
        font-size: 14px;
        line-height: 1.85;
        color: #374151;
        max-width: 52em;
      }

      .coating-svc-intro .coating-svc-lead {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        max-width: calc(42em + 50px);
        text-align: center;
      }

      .coating-svc-note {
        margin: 12px 0 0;
        font-size: 12px;
        line-height: 1.65;
        color: #6b7280;
      }

      .coating-svc-notes {
        margin-top: 12px;
      }

      .coating-svc-notes .coating-svc-note {
        margin: 0 0 8px;
      }

      .coating-svc-notes .coating-svc-note:last-child {
        margin-bottom: 0;
      }

      .coating-svc-compare {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin: 20px 0 24px;
        max-width: 720px;
      }

      .coating-svc-split-media .coating-svc-compare {
        margin-top: 0;
        margin-bottom: 0;
      }

      .coating-svc-ph {
        position: relative;
        min-height: clamp(140px, 22vw, 200px);
        border-radius: 6px;
        background: linear-gradient(145deg, #e5e7eb 0%, #d1d5db 50%, #e8eaef 100%);
        border: 1px solid #cbd5e1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 16px;
        box-sizing: border-box;
      }

      .coating-svc-ph .coating-svc-ph-label {
        margin: 0;
        font-size: 12px;
        letter-spacing: 0.06em;
        color: #64748b;
      }

      .coating-svc-ph-cap {
        display: block;
        margin-top: 6px;
        font-size: 11px;
        color: #94a3b8;
      }

      .coating-svc-ph--photo {
        padding: 0;
        overflow: hidden;
      }

      .coating-svc-ph--photo img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: clamp(140px, 22vw, 200px);
        object-fit: cover;
        border-radius: 6px;
      }

      .coating-svc-compare--labeled {
        align-items: start;
      }

      .coating-svc-compare-item {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 0;
        min-width: 0;
      }

      .coating-svc-compare-item .coating-svc-ph-label {
        margin: 0;
        flex-shrink: 0;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 0.1em;
        color: var(--gold);
      }

      .coating-svc-steps {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        max-width: 720px;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .coating-svc-step {
        margin: 0;
        padding: 14px 10px;
        border-radius: 6px;
        background: #dcdcdc;
        border: 1px solid #c4c4c4;
        text-align: center;
        font-size: 12px;
        line-height: 1.45;
        color: #374151;
      }

      .coating-svc-step-num {
        display: block;
        margin-bottom: 6px;
        font-size: 11px;
        letter-spacing: 0.12em;
        color: #9a7439;
        font-weight: 600;
      }

      .coating-price-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(14px, 2vw, 22px);
        margin-top: 12px;
      }

      .coating-price-card {
        display: flex;
        flex-direction: column;
        gap: 0;
        background: #f7f3eb;
        border: 1px solid #e5e0d6;
        overflow: hidden;
      }

      .coating-price-card-head {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 16px 18px;
        background: #f3eee4;
        border-bottom: 1px solid #e5e0d6;
      }

      .coating-price-level {
        margin: 0;
        font-size: clamp(20px, 2.4vw, 26px);
        font-weight: 700;
        letter-spacing: 0.08em;
        line-height: 1.2;
        color: #111827;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
      }

      .coating-price-mark {
        margin-right: 0.18em;
        color: #b18d4f;
        font-size: 0.72em;
        vertical-align: 0.12em;
      }

      .coating-price-level em {
        font-style: normal;
        font-size: 1.28em;
        font-weight: 800;
        letter-spacing: 0.02em;
        background: linear-gradient(90deg, #c9a463 0%, #8f6a33 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
      }

      .coating-price-type {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: #5b6573;
      }

      .coating-price-sizes {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .coating-price-sizes li {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 72px;
        padding: 12px 8px;
        background: #faf7f0;
        border-right: 1px solid #e5e0d6;
      }

      .coating-price-sizes li:last-child {
        border-right: 0;
      }

      .coating-price-size {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: #9a7439;
      }

      .coating-price-amount {
        font-size: clamp(13px, 1.5vw, 15px);
        font-weight: 700;
        letter-spacing: 0.02em;
        color: #1f2937;
        font-variant-numeric: tabular-nums;
        white-space: nowrap;
      }

      @media (max-width: 900px) {
        .coating-price-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 520px) {
        .coating-price-sizes {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .coating-price-sizes li:nth-child(2n) {
          border-right: 0;
        }

        .coating-price-sizes li:nth-child(-n + 2) {
          border-bottom: 1px solid #e5e0d6;
        }
      }

      .coating-maint-row {
        display: flex;
        align-items: stretch;
        gap: clamp(12px, 1.8vw, 20px);
        margin-top: 14px;
      }

      .coating-maint-card {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 22px 20px 20px;
        background: #fff;
        border: 1px solid #d1d5db;
        border-top: 3px solid #b18d4f;
      }

      .coating-maint-name {
        margin: 0;
        font-size: clamp(14px, 1.6vw, 16px);
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1.4;
        color: #111827;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
      }

      .coating-maint-price {
        margin: 0;
        font-size: clamp(22px, 2.4vw, 28px);
        font-weight: 800;
        letter-spacing: 0.02em;
        line-height: 1.2;
        font-variant-numeric: tabular-nums;
        background: linear-gradient(90deg, #c9a463 0%, #8f6a33 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
      }

      .coating-maint-points {
        margin: 4px 0 0;
        padding: 12px 0 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 6px;
        border-top: 1px solid #e5e7eb;
      }

      .coating-maint-points li {
        position: relative;
        padding-left: 1em;
        font-size: 13px;
        line-height: 1.7;
        color: #374151;
      }

      .coating-maint-points li::before {
        content: "・";
        position: absolute;
        left: 0;
        color: #9a7439;
        font-weight: 700;
      }

      @media (max-width: 768px) {
        .coating-maint-row {
          flex-direction: column;
        }
      }

      .coating-svc-table-wrap {
        overflow-x: auto;
        margin-top: 8px;
        -webkit-overflow-scrolling: touch;
      }

      .coating-svc-table {
        width: 100%;
        min-width: 520px;
        border-collapse: collapse;
        font-size: 13px;
        background: #fff;
        border: 1px solid #d1d5db;
      }

      .coating-svc-table th,
      .coating-svc-table td {
        padding: 10px 12px;
        text-align: right;
        border: 1px solid #e5e7eb;
        vertical-align: middle;
      }

      .coating-svc-table th:first-child,
      .coating-svc-table td:first-child {
        text-align: left;
        font-weight: 500;
        color: #111827;
        background: #f9fafb;
      }

      .coating-svc-table thead th {
        background: #ececec;
        color: #374151;
        font-weight: 600;
        text-align: center;
      }

      .coating-svc-table thead th:first-child {
        text-align: left;
      }

      .coating-svc-table tbody th {
        font-weight: 500;
      }

      .coating-svc-table td {
        color: #1f2937;
        font-variant-numeric: tabular-nums;
      }

      .coating-svc-options-intro {
        margin: 0 0 14px;
        font-size: 14px;
        line-height: 1.75;
        color: #374151;
      }

      .coating-svc-options-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        max-width: min(900px, 100%);
        margin-inline: auto;
      }

      .coating-svc-option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 14px 14px 14px 16px;
        border-radius: 6px;
        border: 1px solid #c9a463;
        background: #fff;
        color: #374151;
        font-size: 13px;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      }

      .coating-svc-option:hover {
        background: #faf7f0;
        color: #111827;
        border-color: #9a7439;
      }

      .coating-svc-option::after {
        content: "";
        flex-shrink: 0;
        width: 6px;
        height: 6px;
        border-top: 1.5px solid #9a7439;
        border-right: 1.5px solid #9a7439;
        transform: rotate(45deg);
      }

      .coating-svc-price-block {
        margin-top: 14px;
        max-width: 420px;
      }

      .coating-svc-price-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 13px;
        background: #fff;
        border: 1px solid #d1d5db;
      }

      .coating-svc-price-table th,
      .coating-svc-price-table td {
        padding: 10px 12px;
        border: 1px solid #e5e7eb;
        text-align: left;
      }

      .coating-svc-price-table th {
        width: 42%;
        background: #f9fafb;
        color: #374151;
        font-weight: 600;
      }

      .coating-svc-price-table td {
        color: #111827;
        font-variant-numeric: tabular-nums;
      }

      .coating-page--service .coating-svc-inner {
        color: #1f2937;
      }

      .coating-page--service .coating-svc-h2 {
        color: #111827;
      }

      .coating-page--service .coating-svc-kicker {
        color: #a8864b;
      }

      .coating-page--service .coating-svc-step-num {
        color: #a8864b;
      }

      .coating-page--service .coating-svc-lead,
      .coating-page--service .coating-svc-options-intro {
        color: #374151;
      }

      .coating-page--service .coating-svc-note {
        color: #6b7280;
      }

      .coating-page--service .coating-svc-step {
        background: #2b2521;
        border-color: #b99657;
        color: #f3f4f6;
      }

      .coating-page--service .coating-svc-ph {
        background: linear-gradient(145deg, #f2eee6 0%, #ece6dc 50%, #f5f1e9 100%);
        border-color: #dfd4c2;
      }

      .coating-page--service .coating-svc-ph .coating-svc-ph-label {
        color: #4b5563;
      }

      .coating-page--service .coating-svc-compare-item .coating-svc-ph-label {
        color: var(--gold);
      }

      .coating-page--service .coating-svc-ph-cap {
        color: #6b7280;
      }

      .coating-page--service .coating-svc-ph--photo {
        background: none;
        border: none;
      }

      .coating-page--service .coating-svc-option {
        background: #2b2521;
        border-color: #b99657;
        color: #f3f4f6;
      }

      .coating-page--service .coating-svc-option:hover {
        background: #3a332d;
        color: #ffffff;
        border-color: #b99657;
      }

      .coating-page--service .coating-svc-option::after {
        border-top-color: #d3ba84;
        border-right-color: #d3ba84;
      }

      .coating-page--service .coating-svc-table {
        background: #ffffff;
        border-color: #ddd4c7;
      }

      .coating-page--service .coating-svc-table th,
      .coating-page--service .coating-svc-table td {
        border-color: #e5ddd0;
      }

      .coating-page--service .coating-svc-table th:first-child,
      .coating-page--service .coating-svc-table td:first-child {
        color: #1f2937;
        background: #f7f3ea;
      }

      .coating-page--service .coating-svc-table thead th {
        background: #efe7d7;
        color: #374151;
      }

      .coating-page--service .coating-svc-table tbody th {
        color: #1f2937;
      }

      .coating-page--service .coating-svc-table td {
        color: #374151;
      }

      .coating-page--service .coating-svc-price-table {
        background: #ffffff;
        border-color: #ddd4c7;
      }

      .coating-page--service .coating-svc-price-table th,
      .coating-page--service .coating-svc-price-table td {
        border-color: #e5ddd0;
      }

      .coating-page--service .coating-svc-price-table th {
        background: #f7f3ea;
        color: #1f2937;
      }

      .coating-page--service .coating-svc-price-table td {
        color: #374151;
      }

      @media (min-width: 901px) {
        .coating-svc-options-grid {
          max-width: min(1080px, 100%);
        }

        .coating-svc-section--split {
          display: grid;
          grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
          gap: clamp(32px, 4vw, 56px);
          align-items: start;
        }

        .coating-svc-split-media .coating-svc-compare {
          margin-top: 0;
          margin-bottom: 0;
          max-width: none;
        }

        .coating-svc-section--split .coating-svc-steps {
          max-width: none;
        }

        .coating-svc-section--split .coating-svc-ph {
          min-height: clamp(160px, 15vw, 280px);
        }

        .coating-svc-section--split .coating-svc-ph--photo img {
          min-height: clamp(160px, 15vw, 280px);
        }
      }

      .company-page-main {
        margin: 0;
        padding: clamp(2rem, 5vw, 3.5rem) clamp(16px, 4vw, 48px) clamp(2.5rem, 6vw, 4rem);
        background: #f4f4f4;
        color: #1f2937;
      }

      .company-page-inner {
        max-width: min(1280px, 100%);
        margin: 0 auto;
        box-sizing: border-box;
      }

      .company-page-columns {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(20px, 3vw, 36px);
        margin-bottom: clamp(2rem, 4vw, 3rem);
      }

      .company-page-eyebrow {
        margin: 0 0 8px;
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #9a7439;
        font-weight: 600;
      }

      .company-page-block h2 {
        margin: 0 0 12px;
        font-size: clamp(18px, 2.2vw, 22px);
        font-weight: 600;
        letter-spacing: 0.04em;
        color: #111827;
      }

      .company-page-block p {
        margin: 0;
        font-size: 14px;
        line-height: 1.85;
        color: #374151;
      }

      .company-page-block ul {
        margin: 0;
        padding-left: 1.15em;
        font-size: 14px;
        line-height: 1.75;
        color: #374151;
      }

      .company-page-block li + li {
        margin-top: 6px;
      }

      .line-flow {
        width: min(1280px, 100%);
        margin: 0 auto;
      }

      .line-page-main {
        padding-top: clamp(3.2rem, 5.5vw, 5rem);
        padding-bottom: clamp(3rem, 5vw, 4.8rem);
        background: #f4f3f1;
        color: #1f2937;
      }

      .line-flow-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(20px, 1.8vw, 28px);
      }

      .line-flow-card {
        min-height: clamp(220px, 15.2vw, 258px);
        padding: clamp(20px, 1.5vw, 24px) clamp(18px, 1.25vw, 22px) clamp(16px, 1.2vw, 20px);
        border: 1px solid #e5ddd0;
        border-top: 7px solid #c49446;
        border-radius: 0 0 4px 4px;
        background: linear-gradient(180deg, #fffdf9 0%, #f7f2ea 100%);
        box-shadow: 0 10px 24px rgba(31, 41, 55, 0.08);
      }

      .line-flow-step {
        margin: 0 0 8px;
        color: #a8864b;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
        font-size: clamp(20px, 1.8vw, 36px);
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.02em;
      }

      .line-flow-card h3 {
        margin: 0 0 10px;
        color: #1f2937;
        font-size: clamp(21px, 1.6vw, 30px);
        font-weight: 700;
        line-height: 1.22;
        letter-spacing: 0.02em;
      }

      .line-flow-card > p:not(.line-flow-step) {
        margin: 0;
        color: #4b5563;
        font-size: clamp(14px, 1.02vw, 18px);
        line-height: 1.55;
        letter-spacing: 0.01em;
      }

      .line-faq-main {
        margin: 0;
        padding: 0;
        color: #e8eaef;
        background: #0d0b0a;
      }

      .line-addfriend-main {
        margin: 0;
        padding: 0;
        background: #12100f;
      }

      .line-addfriend-shell {
        width: min(1320px, 100%);
        margin: 0 auto;
        padding: clamp(42px, 4.2vw, 56px) clamp(16px, 3vw, 40px) clamp(16px, 2vw, 24px);
        box-sizing: border-box;
        display: flex;
        justify-content: center;
      }

      .line-addfriend-btn {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: clamp(10px, 1vw, 14px);
        min-width: min(520px, 100%);
        max-width: 100%;
        padding: clamp(16px, 1.5vw, 22px) clamp(30px, 3vw, 42px);
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: linear-gradient(180deg, #11d95d 0%, #06c755 100%);
        color: #ffffff;
        text-decoration: none;
        font-size: clamp(20px, 1.7vw, 28px);
        font-weight: 700;
        letter-spacing: 0.03em;
        line-height: 1.1;
        transition: opacity 0.2s ease;
      }

      .line-addfriend-btn:hover {
        opacity: 0.92;
      }

      .line-addfriend-btn img {
        width: clamp(38px, 2.4vw, 52px);
        height: auto;
        flex-shrink: 0;
      }

      .line-addfriend-btn::after {
        content: "";
        width: clamp(8px, 0.9vw, 12px);
        height: clamp(8px, 0.9vw, 12px);
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        margin-left: auto;
        flex-shrink: 0;
      }

      .line-addfriend-text {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
      }

      .line-addfriend-text small {
        font-size: clamp(11px, 0.9vw, 14px);
        line-height: 1;
        letter-spacing: 0.08em;
        opacity: 0.95;
      }

      .line-addfriend-text > span {
        line-height: 1.1;
      }

      .line-faq-shell {
        width: min(1320px, 100%);
        margin: 0 auto;
        padding-inline: clamp(16px, 3vw, 40px);
        box-sizing: border-box;
      }

      .line-faq-block {
        margin: 0;
        padding-top: clamp(48px, 6vw, 72px);
        padding-bottom: clamp(48px, 6vw, 72px);
      }

      .line-faq-block .coating-svc-h2 {
        color: #f4f4f4;
      }

      .line-faq-main .repair-faq-grid article {
        background: #171513;
      }

      .line-photo-main {
        margin: 0;
        padding: 0;
        background:
          linear-gradient(rgba(18, 16, 15, 0.82), rgba(18, 16, 15, 0.82)),
          url("../img/line_back_02.jpg") center / cover no-repeat;
        color: #e8eaef;
      }

      .line-photo-shell {
        width: min(1320px, 100%);
        margin: 0 auto;
        padding: clamp(52px, 6vw, 72px) clamp(16px, 3vw, 40px);
        box-sizing: border-box;
      }

      .line-photo-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.72fr) minmax(260px, 0.78fr);
        gap: clamp(24px, 3vw, 44px);
        align-items: start;
      }

      .line-photo-copy .coating-svc-kicker {
        margin-bottom: 10px;
      }

      .line-photo-copy .coating-svc-h2 {
        margin-bottom: 14px;
        color: #f4f4f4;
      }

      .line-photo-lead {
        margin: 0;
        max-width: 36em;
        color: rgba(223, 229, 238, 0.78);
        font-size: clamp(15px, 1.05vw, 19px);
        line-height: 1.7;
      }

      .line-photo-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(16px, 1.4vw, 24px);
        margin-top: clamp(24px, 2.4vw, 34px);
      }

      .line-photo-card {
        margin: 0;
        padding: clamp(18px, 1.6vw, 26px) clamp(16px, 1.5vw, 24px);
        border: 1px solid rgba(146, 131, 110, 0.3);
        border-radius: 4px;
        background: linear-gradient(180deg, #211c1a 0%, #191613 100%);
      }

      .line-photo-card h3 {
        margin: 0 0 14px;
        color: #f4f6fa;
        font-size: clamp(19px, 1.45vw, 26px);
        line-height: 1.3;
        letter-spacing: 0.01em;
      }

      .line-faq-main .repair-faq-grid h3 {
        font-size: 14px;
      }

      .line-photo-card ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }

      .line-photo-card li {
        position: relative;
        margin: 0;
        padding: 0 0 0 1.3em;
        color: rgba(223, 229, 238, 0.82);
        font-size: clamp(16px, 1.12vw, 20px);
        line-height: 1.58;
      }

      .line-photo-card li + li {
        margin-top: 8px;
      }

      .line-photo-card li::before {
        content: "▶";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #c99c52;
        font-size: 0.68em;
        line-height: 1;
      }

      .line-photo-preview {
        display: flex;
        justify-content: center;
      }

      .line-photo-phone {
        width: min(320px, 100%);
        border: 1px solid rgba(143, 129, 111, 0.42);
        border-radius: 28px;
        background: linear-gradient(180deg, #26211f 0%, #1f1b18 100%);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
        padding: 16px 16px 20px;
      }

      .line-photo-phone-head {
        margin: 12px 0 12px;
        border-radius: 999px;
        background: #14c95f;
        color: #fff;
        text-align: center;
        font-size: clamp(16px, 1.55vw, 22px);
        font-weight: 700;
        line-height: 1;
        padding: 16px 12px;
      }

      .line-photo-phone-body {
        border-radius: 18px;
        background: #eceeed;
        padding: 14px 12px;
      }

      .line-photo-bubble {
        margin: 0 0 10px;
        padding: 10px 12px;
        border-radius: 14px;
        font-size: clamp(12px, 0.84vw, 15px);
        line-height: 1.35;
        color: #253140;
      }

      .line-photo-bubble--light {
        background: #fff;
        max-width: 88%;
      }

      .line-photo-bubble--green {
        margin-left: auto;
        background: #c7e9cf;
        max-width: 78%;
      }

      .line-photo-thumbs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
      }

      .line-photo-thumb {
        border-radius: 8px;
        aspect-ratio: 4 / 3;
        background: linear-gradient(130deg, #2a303a 0%, #161b25 60%, #10151f 100%);
        border: 1px solid rgba(112, 123, 141, 0.42);
      }

      .company-facts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 14px;
      }

      .company-fact-card {
        margin: 0;
        padding: 18px 16px;
        border-radius: 6px;
        background: #dcdcdc;
        box-sizing: border-box;
      }

      .company-fact-card h3 {
        margin: 0 0 8px;
        font-size: 12px;
        letter-spacing: 0.08em;
        color: #6b7280;
        font-weight: 600;
      }

      .company-fact-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
        color: #111827;
      }

      .company-overview-main {
        margin: 0;
        background: #ffffff;
        color: #1f2937;
      }

      .company-overview-inner {
        width: min(1320px, 100%);
        margin: 0 auto;
        padding: clamp(42px, 5vw, 64px) clamp(16px, 3vw, 40px) clamp(56px, 6vw, 80px);
        box-sizing: border-box;
      }

      .company-overview-kicker {
        margin: 0 0 6px;
      }

      .company-overview-main .coating-svc-h2 {
        margin-bottom: 12px;
      }

      .company-overview-lead {
        margin: 0;
        color: #5b6470;
        font-size: 14px;
        line-height: 1.8;
      }

      .company-shop {
        margin-bottom: 0;
        padding-bottom: clamp(4px, 0.6vw, 8px);
      }

      .company-shop-grid {
        margin-top: clamp(22px, 3vw, 30px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(16px, 2vw, 24px);
      }

      .company-shop-card {
        --company-shop-card-pad-x: clamp(16px, 2.2vw, 24px);
        margin: 0;
        padding: 10px var(--company-shop-card-pad-x);
        border-radius: 8px;
        background: #fff;
        border: 1px solid #ececec;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
      }

      .company-shop-card > img:first-of-type {
        display: block;
        width: calc(100% + 2 * var(--company-shop-card-pad-x));
        max-width: none;
        height: 188px;
        margin: -10px calc(-1 * var(--company-shop-card-pad-x)) 0;
        object-fit: cover;
      }

      .company-shop-label {
        margin: clamp(14px, 2vw, 22px) 0 4px;
        color: #111827;
        font-size: 12px;
        font-weight: 600;
      }

      .company-shop-card h3 {
        margin: 0 0 6px;
        font-size: clamp(22px, 2.2vw, 26px);
        color: #111827;
        line-height: 1.2;
      }

      .company-shop-address,
      .company-shop-hours {
        margin: 0;
        color: #4b5563;
        font-size: 12px;
      }

      .company-shop-map {
        margin-top: 12px;
        padding: 12px 14px;
        border: 1px solid #ece9e0;
        background: linear-gradient(135deg, #f8f8f4 0%, #f0f1ec 100%);
        color: #5b6470;
        font-size: 11px;
      }

      .company-shop-card .company-shop-map--embed {
        margin-bottom: clamp(10px, 1.4vw, 16px);
      }

      .company-shop-map--embed {
        padding: 0;
        overflow: hidden;
        background: #e8e6e0;
      }

      .company-shop-map--embed iframe {
        display: block;
        width: 100%;
        height: 220px;
        border: 0;
        box-sizing: border-box;
      }

      .company-profile {
        margin-top: 0;
        margin-bottom: clamp(20px, 2.4vw, 32px);
      }

      .company-profile-grid {
        margin: 18px 0 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: clamp(16px, 3vw, 34px);
      }

      .company-profile-grid div {
        margin: 0;
        padding: 18px 0;
        display: grid;
        grid-template-columns: 110px minmax(0, 1fr);
        align-items: start;
        border-top: 1px solid #ececec;
      }

      .company-profile-grid dt {
        margin: 0;
        color: #9a7439;
        font-size: 11px;
        font-weight: 700;
      }

      .company-profile-grid dd {
        margin: 0;
        color: #374151;
        font-size: 13px;
        line-height: 1.7;
      }

      .company-message {
        margin-top: clamp(52px, 6vw, 80px);
        margin-bottom: clamp(60px, 7vw, 96px);
      }

      .company-message p:not(.coating-svc-kicker) {
        margin: 0;
        color: #4b5563;
        font-size: 14px;
        line-height: 1.9;
      }

      .company-stance {
        margin-bottom: clamp(36px, 4.5vw, 48px);
      }

      .company-stance-grid {
        margin: 16px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
      }

      .company-stance-grid li {
        min-height: 78px;
        margin: 0;
        padding: 14px 14px 12px;
        color: #f4f6fa;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.5;
        border: 1px solid rgba(146, 131, 110, 0.3);
        background: linear-gradient(180deg, #211c1a 0%, #191613 100%);
      }

      .company-stance-grid li span {
        display: block;
        margin-bottom: 5px;
        color: #c99c52;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
        font-size: 30px;
        line-height: 1;
      }

      .company-overview-cta {
        text-align: center;
      }

      .company-overview-cta p {
        margin: 0 0 18px;
        color: #111827;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
        font-size: clamp(30px, 2.6vw, 42px);
        line-height: 1.35;
      }

      .company-overview-cta .btn {
        font-size: 13px;
      }

      /* ----- Contact page ----- */
      .contact-page-main .company-overview-inner {
        padding-bottom: clamp(48px, 5.5vw, 72px);
      }

      .contact-form-section {
        margin-top: clamp(6px, 1.2vw, 14px);
      }

      .contact-form-section-lead {
        margin-bottom: clamp(26px, 3.2vw, 34px);
      }

      .contact-form-box {
        padding: clamp(20px, 2.5vw, 26px);
        border-top: 5px solid #bb8f3b;
        border-radius: 0 0 8px 8px;
        background: #f7f7f7;
        border-left: 1px solid #ebebeb;
        border-right: 1px solid #ebebeb;
        border-bottom: 1px solid #ebebeb;
      }

      .contact-form-box-title {
        margin: 0 0 4px;
        font-size: clamp(24px, 2.6vw, 32px);
        letter-spacing: 0.04em;
        color: #111827;
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      }

      .contact-form-box-sub {
        margin: 0 0 clamp(20px, 2.6vw, 28px);
        font-size: 12px;
        line-height: 1.75;
        color: #6b7280;
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
        letter-spacing: 0.04em;
      }

      .contact-form-card {
        margin: 0;
      }

      .contact-form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(14px, 1.8vw, 18px) clamp(16px, 2vw, 22px);
        margin-bottom: clamp(18px, 2vw, 22px);
      }

      .contact-form-field label {
        display: block;
        margin: 0 0 8px;
        font-size: 12px;
        font-weight: 600;
        color: #111827;
      }

      .contact-form-field input,
      .contact-form-field textarea {
        width: 100%;
        box-sizing: border-box;
        border: 1px solid #dddddd;
        border-radius: 2px;
        background: #f9f9f9;
        padding: 11px 12px;
        font-size: 13px;
        color: #111827;
        font-family: inherit;
      }

      .contact-form-field textarea {
        min-height: 170px;
        resize: vertical;
      }

      .contact-form-field input:focus,
      .contact-form-field textarea:focus {
        outline: none;
        border-color: #c49b50;
        box-shadow: 0 0 0 2px rgba(196, 155, 80, 0.15);
        background: #ffffff;
      }

      .contact-form-choice {
        margin: 0 0 clamp(18px, 2.2vw, 24px);
        padding: 0;
        border: 0;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px 12px;
      }

      .contact-form-choice legend {
        margin: 0 0 10px;
        font-size: 12px;
        font-weight: 600;
        color: #111827;
        grid-column: 1 / -1;
      }

      .contact-radio-chip {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        margin: 0;
        padding: 9px 12px;
        border: 1px solid #dddddd;
        border-radius: 2px;
        background: #f7f7f7;
        font-size: 13px;
        color: #111827;
        cursor: pointer;
        box-sizing: border-box;
      }

      .contact-radio-chip span {
        line-height: 1.2;
      }

      .contact-radio-chip input {
        appearance: none;
        width: 12px;
        height: 12px;
        margin: 0;
        border: 1px solid #7c7c7c;
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
        background: #fff;
      }

      .contact-radio-chip input:checked {
        border-color: #bb8f3b;
      }

      .contact-radio-chip input:checked::after {
        content: "";
        position: absolute;
        inset: 2px;
        border-radius: 50%;
        background: #bb8f3b;
      }

      .contact-radio-chip input:checked + span {
        color: #9a7439;
        font-weight: 600;
      }

      .contact-form-field--message {
        margin-bottom: 0;
      }

      .contact-form-footer {
        margin-top: 14px;
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .contact-form-submit {
        min-width: 148px;
        border: 0;
        border-radius: 0;
        background: #bb8f3b;
        color: #fff;
        padding: 11px 22px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.04em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
      }

      .contact-form-submit::after {
        content: ">";
        font-size: 0.9em;
      }

      .contact-form-note {
        margin: 0;
        font-size: 11px;
        color: #6b7280;
      }

      .contact-other {
        margin-top: clamp(40px, 4.5vw, 52px);
      }

      .contact-other-lead {
        margin-bottom: clamp(22px, 2.8vw, 30px);
      }

      .contact-other-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(18px, 2.2vw, 26px);
      }

      .contact-other-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        padding: clamp(22px, 2.7vw, 28px);
        min-height: 190px;
        border: 1px solid transparent;
        box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
        transition: transform 0.22s ease, box-shadow 0.22s ease;
      }

      .contact-other-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 38px rgba(15, 23, 42, 0.2);
      }

      .contact-other-card--line {
        background: linear-gradient(145deg, #10cf62 0%, #07b84f 65%, #069646 100%);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.24);
      }

      .contact-other-card--line::after {
        content: "";
        position: absolute;
        right: -48px;
        top: -48px;
        width: 170px;
        height: 170px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 68%);
        pointer-events: none;
      }

      .contact-other-line-head {
        display: grid;
        grid-template-columns: 1fr 116px;
        gap: 14px;
        align-items: center;
        position: relative;
        z-index: 1;
      }

      .contact-other-line-main {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        min-width: 0;
      }

      .contact-other-line-logo {
        width: 52px;
        height: 52px;
        object-fit: contain;
        flex-shrink: 0;
      }

      .contact-other-card h3 {
        margin: 0 0 6px;
        font-size: clamp(30px, 2.2vw, 38px);
        line-height: 1.18;
        letter-spacing: 0.04em;
        color: inherit;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
      }

      .contact-other-card p {
        margin: 0;
        font-size: 13px;
        line-height: 1.65;
      }

      .contact-other-qr {
        display: block;
        width: 116px;
        height: 116px;
        border-radius: 4px;
        background: #fff;
        object-fit: contain;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
      }

      .contact-other-card--phone {
        background: linear-gradient(160deg, #232835 0%, #151926 70%, #111522 100%);
        color: #f3f4f6;
        border-color: rgba(210, 170, 95, 0.32);
      }

      .contact-other-card--phone::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(210, 170, 95, 0.15) 0%, rgba(210, 170, 95, 0) 42%);
        pointer-events: none;
      }

      .contact-other-card .contact-other-tel {
        margin-top: 12px;
        font-size: clamp(18px, 2.2vw, 28px);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: 0.03em;
        text-shadow: 0 2px 12px rgba(208, 162, 78, 0.28);
      }

      .contact-other-card .contact-other-tel a {
        color: #ffd98a;
        text-decoration: none;
      }

      .contact-other-meta {
        margin-top: 12px;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 16px;
        flex-wrap: nowrap;
      }

      .contact-other-hours {
        margin-top: 0;
        font-size: 12px;
        color: #b7bcc8;
        white-space: nowrap;
      }

      .contact-other-btn {
        margin: 16px auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-width: 138px;
        height: 40px;
        min-height: 40px;
        padding: 0 18px;
        text-decoration: none;
        border-radius: 4px;
        border: 0;
        font-size: 12px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.05em;
        box-sizing: border-box;
        transition: transform 0.2s ease, opacity 0.2s ease;
      }

      .contact-other-btn::after {
        content: ">";
        display: block;
        line-height: 1;
      }

      .contact-other-btn:hover {
        transform: translateY(-1px);
        opacity: 0.95;
      }

      .contact-other-btn--line {
        background: #111827;
        color: #fff;
        margin-top: 22px;
      }

      .contact-other-btn--phone {
        background: linear-gradient(180deg, #d0a24e 0%, #b98833 100%);
        color: #fff;
      }

      @media (max-width: 1024px) {
        .contact-form-grid,
        .contact-other-grid {
          grid-template-columns: 1fr;
        }

        .contact-form-choice {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .contact-radio-chip {
          width: 100%;
        }
      }

      @media (max-width: 640px) {
        .contact-form-choice {
          grid-template-columns: 1fr;
        }

        .contact-radio-chip {
          width: 100%;
        }

        .contact-form-footer {
          flex-direction: column;
          align-items: stretch;
        }

        .contact-other-meta {
          flex-direction: column;
          align-items: flex-start;
          gap: 4px;
        }

        .contact-other-line-head {
          grid-template-columns: 1fr;
          gap: 12px;
        }

        .contact-other-line-main {
          align-items: center;
          justify-content: center;
          gap: 10px;
        }

        .contact-other-card--line .contact-other-line-head {
          justify-items: center;
        }

        .contact-other-line-logo {
          width: 46px;
          height: 46px;
        }

        .contact-other-card h3 {
          font-size: clamp(22px, 6vw, 28px);
          line-height: 1.25;
        }

        .contact-other-card p {
          font-size: 12px;
          line-height: 1.6;
        }

        .contact-other-qr {
          width: 112px;
          height: 112px;
          justify-self: center;
          margin-bottom: 8px;
        }

        .contact-other-card {
          display: flex;
          flex-direction: column;
          min-height: 220px;
          padding: 16px;
        }

        .contact-other-card--phone {
          text-align: center;
        }

        .contact-other-meta {
          align-items: center;
          gap: 6px;
        }

        .contact-other-card .contact-other-tel {
          font-size: clamp(22px, 7vw, 30px);
        }

        .contact-other-hours {
          font-size: 11px;
        }

        .contact-other-btn {
          margin-top: auto;
        }

        .contact-other-btn--line {
          margin-top: auto;
        }
      }

      @media (max-width: 900px) {
        .company-shop-grid,
        .company-profile-grid {
          grid-template-columns: 1fr;
        }

        .company-shop-card h3 {
          font-size: clamp(20px, 3.8vw, 22px);
        }

        .company-profile-grid div {
          grid-template-columns: 96px minmax(0, 1fr);
        }

        .company-stance-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 560px) {
        .company-stance-grid {
          grid-template-columns: 1fr;
        }
      }

      .dual {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .dual-card {
        position: relative;
        min-height: 290px;
        border: 1px solid #2a2f39;
        border-right: 0;
        overflow: hidden;
        background:
          linear-gradient(to bottom, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.78)),
          radial-gradient(circle at 70% 10%, rgba(248, 228, 190, 0.2), transparent 45%),
          linear-gradient(140deg, #222833, #141822);
        background-size: 100% 100%;
        background-position: center;
        transition: background-size 1.9s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s ease;
      }

      .dual-card-link {
        position: relative;
        z-index: 1;
        min-height: 290px;
        padding: 64px 34px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        text-decoration: none;
        color: inherit;
        transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
      }

      .dual-card-link::before {
        content: "";
        position: absolute;
        top: -30%;
        left: -45%;
        width: 55%;
        height: 180%;
        background: linear-gradient(105deg, rgba(255, 255, 255, 0) 22%, rgba(235, 210, 150, 0.12) 50%, rgba(255, 255, 255, 0) 78%);
        transform: translateX(-130%) rotate(8deg);
        transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
        pointer-events: none;
      }

      .dual-card-link::after {
        content: none;
      }

      .dual-card:hover .dual-card-link {
        transform: none;
      }

      .dual-card:hover .dual-card-link::before {
        transform: translateX(240%) rotate(8deg);
      }

      .dual-card:hover {
        background-size: 106% 106%;
        filter: brightness(1.06);
      }

      .dual-card.coating {
        background-image:
          linear-gradient(to bottom, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.78)),
          radial-gradient(circle at 70% 10%, rgba(248, 228, 190, 0.2), transparent 45%),
          url("../img/top_coating_back.png");
      }

      .dual-card.repair {
        background-image:
          linear-gradient(to bottom, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.78)),
          radial-gradient(circle at 70% 10%, rgba(248, 228, 190, 0.2), transparent 45%),
          url("../img/top_repair_back.png");
      }

      .dual-card:first-child {
        border-left: 0;
      }

      .dual-card:last-child {
        border-right: 0;
      }

      .dual-card h2 {
        margin: 0;
        display: inline-block;
        padding-bottom: 0.12em;
        background: linear-gradient(90deg, #f0ddab 0%, #c9a463 45%, #9a7439 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-size: 64px;
        line-height: 1.1;
      }

      .dual-card .title-block {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 4px;
      }

      .dual-card .sub {
        margin: 0 0 16px;
        background: linear-gradient(90deg, #e7d09b 0%, #bb9553 50%, #8f6a33 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-size: 13px;
        text-align: left;
        width: 100%;
      }

      .dual-card p {
        margin: 0 0 22px;
        color: #fff;
        font-size: 26px;
        line-height: 1.5;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
      }

      .dual-card .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding-right: 16px;
        font-size: 11px;
        transition: transform 0.3s ease, color 0.3s ease;
      }

      .dual-card .btn::after {
        content: "";
        width: 6px;
        height: 6px;
        border-top: 1.5px solid currentColor;
        border-right: 1.5px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
      }

      .dual-card:hover .btn {
        color: #f3dca6;
      }

      .dual-card:hover .btn::after {
        transform: translateX(4px) rotate(45deg);
      }

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

      .hero-copy--dual-coating,
      .hero-copy--dual-repair,
      .hero-copy--dual-company {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }

      .hero-copy--dual-coating .title-block,
      .hero-copy--dual-repair .title-block,
      .hero-copy--dual-company .title-block {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 4px;
      }

      .hero-copy--dual-coating h2,
      .hero-copy--dual-repair h2,
      .hero-copy--dual-company h2 {
        margin: 0;
        display: inline-block;
        padding-bottom: 0.12em;
        background: linear-gradient(90deg, #f0ddab 0%, #c9a463 45%, #9a7439 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-size: 64px;
        line-height: 1.1;
      }

      .hero-copy--dual-coating .sub,
      .hero-copy--dual-repair .sub,
      .hero-copy--dual-company .sub {
        margin: 0 0 16px;
        background: linear-gradient(90deg, #e7d09b 0%, #bb9553 50%, #8f6a33 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-size: 13px;
        text-align: left;
        width: 100%;
      }

      .hero-copy--dual-coating > p:first-of-type,
      .hero-copy--dual-repair > p:first-of-type,
      .hero-copy--dual-company > p:first-of-type {
        margin: 0 0 14px;
        color: #fff;
        font-size: 26px;
        line-height: 1.5;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
        letter-spacing: 0.04em;
      }

      .hero-copy--dual-coating .hero-coating-subcopy,
      .hero-copy--dual-repair .hero-repair-subcopy,
      .hero-copy--dual-company .hero-company-subcopy {
        margin: 0;
        max-width: 34em;
        color: rgba(255, 255, 255, 0.78);
        font-size: 15px;
        line-height: 1.75;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
        letter-spacing: 0.04em;
      }

      .services {
        position: relative;
        overflow: hidden;
        border: 0;
        border-bottom: 1px solid #2a2f39;
        touch-action: pan-y;
        cursor: grab;
      }

      .services.is-dragging {
        cursor: grabbing;
      }

      .services-track {
        display: flex;
        width: max-content;
        transform: translateX(0);
        transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
        user-select: none;
      }

      .service {
        flex: 0 0 280px;
        min-height: 180px;
        border-right: 1px solid #2a2f39;
        padding: 16px;
        background:
          linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)),
          url("../img/top_service_02.png");
        background-size: cover;
        background-position: center;
      }

      .service:nth-child(even) {
        background:
          linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)),
          url("../img/top_service_01.png");
        background-size: cover;
        background-position: center;
      }

      .service:last-child {
        border-right: 0;
      }

      .service h3 {
        margin: 95px 0 8px;
        font-size: 14px;
        font-weight: 500;
        color: var(--gold-soft);
      }

      .service p {
        margin: 0;
        font-size: 11px;
        color: #b7c0cd;
        line-height: 1.6;
      }

      .reasons {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        border: 0;
        border-bottom: 1px solid #2a2f39;
        background: #141110;
      }

      .reason {
        min-height: 162px;
        padding: 21px 22px 18px;
        border-right: 1px solid #2a2f39;
      }

      .reason:last-child {
        border-right: 0;
      }

      .reason-top {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 4px;
      }

      .reason-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-soft);
        flex-shrink: 0;
      }

      .reason-icon svg {
        width: 36px;
        height: 36px;
      }

      .reason .num {
        color: var(--gold-soft);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1;
      }

      .reason h4 {
        margin: 15px 0 9px;
        font-size: 13px;
        color: #d6dde8;
      }

      .reason p {
        margin: 0;
        color: #98a1ac;
        font-size: 11px;
        line-height: 1.55;
      }

      .consult {
        margin: 22px auto;
        padding: 40px clamp(12px, 1.8vw, 24px) 44px;
        background: var(--section-gray);
        color: #1f2937;
        display: grid;
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.36fr) minmax(0, 0.82fr);
        gap: clamp(18px, 2.2vw, 30px);
        max-width: min(1320px, 100%);
        width: 100%;
        box-sizing: border-box;
        align-items: stretch;
        overflow-x: hidden;
      }

      .consult-shell {
        margin: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        background: #dcdcdc;
        border-radius: 6px;
        padding: 10px 10px 10px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        min-height: 0;
        height: 100%;
      }

      .consult-voice-header {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: center;
        gap: 6px 12px;
        margin: 18px 0 10px;
        text-align: center;
        flex-shrink: 0;
        transform: translateY(-10px);
        position: relative;
        z-index: 1;
      }

      .consult-voice-label {
        margin: 0;
        font-size: 26px;
        font-weight: 800;
        letter-spacing: 0.05em;
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
        line-height: 1;
      }

      .consult-voice-caption {
        margin: 0;
        font-size: 12px;
        font-weight: 500;
        color: #374151;
        letter-spacing: 0.1em;
      }

      .consult-carousel {
        flex: 0 1 auto;
        min-height: 0;
        min-width: 0;
        width: 100%;
      }

      .consult-carousel-window {
        width: 100%;
        min-width: 0;
        min-height: 0;
        overflow: hidden;
        border-radius: 6px;
        display: flex;
        align-items: stretch;
        box-sizing: border-box;
      }

      .consult-carousel-track {
        display: flex;
        align-items: stretch;
        align-self: stretch;
        min-width: 0;
        min-height: 0;
        height: 100%;
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
      }

      .consult-voice-card {
        flex: 0 0 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        align-self: stretch;
        min-width: 0;
        min-height: 0;
      }

      .consult-voice-card-inner {
        width: 100%;
        flex: 1 1 auto;
        min-height: 0;
        background: #fff;
        border-radius: 6px;
        border: 1px solid #e0e2e6;
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
        padding: 14px 16px 12px;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        overflow-wrap: anywhere;
      }

      .consult-voice-stars {
        margin: 0 0 10px;
        text-align: center;
        font-size: 16px;
        line-height: 1;
        letter-spacing: 4px;
        color: #f0b429;
      }

      .consult-voice-body {
        margin: 0 0 10px;
        flex: 1 1 auto;
        min-height: 0;
      }

      .consult-voice-body p {
        margin: 0 0 6px;
        text-align: left;
        font-size: 13px;
        line-height: 1.65;
        color: #1f2937;
      }

      .consult-voice-body p:last-child {
        margin-bottom: 0;
      }

      .consult-voice-meta {
        margin: 0;
        text-align: right;
        font-size: 11px;
        color: #6b7280;
        letter-spacing: 0.03em;
      }

      .consult-main {
        text-align: center;
        padding: 8px 6px 0;
        box-sizing: border-box;
        min-width: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 1;
      }

      .consult-main h2 {
        margin: 0 0 10px;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
        font-size: 50px;
        font-weight: 500;
        white-space: nowrap;
      }

      .consult-main p {
        margin: 0;
        color: #4b5563;
        font-size: 15px;
        line-height: 1.8;
      }

      .consult-main.consult-main--footer-only {
        display: none;
        padding: 0;
        height: auto;
        min-height: 0;
        flex-shrink: 0;
      }

      .consult-main.consult-main--footer-only .btn {
        margin-top: 0;
        padding: 16px 36px 16px 45px;
      }

      .line-box {
        --line-brand: #06c755;
        border: 1px solid rgba(255, 255, 255, 0.55);
        border-radius: 7px;
        background: var(--line-brand);
        padding: 10px 10px 10px;
        box-sizing: border-box;
        overflow: hidden;
        width: 100%;
        min-width: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
      }

      .line-box-head {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 12px 14px;
        padding: 4px 4px 10px;
        text-align: center;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        border-radius: 5px;
        transition: opacity 0.2s ease;
      }

      .line-box-head:hover {
        opacity: 0.92;
      }

      .line-box-head:focus-visible {
        outline: 2px solid #fff;
        outline-offset: 3px;
      }

      .line-box-brand {
        flex-shrink: 0;
      }

      .line-box-brand img {
        display: block;
        height: 52px;
        width: auto;
      }

      .line-box-headline {
        flex: 0 1 auto;
        min-width: 0;
        color: #fff;
        text-align: center;
      }

      .line-box-kicker {
        margin: 0 0 4px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.06em;
        line-height: 1.3;
        opacity: 0.96;
      }

      .line-box-title {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.06em;
        line-height: 1.15;
        font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      }

      .line-box-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #fff;
        border-radius: 6px;
        padding: 12px 10px 10px;
        text-align: center;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
        min-height: 0;
      }

      .line-box-area-title {
        margin: 0 0 8px;
        font-size: 12px;
        font-weight: 600;
        color: #111827;
        letter-spacing: 0.03em;
      }

      .line-box-areas {
        margin: 0 0 5px;
        font-size: 10px;
        font-weight: 500;
        color: #1f2937;
        line-height: 1.65;
        letter-spacing: 0.02em;
      }

      .line-box-areas:last-child {
        margin-bottom: 0;
      }

      @media (min-width: 901px) {
        .line-box-body {
          padding: 2px 10px 1px;
        }

        .line-box-head {
          padding: 10px 4px 16px;
          gap: 18px 20px;
        }

        .line-box-brand img {
          height: 68px;
        }

        .line-box-kicker {
          font-size: 14px;
          margin-bottom: 3px;
        }

        .line-box-title {
          font-size: 31px;
          line-height: 1.1;
        }
      }

      .bottom-cta {
        margin: 0;
        padding: 62px 0;
        position: relative;
        text-align: center;
        color: #fff;
        background-color: #0b0d11;
        background-image: url("../img/bottom_back.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
      }

      .bottom-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(5, 4, 3, 0.52);
        pointer-events: none;
        z-index: 0;
      }

      .bottom-cta > * {
        position: relative;
        z-index: 1;
      }

      .bottom-cta h2 {
        margin: 0 0 28px;
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
        font-size: 35px;
        font-weight: 500;
      }

      .bottom-cta .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px 12px 18px;
        border: 1px solid rgba(196, 160, 96, 0.7);
        background: transparent;
        color: #f2e7cf;
        text-decoration: none;
        font-size: 11px;
        letter-spacing: 0.06em;
        transition: transform 0.3s ease, color 0.3s ease;
      }

      .bottom-cta .btn::before {
        display: none;
      }

      .bottom-cta .btn::after {
        content: "";
        width: 6px;
        height: 6px;
        border-top: 1.5px solid currentColor;
        border-right: 1.5px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
      }

      .bottom-cta .btn:hover {
        color: #f3dca6;
        transform: none;
        box-shadow: none;
      }

      .bottom-cta .btn:hover::after {
        transform: translateX(4px) rotate(45deg);
      }

      footer {
        position: relative;
        margin: 0;
        padding: 24px 52px env(safe-area-inset-bottom, 0) 12px;
        background: #05060a;
        color: #d1d5db;
        overflow-x: clip;
      }

      footer .footer-copy {
        margin: 40px -52px 0 -12px;
        padding: 20px 0;
        width: calc(100% + 12px + 52px);
        max-width: none;
        box-sizing: border-box;
        text-align: center;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.08em;
        line-height: 1.5;
        color: #5c6370;
        background: #141110;
      }

      .footer-grid {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.42fr) minmax(0, 1.2fr);
        gap: 18px;
      }

      .footer-back-top {
        position: absolute;
        top: auto;
        right: 14px;
        bottom: 0;
        z-index: 3;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border-radius: 50%;
        border: 1px solid rgba(196, 160, 96, 0.65);
        background: rgba(12, 14, 18, 0.92);
        color: var(--gold-soft);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        transition: opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
      }

      .footer-back-top:hover {
        opacity: 0.92;
        border-color: rgba(211, 186, 132, 0.9);
        background: rgba(18, 20, 26, 0.96);
        color: #f0e6cc;
      }

      .footer-back-top:focus-visible {
        outline: 2px solid rgba(211, 186, 132, 0.85);
        outline-offset: 3px;
      }

      .footer-back-top svg {
        width: 22px;
        height: 22px;
      }

      footer h3 {
        margin: 0 0 8px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.04em;
      }

      footer p,
      footer li {
        margin: 0 0 4px;
        color: #a3acb7;
        font-size: 13px;
      }

      footer ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }

      footer .footer-company {
        justify-self: start;
        min-width: 0;
        width: 100%;
        text-align: left;
      }

      footer .footer-company-cols {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        row-gap: 22px;
        column-gap: 64px;
      }

      footer .footer-company-cols ul {
        flex: 0 1 auto;
        min-width: 0;
      }

      footer .footer-company li {
        word-break: keep-all;
        overflow-wrap: anywhere;
      }

      footer .footer-contact {
        text-align: left;
        min-width: 0;
        justify-self: start;
        width: 100%;
        max-width: 100%;
        padding-left: 40px;
      }

      @media (min-width: 901px) {
        footer .footer-contact {
          padding-left: 90px;
        }
      }

      footer .footer-contact-heading {
        margin: 0 0 10px;
        font-size: 12px;
        font-weight: 700;
        color: #e8eaef;
        letter-spacing: 0.08em;
      }

      footer .footer-contact-tel {
        display: inline-flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
        margin: 0 0 10px;
        text-decoration: none;
        color: #fff;
        font-weight: 700;
        white-space: nowrap;
        transition: opacity 0.2s ease;
      }

      footer .footer-contact-tel:hover {
        opacity: 0.88;
      }

      footer .footer-contact-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-soft);
        flex-shrink: 0;
      }

      footer .footer-contact-icon svg {
        width: 22px;
        height: 22px;
      }

      footer .footer-contact-number {
        font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
        font-size: clamp(26px, 2.4vw, 36px);
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1.15;
      }

      footer .footer-contact-hours {
        margin: 0;
        font-size: 12px;
        font-weight: 400;
        color: #b8c0ca;
        letter-spacing: 0.04em;
        line-height: 1.55;
        white-space: nowrap;
      }

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

      footer .footer-brand-inner {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        margin-left: 24px;
      }

      footer .footer-socials {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin: 20px 0 0;
        padding: 0;
        list-style: none;
      }

      footer .footer-socials li {
        margin: 0;
        padding: 0;
      }

      footer .footer-social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.32);
        box-sizing: border-box;
        text-decoration: none;
        transition: opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
      }

      footer .footer-social:hover {
        opacity: 0.95;
        border-color: rgba(255, 255, 255, 0.52);
        background-color: rgba(255, 255, 255, 0.05);
      }

      footer .footer-social img {
        display: block;
        width: 20px;
        height: 20px;
        object-fit: contain;
      }

      @media (max-width: 1100px) {
        .consult {
          grid-template-columns: 1fr;
          gap: 28px;
          padding: 28px 12px 32px;
        }

        .consult-shell {
          padding: 10px 10px 10px;
          max-width: min(420px, 100%);
          margin-inline: auto;
        }

        .consult-shell,
        .consult-main,
        .line-box {
          height: auto;
          min-height: 0;
        }

        .consult-main,
        .line-box {
          width: 100%;
          max-width: 100%;
        }

        .consult-carousel {
          flex: none;
        }

        .consult-voice-header {
          margin-top: 22px;
        }

        .consult-main h2 {
          white-space: normal;
        }

        .consult-main {
          padding-top: 0;
        }

        .line-box {
          max-width: min(420px, 100%);
          width: 100%;
          margin-inline: auto;
        }
      }

      @media (max-width: 900px) {
        .hero {
          min-height: 480px;
        }

        .header {
          display: block;
          padding: 0;
        }

        .header-bar {
          position: relative;
          z-index: 70;
          display: grid;
          grid-template-columns: 48px 1fr 48px;
          align-items: center;
          width: 100%;
          min-height: 56px;
          padding: 10px 10px;
          box-sizing: border-box;
        }

        .logo {
          grid-column: 2;
          justify-self: center;
          z-index: 1;
        }

        .logo img {
          width: 128px;
        }

        .nav-toggle {
          grid-column: 3;
          justify-self: center;
          display: inline-flex;
        }

        .nav-backdrop {
          display: block;
          position: fixed;
          inset: 0;
          z-index: 58;
          margin: 0;
          padding: 0;
          border: 0;
          background: rgba(255, 255, 255, 0.52);
          cursor: pointer;
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transition: opacity 0.28s ease, visibility 0.28s linear;
        }

        .header.nav-open .nav-backdrop {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
        }

        .nav {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          z-index: 59;
          width: 100%;
          max-width: 100%;
          height: 100vh;
          height: 100dvh;
          margin: 0;
          padding: 76px max(22px, env(safe-area-inset-right)) 28px max(22px, env(safe-area-inset-left));
          box-sizing: border-box;
          flex-direction: column;
          align-items: stretch;
          gap: 0;
          font-size: 14px;
          color: #2b2f33;
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(12px);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
          transform: translateX(100%);
          pointer-events: none;
          visibility: hidden;
          transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.32s;
        }

        .header.nav-open .nav {
          transform: translateX(0);
          pointer-events: auto;
          visibility: visible;
          transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
        }

        .nav a {
          padding: 15px 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .nav a:not(.cta) {
          color: #2b2f33;
        }

        .nav a:not(.cta)::after {
          display: none;
        }

        .nav .cta {
          margin-top: 18px;
          margin-left: 0;
          justify-content: center;
          width: 100%;
          text-align: center;
        }

        .hero-video-wrap {
          width: 100%;
        }

        .hero-copy {
          padding-left: 26px;
          padding-top: 227px;
        }

        .hero-copy h1 {
          font-size: 37px;
        }

        .hero-copy > p {
          font-size: 15px;
        }

        .hero-copy--dual-coating h2,
        .hero-copy--dual-repair h2,
        .hero-copy--dual-company h2 {
          font-size: 38px;
        }

        .hero-copy--dual-coating .sub,
        .hero-copy--dual-repair .sub,
        .hero-copy--dual-company .sub {
          margin: 0 0 11px;
          font-size: 9px;
        }

        .hero-copy--dual-coating > p:first-of-type,
        .hero-copy--dual-repair > p:first-of-type,
        .hero-copy--dual-company > p:first-of-type {
          margin: 0 0 10px;
          font-size: 15px;
        }

        .hero-copy--dual-coating .hero-coating-subcopy,
        .hero-copy--dual-repair .hero-repair-subcopy,
        .hero-copy--dual-company .hero-company-subcopy {
          font-size: 11px;
          line-height: 1.7;
        }

        .consult-main:not(.consult-main--footer-only) {
          padding-top: 20px;
        }

        .consult-main:not(.consult-main--footer-only) h2 {
          font-size: 34px;
        }

        .consult-main:not(.consult-main--footer-only) p {
          font-size: 13px;
        }

        .bottom-cta h2 {
          font-size: 24px;
        }

        .consult {
          padding: 20px 10px 24px;
          gap: 20px;
        }

        .consult-shell {
          padding: 10px 10px 10px;
        }

        .consult-voice-header {
          margin-top: 20px;
          margin-bottom: 8px;
          gap: 4px 8px;
        }

        .consult-voice-label {
          font-size: 22px;
        }

        .consult-voice-caption {
          font-size: 11px;
          letter-spacing: 0.06em;
        }

        .consult-voice-card-inner {
          padding: 12px 10px 10px;
        }

        .consult-voice-stars {
          margin-bottom: 8px;
          font-size: 14px;
          letter-spacing: 2px;
        }

        .consult-voice-body p {
          font-size: 12px;
          line-height: 1.65;
        }

        .consult-voice-meta {
          font-size: 9px;
        }

        .line-box {
          margin-top: 15px;
        }

        .line-box-brand img {
          height: 64px;
        }

        .line-box-kicker {
          font-size: 16px;
        }

        .line-box-title {
          font-size: 28px;
        }

        .line-box-body {
          padding: 20px 8px 18px;
        }

        .line-box-area-title {
          font-size: 14px;
        }

        .line-box-areas {
          font-size: 12px;
        }

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

        .footer-grid {
          margin-inline: auto;
          width: 100%;
          max-width: 100%;
          justify-items: center;
        }

        footer .footer-brand {
          align-items: center;
          justify-self: center;
          width: 100%;
        }

        footer .footer-brand-inner {
          margin-left: 0;
        }

        footer .footer-company {
          display: none;
        }

        .consult-main.consult-main--footer-only {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-self: center;
          width: 100%;
          margin: 8px 0 16px;
          padding-top: 0;
        }

        footer .footer-contact {
          justify-self: center;
          text-align: center;
          padding-left: 0;
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        footer .footer-contact-tel {
          justify-content: center;
        }

        .reasons {
          grid-template-columns: 1fr 1fr;
        }

        .line-flow-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .coating-svc-compare {
          grid-template-columns: 1fr;
        }

        .coating-svc-split-media .coating-svc-compare {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .coating-svc-steps {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        footer {
          padding: 24px 20px env(safe-area-inset-bottom, 0);
          padding-inline: max(20px, env(safe-area-inset-left)) max(20px, env(safe-area-inset-right));
        }

        footer .footer-copy {
          margin-left: calc(-1 * max(20px, env(safe-area-inset-left)));
          margin-right: calc(-1 * max(20px, env(safe-area-inset-right)));
          width: calc(
            100% + max(20px, env(safe-area-inset-left)) + max(20px, env(safe-area-inset-right))
          );
        }

        .footer-back-top {
          right: max(16px, env(safe-area-inset-right));
        }

        .dual-card {
          border-left: 0;
          border-right: 0;
          border-bottom: 1px solid #2a2f39;
        }

        .reasons .reason {
          border-left: 0;
          border-bottom: 1px solid #2a2f39;
          border-right: 1px solid #2a2f39;
        }

        .reasons .reason:nth-child(1) {
          grid-column: 1 / -1;
          border-right: 0;
        }

        .reasons .reason:nth-child(2n + 1):nth-child(n + 3) {
          border-right: 0;
        }

        .dual-card h2 {
          font-size: 43px;
        }

        .dual-card .sub {
          margin: 0 0 11px;
          font-size: 9px;
        }

        .dual-card p {
          margin: 0 0 15px;
          font-size: 17px;
        }

        .dual-card .btn {
          font-size: 7px;
        }

        .dual-card .btn::after {
          width: 4px;
          height: 4px;
          border-top-width: 1px;
          border-right-width: 1px;
        }

        .service {
          flex-basis: 78vw;
        }

        footer .footer-company-cols {
          flex-direction: column;
          align-items: center;
          gap: 32px;
        }

        footer .footer-company-cols ul {
          max-width: 100%;
          text-align: center;
        }

        footer .footer-contact-tel,
        footer .footer-contact-hours {
          white-space: normal;
        }
      }

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

        .line-flow-card {
          min-height: 0;
        }

        .line-photo-shell {
          padding: 40px 14px 46px;
        }

        .line-photo-layout {
          grid-template-columns: 1fr;
          gap: 18px;
        }

        .line-photo-cards {
          grid-template-columns: 1fr;
          gap: 12px;
          margin-top: 16px;
        }

        .line-photo-card {
          padding: 14px 12px;
        }

        .line-photo-card h3 {
          margin-bottom: 10px;
          font-size: 18px;
        }

        .line-photo-card li {
          font-size: 14px;
          line-height: 1.55;
        }

        .line-photo-preview {
          order: 1;
          width: 100%;
        }

        .line-photo-phone {
          width: min(100%, 340px);
        }

        .line-photo-copy {
          order: 2;
        }
      }

      @media (max-width: 1024px) {
        .line-photo-cards {
          grid-template-columns: 1fr;
        }
      }

      /* ----- Home page (index) ----- */
      body.page-home .dual-card.coating {
        background-image:
          linear-gradient(to bottom, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.74)),
          radial-gradient(circle at 70% 10%, rgba(248, 228, 190, 0.2), transparent 45%),
          url("../img/top_coating_back_02b.jpg");
      }

      body.page-home .dual-card.repair {
        background-image:
          linear-gradient(to bottom, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.74)),
          radial-gradient(circle at 70% 10%, rgba(248, 228, 190, 0.2), transparent 45%),
          url("../img/top_repair_back_02b.jpg");
      }

      body.page-home .dual {
        border-top: 1px solid #ffffff;
      }

      body.page-home .dual-card {
        border: none;
        background-size: 100% 100%, 100% 100%, cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      body.page-home .dual-card:hover {
        background-size: 100% 100%, 100% 100%, cover;
        filter: brightness(1.06);
      }

      body.page-home .dual-card:first-child {
        border-right: 1px solid #d1d5db;
      }

      @media (max-width: 900px) {
        body.page-home .dual-card:first-child {
          border-right: none;
          border-bottom: 1px solid #d1d5db;
        }
      }

      body.page-home .reasons {
        background: #f6f6f4;
        border-bottom: 1px solid #e3e3df;
      }

      body.page-home .reason {
        border-right: 1px solid #e3e3df;
      }

      body.page-home .reason-icon {
        color: var(--gold);
      }

      body.page-home .reason .num {
        color: var(--gold);
      }

      body.page-home .reason h4 {
        color: #1f2937;
      }

      body.page-home .reason p {
        color: #5b6573;
      }

      @media (max-width: 768px) {
        body.page-home .reasons .reason {
          border-bottom: 1px solid #e3e3df;
          border-right: 1px solid #e3e3df;
        }
      }

      body.page-home .services {
        container-type: inline-size;
        border-bottom: 1px solid #e3e3df;
        background: #f6f6f4;
      }

      @media (min-width: 769px) {
        body.page-home .service {
          flex: 0 0 calc(100cqw / 3);
        }
      }

      body.page-home .service {
        display: flex;
        padding: 0;
        min-height: 280px;
        border-right: 1px solid #d1d5db;
        background: none;
      }

      body.page-home .services .service:last-child {
        border-right: 1px solid #d1d5db;
      }

      body.page-home .service-link {
        display: flex;
        flex: 1;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: stretch;
        min-height: 280px;
        height: 100%;
        padding: 0;
        text-decoration: none;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      body.page-home .service-content {
        flex: 1;
        width: 100%;
        height: 100%;
        min-height: 280px;
        padding: 20px 16px;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.88);
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      body.page-home .service--wheel .service-link {
        background-image: url("../img/coating_wheel_02.jpg");
      }

      body.page-home .service--headlight .service-link {
        background-image: url("../img/coating_headlight.jpg");
      }

      body.page-home .service--window .service-link {
        background-image: url("../img/coating_glass_01.jpg");
      }

      body.page-home .service--room .service-link {
        background-image: url("../img/coating_room_01.jpg");
      }

      body.page-home .service--resin .service-link {
        background-image: url("../img/coating_resin_01.jpg");
      }

      body.page-home .service--moulding .service-link {
        background-image: url("../img/coating_moulding_02.jpg");
      }

      body.page-home .service h3 {
        margin: 0 0 8px;
        font-size: 16px;
        font-weight: 600;
        color: #111827;
        letter-spacing: 0.04em;
        text-align: center;
        width: 100%;
      }

      body.page-home .service p {
        margin: 0 0 14px;
        font-size: 12px;
        line-height: 1.7;
        color: #374151;
        text-align: center;
        width: 100%;
      }

      body.page-home .service-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        align-self: center;
        margin-top: 0;
        padding: 10px 14px 10px 16px;
        background: #b18d4f;
        color: #ffffff;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.06em;
        border: 0;
        border-radius: 2px;
        box-shadow: 0 4px 12px rgba(168, 134, 75, 0.28);
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      }

      body.page-home .service-btn::after {
        content: "";
        width: 6px;
        height: 6px;
        border-top: 1.5px solid #ffffff;
        border-right: 1.5px solid #ffffff;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
      }

      body.page-home a.service-btn {
        text-decoration: none;
        position: relative;
        z-index: 2;
        cursor: pointer;
        touch-action: manipulation;
      }

      body.page-home .service-btn:hover {
        background: #9a783f;
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(168, 134, 75, 0.34);
      }

      body.page-home .service-btn:hover::after {
        transform: translateX(3px) rotate(45deg);
      }

      @media (min-width: 769px) {
        body.page-home .dual-card-link {
          justify-content: flex-start;
          padding: 68px 34px 72px;
        }

        body.page-home .dual-card h2 {
          font-size: 52px;
        }

        body.page-home .dual-card .sub {
          font-size: 22px;
          font-weight: 700;
          letter-spacing: 0.06em;
        }

        body.page-home .dual-card-link > p:not(.sub) {
          font-size: 20px;
          margin: 14px 0 32px;
        }

        body.page-home .consult-main:not(.consult-main--footer-only) h2 {
          font-size: 38px;
        }
      }

      body.page-home .dual-card .sub {
        letter-spacing: 0.06em;
      }

      @media (max-width: 768px) {
        body.page-home .dual-card .sub {
          font-size: 13px;
          font-weight: inherit;
        }
      }

      body.page-home .dual-card .btn {
        background-color: rgba(0, 0, 0, 0.5);
        color: #ffffff;
        padding: 10px 18px;
        border-radius: 2px;
        transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
      }

      body.page-home .dual-card:hover .btn {
        background-color: rgba(0, 0, 0, 0.7);
        color: #f3dca6;
      }
