﻿@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;600;700&family=Shippori+Mincho:wght@600&display=swap');

/*
  Breakpoints
  - 1920px and up: wide desktop
  - 1679.98px and below: desktop
  - 1439.98px and below: laptop
  - 1279.98px and below: small laptop
  - 991.98px and below: tablet landscape
  - 768px and up: tablet and up
  - 767.98px and below: mobile
  - 575.98px and below: small mobile
  - 375px and below: extra small mobile

  Rules
  - `min-width: 768px` is used for tablet-and-up styles.
  - `max-width: 767.98px` is used for mobile styles.
  - `920px` is a shared breakpoint for header behavior adjustments.
  - `max-width: 768px` includes 768px in mobile-side layout handling.
*/

:root {
  --bg: #f6f3ef;
  --surface: #ffffff;
  --ink: #1D1D1D;
  --muted: #6f6f6f;
  --accent: #1f6f8b;
  --accent-2: #f0b429;
  --line-brand: #01B901;
  --line-brand-dark: #01B901;
  --line-brand-soft: #ebfff2;
  --line: #FFDAC7;
  --shadow: 0 18px 50px rgba(22, 22, 22, 0.08);
  --radius: 18px;
  --icon-circle-arrow-red-bg: #D7250C;
  --icon-circle-arrow-svg: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%2024%2024%27%20fill=%27none%27%3E%3Cpath%20d=%27M9%206l6%206-6%206%27%20stroke=%27%23fff%27%20stroke-width=%272.2%27%20stroke-linecap=%27round%27%20stroke-linejoin=%27round%27/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--ink);
  background: #fff;
}

.sub-page {
  background: #FFEDE3;
}

.sub-page-header {
  position: relative;
  padding-top: 124px;
  background: transparent;
}

.sub-page-inner {
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; margin: 0 auto; }

/* Shared page hero */
.page-hero {
  position: relative;
}

.page-hero__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.page-hero__visual {
  display: block;
  line-height: 0;
}

.page-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Shared section index */
.section-index {
  margin: 0;
  position: relative;
  z-index: 0;
  --reason-heart-scale-x: 1.6211;
  --reason-heart-scale-y: 1.7963;
  min-height: clamp(106px, 9.2vw, 150px);
  padding-inline: clamp(8px, 0.9vw, 14px);
  padding-top: 4px;
  text-align: center;
  color: #D7250C;
  display: grid;
  place-content: center;
  line-height: 1.15;
}

.section-index::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 138px;
  height: 115px;
  background-image: url("../img/reason/bg_reason-number_orange.png");
  background-repeat: no-repeat;
  background-position: 49% 49%;
  background-size:
    calc(100% * var(--reason-heart-scale-x))
    calc(100% * var(--reason-heart-scale-y));
  pointer-events: none;
  z-index: 0;
}

.section-index span {
  position: relative;
  z-index: 1;
  --design-font-size: 20;
  --design-line-height: 31;
  --design-tracking: 100;
  display: block;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.section-index strong {
  position: relative;
  z-index: 1;
  --design-font-size: 76;
  --design-line-height: 96;
  --design-tracking: 0;
  display: block;
  margin-top: 4px;
  font-size: clamp(58px, 5vw, 76px);
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .section-index span {
    font-size: 10px;
  }

  .section-index strong {
    font-size: clamp(34px, calc(34px + (100vw - 375px) * 0.05), 54px);
  }
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 100%;
  max-width: 1920px;
  height: 124px;
  z-index: 20;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  margin-left: auto;
  margin-right: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1720px;
  height: 100%;
  padding: 0 0 0 18px;
  margin-left: auto;
  margin-right: 0;
  box-sizing: border-box;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
  height: 54px;
  margin: 35px 0;
  padding: 20px 18px;
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  border-radius: 999px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 110px;
}

.logo-full,
.logo-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.logo-full {
  height: 80%;
  aspect-ratio: 500 / 145;
}

.logo-symbol {
  display: none;
  height: 99px;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.logo-symbol .logo-image {
  width: auto;
  height: 100%;
}

.logo-image {
  width: 100%;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.92))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.72));
}

.menu-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100px;
  height: 100px;
  padding: 0 10px 14px;
  border: none;
  background: #D7250C;
  border-radius: 18px;
  appearance: none;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(215, 37, 12, 0.24);
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 40px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: top 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.menu-toggle::before {
  top: 20px;
  box-shadow: 0 14px 0 #fff, 0 28px 0 #fff;
}

.menu-toggle::after {
  top: 34px;
  opacity: 0;
}

.menu-toggle[aria-expanded=true]::before {
  top: 34px;
  box-shadow: none;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded=true]::after {
  top: 34px;
  opacity: 1;
  transform: translateX(-50%) rotate(-45deg);
}

.menu-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.global-nav {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  gap: 12px;
  row-gap: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  align-items: center;
}

.global-nav a {
  white-space: nowrap;
}

.cta-group {
  align-self: center;
  flex: 0 0 auto;
}

.site-header .cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 600px;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0 0 0 50px;
  background: #FFDAC7;
  flex: 0 1 600px;
}

.site-header .cta-lead,
.cta-block--hero-mobile .cta-lead {
  margin: 0;
  display: block;
  max-width: 100%;
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.site-header .cta-lead .cta-lead-text--compact,
.cta-block--hero-mobile .cta-lead .cta-lead-text--compact {
  display: none;
}

.site-header .cta-group .btn::before,
.cta-block--hero-mobile .cta-group .btn::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--icon-circle-arrow-red-bg);
  background-image: var(--icon-circle-arrow-svg);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: center;
  flex: 0 0 auto;
}

.site-header .cta-group .btn-contact::before,
.cta-block--hero-mobile .cta-group .btn-contact::before {
  background-color: #F2A522;
}

.site-header .cta-group .btn-line::before,
.site-header .cta-group .btn-line[href="/line/"]::before,
.cta-block--hero-mobile .cta-group .btn-line::before,
.cta-block--hero-mobile .cta-group .btn-line[href="/line/"]::before {
  background-color: var(--line-brand);
}

.site-header .cta-group,
.cta-block--hero-mobile .cta-group {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  max-width: 530px;
  gap: 10px;
  margin: 0 35px;
}

.site-header .cta-group .btn,
.cta-block--hero-mobile .cta-group .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 170px;
  min-height: 54px;
  padding: 9px 11px;
  border-radius: 999px;
  border-color: transparent;
  background: #fff;
  color: #2f241d;
  box-shadow: none;
  text-align: center;
}

.site-header .cta-group .btn .btn-label,
.cta-block--hero-mobile .cta-group .btn .btn-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
}

.site-header .cta-group .btn-contact,
.site-header .cta-group .btn-contact:hover,
.cta-block--hero-mobile .cta-group .btn-contact,
.cta-block--hero-mobile .cta-group .btn-contact:hover {
  background: #fff;
  color: #2f241d;
  border-color: transparent;
}

.site-header .cta-group .btn-line,
.site-header .cta-group .btn-line[href="/line/"],
.site-header .cta-group .btn-line:hover,
.site-header .cta-group .btn-line[href="/line/"]:hover,
.cta-block--hero-mobile .cta-group .btn-line,
.cta-block--hero-mobile .cta-group .btn-line[href="/line/"],
.cta-block--hero-mobile .cta-group .btn-line:hover,
.cta-block--hero-mobile .cta-group .btn-line[href="/line/"]:hover {
  background: #fff;
  color: #2f241d;
  border-color: transparent;
  box-shadow: none;
}

.site-header .cta-group .btn-contact,
.cta-block--hero-mobile .cta-group .btn-contact {
  --btn-main-color: #F2A522;
}

.site-header .cta-group .btn-line,
.site-header .cta-group .btn-line[href="/line/"],
.cta-block--hero-mobile .cta-group .btn-line,
.cta-block--hero-mobile .cta-group .btn-line[href="/line/"] {
  --btn-main-color: var(--line-brand);
}

.site-header .cta-group .btn-tel,
.cta-block--hero-mobile .cta-group .btn-tel {
  --btn-main-color: #D7250C;
}

