@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@500;600&display=swap");

:root {
  --ink: #363434;
  --muted: #726d6b;
  --paper: #fffdfa;
  --soft: #f8efeb;
  --pink: #d67c7c;
  --pink-light: #f3d7d3;
  --green: #5b8285;
  --line: rgba(54, 52, 52, .16);
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, h4, figure, dl, dd { margin: 0; }
button { color: inherit; font: inherit; }
h1, h2, h3, h4 { line-break: strict; text-wrap: balance; word-break: auto-phrase; }
p, li, summary, label { line-break: strict; text-wrap: pretty; word-break: auto-phrase; }

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 12px;
  padding: 10px 14px;
  position: fixed;
  top: -100px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.site-header {
  align-items: center;
  background: rgba(255,253,250,.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 94px;
  justify-content: space-between;
  left: 0;
  padding: 0 3.5vw;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}
.logo { width: 218px; }
.logo img { width: 100%; }
.site-header nav { align-items: center; display: flex; gap: 30px; }
.site-header nav a { font-size: 12px; letter-spacing: .06em; }
.site-header nav a:not(.nav-contact):hover { color: var(--pink); }
.nav-contact {
  background: var(--soft);
  color: var(--pink);
  font-weight: 600;
  padding: 16px 22px;
}
.menu-button { display: none; }

.hero {
  display: grid;
  gap: 4vw;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  min-height: 830px;
  overflow: hidden;
  padding: 185px 6vw 92px;
  position: relative;
}
.hero::before {
  border: 1px solid var(--pink-light);
  border-radius: 50%;
  content: "";
  height: 540px;
  left: -330px;
  position: absolute;
  top: 240px;
  width: 700px;
}
.hero-copy { align-self: center; position: relative; z-index: 2; }
.kicker {
  color: var(--pink);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
}
.hero h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(46px, 4.9vw, 76px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.42;
  margin-top: 30px;
}
.hero h1 em { color: var(--pink); font-style: normal; }
.hero-lead { font-size: 17px; line-height: 2; margin-top: 38px; }
.hero-actions { align-items: center; display: flex; gap: 28px; margin-top: 44px; }
.button {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: space-between;
  min-width: 260px;
  padding: 18px 20px;
}
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--pink); }
.text-link { border-bottom: 1px solid currentColor; font-size: 12px; padding-bottom: 5px; }
.hero-visual { align-self: center; position: relative; z-index: 2; }
.hero-visual::before {
  background: var(--pink-light);
  border-radius: 48% 52% 42% 58%;
  content: "";
  inset: -40px -70px 35% 42%;
  opacity: .55;
  position: absolute;
  z-index: -1;
}
.hero-visual img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.hero-visual figcaption { color: var(--muted); font-family: "DM Sans", sans-serif; font-size: 9px; letter-spacing: .12em; margin-top: 10px; }
.hero-tags {
  bottom: 34px;
  display: flex;
  gap: 12px;
  left: 6vw;
  position: absolute;
}
.hero-tags span { border: 1px solid var(--line); border-radius: 999px; font-family: "DM Sans", sans-serif; font-size: 9px; letter-spacing: .1em; padding: 8px 13px; }

.section { padding: 125px 6vw; }
.section-head {
  display: grid;
  gap: 5vw;
  grid-template-columns: 86px minmax(0, 1fr);
  margin-bottom: 78px;
}
.section-number { color: var(--pink); font-family: "Noto Serif JP", serif; font-size: 48px; line-height: 1; }
.section-head h2,
.about-copy h2,
.contact-section h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(38px, 4.7vw, 68px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.4;
  margin-top: 20px;
  text-wrap: balance;
}
.section-head > div > p:last-child { font-size: 16px; line-height: 1.9; margin-top: 26px; }

.problems { background: var(--soft); }
.problem-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.problem-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 270px;
  padding: 28px;
}
.problem-grid article b { color: var(--pink); font-family: "DM Sans", sans-serif; font-size: 18px!important;}
.problem-grid h3 { font-family: "Noto Serif JP", serif; font-size: 22px; font-weight: 600; line-height: 1.65; margin-top: 45px; }
.problem-grid article > p { color: var(--muted); font-size: 15px; line-height: 1.85; margin-top: 16px; }
.problem-grid .problem-cta { background: var(--pink); color: var(--white); display: flex; flex-direction: column; justify-content: space-between; }
.problem-grid .problem-cta p { color: inherit; font-size: 16px; font-weight: 600; }
.problem-cta a { align-items: center; border-bottom: 1px solid rgba(255,255,255,.7); display: flex; font-size: 13px; justify-content: space-between; padding-bottom: 12px; }

