:root {
  --ink: #171717;
  --panel: #202124;
  --panel-2: #2a2b2f;
  --red: #c91419;
  --red-dark: #931014;
  --paper: #f4f4f1;
  --white: #ffffff;
  --text: #15171a;
  --muted: #5b646b;
  --line: #d7dbde;
  --metal: #aeb6bd;
  --shadow: 0 2px 6px rgb(0 0 0 / 0.05);
  --radius: 4px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Zen Kaku Gothic New", "Yu Gothic", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 12px max(16px, calc((100% - var(--container)) / 2));
  color: var(--white);
  background: rgb(23 23 23 / 0.96);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand small {
  color: rgb(255 255 255 / 0.68);
  font-size: 0.72rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgb(255 255 255 / 0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffcdcf;
}

.menu-button {
  display: none;
}

.section {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  padding: 84px 0;
}

.section-label {
  margin: 0 0 10px;
  color: var(--red);
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .section-label {
  color: var(--red);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.reason-copy h2,
.shop-info h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 900;
}

.section-heading h2::after,
.reason-copy h2::after,
.shop-info h2::after,
.contact-copy h2::after {
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 16px;
  content: "";
  background: var(--red);
}

.section-heading p:not(.section-label),
.reason-copy p,
.shop-info p,
.contact-copy p {
  color: var(--muted);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.66fr) minmax(0, 0.9fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 690px;
  margin-inline: auto;
  padding: 72px max(16px, calc((100% - var(--container)) / 2)) 72px;
  color: var(--white);
  background: #1b1b1b;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 108px 108px;
  box-shadow: none;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 72px auto 72px max(16px, calc((100% - var(--container)) / 2));
  z-index: 0;
  width: min(520px, 44vw);
  content: "";
  background: rgb(255 255 255 / 0.035);
  border-left: 6px solid var(--red);
  border-top: 1px solid rgb(255 255 255 / 0.08);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 46px 0 46px 34px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  letter-spacing: 0;
}

.hero-title-main,
.hero-title-detail,
.hero-title-sub {
  display: block;
}

.title-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.hero-title-main {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  line-height: 1.15;
  font-weight: 900;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-title-detail {
  max-width: 680px;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.25;
  font-weight: 900;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-title-sub {
  width: fit-content;
  margin-top: 16px;
  padding: 0 0 4px;
  display: block;
  color: #ffffff;
  background: transparent;
  border-bottom: 4px solid var(--red);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.25;
  font-weight: 900;
}

.hero-lead {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 700;
}

.hero-actions,
.contact-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: rgb(5 6 8 / 0.18);
}

.button-dark {
  color: var(--white);
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.28);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: rgb(255 255 255 / 0.14);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 600px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-height: 34px;
  padding: 5px 12px;
  color: var(--white);
  background: #26282b;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 540px;
  margin-right: calc(-1 * max(16px, calc((100vw - var(--container)) / 2)));
  padding: 0;
  overflow: hidden;
  background: #0f1011;
  border: 1px solid rgb(255 255 255 / 0.12);
  box-shadow: none;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgb(27 27 27 / 0.22), transparent 38%);
  pointer-events: none;
}

.hero-visual::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 5px;
  content: "";
  background: var(--red);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  background: var(--paper);
  border-radius: 0;
  filter: brightness(0.78) contrast(1.08) saturate(0.96);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slider-dots {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-slider-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  cursor: pointer;
  background: rgb(255 255 255 / 0.42);
  border: 0;
  border-radius: 0;
}

.hero-slider-dots button.is-active {
  background: var(--red);
}

.trust-strip span,
.contact-panel span,
.service-number {
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 96px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  color: var(--red);
  font-size: 0.8rem;
}

.trust-strip strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.08rem;
}

.concerns {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--container)) / 2));
  color: var(--ink);
  background: #f2f2ef;
  border-bottom: 1px solid var(--line);
}

.concerns .section-heading h2 {
  color: var(--ink);
}

.concerns .section-heading p:not(.section-label) {
  color: var(--muted);
}

.concern-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: concern;
  background: transparent;
  border: 0;
}

.concern-list article {
  position: relative;
  min-height: 128px;
  padding: 24px 22px 22px;
  color: var(--ink);
  background: var(--white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.7;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.concern-list article::before {
  display: block;
  margin-bottom: 16px;
  counter-increment: concern;
  content: "0" counter(concern);
  width: fit-content;
  padding: 4px 8px;
  color: var(--white);
  background: var(--ink);
  border-left: 4px solid var(--red);
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.concern-list article::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 28px;
  height: 2px;
  content: "";
  background: var(--ink);
  opacity: 0.18;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 62px;
  }

  .hero::after {
    inset: 32px auto auto max(16px, calc((100% - var(--container)) / 2));
    width: min(760px, calc(100% - 32px));
    height: 48%;
  }

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

  .hero-visual {
    width: 100%;
    min-height: 420px;
    margin-right: 0;
  }

  .hero-visual img {
    min-height: 420px;
  }
}

.service-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: end;
  max-width: none;
}

.services {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--container)) / 2));
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  background: transparent;
  border: 0;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-number {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
}

