@charset "UTF-8";
/* ============================================================
   島時間そば 海風 — Vintage Analog / Retro Film リニューアル版
   自己完結型スタイルシート（リセット + デザイン）
   ============================================================ */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol, table, th, td, form, fieldset, legend {
  margin: 0; padding: 0;
}
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
table { border-collapse: collapse; width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; }

/* ---------- 2. Design tokens ---------- */
:root {
  /* Palette */
  --primary: #DC2626;
  --primary-fg: #FFFFFF;
  --secondary: #F87171;
  --secondary-fg: #0F172A;
  --accent: #A16207;
  --accent-fg: #FFFFFF;
  --bg: #FEF2F2;
  --fg: #450A0A;
  --card: #FFFFFF;
  --muted: #F0EDF1;
  --muted-fg: #64748B;
  --border: #FECACA;

  /* Vintage film variables */
  --ink: #450A0A;
  --rule: 3px;
  --rule-thick: 5px;
  --sepia-amount: 22%;
  --contrast: 1.08;
  --saturation: 0.82;
  --grain-opacity: 0.16;
  --light-leak-color: rgba(255, 200, 100, 0.16);
  --warm-tint: #F5E6C8;

  --shadow-hard: 7px 7px 0 var(--ink);
  --shadow-hard-sm: 4px 4px 0 var(--ink);

  /* 見出し用の落ち影は控えめに（文字が潰れないように） */
  --text-shadow-title: 2px 2px 0 var(--ink);

  /* Type */
  --font-display: "RocknRoll One", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-serif: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;

  --maxw: 1120px;
  --pad: 20px;
}

/* ---------- 3. Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--fg);
  background-color: var(--bg);
  /* 古い紙・くすんだ和紙の質感 */
  background-image:
    repeating-linear-gradient(0deg, rgba(69,10,10,.028) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 15% 10%, rgba(161,98,7,.10), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(220,38,38,.08), transparent 45%);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: .02em;
  overflow-x: hidden;
}

/* フィルムグレイン（全面オーバーレイ） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: var(--grain-opacity);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}
/* ライトリーク（画面端の光かぶり） */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background:
    linear-gradient(115deg, var(--light-leak-color) 0%, transparent 26%),
    linear-gradient(300deg, rgba(220,38,38,.13) 0%, transparent 30%);
  mix-blend-mode: screen;
}

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

/* フォーカスリング（消さない） */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- 4. 共通パーツ ---------- */

/* 斜めストライプ帯 */
.stripe-bar {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--primary) 0 14px,
    var(--warm-tint) 14px 28px
  );
  border-bottom: var(--rule) solid var(--ink);
}

