@charset "UTF-8";
/* =========================================================================
   DJI認定ストア福岡博多 — 共通スタイルシート
   設計仕様: /DESIGN.md
   トークンは dji.com/jp の実測値に基づく（2026-08-30）
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design Tokens
   ------------------------------------------------------------------------- */
:root {
  color-scheme: light;

  /* ── Base ─────────────────────────────── */
  --c-white:        #ffffff;
  --c-bg:           #ffffff;
  --c-bg-subtle:    #f7f9fa;
  --c-bg-muted:     #ededed;
  --c-bg-dark:      #272727;

  /* ── Text ─────────────────────────────── */
  --c-text:         rgba(0, 0, 0, .85);
  --c-text-strong:  #000000;
  --c-text-body:    #3b3e40;
  --c-text-mute:    #767b7f;
  --c-text-faint:   #9fa3a6;
  --c-text-invert:  #ffffff;

  /* ── Accent（唯一のアクセント） ─────────── */
  --c-accent:       #0070d5;
  --c-accent-hover: #0060b8;
  --c-accent-soft:  rgba(0, 112, 213, .08);

  /* ── Line / Surface ───────────────────── */
  --c-line:         rgba(0, 0, 0, .10);
  --c-line-strong:  rgba(0, 0, 0, .18);
  --c-line-invert:  rgba(255, 255, 255, .16);
  --c-scrim:        rgba(0, 0, 0, .45);
  --c-dark-btn:     #3c3e40;

  /* ── Semantic ─────────────────────────── */
  --c-focus:        #0070d5;
  --c-error:        #c8332c;
  --c-success:      #1c7a4a;

  /* ── Typography ───────────────────────── */
  --font-sans:
    "Open Sans",
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
    "Hiragino Sans", メイリオ, Meiryo,
    system-ui, -apple-system, sans-serif;

  --fs-display: clamp(2.25rem, 6vw, 4rem);
  --fs-h1:      clamp(1.875rem, 4vw, 2.5rem);
  --fs-h2:      clamp(1.5rem, 3vw, 2rem);
  --fs-h3:      1.125rem;
  --fs-lead:    clamp(1rem, 1.6vw, 1.125rem);
  --fs-body:    1rem;
  --fs-sm:      .875rem;
  --fs-xs:      .8125rem;
  --fs-eyebrow: .75rem;

  /* ── Spacing ──────────────────────────── */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px;  --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 96px;  --sp-10: 128px;

  /* ── Layout ───────────────────────────── */
  --container:        1250px;
  --container-narrow: 880px;
  --gutter:           20px;
  --header-h:         56px;

  --radius-sm:   2px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, .04), 0 4px 16px rgba(0, 0, 0, .06);
  --shadow-2: 0 4px 12px rgba(0, 0, 0, .08), 0 16px 40px rgba(0, 0, 0, .10);

  --ease:      cubic-bezier(.22, .61, .36, 1);
  --dur-fast:  .18s;
  --dur:       .32s;
  --dur-slow:  .6s;

  --section-y: var(--sp-7);
}

@media (min-width: 600px) {
  :root { --gutter: 32px; --header-h: 64px; --section-y: var(--sp-8); }
}
@media (min-width: 900px) {
  :root { --gutter: 40px; --section-y: var(--sp-9); }
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.9;
  color: var(--c-text-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--c-text);
  font-weight: 600;
  font-feature-settings: "palt" 1;
}

p, ul, ol, dl, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--c-accent); }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

table { border-collapse: collapse; width: 100%; }

address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--c-accent); color: #fff; }

