/* ============================================================
   サブページ共通スタイル（/gift_money, /salon）
   本体（/invitation）と同じモダン・ミニマル
   白 × 黒 × テラコッタ / Montserrat + Zen Kaku Gothic New
   ============================================================ */
:root {
  --bg: #ffffff;
  --ink: #141414;
  --ink-soft: #7a7a7a;
  --accent: #c96f4a;
  --line: #e6e2de;
  --font-en: "Montserrat", sans-serif;
  --font-jp: "Zen Kaku Gothic New", sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ---- 戻るリンク ---- */
.back-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 80;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ink);
  padding: 9px 16px;
  transition: background 0.25s ease, color 0.25s ease;
}

.back-link:hover {
  background: var(--ink);
  color: #fff;
}

/* ---- ヘッダー ---- */
.page-head {
  max-width: 640px;
  margin: 0 auto;
  padding: 110px 8vw 26px;
}

.page-head__en {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(38px, 10vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.page-head__jp {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-top: 12px;
}

.page-head__lead {
  margin-top: 22px;
  font-size: 14px;
  color: #333;
}

/* ---- セクション ---- */
.section {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 8vw;
}

.section__title {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.section__title .en {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 2px;
}

/* ---- カード ---- */
.card {
  border: 1px solid var(--ink);
  padding: 30px 26px;
  background: var(--bg);
}

.card + .card {
  margin-top: 22px;
}

/* 強調カード（式場での着付け・ヘアメイク案内など） */
.card--featured {
  border: 2px solid var(--accent);
}

/* ---- 並び替えボタン ---- */
.sort {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.sort__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-right: 2px;
}

.sort-btn {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.sort-btn.is-active {
  background: var(--ink);
  color: #fff;
}

.card__badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 14px;
  margin-bottom: 16px;
}

.card__title {
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.card__sub {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.card__note {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 14px;
}

/* ---- 定義リスト（詳細情報の行） ---- */
.detail {
  display: grid;
  margin: 18px 0;
}

.detail > div {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: baseline;
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.detail > div:first-child {
  border-top: 1px solid var(--line);
}

.detail dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.detail dd {
  font-size: 14px;
}

.detail small {
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---- コピーできる値 ---- */
.copyable {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #faf7f5;
  border: 1px solid var(--ink);
  padding: 12px 16px;
  margin: 16px 0;
}

.copyable__value {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.copy-btn {
  flex-shrink: 0;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.copy-btn:hover {
  background: var(--ink);
  color: #fff;
}

/* ---- タグ ---- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tags span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 12px;
}

/* ---- ボタン ---- */
.btn {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--ink);
  color: #fff;
}

.btn--ghost {
  border-color: var(--accent);
  color: var(--accent);
}

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

.btn--line {
  border-color: #06c755;
  color: #06c755;
}

.btn--line:hover {
  background: #06c755;
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* ---- QR ---- */
.qr {
  width: 140px;
  margin: 6px 0 14px;
  border: 1px solid var(--line);
}

/* ---- 注意書き ---- */
.notes {
  list-style: none;
  font-size: 13px;
  color: #333;
  display: grid;
  gap: 8px;
}

.notes li {
  padding-left: 1.4em;
  position: relative;
  text-align: left;
}

.notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.notes a {
  color: var(--accent);
}

/* ---- Coming Soon ページ ---- */
.soon {
  max-width: 640px;
  margin: 0 auto;
  min-height: 62svh;
  padding: 140px 8vw 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soon__en {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(38px, 10vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.soon__jp {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-top: 12px;
}

.soon__badge {
  align-self: flex-start;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 6px 18px;
  margin-top: 28px;
}

.soon__text {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 22px;
}

/* ---- フッター ---- */
.footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 8vw 72px;
  border-top: 1px solid var(--ink);
  margin-top: 40px;
}

.footer__names {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__note {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
  margin-top: 8px;
  text-transform: uppercase;
}