/* 暖簾（のれん）区切り */
.noren {
  height: 58px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0 76px,
    var(--ink) 76px 82px
  );
  -webkit-mask-image: linear-gradient(#000 0 0), repeating-linear-gradient(90deg, #000 0 76px, transparent 76px 82px);
  -webkit-mask-size: 100% 22px, 100% 36px;
  -webkit-mask-position: 0 0, 0 22px;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-image: linear-gradient(#000 0 0), repeating-linear-gradient(90deg, #000 0 76px, transparent 76px 82px);
  mask-size: 100% 22px, 100% 36px;
  mask-position: 0 0, 0 22px;
  mask-repeat: no-repeat, no-repeat;
}

/* ボタン＝古い看板のプレート */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  margin: 6px 8px 6px 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .08em;
  text-decoration: none;
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  transition: transform .12s ease, box-shadow .12s ease, background-color .2s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: #B91C1C; }
.btn-outline { background: var(--card); color: var(--ink); }
.btn-outline:hover { background: var(--warm-tint); }

/* ---------- 5. ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--warm-tint);
  border-bottom: var(--rule-thick) solid var(--ink);
  box-shadow: 0 4px 0 rgba(69,10,10,.18);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 74px;
}
.site-logo {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 4vw, 1.35rem);
  line-height: 1.25;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .04em;
  padding: 8px 0;
}
.site-logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .58rem;
  letter-spacing: .3em;
  color: #9A1414;
  margin-top: 3px;
}

.nav-toggle {
  width: 48px; height: 48px;
  flex: none;
  border: var(--rule) solid var(--ink);
  background: var(--card);
  position: relative;
  box-shadow: var(--shadow-hard-sm);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 22px; height: 3px;
  background: var(--ink);
  transition: transform .2s ease, background-color .2s ease;
}
.nav-toggle span { top: 50%; left: 50%; margin: -1.5px 0 0 -11px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after  { top: 7px;  left: 0; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: none; }
.site-nav.is-open {
  display: block;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--warm-tint);
  border-bottom: var(--rule-thick) solid var(--ink);
  padding: 8px var(--pad) 18px;
}
.site-nav ul { display: flex; flex-direction: column; }
.site-nav a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 6px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .12em;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px dashed rgba(69,10,10,.28);
}
.site-nav a.is-active { color: #9A1414; }
.site-nav a.is-active::before { content: "\25CF"; font-size: .55em; margin-right: 8px; }

@media (min-width: 920px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; position: static; border: 0; padding: 0; background: none; }
  .site-nav ul { flex-direction: row; gap: 2px; }
  .site-nav a {
    border-bottom: 0;
    padding: 10px 13px;
    font-size: .95rem;
    position: relative;
  }
  .site-nav a::after {
    content: "";
    position: absolute; left: 13px; right: 13px; bottom: 6px;
    height: 3px; background: var(--primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform .2s ease;
  }
  .site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
  .site-nav a.is-active::before { content: none; }
}

/* ---------- 6. ヒーロー ＝ 大看板 ---------- */
.hero {
  position: relative;
  padding: 36px 0 0;
  background:
    repeating-linear-gradient(-45deg, rgba(69,10,10,.05) 0 18px, transparent 18px 36px),
    var(--bg);
  overflow: hidden;
}
.hero-board {
  position: relative;
  background: var(--primary);
  color: var(--primary-fg);
  border: var(--rule-thick) solid var(--ink);
  box-shadow: var(--shadow-hard);
  padding: 34px 20px 40px;
  text-align: center;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.06) 0 16px, transparent 16px 32px);
}
/* 看板のリベット */
.hero-board::before,
.hero-board::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--warm-tint);
  border: 2px solid var(--ink);
}
.hero-board::before { left: 12px; }
.hero-board::after  { right: 12px; }

.hero-board .kicker {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .4em;
  padding: 6px 12px 6px 20px;
  background: var(--warm-tint);
  color: var(--ink);
  border: 2px solid var(--ink);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 10vw, 4.4rem);
  line-height: 1.35;
  letter-spacing: .04em;
  text-shadow: var(--text-shadow-title);
  margin-bottom: 22px;
}
.hero h1 .romaji {
  display: block;
  font-size: .3em;
  letter-spacing: .42em;
  text-shadow: none;
  color: var(--warm-tint);
  margin-top: 16px;
}
.hero-board p {
  font-family: var(--font-serif);
  font-size: clamp(.94rem, 2.6vw, 1.05rem);
  max-width: 34em;
  margin: 0 auto 26px;
  line-height: 2.1;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
/* 赤い看板の上では朱赤ボタンが沈むので濃赤に置き換える */
.hero-board .btn-primary { background: var(--ink); color: #FFFFFF; border-color: #2A0505; }
.hero-board .btn-primary:hover { background: #2A0505; }

/* 看板下の暖簾 */
.hero .noren { margin-top: -2px; }

/* 手書き風の一言 */
.hand-note {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 700;
  color: #7A4A05;
  transform: rotate(-2.2deg);
  font-size: 1rem;
  letter-spacing: .06em;
}
.hand-note::before { content: "\301C "; }
.hand-note::after  { content: " \301C"; }

/* ---------- 7. セクション ---------- */
.section { padding: 62px 0; position: relative; }
.section.bg-soft {
  background: var(--muted);
  border-top: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
}
.section-title-wrap { text-align: center; margin-bottom: 10px; }
.section-title {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5.8vw, 2.3rem);
  line-height: 1.4;
  letter-spacing: .06em;
  color: var(--ink);
  padding: 10px 24px;
  background: var(--warm-tint);
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  transform: rotate(-1deg);
}
.section-lead {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  letter-spacing: .1em;
  color: #5B4A4A;
  margin: 22px 0 34px;
}
.text-center { text-align: center; }
.mt-4 { margin-top: 28px; }
.mt-5 { margin-top: 40px; }

/* ---------- 8. こだわり（フィルム写真＋文章） ---------- */
.kodawari {
  display: grid;
  gap: 26px;
  align-items: center;
  margin-bottom: 56px;
}
.kodawari:last-child { margin-bottom: 0; }
.kodawari img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--muted);
  border: var(--rule-thick) solid var(--ink);
  box-shadow: var(--shadow-hard);
  filter: sepia(var(--sepia-amount)) contrast(var(--contrast)) saturate(var(--saturation));
}
.kodawari h3 {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 4.6vw, 1.6rem);
  line-height: 1.6;
  letter-spacing: .04em;
  margin-bottom: 16px;
  color: var(--ink);
  border-bottom: var(--rule) solid var(--primary);
  padding-bottom: 10px;
}
.kodawari p { font-size: 1rem; }
.kodawari p + p { margin-top: 14px; }