/* 数値は詰めて表示 */
.num, time, .tel-num {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--subtle { background: var(--c-bg-subtle); }
.section--muted  { background: var(--c-bg-muted); }
.section--tight  { padding-block: calc(var(--section-y) * .6); }

.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 1000;
  padding: 10px 18px;
  background: var(--c-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 8px; color: #fff; }

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

.nw { display: inline-block; }

/* 見出し内に置く小さなアイコン。文字サイズに追従し、色は文字色を継承する */
.icon-inline {
  display: inline-block;
  width: .88em;
  height: .88em;
  margin-left: .3em;
  vertical-align: -.08em;
  flex: none;
}

/* -------------------------------------------------------------------------
   4. Typography blocks
   ------------------------------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
}
.eyebrow--invert { color: rgba(255, 255, 255, .8); }

.display {
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.15; letter-spacing: -.03em; }
.h2 { font-size: var(--fs-h2); font-weight: 600; line-height: 1.25; letter-spacing: -.03em; }
.h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.45; letter-spacing: -.01em; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.85;
  color: var(--c-text-body);
}
.text-sm   { font-size: var(--fs-sm); }
.text-xs   { font-size: var(--fs-xs); }
.text-mute { color: var(--c-text-mute); }

.prose > * + * { margin-top: var(--sp-4); }
.prose a { color: var(--c-accent); text-decoration: underline; text-underline-offset: .2em; }

/* セクション見出しブロック */
.section-head { max-width: 46rem; margin-bottom: var(--sp-6); }
.section-head .lead { margin-top: var(--sp-3); }
@media (min-width: 900px) { .section-head { margin-bottom: var(--sp-7); } }

.section-head--between {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  max-width: none;
}

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 44px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--primary { background: var(--c-accent); color: #fff; }
.btn--primary:hover { background: var(--c-accent-hover); color: #fff; }

.btn--dark {
  background: var(--c-dark-btn);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 400;
  font-size: 1rem;
  padding: 14px 32px;
}
.btn--dark:hover { background: #2b2d2f; color: #fff; }

.btn--ghost {
  background: transparent;
  border-color: var(--c-line-strong);
  color: var(--c-text);
}
.btn--ghost:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-accent-soft);
}

.btn--on-image {
  background: transparent;
  border-color: rgba(255, 255, 255, .75);
  color: #fff;
}
.btn--on-image:hover {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
  color: #fff;
}

.btn--block { width: 100%; }
.btn--lg { min-height: 52px; padding: 15px 36px; font-size: 1rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* テキストリンク（矢印付き） */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--c-accent);
}
.link-arrow::after {
  content: "";
  width: 14px; height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 5l7 7-7 7M4 12h15' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 5l7 7-7 7M4 12h15' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform var(--dur-fast) var(--ease);
}
.link-arrow:hover::after { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   6. Header / Navigation
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
/* 背景とすりガラス効果は、ヘッダー本体ではなく疑似要素に持たせる。
   本体に backdrop-filter / filter / transform を付けると、中にあるモバイルメニュー
   （position:fixed）の基準が画面ではなくヘッダーになり、スクロール後に
   メニューがヘッダーの高さまで潰れてしまう（DESIGN.md 規則11）。 */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--c-white);
  transition: background-color var(--dur) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); }
.site-header.is-scrolled::before {
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  color: var(--c-text-strong);
}
.brand:hover { color: var(--c-text-strong); }
/* 公式ロゴ（DJI認定ストア福岡博多）。原版は 600x108 = 5.56:1 */
.brand__logo {
  display: block;
  width: auto;
  height: 30px;
}
@media (min-width: 480px) { .brand__logo { height: 34px; } }
@media (min-width: 900px) { .brand__logo { height: 38px; } }

.nav { display: none; }

@media (min-width: 900px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
  }
  .nav__list {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
  }
  .nav__link {
    position: relative;
    display: block;
    padding: 6px 0;
    font-size: .9375rem;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--c-text);
    white-space: nowrap;
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
  }
  .nav__link:hover::after { transform: scaleX(1); }
  .nav__link[aria-current="page"] { color: var(--c-accent); }
  .nav__link[aria-current="page"]::after { transform: scaleX(1); }
  .nav__cta { padding: 10px 22px; min-height: 40px; font-size: .875rem; white-space: nowrap; }
}

/* ナビ項目が5つあるため、900〜1099px では間隔を詰めて1行に収める */
@media (min-width: 900px) and (max-width: 1099px) {
  .nav { gap: var(--sp-4); }
  .nav__list { gap: var(--sp-4); }
}

