﻿@charset "utf-8";
/* =========================================================
   FUWA RINGYOU
   Base
========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: #161616;
  background: #f2efe7;
  font-family:
    "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1.7;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}
/* =========================================================
   Header
========================================================= */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background: transparent;
  transition:
    background-color .3s ease, box-shadow .3s ease;
}
/* スクロール後 */
.site-header.is-scrolled {
  background: rgba(14, 14, 13, .94);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* 中身 */
.site-header__inner {
  position: relative;
  z-index: 1200;
  width: min(1400px, calc(100% - 48px));
  min-height: 100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  transition:
    min-height .3s ease;
}
/* スクロール後は少し薄く */
.site-header.is-scrolled .site-header__inner {
  min-height: 76px;
}
/* -----------------------------------------
   Logo
----------------------------------------- */
.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.site-brand__mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  transition:
    width .3s ease, height .3s ease;
}
.site-brand__logo {
  width: 185px;
  filter: invert(1);
  transition:
    width .3s ease;
}
/* スクロール後 */
.site-header.is-scrolled .site-brand__mark {
  width: 46px;
  height: 46px;
}
.site-header.is-scrolled .site-brand__logo {
  width: 155px;
}
/* -----------------------------------------
   PC Navigation
----------------------------------------- */
.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
}
.global-nav a {
  position: relative;
  white-space: nowrap;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #e4bd21;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
/* -----------------------------------------
   Contact Button
----------------------------------------- */
.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  flex-shrink: 0;
  color: #161616;
  background: #e4bd21;
  font-size: 13px;
  font-weight: 900;
  transition:
    background-color .2s ease, transform .2s ease;
}
.header-contact:hover {
  background: #f0cc35;
  transform: translateY(-2px);
}
/* -----------------------------------------
   Hamburger
----------------------------------------- */
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  flex: 0 0 48px;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  background: rgba(0, 0, 0, .22);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition:
    transform .25s ease, opacity .25s ease;
}
/* OPEN時 */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* =========================================================
   Mobile Navigation
========================================================= */
.mobile-nav {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  background: rgba(0, 0, 0, 0);
  transition:
    visibility .35s ease, background-color .35s ease;
}
.mobile-nav.is-open {
  visibility: visible;
  background: rgba(0, 0, 0, .62);
}
/* パネル */
.mobile-nav__panel {
  width: min(430px, 88vw);
  height: 100%;
  padding: 30px;
  overflow-y: auto;
  color: #fff;
  background: #111;
  border-left: 4px solid #e4bd21;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}
/* 上 */
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.mobile-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav__mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}
.mobile-nav__logo {
  width: 145px;
  filter: invert(1);
}
.mobile-nav__close {
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .30);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
/* メニュー */
.mobile-nav__links {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
}
.mobile-nav__links a {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px;
  font-weight: 900;
}
.mobile-nav__links a span {
  color: #e4bd21;
  font-size: 10px;
  letter-spacing: .14em;
}
/* 相談 */
.mobile-nav__contact {
  min-height: 62px;
  margin-top: 34px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #161616;
  background: #e4bd21;
  font-size: 14px;
  font-weight: 900;
}
.mobile-nav__contact span {
  font-size: 20px;
}
/* 下のコピー */
.mobile-nav__message {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}
/* メニューOPEN時は本文を固定 */
body.is-menu-open {
  overflow: hidden;
}
/* =========================================================
   Hero
========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    url("../img/hero/hero-shop.webp") center center / cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .58) 34%, rgba(0, 0, 0, .26) 60%, rgba(0, 0, 0, .04) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 48px));
  min-height: 100svh;
  margin-inline: auto;
  padding-top: 130px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
}
.hero__copy {
  width: min(640px, 100%);
  margin-left: clamp(30px, 4vw, 70px);
}
.hero__eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  padding: 7px 12px;
  color: #161616;
  background: #e4bd21;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
}
.hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.hero__title span {
  display: block;
}
.hero__logo {
  width: min(520px, 92%);
  margin-top: 18px;
  filter: invert(1);
}
.hero__lead {
  margin: 32px 0 0;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.9;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
/* =========================================================
   Button
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 2px solid transparent;
  font-size: 14px;
  font-weight: 900;
  transition:
    background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  color: #161616;
  background: #e4bd21;
}
.btn--primary:hover {
  background: #f0cc35;
}
.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .75);
}
.btn--ghost:hover {
  color: #161616;
  background: #fff;
}
/* =========================================================
   Scroll
========================================================= */
.hero__scroll {
  position: absolute;
  right: 0;
  bottom: 36px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}
