@charset "UTF-8";

/* =========================================================
   Design Tokens
   ========================================================= */
:root {
  /* color */
  --color-ink: #231f20;
  --color-white: #ffffff;
  --color-surface: #ecebe8;
  --color-repair-bg: #f7f5f0;
  --color-placeholder: #e0e0e0;
  --color-alert: #e53935;

  /* font */
  --font-mincho: "Yu Mincho Pr6N", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "游明朝", serif;
  --font-gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;

  /* font-size (装飾テキストは clamp で可変) */
  --fs-heading: clamp(32px, 4.4vw, 42px);
  --fs-display: clamp(24px, 3.4vw, 32px);
  --fs-subhead: 18px;
  --fs-body: 15px;
  --fs-caption: 13px;

  /* layout */
  --content-width: 960px;
  --wide-width: 1440px;
  --gutter: clamp(20px, 5vw, 100px);
  --header-height: 108px;

  /* section spacing */
  --space-section-sm: 48px;
  --space-section-md: 80px;
  --space-section-lg: 120px;

  /* motion */
  --duration-normal: 300ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   Reset / Base
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.5px;
  color: var(--color-ink);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration-normal) var(--ease-out-expo);
}

a:hover {
  opacity: 0.6;
}

/* キーボードフォーカスの可視化（全インタラクティブ要素） */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 2px;
  border-radius: 1px;
}

/* スクリーンリーダー専用（視覚的に隠すが読み上げは可能） */
.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;
}

/* スキップリンク（Tab で最初に到達、通常時は隠す） */
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background-color: var(--color-ink);
  color: var(--color-white);
  transform: translateY(-150%);
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
}

/* 暗い背景上の要素は白いフォーカス枠にする */
.contact__tel:focus-visible {
  outline-color: var(--color-white);
}

/* スキップリンクで移動する main はプログラム的フォーカスのため枠を出さない */
[tabindex="-1"]:focus {
  outline: none;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================================================
   Layout : inner
   ========================================================= */
.l-inner {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* リンク元サイトの .u-frame を等価な1本の式で再現：
   余白 = min(13.88vw, 200px)（〜1439pxは6.94vw / 1440px以降は片側100px固定）、
   内容幅は最大 1440px で頭打ち（1640px以上で中央寄せ）。 */
.l-inner--large {
  max-width: min(var(--wide-width), calc(100vw - min(13.88vw, 200px)));
  padding-inline: 0;
}

/* =========================================================
   Utility
   ========================================================= */
.u-red {
  color: var(--color-alert);
}

.u-center {
  text-align: center;
}

/* 表示切り替え（PC ⇄ SP、境界は 800px／本サイト準拠）
   ※ block 前提。flex/inline で使う場合は個別に display を上書きしてください */
.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

@media (max-width: 800px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
}

/* =========================================================
   Component : header
   ========================================================= */
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background-color: var(--color-white);
}

/* 本サイト .l-header__inner 準拠：デスクトップ(≥801)は u-frame 幅（l-inner--large）に
   コンテンツを合わせ、padding は持たせない（max-width/padding-inline:0 は l-inner--large 由来）。
   モバイル(≤800)は下部メディアクエリで全幅＋padding に上書きする。
   ロゴ↔nav の間隔は本サイト同値：4.16vw（≒1440px で 60px に頭打ち） */
.header__inner {
  display: flex;
  align-items: center;
  column-gap: min(4.16vw, 60px);
  height: 100%;
}

.header__logo {
  position: relative;
  z-index: 120;
  flex: 0 0 auto;
  width: 200px;
  max-width: 200px;
}

.header__logo img {
  width: 100%;
  height: auto;
}

/* 本サイト .p-menu__inner 準拠：nav の間隔は可変 3.61vw（≒1440px で 52px） */
.header__nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.61vw;
}

.header__navList {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.61vw;
}

.header__navLink {
  font-size: var(--fs-body);
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.header__action {
  flex: 0 0 auto;
}

.header__shop {
  display: inline-block;
  font-size: var(--fs-body);
  letter-spacing: 1.5px;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-ink);
}

/* header : dropdown submenu（商品・修理受付） */
.header__navItem--hasSub {
  position: relative;
}

.header__navTrigger {
  padding: 0;
  cursor: pointer;
}

.header__subMenu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-ink);
  border-radius: 4px;
  box-shadow: 0 12px 30px -16px rgba(35, 31, 32, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-out-expo),
    transform var(--duration-normal) var(--ease-out-expo),
    visibility var(--duration-normal);
  z-index: 95;
}

