*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --ink: #2f2f2d;
  --soft-ink: #57534d;
  --muted: #8f867b;
  --line: #ded8cf;
  --milk: #fffdf9;
  --paper: #f8f5ef;
  --warm: #efe7da;
  --accent: #877361;
  --accent-deep: #5f5145;
  --cta-pink: #e78bc3;
  --mauve-band: #775368;
  --gold: #d2aa47;
  --shadow: 0 24px 80px rgba(88, 73, 58, 0.12);
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, p {
  margin: 0;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.55;
}

h1 {
  font-size: clamp(24px, 3.2vw, 34px);
}

h2 {
  font-size: clamp(22px, 2.6vw, 30px);
}

h3 {
  font-size: clamp(17px, 1.8vw, 20px);
}

.hero {
  background: #f7f5f1;
  padding: 0;
}

.hero picture {
  display: block;
}

.hero img {
  width: min(1200px, 100%);
  min-height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}

.wrap {
  width: min(620px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(620px, calc(100% - 40px));
}

.section {
  padding: clamp(64px, 7vw, 96px) 0;
}

.label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  margin-top: 24px;
  color: var(--soft-ink);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 2.05;
}

.intro {
  text-align: center;
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--paper);
}

.intro .button {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.4;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #fff;
  background: var(--cta-pink);
  box-shadow: 0 18px 45px rgba(180, 82, 139, 0.22);
}

.section-head {
  max-width: 620px;
  margin-bottom: 42px;
}

.section-head p:not(.label) {
  margin-top: 18px;
  color: var(--soft-ink);
}

.center {
  text-align: center;
}

.check-section {
  background: var(--paper);
}

.check-inner {
  width: fit-content;
  margin: 0 auto;
}

.check-inner .check-panel {
  margin: 0;
}

.check-panel {
  width: fit-content;
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(222, 216, 207, 0.82);
  box-shadow: 0 18px 52px rgba(88, 73, 58, 0.08);
}

.check-panel p {
  color: var(--soft-ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 2.05;
}

.check-panel p + p {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(222, 216, 207, 0.54);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}

.check-list {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}

.check-list p {
  padding: 18px 22px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(222, 216, 207, 0.72);
  box-shadow: 0 12px 42px rgba(88, 73, 58, 0.05);
}

.check-grid p {
  min-height: auto;
  padding: 24px;
  display: flex;
  align-items: center;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(222, 216, 207, 0.72);
  box-shadow: 0 12px 42px rgba(88, 73, 58, 0.05);
}

.message {
  background: var(--paper);
}

.section.message-with-photo {
  padding-top: clamp(28px, 4.5vw, 56px);
}

.post-message-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.voice-jump {
  display: inline-block;
  padding-bottom: 3px;
  color: var(--mauve-band);
  font-family: var(--serif);
  font-size: 16px;
  border-bottom: 1px solid rgba(119, 83, 104, 0.4);
}

.cta-note {
  margin: 12px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.post-message-actions .cta-note {
  margin-top: 0;
}

.closing .cta-note {
  font-size: 13px;
  line-height: 1.9;
}

.large-copy {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.8;
  color: var(--accent-deep);
}

.body-emphasis {
  margin-bottom: 18px;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.95;
}

.warm {
  background: var(--paper);
}

.warm-box {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(34px, 5vw, 58px);
  background: var(--warm);
  border: 1px solid rgba(222, 216, 207, 0.78);
  box-shadow: 0 18px 52px rgba(88, 73, 58, 0.08);
}

.center-copy {
  text-align: center;
}

.center-copy p + p {
  margin-top: 22px;
}

.structure-highlight {
  display: inline-block;
  margin: 28px auto 6px;
  padding: 10px 18px;
  color: var(--mauve-band);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(119, 83, 104, 0.34);
  border-bottom: 1px solid rgba(119, 83, 104, 0.34);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(38px, 6vw, 82px);
  align-items: start;
}

.text-flow p + p {
  margin-top: 28px;
}

.line-copy p {
  line-height: 2.08;
}

.line-copy p + p {
  margin-top: 28px;
}

.prose-flow p {
  line-height: 2.05;
}

.prose-flow p + p {
  margin-top: 30px;
}

.standalone-line {
  margin: 46px auto;
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.8;
  text-align: center;
}

.standalone-line span {
  white-space: nowrap;
}

.standalone-line small {
  color: var(--soft-ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
}

.story-realization {
  text-align: left;
}

.story-realization small {
  display: inline-block;
  margin-top: 4px;
  text-align: left;
}

.story-photo {
  flex: 0 0 153px;
  width: 153px;
  height: 153px;
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 54px rgba(88, 73, 58, 0.16);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-ending {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
}

.story-ending p {
  flex: 1;
}

.feature-photo {
  margin: 0 auto 34px;
}

.feature-photo img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 22px 62px rgba(88, 73, 58, 0.14);
}

.message-with-photo .feature-photo,
.story-main-photo,
.trauma .feature-photo,
.retreat .feature-photo {
  width: min(450px, 90%);
}

.message-with-photo .feature-photo {
  width: min(225px, 48%);
}

.story-main-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.voice-photo {
  width: min(300px, 72%);
  margin: -12px auto 34px;
}

.message-with-photo .feature-photo img,
.trauma .feature-photo img,
.retreat .feature-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  box-shadow: 0 20px 54px rgba(88, 73, 58, 0.14);
}

.story-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  box-shadow: 0 20px 54px rgba(88, 73, 58, 0.14);
}

.voice-photo img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  box-shadow: 0 20px 54px rgba(88, 73, 58, 0.14);
}