.hero__scroll span {
  color: #e4bd21;
}
/* =========================================================
   Brand Divider
========================================================= */
.brand-divider {
  position: relative;
  z-index: 5;
  height: 42px;
  overflow: hidden;
  background: #161616;
  border-top: 4px solid #e4bd21;
  border-bottom: 4px solid #e4bd21;
}
.brand-divider__marks {
  width: 100%;
  height: 100%;
  background: #e4bd21;
  -webkit-mask-image: url("../img/common/wheel-mark.png");
  mask-image: url("../img/common/wheel-mark.png");
  /* 余白込みの画像サイズ */
  -webkit-mask-size: 36px 36px;
  mask-size: 36px 36px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-position: center;
  mask-position: center;
}
/* =========================================================
   About
========================================================= */
.about {
  position: relative;
  background: #161616;
  color: #fff;
}
.about__visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}
.about__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.about__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .62) 30%, rgba(0, 0, 0, .28) 52%, rgba(0, 0, 0, .06) 72%, rgba(0, 0, 0, .12) 100%);
}
.about__inner {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 48px));
  min-height: 760px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.about__copy {
  width: min(520px, 100%);
  margin-left: clamp(30px, 4vw, 70px);
}
.about__label {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e4bd21;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.about__label span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: .08em;
}
.about__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.about__title span {
  display: block;
}
.about__text {
  margin-top: 34px;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}
.about__text p {
  margin: 0;
}
.about__text p + p {
  margin-top: 14px;
}
.about__owner {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .34);
}
.about__owner-role {
  margin: 0 0 5px;
  color: #e4bd21;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.about__owner-name {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 20px;
  font-weight: 900;
}
.about__owner-name span {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}
/* =========================================================
   Repair
========================================================= */
.repair {
  position: relative;
  color: #fff;
  background: #161616;
}
.repair__visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}
.repair__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.repair__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .62) 30%, rgba(0, 0, 0, .30) 52%, rgba(0, 0, 0, .10) 72%, rgba(0, 0, 0, .16) 100%);
}
.repair__inner {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 48px));
  min-height: 760px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.repair__copy {
  width: min(560px, 100%);
  margin-left: clamp(30px, 4vw, 70px);
}
.repair__label {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e4bd21;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.repair__label span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: .08em;
}
.repair__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.repair__title span {
  display: block;
}
.repair__lead {
  margin: 32px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}
.repair__list {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.repair__list li {
  padding: 8px 14px;
  color: #161616;
  background: #e4bd21;
  font-size: 12px;
  font-weight: 900;
}
.repair__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
}
/* =========================================================
   Price
========================================================= */
.price {
  position: relative;
  color: #fff;
  background: #161616;
  /* 固定ヘッダー分、アンカー位置を下げる */
  scroll-margin-top: 76px;
}
.price__visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}
.price__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.price__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .66) 30%, rgba(0, 0, 0, .32) 52%, rgba(0, 0, 0, .10) 72%, rgba(0, 0, 0, .16) 100%);
}
.price__inner {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 48px));
  min-height: 760px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.price__copy {
  width: min(600px, 100%);
  margin-left: clamp(30px, 4vw, 70px);
}
.price__label {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e4bd21;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.price__label span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: .08em;
}
.price__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.price__title span {
  display: block;
}
.price__lead {
  margin: 30px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}