/* ホバー移動時の隙間を埋めるブリッジ */
.header__subMenu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.header__navItem--hasSub:hover .header__subMenu,
.header__navItem--hasSub:focus-within .header__subMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__subLink {
  font-size: var(--fs-body);
  letter-spacing: 1.5px;
  white-space: nowrap;
}

/* ドロワー下部の SNS・フッターリンク（SP/タブレットのメニュー内のみ表示） */
.header__drawerFoot {
  display: none;
}

/* ドロワー限定の項目（ホーム等）は PC では隠す */
.header__navItem--drawerOnly {
  display: none;
}

/* PC ではラッパを透過させ、従来どおり nav 直下の並びを保つ */
.header__navBody {
  display: contents;
}

/* header : drawer toggle (SP only) — 本サイト .c-menuBtn__icon 準拠 */
.header__toggle {
  position: relative;
  z-index: 120;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: min(8vw, 45px);
  aspect-ratio: 60 / 33;
  padding: 0;
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-ink);
  transition: transform var(--duration-normal) var(--ease-out-expo),
    opacity var(--duration-normal) var(--ease-out-expo);
}

.l-header.is-open .header__toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.l-header.is-open .header__toggle span:nth-child(2) {
  opacity: 0;
}

.l-header.is-open .header__toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =========================================================
   Component : pageHead (hero)
   ========================================================= */
.l-pageHead {
  background-color: var(--color-white);
}

/* brandページのヒーローはベージュ、repairページは白（ページ別に分岐） */
.page-brand .l-pageHead {
  background-color: var(--color-repair-bg);
}

.page-repair .l-pageHead {
  background-color: var(--color-white);
}

/* hero も watchRepair/brand と同様、l-inner の padding 分を上乗せして
   内容領域が 960px になるようにする（デフォルトの l-inner は
   max-width:960 + padding で内容が 760px 前後に縮むため） */
.l-pageHead .l-inner {
  max-width: calc(960px + 2 * var(--gutter));
}

.pageHead {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding-block: 72px 48px;
}

.pageHead__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pageHead__ja {
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 1px;
}

.pageHead__en {
  font-size: var(--fs-caption);
  line-height: 1.75;
  letter-spacing: 1px;
}

.pageHead__line {
  width: 36px;
  height: 1px;
  background-color: var(--color-ink);
}

.pageHead__lead {
  font-size: var(--fs-body);
  line-height: 1.8;
}

/* =========================================================
   Component : sectionHead
   ========================================================= */
/* Figma 7:9 / 149:30: Title Row（余白なし）＋ 全幅の罫線を独立要素に分離。見出しは max-width 960px */
.sectionHead {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 960px;
}

.sectionHead__titleRow {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.sectionHead__line {
  width: 100%;
  height: 1px;
  background-color: var(--color-ink);
}

.sectionHead__en {
  font-size: var(--fs-heading);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 3px;
  white-space: nowrap;
}

.sectionHead__ja {
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* =========================================================
   Section : Watch Repair
   ========================================================= */
.watchRepair {
  padding-block: var(--space-section-lg);
  background-color: var(--color-repair-bg);
}

/* Figma 7:8: 見出し・リードは全幅（960px相当）、行・注記だけ 850px。
   l-inner の padding 分を上乗せして内容領域が 960px になるように */
.watchRepair__inner {
  display: flex;
  flex-direction: column;
  gap: 46px;
  max-width: calc(960px + 2 * var(--gutter));
}

.watchRepair__lead {
  font-size: var(--fs-body);
  line-height: 1.8;
}

/* Figma 7:13: 行は 850px（368 + 40 + 442）・左寄せ。見出し/リードは全幅 */
.watchRepair__row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
  max-width: 850px;
}

.watchRepair__videoCol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 368px;
  flex: 0 1 auto;
  min-width: 0;
}

.watchRepair__videoLabel {
  font-size: var(--fs-body);
}

.watchRepair__rightCol {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 442px;
  flex: 0 1 auto;
  min-width: 0;
}

.watchRepair__notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 850px;
}

.watchRepair__note {
  font-size: var(--fs-caption);
  line-height: 1.75;
}

/* video placeholder */
.videoBox {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 368 / 654;
  width: 100%;
  border-radius: 4px;
  background-color: var(--color-placeholder);
  overflow: hidden;
}

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

.videoBox__caption {
  font-size: var(--fs-caption);
  line-height: 1.75;
  text-align: center;
}

