/* ご注文の流れページ — 洗練ミニマル(白×余白×明朝見出し)
   このページはorder.cssに依存せず、単体で完結する */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1c1917;        /* ほぼ黒(温かみのある墨色) */
  --text: #44403c;       /* 本文 */
  --muted: #78716c;      /* 補足 */
  --hairline: #e7e2dc;   /* 罫線 */
  --paper: #faf9f7;      /* 背景(生成りがかった白) */
  --card: #ffffff;
  --caution-bg: #faf4f2;
  --caution-line: #e8d5cf;
  --caution-text: #8c4a3f;
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text);
  line-height: 1.9;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

.g-wrap { max-width: 680px; margin: 0 auto; padding: 72px 22px 80px; }

/* ===== ヒーロー ===== */
.g-hero { text-align: center; margin-bottom: 72px; }

.g-overline {
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.g-hero h1 {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--ink);
}

.g-divider {
  width: 40px; height: 1px; background: var(--ink);
  margin: 26px auto;
}

.g-lead { color: var(--muted); font-size: .95rem; }
.pc-only { display: none; }
@media (min-width: 560px) { .pc-only { display: inline; } }

/* ===== ステップタイムライン ===== */
.flow { list-style: none; }

.flow-step {
  display: flex; gap: 22px; position: relative;
  padding-bottom: 52px;
}
.flow-step::before {
  content: ""; position: absolute; left: 19px; top: 48px; bottom: 8px;
  width: 1px; background: var(--hairline);
}
.flow-step:last-child { padding-bottom: 0; }
.flow-step:last-child::before { display: none; }

.flow-num {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-family: var(--serif); font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}

.flow-body { flex: 1; padding-top: 5px; }

.flow-body h2 {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}

.flow-body p { margin: 10px 0; }
.flow-body strong { color: var(--ink); font-weight: 600; }

/* 「お客様」「HIYOSHI」タグ — 控えめな枠のみのチップ */
.flow-tag {
  font-family: var(--sans);
  font-size: .68rem; font-weight: 500; letter-spacing: .08em;
  color: var(--muted); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 2px 12px; background: var(--card);
}
.flow-tag-us { color: var(--ink); border-color: #cfc9c1; }

/* 変更不可などの注意書き */
.flow-note {
  background: var(--caution-bg);
  border-left: 2px solid var(--caution-line);
  color: var(--caution-text);
  padding: 12px 16px; margin: 14px 0 4px;
  font-size: .92rem;
}
.flow-note strong { color: var(--caution-text); font-weight: 600; }

/* ===== ボタン ===== */
.flow-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.btn {
  display: inline-block; text-decoration: none;
  font-size: .9rem; font-weight: 600; letter-spacing: .05em;
  padding: 12px 28px; border-radius: 999px;
  transition: opacity .2s ease, transform .2s ease;
}
.btn:hover { opacity: .82; transform: translateY(-1px); }

.btn-line { background: #06c755; color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }

/* ===== セクション(受付番号・FAQ) ===== */
.g-section {
  margin-top: 88px; padding-top: 56px;
  border-top: 1px solid var(--hairline);
  text-align: center;
}

.g-section-title {
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 600; letter-spacing: .1em;
  color: var(--ink);
  margin-bottom: 20px;
}

.g-section-body { max-width: 540px; margin: 0 auto; text-align: left; }
.g-section-body strong { color: var(--ink); }

/* ===== FAQ ===== */
.faq {
  text-align: left;
  max-width: 600px; margin: 0 auto;
  border-bottom: 1px solid var(--hairline);
}
.faq:first-of-type { border-top: 1px solid var(--hairline); margin-top: 12px; }

.faq summary {
  cursor: pointer; list-style: none;
  padding: 18px 36px 18px 4px;
  font-weight: 600; color: var(--ink); font-size: .97rem;
  position: relative;
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--muted);
  transition: transform .25s ease;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--muted); }

.faq-body { padding: 0 4px 20px; font-size: .93rem; }
.faq-body p { margin: 8px 0; }
.faq-body ul { margin: 10px 0; padding-left: 20px; }
.faq-body li { margin: 8px 0; }
.faq-body strong { color: var(--ink); }

/* ===== 締めのCTA ===== */
.g-closing {
  margin-top: 88px; padding: 56px 24px 0;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.g-closing-cta { justify-content: center; margin-top: 26px; }

/* ===== フッター ===== */
.g-footer {
  margin-top: 96px; text-align: center;
  font-size: .72rem; letter-spacing: .22em; color: #a8a29e;
}

/* 見出しの折り返しを語句単位にする */
.nb { display: inline-block; }

/* ===== スマホ調整 ===== */
@media (max-width: 480px) {
  .g-wrap { padding: 52px 18px 64px; }
  .g-hero { margin-bottom: 56px; }
  .g-hero h1 { font-size: 1.7rem; }
  .flow-step { gap: 14px; padding-bottom: 44px; }
  .flow-num { flex-basis: 34px; width: 34px; height: 34px; font-size: .95rem; }
  .flow-step::before { left: 16px; top: 42px; }
  .flow-body h2 { font-size: 1.1rem; }
  .g-section { margin-top: 64px; padding-top: 44px; }
  .btn { padding: 11px 22px; font-size: .86rem; }
}