.site-header .cta-group .btn,
.cta-block--hero-mobile .cta-group .btn {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.site-header .cta-group .btn::before,
.cta-block--hero-mobile .cta-group .btn::before,
.site-header .cta-group .btn .btn-label,
.cta-block--hero-mobile .cta-group .btn .btn-label,
.site-header .cta-group .btn-tel .btn-number,
.cta-block--hero-mobile .cta-group .btn-tel .btn-number,
.site-header .cta-group .btn-tel .btn-meta,
.cta-block--hero-mobile .cta-group .btn-tel .btn-meta {
  transition: color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.site-header .cta-group .btn:hover,
.site-header .cta-group .btn:focus-visible,
.cta-block--hero-mobile .cta-group .btn:hover,
.cta-block--hero-mobile .cta-group .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(26, 18, 12, 0.14);
}

.site-header .cta-group .btn:hover::before,
.site-header .cta-group .btn:focus-visible::before,
.cta-block--hero-mobile .cta-group .btn:hover::before,
.cta-block--hero-mobile .cta-group .btn:focus-visible::before {
  transform: scale(1.06);
}

.site-header .cta-group .btn:hover .btn-label,
.site-header .cta-group .btn:focus-visible .btn-label,
.cta-block--hero-mobile .cta-group .btn:hover .btn-label,
.cta-block--hero-mobile .cta-group .btn:focus-visible .btn-label {
  color: var(--btn-main-color, #D7250C);
}

.site-header .cta-group .btn-tel:hover .btn-number,
.site-header .cta-group .btn-tel:hover .btn-meta,
.site-header .cta-group .btn-tel:focus-visible .btn-number,
.site-header .cta-group .btn-tel:focus-visible .btn-meta,
.cta-block--hero-mobile .cta-group .btn-tel:hover .btn-number,
.cta-block--hero-mobile .cta-group .btn-tel:hover .btn-meta,
.cta-block--hero-mobile .cta-group .btn-tel:focus-visible .btn-number,
.cta-block--hero-mobile .cta-group .btn-tel:focus-visible .btn-meta {
  color: var(--btn-main-color, #D7250C);
}

.site-header .cta-group .btn-tel,
.cta-block--hero-mobile .cta-group .btn-tel {
  display: grid;
  grid-template-columns: 24px auto;
  grid-template-areas: "icon content";
  align-items: center;
  column-gap: 10px;
  min-width: 0;
}

.site-header .cta-group .btn-tel::before,
.cta-block--hero-mobile .cta-group .btn-tel::before {
  grid-area: icon;
  width: 24px;
  height: 24px;
  justify-self: center;
  align-self: center;
  background-color: #D7250C;
}

.site-header .cta-group .btn-tel .btn-label,
.cta-block--hero-mobile .cta-group .btn-tel .btn-label {
  grid-area: content;
  row-gap: 2px;
}

.site-header .cta-group .btn-tel .btn-number,
.cta-block--hero-mobile .cta-group .btn-tel .btn-number {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #2f241d;
}

.site-header .cta-group .btn-tel .btn-meta,
.cta-block--hero-mobile .cta-group .btn-tel .btn-meta {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #5d5d5d;
}

@media screen and (min-width: 1920px) {
  .site-header {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1679.98px) {
  .site-header {
    width: 100%;
    max-width: 1500px;
  }
  .header-inner {
    width: 100%;
    max-width: 1690px;
    gap: 16px;
    padding: 0 0 0 6px;
  }
  .global-nav {
    font-size: 15px;
  }
  .site-header .cta-block {
    width: 100%;
    max-width: 420px;
    align-self: flex-start;
    align-items: stretch;
    height: auto;
    justify-content: center;
    min-height: 160px;
    gap: 6px;
    padding: 12px;
  }
  .site-header .cta-lead {
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .site-header .cta-group {
    display: grid;
    grid-template-columns: repeat(2, 180px);
    justify-content: center;
    width: 100%;
    max-width: 366px;
    gap: 6px;
    margin: 0;
  }
  .site-header .cta-group .btn::before {
    width: 18px;
    height: 18px;
    background-size: 9px 9px;
  }
  .site-header .cta-group .btn {
    min-width: 0;
    min-height: 42px;
    height: 42px;
    width: 180px;
    padding: 6px 10px;
    gap: 6px;
  }
  .site-header .cta-group .btn .btn-label {
    font-size: 14px;
    line-height: 1.3;
  }
  .site-header .cta-group .btn-contact br {
    display: none;
  }
  .site-header .cta-group .btn-contact .btn-label {
    white-space: nowrap;
  }
  .site-header .cta-group .btn-line .btn-label {
    white-space: nowrap;
  }
  .site-header .cta-group .btn-tel {
    min-width: 0;
    grid-template-columns: 18px auto;
    column-gap: 8px;
  }
  .site-header .cta-group .btn-tel::before {
    width: 18px;
    height: 18px;
  }
  .site-header .cta-group .btn-tel .btn-label {
    text-align: center;
    row-gap: 0;
  }
  .site-header .cta-group .btn-tel .btn-number {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .site-header .cta-group .btn-tel .btn-meta {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
  .site-header .cta-group .btn-line {
    grid-column: 1/-1;
    justify-self: center;
  }
}

@media screen and (max-width: 1439.98px) {
  .site-header {
    width: 100%;
    max-width: 1200px;
  }
  .logo {
    height: 100px;
  }
  .logo-full {
    display: flex;
  }
  .logo-symbol {
    display: none;
    height: 90%;
  }
  .header-inner {
    width: 100%;
    max-width: 100%;
  }
  .site-header .cta-group .btn {
    min-height: 40px;
    width: 180px;
  }
}

@media screen and (max-width: 1279.98px) {
  .global-nav {
    font-size: 14px;
  }
  .site-header .cta-lead .cta-lead-text--default {
    display: none;
  }
  .site-header .cta-lead .cta-lead-text--compact {
    display: inline;
  }
  .site-header .cta-block {
    width: 100%;
    max-width: 300px;
    min-height: 200px;
    align-items: center;
  }
  .site-header .cta-group {
    grid-template-columns: 230px;
    width: 100%;
    max-width: 230px;
  }
  .site-header .cta-group .btn {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: center;
    column-gap: 8px;
    width: 230px;
  }
  .site-header .cta-group .btn::before {
    justify-self: center;
    align-self: center;
  }
  .site-header .cta-group .btn .btn-label {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .site-header .cta-group .btn-contact .btn-label,
  .site-header .cta-group .btn-line .btn-label {
    font-size: 16px;
  }
  .site-header .cta-group .btn-tel .btn-number {
    font-size: 18px;
  }
  .site-header .cta-group .btn-line {
    grid-column: auto;
    justify-self: stretch;
  }
}

@media screen and (max-width: 991.98px) {
  .site-header {
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    height: 100%;
    align-items: center;
    gap: 12px 16px;
    padding: 0 0 0 6px;
  }
  .header-menu {
    height: auto;
    margin: 12px 0;
    padding: 12px 16px;
    overflow: visible;
    box-shadow: none;
  }
  .global-nav {
    display: flex;
    position: static;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 18px;
    padding: 0;
    font-size: 14px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    z-index: auto;
  }
  .global-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .site-header .cta-lead .cta-lead-text--default {
    display: none;
  }
  .site-header .cta-block {
    position: static;
    z-index: auto;
    align-self: flex-start;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 230px;
    max-width: 230px;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 12px 12px 14px;
    border-radius: 0 0 0 24px;
    gap: 8px;
  }
  .site-header .cta-lead {
    width: 100%;
    white-space: normal;
    font-size: 13px;
    line-height: 1.35;
  }
  .site-header .cta-lead::before {
    content: none;
  }
  .site-header .cta-lead::after {
    content: none;
  }
  .site-header .cta-group {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    min-height: 0;
    gap: 8px;
    margin: 0;
  }
  .site-header .cta-group .btn::before {
    width: 18px;
    height: 18px;
    background-size: 8px 8px;
  }
  .site-header .cta-group .btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    height: auto;
    padding: 8px 10px;
    gap: 7px;
  }
  .site-header .cta-group .btn .btn-label {
    font-size: 15px;
  }
  .site-header .cta-group .btn-tel {
    min-width: 0;
    grid-template-columns: 18px 1fr;
    column-gap: 7px;
  }
  .site-header .cta-group .btn-tel::before {
    width: 18px;
    height: 18px;
  }
  .site-header .cta-group .btn-tel .btn-label {
    width: 100%;
    align-items: center;
    text-align: center;
    row-gap: 1px;
  }
  .site-header .cta-group .btn-tel .btn-meta {
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }
  .site-header .cta-group .btn-contact br {
    display: none;
  }
  .site-header .cta-group .btn-contact .btn-label {
    white-space: normal;
  }
  .site-header .cta-group .btn-line .btn-label {
    white-space: normal;
  }
  .site-header .cta-group .btn-line {
    grid-column: auto;
    justify-self: stretch;
  }
}

@media screen and (min-width: 769px) and (max-width: 991.98px) {
  .site-header {
    height: 300px;
    min-height: 300px;
  }
  .header-inner {
    position: relative;
    height: 100%;
    align-items: flex-start;
    width: 82%
  }
  .logo {
    position: relative;
    z-index: 3;
  }
  .header-menu {
    position: absolute;
    top: 12px;
    left: 122px;
    z-index: 2;
    width: auto;
    max-width: none;
    min-height: 0;
    margin: 0;
  }
  .global-nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 8px 10px;
    font-size: 13px;
  }
  .site-header .cta-block {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    height: 280px;
    min-height: 280px;
    padding: 80px 10px 12px;
  }
}

@media screen and (max-width: 768px) {
  .site-header {
    height: auto;
    min-height: 0;
  }
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
    row-gap: 8px;
    column-gap: 0;
    padding: 8px 37px 0;
  }
  .logo {
    flex: 1 1 auto;
    max-width: none;
    height: 102px;
    min-width: 0;
    justify-content: flex-start;
  }
  .logo-full {
    display: flex;
    width: auto;
    height: 100%;
  }
  .logo-symbol {
    display: none;
  }
  .header-menu {
    position: relative;
    flex: 0 0 82px;
    width: 82px;
    min-width: 82px;
    height: 82px;
    min-height: 0;
    margin: 10px 0 10px auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 82px;
    height: 82px;
    padding: 10px;
    margin-left: 0;
    border-radius: 16px;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: center;
    box-shadow: 0 8px 18px rgba(215, 37, 12, 0.2);
  }
  .menu-toggle::before,
  .menu-toggle::after {
    width: 33px;
  }
  .menu-toggle::before {
    top: 16px;
    box-shadow: 0 12px 0 #fff, 0 24px 0 #fff;
  }
  .menu-toggle::after {
    top: 29px;
  }
  .menu-toggle[aria-expanded=true]::before {
    top: 29px;
  }
  .menu-toggle[aria-expanded=true]::after {
    top: 29px;
  }
  .global-nav {
    display: none;
    position: fixed;
    top: clamp(72px, 14vw, 96px);
    right: 16px;
    left: 16px;
    margin-top: 0;
    width: auto;
    max-width: none;
    max-height: calc(100dvh - clamp(88px, 18vw, 116px));
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(47, 36, 29, 0.08);
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(47, 36, 29, 0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 45;
    font-size: 13px;
  }
  .global-nav.open {
    display: flex;
  }
  .site-header .cta-block,
  .cta-block--hero-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: static;
    z-index: auto;
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    margin: 0;
    padding: 10px 5px;
    align-self: stretch;
    border-radius: 0;
    background: #FFB78B;
    gap: 4px;
  }
  .site-header .cta-lead,
  .cta-block--hero-mobile .cta-lead {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -3px;
    padding-bottom: 0.8rem;
  }
  .site-header .cta-lead::before,
  .cta-block--hero-mobile .cta-lead::before {
    content: none;
    margin-right: 0;
  }
  .site-header .cta-lead::after,
  .cta-block--hero-mobile .cta-lead::after {
    content: none;
    margin-left: 0;
  }
  .site-header .cta-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    gap: 8px;
  }
  .cta-block--hero-mobile .cta-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    gap: 8px;
  }
  .site-header .cta-group .btn::before,
  .cta-block--hero-mobile .cta-group .btn::before {
    width: 20px;
    height: 20px;
    background-size: 12px 12px;
  }
  .site-header .cta-group .btn,
  .cta-block--hero-mobile .cta-group .btn {
    width: 100%;
    height: 70px;
    min-height: 60px;
    padding-block: 22px;
    padding-inline: 4px;
    gap: 10px;
  }
  .site-header .cta-group .btn-tel,
  .cta-block--hero-mobile .cta-group .btn-tel {
    grid-column: auto;
    grid-template-columns: 20px auto;
  }
  .site-header .cta-group .btn-tel .btn-label,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-label {
    row-gap: 0;
    text-align: left;
  }
  .site-header .cta-group .btn .btn-label,
  .cta-block--hero-mobile .cta-group .btn .btn-label {
    font-size: 18px;
    line-height: 1.2;
  }
  .site-header .cta-group .btn-tel .btn-number,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-number {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .site-header .cta-group .btn-tel .btn-meta,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-meta {
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: 0.02em;
  }
  .site-header .cta-group .btn-contact br,
  .cta-block--hero-mobile .cta-group .btn-contact br {
    display: block;
  }

  .mv-section > .cta-block--hero-mobile,
  .page-hero > .cta-block--hero-mobile,
  .sub-page-header > .cta-block--hero-mobile,
  .contact-hero > .cta-block--hero-mobile,
  .faq-page > .cta-block--hero-mobile,
  .page-title-wrapper > .cta-block--hero-mobile {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    margin: 0;
  }

  /* Fallback: if JS move fails, keep header CTA aligned with other pages */
  .site-header .cta-block {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    margin: 0;
  }
}

.global-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  border-bottom-color: var(--accent);
  color: #D7250C;
}

.cta-group {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
}

.btn-primary {
  color: #D7250C
}

/* CTA section */
.cta-section {
  padding: 38px 0 42px;
  background: #ffd8c5;
}

.cta-section-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  row-gap: 27px;
  padding-top: 16px;
  align-items: start;
}

.cta-section-inner > .contact-lead {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 503px minmax(0, 1fr) auto;
  gap: 0;
  align-items: center;
}

.cta-section .contact-lead > p {
  margin: 0;
}

.cta-section .contact-lead > p:first-of-type {
  --design-font-size: 32;
  --design-line-height: 46;
  --design-tracking: 60;
  max-width: 100%;
  font-size: clamp(28px, 3vw, calc(var(--design-font-size) * 1px));
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  font-weight: 700;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  padding-right: 26px;
}

.cta-section .contact-lead > p:first-of-type span {
  color: #d7250c;
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
}

.cta-section .contact-lead > p:first-of-type .contact-lead-line1 {
  color: inherit;
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
}

.cta-section .contact-lead > p:nth-of-type(2) {
  --design-font-size: 18;
  --design-line-height: 39;
  --design-tracking: 60;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.cta-section .contact-lead .sample-image {
  display: block;
  width: 370px;
  max-width: 100%;
}

.cta-section .contact-lead .sample-image picture {
  display: block;
}

.cta-section .contact-lead .sample-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* CTA after featured section only */
.cta-section--featured .cta-section-inner {
  row-gap: 50px;
}

.cta-section--featured .cta-section-inner > .contact-lead {
  --featured-sample-width: 370px;
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 0;
  row-gap: 10px;
  align-items: start;
}

.cta-section--featured .contact-lead > p:first-of-type {
  --design-font-size: 32;
  --design-line-height: 46;
  --design-tracking: 20;
  width: 80%;
  max-width: none;
  padding: 10px calc(var(--featured-sample-width) + 35px) 10px 35px;
  background: #FFEAE0;
  border-radius: 4px;
  font-size: clamp(28px, 3vw, calc(var(--design-font-size) * 1px));
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  text-wrap: balance;
  position: relative;
  z-index: 1;
}

.cta-section--featured .contact-lead > p:first-of-type .contact-lead-line1 {
  display: block;
}

.cta-section--featured .contact-lead > p:first-of-type br {
  display: none;
}

.cta-section--featured .contact-lead > p:nth-of-type(2) {
  --design-font-size: 18;
  --design-line-height: 32;
  --design-tracking: 60;
  padding-left: 35px;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.cta-section--featured .contact-lead .sample-image {
  position: absolute;
  top: -40%;
  right: 0;
  transform: none;
  width: var(--featured-sample-width);
  z-index: 2;
}

.cta-section-inner > .contact-cards {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  width: 100%;
}

.contact-cards {
  display: flex;
}

.contact-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 140px;
  padding: 48px 18px 20px;
  border-radius: 6px;
  border: 1px solid #ead7cb;
  background: #fff;
  color: #1D1D1D;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-section .contact-card {
  flex: 1 1 calc((100% - 60px) / 3);
  max-width: 458px;
  min-height: 108px;
  padding: 50px 14px 12px;
  gap: 2px;
  border-radius: 999px;
  border: 6px solid var(--contact-pill-color, #D7250C);
  background: #fff;
  color: #1D1D1D;
  box-shadow: none;
}

.cta-section .contact-card::after {
  display: none;
}

.cta-section .contact-card--phone {
  --contact-pill-color: #D7250C;
}

.cta-section .contact-card--contact {
  --contact-pill-color: #efa515;
}

.cta-section .contact-card--line {
  --contact-pill-color: var(--line-brand);
}

.cta-section .contact-card,
.cta-section .contact-pill,
.cta-section .contact-pill::after {
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cta-section .contact-card:hover,
.cta-section .contact-card:focus-visible {
  transform: translateY(-2px);
}

.cta-section .contact-card:active {
  transform: translateY(3px);
  box-shadow: 0 4px 10px rgba(66, 52, 30, 0.14);
}

.cta-section .contact-card--phone:hover,
.cta-section .contact-card--phone:focus-visible {
  background: #fff6f2;
  box-shadow: 0 14px 28px rgba(215, 37, 12, 0.2);
}

.cta-section .contact-card--phone:active {
  background: #fff2ec;
  box-shadow: 0 4px 10px rgba(215, 37, 12, 0.2);
}

.cta-section .contact-card--contact:hover,
.cta-section .contact-card--contact:focus-visible {
  background: #fffaf1;
  box-shadow: 0 14px 28px rgba(239, 165, 21, 0.22);
}

.cta-section .contact-card--contact:active {
  background: #fff7e9;
  box-shadow: 0 4px 10px rgba(239, 165, 21, 0.22);
}

.cta-section .contact-card--line:hover,
.cta-section .contact-card--line:focus-visible {
  background: #f5fff7;
  box-shadow: 0 14px 28px rgba(1, 185, 1, 0.2);
}

.cta-section .contact-card--line:active {
  background: #effff2;
  box-shadow: 0 4px 10px rgba(1, 185, 1, 0.2);
}

.cta-section .contact-card:hover .contact-pill,
.cta-section .contact-card:focus-visible .contact-pill,
.cta-section .contact-card:active .contact-pill {
  background: var(--contact-pill-color, #D7250C);
  color: #fff;
}

.cta-section .contact-card:hover .contact-pill::after,
.cta-section .contact-card:focus-visible .contact-pill::after,
.cta-section .contact-card:active .contact-pill::after {
  border-top-color: var(--contact-pill-color, #D7250C);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(66, 52, 30, 0.1);
}

.contact-pill {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 100%;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid #D7250C;
  background: #fff;
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.cta-section .contact-pill {
  top: 8px;
  padding: 4px 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-color: var(--contact-pill-color, #D7250C);
  background: #fff;
  color: #1D1D1D;
}

.cta-section .contact-card .contact-pill::before,
.cta-section .contact-card .contact-pill::after {
  border-top-color: var(--contact-pill-color, #D7250C);
}

.contact-pill::before,
.contact-pill::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 0;
}

.contact-pill::before {
  bottom: -9px;
  border-top: 9px solid #D7250C;
}

.contact-pill::after {
  bottom: -7px;
  border-top: 8px solid #fff;
  border-left-width: 7px;
  border-right-width: 7px;
}

.contact-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 18px 18px;
  border-color: transparent transparent #D7250C transparent;
}

.contact-card--contact::after {
  border-color: transparent transparent #efa515 transparent;
}

.contact-card--line::after {
  border-color: transparent transparent var(--line-brand) transparent;
}

.contact-sub {
  font-size: 16px;
  font-weight: 600;
  color: #1D1D1D;
}

.cta-section .contact-sub {
  font-size: 14px;
  line-height: 1.3;
  color: #6f6f6f;
}

.contact-main {
  font-family: Lato;
  font-size: 33px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 6px;
  color: #1D1D1D;
}

.cta-section .contact-main {
  --design-font-size: 31;
  --design-line-height: 37;
  --design-tracking: 60;
  font-size: clamp(24px, 2.6vw, calc(var(--design-font-size) * 1px));
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  font-weight: 700;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.cta-section .contact-main-accent--contact {
  font-size: 28px;
  color: #d98900;
}

.contact-main-accent--tel,
.ontact-main-accent--tel {
  color: #D7250C;
}

.contact-main-accent--line {
  font-size: clamp(20px, 2.3vw, 30px);
  color: var(--line-brand);
}

.contact-card[href="/line/"] .contact-sub,
.contact-card[href="/line/"] .contact-main {
  color: #1D1D1D;
}

@media screen and (max-width: 1439.98px) {
  .cta-section .contact-pill {
    --design-font-size: 13;
    --design-line-height: 28;
    --design-tracking: 60;
    top: -20px;
    max-width: 100%;
    padding: 5px 14px;
    font-family: "Zen Kaku Gothic New", "Yu Gothic", YuGothic, sans-serif;
    font-size: calc(var(--design-font-size) * 1px);
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    font-weight: 700;
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
    white-space: normal;
    text-wrap: balance;
  }

  .cta-section .contact-card {
    flex-basis: calc((100% - 60px) / 3);
    max-width: 400px;
    min-height: 96px;
    padding: 24px 14px 10px;
    border-width: 5px;
  }

  .cta-section .contact-main {
    font-size: clamp(24px, 2.4vw, 30px);
    line-height: 1.2;
  }

  .cta-section .contact-card--phone .contact-main {
    font-size: clamp(26px, 2.5vw, 32px);
  }

  .cta-section .contact-card--contact .contact-main,
  .cta-section .contact-card--line .contact-main {
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.2;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .cta-section .contact-card--contact .contact-main br,
  .cta-section .contact-card--line .contact-main br {
    display: none;
  }
}

@media screen and (max-width: 1199.98px) {
  .cta-section-inner {
    padding-left: clamp(12px, 2vw, 24px);
    padding-right: clamp(12px, 2vw, 24px);
  }

  .cta-section-inner > .contact-lead {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
  }

  .cta-section .contact-lead > p:nth-of-type(2) {
    grid-column: 1 / -1;
  }

  .cta-section .contact-lead .sample-image {
    justify-self: end;
    position: relative;
    top: -12%;
  }

  .cta-section--featured .cta-section-inner > .contact-lead {
    --featured-sample-width: 320px;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 10px;
  }

  .cta-section--featured .contact-lead > p:first-of-type {
    width: 100%;
    padding-right: calc(var(--featured-sample-width) + 24px);
    white-space: normal;
    text-wrap: balance;
  }

  .cta-section--featured .contact-lead > p:first-of-type .contact-lead-line1 {
    display: block;
  }

  .cta-section--featured .contact-lead > p:first-of-type br {
    display: none;
  }

  .cta-section--featured .contact-lead > p:nth-of-type(2) {
    padding-left: 35px;
  }

  .cta-section .contact-card {
    flex-basis: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 991.98px) {
  .cta-section {
    padding: 28px 0 34px;
  }

  .cta-section-inner {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-section-inner > .contact-cards {
    width: 100%;
    justify-content: center;
  }

  .cta-section .contact-card {
    flex-basis: 100%;
    max-width: 500px;
    min-height: 106px;
    padding: 30px 14px 12px;
  }

  .cta-section .contact-pill {
    max-width: 100%;
    padding: 5px 14px;
  }

  .cta-section .contact-main {
    font-size: 33px;
    letter-spacing: 6px;
  }

  .cta-section .contact-card--phone .contact-main {
    font-size: 34px;
  }

  .cta-section .contact-card--contact .contact-main,
  .cta-section .contact-card--line .contact-main {
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.25;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .cta-section .contact-card--contact .contact-main br,
  .cta-section .contact-card--line .contact-main br {
    display: none;
  }

  .cta-section .contact-card--contact .contact-main-accent--contact,
  .cta-section .contact-card--line .contact-main-accent--line {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }

}

@media screen and (max-width: 767.98px) {
  .section.cta-section.cta-section--featured {
    padding-left: 17.5px;
    padding-right: 17.5px;
  }

  .cta-section-inner > .contact-lead {
    grid-template-columns: 1fr;
    justify-self: center;
    align-items: center;
  }

  .cta-section-inner > .contact-lead,
  .cta-section-inner > .contact-cards {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .cta-section .contact-lead .sample-image {
    width: min(100%, 240px);
  }

  .cta-section-inner > .contact-cards {
    gap: 30px;
    grid-column: 1 / -1;
    margin: 0 auto;
    justify-self: center;
    align-self: start;
    justify-content: center;
  }

  .cta-section .contact-card {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .cta-section .contact-pill {
    top: -20px;
  }

  .cta-section .contact-lead > p:first-of-type .contact-lead-line1 {
    font-size: 22px;
  }

  .cta-section--featured .cta-section-inner {
    row-gap: 16px;
  }

  .cta-section--featured .cta-section-inner > .contact-lead {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "sub"
      "image";
    gap: 14px;
  }

  .cta-section--featured .contact-lead > p:first-of-type {
    --design-font-size: 22;
    --design-line-height: 32;
    --design-tracking: 20;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    padding: 14px 14px 12px;
    border-radius: 8px;
    background: #ffe7da;
    font-family: "Zen Kaku Gothic New", "Yu Gothic", YuGothic, sans-serif;
    font-size: clamp(18px, calc(22 / 375 * 100vw), 22px);
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    font-weight: 900;
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .cta-section--featured .contact-lead > p:first-of-type br {
    display: none;
  }

  .cta-section--featured .contact-lead > p:first-of-type .contact-lead-line1 {
    display: inline;
  }

  .cta-section--featured .contact-lead > p:nth-of-type(2) {
    --design-font-size: 14;
    --design-line-height: 24;
    --design-tracking: 60;
    grid-column: auto;
    grid-row: auto;
    padding: 0;
    font-family: "Zen Kaku Gothic New", "Yu Gothic", YuGothic, sans-serif;
    font-size: calc(var(--design-font-size) * 1px);
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    font-weight: 500;
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  }

  .cta-section--featured .contact-lead .sample-image {
    grid-area: image;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: min(100%, 220px);
    justify-self: center;
  }

  .cta-section .contact-pill {
    --design-font-size: 13;
    --design-line-height: 28;
    --design-tracking: 60;
    font-family: "Zen Kaku Gothic New", "Yu Gothic", YuGothic, sans-serif;
    font-size: clamp(11px, calc(13 / 375 * 100vw), 13px);
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    font-weight: 700;
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
    white-space: normal;
    text-wrap: balance;
  }

  .cta-section .contact-main-accent {
    --design-font-size: 20;
    --design-line-height: 26;
    --design-tracking: 60;
    display: inline-block;
    font-family: "Zen Kaku Gothic New", "Yu Gothic", YuGothic, sans-serif;
    font-size: clamp(16px, calc(20 / 375 * 100vw), 20px);
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    font-weight: 900;
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  }

  .cta-section .contact-card--phone .contact-main {
    --design-font-size: 22;
    --design-line-height: 31;
    --design-tracking: 60;
    font-family: "Lato", "Zen Kaku Gothic New", "Yu Gothic", YuGothic, sans-serif;
    font-size: clamp(18px, calc(22 / 375 * 100vw), 22px);
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    font-weight: 700;
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
    white-space: nowrap;
  }

  .cta-section .contact-card--contact .contact-main {
    --design-font-size: 20;
    --design-line-height: 26;
    --design-tracking: 60;
    font-family: "Zen Kaku Gothic New", "Yu Gothic", YuGothic, sans-serif;
    font-size: clamp(16px, calc(20 / 375 * 100vw), 20px);
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    font-weight: 900;
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  }

  .cta-section .contact-card--contact .contact-main,
  .cta-section .contact-card--line .contact-main {
    white-space: normal;
  }

  .cta-section .contact-card--contact .contact-main br,
  .cta-section .contact-card--line .contact-main br {
    display: inline;
  }

  .cta-section .contact-main-accent--contact,
  .cta-section .contact-main-accent--line {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
  }

  .cta-section .contact-lead > p:first-of-type,
  .cta-section--featured .contact-lead > p:first-of-type {
    font-size: 22px;
  }
}

@media screen and (max-width: 575.98px) {
  .cta-section .contact-card {
    flex-basis: 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 30px 10px 12px;
  }
}

.mission-block { padding: 24px 0 40px; background: #faf7f2; text-align: center; }
.mission-label { margin: 0 0 8px; font-size: 12px; letter-spacing: 0.2em; color: #b7b0a5; }
.mission-copy { margin: 0; font-size: 22px; font-weight: 700; color: var(--ink); }


/* Story Section */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.story-heading { margin: 0 0 18px; font-size: 26px; font-weight: 700; letter-spacing: 0.02em; }
.story-text p { margin: 0; font-size: 18px; line-height: 1.8; color: var(--ink); }

.story-message .story-heading { text-align: center; }
.story-message .story-text { max-width: 760px; margin: 0 auto; text-align: center; }
.story-message .story-text p + p { margin-top: 12px; }

.breadcrumb-bar {
  background: transparent;
}

.contact-breadcrumb-bar {
  padding-top: 124px;
  background: #FFEDE3;
}

.page-hero + .breadcrumb-bar,
.hero-image-wrapper + .breadcrumb-bar {
  position: relative;
  z-index: 2;
  margin-top: clamp(-78px, -5.2vw, -48px);
}
.hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.lead { font-size: 18px; color: var(--muted); line-height: 1.8; }
.hero-card { background: var(--surface); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); }
.cta-stack { display: grid; gap: 12px; }
.section { padding: 5.2083% 13.5417%; }

@media screen and (max-width: 1439.98px) {
  .section {
    padding-left: clamp(37.5px, 6vw, 96px);
    padding-right: clamp(37.5px, 6vw, 96px);
  }
}

@media screen and (max-width: 991.98px) {
  .section {
    padding-left: clamp(37.5px, 4vw, 40px);
    padding-right: clamp(37.5px, 4vw, 40px);
  }
}

@media screen and (max-width: 767.98px) {
  .section {
    padding-left: 17.5px;
    padding-right: 17.5px;
  }
}
.section-title {
  --design-font-size: 42;
  --design-line-height: 62;
  --design-tracking: 40;
  margin: 0;
  font-family: "Yu Gothic", YuGothic, sans-serif;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  font-weight: 700;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  color: #D7250C;
  text-align: center;
  white-space: nowrap;
  text-wrap: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

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

@media screen and (min-width: 768px) and (max-width: 1439.98px) {
  .section-title {
    font-size: clamp(
      24px,
      calc(
        24px +
        ((var(--design-font-size) - 24) * 1px) *
        ((100vw - 768px) / 672px)
      ),
      calc(var(--design-font-size) * 1px)
    );
  }
}

@media screen and (max-width: 767.98px) {
  .section-title {
    font-size: 24px;
  }
}

.kicker, .eyebrow {
  --design-font-size: 20;
  --design-line-height: 24;
  --design-tracking: 0;
  margin: 8px auto 0;
  font-family: "Lato", "Zen Kaku Gothic New", sans-serif;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  font-weight: 700;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  text-align: center;
  color: #D7250C;
}

.sub-page .kicker{
  margin: 8px 0 0;
  text-align: left;
}

.howto-group { margin-top: 32px; }
.howto-group h2 { margin: 0 0 16px; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 140px 1fr;
}

.article-media {
  background: linear-gradient(140deg, #f7efe5, #f1e7db 50%, #e7d8c5);
}

.article-body { padding: 16px 18px 20px; }
.article-tag { margin: 0 0 6px; font-size: 12px; letter-spacing: 0.12em; color: var(--muted); }
.article-card h3 { margin: 0 0 8px; font-size: 18px; }
.article-card a { color: inherit; }
.article-card .muted { margin: 0; font-size: 14px; line-height: 1.7; }

.media-ai { background: linear-gradient(140deg, #eef6ef, #dfeee2); }
.media-design { background: linear-gradient(140deg, #fef6e8, #f3e2c2); }

.center-title { text-align: center; }
.center-actions { margin-top: 20px; text-align: center; }


.news-list { display: grid; gap: 12px; margin-top: 16px; }

.news-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.news-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.news-title { font-weight: 600; }
.news-date { font-size: 12px; color: var(--muted); }


.faq-list { display: grid; gap: 12px; margin-top: 16px; }

.faq-list details {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.faq-list summary { cursor: pointer; font-weight: 600; }
.faq-list p { margin: 12px 0 0; color: var(--muted); }

/* FAQ Accordion (shared: top + /faq/) */
.faq-section-list {
  display: grid;
  gap: 10px;
}

.faq-section-item {
  color: #2f241d;
  overflow: hidden;
}

.faq-section-question {
  display: grid;
  grid-template-columns: 26px 1fr 30px;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 87px;
  padding: 0 26px 0 34px;
  border: 0;
  border-bottom: 1px solid #E4E4E4;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.faq-section-question:focus-visible {
  outline: 2px solid #D7250C;
  outline-offset: -2px;
}

.faq-section-mark,
.faq-section-answer p::before {
  --design-font-size: 24;
  --design-line-height: 32;
  --design-tracking: 100;
  color: #D7250C;
  font-family: "Yu Gothic", YuGothic, sans-serif;
  font-size: calc(var(--design-font-size) * 1px);
  font-weight: 700;
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  text-align: center;
}

.faq-section-text {
  --design-font-size: 20;
  --design-line-height: 27;
  --design-tracking: 100;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  font-weight: 700;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.faq-section-arrow {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%2030%2030%27%20fill=%27none%27%3E%3Cpath%20d=%27M7%2011l8%208%208-8%27%20stroke=%27%23D7250C%27%20stroke-width=%273.2%27%20stroke-linecap=%27round%27%20stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: center;
  transition: transform 0.2s ease;
}

.faq-section-answer {
  --design-font-size: 16;
  --design-line-height: 28;
  --design-tracking: 60;
  display: none;
  padding: 0 34px 24px 78px;
  border-top: 1px solid rgba(215, 37, 12, 0.22);
  color: #4a3f37;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.faq-section-answer p {
  position: relative;
  margin: 10px 0 0;
  padding-left: 44px;
}

.faq-section-answer p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}

.faq-section-answer p + p::before {
  content: none;
}

.faq-section-answer a {
  color: #D7250C;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.faq-section-item.is-open .faq-section-answer {
  display: block;
  background-color: #fff;
}

.faq-section-item.is-open .faq-section-arrow {
  transform: rotate(180deg);
}

@media screen and (max-width: 991.98px) {
  .faq-section-question {
    min-height: 0;
    padding: 22px 16px;
    grid-template-columns: 22px 1fr 30px;
    gap: 12px;
  }

  .faq-section-mark,
  .faq-section-answer p::before {
    font-size: 22px;
  }

  .faq-section-text {
    font-size: 20px;
    line-height: 1.55;
  }

  .faq-section-answer {
    padding: 0 16px 20px 50px;
  }

  .faq-section-answer p {
    padding-left: 34px;
  }
}

@media screen and (max-width: 575.98px) {
  .faq-section-question {
    padding: 18px 14px;
  }

  .faq-section-text {
    font-size: 17px;
  }

  .faq-section-answer {
    --design-font-size: 14;
    --design-line-height: 24;
    --design-tracking: 40;
    padding: 0 14px 18px 42px;
  }

  .faq-section-answer p {
    padding-left: 30px;
  }
}

.breadcrumb {
  font-size: 14px;
  padding: 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 0.45em;
  line-height: 1.5;
  white-space: nowrap;
  overflow-x: auto;
  margin: 0 auto;
}

.breadcrumb-bar .container {
  max-width: 1400px;
  padding: 0 24px;
  background: transparent
}


.breadcrumb a { color: var(--muted); }
.breadcrumb-sep {
  color: #D7250C;
  display: inline-block;
  padding: 0 0.1em;
}

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

.card {
  background: var(--surface);
  padding: 20px;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(22, 22, 22, 0.12); }

.link-row { display: flex; gap: 12px; flex-wrap: wrap; }
.link-row a { color: var(--accent); font-weight: 600; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li { padding-left: 28px; position: relative; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.steps { display: grid; gap: 10px; padding-left: 18px; }

.qa details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 12px; box-shadow: var(--shadow); }
.qa summary { cursor: pointer; font-weight: 600; }

.placeholder { padding: 60px 20px; border-radius: var(--radius); border: 2px dashed var(--line); text-align: center; color: var(--muted); background: rgba(255,255,255,0.7); }

.page-preparing-section {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(56px, 8vw, 120px);
}

.page-preparing-card {
  position: relative;
  overflow: hidden;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 4.8vw, 64px);
  border: 1px solid #F2C8B8;
  border-radius: 18px;
  background: linear-gradient(180deg, #FFFDFB 0%, #FFFFFF 100%);
  text-align: center;
  box-shadow: 0 14px 40px rgba(22, 22, 22, 0.08);
}

.page-preparing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/common/MUU_14.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: clamp(160px, 24vw, 300px);
  opacity: 0.08;
  pointer-events: none;
}

.page-preparing-card > * {
  position: relative;
  z-index: 1;
}

.page-preparing-label {
  margin: 0;
  color: #D97D52;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.18em;
  font-weight: 700;
}

.page-preparing-title {
  margin: 14px 0 0;
  color: #D7250C;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
}

.page-preparing-message {
  margin: 24px auto 0;
  max-width: 42em;
  color: #2C2C2C;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 2;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.page-preparing-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.6;
}

@media (max-width: 767.9px) {
  .page-preparing-card {
    padding: 28px 18px 30px;
  }

  .page-preparing-message {
    margin-top: 18px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.85;
    text-wrap: pretty;
  }
}

/* Footer */
.site-footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 563px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 4em;
  padding-bottom: 10em;
}

.site-footer__layout {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding-top: 5.5em;
  padding-bottom: 2em;
  display: grid;
  grid-template-columns: minmax(332px, 420px) minmax(0, 1fr);
  justify-content: space-between;
  align-items: start;
  column-gap: 2em;
  border-bottom: 1px solid #DDDDDD;
}

.site-footer__brand {
  width: 332px;
  min-height: 326px;
  display: grid;
  align-content: start;
  row-gap: 8px;
  margin-top: -7em;
}

.site-footer__logo-link {
  display: block;
  width: 332px;
  margin-left: -2.5em;
}

.site-footer__logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__tel-row {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__tel-icon {
  position: relative;
  width: 36px;
  height: 18px;
  border-radius: 2px;
  background: #8f9a7d;
  flex: 0 0 auto;
}

.site-footer__tel-icon::before {
  content: "☎";
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  transform: translate(-50%, -56%);
}

.site-footer__tel {
  margin: 0;
  font-family: "Lato", "Yu Gothic", YuGothic, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: calc(26 / 28);
  letter-spacing: 0.1em;
  color: #1D1D1D;
}

.site-footer__hours {
  margin: 0 0 8px 46px;
  color: #7c7c7c;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", YuGothic, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: calc(26 / 12);
  letter-spacing: 0.1em;
}

.site-footer__address {
  margin: 0;
  font-style: normal;
  color: #333;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", YuGothic, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(26 / 16);
  letter-spacing: 0.1em;
}

.site-footer__brand-actions {
  display: block;
}

.site-footer__mobile-inquiry-btn {
  display: none;
}

.site-footer__pmark {
  margin-top: 18px;
  width: 54px;
  height: auto;
}

.site-footer__menu {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 293px;
  color: #333;
}

.site-footer__menu-columns {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: clamp(20px, 2vw, 34px);
  align-items: start;
  justify-content: space-between;
  width: 100%;
}

.site-footer__menu-col {
  display: grid;
  align-content: start;
  justify-items: start;
  row-gap: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
}

.site-footer__menu-group {
  display: grid;
  align-content: start;
  width: fit-content;
  max-width: 100%;
  row-gap: 8px;
}

.site-footer__menu-col a {
  color: #2f2f2f;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.site-footer__menu-col--primary {
  width: max-content;
  max-width: 100%;
}

.site-footer__menu-col--primary a {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.site-footer__menu-col--primary .site-footer__menu-group {
  row-gap: 33px;
}

.site-footer__menu-heading {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer__menu-group .site-footer__menu-heading ~ a {
  position: relative;
  padding-left: 0.8em;
}

.site-footer__menu-group .site-footer__menu-heading ~ a::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.site-footer__menu-col .site-footer__menu-heading + a {
  margin-top: 0;
}

.site-footer__bottom-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 10px 24px 12px;
  box-sizing: border-box;
}

.site-footer__bottom {
  width: 100%;
}

.site-footer__copyright {
  display: block;
  width: 100%;
  margin: 0;
  color: #8a8a8a;
  font-family: "Lato", "Yu Gothic", YuGothic, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: left;
  white-space: nowrap;
  padding-block: 1.4em;
}

.page-top-fab {
  position: fixed;
  right: clamp(10px, 2vw, 24px);
  bottom: calc(env(safe-area-inset-bottom) + 16px);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(76px, 7vw, 96px);
  aspect-ratio: 734 / 590;
  line-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-top-fab.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top-fab:hover,
.page-top-fab:focus-visible {
  opacity: 0.88;
  transform: translateY(-2px);
}

.page-top-fab__curve-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}

.page-top-fab__curve-text text {
  fill: #F05947;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", YuGothic, sans-serif;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.page-top-fab img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1279.98px) {
  .site-footer {
    height: auto;
  }

  .site-footer__layout {
    width: min(1400px, calc(100% - 48px));
    grid-template-columns: 1fr;
    row-gap: 30px;
    padding-top: 3.6em;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }

  .site-footer__brand {
    width: min(100%, 860px);
    margin: -40px auto 0 auto;
    max-width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(220px, 332px) minmax(280px, 1fr);
    row-gap: 8px;
    column-gap: clamp(20px, 3vw, 40px);
    align-items: start;
    grid-row: 1;
  }

  .site-footer__logo-link {
    width: min(100%, 332px);
    margin-left: 0;
    grid-column: 1;
    grid-row: auto;
    align-self: start;
  }

  .site-footer__tel-row {
    grid-column: 1;
    grid-row: auto;
    margin-top: 12px;
  }

  .site-footer__hours {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer__address {
    grid-column: 2;
    grid-row: 1;
  }

  .site-footer__brand-actions {
    grid-column: 2;
    grid-row: 2;
    margin-top: 8px;
    display: block;
    align-self: start;
  }

  .site-footer__pmark {
    margin-top: 0;
  }

  .site-footer__menu {
    width: 100%;
    min-width: 0;
    margin-inline: 0;
    grid-row: 2;
    display: flex;
    justify-content: flex-start;
  }

  .site-footer__menu-columns {
    grid-template-columns: repeat(4, max-content);
    column-gap: clamp(18px, 2.4vw, 36px);
    row-gap: 0;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }
}

@media screen and (max-width: 991.98px) {
  .site-footer__menu-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    row-gap: 20px;
  }

  .site-footer__menu-col,
  .site-footer__menu-col--primary,
  .site-footer__menu-group {
    width: 100%;
    min-width: 0;
  }

  .site-footer__menu-col a {
    overflow-wrap: anywhere;
  }

  .site-footer__brand {
    width: min(100%, 860px);
    max-width: 100%;
    margin: 0;
    grid-template-columns: minmax(220px, 332px) minmax(260px, 1fr);
    row-gap: 8px;
    align-items: start;
  }

  .site-footer__logo-link {
    width: min(100%, 332px);
    grid-row: 1 / span 4;
    align-self: start;
  }

  .site-footer__tel-row {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

  .site-footer__hours {
    grid-column: 2;
    grid-row: 2;
  }

  .site-footer__address {
    grid-column: 2;
    grid-row: 3;
  }

  .site-footer__brand-actions {
    grid-column: 2;
    grid-row: 4;
    margin-top: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    align-self: start;
    gap: 12px;
  }
}

@media screen and (max-width: 767.98px) {
  .site-footer {
    height: auto;
    margin-top: 0;
    padding-bottom: 3em;
  }

  .site-footer__layout {
    width: min(1400px, calc(100% - 48px));
    max-width: none;
    padding: 32px 0 40px;
    padding-top: 10px;
    display: block;
  }

  .site-footer__brand {
    display: block;
    width: 100%;
    min-height: 0;
    max-width: none;
  }

  .site-footer__logo-link,
  .site-footer__tel-row,
  .site-footer__hours,
  .site-footer__address,
  .site-footer__brand-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__menu {
    display: none;
  }

  .site-footer__brand-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
  }

  .site-footer__mobile-inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 56px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #D7250C;
    color: #fff;
    box-sizing: border-box;
  }

  .site-footer__mobile-inquiry-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .site-footer__mobile-inquiry-icon {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    flex: 0 0 auto;
  }

  .site-footer__mobile-inquiry-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #D7250C;
    border-right: 2px solid #D7250C;
    transform: translate(-60%, -50%) rotate(45deg);
  }

  .site-footer__pmark {
    margin-top: 0;
    width: clamp(56px, 17vw, 68px);
    justify-self: end;
  }

  .site-footer__bottom {
    display: block;
    margin-top: 10px;
  }

  .site-footer__bottom-inner {
    width: 100%;
    padding: 10px 16px 12px;
    padding-top: 0;
    box-sizing: border-box;
  }

  .site-footer__copyright {
    padding-top: 0;
  }

}

.muted { color: var(--muted); }
.lp-header { position: relative; }
.lp-footer { background: transparent; border-top: 1px solid var(--line); }
.mini-link { font-size: 12px; color: var(--muted); }

/* --- Shared link helpers --- */
.arrow-link { color: var(--accent); font-weight: 600; font-size: 14px; }

/* ---- responsive ---- */
@media screen and (max-width: 768px) {
  .cta-group {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .site-header .cta-group .btn {
    flex: 1 1 220px;
  }
  .site-header .cta-group .btn-tel {
    min-width: 0;
  }
  .hero-grid { grid-template-columns: 1fr; }



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

  .page-top-fab {
    bottom: calc(env(safe-area-inset-bottom) + 108px);
  }
}

@media screen and (max-width: 575.98px) {
  .header-inner {
    padding: 8px 28px 0;
  }
  .logo {
    height: 77px;
  }
  .header-menu {
    flex: 0 0 61px;
    width: 61px;
    min-width: 61px;
    height: 61px;
  }
  .menu-toggle {
    width: 61px;
    height: 61px;
    padding: 8px;
    border-radius: 12px;
    font-size: 10px;
    line-height: 1.05;
    letter-spacing: 0;
  }
  .menu-toggle::before,
  .menu-toggle::after {
    width: 25px;
  }
  .menu-toggle::before {
    top: 12px;
    box-shadow: 0 9px 0 #fff, 0 18px 0 #fff;
  }
  .menu-toggle::after,
  .menu-toggle[aria-expanded=true]::before,
  .menu-toggle[aria-expanded=true]::after {
    top: 21px;
  }
  .global-nav {
    left: 12px;
    right: 12px;
    max-width: none;
  }
  .site-header .cta-lead,
  .cta-block--hero-mobile .cta-lead {
    font-size: 18px;
  }
  .site-header .cta-group .btn::before,
  .cta-block--hero-mobile .cta-group .btn::before {
    width: 22px;
    height: 22px;
    background-size: 9px 9px;
  }
  .site-header .cta-group .btn,
  .cta-block--hero-mobile .cta-group .btn {
    padding-block: 20px;
  }
  .site-header .cta-group .btn-tel,
  .cta-block--hero-mobile .cta-group .btn-tel {
    grid-template-columns: 20px auto;
    gap: 10px;
  }
  .site-header .cta-group .btn-tel::before,
  .cta-block--hero-mobile .cta-group .btn-tel::before {
    width: 20px;
    height: 20px;
  }
  .site-header .cta-group .btn .btn-label,
  .cta-block--hero-mobile .cta-group .btn .btn-label {
    font-size: 14px;
  }
  .site-header .cta-group .btn-tel .btn-number,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-number {
    font-size: 16px;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .site-header .cta-group .btn-tel .btn-meta,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-meta {
    font-size: 9px;
  }
  .site-header .cta-block,
  .cta-block--hero-mobile {
    padding: 10px 5px;
  }
}

@media screen and (max-width: 375px) {
  .header-inner {
    padding: 8px 18px 0;
  }
  .logo {
    height: 50px;
  }
  .header-menu {
    flex: 0 0 48px;
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
  .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 6px 4px;
    border-radius: 10px;
    font-size: 9px;
    line-height: 1.05;
    letter-spacing: 0;
  }
  .menu-toggle::before,
  .menu-toggle::after {
    width: 20px;
  }
  .menu-toggle::before {
    top: 9px;
    box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
  }
  .menu-toggle::after,
  .menu-toggle[aria-expanded=true]::before,
  .menu-toggle[aria-expanded=true]::after {
    top: 16px;
  }
  .global-nav {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  .site-header .cta-lead,
  .cta-block--hero-mobile .cta-lead {
    font-size: 12px;
  }
  .site-header .cta-group .btn::before,
  .cta-block--hero-mobile .cta-group .btn::before {
    width: 14px;
    height: 14px;
    background-size: 6px 6px;
  }
  .site-header .cta-group .btn,
  .cta-block--hero-mobile .cta-group .btn {
    padding-block: 17px;
  }
  .site-header .cta-group .btn-tel,
  .cta-block--hero-mobile .cta-group .btn-tel {
    grid-template-columns: 20px auto;
    gap: 10px;
  }
  .site-header .cta-group .btn-tel::before,
  .cta-block--hero-mobile .cta-group .btn-tel::before {
    width: 20px;
    height: 20px;
  }
  .site-header .cta-group .btn .btn-label,
  .cta-block--hero-mobile .cta-group .btn .btn-label {
    font-size: 10px;
  }
  .site-header .cta-group .btn-tel .btn-number,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-number {
    font-size: 15px;
    white-space: nowrap;
  }
  .site-header .cta-group .btn-tel .btn-meta,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-meta {
    font-size: 8px;
  }

  .site-header .cta-block,
  .cta-block--hero-mobile {
    height: 93px;
    min-height: 93px;
    padding: 10px 5px;
    gap: 4px;
  }

  .site-header .cta-lead,
  .cta-block--hero-mobile .cta-lead {
    padding-bottom: 0;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .site-header .cta-group,
  .cta-block--hero-mobile .cta-group {
    gap: 6px;
  }

  .site-header .cta-group .btn,
  .cta-block--hero-mobile .cta-group .btn {
    height: 40px;
    min-height: 40px;
    padding-block: 4px;
    padding-inline: 3px;
  }

  .site-header .cta-group .btn-tel .btn-label,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-label {
    text-align: center;
  }

  .site-header .cta-group .btn-tel .btn-number,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-number {
    font-size: 13px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .site-header .cta-group .btn-tel .btn-meta,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-meta {
    font-size: 7px;
    white-space: nowrap;
  }

  .page-top-fab {
    width: 72px;
    right: 10px;
    bottom: calc(env(safe-area-inset-bottom) + 102px);
  }
}
/* CTA Block */
.cta-block {
  margin: 60px 0;
  padding: 10px 5px;
  border: 0;
  border-radius: 0;
  background: #FFB78B;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-eyebrow {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.cta-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.cta-lead {
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.7;
  color: #444;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cta-btn.primary {
  background: #1f6f8b;
  color: #fff;
}

.cta-btn.primary:hover {
  background: #165466;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: #ffffff;
  border: 2px solid #1f6f8b;
  color: #1f6f8b;
}

.cta-btn.secondary:hover {
  background: #e9f3f7;
}

.cta-btn.tertiary {
  background: #f5fbfd;
  border: 1px solid #b7d8e2;
  color: #1f6f8b;
}

.cta-btn.tertiary:hover {
  background: #e9f3f7;
  transform: translateY(-2px);
}

.cta-link {
  font-size: 14px;
  color: #1f6f8b;
  text-decoration: underline;
}

.cta-note {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-btn {
    min-width: 220px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1500px) {
  .logo-full {
    display: none;
  }

  .logo-symbol {
    display: flex;
    height: 90%;
  }
}

/* Header Nav Refresh 2026-04 */
.global-nav {
  gap: clamp(6px, 0.8vw, 12px);
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 8px;
  border-bottom: 0;
  border-radius: 0;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #2f2b28;
  box-shadow: none;
  background: transparent;
  transform: none;
  transition: color 0.16s ease;
}

.global-nav a::before,
.global-nav a::after {
  content: none;
}

.global-nav a:hover,
.global-nav a:focus-visible,
.global-nav a.is-current {
  color: #D7250C;
  border-bottom: 0;
  box-shadow: none;
  background: transparent;
  transform: none;
}

.global-nav a:active {
  color: #D7250C;
  transform: translateY(0);
}

@media screen and (max-width: 767.98px) {
  .global-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 8px 10px;
    min-height: 0;
    letter-spacing: 0.01em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-nav a {
    transition: none;
  }
}

@media screen and (min-width: 769px) {
  .site-header .cta-group,
  .cta-block--hero-mobile .cta-group {
    height: 56.38px;
    min-height: 56.38px;
    max-height: 56.38px;
  }

  .site-header .cta-group .btn,
  .cta-block--hero-mobile .cta-group .btn {
    height: 56.38px;
    min-height: 56.38px;
  }
}

@media screen and (max-width: 768px) {
  .site-header .cta-group .btn-tel .btn-number,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-number {
    font-size: 16px;
  }
}

/* Stabilize CTA rendering on very small devices (prevent brief upsize flicker) */
@media screen and (max-width: 390px) {
  .site-header .cta-group,
  .cta-block--hero-mobile .cta-group {
    gap: 6px;
  }

  .site-header .cta-group .btn::before,
  .cta-block--hero-mobile .cta-group .btn::before {
    width: 14px;
    height: 14px;
    background-size: 6px 6px;
  }

  .site-header .cta-group .btn,
  .cta-block--hero-mobile .cta-group .btn {
    height: 40px;
    min-height: 40px;
    padding-block: 4px;
    padding-inline: 3px;
  }

  .site-header .cta-group .btn .btn-label,
  .cta-block--hero-mobile .cta-group .btn .btn-label {
    font-size: 10px;
  }

  .site-header .cta-group .btn-tel .btn-number,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-number {
    font-size: 16px;
    line-height: 1.05;
    white-space: nowrap;
  }

  .site-header .cta-group .btn-tel .btn-meta,
  .cta-block--hero-mobile .cta-group .btn-tel .btn-meta {
    font-size: 7px;
    white-space: nowrap;
  }
}




