/* ============================================================
   工房アルテ ホームページ
   配色設計: Lovable Design System を参考
   フォント: 日本語向けに Noto Serif JP / Noto Sans JP
   ============================================================ */

/* ---------- リセット ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

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

/* ---------- デザイントークン ---------- */
:root {
  /* 薄いオレンジ系 × チャコール + opacity 派生グレー */
  --cream: #fff4e6;         /* 薄いオレンジ(メイン背景) */
  --cream-alt: #fceadb;     /* 交互セクション用のピーチ */
  --off-white: #fffaf3;     /* 最も薄い暖色ホワイト */
  --charcoal: #1c1c1c;
  --charcoal-82: rgba(28, 28, 28, 0.82);
  --muted: #6a5a48;         /* 暖色系のミュートグレー */
  --charcoal-40: rgba(28, 28, 28, 0.4);
  --charcoal-08: rgba(28, 28, 28, 0.08);
  --charcoal-04: rgba(28, 28, 28, 0.04);
  --border: #f1e0c8;        /* 温色ボーダー */

  /* 工房アルテのシグネチャゴールド(控えめに使用) */
  --gold: #d49a5c;          /* ややオレンジ寄りに調整 */
  --gold-dark: #a87639;

  /* セマンティック */
  --bg: var(--cream);
  --bg-alt: var(--cream-alt);
  --text: var(--charcoal);
  --text-sub: var(--muted);

  /* タイポグラフィ */
  --font-serif: "Noto Serif JP", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;

  /* 余白とサイズ */
  --container: 1100px;
  --gutter: 24px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  /* シャドウ */
  --shadow-inset:
    rgba(255, 255, 255, 0.2) 0 0.5px 0 0 inset,
    rgba(0, 0, 0, 0.2) 0 0 0 0.5px inset,
    rgba(0, 0, 0, 0.05) 0 1px 2px 0;
  --shadow-focus: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

/* ---------- ベース ---------- */
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.pc-only {
  display: inline;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* ---------- 上部注意バー ---------- */
.topbar {
  background: var(--charcoal);
  color: var(--off-white);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 8px 0;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .topbar {
    font-size: 11.5px;
    padding: 7px 0;
  }
}

/* ---------- 狭いコンテナ ---------- */
.container.narrow {
  max-width: 760px;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 244, 230, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name-main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  letter-spacing: 0.04em;
}

.brand-name-sub {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .site-header .brand-name {
    display: none;
  }
}

/* ---------- ナビゲーション ---------- */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 2px;
  position: relative;
  transition: color 0.2s;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s;
}

.primary-nav a:hover:not(.nav-cta)::after {
  transform: scaleX(1);
}

.primary-nav .nav-cta {
  padding: 10px 18px;
  background: var(--charcoal);
  color: var(--off-white);
  border-radius: var(--radius-sm);
  font-weight: 500;
  box-shadow: var(--shadow-inset);
  transition: opacity 0.2s, box-shadow 0.2s;
}

.primary-nav .nav-cta:hover {
  opacity: 0.85;
}

.primary-nav .nav-cta:active {
  opacity: 0.7;
}

/* ハンバーガー */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: var(--charcoal-04);
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, top 0.3s, opacity 0.2s;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    pointer-events: none;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    align-items: stretch;
  }

  .primary-nav a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }

  .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
  }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--off-white);
  box-shadow: var(--shadow-inset);
}
.btn-primary:hover {
  opacity: 0.85;
}
.btn-primary:active {
  opacity: 0.7;
}
.btn-primary:focus-visible {
  box-shadow: var(--shadow-inset), var(--shadow-focus);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--charcoal-40);
}
.btn-ghost:hover {
  background: var(--charcoal-04);
}
.btn-ghost:active {
  opacity: 0.8;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  padding: 96px 0 112px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  min-width: 0;
}

.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 4.8vw, 50px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  color: var(--text);
}

.hero-title .accent {
  color: var(--gold-dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

.hero-lead {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 40px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-figure {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-alt);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  isolation: isolate;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ヒーロー画像の上に、温かみを足す軽いグラデーション */
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 245, 230, 0.0) 0%,
    rgba(31, 26, 18, 0.06) 70%,
    rgba(31, 26, 18, 0.16) 100%
  );
  pointer-events: none;
}

