﻿:root {
  --ink: #26352f;
  --muted: #65736d;
  --line: #dfd2bd;
  --paper: #fffaf2;
  --cream: #f6efe2;
  --sage: #7d9a82;
  --sage-dark: #263d33;
  --peach: #e9a978;
  --navy: #2f5066;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(68, 54, 39, 0.13);
  --soft-shadow: 0 16px 42px rgba(67, 73, 62, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(238, 246, 235, 0.74)),
    radial-gradient(circle at 13% 12%, rgba(232, 169, 120, 0.22), transparent 31%),
    radial-gradient(circle at 88% 8%, rgba(125, 154, 130, 0.22), transparent 27%),
    var(--paper);
  color: var(--ink);
  font-family: "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(223, 210, 189, 0.7);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header[data-elevated="true"] {
  border-color: rgba(125, 154, 130, 0.35);
  background: rgba(255, 250, 242, 0.95);
  box-shadow: var(--soft-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--paper);
  font-family: "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  font-weight: 800;
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-family: "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.brand-sub {
  color: var(--muted);
  font-family: "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 4px;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 18px !important;
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 40px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 104px);
  margin: 0 auto;
  padding: 64px 0 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-family: "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-break: strict;
  word-break: keep-all;
}

.nowrap {
  white-space: nowrap;
}

h1 {
  margin-bottom: 24px;
  max-width: 720px;
  font-size: clamp(42px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1.13;
}

.hero-accent {
  color: #e7771d;
}

.lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.hero-copy {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(38, 61, 51, 0.2);
}

.contact .button.primary {
  background: #e7771d;
  box-shadow: none;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(223, 210, 189, 0.88);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--soft-shadow);
}

.trust-strip div {
  padding: 18px 20px;
  border-right: 1px solid rgba(223, 210, 189, 0.65);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip dt {
  color: var(--sage-dark);
  font-family: "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  font-size: clamp(22px, 2vw, 25px);
  font-weight: 800;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(223, 210, 189, 0.85);
  border-radius: 42px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(255, 250, 242, 0.68), rgba(255, 250, 242, 0.08) 44%, rgba(38, 53, 47, 0.18));
}

.hero-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(223, 210, 189, 0.85);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.floating-card p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.floating-card strong {
  display: block;
  font-size: 16px;
}

.card-top {
  top: 34px;
  left: 34px;
  padding: 18px 20px 18px 46px;
}

.status-dot {
  position: absolute;
  top: 23px;
  left: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 0 7px rgba(233, 169, 120, 0.17);
}

.card-bottom {
  right: 34px;
  bottom: 34px;
  padding: 18px 22px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(650px, 1.12fr) minmax(340px, 0.72fr);
  gap: 40px;
  align-items: center;
  border-top: 1px solid rgba(223, 210, 189, 0.78);
}

.intro .section-heading {
  max-width: 720px;
}

.intro .section-heading h2 {
  word-break: normal;
  overflow-wrap: normal;
}

.heading-line {
  display: block;
  white-space: nowrap;
}

.intro > p {
  max-width: 440px;
  width: 100%;
  margin-top: 34px;
  justify-self: end;
  overflow-wrap: break-word;
  transform: none;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 3.35vw, 46px);
  line-height: 1.25;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.intro > p,