/* ハンバーガー */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-right: -10px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--c-text-strong);
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav-toggle__bars { position: relative; width: 22px; height: 14px; }
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: var(--sp-5) var(--gutter) var(--sp-8);
  background: var(--c-white);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  /* visibility は「開くときは即座に」「閉じるときはフェード後に」切り替える。
     こうしないと、開いた直後にメニュー内へフォーカスを移せない。 */
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    visibility 0s linear var(--dur);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    visibility 0s linear 0s;
}
.mobile-menu[hidden] { display: none; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

.mobile-menu__list { border-top: 1px solid var(--c-line); }
.mobile-menu__list li { border-bottom: 1px solid var(--c-line); }
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--c-text);
}
.mobile-menu__link[aria-current="page"] { color: var(--c-accent); }
.mobile-menu__foot { margin-top: var(--sp-6); display: grid; gap: var(--sp-3); }
.mobile-menu__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text-strong);
}

body.is-menu-open { overflow: hidden; }

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(460px, 78vh, 720px);
  padding-block: var(--sp-8);
  overflow: hidden;
  background: var(--c-bg-muted);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 画像上テキストの可読性 + ビネット（Cookbook: Backgrounds） */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* 明るい店内写真の上でも白文字が読めるよう、左側を厚めに落とす（AA: 4.5:1 以上） */
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .74) 0%, rgba(0, 0, 0, .70) 30%, rgba(0, 0, 0, .55) 50%, rgba(0, 0, 0, .1) 78%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .16) 45%, rgba(0, 0, 0, .48) 100%),
    radial-gradient(120% 80% at 50% 30%, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .3) 100%);
}
/* モバイルは文字がほぼ全幅に載るため、横方向ではなく全面を均一に落とす */
@media (max-width: 899px) {
  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .58) 45%, rgba(0, 0, 0, .70) 100%);
  }
}
.hero__inner { position: relative; max-width: 44rem; color: #fff; }
.hero__title {
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.035em;
  color: #fff;
}
.hero__lead {
  margin-top: var(--sp-4);
  font-size: var(--fs-lead);
  line-height: 1.85;
  color: #fff;
}
.hero__actions { margin-top: var(--sp-6); }

/* 下層ページのページヘッダー */
.page-hero {
  position: relative;
  padding-block: var(--sp-8) var(--sp-7);
  background: var(--c-bg-subtle);
  border-bottom: 1px solid var(--c-line);
}
.page-hero__inner { max-width: 48rem; }
.page-hero .lead { margin-top: var(--sp-4); }

/* イベントカード内の開催日一覧 */
.event-dates { display: grid; gap: 2px; font-size: var(--fs-sm); font-weight: 600; }

/* ページ見出し＋イメージ写真（イベント・資格・スクール・サービス）
   写真は3ページとも 3:2 にそろえ、角を丸める。スマホでは文章の下に置く。 */
.page-hero__media { margin: var(--sp-6) 0 0; }
.page-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
@media (min-width: 900px) {
  .page-hero--media .page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--sp-7);
    align-items: center;
  }
  .page-hero--media .page-hero__media { margin-top: 0; }
}

/* パンくず */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding-block: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--c-text-mute);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--c-line-strong);
}
.breadcrumb a:hover { color: var(--c-accent); }

/* -------------------------------------------------------------------------
   8. Grid / Cards
   ------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
}
@media (min-width: 900px) {
  .grid { gap: var(--sp-6); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* 既定のカード: 枠線なし・影なし（DJI流） */
.card { display: flex; flex-direction: column; }
.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--c-bg-muted);
}
.card__media img,
.card__media svg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.card__body { padding-top: var(--sp-4); }
.card__title { font-size: var(--fs-h3); font-weight: 600; line-height: 1.5; letter-spacing: -.01em; }
.card__text { margin-top: var(--sp-2); font-size: var(--fs-sm); line-height: 1.8; color: var(--c-text-mute); }
.card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--c-text-mute);
}

/* リンクカードのみ持ち上がる */
.card--link { transition: transform var(--dur) var(--ease); }
.card--link:hover { transform: translateY(-2px); color: inherit; }
.card--link:hover .card__media img,
.card--link:hover .card__media svg { transform: scale(1.04); }
.card--link:hover .card__title { color: var(--c-accent); }