.quote-section {
  color: var(--accent-deep);
  text-align: center;
  background: var(--paper);
}

.quote-section p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2.05;
  text-align: center;
}

.quote-section .standalone-line {
  margin-top: 0;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.8;
}

.trauma-title {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.title-spacer {
  height: 20px;
}

.definition {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.definition p + p {
  margin-top: 24px;
}

.retreat {
  color: var(--ink);
  background: var(--paper);
}

.retreat .label,
.retreat .lead,
.retreat p {
  color: var(--soft-ink);
}

.voices .voice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 620px;
  margin: 0 auto;
}

.voice-list article {
  padding: clamp(30px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(222, 216, 207, 0.72);
}

.voice-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.voice-list h3,
.voice-catch {
  margin: 26px 0 22px;
  padding: 14px 18px;
  color: var(--mauve-band);
  background: rgba(255, 255, 255, 0.62);
  border-left: 4px solid var(--cta-pink);
  font-size: clamp(18px, 2vw, 22px);
}

.voice-list h3:first-of-type {
  margin-top: 0;
}

.voice-list p {
  color: var(--soft-ink);
  font-size: 16px;
}

.voice-list p + p {
  margin-top: 22px;
}

.voice-label {
  display: inline-block;
  margin-right: 0.25em;
  font-weight: 800;
}

.label-past { color: #775368; }
.label-shift { color: #b06d8c; }
.label-now { color: #d18a7b; }

.voice-closing {
  max-width: 620px;
  margin: 42px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(135, 115, 97, 0.24);
  color: var(--soft-ink);
  text-align: center;
}

.voice-closing p + p {
  margin-top: 16px;
}

.session {
  background: var(--paper);
}

.session-box {
  display: block;
  padding: clamp(34px, 6vw, 70px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.session-box .button {
  display: flex;
  width: fit-content;
  margin: 42px auto 0;
}

.session .button {
  display: flex;
  width: fit-content;
  margin: 48px auto 0;
}

.session-format {
  padding: 20px 24px;
  color: var(--accent-deep);
  background: var(--paper);
  border-left: 4px solid var(--cta-pink);
}

.session-format strong {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 600;
}

.session-format span {
  color: var(--soft-ink);
  font-size: 15px;
}

.session-step {
  display: inline-block;
  margin-right: 0.45em;
  padding: 4px 11px 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  background: var(--mauve-band);
  border-radius: 999px;
}

.session-price {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.8;
  color: var(--accent-deep);
}

.price {
  padding: 30px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
}

.price span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.price strong {
  display: block;
  margin: 8px 0 24px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--accent-deep);
}

.price p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.profile {
  background: var(--paper);
}

.for-you {
  background: var(--paper);
}

.profile-photo {
  width: min(288px, 66%);
  margin: 0 auto 38px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--warm);
  border: 4px solid var(--gold);
  box-shadow: 0 24px 70px rgba(88, 73, 58, 0.16);
}

.profile-photo img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.profile h2 span {
  color: var(--accent);
  font-size: 0.56em;
}

.target-list {
  columns: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.target-list li {
  position: relative;
  break-inside: avoid;
  padding: 0 0 18px 22px;
  color: var(--soft-ink);
}

.target-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  color: var(--accent-deep);
}

.faq details p {
  padding: 0 0 24px;
  color: var(--soft-ink);
}

.closing {
  padding: clamp(78px, 10vw, 150px) 0;
  text-align: center;
  color: var(--ink);
  background: var(--paper);
}

.closing p {
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.7vw, 30px);
  line-height: 1.85;
}

.closing-photo {
  position: relative;
  width: min(330px, 79%);
  margin: 0 auto 42px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 22px 62px rgba(88, 73, 58, 0.14);
}

.closing-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.45)
  );
}

.closing-photo img {
  width: 100%;
}

.closing-photo figcaption {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  color: #4a3f38;
  font-family: var(--serif);
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.9;
  text-align: center;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.8);
}

.closing .closing-message {
  color: var(--soft-ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2.05;
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .hero img {
    min-height: auto;
    object-fit: contain;
  }

  .check-grid,
  .voices .voice-list,
  .session-box,
  .split {
    grid-template-columns: 1fr;
  }

  .check-grid p {
    min-height: auto;
  }

  .target-list {
    columns: 1;
  }

  .section {
    padding: 70px 0;
  }

  .story-ending {
    display: block;
  }

  .story-photo {
    width: 132px;
    height: 132px;
    margin: 22px auto 0;
  }

  .button {
    width: min(100%, 340px);
    padding-inline: 22px;
  }

  .standalone-line {
    margin: 42px auto;
  }

  .standalone-line span {
    white-space: normal;
  }
}