/* パンク修理 */
.price__repair {
  margin-top: 28px;
  padding: 20px 22px;
  background: rgba(0, 0, 0, .62);
  border-left: 5px solid #e4bd21;
}
.price__repair-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.price__repair-head span {
  font-size: 16px;
  font-weight: 900;
}
.price__repair-head strong {
  color: #e4bd21;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.price__repair p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 700;
}
/* 子ども特別料金 */
.price__kids {
  margin-top: 12px;
  padding: 16px 22px;
  color: #161616;
  background: #e4bd21;
}
.price__kids-label {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.price__kids-main {
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.price__kids-main strong {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.price__kids-main span {
  font-size: 12px;
  font-weight: 900;
}
.price__note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.8;
}
/* =========================================================
   Legend
========================================================= */
.legend {
  position: relative;
  overflow: hidden;
  color: #e8dcc3;
  background: #17140f;
}
/* 当時の記憶として敷く背景写真 */
.legend__bg {
  position: absolute;
  z-index: 0;
  inset: -20px;
  overflow: hidden;
}
.legend__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 左側に巨大なタイヤが残るよう少し左寄せ */
  object-position: 42% center;
  filter:
    blur(4px) sepia(.82) saturate(.62) contrast(.92) brightness(.72);
  transform: scale(1.04);
}
/* 背景を残しつつ、文字と新聞の可読性を確保 */
.legend__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 16, 10, .72) 0%, rgba(20, 16, 10, .62) 34%, rgba(20, 16, 10, .48) 58%, rgba(20, 16, 10, .62) 100%);
}
.legend__inner {
  position: relative;
  z-index: 1;
  /* 他セクションと同じPC基準幅 */
  width: min(1400px, calc(100% - 48px));
  min-height: 760px;
  margin-inline: auto;
  padding: 100px 0;
  display: grid;
  /* 左の575を守りつつ新聞も十分な幅を確保 */
  grid-template-columns: minmax(500px, 1fr) minmax(460px, 1fr);
  align-items: center;
  /* 文字群と新聞の距離を少し詰める */
  gap: clamp(28px, 3vw, 48px);
}
.legend__copy {
  position: relative;
  z-index: 2;
  /* ABOUT・REPAIR等と同じ左位置 */
  margin-left: clamp(30px, 4vw, 70px);
}
.legend__label {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #c99a45;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}
.legend__label span {
  color: #b8aa8d;
  font-size: 12px;
  letter-spacing: .08em;
}
.legend__title {
  margin: 0;
  color: #e8dcc3;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .02em;
}
.legend__title span {
  display: block;
}
.legend__text {
  margin-top: 42px;
  color: #d3c5a9;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}
.legend__text p {
  margin: 0;
}
.legend__text p + p {
  margin-top: 18px;
}
/* 会話 */
.legend__note {
  color: #b8aa8d;
  font-size: 12px;
  letter-spacing: .08em;
}
.legend__dialogue {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legend__talk {
  display: flex;
  align-items: center;
  gap: 14px;
}
.legend__avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  overflow: hidden;
  border: 1px solid rgba(232, 220, 195, .45);
  border-radius: 50%;
  background: rgba(232, 220, 195, .92);
}
.legend__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
/* 不破さんだけ少し渋く馴染ませる */
.legend__talk--fuwa .legend__avatar-image {
  filter:
    sepia(.18) saturate(.82) contrast(.98);
}
/* セリフ */
.legend__talk p {
  position: relative;
  max-width: 390px;
  margin: 0;
  padding: 11px 15px;
  color: #e8dcc3;
  background: rgba(23, 20, 15, .76);
  border: 1px solid rgba(201, 154, 69, .25);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}
.legend__talk--fuwa p {
  color: #f0e5cd;
  border-color: rgba(232, 220, 195, .34);
  font-weight: 900;
}
.legend__afterword {
  margin-top: 26px !important;
  color: #d3c5a9;
  font-size: 13px;
}
.legend__newspaper {
  position: relative;
  width: min(100%, 610px);
  margin: 0;
  justify-self: start;
  transform: rotate(1.2deg);
}
.legend__newspaper::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 3% 4% -2%;
  background: rgba(0, 0, 0, .55);
  filter: blur(24px);
}
.legend__newspaper img {
  width: 100%;
  height: auto;
  filter:
    sepia(.08) contrast(.96) brightness(.94);
}
.legend__newspaper figcaption {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #b8aa8d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
/* =========================================================
   Access
========================================================= */
.access {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: #fff;
  background: #17140f;
}
/* 背景 */
.access__bg {
  position: absolute;
  z-index: 0;
  inset: -30px;
  overflow: hidden;
}
.access__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter:
    blur(5px) saturate(.82) brightness(.68);
  transform: scale(1.04);
}
.access__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 15, 11, .68) 0%, rgba(17, 15, 11, .54) 36%, rgba(17, 15, 11, .30) 68%, rgba(17, 15, 11, .40) 100%);
}
/* レイアウト */
.access__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 48px));
  min-height: 760px;
  margin-inline: auto;
  padding: 90px 0;
  display: grid;
  /* 画面幅に応じて左右カラムを縮ませる */
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(40px, 5vw, 70px);
}
/* 左コピー */
.access__copy {
  min-width: 0;
  margin-left: clamp(30px, 4vw, 70px);
}
.access__label {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e4bd21;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}
.access__label span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: .08em;
}
.access__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .01em;
}
.access__title span {
  display: block;
  /* 575の各句は途中で折り返さない */
  white-space: nowrap;
}
.access__text {
  margin-top: 38px;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}