@media (min-width: 860px) {
  .kodawari { grid-template-columns: 1fr 1fr; gap: 46px; }
  .kodawari.reverse img { order: 2; }
}

/* ---------- 9. メニューカード ＝ ポラロイド ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 620px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 34px; } }

.menu-card, .card {
  position: relative;
  background: var(--card);
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-hard);
  transition: transform .2s ease, box-shadow .2s ease;
}
.menu-card { padding: 12px 12px 0; }
.menu-card:nth-child(odd)  { transform: rotate(-.9deg); }
.menu-card:nth-child(even) { transform: rotate(.8deg); }
.menu-card:hover, .card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 10px 10px 0 var(--ink); }

.card-img { border: 2px solid var(--ink); background: var(--muted); }
.card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: sepia(var(--sepia-amount)) contrast(var(--contrast)) saturate(var(--saturation));
}
.menu-card-body { padding: 18px 8px 26px; text-align: center; }
.card-body { padding: 24px 20px 26px; }
.menu-card-body h3, .card-body h3 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.6;
  letter-spacing: .04em;
  margin-bottom: 10px;
  color: var(--ink);
}
.menu-card-body p, .card-body p {
  font-size: .93rem;
  color: #5B3030;
  line-height: 1.85;
}
.card-body h3 { border-bottom: 2px dashed var(--border); padding-bottom: 10px; }
.menu-price {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: #B91C1C;
  border: var(--rule) solid #B91C1C;
  border-radius: 999px;
  padding: 4px 20px;
  transform: rotate(-3deg);
  letter-spacing: .04em;
}

/* ---------- 9-2. 人気の一杯（写真主役） ---------- */
.dish-hero { display: grid; gap: 26px; align-items: center; }
@media (min-width: 900px) {
  .dish-hero { grid-template-columns: 1.15fr .85fr; gap: 44px; }
}
.dish-hero-figure { position: relative; margin: 0; }
.dish-hero-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--muted);
  border: var(--rule-thick) solid var(--ink);
  box-shadow: var(--shadow-hard);
  filter: sepia(var(--sepia-amount)) contrast(var(--contrast)) saturate(var(--saturation));
}
.dish-hero-figure figcaption {
  position: absolute;
  left: 14px;
  bottom: -16px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--ink);
  background: var(--warm-tint);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  padding: 5px 14px;
}
.dish-hero-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5.2vw, 1.9rem);
  line-height: 1.6;
  letter-spacing: .04em;
  color: var(--ink);
  border-bottom: var(--rule) solid var(--primary);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.dish-hero-body p { font-size: 1rem; }
.dish-hero-body p + p { margin-top: 14px; }

.dish-sub-grid { display: grid; gap: 26px; margin-top: 54px; }
@media (min-width: 700px) { .dish-sub-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
.dish-sub { background: var(--card); border: var(--rule) solid var(--ink); box-shadow: var(--shadow-hard-sm); padding: 12px; }
.dish-sub img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--muted);
  border: 2px solid var(--ink);
  filter: sepia(var(--sepia-amount)) contrast(var(--contrast)) saturate(var(--saturation));
}
.dish-sub h4 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: .04em;
  line-height: 1.6;
  color: var(--ink);
  margin: 16px 4px 8px;
}
.dish-sub p { font-size: .93rem; color: #5B3030; margin: 0 4px 12px; line-height: 1.85; }

/* ---------- 9-3. 店内ギャラリー ---------- */
.gallery-grid { display: grid; gap: 24px; }
@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--muted);
  border: var(--rule-thick) solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  filter: sepia(var(--sepia-amount)) contrast(var(--contrast)) saturate(var(--saturation));
}

/* ---------- 10. 店主メッセージ ---------- */
.message-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card);
  border: var(--rule-thick) solid var(--ink);
  box-shadow: var(--shadow-hard);
  padding: 34px 22px;
  position: relative;
}
.message-box::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--border);
  pointer-events: none;
}
.message-box p {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 2.15;
}
.message-box p + p { margin-top: 18px; }
.signature {
  text-align: right;
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  color: #7A4A05;
  margin-top: 26px !important;
}