@media (max-width: 880px) {
  .hero {
    padding: 64px 0 80px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-figure {
    aspect-ratio: 5 / 4;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-lead {
    font-size: 14.5px;
  }
}

/* ---------- セクション共通 ---------- */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-eyebrow {
  font-family: var(--font-serif);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.section-eyebrow.light {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
  line-height: 1.4;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.section-lead {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 48px;
  max-width: 720px;
  line-height: 2;
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .section-title {
    margin-bottom: 32px;
  }
  .section-lead {
    margin-bottom: 32px;
  }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-body p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 24px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong {
  font-weight: 700;
  color: var(--gold-dark);
}

.about-quote {
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  overflow: hidden;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-alt);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  padding: 26px 30px 28px;
}

.section-alt .about-quote {
  background: var(--off-white);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-body p { font-size: 14.5px; }
  .about-quote { padding: 28px 22px; }
  .about-quote p { font-size: 15.5px; }
}

/* ---------- 人工ボディとは ---------- */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.what-body p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 20px;
}
.what-body p:last-child { margin-bottom: 0; }

.what-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.what-points li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 26px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.section-alt .what-points li {
  background: var(--off-white);
}

.what-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.what-points h3 {
  font-family: var(--font-serif);
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.what-points p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-sub);
}

@media (max-width: 880px) {
  .what-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.section-alt .service-card {
  background: var(--off-white);
}

.service-card:hover {
  border-color: var(--charcoal-40);
  transform: translateY(-2px);
}

.service-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  overflow: hidden;
}

.service-photos img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  /* 元サムネ下部に「▶手部・義手」等のラベルが焼き込まれているため、
     画像を上寄せで拡大表示してラベルを画面外に追いやる */
  object-position: center top;
  transform: scale(1.28);
  transform-origin: center top;
  background: #f3ede2;
  transition: transform 0.4s ease;
  display: block;
}

.service-card:hover .service-photos img {
  transform: scale(1.34);
}

.service-body {
  padding: 0 22px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 10px;
  color: var(--text);
}

.service-card p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-sub);
  margin: 0 0 24px;
}

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- セクション内バナー画像 ---------- */
.section-banner {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-alt);
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .section-banner {
    aspect-ratio: 4 / 3;
    margin-bottom: 28px;
  }
}

/* ---------- 製作の流れ ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: process;
}

.process-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.section-alt .process-item {
  background: var(--off-white);
}

.process-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.process-body h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.process-body p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-sub);
}

@media (max-width: 960px) {
  .process-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-list { grid-template-columns: 1fr; }
}

/* ---------- お客様の声 ---------- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.voice-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  position: relative;
}

.section-alt .voice-card {
  background: var(--off-white);
}

.voice-card::before {
  content: "“";
  font-family: var(--font-serif);
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}

.voice-quote {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 16px;
  padding-top: 12px;
}

.voice-meta {
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: 0.05em;
}

.voice-note {
  font-size: 11.5px;
  color: var(--text-sub);
  font-style: italic;
}

@media (max-width: 880px) {
  .voice-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- 価格 ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.section-alt .price-card {
  background: var(--off-white);
}

.price-card-featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--off-white);
  position: relative;
}

.section-alt .price-card-featured {
  background: var(--charcoal);
}

.price-tag {
  display: inline-block;
  width: fit-content;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.price-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: inherit;
}

.price-card-featured .price-amount {
  color: var(--gold);
}

.price-desc {
  font-size: 13.5px;
  line-height: 1.9;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 18px;
  flex: 1;
}

.price-card:not(.price-card-featured) .price-desc {
  color: var(--text-sub);
  opacity: 1;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  opacity: 0.9;
}

.price-features li {
  position: relative;
  padding-left: 18px;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.price-note {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.9;
}

@media (max-width: 960px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* ---------- 価格テーブル ---------- */
.price-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.price-table {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 28px 12px;
  display: flex;
  flex-direction: column;
}