.proof-card p,
.profile-copy p,
.contact p {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.support {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 28px;
  padding-top: 0;
}

.support-panel {
  padding: 40px;
  border: 1px solid rgba(223, 210, 189, 0.84);
  border-radius: 32px;
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.support-panel .eyebrow {
  color: #d9c79c;
}

.support-panel h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.35;
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  padding: 20px 26px;
  border: 1px solid rgba(223, 210, 189, 0.82);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(73, 62, 49, 0.07);
}

.support-list span {
  color: var(--peach);
  font-size: 26px;
  font-weight: 800;
}

.support-list p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(223, 210, 189, 0.86);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 32px rgba(73, 62, 49, 0.06);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  background: rgba(125, 154, 130, 0.16);
  color: var(--sage-dark);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-grid h3,
.flow-list h3 {
  margin-bottom: 14px;
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.5;
}

.service-grid h3 {
  min-height: 30px;
  white-space: nowrap;
}

.service-grid p,
.flow-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.service-note {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.price {
  padding-top: 40px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-grid article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(223, 210, 189, 0.86);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 38px rgba(73, 62, 49, 0.08);
}

.price-grid article.featured {
  background: linear-gradient(145deg, rgba(38, 61, 51, 0.96), rgba(59, 88, 73, 0.96));
  color: var(--white);
}

.plan-label {
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured .plan-label {
  color: #d9c79c;
}

.price-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(19px, 1.5vw, 22px);
}

.plan-price {
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.25;
}

.featured .plan-price {
  color: var(--white);
}

.price-grid article > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.featured > p:last-child {
  color: rgba(255, 255, 255, 0.78) !important;
}

.plan-options {
  display: grid;
  gap: 10px;
  margin: 2px 0 18px;
}

.plan-options p {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(246, 239, 226, 0.9);
  color: var(--sage-dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
}

.plan-options span {
  flex: 0 0 64px;
  color: var(--sage);
  font-size: 13px;
}

.price-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.flow {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.flow-list {
  display: grid;
  gap: 16px;
}

.flow-list div {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 20px;
  padding: 24px;
  border: 1px solid rgba(202, 214, 224, 0.72);
  border-radius: 26px;
  background: rgba(247, 250, 252, 0.72);
}

.flow-list span {
  grid-row: span 2;
  color: var(--navy);
  font-family: "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 800;
}

.proof {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 28px;
}

.proof-card,
.proof-list,
.contact {
  border: 1px solid rgba(223, 210, 189, 0.82);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.proof-card {
  padding: 48px;
}

.proof-list {
  padding: 40px;
}

.proof-list p {
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-weight: 800;
}

.proof-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 700;
}

.proof-list li {
  position: relative;
  padding-left: 28px;
}

.proof-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--peach);
}

.profile {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 30px;
  align-items: stretch;
  padding-top: 26px;
}

.profile-copy,
.profile-card {
  border: 1px solid rgba(223, 210, 189, 0.82);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.profile-copy {
  padding: 48px;
}

.profile-card {
  padding: 40px;
}

.profile-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.3;
}

.profile-mark {
  width: 138px;
  height: 138px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: 0;
}

.profile-card h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.profile-card > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-weight: 700;
}

.profile-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.profile-card dl div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(246, 239, 226, 0.86);
}

.profile-card dt {
  margin-bottom: 6px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.profile-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.8;
}

.faq {
  padding-top: 32px;
}

.faq-list {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 14px;
}

.faq-list details {
  border: 1px solid rgba(223, 210, 189, 0.84);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(73, 62, 49, 0.07);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--sage);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.9;
}

.contact {
  width: min(940px, calc(100% - 40px));
  margin: 30px auto 96px;
  padding: 64px 48px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
}

.contact p {
  max-width: 680px;
  margin: 0 auto 32px;
}

.contact-box {
  display: inline-grid;
  justify-items: center;
  gap: 12px;
}

.contact .mail-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid rgba(223, 210, 189, 0.78);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-family: "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  font-weight: 800;
}

@media (min-width: 1181px) and (max-height: 900px) {
  .site-header {
    margin-top: 10px;
    padding: 10px 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 56px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 4.2vw, 54px);
  }

  .lead {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.85;
  }

  .hero-actions {
    margin-bottom: 24px;
  }

  .trust-strip div {
    padding: 14px 18px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual img {
    height: 520px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    width: calc(100% - 28px);
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--sage-dark);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    min-width: 230px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.98);
    box-shadow: var(--soft-shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero,
  .intro,
  .flow,
  .proof,
  .support,
  .profile {
    grid-template-columns: 1fr;
  }

  .intro > p {
    margin-top: 0;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(40px, 7vw, 56px);
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-visual img {
    height: 460px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header,
  .hero,
  .section,
  .contact,
  .site-footer {
    width: calc(100% - 28px);
  }

  .brand {
    min-width: auto;
  }

  .brand-sub {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 42px);
    overflow-wrap: normal;
  }

  .lead {
    font-size: 16px;
  }

  h1,
  h2,
  h3,
  p,
  li,
  dd {
    word-break: normal;
    overflow-wrap: normal;
  }

  .trust-strip,
  .service-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(223, 210, 189, 0.65);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(28px, 9vw, 32px);
  }

  .service-grid h3 {
    min-height: auto;
    white-space: normal;
  }

  .heading-line {
    white-space: normal;
  }

  .proof-card,
  .proof-list,
  .profile-copy,
  .profile-card,
  .contact {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .plan-options p {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 88px;
    gap: 6px;
    white-space: normal;
  }

  .plan-options span {
    flex: none;
  }

  .support-panel,
  .support-list article {
    padding: 24px;
    border-radius: 24px;
  }

  .support-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flow-list div {
    grid-template-columns: 1fr;
  }

  .flow-list span {
    grid-row: auto;
    margin-bottom: 8px;
  }

  .site-footer {
    display: block;
  }
}

@media (max-width: 420px) {
  .site-header,
  .hero,
  .section,
  .contact,
  .site-footer {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: 32px;
  }

  .section-heading h2,
  .contact h2,
  .profile-copy h2 {
    font-size: 28px;
  }

  .proof-card,
  .proof-list,
  .profile-copy,
  .profile-card,
  .contact {
    padding: 26px 18px;
  }
}