/* pricing block */
.pricing {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing__label {
  font-size: var(--fs-body);
}

.pricing__table {
  border-top: 1.5px solid var(--color-ink);
  border-bottom: 1.5px solid var(--color-ink);
}

.pricing__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 23px;
  border-bottom: 1px solid var(--color-ink);
}

.pricing__row:last-child {
  border-bottom: none;
}

.pricing__name {
  flex: 1 1 0;
  font-size: var(--fs-body);
}

.pricing__price {
  flex: 0 0 auto;
  font-size: var(--fs-subhead);
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

/* badge : Figma 7:35/7:36（外枠1.5px ink + 内側3px白枠 + ink塗り・高さ64px） */
.badge {
  display: flex;
  padding: 3px;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-ink);
}

.badge__inner {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 9px 20px;
  color: var(--color-white);
  background-color: var(--color-ink);
}

.badge__text {
  font-size: var(--fs-body);
  white-space: nowrap;
}

/* maintenance menu */
.maintenance {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--color-ink);
}

.maintenance__label {
  font-size: var(--fs-body);
}

.maintenance__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.maintenance__item {
  font-size: var(--fs-body);
  line-height: 1.8;
}

.maintenance__note {
  font-size: var(--fs-caption);
  line-height: 1.75;
}

/* =========================================================
   Section : Brand List
   ========================================================= */
.brandList {
  padding-block: var(--space-section-lg);
  background-color: var(--color-white);
}

/* Figma 149:29 Brand Inner: 内容領域は 960px（5列 176×5 + gap20×4 = 960）。
   l-inner の padding 分を上乗せして内容領域が 960px になるように */
.brandList__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: calc(960px + 2 * var(--gutter));
}

/* category subheading（Figma 195:309）：ベージュ地＋左3pxのink罫線、ゴシック15px */
.brandCat__head {
  width: 100%;
  padding: 8px 18px;
  background-color: var(--color-repair-bg);
  border-left: 3px solid var(--color-ink);
  font-family: var(--font-gothic);
  font-size: var(--fs-body);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-ink);
}

.brandList__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 20px;
}

.brandList__grid > li {
  display: flex;
}

.brandCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: inherit;
  text-decoration: none;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.brandCard:hover {
  transform: translateY(-4px);
}

.brandCard:hover .brandCard__photo {
  border-color: rgba(35, 31, 32, 0.5);
  box-shadow: 0 6px 18px -14px rgba(35, 31, 32, 0.26);
}

.brandCard:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 3px;
}

.brandCard__photo {
  aspect-ratio: 176 / 121.6;
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid rgba(35, 31, 32, 0.24);
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--ease-out-expo),
    box-shadow var(--duration-normal) var(--ease-out-expo);
}

.brandCard__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brandCard__body {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.brandCard__name {
  font-size: var(--fs-caption);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-align: center;
}

/* =========================================================
   Section : Contact
   ========================================================= */
.contact {
  padding-block: 58px;
  background-color: var(--color-ink);
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact__text {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--color-white);
  text-align: center;
}

.contact__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 32px 35px;
  border: 1px solid var(--color-white);
  border-radius: 2px;
}

.contact__tel:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.08);
}

.contact__telIcon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  background-color: var(--color-white);
  -webkit-mask: url("../img/common/telephone.svg") no-repeat center / contain;
  mask: url("../img/common/telephone.svg") no-repeat center / contain;
}

.contact__telNum {
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 1px;
  color: var(--color-white);
  white-space: nowrap;
}

/* =========================================================
   Component : footer （リンク元サイトの下段に準拠）
   ========================================================= */
.l-footer {
  border-top: 1px solid var(--color-ink);
  background-color: var(--color-white);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 52px;
  row-gap: 39px;
  padding: 86px 0;
}

.footer__logo {
  flex: 0 0 auto;
  max-width: 200px;
}

.footer__logo img {
  width: auto;
  max-height: 60px;
  object-fit: contain;
}

.footer__sns {
  display: flex;
  align-items: center;
  gap: 21px;
}

.footer__snsLink {
  display: block;
  width: 24px;
  height: 24px;
}

.footer__snsLink img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__meta {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 30px;
  row-gap: 12px;
}

.footer__links {
  display: flex;
  align-items: center;
  column-gap: 30px;
  font-size: var(--fs-caption);
  line-height: 1.4;
}

.footer__copy {
  font-size: var(--fs-caption);
  line-height: 1.4;
}

