    /* ── Reset & Variables ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --white:   #FFFFFF;
      --gray:    #F5F3F0;
      --beige:   #F0EBE3;
      --red:     #D94433;
      --yellow:  #F5D800;
      --black:   #111111;
      --muted:   #888888;
      --serif:   'Noto Serif JP', 'Yu Mincho', serif;
      --sans:    'Noto Sans JP', sans-serif;
      --display: 'DM Serif Display', serif;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      color: var(--black);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ── Utilities ── */
    .inner {
      max-width: 1240px;
      margin-inline: auto;
      padding-inline: clamp(24px, 5vw, 80px);
    }
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .8s ease, transform .8s ease;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ══════════════════════════════
       NAVIGATION
    ══════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px clamp(24px, 5vw, 80px);
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,.06);
      transition: background .3s;
    }
    .nav__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--serif);
      font-size: 18px;
      font-weight: 900;
      letter-spacing: .04em;
      line-height: 1.2;
    }
    .nav__logo img {
      height: 40px;
      width: auto;
      display: block;
    }
    .nav__logo-text {
      display: flex;
      flex-direction: column;
    }
    .nav__logo span {
      display: block;
      font-family: var(--display);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: .18em;
      color: var(--muted);
      margin-top: 2px;
    }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav__links a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .08em;
      color: var(--black);
      opacity: .7;
      transition: opacity .2s;
    }
    .nav__links a:hover { opacity: 1; }
    .nav__tel {
      font-family: var(--display);
      font-size: 22px;
      letter-spacing: .02em;
      color: var(--red);
    }
    .nav__tel small {
      display: block;
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: .08em;
      text-align: center;
    }
    .nav__cta {
      background: var(--red);
      color: #fff !important;
      opacity: 1 !important;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .06em;
    }
    .nav__hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav__hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--black);
      border-radius: 2px;
      transition: transform .3s ease, opacity .3s ease;
      transform-origin: center;
    }
    .nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
    .nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav__drawer {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99;
      pointer-events: none;
    }
    .nav__drawer-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.5);
      opacity: 0;
      transition: opacity .3s ease;
    }
    .nav__drawer-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: min(320px, 85vw);
      height: 100%;
      background: var(--white);
      transform: translateX(100%);
      transition: transform .35s ease;
      display: flex;
      flex-direction: column;
      padding: 80px 36px 40px;
      gap: 0;
    }
    .nav__drawer-links {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid rgba(0,0,0,.08);
    }
    .nav__drawer-links a {
      font-size: 16px;
      font-weight: 500;
      letter-spacing: .08em;
      color: var(--black);
      padding: 18px 0;
      border-bottom: 1px solid rgba(0,0,0,.08);
      transition: color .2s;
    }
    .nav__drawer-links a:hover { color: var(--red); }
    .nav__drawer-tel {
      margin-top: 32px;
      font-family: var(--display);
      font-size: 28px;
      color: var(--red);
      letter-spacing: .02em;
    }
    .nav__drawer-tel small {
      display: block;
      font-family: var(--sans);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .08em;
      margin-top: 4px;
    }
    .nav__drawer-cta {
      margin-top: 24px;
      display: block;
      background: var(--red);
      color: #fff;
      text-align: center;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .08em;
      padding: 16px;
    }

    .nav__drawer.is-open {
      display: block;
      pointer-events: auto;
    }
    .nav__drawer.is-open .nav__drawer-overlay { opacity: 1; }
    .nav__drawer.is-open .nav__drawer-panel { transform: translateX(0); }

    .sp-only { display: none; }
    @media (max-width: 768px) {
      .sp-only { display: inline; }
      .nav__links { display: none; }
      .nav__hamburger { display: flex; }
      .nav__drawer { display: none; }
      .nav__drawer.is-open { display: block; }
    }

    /* ══════════════════════════════
       PAGE HERO
    ══════════════════════════════ */
    .page-hero {
      padding-top: 70px;
      background: var(--black);
      position: relative;
      overflow: hidden;
      min-height: 36vh;
      display: flex;
      align-items: flex-end;
    }
    .page-hero__bg-text {
      position: absolute;
      bottom: -20px;
      right: -40px;
      font-family: var(--display);
      font-size: clamp(100px, 16vw, 220px);
      font-style: italic;
      color: rgba(255,255,255,.04);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: -.02em;
      user-select: none;
    }
    .page-hero__accent {
      position: absolute;
      top: 0;
      right: 0;
      width: clamp(120px, 18vw, 260px);
      height: 5px;
      background: var(--red);
    }
    .page-hero__inner {
      position: relative;
      z-index: 1;
      padding: clamp(20px, 3vw, 40px) clamp(24px, 5vw, 80px) clamp(40px, 8vw, 100px);
      max-width: 1240px;
      width: 100%;
      margin-inline: auto;
    }
    .page-hero__label {
      font-family: var(--display);
      font-size: 11px;
      letter-spacing: .28em;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .page-hero__title {
      font-family: var(--serif);
      font-size: clamp(40px, 6vw, 80px);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      letter-spacing: .04em;
    }
    .page-hero__title em {
      font-style: normal;
      color: var(--yellow);
    }
    .page-hero__sub {
      margin-top: 20px;
      font-size: clamp(13px, 1.4vw, 15px);
      color: rgba(255,255,255,.75);
      letter-spacing: .1em;
      line-height: 1.9;
    }
    .page-hero__breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--display);
      font-size: 11px;
      letter-spacing: .14em;
      color: rgba(255,255,255,.45);
      margin-bottom: 28px;
    }
    .page-hero__breadcrumb a { transition: color .2s; }
    .page-hero__breadcrumb a:hover { color: rgba(255,255,255,.8); }
    .page-hero__breadcrumb span { color: rgba(255,255,255,.25); }

    /* ══════════════════════════════
       TRUST STRIP
    ══════════════════════════════ */
    .trust-strip {
      background: #f0ebe3;
      padding-block: 18px;
      overflow: hidden;
    }
    .trust-strip__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(24px, 5vw, 64px);
      flex-wrap: wrap;
      padding-inline: clamp(24px, 5vw, 80px);
    }
    .trust-strip__item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .06em;
      color: var(--black);
      white-space: nowrap;
    }
    .trust-strip__item::before {
      content: '';
      width: 20px;
      height: 20px;
      background: var(--black);
      flex-shrink: 0;
      clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    }

    /* ══════════════════════════════
       CONTACT LAYOUT
    ══════════════════════════════ */
    .contact-wrap {
      background: var(--gray);
      padding-block: clamp(80px, 12vw, 140px);
    }
    .contact-wrap .inner {
      display: grid;
      grid-template-columns: 5fr 3fr;
      gap: clamp(48px, 7vw, 100px);
      align-items: start;
    }

    /* ══════════════════════════════
       FORM SECTION
    ══════════════════════════════ */
    .form-section__header {
      margin-bottom: clamp(40px, 5vw, 56px);
    }
    .form-section__label {
      font-family: var(--display);
      font-size: 11px;
      letter-spacing: .24em;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .form-section__title {
      font-family: var(--serif);
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 900;
      line-height: 1.3;
      letter-spacing: .04em;
    }
    .form-section__note {
      margin-top: 16px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.9;
      letter-spacing: .06em;
    }
    .form-section__note .required-mark {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      padding: 2px 7px;
      margin-right: 4px;
      vertical-align: middle;
    }

    /* ── Form ── */
    .contact-form,
    .wpcf7-form {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .form-group__label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
    }
    .form-group__label .required {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      padding: 2px 8px;
      flex-shrink: 0;
    }
    .form-group__label .optional {
      display: inline-block;
      border: 1px solid rgba(0,0,0,.2);
      color: var(--muted);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      padding: 2px 8px;
      flex-shrink: 0;
    }
    .form-group input:not([type="checkbox"]),
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--white);
      border: 1.5px solid rgba(0,0,0,.12);
      font-family: var(--sans);
      font-size: 15px;
      color: var(--black);
      padding: 14px 18px;
      outline: none;
      transition: border-color .25s, box-shadow .25s;
      appearance: none;
      -webkit-appearance: none;
      border-radius: 0;
    }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 18px center;
      padding-right: 44px;
      cursor: pointer;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(217,68,51,.08);
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(0,0,0,.3);
      font-size: 14px;
    }
    .form-group textarea {
      resize: vertical;
      min-height: 160px;
      line-height: 1.8;
    }
    .form-group--row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .form-group--checkbox {
      gap: 14px;
    }
    .form-group__checkbox-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .checkbox-item {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }
    .checkbox-item input[type="checkbox"] {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      border: 1.5px solid rgba(0,0,0,.2);
      background: var(--white);
      cursor: pointer;
      accent-color: var(--red);
    }
    .checkbox-item span {
      font-size: 14px;
      letter-spacing: .05em;
      line-height: 1.5;
    }
    .form-group__hint {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: .05em;
      line-height: 1.7;
    }

    /* ══ CF7 overrides ══ */

    /* p タグのマージンリセット */
    .wpcf7 p { margin: 0; }

    /* form-group 内の p タグを透過させてレイアウトを維持 */
    .form-group > p,
    .form-group--row > .form-group > p {
      display: contents;
    }

    /* CF7 が挿入する不要な <br> を非表示 */
    .wpcf7 .form-group__label + br,
    .wpcf7 .wpcf7-form-control-wrap + br,
    .wpcf7 .form-group__label br {
      display: none;
    }

    /* input/select/textarea のラッパーを block に */
    .wpcf7 .wpcf7-form-control-wrap {
      display: block;
      width: 100%;
    }

    /* チェックボックスリスト：グリッドレイアウト維持 */
    .form-group__checkbox-list > p { display: contents; }
    .form-group__checkbox-list .wpcf7-form-control-wrap { display: contents; }
    .form-group__checkbox-list .wpcf7-checkbox { display: contents; }
    .form-group__checkbox-list .wpcf7-list-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0;
    }
    .form-group__checkbox-list .wpcf7-list-item input[type="checkbox"] {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin: 0;
      accent-color: var(--red);
      cursor: pointer;
    }
    .form-group__checkbox-list .wpcf7-list-item-label {
      font-size: 14px;
      letter-spacing: .05em;
      line-height: 1.5;
      cursor: pointer;
    }

    /* プライバシーチェック */
    .privacy-check > p {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin: 0;
      width: 100%;
    }
    .privacy-check .wpcf7-form-control-wrap,
    .privacy-check .wpcf7-acceptance,
    .privacy-check .wpcf7-list-item { display: contents; }
    .privacy-check input[type="checkbox"] {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin-top: 3px;
      accent-color: var(--red);
      cursor: pointer;
    }
    .privacy-check > p > br { display: none; }
    .privacy-check label br { display: none; }

    /* 送信ボタンエリア */
    .form-submit > p:first-child {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0;
    }
    input.wpcf7-submit.btn-submit {
      display: block;
      width: 100%;
      max-width: 480px;
      background: var(--red);
      color: #fff;
      font-family: var(--sans);
      font-size: clamp(15px, 1.6vw, 17px);
      font-weight: 700;
      letter-spacing: .1em;
      padding: 22px 40px;
      border: none;
      cursor: pointer;
      transition: background .25s, transform .2s, box-shadow .2s;
      -webkit-appearance: none;
      appearance: none;
    }
    input.wpcf7-submit.btn-submit:hover {
      background: #c23a2a;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(217,68,51,.25);
    }
    .wpcf7-spinner { display: none !important; }
    .form-submit__note br { display: none; }
    .form-submit__note,
    .form-submit__note + p {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: .07em;
      text-align: center;
      line-height: 1.8;
      margin: 0;
    }
    .form-submit__tel {
      display: block;
    }

    /* Privacy checkbox */
    .privacy-check {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 24px;
      background: var(--beige);
      border-left: 3px solid var(--red);
    }
    .privacy-check input[type="checkbox"] {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin-top: 2px;
      accent-color: var(--red);
      cursor: pointer;
    }
    .privacy-check label {
      font-size: 13px;
      line-height: 1.9;
      color: #555;
      cursor: pointer;
    }
    .privacy-check a {
      color: var(--red);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* Submit button */
    .form-submit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-top: 8px;
    }
    .btn-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      width: 100%;
      max-width: 480px;
      background: var(--red);
      color: #fff;
      font-family: var(--sans);
      font-size: clamp(15px, 1.6vw, 17px);
      font-weight: 700;
      letter-spacing: .1em;
      padding: 22px 40px;
      border: none;
      cursor: pointer;
      transition: background .25s, transform .2s, box-shadow .2s;
    }
    .btn-submit:hover {
      background: #c23a2a;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(217,68,51,.25);
    }
    .btn-submit::after {
      content: '→';
      font-size: 20px;
    }
    .form-submit__note {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: .07em;
      text-align: center;
    }

    /* ══════════════════════════════
       SIDEBAR
    ══════════════════════════════ */
    .contact-sidebar {
      position: sticky;
      top: 100px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    /* Tel card */
    .sidebar-tel {
      background: var(--white);
      color: var(--black);
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,.08);
      border-top: 4px solid var(--red);
    }
    .sidebar-tel__label {
      font-family: var(--display);
      font-size: 10px;
      letter-spacing: .24em;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .sidebar-tel__heading {
      font-family: var(--serif);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: .04em;
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .sidebar-tel__num {
      font-family: var(--display);
      font-size: clamp(28px, 3.5vw, 36px);
      color: var(--red);
      letter-spacing: .02em;
      display: block;
      line-height: 1;
      margin-bottom: 6px;
    }
    .sidebar-tel__hours {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: .08em;
    }

    /* Info card */
    .sidebar-info {
      background: var(--white);
      padding: 28px;
      border: 1px solid rgba(0,0,0,.08);
    }
    .sidebar-info__title {
      font-family: var(--display);
      font-size: 10px;
      letter-spacing: .22em;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .sidebar-info__list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .sidebar-info__item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 13px;
      line-height: 1.7;
      letter-spacing: .04em;
    }
    .sidebar-info__icon {
      width: 28px;
      height: 28px;
      background: var(--beige);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      margin-top: 1px;
    }
    .sidebar-info__item strong {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--muted);
      margin-bottom: 2px;
    }

    /* Guarantee badge */
    .sidebar-guarantee {
      background: var(--beige);
      padding: 28px;
      border-left: 4px solid var(--yellow);
    }
    .sidebar-guarantee__en {
      font-family: var(--display);
      font-size: 10px;
      letter-spacing: .22em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .sidebar-guarantee__title {
      font-family: var(--serif);
      font-size: 17px;
      font-weight: 900;
      letter-spacing: .04em;
      margin-bottom: 14px;
    }
    .sidebar-guarantee__list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .sidebar-guarantee__list li {
      font-size: 13px;
      letter-spacing: .05em;
      line-height: 1.6;
      padding-left: 18px;
      position: relative;
    }
    .sidebar-guarantee__list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--red);
      font-weight: 700;
      font-size: 12px;
    }

    /* ══════════════════════════════
       COMPLETE STATE
    ══════════════════════════════ */
    .form-complete {
      display: none;
      text-align: center;
      padding: clamp(60px, 8vw, 100px) 0;
    }
    .form-complete.is-visible {
      display: block;
    }
    .form-complete__icon {
      width: 80px;
      height: 80px;
      background: var(--red);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: #fff;
      margin-bottom: 32px;
    }
    .form-complete__title {
      font-family: var(--serif);
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 900;
      letter-spacing: .04em;
      margin-bottom: 20px;
    }
    .form-complete__body {
      font-size: 15px;
      line-height: 2;
      color: #555;
      max-width: 480px;
      margin-inline: auto;
    }
    .form-complete__back {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 40px;
      background: var(--black);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .08em;
      padding: 16px 36px;
      transition: background .2s;
    }
    .form-complete__back:hover { background: #333; }

    /* ══════════════════════════════
       MAP SECTION
    ══════════════════════════════ */
    .map-section {
      background: var(--white);
      padding-block: clamp(64px, 9vw, 120px);
    }
    .map-section .inner {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: start;
    }
    .map-section__info__label {
      font-family: var(--display);
      font-size: 11px;
      letter-spacing: .22em;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .map-section__info__title {
      font-family: var(--serif);
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 900;
      letter-spacing: .04em;
      line-height: 1.3;
      margin-bottom: 28px;
    }
    .map-section__detail {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .map-section__detail-row {
      display: flex;
      gap: 14px;
      font-size: 14px;
      line-height: 1.8;
      letter-spacing: .05em;
    }
    .map-section__detail-row dt {
      font-weight: 700;
      min-width: 56px;
      flex-shrink: 0;
      color: var(--muted);
      font-size: 12px;
      letter-spacing: .1em;
      margin-top: 3px;
    }
    .map-section__map {
      aspect-ratio: 16 / 9;
      background: var(--beige);
      overflow: hidden;
      position: relative;
    }
    .map-section__map iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
      filter: grayscale(20%);
    }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    .footer {
      background: var(--black);
      color: #fff;
      padding-block: clamp(60px, 8vw, 100px);
    }
    .footer .inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: clamp(40px, 5vw, 80px);
    }
    .footer__brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }
    .footer__brand-logo img {
      height: 40px;
      width: auto;
      display: block;
    }
    .footer__brand-name {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
      letter-spacing: .04em;
    }
    .footer__brand-en {
      font-family: var(--display);
      font-size: 10px;
      letter-spacing: .2em;
      color: rgba(255,255,255,.6);
    }
    .footer__brand-desc {
      font-size: 13px;
      line-height: 2;
      color: rgba(255,255,255,.65);
      max-width: 260px;
      margin-top: 24px;
    }
    .footer__col-title {
      font-family: var(--display);
      font-size: 10px;
      letter-spacing: .2em;
      color: rgba(255,255,255,.55);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer__col ul li {
      margin-bottom: 12px;
    }
    .footer__col ul li a {
      font-size: 13px;
      color: rgba(255,255,255,.75);
      letter-spacing: .06em;
      transition: color .2s;
    }
    .footer__col ul li a:hover { color: #fff; }
    .footer__info p {
      font-size: 13px;
      color: rgba(255,255,255,.7);
      line-height: 2;
      letter-spacing: .04em;
    }
    .footer__bottom-wrap {
      max-width: 1240px;
      margin-inline: auto;
      padding-inline: clamp(24px, 5vw, 80px);
    }
    .footer__bottom {
      margin-top: clamp(40px, 5vw, 60px);
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: nowrap;
      white-space: nowrap;
    }
    .footer__copy {
      font-family: var(--display);
      font-size: 11px;
      letter-spacing: .12em;
      color: rgba(255,255,255,.55);
    }
    .footer__bottom-nav {
      display: flex;
      gap: 24px;
    }
    .footer__bottom-nav a {
      font-size: 11px;
      letter-spacing: .1em;
      color: rgba(255,255,255,.6);
      transition: color .2s;
    }
    .footer__bottom-nav a:hover { color: rgba(255,255,255,.7); }
    @media (max-width: 900px) {
      .footer .inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .footer .inner { grid-template-columns: 1fr 1fr; }
      .footer .inner > :nth-child(1) { grid-column: 1 / -1; }
      .footer .inner > :nth-child(4) { grid-column: 1 / -1; }
      .footer__bottom { flex-direction: row; align-items: center; flex-wrap: wrap; }
    }

    /* ══════════════════════════════
       FLOATING CTA
    ══════════════════════════════ */
    .float-cta {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 90;
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .4s, transform .4s;
    }
    .float-cta.is-visible {
      opacity: 1;
      transform: none;
    }
    .float-cta__btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .06em;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(0,0,0,.2);
      transition: transform .2s;
    }
    .float-cta__btn:hover { transform: scale(1.04); }
    .float-cta__btn--tel {
      background: var(--black);
      color: #fff;
    }
    @media (max-width: 560px) {
      .float-cta { bottom: 16px; right: 16px; }
    }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 900px) {
      .contact-wrap .inner {
        grid-template-columns: 1fr;
      }
      .contact-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .map-section .inner {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 640px) {
      .form-group--row {
        grid-template-columns: 1fr;
      }
      .form-group__checkbox-list {
        grid-template-columns: 1fr;
      }
      .contact-sidebar {
        grid-template-columns: 1fr;
      }
      .trust-strip__inner {
        gap: 16px;
      }
    }
