:root {
  --ink: #203845;
  --ink-soft: #526873;
  --navy: #163f53;
  --navy-deep: #102f40;
  --blue: #70bce2;
  --blue-strong: #3998c0;
  --blue-pale: #e9f6fc;
  --mint: #dff4ec;
  --lilac: #eeeafd;
  --paper: #f7f7f3;
  --white: #fff;
  --line: rgba(32, 56, 69, .14);
  --sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button {
  font: inherit;
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-strong), #78d8c2);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 78px;
  border-bottom: 1px solid rgba(32, 56, 69, .08);
  background: rgba(247, 247, 243, .91);
  backdrop-filter: blur(18px) saturate(1.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  width: min(calc(100% - 48px), 1280px);
  height: 100%;
  margin-inline: auto;
}

.site-logo {
  flex: 0 0 auto;
  width: 205px;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
  margin-left: auto;
}

.desktop-menu a {
  position: relative;
  padding: 25px 0;
  color: #405761;
  font-size: 13px;
  font-weight: 600;
}

.desktop-menu a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  background: var(--blue-strong);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.header-consult {
  display: grid;
  min-width: 132px;
  min-height: 44px;
  margin-left: 34px;
  padding: 8px 20px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 700;
  place-items: center;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  padding: 48px 0 70px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -240px;
  left: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(112, 188, 226, .12);
  content: "";
  filter: blur(2px);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(0px, 2vw, 24px);
}

.hero__eyebrow {
  margin: 0 0 24px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 4.15vw, 60px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.38;
}

.hero h1 em {
  color: var(--blue-strong);
  font-style: normal;
}

.hero__lead {
  max-width: 440px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  margin: 0 19px 7px 0;
  padding-left: 15px;
  color: #36525e;
  font-size: 13px;
  font-weight: 700;
}

.hero-points li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #76cdb9;
  content: "";
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 700;
}

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

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

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  min-width: 0;
  height: 620px;
  margin: 0;
  overflow: hidden;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .4);
  content: "";
  pointer-events: none;
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: 82% center;
  transform: scale(1.16);
}

.hero__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  min-width: 186px;
  padding: 20px 24px;
  color: var(--white);
  background: var(--navy);
}

.hero__visual figcaption strong {
  grid-row: 1 / 3;
  margin-right: 10px;
  font-family: Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: .9;
}

.hero__visual figcaption span {
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .12em;
  line-height: 1;
}

.hero__visual figcaption em {
  align-self: end;
  margin-top: 7px;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
  font-style: normal;
  line-height: 1;
}

.trust-strip {
  color: var(--white);
  background: var(--navy);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.3fr;
  align-items: stretch;
  min-height: 108px;
}