.section-alt .price-table {
  background: var(--off-white);
}

.price-table > header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.price-table h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.price-table-en {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.price-table dl {
  display: flex;
  flex-direction: column;
}

.price-table dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.price-table dl > div:last-child {
  border-bottom: none;
}

.price-table dt {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.7;
}

.price-table dd {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  white-space: nowrap;
}

.price-extra {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-sub);
  letter-spacing: 0.02em;
  white-space: normal;
  text-align: right;
  line-height: 1.6;
}

.price-row-sizes {
  grid-template-columns: 1fr !important;
}

.price-row-sizes dt {
  margin-bottom: 8px;
}

.price-sizes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  width: 100%;
}

.price-sizes li {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-alt .price-sizes li {
  background: var(--bg);
}

.price-sizes li span {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 500;
}

.price-sizes li strong {
  font-family: var(--font-serif);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
}

.price-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.8;
}

@media (max-width: 880px) {
  .price-tables { grid-template-columns: 1fr; gap: 16px; }
  .price-table { padding: 24px 22px 8px; }
  .price-table dt { font-size: 13px; }
  .price-table dd { font-size: 14px; }
}

@media (max-width: 480px) {
  .price-table dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .price-table dd {
    align-items: flex-start;
    text-align: left;
  }
  .price-extra { text-align: left; }
  .price-sizes { grid-template-columns: repeat(5, 1fr); }
  .price-sizes li strong { font-size: 11.5px; }
}

/* ---------- スタッフ ---------- */
.staff-figure {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  overflow: hidden;
  text-align: center;
}

.section-alt .staff-figure {
  background: var(--off-white);
}

.staff-figure img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

@media (max-width: 560px) {
  .staff-figure { padding: 16px; }
}

/* ---------- 店舗紹介 ---------- */
.store-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.store-body p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 20px;
}
.store-body p:last-child { margin-bottom: 0; }

.store-info {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}

.section-alt .store-info {
  background: var(--off-white);
}

.store-info h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.store-info dl > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.store-info dl > div:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.store-info dt {
  font-family: var(--font-serif);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gold-dark);
  padding-top: 2px;
}

.store-info dd {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text);
}

.store-info dd a {
  border-bottom: 1px solid var(--border);
}
.store-info dd a:hover {
  border-bottom-color: var(--gold-dark);
}

@media (max-width: 880px) {
  .store-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- メディア・受賞 ---------- */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.media-subtitle {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  letter-spacing: 0.05em;
}

.media-list {
  display: flex;
  flex-direction: column;
}

.media-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.media-list li:last-child {
  border-bottom: none;
}

.media-list time {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.media-list p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}

.media-list strong {
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 768px) {
  .media-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- 取材記録 特別実績ボックス ---------- */
.case-feature {
  margin-top: 48px;
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}

.section-alt .case-feature {
  background: var(--off-white);
}

.case-eyebrow {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.case-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.6;
}

.case-body {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.case-link {
  display: inline-block;
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}

.case-link:hover {
  color: var(--charcoal);
  border-bottom-color: var(--gold-dark);
}

@media (max-width: 560px) {
  .case-feature {
    padding: 28px 22px;
  }
}

/* ---------- 東京について ---------- */
.tokyo-body {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 28px;
}

.tokyo-body strong {
  color: var(--gold-dark);
  font-weight: 700;
}

/* ---------- News ---------- */
.news-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.news-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.news-item time {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.news-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.news-tag {
  display: inline-flex;
  width: fit-content;
  padding: 4px 12px;
  background: var(--charcoal);
  color: var(--off-white);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  border-radius: var(--radius-sm);
}

.news-badge {
  width: 40px;
  height: auto;
  position: absolute;
  top: -4px;
  right: 0;
}

.news-body p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}
.news-body strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 640px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .news-badge { width: 36px; top: 0; }
}

/* ---------- Info ---------- */
.info-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.info-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.info-list dt {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--gold-dark);
  font-size: 13.5px;
  letter-spacing: 0.05em;
}

.info-list dd {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}

.info-list dd a {
  border-bottom: 1px solid var(--border);
}
.info-list dd a:hover {
  border-bottom-color: var(--gold-dark);
}

@media (max-width: 640px) {
  .info-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 0;
  }
  .info-list dt { font-size: 12.5px; }
}

