:root {
  --bg: #f5f1e8;
  --surface: #fffaf0;
  --surface-strong: #efe4cf;
  --text: #1d140c;
  --muted: #615448;
  --line: rgba(29, 20, 12, 0.12);
  --accent: #8f4e20;
  --accent-strong: #6f3813;
  --shadow: 0 24px 60px rgba(29, 20, 12, 0.12);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.55), transparent 36%),
    linear-gradient(180deg, #f6f1e7 0%, #efe8db 100%);
  color: var(--text);
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(245, 241, 232, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-strong);
}

.hero {
  position: relative;
  min-height: clamp(520px, 80vh, 760px);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 16, 10, 0.16) 0%, rgba(22, 16, 10, 0.54) 100%),
    linear-gradient(90deg, rgba(22, 16, 10, 0.42) 0%, rgba(22, 16, 10, 0.08) 64%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  min-height: inherit;
  padding: 120px 0 64px;
}

.hero-copy {
  color: #fff8f0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
}

h1,
h2 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  text-align: center;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: rgba(255, 250, 240, 0.66);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.copy-stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  color: var(--muted);
}

.copy-stack p,
.contact-card p {
  margin: 0;
  text-align: center;
}

.actions {
  margin-top: 32px;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff9f2;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.button:hover,
.button:focus-visible {
  background: var(--accent-strong);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.profile-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.profile-list div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.profile-list dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-card {
  margin: 20px;
}

.contact-link-row {
  margin-top: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer .footer-inner {
  justify-content: center;
  flex-direction: column;
  padding: 18px 0;
}

.footer-links {
  margin: 0;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-strong);
}

.policy-page {
  min-height: calc(100vh - 145px);
}

.policy-layout {
  display: grid;
  gap: 18px;
}

.policy-eyebrow {
  color: var(--muted);
  text-align: center;
}

.policy-title {
  max-width: none;
  color: var(--text);
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.policy-subtitle {
  margin-top: 4px;
}

.policy-copy {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.policy-copy h3,
.policy-copy h4 {
  margin: 18px 0 0;
  line-height: 1.35;
}

.policy-copy h3 {
  font-size: 1.4rem;
}

.policy-copy h4 {
  font-size: 1.05rem;
}

.policy-copy p {
  margin: 0;
}

.policy-list {
  margin: -4px 0 0;
  padding-left: 1.4rem;
}

.policy-list li + li {
  margin-top: 6px;
}

.policy-box,
.policy-meta {
  display: grid;
  gap: 6px;
  margin-top: 6px;
}

@media (max-width: 800px) {
  .header-inner,
  .footer-inner,
  .site-nav,
  .split {
    display: block;
  }

  .header-inner {
    padding: 18px 0;
  }

  .site-nav {
    margin-top: 10px;
  }

  .site-nav a {
    display: inline-block;
    margin-right: 18px;
    margin-top: 8px;
  }

  .hero-panel {
    padding: 110px 0 42px;
  }

  .section {
    padding: 72px 0;
  }

}