.trust-strip p,
.trust-strip a {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px 30px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.trust-strip p:first-child {
  border-left: 0;
}

.trust-strip strong {
  margin-right: 12px;
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.trust-strip span {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 600;
}

.trust-strip a {
  justify-content: space-between;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.brand-proof {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.brand-proof__inner {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.brand-proof h2 {
  margin: 0;
  color: #6d8089;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}

.brand-proof__viewport {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.brand-proof__track {
  display: flex;
  width: max-content;
  animation: logo-flow 28s linear infinite;
}

.brand-proof__group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.brand-proof__group img {
  width: 88px;
  max-height: 42px;
  object-fit: contain;
  filter: saturate(.75);
}

@keyframes logo-flow {
  to { transform: translateX(-50%); }
}

.site-section {
  padding: 118px 0;
  scroll-margin-top: 78px;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading > p,
.section-heading > div > p,
.review-proof__label,
.area-panel > p,
.style-panel > p {
  margin: 0 0 14px;
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 3.7vw, 54px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.45;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .54fr);
  align-items: end;
}

.section-heading--split > p {
  grid-column: 1 / -1;
}

.section-heading--split > span {
  justify-self: end;
  padding-bottom: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.finder-section {
  background:
    radial-gradient(circle at 100% 0, rgba(238, 234, 253, .7), transparent 25%),
    var(--paper);
}

.finder-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 28px;
}

.area-panel {
  min-height: 540px;
  padding: 54px 52px 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 96% 8%, rgba(112, 188, 226, .34), transparent 29%),
    linear-gradient(145deg, var(--navy), var(--navy-deep));
}

.area-panel > p {
  color: rgba(255, 255, 255, .58);
}

.area-panel h3,
.style-panel h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.5;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.area-list a {
  position: relative;
  padding: 17px 26px 17px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 600;
}

.area-list a:nth-child(odd) {
  margin-right: 18px;
}

.area-list a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  content: "↗";
  transform: translateY(-50%);
}

.panel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 700;
}

.style-panel {
  min-height: 540px;
  padding: 52px 4px 0 46px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.style-list {
  margin-top: 27px;
}

.style-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 93px;
  border-top: 1px solid var(--line);
}

.style-list h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.style-list p {
  display: flex;
  gap: 8px;
  margin: 0;
}

.style-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 13px;
  border: 1px solid rgba(57, 152, 192, .28);
  color: #277997;
  background: rgba(255, 255, 255, .5);
  font-size: 12px;
  font-weight: 700;
}

.work-section {
  background: var(--white);
}

.income-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 38px 0;
  background: var(--mint);
}

.income-band article {
  position: relative;
  padding: 10px 54px;
}

.income-band article + article {
  border-left: 1px solid rgba(32, 56, 69, .18);
}

.income-band article > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.income-band article span {
  padding: 3px 10px;
  border: 1px solid rgba(32, 56, 69, .25);
  font-size: 11px;
  font-weight: 700;
}

.income-band article strong {
  font-size: 15px;
}

.income-band article p {
  margin: 18px 0 2px;
  color: var(--ink-soft);
  font-size: 13px;
}

.income-band article em {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.income-band article b {
  margin: 0 4px 0 9px;
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 400;
}

.data-note {
  margin: 13px 0 0;
  color: #788991;
  font-size: 11px;
  line-height: 1.7;
  text-align: right;
}

.feature-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 62px;
}

.feature-link {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 254px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.feature-link__image {
  overflow: hidden;
}

.feature-link__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86);
}

.feature-link__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.feature-link__body small,
.feature-link__body strong,
.feature-link__body em {
  display: block;
}

.feature-link__body small {
  color: var(--blue-strong);
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.feature-link__body strong {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.55;
}

.feature-link__body em {
  margin-top: 28px;
  color: var(--navy);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.safety-section {
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0, rgba(112, 188, 226, .26), transparent 27%),
    var(--navy-deep);
}

.section-heading--light > p {
  color: #8bd2f2;
}

.promise-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.promise-band a {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 30px 25px;
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.promise-band a:first-child {
  border-left: 0;
}

.promise-band span {
  color: #82c7e6;
  font-family: Georgia, serif;
  font-size: 13px;
}

.promise-band strong {
  margin-top: 38px;
  font-family: var(--serif);
  font-size: 20px;
}

.promise-band em {
  margin-top: auto;
  color: rgba(255, 255, 255, .64);
  font-size: 11px;
  font-style: normal;
  line-height: 1.7;
}

.safety-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.safety-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
}

.safety-footer a {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 700;
}

.first-section {
  background:
    linear-gradient(90deg, var(--paper) 0 62%, var(--lilac) 62% 100%);
}

.first-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.first-copy {
  position: sticky;
  top: 125px;
}

.start-flow {
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.start-flow li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 77px;
  border-bottom: 1px solid var(--line);
}

.start-flow span {
  color: var(--blue-strong);
  font-family: Georgia, serif;
  font-size: 12px;
}

.start-flow strong {
  font-size: 15px;
}

.review-proof {
  padding: 46px 50px 50px;
  background: var(--white);
}

.review-proof h3 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: 25px;
}

.review-proof blockquote {
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.review-proof blockquote p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.95;
}

.review-proof blockquote footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.review-proof blockquote strong {
  color: var(--navy);
  font-size: 12px;
}

.review-proof blockquote span {
  color: #84939a;
  font-size: 10px;
  text-align: right;
}

.review-proof .arrow-link {
  margin-top: 24px;
}

.staff-section {
  background: var(--white);
}

.staff-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 28px;
}

.staff-movie {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--navy-deep);
}