/* ---------- 11. 下層ページヘッダー ---------- */
.page-header {
  background-color: var(--ink);
  color: var(--warm-tint);
  padding: 52px 0 46px;
  text-align: center;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 2.9rem);
  letter-spacing: .08em;
  line-height: 1.4;
  text-shadow: 2px 2px 0 var(--primary);
}
.page-header .lead {
  font-family: var(--font-serif);
  margin-top: 18px;
  letter-spacing: .16em;
  color: #FBD5D5;
  font-size: 1rem;
}

/* ---------- 12. 表 ---------- */
.info-table {
  background: var(--card);
  border: var(--rule) solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  max-width: 780px;
  margin: 0 auto;
}
.info-table th, .info-table td {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  font-size: .96rem;
  line-height: 1.85;
}
.info-table th {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: .86rem;
  background: var(--warm-tint);
  color: var(--ink);
  letter-spacing: .08em;
  border-top: 2px solid var(--ink);
}
.info-table tr:first-child th { border-top: 0; }
.info-table td { border-top: 1px dashed var(--border); padding-bottom: 16px; }
@media (min-width: 700px) {
  .info-table th, .info-table td { display: table-cell; width: auto; border-top: 2px solid var(--ink); }
  .info-table th { width: 30%; white-space: nowrap; border-right: 2px solid var(--ink); }
  .info-table tr:first-child th, .info-table tr:first-child td { border-top: 0; }
}

/* ---------- 13. アクセス ---------- */
.access-grid { display: grid; gap: 30px; }
@media (min-width: 900px) { .access-grid { grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start; } }
.map-frame {
  min-height: 300px;
  border: var(--rule-thick) solid var(--ink);
  box-shadow: var(--shadow-hard);
  background:
    repeating-linear-gradient(-45deg, rgba(220,38,38,.10) 0 16px, transparent 16px 32px),
    repeating-linear-gradient(0deg, rgba(69,10,10,.14) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(69,10,10,.14) 0 1px, transparent 1px 34px),
    var(--warm-tint);
  position: relative;
}
.map-frame::after {
  content: "MAP";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .3em;
  color: #9A1414;
  border: var(--rule) solid #9A1414;
  padding: 6px 16px 6px 26px;
  background: rgba(255,255,255,.78);
}
.sub-heading {
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 18px;
  border-left: 8px solid var(--primary);
  padding-left: 12px;
  line-height: 1.5;
}
.info-table--flush { margin: 0; }

/* ---------- 14. フォーム ---------- */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card);
  border: var(--rule-thick) solid var(--ink);
  box-shadow: var(--shadow-hard);
  padding: 28px 20px 34px;
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-family: var(--font-display);
  font-size: .88rem;
  letter-spacing: .06em;
  margin-bottom: 8px;
  color: var(--ink);
}
.req { color: #B91C1C; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  background: var(--bg);
  border: var(--rule) solid var(--ink);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--fg);
  border-radius: 0;
}
.contact-form textarea { min-height: 170px; resize: vertical; line-height: 1.8; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { background: #fff; }
.form-note { font-size: .8rem; color: #5B4A4A; margin-top: 8px; }
.lead-text {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
  font-family: var(--font-serif);
  line-height: 2.1;
}
.note-text { color: #5B4A4A; font-size: .92rem; line-height: 2; }

/* ---------- 15. フッター ---------- */
.site-footer {
  background-color: var(--ink);
  color: var(--warm-tint);
  padding: 52px 0 30px;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.045) 0 14px, transparent 14px 28px);
}
.footer-grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .08em;
  color: #FFFFFF;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary);
}
.site-footer p { font-size: .92rem; line-height: 2; color: #F8E5E5; }
.site-footer a {
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
  text-decoration: none;
  color: #F8E5E5;
  border-bottom: 2px dotted rgba(255,255,255,.45);
}
.site-footer a:hover { color: #FFFFFF; border-bottom-color: var(--secondary); }
.footer-copy {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255,255,255,.28);
  text-align: center;
  font-size: .78rem;
  letter-spacing: .1em;
  color: #F2D6D6;
}

/* ---------- 16. モーション（VHSトラッキング風の入り） ---------- */
@keyframes tracking-in {
  0%   { opacity: 0; transform: translateY(14px) skewX(-6deg); filter: blur(2px); }
  60%  { opacity: 1; transform: translateY(0) skewX(2deg); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) skewX(0deg); }
}
.hero-board { animation: tracking-in .7s ease-out both; }
.section-title-wrap { animation: tracking-in .6s ease-out both; }

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