/* 情報の重みで差をつける: 特集カード（2カラムぶち抜き） */
@media (min-width: 900px) {
  .card--feature { grid-column: span 2; }
  /* 16:10 で統一する。バナー画像は文字が入るため、カードごとに比率が違うと
     どこかで必ず見切れる。全カードを同じ比率にして、画像側も16:10で書き出す。 */
  .card--feature .card__title { font-size: 1.5rem; line-height: 1.4; }
}

/* 値カード（枠線のみ・画像なし） */
.value-card {
  padding: var(--sp-5) 0 0;
  border-top: 2px solid var(--c-text-strong);
}
.value-card__num {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
}
.value-card__title { font-size: 1.25rem; font-weight: 700; line-height: 1.5; letter-spacing: -.02em; }
/* カードが横に並ぶ幅では、見出しの高さを2行分で揃える。
   1行の見出しがあると、そのカードだけ本文の開始位置が上にずれるため。 */
@media (min-width: 600px) {
  .value-card__title { min-height: calc(1.5em * 2); }
}
.value-card__text { margin-top: var(--sp-3); font-size: var(--fs-sm); line-height: 1.9; color: var(--c-text-mute); }

/* バッジ */
.badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: var(--c-accent-soft);
  color: var(--c-accent);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
.badge--neutral { background: rgba(0, 0, 0, .06); color: var(--c-text-mute); }
.badge--free { background: rgba(28, 122, 74, .1); color: var(--c-success); }

/* -------------------------------------------------------------------------
   9. News list
   ------------------------------------------------------------------------- */
.news-list { border-top: 1px solid var(--c-line); }
.news-list li { border-bottom: 1px solid var(--c-line); }
.news-list__item {
  display: grid;
  gap: 4px var(--sp-4);
  padding: var(--sp-4) 0;
  align-items: start;
}
@media (min-width: 700px) {
  .news-list__item {
    grid-template-columns: 7.5rem 5.5rem 1fr;
    align-items: center;
    padding: var(--sp-5) 0;
  }
}
.news-list__date { font-size: var(--fs-sm); color: var(--c-text-mute); }
.news-list__title { font-size: var(--fs-body); font-weight: 500; line-height: 1.7; }
.news-list__meta { display: flex; gap: var(--sp-2); }

/* -------------------------------------------------------------------------
   10. Definition / Info tables（AI検索向けに機械可読）
   ------------------------------------------------------------------------- */
.info-table th,
.info-table td {
  padding: var(--sp-4) var(--sp-2);
  border-bottom: 1px solid var(--c-line);
  font-size: var(--fs-sm);
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}
.info-table th {
  width: 9rem;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
}
.info-table thead th {
  width: auto;
  white-space: normal;
  font-weight: 700;
  border-bottom-color: var(--c-line-strong);
}
@media (max-width: 599px) {
  /* 縦2列の表はモバイルで積む。ただし横スクロール表（比較表）はそのまま */
  .info-table th, .info-table td { display: block; width: auto; }
  .info-table th { border-bottom: 0; padding-bottom: 0; }
  .info-table td { padding-top: 4px; }
  .table-scroll .info-table th,
  .table-scroll .info-table td {
    display: table-cell;
    border-bottom: 1px solid var(--c-line);
    padding: var(--sp-4) var(--sp-2);
  }
}

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll > table { min-width: 34rem; }
.table-scroll .info-table th[scope="row"] { width: 10rem; white-space: normal; }

/* -------------------------------------------------------------------------
   11. Contact / Tel block
   ------------------------------------------------------------------------- */
.tel-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.tel-block__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--c-text-mute);
}
.tel-block__num {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--c-text-strong);
  font-variant-numeric: tabular-nums;
}
.tel-block__num:hover { color: var(--c-accent); }
.tel-block__note { font-size: var(--fs-sm); color: var(--c-text-mute); }

/* -------------------------------------------------------------------------
   12. Forms
   ------------------------------------------------------------------------- */