.access__text p {
  margin: 0;
}
.access__text p + p {
  margin-top: 16px;
}
/* 右：地図群 */
.access__maps {
  width: 100%;
  max-width: 700px;
  min-width: 0;
}
/* 娘さんの地図 */
.access__handmap {
  width: 100%;
  margin: 0;
  transform: rotate(-1deg);
}
.access__handmap img {
  width: 100%;
  height: auto;
  border: 8px solid rgba(255, 250, 235, .92);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, .38);
}
.access__handmap figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
}
/* Google Map */
.access__google {
  width: min(380px, 70%);
  margin: 28px 0 0 auto;
  padding: 14px;
  background: rgba(15, 15, 13, .82);
  border: 1px solid rgba(228, 189, 33, .38);
}
.access__google-head {
  margin-bottom: 10px;
}
.access__google-head p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.access__google-head strong {
  color: #e4bd21;
  font-size: 11px;
  font-weight: 900;
}
.access__google-head span {
  color: rgba(255, 255, 255, .70);
  font-size: 10px;
  font-weight: 700;
}
.access__google-map {
  height: 150px;
  overflow: hidden;
}
.access__google-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter:
    grayscale(.55) sepia(.18) contrast(.95);
}
/* =========================================================
   Contact
========================================================= */
.contact {
  position: relative;
  color: #fff;
  background: #161616;
}
.contact__visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}
.contact__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* 背景を落として文字を読ませる */
.contact__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .66) 31%, rgba(0, 0, 0, .30) 55%, rgba(0, 0, 0, .46) 100%);
}
/* 全体 */
.contact__inner {
  position: relative;
  z-index: 2;
  /* CONTACTだけ情報群を中央にまとめる */
  width: min(1180px, calc(100% - 48px));
  min-height: 760px;
  margin-inline: auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(400px, 1.08fr);
  align-items: center;
  gap: 36px;
}
/* 左 */
.contact__copy {
  min-width: 0;
  margin-left: 0;
}
.contact__label {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e4bd21;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}
.contact__label span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: .08em;
}
.contact__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.contact__title span {
  display: block;
  white-space: nowrap;
}
.contact__lead {
  margin: 36px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}