.services { background: var(--ink); color: var(--white); padding-bottom: 145px; }
.light-head .section-number { color: var(--pink-light); }
.light-head > div > p:last-child { color: rgba(255,255,255,.68); }
.service-row {
  border-top: 1px solid rgba(255,255,255,.2);
  display: grid;
  gap: 6vw;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  padding: 85px 0;
}
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.service-row.reverse .service-image { order: 2; }
.service-row.reverse .service-content { order: 1; }
.service-image img { aspect-ratio: 4 / 3; height: 100%; object-fit: cover; width: 100%; }
.service-content { align-self: center; }
.service-index { color: var(--pink-light); font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .12em; }
.service-content h3 { font-family: "Noto Serif JP", serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 500; line-height: 1.45; margin-top: 22px; }
.service-lead { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.95; margin-top: 28px; max-width: 650px; }
.service-facts { border-top: 1px solid rgba(255,255,255,.2); display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); margin-top: 34px; padding-top: 25px; }
.service-facts h4 { color: var(--pink-light); font-size: 14px; }
.service-facts ul { list-style: none; margin: 14px 0 0; padding: 0; }
.service-facts li { color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.9; padding-left: 15px; position: relative; }
.service-facts li::before { content: "・"; left: 0; position: absolute; }
.service-action { align-items: center; border-bottom: 1px solid rgba(255,255,255,.65); display: flex; font-size: 13px; justify-content: space-between; margin-top: 34px; padding-bottom: 12px; }
.service-action:hover { border-color: var(--pink-light); color: var(--pink-light); }
.death-row .service-index { color: #d8ff5d; }

.deliverables { background: var(--paper); }
.compact-head { margin-bottom: 54px; }
.deliverable-list { border-top: 1px solid var(--ink); }
.deliverable-list > div {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 25px;
  grid-template-columns: 70px minmax(220px, .55fr) 1fr;
  padding: 28px 0;
}
.deliverable-list span { color: var(--pink); font-family: "DM Sans", sans-serif; font-size: 18px; }
.deliverable-list h3 { font-family: "Noto Serif JP", serif; font-size: 24px; font-weight: 600; }
.deliverable-list p { color: var(--muted); font-size: 15px; line-height: 1.85; }

.works { background: #f6f4ef; }
.works-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.works-grid article { background: var(--white); }
.works-grid article.work-large { grid-column: 1 / -1; }
.works-grid img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.works-grid article > div { padding: 26px 28px 30px; }
.works-grid small { color: var(--pink); font-family: "DM Sans", sans-serif; font-size: 9px; letter-spacing: .1em; }
.works-grid h3 { font-family: "Noto Serif JP", serif; font-size: 24px; font-weight: 600; margin-top: 12px; }
.works-grid p { color: var(--muted); font-size: 15px; line-height: 1.85; margin-top: 12px; }
.works-grid a { border-bottom: 1px solid currentColor; display: inline-block; font-size: 11px; margin-top: 18px; padding-bottom: 4px; }

.flow { background: var(--green); color: var(--white); }
.flow .kicker { color: var(--pink-light); }
.flow-list { list-style: none; margin: 0; padding: 0; }
.flow-list li { border-top: 1px solid rgba(255,255,255,.28); display: grid; gap: 35px; grid-template-columns: 76px 1fr; padding: 30px 0; }
.flow-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.28); }
.flow-list b { color: var(--pink-light); font-family: "DM Sans", sans-serif; font-size: 26px; font-weight: 400; }
.flow-list h3 { font-family: "Noto Serif JP", serif; font-size: 24px; font-weight: 600; }
.flow-list p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.9; margin-top: 10px; max-width: 760px; }

.about { display: grid; gap: 8vw; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); }
.about-photo img { aspect-ratio: 3 / 4; height: 100%; object-fit: cover; width: 100%; }
.about-copy { align-self: center; }
.about-copy > p:not(.kicker) { color: var(--muted); font-size: 16px; line-height: 2; margin-top: 26px; max-width: 680px; }

.faq { background: var(--soft); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-family: "Noto Serif JP", serif; font-size: 19px; font-weight: 600; list-style: none; padding: 26px 55px 26px 0; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--pink); content: "+"; font-family: "DM Sans", sans-serif; font-size: 28px; font-weight: 400; position: absolute; right: 8px; top: 18px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: var(--muted); font-size: 15px; line-height: 1.95; max-width: 760px; padding: 0 50px 28px 0; }

.contact-section { background: var(--pink); color: var(--white); padding: 120px 12vw; text-align: center; }
.contact-section .kicker { color: var(--white); }
.contact-section > p:not(.kicker) { font-size: 16px; line-height: 2; margin-top: 28px; }
.contact-button { align-items: center; background: var(--white); color: var(--ink); display: flex; font-size: 15px; font-weight: 600; justify-content: space-between; margin: 45px auto 0; max-width: 520px; padding: 22px 25px; text-align: left; }
.contact-button:hover { background: var(--ink); color: var(--white); }
.contact-button b { font-size: 23px; }
.contact-mail { border-bottom: 1px solid rgba(255,255,255,.75); display: inline-block; font-family: "DM Sans", sans-serif; font-size: 12px; letter-spacing: .06em; margin-top: 25px; padding-bottom: 4px; }

