:root {
  --cream: #f7f2e7;
  --cream-deep: #efe6d2;
  --ink: #3a2f22;
  --ink-soft: #6b5d48;
  --gold: #a97e3f;
  --gold-deep: #8b6a34;
  --line: #e2d6bb;
  --card: #fffdf8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

header.top {
  padding: 56px 24px 32px;
  text-align: center;
}

.mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c48c4f, #966b34);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(139, 106, 52, 0.25);
}

h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.sub {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
}

nav.crumbs {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 18px;
}
nav.crumbs a {
  color: var(--gold-deep);
  text-decoration: none;
  margin: 0 8px;
}
nav.crumbs a:hover { text-decoration: underline; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  margin-top: 8px;
}

h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 36px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

p { margin: 0 0 14px; font-size: 15px; color: var(--ink); }
p.muted { color: var(--ink-soft); font-size: 13.5px; }

a { color: var(--gold-deep); }

.contact-box {
  background: var(--cream-deep);
  border-radius: 12px;
  padding: 22px 24px;
  text-align: center;
  margin-top: 8px;
}
.contact-box .label { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 6px; }
.contact-box .mail {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-deep);
  word-break: break-all;
}

table.terms {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.terms tr { border-bottom: 1px solid var(--line); }
table.terms tr:last-child { border-bottom: none; }
table.terms th, table.terms td {
  text-align: left;
  padding: 14px 4px;
  vertical-align: top;
}
table.terms th {
  width: 34%;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

ul { margin: 0 0 14px; padding-left: 20px; }
li { font-size: 15px; margin-bottom: 6px; }

footer.bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
footer.bottom a { color: var(--ink-soft); }