.form { display: grid; gap: var(--sp-5); }

.field { display: grid; gap: var(--sp-2); }
.field__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text);
}
.req {
  display: inline-flex;
  align-items: center;
  height: 19px;
  padding: 0 7px;
  border-radius: var(--radius-sm);
  background: var(--c-error);
  color: #fff;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.req--optional { background: rgba(0, 0, 0, .3); }

.field__hint { font-size: var(--fs-xs); color: var(--c-text-mute); line-height: 1.7; }

.input, .select, .textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  font-size: 1rem; /* iOS ズーム回避のため 16px 未満にしない */
  line-height: 1.6;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--c-text-faint); }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--c-accent);
  outline: 2px solid var(--c-focus);
  outline-offset: 1px;
}
.textarea { min-height: 11rem; resize: vertical; }

.select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%233b3e40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  cursor: pointer;
}

.field.has-error .input,
.field.has-error .select,
.field.has-error .textarea { border-color: var(--c-error); }

.field__error {
  display: none;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-error);
  line-height: 1.6;
}
.field.has-error .field__error { display: block; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  line-height: 1.7;
  cursor: pointer;
}
.checkbox input[type="checkbox"] {
  flex: none;
  width: 20px; height: 20px;
  margin-top: 3px;
  accent-color: var(--c-accent);
  cursor: pointer;
}

.counter {
  font-size: var(--fs-xs);
  color: var(--c-text-mute);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.counter.is-over { color: var(--c-error); font-weight: 600; }

/* honeypot（人には見えない） */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-status {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  background: var(--c-bg-subtle);
  font-size: var(--fs-sm);
  line-height: 1.8;
}
.form-status[hidden] { display: none; }
.form-status--error { border-color: rgba(200, 51, 44, .35); background: rgba(200, 51, 44, .05); }
.form-status--success { border-color: rgba(28, 122, 74, .35); background: rgba(28, 122, 74, .05); }

/* -------------------------------------------------------------------------
   13. FAQ (details/summary)
   ------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--c-line); }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__q {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -.01em;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--c-accent); }
.faq__q::after {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  margin-top: 5px;
  margin-left: auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform var(--dur) var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(135deg); }
.faq__a {
  padding: 0 0 var(--sp-5);
  font-size: var(--fs-sm);
  line-height: 1.95;
  color: var(--c-text-mute);
  max-width: 54rem;
}
.faq__a > * + * { margin-top: var(--sp-3); }

/* -------------------------------------------------------------------------
   14. Map placeholder（クリック・トゥ・ロード）
   ------------------------------------------------------------------------- */
/* 店舗写真。地図と同じ 16:10 で縦に並べ、左の基本情報テーブルと釣り合わせる。
   1200px幅の原版を約600pxで表示するため、解像度不足が目立たない。 */
.store-photo { margin: 0; }

.map {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-bg-muted);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__note { font-size: var(--fs-xs); color: var(--c-text-mute); max-width: 28rem; }

/* 施設ごとの地図ブロック */
.place { margin: 0; }
.place__label {
  display: block;
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--c-text-mute);
  line-height: 1.7;
}

/* -------------------------------------------------------------------------
   15. Instagram grid
   ------------------------------------------------------------------------- */
/* 8枚を 2列(SP) / 4列(TB以上) の2段で並べる */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 600px) { .ig-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .ig-grid { gap: var(--sp-4); } }

.ig-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--c-bg-muted);
}
.ig-item img, .ig-item svg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.ig-item:hover img, .ig-item:hover svg { transform: scale(1.06); }
.ig-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--dur) var(--ease);
}
.ig-item:hover::after { background: rgba(0, 0, 0, .12); }

/* リール（動画）であることを示すバッジ */
.ig-item__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .55));
  pointer-events: none;
}
.ig-item__badge svg { width: 100%; height: 100%; }

/* -------------------------------------------------------------------------
   16. CTA band
   ------------------------------------------------------------------------- */
