:root {
  --paper: #fffaf6;
  --ink: #352333;
  --muted: #756470;
  --pink: #b73165;
  --soft-pink: #f7dce5;
  --line: #e8dbe0;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

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

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

a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 6px;
}

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

.wrap {
  width: min(1180px, calc(100% - 96px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  padding: 8px 20px;
  background: white;
  z-index: 5;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, var(--serif);
  font-size: 31px;
  font-weight: bold;
  line-height: 1;
}

.brand-ja {
  font-family: var(--sans);
  font-size: 15px;
  margin-left: 8px;
  font-weight: 600;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.site-header nav a {
  transition: color .2s;
}

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

.nav-contact {
  border-bottom: 1px solid var(--ink);
  padding-block: 8px;
}

.nav-contact span {
  margin-left: 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 715px;
  padding-block: 60px;
  gap: 22px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 700;
  margin: 0 0 25px;
  color: var(--pink);
}

.tiny-line {
  display: inline-block;
  width: 27px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 65px);
  line-height: 1.45;
  letter-spacing: .03em;
  font-weight: 600;
  margin: 0 0 25px;
}

h1 span {
  color: var(--pink);
}

.hero-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 2.1;
  margin: 0 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 16px 27px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

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

.button-primary {
  color: white;
  background: var(--pink);
}

.button-primary:hover {
  background: #96214f;
}

.button span {
  font-size: 21px;
}

.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 17px;
}

.hero-note strong {
  color: var(--ink);
  font-weight: 500;
  margin-left: 8px;
}

.hero-visual {
  position: relative;
  padding: 30px 0 70px;
}

.core-image {
  width: 100%;
  height: auto;
  border-radius: 50% 50% 8% 8%;
}

.visual-caption {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .19em;
  color: #967c87;
}

.core-greeting {
  position: absolute;
  bottom: 37px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 23px;
  color: var(--pink);
}

.greeting-line {
  display: inline-block;
  height: 25px;
  width: 1px;
  background: var(--pink);
  transform: rotate(-25deg);
  margin-right: 17px;
  vertical-align: middle;
}

.visual-label {
  position: absolute;
  bottom: 2px;
  right: 12%;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted);
}

.section {
  padding-block: 95px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 45px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.55;
  letter-spacing: .02em;
  font-weight: 600;
  margin: 0;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading > p {
  color: var(--muted);
  font-size: 15px;
}

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

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.product {
  padding: 34px 38px;
  min-height: 350px;
  border: 1px solid #e2c7d2;
  background: #fae9ee;
  position: relative;
  overflow: hidden;
}

.product-store {
  background: #f2eef7;
  border-color: #dbd2e7;
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: .13em;
}

.product-top b {
  font-size: 25px;
  margin-left: 8px;
  font-weight: normal;
}

.status {
  font-family: var(--sans);
  font-size: 12px;
  padding: 3px 12px;
  border: 1px solid #ccb4c0;
  border-radius: 20px;
  letter-spacing: .03em;
}

h3 {
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.65;
  font-weight: 600;
  letter-spacing: .04em;
  margin: 29px 0 15px;
}

.product > p {
  font-size: 14px;
  color: var(--muted);
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #d9c4cf;
}

.product-bottom span {
  font-size: 11px;
  letter-spacing: .12em;
}

.product-bottom strong {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.section-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 22px;
}

@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 44px);
  }
  .site-header {
    min-height: 82px;
  }
  .brand {
    font-size: 25px;
    gap: 8px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .brand-ja {
    font-size: 12px;
    margin-left: 5px;
  }
  .site-header nav {
    gap: 18px;
  }
  .site-header nav > a:not(.nav-contact) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 45px;
  }
  h1 {
    font-size: clamp(38px, 8vw, 58px);
  }
  .hero-visual {
    max-width: 540px;
    width: 100%;
    margin: 25px auto 0;
  }
  .hero-description {
    font-size: 15px;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 22px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product {
    padding: 27px;
  }
}

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

.guide-band {
  background: #f3e4e9;
  border-block: 1px solid #e5d3db;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.steps li {
  border-top: 1px solid #cdb3c0;
  padding-top: 23px;
}

.step-number {
  font-family: Georgia, serif;
  font-size: 38px;
  color: var(--pink);
}

.steps h3 {
  font-size: 23px;
  margin: 16px 0 12px;
}

.steps p {
  font-size: 15px;
  color: #665360;
  margin: 0;
}

.support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.support-intro > p:not(.eyebrow) {
  color: var(--muted);
  margin: 24px 0 30px;
}

.support-detail {
  border-left: 1px solid var(--line);
  padding: 10px 0 10px 60px;
}

.support-tag {
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--pink);
}

.support-detail h3 {
  font-size: 22px;
  margin: 15px 0;
}

.support-detail > p {
  font-size: 15px;
  color: var(--muted);
}

.support-detail .support-price {
  font-family: Georgia, serif;
  font-size: 43px;
  color: var(--ink);
  line-height: 1.2;
  margin-block: 25px;
}

.support-price span {
  font-family: var(--sans);
  font-size: 15px;
}

.text-link {
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  padding-bottom: 5px;
}

.text-link span {
  margin-left: 15px;
}

.support-detail .small-note {
  font-size: 12px;
  margin-top: 23px;
}

.faq {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 50px;
}

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

.faq-list summary {
  cursor: pointer;
  padding: 21px 35px 21px 0;
  font-weight: 600;
  list-style: none;
  position: relative;
  font-size: 15px;
}

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

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  font-size: 21px;
  font-weight: 400;
  color: var(--pink);
}

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

.faq-list details p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  padding: 0 30px 23px 0;
}

.closing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 55px;
  color: var(--pink);
}

.closing > span {
  font-family: var(--serif);
  font-size: 24px;
}

.closing a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.site-footer {
  background: #342434;
  color: #fff7fa;
  padding: 55px 0 25px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding-bottom: 38px;
}

.footer-main .brand {
  background: var(--paper);
  border-radius: 5px;
  padding: 5px 14px;
  width: fit-content;
}

.footer-main p {
  font-size: 14px;
  color: #e0cdd8;
  margin: 14px 0 0;
}

.operator {
  text-align: right;
}

.operator a {
  display: inline-block;
  margin-top: 7px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #624857;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.footer-bottom small {
  font-size: 12px;
  color: #cfbac7;
}

.footer-bottom nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
}

.site-header .brand img {
  width: 205px;
  height: 52px;
}

@media (max-width: 800px) {
  .site-header .brand img {
    width: 172px;
    height: 44px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .steps li {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 16px;
  }
  .step-number {
    grid-row: 1 / 3;
    font-size: 32px;
  }
  .steps h3 {
    margin: 0 0 8px;
    font-size: 21px;
  }
  .steps p {
    grid-column: 2;
  }
  .support, .faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .support-detail {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 35px 0 0;
  }
  .footer-main, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .operator {
    text-align: left;
  }
  .closing > span {
    font-size: 21px;
  }
}