/* ---------- Contact CTA ---------- */
.contact {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.14), transparent 60%);
  pointer-events: none;
}

.contact > .container {
  position: relative;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.contact-lead {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
  line-height: 1.9;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-inset);
  transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 20px;
}

.contact-phone:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.contact-phone svg {
  width: 24px;
  height: 24px;
}

.contact-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .contact { padding: 64px 0; }
  .contact-phone { padding: 16px 26px; gap: 10px; }
}

/* ---------- フッター ---------- */
.site-footer {
  background: #14171f;
  color: rgba(255, 255, 255, 0.74);
  padding: 64px 0 32px;
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 56px;
  align-items: start;
}

.footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 14px;
}

.footer-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-address {
  font-size: 11.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-nav-title {
  font-family: var(--font-serif);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
  grid-column: 1 / -1;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.9;
  margin-top: -8px;
}

@media (max-width: 880px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------- お客様の声 グループ化レイアウト ---------- */
.voice-group {
  margin-bottom: 48px;
}

.voice-group:last-child {
  margin-bottom: 0;
}

.voice-group-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 12px;
  letter-spacing: 0.05em;
}

.voice-group-title span {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  letter-spacing: 0.08em;
}

@media (max-width: 880px) {
  .voice-group {
    margin-bottom: 36px;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.section-alt .faq-list details {
  background: var(--off-white);
}

.faq-list details[open] {
  border-color: var(--gold);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  transition: background 0.2s;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover {
  background: var(--charcoal-04);
}

.faq-q {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

.faq-toggle {
  position: relative;
  width: 16px;
  height: 16px;
  justify-self: end;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--text);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-toggle::before {
  width: 14px;
  height: 1.5px;
}

.faq-toggle::after {
  width: 1.5px;
  height: 14px;
}

.faq-list details[open] .faq-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-list details > p {
  padding: 0 26px 24px 72px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-sub);
}

.faq-list details > p strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 560px) {
  .faq-list summary {
    padding: 18px 20px;
    font-size: 14.5px;
    grid-template-columns: 24px 1fr 20px;
    gap: 10px;
  }
  .faq-q {
    font-size: 16px;
  }
  .faq-list details > p {
    padding: 0 20px 20px 54px;
    font-size: 13.5px;
  }
}

/* ---------- お問い合わせフォーム ---------- */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-alt .contact-form {
  background: var(--off-white);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row-half-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-half-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-family: var(--font-serif);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.required {
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  line-height: 1.6;
}

.section-alt .form-row input[type="text"],
.section-alt .form-row input[type="email"],
.section-alt .form-row input[type="tel"],
.section-alt .form-row select,
.section-alt .form-row textarea {
  background: var(--bg);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 154, 92, 0.18);
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%231c1c1c' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-row-check label {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 400;
  cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: normal;
}

.form-row-check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--gold-dark);
  cursor: pointer;
}

.form-actions {
  margin-top: 8px;
}

.form-status {
  font-size: 13px;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: -4px;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(184, 153, 104, 0.15);
  color: var(--gold-dark);
}

.form-status.error {
  background: rgba(178, 34, 52, 0.1);
  color: #b22234;
}

@media (max-width: 560px) {
  .contact-form { padding: 24px 20px; }
  .form-row-half-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- 地図 ---------- */
.store-map {
  margin-top: 48px;
}

.store-map-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
}

.map-frame {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream-alt);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-note {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .map-frame {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- スクロールフェードイン ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- スクロールスパイ(ナビ現在地ハイライト) ---------- */
.primary-nav a.is-current:not(.nav-cta) {
  color: var(--gold-dark);
}

.primary-nav a.is-current:not(.nav-cta)::after {
  transform: scaleX(1);
  background: var(--gold-dark);
}

/* ---------- フォーカス・アクセシビリティ ---------- */
:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}