.staff-movie__video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.staff-movie__button {
  position: absolute;
  inset: 0 0 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 0;
  color: var(--white);
  background: rgba(16, 47, 64, .2);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.staff-movie__button[hidden] {
  display: none;
}

.staff-movie__button > span {
  position: relative;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: rgba(16, 47, 64, .5);
}

.staff-movie__button > span::after {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.staff-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 78px;
  color: var(--white);
  background: var(--navy);
}

.staff-facts p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.staff-facts p:first-child {
  border-left: 0;
}

.staff-facts strong {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.staff-facts span {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.staff-grid a {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--blue-pale);
}

.staff-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.staff-grid a > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
}

.staff-grid strong {
  font-size: 12px;
}

.staff-grid em {
  color: #70838c;
  font-size: 10px;
  font-style: normal;
}

.section-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 560px;
  min-height: 62px;
  margin: 34px 0 0 auto;
  padding: 15px 20px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.blog-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.section-heading--inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.section-heading--inline > a {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-row {
  position: relative;
  display: block;
  min-width: 0;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--ink);
}

.blog-row__thumb {
  display: block;
  overflow: hidden;
  background: var(--blue-pale);
}

.blog-row__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-row__body {
  display: block;
  padding-right: 30px;
}

.blog-row__body small {
  display: block;
  margin-top: 18px;
  color: #819198;
  font-size: 10px;
}

.blog-row__body strong {
  display: -webkit-box;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.75;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-row > span:last-child {
  position: absolute;
  right: 3px;
  bottom: 25px;
  color: var(--blue-strong);
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: 80px;
}

.faq-layout .section-heading h2 {
  font-size: clamp(36px, 3.2vw, 46px);
  white-space: nowrap;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

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

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 5px;
  color: #645c67;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 1px;
  background: var(--blue-strong);
  content: "";
  transition: transform .25s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: 0;
  padding: 0 50px 27px 5px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.final-cta {
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(132, 220, 200, .5), transparent 29%),
    linear-gradient(125deg, #2c7fa0, #4aa9cb 58%, #77c9d2);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.final-cta__inner > p {
  grid-column: 1 / -1;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.5;
}

.final-cta__inner > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  min-width: 300px;
}

.final-cta .button--primary {
  color: var(--navy);
  background: var(--white);
}

.final-cta .arrow-link {
  justify-content: space-between;
  color: var(--white);
}

.site-footer {
  padding: 58px 0 110px;
  color: rgba(255, 255, 255, .72);
  background: var(--navy-deep);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.site-footer__logo {
  width: 230px;
}

.site-footer nav {
  display: flex;
  gap: 26px;
  font-size: 11px;
}

.site-footer small {
  grid-column: 1 / -1;
  margin-top: 48px;
  font-size: 10px;
}

.sticky-actions {
  display: none;
}

.page-top {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: rgba(255, 255, 255, .9);
  font-size: 15px;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s;
  visibility: hidden;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .desktop-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-consult,
  .button,
  .arrow-link,
  .area-list a,
  .panel-link,
  .style-list a,
  .feature-link,
  .promise-band a,
  .section-link,
  .blog-row,
  .staff-grid a,
  .safety-footer a {
    transition: opacity .22s ease, color .22s ease, background-color .22s ease, transform .22s ease;
  }

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

  .arrow-link:hover,
  .panel-link:hover,
  .safety-footer a:hover {
    opacity: .68;
  }

  .area-list a:hover,
  .style-list a:hover,
  .promise-band a:hover,
  .section-link:hover,
  .blog-row:hover,
  .staff-grid a:hover {
    opacity: .76;
  }

  .feature-link__image img,
  .blog-row__thumb img,
  .staff-grid img {
    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
  }

  .feature-link:hover .feature-link__image img,
  .blog-row:hover .blog-row__thumb img,
  .staff-grid a:hover img {
    transform: scale(1.035);
  }

  .brand-proof__track:hover {
    animation-play-state: paused;
  }
}

@media (max-width: 980px) {
  .desktop-menu {
    gap: 16px;
  }

  .desktop-menu a {
    font-size: 12px;
  }

  .header-consult {
    margin-left: 20px;
  }

  .hero__inner {
    gap: 32px;
  }

  .hero__visual {
    height: 560px;
  }

  .trust-strip p,
  .trust-strip a {
    padding-inline: 17px;
  }

  .finder-layout,
  .first-layout {
    gap: 38px;
  }

  .area-panel {
    padding-inline: 34px;
  }

  .style-panel {
    padding-left: 26px;
  }

  .income-band article {
    padding-inline: 34px;
  }

  .feature-link {
    grid-template-columns: 40% 60%;
  }

  .feature-link__body {
    padding: 22px;
  }

  .staff-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .page-width,
  .site-header__inner {
    width: min(calc(100% - 40px), 640px);
  }

  .site-header {
    height: 66px;
  }

  .site-logo {
    width: 168px;
  }

  .desktop-menu,
  .header-consult {
    display: none;
  }

  .menu-button {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    position: absolute;
    right: 5px;
    width: 28px;
    height: 1px;
    background: var(--navy);
    transition: transform .25s, top .25s;
  }

  .menu-button span:first-child {
    top: 17px;
  }

  .menu-button span:last-child {
    top: 27px;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    top: 22px;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    top: 22px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 66px 0 0;
    display: block;
    padding: 24px 20px 40px;
    background: rgba(247, 247, 243, .98);
    overflow-y: auto;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 53px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-menu a::after {
    content: "→";
  }

  .mobile-menu__consult {
    justify-content: center !important;
    margin-top: 24px;
    border: 0 !important;
    color: var(--white);
    background: var(--navy);
  }

  .mobile-menu__consult::after {
    display: none;
  }

  .hero {
    padding: 54px 0 42px;
  }

  .hero::before {
    top: -120px;
    left: -190px;
    width: 420px;
    height: 420px;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }

  .hero__copy {
    width: 100%;
    padding: 0;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 39px);
    line-height: 1.42;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-points {
    display: grid;
    gap: 5px;
    margin-top: 20px;
  }

  .hero-points li {
    margin: 0;
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .button {
    min-height: 58px;
    width: 100%;
  }

  .arrow-link {
    align-self: stretch;
  }

  .hero__visual {
    width: calc(100% + 20px);
    height: 430px;
    margin-right: -20px;
  }

  .hero__visual img {
    object-position: 82% center;
    transform: scale(1.08);
  }

  .hero__visual figcaption {
    min-width: 164px;
    padding: 16px 19px;
  }

  .hero__visual figcaption strong {
    font-size: 43px;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .trust-strip p {
    flex-direction: column;
    justify-content: center;
    min-height: 89px;
    padding: 13px 5px;
    text-align: center;
  }

  .trust-strip strong {
    margin: 0 0 7px;
    font-size: 29px;
  }

  .trust-strip span {
    font-size: 10px;
  }

  .trust-strip a {
    grid-column: 1 / -1;
    min-height: 58px;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .brand-proof {
    padding: 24px 0;
  }

  .brand-proof__inner {
    display: block;
    width: 100%;
  }

  .brand-proof h2 {
    margin: 0 20px 18px;
  }

  .brand-proof__group {
    gap: 30px;
    padding-right: 30px;
  }

  .brand-proof__group img {
    width: 74px;
    max-height: 36px;
  }

  .site-section {
    padding: 78px 0;
    scroll-margin-top: 66px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading > p,
  .section-heading > div > p,
  .review-proof__label,
  .area-panel > p,
  .style-panel > p {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .section-heading h2 {
    font-size: 34px;
    line-height: 1.5;
  }

  .section-heading--split {
    display: block;
  }

  .section-heading--split > span {
    display: block;
    margin-top: 17px;
    padding: 0;
    font-size: 14px;
  }

  .finder-layout {
    display: block;
  }

  .area-panel {
    min-height: 0;
    padding: 38px 28px 34px;
  }

  .area-panel h3,
  .style-panel h3 {
    font-size: 23px;
  }

  .area-list {
    margin-top: 28px;
  }

  .area-list a {
    padding: 14px 21px 14px 0;
    font-size: 13px;
  }

  .area-list a:nth-child(odd) {
    margin-right: 14px;
  }

  .panel-link {
    margin-top: 30px;
    font-size: 13px;
  }

  .style-panel {
    min-height: 0;
    margin-top: 42px;
    padding: 32px 0 0;
  }

  .style-list {
    margin-top: 22px;
  }

  .style-list > div {
    min-height: 84px;
  }

  .style-list h4 {
    font-size: 16px;
  }

  .style-list a {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .income-band {
    display: block;
    padding: 18px 24px;
  }

  .income-band article {
    padding: 24px 0;
  }

  .income-band article + article {
    border-top: 1px solid rgba(32, 56, 69, .18);
    border-left: 0;
  }

  .income-band article p {
    margin-top: 14px;
  }

  .income-band article b {
    font-size: 49px;
  }

  .data-note {
    font-size: 10px;
    text-align: left;
  }

  .feature-links {
    display: block;
    margin-top: 43px;
  }

  .feature-link {
    grid-template-columns: 42% 58%;
    min-height: 190px;
  }

  .feature-link + .feature-link {
    margin-top: 22px;
  }

  .feature-link__body {
    padding: 20px 18px;
  }

  .feature-link__body strong {
    margin-top: 8px;
    font-size: 19px;
  }

  .feature-link__body em {
    margin-top: 20px;
  }

  .promise-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-band a {
    min-height: 175px;
    padding: 23px 16px;
  }

  .promise-band a:nth-child(3) {
    border-left: 0;
  }

  .promise-band a:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .promise-band strong {
    margin-top: 22px;
    font-size: 17px;
  }

  .promise-band em {
    font-size: 10px;
  }

  .safety-footer {
    display: block;
    margin-top: 28px;
  }

  .safety-footer p {
    font-size: 12px;
  }

  .safety-footer a {
    display: inline-flex;
    gap: 20px;
    margin-top: 17px;
  }

  .first-section {
    background: linear-gradient(180deg, var(--paper) 0 36%, var(--lilac) 36% 100%);
  }

  .first-layout {
    display: block;
  }

  .first-copy {
    position: static;
  }

  .start-flow {
    margin-top: 34px;
  }

  .review-proof {
    margin-top: 52px;
    padding: 32px 24px 36px;
  }

  .review-proof h3 {
    margin-bottom: 20px;
    font-size: 21px;
  }

  .review-proof blockquote {
    padding: 22px 0;
  }

  .review-proof blockquote p {
    font-size: 14px;
  }

  .review-proof blockquote footer {
    display: block;
  }

  .review-proof blockquote span {
    display: block;
    margin-top: 3px;
    text-align: left;
  }

  .review-proof .arrow-link {
    font-size: 12px;
  }

  .staff-layout {
    display: block;
  }

  .staff-movie__video {
    aspect-ratio: 16 / 11;
  }

  .staff-movie__button {
    inset: 0 0 70px;
  }

  .staff-facts {
    min-height: 70px;
  }

  .staff-facts strong {
    font-size: 21px;
  }

  .staff-grid {
    gap: 10px;
    margin-top: 18px;
  }

  .staff-grid a > span {
    padding: 8px 9px;
  }

  .section-link {
    margin-top: 26px;
  }

  .section-heading--inline {
    align-items: end;
  }

  .section-heading--inline > a {
    font-size: 11px;
  }

  .blog-list {
    display: block;
  }

  .blog-row {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 14px;
    min-height: 104px;
    padding: 12px 0;
  }

  .blog-row__thumb img {
    aspect-ratio: 4 / 3;
  }

  .blog-row__body {
    padding: 0;
  }

  .blog-row__body small {
    margin-top: 0;
  }

  .blog-row__body strong {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.65;
  }

  .blog-row > span:last-child {
    position: static;
  }

  .faq-layout {
    display: block;
  }

  .faq-layout .section-heading h2 {
    font-size: 34px;
    white-space: normal;
  }

  .faq-list {
    margin-top: 12px;
  }

  .faq-list summary {
    padding: 21px 45px 21px 2px;
    font-size: 14px;
  }

  .faq-list details p {
    padding: 0 32px 23px 2px;
    font-size: 13px;
  }

  .final-cta {
    padding: 76px 0;
  }

  .final-cta__inner {
    display: block;
  }

  .final-cta h2 {
    font-size: 36px;
  }

  .final-cta__inner > div {
    min-width: 0;
    margin-top: 34px;
  }

  .site-footer {
    padding: 46px 0 52px;
  }

  .site-footer__inner {
    display: block;
  }

  .site-footer__logo {
    display: block;
    width: 205px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 30px;
  }

  .site-footer small {
    display: block;
    margin-top: 35px;
  }

  .sticky-actions {
    position: fixed;
    z-index: 80;
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 58px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 13px 32px rgba(25, 58, 73, .18);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition: opacity .25s, transform .3s;
    visibility: hidden;
  }

  .sticky-actions.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .sticky-actions a {
    display: grid;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    place-items: center;
  }

  .sticky-actions__primary {
    color: var(--white) !important;
    background: var(--navy);
  }

  .page-top {
    right: 12px;
    bottom: 81px;
    width: 41px;
    height: 41px;
  }
}

@media (max-width: 370px) {
  .page-width,
  .site-header__inner {
    width: calc(100% - 32px);
  }

  .site-logo {
    width: 158px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero__visual {
    height: 395px;
  }

  .style-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px 0;
  }

  .style-list p {
    justify-content: flex-start;
  }

  .feature-link {
    grid-template-columns: 39% 61%;
  }

  .feature-link__body {
    padding: 17px 14px;
  }

  .feature-link__body strong {
    font-size: 17px;
  }

  .blog-row {
    grid-template-columns: 94px minmax(0, 1fr) 14px;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .brand-proof__track {
    animation: none;
  }
}

/* 2026 adult-cute art direction */
:root {
  --ink: #46556a;
  --ink-soft: #6d7889;
  --navy: #4c7d9d;
  --navy-deep: #385f78;
  --blue: #83cbed;
  --blue-strong: #58add8;
  --blue-pale: #eef9ff;
  --mint: #e8f8f2;
  --lilac: #f1edff;
  --blush: #ffedf4;
  --peach: #fff3e9;
  --paper: #fffafc;
  --line: rgba(70, 85, 106, .13);
  --round: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --soft-shadow: 0 22px 55px rgba(83, 128, 157, .13);
}

.site-header {
  background: rgba(255, 250, 252, .92);
}

.header-consult,
.button,
.arrow-link,
.style-list a,
.section-link {
  border-radius: 999px;
}

.header-consult,
.button--primary {
  background: linear-gradient(110deg, #62b8df, #79cdbc);
  box-shadow: 0 12px 28px rgba(88, 173, 216, .2);
}

.hero {
  background:
    radial-gradient(circle at 10% 18%, rgba(131, 203, 237, .22), transparent 25%),
    radial-gradient(circle at 43% 92%, rgba(255, 215, 229, .34), transparent 27%);
}

.hero::before {
  background: rgba(218, 239, 250, .5);
}

.hero::after {
  position: absolute;
  top: 86px;
  left: calc(50% - 66px);
  color: #b7a7e8;
  content: "✦";
  font-size: 26px;
  line-height: 1;
  opacity: .7;
  transform: rotate(12deg);
}

.hero h1,
.section-heading h2,
.area-panel h3,
.style-panel h3,
.style-list h4,
.feature-link__body strong,
.promise-band strong,
.review-proof h3,
.final-cta h2 {
  font-family: var(--round);
  font-weight: 700;
}

.hero h1 {
  letter-spacing: -.035em;
}

.hero h1 em {
  color: #59add6;
}

.hero-points li {
  margin: 0 8px 8px 0;
  padding: 6px 13px 6px 27px;
  border: 1px solid rgba(88, 173, 216, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.hero-points li::before {
  left: 13px;
}

.arrow-link {
  padding: 10px 16px;
  border: 1px solid rgba(88, 173, 216, .26);
}

.hero__visual {
  border-radius: 52px 18px 52px 18px;
  box-shadow: var(--soft-shadow);
}

.hero__visual figcaption {
  border-radius: 28px 0 0;
  background: linear-gradient(135deg, rgba(76, 125, 157, .94), rgba(104, 190, 181, .94));
}

.trust-strip {
  color: var(--ink);
  background: linear-gradient(100deg, #e5f6fd, #f1edff 54%, #e5f8f1);
}

.trust-strip p,
.trust-strip a {
  border-left-color: rgba(255, 255, 255, .9);
}

.trust-strip strong {
  color: var(--blue-strong);
  font-family: var(--round);
}

.trust-strip span {
  color: var(--ink-soft);
}

.trust-strip a {
  color: var(--ink);
}

.section-heading > p,
.section-heading > div > p,
.review-proof__label,
.area-panel > p,
.style-panel > p {
  letter-spacing: .14em;
}

.section-heading > p::before,
.section-heading > div > p::before {
  margin-right: 7px;
  color: #b2a3e6;
  content: "✦";
}

.finder-section {
  background:
    radial-gradient(circle at 100% 0, rgba(238, 234, 253, .78), transparent 25%),
    radial-gradient(circle at 0 100%, rgba(225, 247, 240, .68), transparent 23%),
    var(--paper);
}

.area-panel {
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 38px 14px 38px 14px;
  color: var(--ink);
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 255, 255, .75), transparent 29%),
    linear-gradient(145deg, #dff3fc, #e9e5fb 56%, #e3f6ef);
  box-shadow: var(--soft-shadow);
}

.area-panel > p {
  color: var(--blue-strong);
}

.area-list {
  border-top-color: rgba(70, 85, 106, .16);
}

.area-list a {
  border-bottom-color: rgba(70, 85, 106, .16);
  color: var(--ink);
}

.panel-link {
  border-bottom-color: rgba(70, 85, 106, .5);
}

.style-panel {
  padding: 52px 38px 28px 46px;
  border: 1px solid rgba(112, 188, 226, .16);
  border-radius: 14px 38px 14px 38px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--soft-shadow);
}

.style-list a {
  border-color: rgba(88, 173, 216, .22);
  background: var(--blue-pale);
}

.income-band {
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 34px 12px 34px 12px;
  background: linear-gradient(115deg, var(--mint), var(--blue-pale) 55%, var(--blush));
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.income-band article span {
  border-color: rgba(88, 173, 216, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
}

.income-band article em {
  color: #4a86a7;
}

.feature-link {
  border: 1px solid rgba(112, 188, 226, .15);
  border-radius: 30px 12px 30px 12px;
  background: var(--blue-pale);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.feature-link + .feature-link {
  background: linear-gradient(135deg, #fff, var(--lilac));
}

.safety-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 0, rgba(255, 255, 255, .82), transparent 27%),
    radial-gradient(circle at 0 100%, rgba(255, 230, 239, .7), transparent 29%),
    linear-gradient(135deg, #e2f5fd, #eeeafd 52%, #e3f7ef);
}

.section-heading--light > p {
  color: var(--blue-strong);
}

.promise-band {
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 36px 14px 36px 14px;
  background: rgba(255, 255, 255, .6);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.promise-band a {
  border-left-color: rgba(70, 85, 106, .1);
}

.promise-band em,
.safety-footer p {
  color: var(--ink-soft);
}

.safety-footer a {
  border-bottom-color: rgba(70, 85, 106, .5);
}

.first-section {
  background: linear-gradient(90deg, var(--paper) 0 62%, #f0ecff 62% 100%);
}

.start-flow span {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--blue-strong);
  background: var(--blue-pale);
  font-family: var(--round);
  font-size: 11px;
  place-items: center;
}

.review-proof {
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 36px 14px 36px 14px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--soft-shadow);
}

.staff-section {
  background:
    radial-gradient(circle at 100% 14%, rgba(255, 229, 239, .65), transparent 22%),
    radial-gradient(circle at 0 82%, rgba(221, 245, 237, .72), transparent 24%),
    var(--white);
}

.staff-movie {
  border-radius: 36px 14px 36px 14px;
  box-shadow: var(--soft-shadow);
}

.staff-facts {
  background: linear-gradient(105deg, #578eac, #70bdb0);
}

.staff-grid a {
  border-radius: 24px 9px 24px 9px;
  box-shadow: 0 12px 28px rgba(83, 128, 157, .11);
}

.section-link {
  border: 1px solid rgba(88, 173, 216, .22);
  background: var(--blue-pale);
}

.blog-section {
  background: linear-gradient(180deg, var(--paper), #fbf8ff);
}

.blog-row__thumb {
  border-radius: 24px 9px 24px 9px;
  box-shadow: 0 12px 28px rgba(83, 128, 157, .09);
}

.faq-list {
  border-top: 0;
}

.faq-list details {
  margin-bottom: 10px;
  border: 1px solid rgba(112, 188, 226, .16);
  border-radius: 20px;
  background: linear-gradient(110deg, #fff, #fbf9ff);
}

.faq-list summary {
  padding: 22px 54px 22px 20px;
}

.faq-list details p {
  padding: 0 50px 24px 20px;
}

.final-cta {
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, .82), transparent 29%),
    radial-gradient(circle at 8% 90%, rgba(255, 223, 235, .7), transparent 31%),
    linear-gradient(125deg, #dff4fd, #e8efff 52%, #e4f8f0);
}

.final-cta__inner > p {
  color: var(--blue-strong);
}

.final-cta .button--primary {
  color: var(--white);
  background: linear-gradient(110deg, #579fc4, #72c8ba);
}

.final-cta .arrow-link {
  color: var(--ink);
}

.page-top {
  border-color: rgba(88, 173, 216, .25);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .mobile-menu__consult {
    border-radius: 999px;
    background: linear-gradient(110deg, #62b8df, #79cdbc);
  }

  .hero::after {
    top: 74px;
    right: 18px;
    left: auto;
    font-size: 21px;
  }

  .hero-points {
    display: flex;
    gap: 0;
  }

  .hero-points li {
    margin: 0 6px 7px 0;
    padding: 5px 10px 5px 24px;
    font-size: 11px;
  }

  .hero-points li::before {
    left: 10px;
  }

  .hero__visual {
    border-radius: 36px 12px 36px 12px;
  }

  .trust-strip a {
    border-top-color: rgba(255, 255, 255, .9);
  }

  .area-panel {
    border-radius: 30px 12px 30px 12px;
  }

  .style-panel {
    padding: 32px 20px 10px;
    border-radius: 12px 30px 12px 30px;
  }

  .promise-band a:nth-child(n + 3) {
    border-top-color: rgba(70, 85, 106, .1);
  }

  .review-proof {
    border-radius: 30px 12px 30px 12px;
  }

  .faq-list summary {
    padding: 20px 45px 20px 16px;
  }

  .faq-list details p {
    padding: 0 32px 22px 16px;
  }

  .sticky-actions {
    border-radius: 22px;
    background: rgba(255, 255, 255, .86);
  }

  .sticky-actions__primary {
    border-radius: 17px;
    background: linear-gradient(110deg, #579fc4, #72c8ba);
  }
}

/* Brand-specific, human editorial finish */
:root {
  --ink: #344b5a;
  --ink-soft: #647580;
  --navy: #35647e;
  --navy-deep: #274c61;
  --blue: #70bce2;
  --blue-strong: #4d9fc8;
  --blue-pale: #edf7fb;
  --mint: #eef7f4;
  --lilac: #f4f2f7;
  --blush: #faf1f4;
  --paper: #fcfcfb;
  --line: rgba(52, 75, 90, .14);
  --round: "Noto Sans JP", "Yu Gothic", sans-serif;
  --soft-shadow: 0 14px 34px rgba(64, 98, 117, .08);
}

.site-header {
  background: rgba(255, 255, 255, .94);
}

.header-consult,
.button,
.arrow-link,
.style-list a,
.section-link {
  border-radius: 12px;
}

.header-consult,
.button--primary {
  background: var(--blue-strong);
  box-shadow: none;
}

.hero {
  background: var(--white);
}

.hero::before {
  top: -260px;
  left: -120px;
  width: 590px;
  height: 590px;
  background: #e8f5fa;
  filter: none;
}

.hero::after,
.section-heading > p::before,
.section-heading > div > p::before {
  content: none;
}

.hero h1,
.section-heading h2,
.area-panel h3,
.style-panel h3,
.style-list h4,
.feature-link__body strong,
.promise-band strong,
.review-proof h3,
.final-cta h2 {
  font-family: var(--sans);
  font-weight: 700;
}

.hero h1 {
  letter-spacing: -.04em;
}

.hero h1 em {
  color: var(--blue-strong);
}

.hero-points li {
  margin: 0 20px 7px 0;
  padding: 0 0 0 15px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-points li::before {
  left: 0;
}

.arrow-link {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
}

.hero__visual {
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.hero__visual figcaption {
  border-radius: 16px 0 0;
  background: rgba(53, 100, 126, .94);
}

.trust-strip {
  color: var(--ink);
  background: #eaf5fa;
}

.trust-strip p,
.trust-strip a {
  border-left-color: rgba(255, 255, 255, .92);
}

.trust-strip strong {
  color: var(--blue-strong);
  font-family: var(--sans);
}

.section-heading > p,
.section-heading > div > p,
.review-proof__label,
.area-panel > p,
.style-panel > p {
  color: var(--blue-strong);
  letter-spacing: .04em;
}

.finder-section {
  background: #fafafa;
}

.area-panel {
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: #e8f4f9;
  box-shadow: none;
}

.area-list,
.area-list a {
  border-color: rgba(52, 75, 90, .16);
}

.style-panel {
  padding: 52px 38px 28px 46px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: none;
}

.style-list a {
  border-color: rgba(77, 159, 200, .22);
  border-radius: 8px;
  background: #f3f9fc;
}

.income-band {
  border: 0;
  border-radius: 22px;
  background: #edf6f8;
  box-shadow: none;
}

.income-band article span {
  border-color: rgba(77, 159, 200, .25);
  border-radius: 6px;
  background: var(--white);
}

.feature-link,
.feature-link + .feature-link {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: none;
}

.feature-link__body small {
  font-family: var(--sans);
  letter-spacing: .03em;
}

.safety-section {
  color: var(--ink);
  background: #edf6f9;
}

.promise-band {
  border: 1px solid rgba(52, 75, 90, .1);
  border-radius: 20px;
  background: var(--white);
  box-shadow: none;
}

.promise-band a {
  border-left-color: var(--line);
}

.first-section {
  background: linear-gradient(90deg, #fcfcfb 0 62%, #f8f1f3 62% 100%);
}

.start-flow span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-family: var(--sans);
  place-items: initial;
}

.review-proof {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: none;
}

.staff-section {
  background: var(--white);
}

.staff-movie {
  border-radius: 18px;
  box-shadow: none;
}

.staff-facts {
  background: var(--navy);
}

.staff-grid a {
  border-radius: 12px;
  box-shadow: none;
}

.section-link {
  border-color: rgba(77, 159, 200, .22);
  background: #f2f8fb;
}

.blog-section {
  background: #fafafa;
}

.blog-row__thumb {
  border-radius: 12px;
  box-shadow: none;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.faq-list summary {
  padding: 25px 54px 25px 5px;
}

.faq-list details p {
  padding: 0 50px 27px 5px;
}

.final-cta {
  color: var(--ink);
  background: #e7f4f9;
}

.final-cta__inner > p {
  color: var(--blue-strong);
}

.final-cta .button--primary {
  color: var(--white);
  background: var(--blue-strong);
}

.page-top {
  border-radius: 50%;
}

@media (max-width: 767px) {
  .mobile-menu__consult {
    border-radius: 12px;
    background: var(--blue-strong);
  }

  .hero::after {
    content: none;
  }

  .hero-points {
    display: grid;
    gap: 5px;
  }

  .hero-points li {
    margin: 0;
    padding: 0 0 0 15px;
    font-size: 13px;
  }

  .hero-points li::before {
    left: 0;
  }

  .hero__visual,
  .area-panel,
  .style-panel,
  .review-proof {
    border-radius: 18px;
  }

  .style-panel {
    padding: 32px 20px 10px;
  }

  .sticky-actions {
    border-radius: 14px;
  }

  .sticky-actions__primary {
    border-radius: 10px;
    background: var(--blue-strong);
  }

  .faq-list summary {
    padding: 21px 45px 21px 2px;
  }

  .faq-list details p {
    padding: 0 32px 23px 2px;
  }
}

/* Signature Cinderella editorial system */
main#top {
  scroll-margin-top: 78px;
}

.page-width {
  width: min(calc(100% - 56px), 1220px);
}

.site-header__inner {
  width: min(calc(100% - 56px), 1320px);
}

.hero__inner {
  width: min(calc(100% - 56px), 1220px);
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(46px, 6vw, 88px);
}

.hero__copy::after {
  position: absolute;
  top: -44px;
  right: -26px;
  width: 1px;
  height: 96px;
  background: linear-gradient(var(--blue), transparent);
  content: "";
  transform: rotate(34deg);
  transform-origin: bottom;
}

.hero__visual {
  height: 650px;
}

.hero__visual::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 17%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .8), transparent);
  content: "";
  pointer-events: none;
}

.hero__visual figcaption {
  min-width: 200px;
  padding: 22px 26px;
}

.trust-strip__inner {
  min-height: 116px;
}

.trust-strip p {
  justify-content: center;
}

.brand-proof {
  padding: 27px 0;
}

.section-heading > p,
.section-heading > div > p {
  position: relative;
  display: inline-block;
  padding-bottom: 7px;
}

.section-heading > p::after,
.section-heading > div > p::after {
  position: absolute;
  right: 48%;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
}

.finder-layout {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 34px;
}

.area-panel {
  position: relative;
  min-height: 592px;
  padding: 58px 48px 44px;
  overflow: hidden;
}

.area-panel::after {
  position: absolute;
  right: -94px;
  bottom: -110px;
  width: 255px;
  height: 255px;
  border: 1px solid rgba(77, 159, 200, .18);
  border-radius: 50%;
  content: "";
}

.area-list a {
  z-index: 1;
}

.style-panel {
  min-height: 592px;
  padding: 40px 36px 22px;
}

.style-list {
  margin-top: 20px;
}

.style-list > .style-list__item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 13px 0;
}

.style-list__item > img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.style-list__item > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
}

.style-list__item h4 {
  font-size: 17px;
}

.style-list__item p {
  justify-self: end;
}

.income-band {
  position: relative;
  overflow: hidden;
}

.income-band::after {
  position: absolute;
  right: 22px;
  bottom: -28px;
  color: rgba(77, 159, 200, .07);
  content: "40";
  font-family: Georgia, serif;
  font-size: 156px;
  line-height: 1;
  pointer-events: none;
}

.income-band article {
  z-index: 1;
}

.feature-link {
  min-height: 274px;
}

.feature-link__body strong {
  font-size: 24px;
}

.promise-band {
  align-items: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.promise-band a {
  min-height: 360px;
  margin-left: 14px;
  padding: 0 22px 28px;
  border: 0;
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.promise-band a:first-child {
  margin-left: 0;
}

.promise-band__image {
  display: block;
  height: 150px;
  margin: 0 -22px;
  overflow: hidden;
}

.promise-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.promise-band__number {
  display: block;
  margin-top: 22px;
}

.promise-band strong {
  margin-top: 18px;
}

.promise-band em {
  margin-top: auto;
}

.review-proof {
  position: relative;
  overflow: hidden;
}

.review-proof::before {
  position: absolute;
  top: 8px;
  right: 22px;
  color: rgba(112, 188, 226, .12);
  content: "“";
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
}

.review-proof > * {
  position: relative;
}

.staff-layout {
  align-items: stretch;
}

.staff-movie,
.staff-grid {
  min-height: 100%;
}

.staff-grid a {
  border: 1px solid rgba(52, 75, 90, .08);
}

.blog-row {
  border-bottom-color: rgba(52, 75, 90, .32);
}

.final-cta__inner {
  position: relative;
}

.final-cta__inner::before {
  position: absolute;
  top: -105px;
  left: 48%;
  width: 1px;
  height: 74px;
  background: rgba(77, 159, 200, .48);
  content: "";
}

@media (hover: hover) {
  .promise-band a:hover {
    opacity: 1;
    transform: translateY(-4px);
  }

  .promise-band a:hover .promise-band__image img {
    transform: scale(1.035);
  }
}

@media (max-width: 980px) {
  .page-width,
  .hero__inner {
    width: min(calc(100% - 44px), 1220px);
  }

  .style-list > .style-list__item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }

  .style-list__item > img {
    width: 64px;
    height: 64px;
  }

  .style-list__item > span {
    display: block;
  }

  .style-list__item p {
    margin-top: 7px;
  }
}

@media (max-width: 767px) {
  .page-width,
  .site-header__inner,
  .hero__inner {
    width: min(calc(100% - 40px), 640px);
  }

  .hero__copy::after,
  .hero__visual::before {
    display: none;
  }

  .hero__visual {
    height: 440px;
  }

  .section-heading > p::after,
  .section-heading > div > p::after {
    right: 58%;
  }

  .area-panel {
    min-height: 0;
    padding: 40px 28px 36px;
  }

  .style-panel {
    min-height: 0;
    padding: 30px 20px 12px;
  }

  .style-list > .style-list__item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 13px;
    min-height: 96px;
    padding: 10px 0;
  }

  .style-list__item > img {
    width: 58px;
    height: 58px;
  }

  .style-list__item h4 {
    font-size: 15px;
  }

  .style-list__item p {
    margin-top: 6px;
  }

  .promise-band {
    gap: 10px;
  }

  .promise-band a,
  .promise-band a:first-child {
    min-height: 278px;
    margin: 0;
    padding: 0 14px 20px;
    border-radius: 12px;
  }

  .promise-band__image {
    height: 112px;
    margin: 0 -14px;
  }

  .promise-band__number {
    margin-top: 15px;
  }

  .promise-band strong {
    margin-top: 12px;
  }

  .promise-band em {
    font-size: 11px;
    line-height: 1.55;
  }

  .final-cta__inner::before {
    display: none;
  }

  main#top {
    scroll-margin-top: 66px;
  }
}