.cta-band {
  background: var(--c-bg-dark);
  color: #fff;
}
.cta-band .h2, .cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255, 255, 255, .75); }
.cta-band__grid {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 900px) {
  .cta-band__grid { grid-template-columns: 1.2fr 1fr; gap: var(--sp-8); }
}
.cta-band .tel-block__num { color: #fff; }
.cta-band .tel-block__num:hover { color: #7fc0ff; }
.cta-band .tel-block__label,
.cta-band .tel-block__note { color: rgba(255, 255, 255, .6); }

/* -------------------------------------------------------------------------
   17. Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255, 255, 255, .72);
  padding-block: var(--sp-8) var(--sp-5);
  font-size: var(--fs-sm);
}
.site-footer a:hover { color: #fff; }

.footer__top {
  display: grid;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--c-line-invert);
}
@media (min-width: 700px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-6); }
}
@media (min-width: 1000px) {
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

.footer__brand { margin: 0; }
.footer__logo {
  display: block;
  width: auto;
  height: 34px;
}
@media (min-width: 700px) { .footer__logo { height: 38px; } }
.footer__addr {
  margin-top: var(--sp-3);
  font-style: normal;
  line-height: 1.9;
  font-size: var(--fs-xs);
}
.footer__addr a { color: #fff; font-weight: 600; }

.footer__heading {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: var(--sp-3);
}
.footer__links { display: grid; gap: var(--sp-2); font-size: var(--fs-xs); }

.footer__social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--c-line-invert);
  border-radius: var(--radius-pill);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.footer__social a:hover { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .08); }
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .5);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

/* -------------------------------------------------------------------------
   18. Motion — 段階リビール（Cookbook: 1回の演出されたページロード）
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* JSが無効な環境では常に表示 */
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .card--link:hover { transform: none; }
}

/* -------------------------------------------------------------------------
   19. Utilities
   ------------------------------------------------------------------------- */
/* インラインstyleを使わない（厳格CSPのため）。必要な指定は全てクラスで行う。 */
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mt-8 { margin-top: var(--sp-8); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-7 { margin-bottom: var(--sp-7); }
.flow > * + * { margin-top: var(--sp-4); }
.flow-lg > * + * { margin-top: var(--sp-6); }

.text-center  { text-align: center; }
.text-strong  { color: var(--c-text); }
.fw-600       { font-weight: 600; }
.fw-700       { font-weight: 700; }
.items-center { align-items: center; }
.measure      { max-width: 50rem; }
.measure-sm   { max-width: 38rem; }
.ratio-16-10  { aspect-ratio: 16 / 10; }
.ratio-4-3    { aspect-ratio: 4 / 3; }
.full-width   { width: 100%; }

/* リビールの段階遅延（--i をクラスで与える） */
.d-1 { --i: 1; } .d-2 { --i: 2; } .d-3 { --i: 3; }
.d-4 { --i: 4; } .d-5 { --i: 5; } .d-6 { --i: 6; }

.placeholder-img {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, #e6e9eb 0%, #f2f4f5 50%, #e6e9eb 100%);
}

@media print {
  .site-header, .site-footer, .nav-toggle, .mobile-menu, .cta-band { display: none !important; }
  body { color: #000; }
}

/* -------------------------------------------------------------------------
   20. 運営会社ロゴ
   ------------------------------------------------------------------------- */
.company-logo { margin: 0 0 var(--sp-6); }
.company-logo img {
  display: block;
  width: auto;
  height: 34px;
}
@media (min-width: 700px) { .company-logo img { height: 44px; } }

/* -------------------------------------------------------------------------
   21. 取扱ブランドのロゴ
   ------------------------------------------------------------------------- */
/* 各ロゴは共通の 4:1 枠（480×120）に収めて書き出してあるため、
   同じ大きさの箱に置くだけで、横長のロゴも縦長のロゴも釣り合う。 */
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 44px;
  margin-bottom: var(--sp-5);
}
/* ブランド名の見出しは置かず、ロゴが名称を兼ねる。
   カード内で直後にくる説明文の上マージンを打ち消す。 */
.brand-logo + .value-card__text { margin-top: 0; }
.brand-logo img {
  width: auto;
  max-width: 160px;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