footer { align-items: center; display: grid; gap: 30px; grid-template-columns: 1fr auto 1fr; min-height: 170px; padding: 40px 4vw; }
footer img { width: 160px; }
footer nav { display: flex; gap: 24px; }
footer nav a, footer p { color: var(--muted); font-size: 9px; }
footer p { text-align: right; }

/* Static contact form */
.contact-page-body { background: var(--paper); }
.contact-header { position: absolute; }
.contact-back { align-items: center; color: var(--pink); display: flex; font-size: 12px; gap: 18px; }
.contact-back span { font-size: 18px; }
.contact-page-hero {
  background: var(--ink);
  color: var(--white);
  min-height: 620px;
  overflow: hidden;
  padding: 185px 7vw 100px;
  position: relative;
}
.contact-page-hero::after {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  content: "";
  height: 560px;
  position: absolute;
  right: -120px;
  top: 80px;
  transform: rotate(-15deg);
  width: 720px;
}
.contact-page-hero .kicker { color: var(--pink-light); }
.contact-page-hero h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.4;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.contact-page-hero h1 em { color: var(--pink); font-style: normal; }
.contact-page-hero > p:last-child { font-size: 16px; line-height: 2; margin: 42px 0 0 12vw; position: relative; z-index: 1; }
.contact-form-section { display: grid; gap: 8vw; grid-template-columns: minmax(220px,.62fr) minmax(0,1.38fr); padding: 120px 7vw 145px; }
.contact-form-intro { align-self: start; position: sticky; top: 40px; }
.contact-form-intro h2 { font-family: "Noto Serif JP", serif; font-size: clamp(40px,4.7vw,66px); font-weight: 500; letter-spacing: -.04em; margin-top: 22px; }
.contact-form-intro > p:last-child { color: var(--muted); font-size: 15px; line-height: 1.9; margin-top: 30px; max-width: 350px; }
.required-mark,
.form-field > label > b,
.form-field legend b,
.privacy-check b { background: var(--pink); border-radius: 999px; color: var(--white); display: inline-block; font-size: 9px; font-weight: 600; line-height: 1; margin-left: 7px; padding: 5px 7px; vertical-align: 2px; }
.required-mark { margin-left: 0; margin-right: 5px; }
.contact-form { min-width: 0; }
.form-field { border: 0; border-top: 1px solid var(--ink); margin: 0; padding: 30px 0 38px; }
.form-field > label,
.form-field legend { display: block; font-size: 15px; font-weight: 600; margin-bottom: 16px; padding: 0; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field textarea { appearance: none; background: var(--white); border: 1px solid rgba(54,52,52,.35); border-radius: 0; color: var(--ink); font: inherit; font-size: 16px; padding: 15px 16px; transition: border-color .2s, box-shadow .2s; width: 100%; }
.form-field textarea { line-height: 1.7; min-height: 210px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(214,124,124,.2); outline: 0; }
.show-validation .form-field input:invalid,
.show-validation .form-field textarea:invalid,
.show-validation .privacy-check input:invalid { border-color: #a0134d; }
.name-fields { display: grid; gap: 18px; grid-template-columns: repeat(2,1fr); }
.name-fields label span { display: block; font-size: 12px; margin-bottom: 8px; }
.choice-grid { display: grid; gap: 12px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.choice-grid label { align-items: center; background: var(--white); border: 1px solid rgba(54,52,52,.25); cursor: pointer; display: flex; font-size: 15px; font-weight: 600; gap: 10px; min-height: 62px; padding: 14px 16px; }
.choice-grid label:has(input:checked) { background: var(--pink-light); border-color: var(--pink); }
.choice-grid input,
.privacy-check input { accent-color: var(--pink); flex: 0 0 auto; height: 18px; width: 18px; }
.field-error { color: #a0134d; font-size: 12px; font-weight: 600; line-height: 1.6; margin-top: 10px; }
.honeypot { height: 0; left: -9999px; overflow: hidden; position: absolute; width: 0; }
.privacy-check { align-items: flex-start; border-top: 1px solid var(--ink); cursor: pointer; display: flex; font-size: 15px; gap: 12px; line-height: 1.8; padding-top: 30px; }
.privacy-check input { margin-top: 4px; }
.recaptcha-wrap { margin-top: 30px; max-width: 100%; overflow: hidden; }
.form-submit { align-items: center; background: var(--ink); border: 0; color: var(--white); cursor: pointer; display: flex; font: inherit; font-size: 16px; font-weight: 600; justify-content: space-between; margin-top: 38px; min-height: 70px; padding: 18px 24px; transition: background .2s,color .2s; width: 100%; }
.form-submit b { font-size: 24px; }
.form-submit:hover,
.form-submit:focus-visible { background: var(--pink); color: var(--white); }
.form-note { color: var(--muted); font-family: "DM Sans",sans-serif; font-size: 9px; margin-top: 12px; text-align: right; }
.contact-footer { background: var(--paper); border-top: 1px solid var(--line); }
.contact-footer a { color: var(--muted); font-size: 10px; }
.form-result-page { background: var(--ink); color: var(--white); min-height: 100vh; padding: 45px 7vw 80px; }
.result-logo { display: block; width: 180px; }
.result-logo img { filter: brightness(0) invert(1); width: 100%; }
.form-result-card { margin: 15vh auto 0; max-width: 820px; }
.form-result-card h1 { font-family: "Noto Serif JP",serif; font-size: clamp(42px,6.2vw,78px); font-weight: 500; letter-spacing: -.045em; line-height: 1.4; margin-top: 24px; }
.form-result-card h1 em { color: var(--pink); font-style: normal; }
.form-result-card > p:not(.kicker) { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.9; margin-top: 32px; }
.form-result-card .form-submit { background: var(--pink); max-width: 420px; }

@media (max-width: 980px) {
  .site-header { height: 82px; padding: 0 5vw; }
  .logo { width: 180px; }
  .menu-button { background: none; border: 0; display: grid; gap: 5px; padding: 8px; }
  .menu-button span { background: var(--pink); display: block; height: 1px; width: 32px; }
  .menu-button small { color: var(--pink); font-family: "DM Sans", sans-serif; font-size: 7px; letter-spacing: .1em; }
  .site-header nav { align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); display: none; flex-direction: column; gap: 0; left: 0; padding: 20px 5vw 30px; position: absolute; right: 0; top: 82px; }
  .site-header nav.is-open { display: flex; }
  .site-header nav a { border-bottom: 1px solid var(--line); font-size: 13px; padding: 16px 4px; }
  .site-header nav .nav-contact { border: 0; margin-top: 15px; text-align: center; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { margin-left: 14vw; }
  .hero-tags { position: static; margin-top: 10px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { gap: 48px; grid-template-columns: 1fr; }
  .service-row.reverse .service-image, .service-row.reverse .service-content { order: initial; }
  .service-image img { max-height: 520px; }
  .about { gap: 60px; }
  .contact-form-section { gap: 65px; grid-template-columns: 1fr; padding: 90px 6vw 120px; }
  .contact-form-intro { position: static; }
}

@media (max-width: 680px) {
  .desktop-break { display: none; }
  .section { padding: 85px 6vw; }
  .hero { min-height: 0; padding: 135px 6vw 75px; }
  .hero h1 { font-size: 39px; letter-spacing: -.035em; line-height: 1.48; }
  .hero-lead br { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .button { min-width: 0; width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-visual { margin: 45px 0 0; }
  .hero-tags { flex-wrap: wrap; margin-top: 28px; }
  .section-head { gap: 22px; grid-template-columns: 46px 1fr; margin-bottom: 52px; }
  .section-number { font-size: 28px; }
  .section-head h2, .about-copy h2, .contact-section h2 { font-size: 33px; letter-spacing: -.035em; line-height: 1.5; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid article { min-height: 230px; }
  .service-row { padding: 60px 0; }
  .service-content h3 { font-size: 31px; }
  .service-facts { grid-template-columns: 1fr; }
  .deliverable-list > div { gap: 12px; grid-template-columns: 42px 1fr; }
  .deliverable-list p { grid-column: 2; }
  .works-grid { grid-template-columns: 1fr; }
  .works-grid article.work-large { grid-column: auto; }
  .flow-list li { gap: 15px; grid-template-columns: 46px 1fr; }
  .flow-list b { font-size: 20px; }
  .about { grid-template-columns: 1fr; }
  .about-photo { max-height: 520px; overflow: hidden; }
  .about-photo img { object-position: center 24%; }
  .faq-list summary { font-size: 17px; }
  .contact-section { padding: 85px 6vw; }
  .contact-page-hero { min-height: 520px; padding: 145px 6vw 80px; }
  .contact-page-hero h1 { font-size: 40px; letter-spacing: -.03em; }
  .contact-page-hero > p:last-child { margin-left: 0; }
  .contact-form-intro h2 { font-size: 36px; }
  .name-fields, .choice-grid { grid-template-columns: 1fr; }
  .g-recaptcha { transform: scale(.9); transform-origin: left top; }
  .form-result-page { padding-left: 6vw; padding-right: 6vw; }
  .form-result-card { margin-top: 12vh; }
  footer { align-items: start; grid-template-columns: 1fr; }
  footer nav { flex-wrap: wrap; }
  footer p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