/* =========================================================
   Animation : scroll reveal (JS: IntersectionObserver)
   ========================================================= */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out-expo),
    transform 700ms var(--ease-out-expo);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   Tablet : 801px ~ 1024px（≤800 は下部の SP テキストリストに切替）
   ========================================================= */
@media (min-width: 801px) and (max-width: 1024px) {
  .brandList__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================================================
   Header nav font : 本サイト .p-menu__item 準拠
   ≥1440px = 15px（base の var(--fs-body)）/ 801〜1439px = 1.04vw
   ※ドロワー(≤800px)のフォントは後段のドロワーブロックで上書きされる
   ========================================================= */
@media (max-width: 1439px) {
  .header__navLink,
  .header__shop {
    font-size: 1.04vw;
  }
}

/* =========================================================
   Header : ~800px（本サイト準拠：≤800 はハンバーガー＝ドロワー、≥801 は横並び）
   ========================================================= */
@media (max-width: 800px) {
  /* 本サイト .p-menu 準拠：左→右のマスク展開＋フェードで開閉 */
  /* 全画面オーバーレイ（本サイト .p-menu 準拠）。左→右のマスク展開＋フェード */
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background-color: var(--color-white);
    padding: var(--header-height) 0 0;
    opacity: 0;
    visibility: hidden;
    -webkit-mask: linear-gradient(90deg, #000 0, #000 100%) no-repeat left
      center / 0 100%;
    mask: linear-gradient(90deg, #000 0, #000 100%) no-repeat left center / 0
      100%;
    transition: opacity 0.5s cubic-bezier(0.22, 0.025, 0.2, 1),
      -webkit-mask-size 0.5s cubic-bezier(0.22, 0.025, 0.2, 1),
      mask-size 0.5s cubic-bezier(0.22, 0.025, 0.2, 1),
      visibility 0s linear 0.5s;
  }

  /* 開：右から現れ、閉：左へ消える（本サイト .is-menu-active .p-menu 準拠） */
  .l-header.is-open .header__nav {
    opacity: 1;
    visibility: visible;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: right center;
    mask-position: right center;
    transition-delay: 0s;
  }

  /* コンテンツ領域＝本サイト .p-menu__inner の padding。
     ヘッダー分の余白はオーバーレイ側の padding-top で確保している。
     下は項目数が少ないため本サイトより控えめに */
  .header__navBody {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    padding: min(9.46vw, 53.25px) min(8vw, 45px) min(12vw, 60px);
  }

  .header__navList {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 46px;
  }

  /* ドロワー限定項目（ホーム）を表示 */
  .header__navItem--drawerOnly {
    display: block;
  }

  /* 本サイト踏襲：ドロワーのメニュー項目は大きめの游明朝（min(6vw, 33.75px)） */
  .header__navLink,
  .header__shop {
    font-size: min(6vw, 33.75px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  /* ショップリンクはドロワー内の最後（PC と同じ順序） */
  .header__action {
    margin-left: 0;
  }

  .header__toggle {
    display: flex;
    order: 3;
    margin-left: auto;
  }

  /* サブメニューはドロワー内で常時展開（入れ子リスト） */
  .header__navItem--hasSub {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .header__subMenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    padding: 0 0 0 24px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    gap: 20px;
  }

  .header__subLink {
    font-size: min(4.8vw, 24px);
    letter-spacing: 0.04em;
  }

  .header__subMenu::before {
    display: none;
  }

  /* 本サイト踏襲：ドロワー下部の SNS ＋ フッターリンク
     （グループ間隔は navBody の row-gap が担うため margin-top は持たせない） */
  .header__drawerFoot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: min(8vw, 40px);
    width: 100%;
  }

  .header__drawerSns {
    display: flex;
    justify-content: center;
    gap: min(5.33vw, 30px);
  }

  .header__drawerSnsLink img {
    width: 30px;
    height: 30px;
  }

  /* 本サイト .p-menu__links 準拠 */
  .header__drawerLinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: min(4.8vw, 27px);
    font-size: min(2.8vw, 15.75px);
    line-height: 1.4;
  }
}

/* =========================================================
   SP : ~800px（本サイト準拠）
   ========================================================= */
@media (max-width: 800px) {
  :root {
    /* 本サイト .p-menu__top 準拠 */
    --header-height: min(16vw, 90px);
    --gutter: 24px;
  }

  /* header : モバイルは全幅＋padding（本サイト .l-header__inner の base 相当） */
  .header__inner {
    max-width: none;
    padding-inline: min(6vw, 33.75px);
    column-gap: min(4vw, 22.5px);
  }

  /* 本サイト踏襲：ロゴを大きめに（画像は 400×82 のため 200px まで鮮明） */
  .header__logo {
    width: min(45.33vw, 200px);
  }

  /* pageHead */
  .pageHead {
    gap: 16px;
    padding-block: 40px 32px;
  }

  /* section head : stack en/ja, allow en to wrap */
  .sectionHead__titleRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .sectionHead__en {
    white-space: normal;
    line-height: 1.5;
  }

  .sectionHead__ja {
    font-size: var(--fs-caption);
  }

  /* watch repair */
  .watchRepair,
  .brandList {
    padding-block: 56px;
  }

  .watchRepair__inner {
    gap: 28px;
  }

  .watchRepair__lead {
    font-size: 16px;
  }

  .watchRepair__row {
    flex-direction: column;
    gap: 28px;
  }

  .watchRepair__videoCol,
  .watchRepair__rightCol {
    width: 100%;
  }

  .watchRepair__videoCol {
    gap: 12px;
  }

  .watchRepair__videoLabel {
    font-size: var(--fs-caption);
  }

  .watchRepair__rightCol {
    gap: 28px;
  }

  .pricing {
    gap: 12px;
  }

  .pricing__label {
    font-size: var(--fs-caption);
  }

  .pricing__row {
    padding: 14px 0;
  }

  .pricing__name {
    font-size: var(--fs-caption);
  }

  .badge__text {
    font-size: 16px;
  }

  .maintenance {
    gap: 12px;
    margin-top: 24px;
  }

  .maintenance__label {
    font-size: 16px;
  }

  .maintenance__item {
    font-size: 14px;
  }

  /* brand list : SP はテキストのみの一覧（名前 + chevron + 区切り線）。
     小見出し↔リストは密着させ（inner gap を 0 に）、カテゴリ間隔は
     小見出しの margin-top で確保する。先頭項目の上罫線は出さない */
  .brandList__inner {
    gap: 0;
  }

  .brandCat__head {
    margin-top: 48px;
  }

  .brandList__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .brandList__grid > li {
    border-bottom: 1px solid var(--color-placeholder);
  }

  .brandCard {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 17px 2px;
    transform: none;
  }

  /* SP ではロゴ画像を隠しテキストのみ */
  .brandCard__photo {
    display: none;
  }

  .brandCard__body {
    padding-top: 0;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brandCard__name {
    text-align: left;
    font-size: var(--fs-body);
    letter-spacing: 0.04em;
  }

  /* 右端の chevron（現デザインの細い線に合わせた矢印） */
  .brandCard::after {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-top: 1px solid var(--color-ink);
    border-right: 1px solid var(--color-ink);
    transform: rotate(45deg);
    opacity: 0.45;
  }

  /* タップ時のフィードバック（ホバーの浮きは無効） */
  .brandCard:hover {
    transform: none;
  }

  .brandCard:active {
    background-color: var(--color-repair-bg);
  }

  /* contact */
  .contact__tel {
    padding: 16px 42px;
    gap: 8px;
  }

  .contact__telIcon {
    width: 28px;
    height: 28px;
  }

  /* footer : 本サイト .l-footer__bottom-inner 準拠（SP 全幅・padding のみ・row-gap 12vw） */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    row-gap: 12vw;
    max-width: none;
    padding: 15.46vw 6vw 8vw;
    text-align: center;
  }

  /* SNS(1) → ロゴ(2) → メタ(3) の順（本サイト準拠） */
  .footer__sns {
    order: -1;
  }

  .footer__logo {
    max-width: min(45.33vw, 255px);
  }

  /* .l-footer__others 相当：row-gap は持たせない（間隔はコピーライトの margin-top で作る） */
  .footer__meta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 0;
  }

  .footer__links {
    flex-direction: column;
    align-items: center;
    row-gap: 4.8vw;
    font-size: min(2.8vw, 15.75px);
    line-height: 1.4;
  }

  /* コピーライトは SP では最下部・上に 8vw（本サイト .l-footer__copyright 準拠） */
  .footer__copy {
    order: 1;
    margin-top: 8vw;
    font-size: min(2.8vw, 15.75px);
    line-height: 1.4;
    word-break: break-all;
  }
}

/* =========================================================
   Accessibility : 動きを減らす設定への配慮
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* スクロール表示アニメーションは初期状態で表示済みにする */
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  /* ホバーで動く演出は無効化 */
  .brandCard:hover {
    transform: none;
  }
}