.service-number svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 18px 4px 6px;
  color: var(--ink);
  font-size: 1.22rem;
}

.service-card p {
  margin: 0 4px 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.section-cta {
  justify-content: flex-start;
  padding: 26px;
  margin-top: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reasons {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--container)) / 2));
  color: var(--white);
  background: var(--ink);
}

.reason-photo {
  position: relative;
}

.reason-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius);
  box-shadow: none;
}

.reason-photo::after {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 42%;
  height: 42%;
  content: "";
  border-right: 6px solid var(--red);
  border-bottom: 6px solid var(--red);
  pointer-events: none;
}

.reason-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgb(255 255 255 / 0.16);
}

.reason-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.16);
}

.reason-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
  font-weight: 900;
}

.reason-list h3 {
  margin: 0 0 4px;
  color: var(--white);
}

.reason-list p {
  margin: 0;
  color: rgb(255 255 255 / 0.72);
}

.reasons .section-label {
  color: #ffb7ba;
}

.reason-copy h2 {
  color: var(--white);
}

#reasons-title {
  white-space: nowrap;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.reason-copy p {
  color: rgb(255 255 255 / 0.72);
}

.flow {
  background: var(--paper);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.flow-list li {
  padding: 22px;
  background: var(--white);
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
  font-weight: 900;
}

.flow-list strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.flow-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.faq {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--container)) / 2));
  background: #eeeeeb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.shop {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
  background: var(--paper);
}

.shop-info dl {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.shop-info dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.shop-info dt {
  color: var(--muted);
  font-weight: 900;
}

.shop-info dd {
  margin: 0;
}

.shop-info dd a {
  color: var(--red);
  font-weight: 900;
}

.map-card {
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  border-radius: var(--radius);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--container)) / 2));
  color: var(--white);
  background: var(--ink);
}

.contact-copy h2 {
  color: var(--white);
}

#contact-title {
  white-space: nowrap;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.contact-copy p {
  color: rgb(255 255 255 / 0.74);
}

.contact .section-label {
  color: #ffb7ba;
}

.contact-panel {
  margin-top: 24px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
}

.contact-panel span {
  display: block;
  color: var(--red);
  font-size: 0.8rem;
}

.contact-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 1.16rem;
}

.contact-panel p {
  margin: 6px 0 0;
  color: var(--muted);
}

.phone-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  border-radius: var(--radius);
}

.phone-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.phone-card p {
  margin: 0;
  color: var(--muted);
}

.phone-number {
  display: block;
  width: fit-content;
  color: var(--red);
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.phone-list {
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.phone-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-weight: 700;
}

.phone-list li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--red);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--red);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgb(201 20 25 / 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 32px 20px 100px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.site-footer small {
  display: block;
  margin-top: 8px;
  color: rgb(255 255 255 / 0.72);
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    background: rgb(255 255 255 / 0.08);
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: var(--radius);
  }

  .menu-button span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
  }

  .site-nav {
    position: fixed;
    inset: 74px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--panel);
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .reasons,
  .shop,
  .contact,
  .service-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    inset: 0;
    width: auto;
    height: auto;
  }

  .hero::after {
    inset: 32px auto auto 16px;
    width: calc(100% - 32px);
    height: 54%;
  }

  .hero-copy {
    padding: 44px 0 18px 24px;
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 430px;
    margin-inline: auto;
  }

  .hero-visual img {
    min-height: 430px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

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

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

  .service-card {
    grid-column: auto;
    display: flex;
  }

}

@media (max-width: 680px) {
  .section {
    width: min(100% - 32px, var(--container));
    padding: 62px 0;
  }

  .concerns,
  .services,
  .reasons,
  .faq,
  .contact {
    width: 100%;
    max-width: none;
    padding-inline: 16px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    inset: 68px 16px auto;
  }

  .hero-title-main {
    font-size: clamp(1.55rem, 7.4vw, 2.05rem);
    line-height: 1.16;
  }

  .hero-title-detail {
    font-size: clamp(1.12rem, 5.3vw, 1.42rem);
    line-height: 1.35;
  }

  .hero-title-sub {
    width: 100%;
    font-size: clamp(1.2rem, 6vw, 1.65rem);
  }

  .hero {
    width: 100%;
    max-width: none;
    padding: 48px 16px 56px;
  }

  .hero::before {
    inset: 0;
    width: auto;
  }

  .hero::after {
    inset: 24px 16px auto;
    width: auto;
    height: 52%;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 320px;
  }

  .hero-slider-dots {
    right: 16px;
    bottom: 16px;
  }

  .hero-slider-dots button {
    width: 26px;
  }

  .hero-actions,
  .contact-actions,
  .section-cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .concern-list,
  .service-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .reason-list article {
    grid-template-columns: 44px 1fr;
  }

  #reasons-title {
    font-size: clamp(1.18rem, 5.5vw, 1.55rem);
  }

  #contact-title {
    font-size: clamp(1.18rem, 5.5vw, 1.55rem);
  }

  .shop-info dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-card {
    min-height: 260px;
  }

  .map-card iframe {
    min-height: 260px;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
    background: rgb(255 255 255 / 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: var(--red);
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
