/*
 * テキスト色のレイヤー設計（重要）
 *   --text       見出し・強調（<strong>、<h3> など）・タイトル類に使う
 *   --text-sub   地の文（<p> / <li> / 本文クラス）に使う。各ページの p/ul/ol
 *                がこれを参照しているため、ここを変えると全ページの
 *                本文読みやすさが変わる
 *   --text-faint 注釈・<small>・.date など、控えめに見せたい補助
 *
 * 「本文を明るくしたい」要望が来たら、まず --text-sub を調整すること。
 * --text を触ると <strong> や見出しが白くなりすぎる。
 */
:root {
  --bg: #101014;
  --text: #F3EEE4;
  --text-sub: #ECE8DF;
  --text-faint: #8d8a80;
  --accent: #C9A227;
  --accent-dark: #A8841D;
  --shu: #E0472B;
  --shu-dark: #c93a20;
  --warn: #ff6b6b;
  --warn-bg: rgba(220, 53, 69, 0.12);
  --warn-border: rgba(220, 53, 69, 0.6);
  --accent-border: rgba(201, 162, 39, 0.3);
  --accent-border-soft: rgba(201, 162, 39, 0.15);
  --accent-bg: rgba(201, 162, 39, 0.08);
  --accent-bg-soft: rgba(201, 162, 39, 0.06);
}

html { font-size: 20px; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Shippori Mincho B1', 'Yu Mincho', 'YuMincho', 'Georgia', serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover {
  text-decoration-thickness: 2px;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

h1 {
  color: var(--text);
  font-size: 1.6em;
}

h1::before {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--shu);
  margin-bottom: 18px;
}

h2 {
  color: var(--text);
  font-size: 1.2em;
}

strong, b {
  color: var(--shu);
}

.btn {
  display: inline-block;
  padding: 17px 30px;
  border-radius: 2px;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.08em;
}
.btn-primary {
  background: var(--shu);
  color: #fff;
}
.btn-primary:hover {
  background: var(--shu-dark);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent-bg);
  text-decoration: none;
}
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

footer {
  text-align: center;
  padding: 38px 24px;
  border-top: 1px solid var(--accent-border-soft);
  color: var(--text-faint);
  font-size: 16px;
}
footer a {
  color: var(--text-faint);
}
footer a:hover {
  color: var(--text);
}

@media (max-width: 600px) {
  .container { padding: 40px 16px; }
  .btn { display: block; text-align: center; }
}

body { line-height: 1.8; overflow-wrap: anywhere; }
h1 { margin-bottom: 24px; }
h2 { margin: 1.8em 0 0.5em; }
h3 { margin: 1.2em 0 0.4em; font-size: 20px; }
p, ul, ol, dl { margin: 0.8em 0; color: var(--text-sub); }
ul, ol { padding-left: 1.5em; }
li { margin: 0.4em 0; }
dt { color: var(--text); font-weight: 700; margin-top: 1em; }
dd { margin: 0.3em 0 1em; }
img { max-width: 100%; height: auto; }
.hero { padding-bottom: 24px; border-bottom: 1px solid var(--accent-border); }
.hero img { margin-bottom: 20px; border-radius: 24px; }
.eyebrow { color: var(--accent); font-size: 18px; }
.contact-card { border: 1px solid var(--accent-border); background: var(--accent-bg-soft); padding: 24px; margin: 24px 0; border-radius: 8px; }
.contact-card h2 { margin-top: 0; }
footer { max-width: 900px; margin: auto; }
footer p { color: var(--text-faint); }
.shots { display: flex; flex-wrap: wrap; gap: 20px; margin: 24px 0; align-items: flex-start; }
.shots figure { margin: 0; flex: 1 1 220px; max-width: 360px; }
.shots img { border: 1px solid var(--accent-border); border-radius: 8px; }
.shots figcaption { font-size: 0.85em; color: var(--text-faint); margin-top: 6px; }