/* 右：連絡先パネル */
.contact__info {
  width: min(100%, 480px);
  padding: 32px 34px;
  justify-self: start;
  background: rgba(10, 10, 9, .74);
  border-top: 4px solid #e4bd21;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .30);
}
.contact__info-label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
/* 電話番号 */
.contact__tel {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  color: #fff;
}
.contact__tel-small {
  color: #e4bd21;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .15em;
}
.contact__tel strong {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
}
.contact__tel-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 700;
}
/* 営業時間 */
.contact__hours {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .20);
}
.contact__hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 7px 0;
}
.contact__hours-row span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 700;
}
.contact__hours-row strong {
  font-size: 16px;
  font-weight: 900;
}
/* 時間外 */
.contact__emergency {
  margin-top: 24px;
  padding: 18px 20px;
  color: #161616;
  background: #e4bd21;
}
.contact__emergency-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.contact__emergency p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}
.contact__emergency strong {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 900;
}
/* =========================================================
   Footer
========================================================= */
.site-footer {
  position: relative;
  color: #fff;
  background: #111;
}
/* -----------------------------------------
   本体
----------------------------------------- */
.site-footer__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: 72px 0 26px;
}
.site-footer__main {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.1fr) minmax(220px, .8fr) minmax(300px, 1fr);
  gap: clamp(50px, 7vw, 90px);
  align-items: start;
}
/* -----------------------------------------
   店舗情報
----------------------------------------- */
.site-footer__brand {
  min-width: 0;
}
.site-footer__logo {
  display: inline-block;
}
.site-footer__logo img {
  width: min(240px, 100%);
  height: auto;
  filter: invert(1);
}
.site-footer__tagline {
  margin: 18px 0 0;
  color: #e4bd21;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}
.site-footer__message {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}
/* -----------------------------------------
   ナビ
----------------------------------------- */
.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.site-footer__nav a {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  transition:
    color .2s ease, transform .2s ease;
}
.site-footer__nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 2px;
  background: #e4bd21;
  transform: translateY(-50%);
}
.site-footer__nav a:hover {
  color: #fff;
  transform: translateX(4px);
}
/* -----------------------------------------
   電話・営業時間
----------------------------------------- */
.site-footer__info {
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}
.site-footer__info-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.site-footer__tel {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer__tel span {
  color: #e4bd21;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}
.site-footer__tel strong {
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 900;
  line-height: 1.2;
}
.site-footer__hours {
  margin: 24px 0 0;
}
.site-footer__hours div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 7px 0;
}
.site-footer__hours dt {
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  font-weight: 700;
}
.site-footer__hours dd {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
}
/* -----------------------------------------
   最下段
----------------------------------------- */
.site-footer__bottom {
  margin-top: 62px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.site-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, .38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}
.site-footer__pagetop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  transition: color .2s ease;
}
.site-footer__pagetop span {
  color: #e4bd21;
  font-size: 16px;
}
.site-footer__pagetop:hover {
  color: #fff;
}
/* =========================================================
   Placeholder Sections
========================================================= */
.section {
  padding: 120px 0;
}
.section--placeholder {
  min-height: 420px;
  border-top: 1px solid rgba(0, 0, 0, .14);
}
.section:nth-of-type(even) {
  background: #e5e0d4;
}
.section-label {
  margin: 0 0 10px;
  color: #9b7911;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.section h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
}
/* =========================================================
   Tablet
========================================================= */
@media (max-width: 1000px) {
  /* =========================================================
   Header
========================================================= */
  .site-header__inner {
    min-height: 86px;
    gap: 14px;
  }
  .site-header.is-scrolled .site-header__inner {
    min-height: 70px;
  }
  /* PRICEのアンカー位置補正 */
  .price {
    scroll-margin-top: 70px;
  }
  /* PCナビは消す */
  .global-nav {
    display: none;
  }
  /* 相談ボタンは残す */
  .header-contact {
    margin-left: auto;
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
  }
  /* ハンバーガー表示 */
  .nav-toggle {
    display: block;
  }
  /* =========================================================
   Mobile Navigation
   固定ヘッダーの下から開く
========================================================= */
  .mobile-nav {
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100dvh - 70px);
  }
  /* メニュー内部にあった二重ヘッダーは使わない */
  .mobile-nav__head {
    display: none;
  }
  /* 上端に余白を作り直す */
  .mobile-nav__links {
    margin-top: 20px;
  }
  /* ロゴ */
  .site-brand__mark {
    width: 50px;
    height: 50px;
  }
  .site-brand__logo {
    width: 160px;
  }
  /* スクロール後 */
  .site-header.is-scrolled .site-brand__mark {
    width: 42px;
    height: 42px;
  }
  .site-header.is-scrolled .site-brand__logo {
    width: 140px;
  }
  .hero__copy {
    width: min(560px, 75%);
  }
  .about__visual, .about__inner {
    min-height: 680px;
  }
  .about__copy {
    width: min(470px, 55%);
  }
  .about__title {
    font-size: clamp(42px, 6vw, 62px);
  }
  .repair__visual,
  .repair__inner {
    min-height: 680px;
  }
  .repair__copy {
    width: min(500px, 58%);
  }
  .repair__title {
    font-size: clamp(42px, 6vw, 62px);
  }
  .price__visual,
  .price__inner {
    min-height: 680px;
  }
  .price__copy {
    width: min(540px, 62%);
  }
  .price__title {
    font-size: clamp(42px, 6vw, 62px);
  }
  .price__repair-head strong,
  .price__kids-main strong {
    font-size: 26px;
  }
  /* =========================================================
   Legend
========================================================= */
  .legend__inner {
    width: min(920px, calc(100% - 56px));
    min-height: 760px;
    padding: 76px 0;
    /* 最低幅を固定せず、画面幅に合わせて縮ませる */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(22px, 3.5vw, 34px);
  }
  .legend__copy {
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }
  .legend__title {
    font-size: clamp(38px, 5.2vw, 56px);
    line-height: 1.1;
  }
  .legend__text {
    margin-top: 30px;
    font-size: 12px;
    line-height: 1.9;
  }
  .legend__dialogue {
    margin-top: 18px;
    gap: 13px;
  }
  .legend__avatar {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
  .legend__talk {
    gap: 12px;
  }
  .legend__talk p {
    max-width: 100%;
    min-width: 0;
    padding: 9px 12px;
    font-size: 11px;
    line-height: 1.7;
  }
  .legend__afterword {
    margin-top: 20px !important;
    font-size: 12px;
  }
  .legend__newspaper {
    width: 100%;
    max-width: 500px;
    min-width: 0;
    margin-inline: auto;
    justify-self: center;
  }
  /* =========================================================
   Access
========================================================= */
  .access__inner {
    width: min(920px, calc(100% - 56px));
    min-height: 720px;
    padding: 76px 0;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(24px, 4vw, 38px);
  }
  .access__copy {
    min-width: 0;
    margin-left: 0;
  }
  .access__title {
    /* 7文字の「この地図みれば」を1行で収める */
    font-size: clamp(34px, 4.8vw, 52px);
    line-height: 1.1;
  }
  .access__text {
    margin-top: 30px;
    font-size: 12px;
  }
  .access__maps {
    min-width: 0;
  }
  .access__handmap {
    width: 100%;
  }
  .access__google {
    width: min(330px, 80%);
    margin-top: 22px;
  }
  .access__google-map {
    height: 130px;
  }
  /* =========================================================
   Contact
========================================================= */
  .contact__visual,
  .contact__inner {
    min-height: 700px;
  }
  .contact__inner {
    width: min(920px, calc(100% - 56px));
    padding: 76px 0;
    grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
    gap: clamp(28px, 4vw, 42px);
  }
  .contact__copy {
    min-width: 0;
    margin-left: 0;
  }
  .contact__title {
    font-size: clamp(38px, 5.2vw, 56px);
  }
  .contact__lead {
    margin-top: 28px;
    font-size: 12px;
  }
  .contact__info {
    width: 100%;
    max-width: 440px;
    padding: 28px;
  }
  .contact__tel strong {
    font-size: clamp(26px, 3.6vw, 36px);
  }
  .contact__emergency p br {
    display: none;
  }
  /* =========================================================
   Footer
========================================================= */
  .site-footer__inner {
    width: min(920px, calc(100% - 56px));
    padding-top: 62px;
  }
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 48px 56px;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
  .site-footer__logo img {
    width: 220px;
  }
  .site-footer__info {
    padding-left: 24px;
  }
}
/* =========================================================
   Smartphone
========================================================= */
@media (max-width: 640px) {
  .container,
  .site-header__inner,
  .hero__inner {
    width: min(100% - 32px, 1400px);
  }
  /* =========================================================
   Header
========================================================= */
  .site-header__inner {
    min-height: 70px;
    gap: 10px;
  }
  .site-header.is-scrolled .site-header__inner {
    min-height: 64px;
  }
  .site-brand {
    gap: 9px;
  }
  .site-brand__mark {
    width: 42px;
    height: 42px;
  }
  .site-brand__logo {
    width: 125px;
  }
  /* スマホでは相談ボタンをメニュー内へ */
  .header-contact {
    display: none;
  }
  /* =========================================================
   Mobile Navigation
========================================================= */
  .mobile-nav {
    top: 64px;
    height: calc(100dvh - 64px);
  }
  .mobile-nav__panel {
    width: min(390px, 92vw);
  }
  /* ハンバーガーを右端へ */
  .nav-toggle {
    display: block;
    width: 44px;
    height: 44px;
    margin-left: auto;
    flex-basis: 44px;
  }
  /* スクロール後のロゴ */
  .site-header.is-scrolled .site-brand__mark {
    width: 38px;
    height: 38px;
  }
  .site-header.is-scrolled .site-brand__logo {
    width: 115px;
  }
  /* モバイルメニュー */
  .mobile-nav__panel {
    width: min(390px, 92vw);
    padding: 24px;
  }
  .mobile-nav__mark {
    width: 40px;
    height: 40px;
  }
  .mobile-nav__logo {
    width: 130px;
  }
  .mobile-nav__links {
    margin-top: 28px;
  }
  .mobile-nav__links a {
    min-height: 58px;
    font-size: 13px;
  }
  .hero {
    background-position: 58% center;
  }
  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .66) 60%, rgba(0, 0, 0, .32) 100%);
  }
  .hero__inner {
    padding-top: 110px;
    padding-bottom: 70px;
    align-items: flex-end;
  }
  .hero__copy {
    width: 100%;
    margin-left: 0;
  }
  .hero__eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }
  .hero__title {
    font-size: clamp(42px, 13vw, 64px);
  }
  .hero__logo {
    width: min(340px, 88%);
    margin-top: 14px;
  }
  .hero__lead {
    margin-top: 24px;
    font-size: 14px;
  }
  .hero__actions {
    flex-direction: column;
    margin-top: 28px;
  }
  .btn {
    width: 100%;
  }
  .hero__scroll {
    display: none;
  }
  .about__visual {
    min-height: 760px;
  }
  .about__visual > img {
    object-position: 62% center;
  }
  .about__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, .86) 68%, rgba(0, 0, 0, .96) 100%);
  }
  .about__inner {
    min-height: 760px;
    align-items: flex-end;
    padding-top: 280px;
    padding-bottom: 54px;
  }
  .about__copy {
    width: 100%;
    margin-left: 0;
  }
  .about__label {
    margin-bottom: 18px;
  }
  .about__title {
    font-size: clamp(40px, 12vw, 56px);
  }
  .about__text {
    margin-top: 24px;
    font-size: 14px;
  }
  .about__text br {
    display: none;
  }
  .about__owner {
    margin-top: 26px;
  }
  .repair__visual {
    min-height: 780px;
  }
  .repair__visual > img {
    object-position: 58% center;
  }
  .repair__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .14) 0%, rgba(0, 0, 0, .28) 34%, rgba(0, 0, 0, .88) 67%, rgba(0, 0, 0, .97) 100%);
  }
  .repair__inner {
    min-height: 780px;
    align-items: flex-end;
    padding-top: 300px;
    padding-bottom: 54px;
  }
  .repair__copy {
    width: 100%;
    margin-left: 0;
  }
  .repair__label {
    margin-bottom: 18px;
  }
  .repair__title {
    font-size: clamp(40px, 12vw, 56px);
  }
  .repair__lead {
    margin-top: 24px;
    font-size: 14px;
  }
  .repair__lead br {
    display: none;
  }
  .repair__list {
    gap: 8px;
    margin-top: 24px;
  }
  .repair__list li {
    padding: 7px 11px;
    font-size: 11px;
  }
  .price__visual {
    min-height: 820px;
  }
  .price__visual > img {
    object-position: 58% center;
  }
  .price__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .30) 34%, rgba(0, 0, 0, .90) 64%, rgba(0, 0, 0, .98) 100%);
  }
  .price__inner {
    min-height: 820px;
    align-items: flex-end;
    padding-top: 300px;
    padding-bottom: 46px;
  }
  .price__copy {
    width: 100%;
    margin-left: 0;
  }
  .price__label {
    margin-bottom: 18px;
  }
  .price__title {
    font-size: clamp(40px, 12vw, 56px);
  }
  .price__lead {
    margin-top: 22px;
    font-size: 14px;
  }
  .price__lead br {
    display: none;
  }
  .price__repair {
    margin-top: 22px;
    padding: 16px;
  }
  .price__repair-head {
    gap: 12px;
  }
  .price__repair-head span {
    font-size: 14px;
  }
  .price__repair-head strong {
    font-size: 24px;
  }
  .price__kids {
    padding: 14px 16px;
  }
  .price__kids-main {
    gap: 12px;
  }
  .price__kids-main strong {
    font-size: 24px;
  }
  .price__kids-main span {
    font-size: 11px;
  }
  /* =========================================================
     Legend
  ========================================================= */
  .legend__inner {
    width: calc(100% - 48px);
    min-height: auto;
    padding: 72px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 52px;
  }
  .legend__copy {
    width: 100%;
  }
  .legend__label {
    margin-bottom: 24px;
  }
  .legend__title {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 1.12;
  }
  .legend__text {
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.9;
  }
  .legend__text br {
    display: none;
  }
  .legend__dialogue {
    margin-top: 20px;
    gap: 14px;
  }
  .legend__talk {
    gap: 11px;
  }
  .legend__avatar {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  .legend__talk p {
    max-width: calc(100% - 53px);
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.7;
  }
  .legend__afterword {
    margin-top: 24px !important;
  }
  .legend__newspaper {
    width: 94%;
    margin-inline: auto;
    transform: rotate(1deg);
  }
  .legend__newspaper figcaption {
    margin-top: 14px;
    flex-direction: column;
    gap: 4px;
  }
  /* =========================================================
   Access
========================================================= */
  .access {
    min-height: auto;
  }
  .access__bg img {
    object-position: center;
    filter:
      blur(10px) saturate(.72) brightness(.42);
  }
  .access__bg::after {
    background:
      linear-gradient(180deg, rgba(17, 15, 11, .72) 0%, rgba(17, 15, 11, .78) 44%, rgba(17, 15, 11, .92) 100%);
  }
  .access__inner {
    width: calc(100% - 48px);
    min-height: auto;
    padding: 72px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 44px;
  }
  .access__copy {
    width: 100%;
    margin-left: 0;
  }
  .access__label {
    margin-bottom: 24px;
  }
  .access__title {
    /* スマホでも575を必ず3行で維持 */
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.12;
  }
  .access__text {
    margin-top: 28px;
    font-size: 13px;
    line-height: 1.9;
  }
  .access__text br {
    display: none;
  }
  .access__maps {
    width: 100%;
  }
  .access__handmap {
    width: 100%;
    transform: rotate(-.6deg);
  }
  .access__handmap img {
    border-width: 5px;
  }
  .access__handmap figcaption {
    margin-top: 12px;
    font-size: 10px;
  }
  .access__google {
    width: 76%;
    margin: 26px 0 0 auto;
    padding: 10px;
  }
  .access__google-map {
    height: 120px;
  }
  .access__google-head strong {
    font-size: 10px;
  }
  .access__google-head span {
    font-size: 9px;
  }
  /* =========================================================
   Contact
========================================================= */
  .contact__visual {
    min-height: 860px;
  }
  .contact__visual > img {
    object-position: 58% center;
  }
  .contact__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .20) 0%, rgba(0, 0, 0, .38) 32%, rgba(0, 0, 0, .88) 57%, rgba(0, 0, 0, .98) 100%);
  }
  .contact__inner {
    width: calc(100% - 48px);
    min-height: 860px;
    padding: 260px 0 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 38px;
  }
  .contact__copy {
    width: 100%;
    margin-left: 0;
  }
  .contact__label {
    margin-bottom: 22px;
  }
  .contact__title {
    font-size: clamp(40px, 12vw, 56px);
  }
  .contact__lead {
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.9;
  }
  .contact__lead br {
    display: none;
  }
  .contact__info {
    width: 100%;
    max-width: none;
    padding: 24px 20px;
    justify-self: auto;
  }
  .contact__tel {
    gap: 8px;
  }
  .contact__tel strong {
    font-size: clamp(27px, 8vw, 38px);
  }
  .contact__hours {
    margin-top: 24px;
  }
  .contact__emergency {
    padding: 16px;
  }
  .contact__emergency p br {
    display: none;
  }
  .section {
    padding: 84px 0;
  }
  /* =========================================================
   Footer
========================================================= */
  .site-footer__inner {
    width: calc(100% - 48px);
    padding: 54px 0 24px;
  }
  .site-footer__main {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .site-footer__logo img {
    width: 200px;
  }
  .site-footer__message {
    font-size: 11px;
  }
  .site-footer__nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 24px;
  }
  .site-footer__info {
    width: 100%;
    padding: 28px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }
  .site-footer__tel strong {
    font-size: clamp(25px, 8vw, 32px);
  }
  .site-footer__bottom {
    margin-top: 46px;
    align-items: flex-end;
  }
  .site-footer__copyright {
    font-size: 9px;
  }
}