:root {
  --bg: #f3f8fd;
  --paper: #ffffff;
  --line: #d8e4ef;
  --blue: #0ca9e8;
  --deep: #005bac;
  --navy: #1f3c69;
  --ink: #24324a;
  --muted: #66758d;
  --heading: #000;
  --cta-blue: var(--deep);
  --cta-blue-hover: #004f98;
  --cta-yellow: #ffd350;
  --cta-yellow-end: #ffd350;
  --cta-yellow-hover: #ffc533;
  --cta-yellow-hover-end: #ffbd38;
  --cta-yellow-text: #24324a;
  --cta-primary: var(--cta-yellow);
  --cta-primary-hover: var(--cta-yellow-hover);
  --cta-primary-text: #000;
  --cta-radius: 12px;
  --body-copy: #000;
  --support-copy: #000;
  --marker-yellow: #ffd350;
  --connector-dot: #3f70d6;
  --connector-dot-size: 3px;
  --connector-dot-radius: 1.5px;
  --connector-dot-edge: 1.7px;
  --connector-dot-gap: 8px;
  --soft: #edf6fc;
  --soft-blue: #eaf5ff;
  --band-blue: #d7f0ff;
  --band-gray: #f6f8fb;
  --summary-grad-start: #006bc3;
  --summary-grad-end: #18b4ea;
  --shadow: 0 18px 48px rgba(0, 58, 120, 0.08);
  --content: min(1120px, calc(100% - 32px));
  --header-h: 80px;
  --hero-min-h: 620px;
  --hero-min-h-sp: 560px;
  --hero-stage-ratio: 2.4532;
  --hero-stage-max-w: 2030px;
  --hero-stage-ratio-sp: 0.69643;
  --hero-stage-max-w-sp: 390px;
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-lead: 16px;
  --fs-h1: clamp(40px, 5vw, 60px);
  --fs-h2: clamp(30px, 3.6vw, 40px);
  --fs-h3: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  color: var(--heading);
  background: rgba(12, 169, 232, 0.22);
}

::-moz-selection {
  color: var(--heading);
  background: rgba(12, 169, 232, 0.22);
}

body {
  margin: 0;
  color: var(--body-copy);
  font-family:
    "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN",
    "Hiragino Kaku Gothic Pro", "Noto Sans JP", Meiryo, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.75;
  background: #ffffff;
  padding-top: var(--header-h);
  overflow-x: hidden;
}

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

a,
button {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 91, 172, 0.08);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.28s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header__inner,
.section__inner,
.footer__inner {
  width: var(--content);
  margin: 0 auto;
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  white-space: nowrap;
}

.brand__logo {
  display: block;
  width: 132px;
  height: auto;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle,
.mobile-menu,
.mobile-menu-backdrop {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  box-sizing: border-box;
  font-family:
    "Montserrat", "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 91, 172, 0.12);
}

.button--primary {
  color: #fff;
  background: var(--deep);
}

.header-cta .button--primary,
.mobile-cta .button--primary {
  border-color: transparent;
  border-radius: var(--cta-radius);
  background: var(--cta-primary);
  color: var(--cta-primary-text);
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
}

.header-cta .button--primary:hover,
.header-cta .button--primary:focus-visible,
.mobile-cta .button--primary:hover,
.mobile-cta .button--primary:focus-visible {
  background: var(--cta-primary-hover);
  box-shadow: none;
}

.hero {
  min-height: 0;
  display: grid;
  place-items: center;
  background: #0b8fe7;
  overflow: hidden;
}

.hero__stage {
  position: relative;
  width: min(100%, var(--hero-stage-max-w));
  aspect-ratio: var(--hero-stage-ratio);
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}

.hero__stage::before {
  content: none;
}

.hero__layer {
  position: absolute;
  display: block;
  overflow: hidden;
  aspect-ratio: var(--mv-ratio, auto);
  pointer-events: none;
  user-select: none;
}

.hero__layer > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  clip-path: inset(
    var(--mv-crop-top, 0%) var(--mv-crop-right, 0%) var(--mv-crop-bottom, 0%)
      var(--mv-crop-left, 0%)
  );
  pointer-events: none;
  user-select: none;
}

.hero__layer--background {
  --mv-ratio: 2;
  z-index: 6;
  left: 9.24%;
  top: 0.01%;
  width: auto;
  height: 99.98%;
  --mv-crop-top: 0%;
  --mv-crop-right: 24%;
  --mv-crop-bottom: 0%;
  --mv-crop-left: 20.5%;
  opacity: 1;
}

.hero__layer--woman {
  --mv-ratio: 0.741071;
  z-index: 1;
  left: 0;
  top: 10.07%;
  width: auto;
  height: 89.93%;
}

.hero__layer--man {
  --mv-ratio: 0.975893;
  z-index: 1;
  left: 63.14%;
  top: 7.35%;
  width: auto;
  height: 92.65%;
}

.hero__layer--message {
  --mv-ratio: 1.22;
  z-index: 7;
  top: 15.22%;
  left: 32.7%;
  width: auto;
  height: 69.57%;
}

.campaign-banner-area {
  padding: 46px 0 34px;
  background: #fff;
}

.campaign-banner {
  display: block;
  width: min(920px, 100%);
  margin: 0 auto;
  text-decoration: none;
}

.campaign-banner:focus-visible {
  outline: 3px solid rgba(255, 211, 80, 0.9);
  outline-offset: 6px;
}

.campaign-banner picture,
.campaign-banner img {
  display: block;
}

.campaign-banner img {
  width: 100%;
  height: auto;
}

.section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  background: #ffffff;
}

.section__inner {
  position: relative;
  z-index: 1;
}

.section--band-right::before,
.section--band-left::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  width: calc(100% - 56px);
  background: var(--band-blue);
  z-index: 0;
}

.section--band-right::before {
  right: 0;
  border-radius: 56px 0 0 56px;
}

.section--band-left::before {
  left: 0;
  border-radius: 0 56px 56px 0;
}

#section3::before,
#section5::before {
  background: var(--band-gray);
}

.section__head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  text-align: center;
}

.section__head h2 {
  margin: 0;
  color: var(--heading);
  font-size: var(--fs-h2);
  line-height: 1.32;
  letter-spacing: 0.04em;
}

.section__head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--body-copy);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.85;
}

.section__head--left {
  justify-items: start;
  margin-bottom: 40px;
  text-align: left;
}

.section__head--left h2 {
  display: inline-block;
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.35;
  padding-bottom: 16px;
  position: relative;
}

.section__head--left h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ca9e8 0%, rgba(255, 255, 255, 1) 100%);
}

#section1 .section__head--left h2::after,
#section2 .section__head--left h2::after,
#section3 .section__head--left h2::after,
#section4 .section__head--left h2::after,
#section-product .section__head--left h2::after,
#section5 .section__head--left h2::after {
  background: var(--marker-yellow);
}

.section__head--left p {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
}

.pc-break {
  display: inline;
}

.sp-break {
  display: none;
}

.card,
.section2-card,
.section3-card,
.section3-sim {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cards-grid {
  display: grid;
  gap: 22px;
}

.card p {
  margin: 0;
  color: var(--body-copy);
}

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

.section1-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

.section1-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 2px;
}

.section1-flow__arrow::before {
  content: "";
  width: 100%;
  height: var(--connector-dot-size);
  background-image: radial-gradient(
    circle,
    var(--connector-dot) 0 var(--connector-dot-radius),
    transparent var(--connector-dot-edge)
  );
  background-position: center;
  background-repeat: repeat-x;
  background-size: var(--connector-dot-gap) var(--connector-dot-size);
}

.card {
  padding: 28px 24px;
  display: grid;
  gap: 14px;
}

.card--simple {
  align-content: start;
  text-align: center;
  min-height: 220px;
  gap: 16px;
  padding-top: 32px;
}

.card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 22px;
  line-height: 1.45;
}

.card--simple h3 {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.card ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--body-copy);
}

.card__short {
  margin: 0;
  color: var(--body-copy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.card__support {
  margin: 0;
  color: var(--support-copy);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

.card__icon {
  width: 86px;
  height: 86px;
  margin: 0 auto;
}

.section1-summary {
  max-width: 920px;
  margin: 28px auto 0;
}

.section2-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.section2-card {
  min-height: 232px;
  padding: 30px 30px 28px;
  display: grid;
  align-content: start;
  gap: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section2-loop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section2-loop svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.section2-loop__path {
  fill: none;
  stroke: var(--connector-dot);
  stroke-width: var(--connector-dot-size);
  stroke-linecap: round;
  stroke-dasharray: 0.01 8;
}

.section2-card__icon {
  width: 78px;
  height: 78px;
  margin: 0 auto;
}

.section2-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.section2-card p {
  margin: 0;
  color: var(--body-copy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.section2-summary {
  max-width: 920px;
  margin: 28px auto 0;
}

.section3-block {
  max-width: 920px;
  margin: 0 auto;
}

.section3-block + .section3-block {
  margin-top: 42px;
}

.section3-block__head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.section3-block__head h3 {
  margin: 0;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.section3-block__head p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--body-copy);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

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

.section3-card {
  min-height: 228px;
  padding: 22px 16px 0;
  display: grid;
  grid-template-rows: auto minmax(126px, 1fr);
  align-items: stretch;
  gap: 10px;
  text-align: center;
  overflow: hidden;
}

.section3-card__icon {
  align-self: end;
  width: min(100%, 170px);
  height: 132px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
}

.section3-card h4 {
  margin: 0;
  color: var(--heading);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.section3-future__closing,
.section3-summary {
  margin-top: 20px;
}

.section3-sim {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  column-gap: 8px;
  row-gap: 4px;
  align-items: stretch;
}

.section3-result-card {
  align-self: start;
  border: 1px solid #c8e6f8;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 58, 120, 0.06);
}

.section3-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c8e6f8;
}

.section3-tab {
  min-height: 40px;
  border: 0;
  border-right: 1px solid #c8e6f8;
  border-radius: 0;
  color: #fff;
  background: #b6c0c9;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.section3-tab:last-child {
  border-right: 0;
}

.section3-tab.is-active {
  color: var(--deep);
  background: #f6fbff;
  box-shadow: none;
}

.section3-panel {
  display: none;
  padding: 22px 18px 24px;
}

.section3-panel.is-active {
  display: block;
}

.section3-result {
  display: grid;
  gap: 12px;
}

.section3-result__condition {
  margin: 0;
  color: var(--body-copy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.section3-result__main {
  margin: 0;
  color: var(--heading);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  text-align: left;
}

.section3-result__main strong {
  display: block;
  margin: 4px 0;
  color: var(--deep);
  font-size: 36px;
  line-height: 1.15;
}

.section3-result__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.section3-result__meta span {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--body-copy);
  background: #f6fbff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.section3-result__meta-label--sp {
  display: none;
}

.section3-result__meta-break {
  display: block;
}

.section3-chart {
  min-height: 360px;
  padding: 10px 0 0;
  border-radius: 18px;
  background: transparent;
  display: flex;
  align-items: stretch;
}

.section3-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.section3-chart__mobile {
  display: none;
}

.section3-chart rect[data-tooltip] {
  cursor: pointer;
}

.chart-tooltip {
  position: fixed;
  z-index: 80;
  display: none;
  max-width: 180px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: rgba(31, 60, 105, 0.96);
  box-shadow: 0 10px 22px rgba(0, 35, 76, 0.18);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  pointer-events: none;
  white-space: nowrap;
}

.section3-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--support-copy);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.card li + li {
  margin-top: 6px;
}

.section4-wrap {
  display: grid;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.section4-faq {
  display: block;
  border-top: 1px solid var(--line);
  background: #fff;
}

.section4-faq__item {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.section4-faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100px;
  padding: 0 72px 0 116px;
  color: var(--body-copy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  overflow: hidden;
  isolation: isolate;
}

.section4-faq__item summary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f7fbfe;
  pointer-events: none;
  transform: translateX(-100%);
}

.section4-faq__item:not([open]):hover summary::before,
.section4-faq__item:not([open]) summary:focus-visible::before {
  animation: minato-faq-wipe 0.5s ease-in-out;
}

.section4-faq__item summary > span:first-child,
.section4-faq__mark {
  position: relative;
  z-index: 1;
}

.section4-faq__item summary > span:first-child::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: -80px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #cfeafa;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-family:
    "Montserrat", "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: inset 0 -1px 0 rgba(12, 169, 232, 0.18);
}

.section4-faq__item summary::-webkit-details-marker {
  display: none;
}

.section4-faq__mark {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: translateY(-50%);
}

.section4-faq__mark::before,
.section4-faq__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  border-radius: 999px;
  background: #6fc8ee;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.section4-faq__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.section4-faq__item[open] .section4-faq__mark::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.section4-faq__answer {
  position: relative;
  padding: 37px 88px 44px 116px;
}

.section4-faq__answer::before {
  content: "A";
  position: absolute;
  top: 22px;
  left: 36px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #cfeafa;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-family:
    "Montserrat", "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.section4-faq__answer p {
  margin: 0;
  color: var(--body-copy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

.section4-support {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
}

.section4-support h3 {
  margin: 0;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.section4-support__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid #d8e4ef;
  border-bottom: 1px solid #d8e4ef;
}

.section4-support__item {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  min-height: 190px;
  padding: 22px 16px;
}

.section4-support__item + .section4-support__item {
  border-left: 1px solid #d8e4ef;
}

.section4-support__icon {
  width: 72px;
  height: 72px;
}

.section4-support__item h4 {
  margin: 0;
  color: var(--heading);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.section4-support__item p {
  margin: 0;
  color: var(--body-copy);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.section4-merit-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(460px, 100%);
  min-height: 60px;
  margin: 26px auto 0;
  padding: 12px 56px;
  border: 1.5px solid rgba(0, 91, 172, 0.55);
  border-radius: 12px;
  background: #fff;
  color: var(--deep);
  font-family:
    "Montserrat", "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.section4-merit-link:hover,
.section4-merit-link:focus-visible {
  border-color: var(--deep);
  background: #eef8ff;
  box-shadow: 0 12px 24px rgba(0, 91, 172, 0.1);
  transform: translateY(-1px);
}

.section4-merit-link__arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-block;
  width: 22px;
  height: 22px;
  color: inherit;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.section4-merit-link__arrow::before,
.section4-merit-link__arrow::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.section4-merit-link__arrow::before {
  left: 2px;
  top: 7px;
}

.section4-merit-link__arrow::after {
  left: 6px;
  top: 3px;
  background: #fff;
}

.section4-merit-link:hover .section4-merit-link__arrow::after,
.section4-merit-link:focus-visible .section4-merit-link__arrow::after {
  background: #eef8ff;
}

.product-search {
  display: grid;
  gap: 22px;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 34px 38px;
  border: 1px solid rgba(0, 91, 172, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-search__body {
  display: grid;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.product-search__body p {
  margin: 0;
  color: var(--body-copy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

.product-search-link-set {
  display: grid;
  align-content: start;
  gap: 8px;
}

.product-search__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(640px, 100%);
  margin: 0 auto;
}

.product-search-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 12px 54px;
  border: 1.5px solid rgba(0, 91, 172, 0.55);
  border-radius: 12px;
  background: #fff;
  color: var(--deep);
  font-family:
    "Montserrat", "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-search-link:hover,
.product-search-link:focus-visible {
  border-color: var(--deep);
  background: #eef8ff;
  box-shadow: 0 12px 24px rgba(0, 91, 172, 0.1);
  transform: translateY(-1px);
}

.product-search-link__icon {
  position: absolute;
  top: 50%;
  right: 22px;
  display: inline-block;
  width: 22px;
  height: 22px;
  color: inherit;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.product-search-link__icon::before,
.product-search-link__icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.product-search-link__icon::before {
  left: 2px;
  top: 7px;
}

.product-search-link__icon::after {
  left: 6px;
  top: 3px;
  background: transparent;
}

.product-search__note {
  max-width: 260px;
  margin: 0 auto;
  color: var(--body-copy);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.product-search__closing {
  width: min(920px, 100%);
  margin: 26px auto 0;
  box-sizing: border-box;
}

.product-search__notice {
  width: min(980px, 100%);
  margin: 64px auto 0;
}

.section6-notice__button-arrow {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  font-size: 16px;
  line-height: 1;
}

.section1-summary,
.section2-summary,
.section3-future__closing,
.section3-summary,
.product-search__closing,
.section5-closing,
.section4-closing {
  padding: 26px 30px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--summary-grad-start) 0%,
    var(--summary-grad-end) 100%
  );
  box-shadow: 0 18px 44px rgba(0, 91, 172, 0.18);
  text-align: center;
}

.section1-summary p,
.section2-summary p,
.section3-future__closing p,
.section3-summary p,
.product-search__closing p,
.section5-closing p,
.section4-closing p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.section1-summary strong {
  color: #fff;
}

.section5-wrap {
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.section5-reason {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 214px;
  padding: 22px 14px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.section5-reason:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 0;
  width: 18px;
  height: var(--connector-dot-size);
  background-image: radial-gradient(
    circle,
    var(--connector-dot) 0 var(--connector-dot-radius),
    transparent var(--connector-dot-edge)
  );
  background-position: center;
  background-repeat: repeat-x;
  background-size: var(--connector-dot-gap) var(--connector-dot-size);
  transform: translateY(-50%);
}

.section5-reason__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
}

.section5-reason h3 {
  margin: 0;
  color: var(--heading);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.section5-reason p {
  margin: 10px 0 0;
  color: var(--body-copy);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.section5-compare {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.section5-compare__col {
  padding: 30px 34px 32px;
}

.section5-compare__col + .section5-compare__col {
  border-left: 1px solid var(--line);
  background: #eef9ff;
}

.section5-compare__label {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.section5-compare__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section5-compare__list li {
  position: relative;
  padding-left: 24px;
  color: var(--body-copy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.section5-compare__list li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #b8c8d5;
  transform: translateY(-50%);
}

.section5-compare__col--bank .section5-compare__list li::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px #d8f4ff;
}

.section5-closing {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.section5-closing p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.section6 {
  background: #fff;
}

.section6 .section__head h2 {
  position: relative;
  display: inline-block;
  justify-self: start;
  padding-bottom: 16px;
}

.section6 .section__head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--marker-yellow);
  transform: none;
}

.section6-wrap {
  display: grid;
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}

.section6-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(980px, 100%);
  margin: 10px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.section6-start-card {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding: 34px 34px 36px;
  background: transparent;
  text-align: center;
}

.section6-start-card + .section6-start-card {
  border-left: 1px solid var(--line);
}

.section6-start-card--mygate {
  background: transparent;
}

.section6-start-card__icon {
  width: 76px;
  height: 76px;
}

.section6-start-card__body {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.section6-start-card__body h3 {
  margin: 0;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.section6-start-card__body p {
  margin: 0;
  color: var(--body-copy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  text-align: left;
}

.section6-start-actions {
  display: grid;
  gap: 12px;
  width: min(320px, 100%);
  margin-top: 8px;
}

.section6-start-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: min(320px, 100%);
  padding: 12px 52px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--cta-yellow);
  color: var(--cta-primary-text);
  font-family:
    "Montserrat", "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  box-shadow: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.section6-start-button:hover,
.section6-start-button:focus-visible {
  background: var(--cta-yellow-hover);
  box-shadow: none;
  transform: translateY(-1px);
}

.section6-start-button > span:first-child {
  line-height: 1.35;
}

.section6-start-button--login {
  border-color: rgba(0, 91, 172, 0.55);
  background: #fff;
  color: var(--deep);
  box-shadow: none;
}

.section6-start-button--login:hover,
.section6-start-button--login:focus-visible {
  border-color: var(--deep);
  background: #eef8ff;
}

.section6-start-button__icon {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  width: 22px;
  height: 22px;
  color: inherit;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.section6-start-button__icon--external::before,
.section6-start-button__icon--external::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.section6-start-button__icon--external::before {
  left: 2px;
  top: 7px;
}

.section6-start-button__icon--external::after {
  left: 6px;
  top: 3px;
  background: transparent;
}

.section6-start-button__icon--arrow::before,
.section6-start-button__icon--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  background: currentColor;
}

.section6-start-button__icon--arrow::before {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.section6-start-button__icon--arrow::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.section6-account-links {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
  gap: 20px;
  padding: 28px 34px 32px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.section6-account-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 48px;
  border: 1.5px solid rgba(0, 91, 172, 0.55);
  border-radius: 12px;
  background: #fff;
  color: var(--deep);
  font-family:
    "Montserrat", "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.section6-account-link:hover,
.section6-account-link:focus-visible {
  border-color: var(--deep);
  background: #eef8ff;
  box-shadow: 0 12px 24px rgba(0, 91, 172, 0.1);
  transform: translateY(-1px);
}

.section6-account-link__arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  display: inline-block;
  width: 22px;
  height: 22px;
  color: inherit;
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
}

.section6-account-link__arrow::before,
.section6-account-link__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  background: currentColor;
}

.section6-account-link__arrow::before {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.section6-account-link__arrow::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.section6-notice {
  display: grid;
  gap: 28px;
  margin-top: 2px;
}

.section6-notice.product-search__notice {
  margin-top: 64px;
}

.section6-notice__body {
  padding: 32px 36px 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.section6-notice__body h3 {
  margin: 0 0 20px;
  color: #e60012;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}

.section6-notice__body ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section6-notice__body li {
  position: relative;
  padding-left: 1.1em;
  color: var(--heading);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

.section6-notice__body li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--heading);
}

.section6-notice__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(640px, 100%);
  margin: 0 auto;
}

.section6-notice__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 12px 52px;
  border: 1.5px solid rgba(0, 91, 172, 0.55);
  border-radius: 12px;
  background: #fff;
  color: var(--deep);
  font-family:
    "Montserrat", "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.section6-notice__button:hover,
.section6-notice__button:focus-visible {
  border-color: var(--deep);
  background: #eef8ff;
  box-shadow: 0 12px 24px rgba(0, 91, 172, 0.1);
  transform: translateY(-1px);
}

.section6-notice__button > span:first-child {
  white-space: nowrap;
}

.section6-notice__button-arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}

.footer {
  padding: 0;
  background: var(--band-gray);
}

.footer__inner {
  color: var(--support-copy);
  font-size: 12px;
}

.footer__legal {
  padding: 28px 0 22px;
  text-align: left;
}

.footer__legal p {
  margin: 0;
  color: var(--support-copy);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
}

.footer__copyright {
  padding: 22px 16px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--summary-grad-start) 0%,
    var(--summary-grad-end) 100%
  );
  text-align: center;
}

.footer__copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-family:
    "Montserrat", "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.mobile-cta {
  display: none;
}

.mobile-page-top {
  display: none;
}

.side-nav {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 45;
  display: grid;
  gap: 22px;
  transform: translateY(-50%);
}

.side-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 18px;
  color: var(--heading);
  font-family:
    "Yu Gothic Medium", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.side-nav__link::before {
  content: "";
  position: absolute;
  inset: -10px -8px -10px -72px;
}

.side-nav__label {
  position: relative;
  z-index: 1;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(8px);
  transition:
    max-width 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease,
    margin 0.22s ease;
}

.side-nav__dot {
  position: relative;
  z-index: 1;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 999px;
  background: transparent;
}

.side-nav__dot::before {
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--heading);
  transform: translate(-50%, -50%);
  transition:
    width 0.22s ease,
    height 0.22s ease,
    background 0.22s ease,
    border 0.22s ease,
    box-shadow 0.22s ease;
}

.side-nav__link.is-active {
  color: var(--blue);
}

.side-nav__link:hover .side-nav__label,
.side-nav__link:focus-visible .side-nav__label {
  max-width: 280px;
  margin-right: 10px;
  opacity: 1;
  transform: translateX(0);
}

.side-nav__link.is-active .side-nav__dot::before {
  width: 13px;
  height: 13px;
  background: #fff;
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 169, 232, 0.22);
}

@media (max-width: 1600px) {
  .section--band-right::before,
  .section--band-left::before {
    width: 100%;
  }

  .section--band-right::before {
    border-radius: 48px 0 0 48px;
  }

  .section--band-left::before {
    border-radius: 0 48px 48px 0;
  }
}

@media (max-width: 1180px) {
  .section5-reasons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .section5-reason {
    grid-column: span 2;
  }

  .section5-reason:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .section5-reason:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .section5-reason:not(:last-child)::after {
    display: none;
  }
}

@keyframes minato-faq-wipe {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1024px) {
  .section5-compare__grid,
  .section4-support__grid {
    grid-template-columns: 1fr;
  }

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

  .section5-reasons {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .section5-compare__col + .section5-compare__col {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .section4-support__item:nth-child(odd) {
    border-left: 0;
  }

  .section4-support__item:nth-child(n + 3) {
    border-top: 1px solid #d8e4ef;
  }

  .section1-flow .card__support {
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }

  .section2-loop {
    display: none;
  }

  .section2-card p {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .section2-card:not(:last-child)::after {
    display: none;
  }

  .side-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --content: 86%;
    --header-h: 68px;
    --fs-body: 14px;
    --fs-small: 12px;
    --fs-lead: 14px;
    --fs-h1: 38px;
    --fs-h2: 28px;
    --fs-h3: 20px;
    --hero-min-h: var(--hero-min-h-sp);
  }

  body {
    padding-bottom: 0;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: stretch;
  }

  .brand {
    justify-content: flex-start;
    justify-self: start;
  }

  .brand__logo {
    width: 116px;
    transform: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    display: inline-grid;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-items: center;
    justify-self: end;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--heading);
    cursor: pointer;
  }

  .mobile-menu-toggle__line {
    position: absolute;
    left: 9px;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.22s ease,
      opacity 0.18s ease,
      top 0.22s ease;
  }

  .mobile-menu-toggle__line:nth-child(1) {
    top: 14px;
  }

  .mobile-menu-toggle__line:nth-child(2) {
    top: 22px;
  }

  .mobile-menu-toggle__line:nth-child(3) {
    top: 30px;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__line:nth-child(1) {
    top: 22px;
    transform: rotate(38deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__line:nth-child(3) {
    top: 22px;
    transform: rotate(-38deg);
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 56;
    display: block;
    background: rgba(15, 37, 58, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  .mobile-menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 57;
    display: block;
    border-top: 1px solid rgba(0, 91, 172, 0.08);
    border-bottom: 1px solid rgba(0, 91, 172, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(0, 58, 120, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu__panel {
    display: grid;
    width: min(calc(100vw - 40px), 430px);
    max-height: calc(100dvh - var(--header-h) - 28px);
    margin: 0 auto;
    padding: 12px 0 14px;
    overflow-y: auto;
  }

  .mobile-menu__link {
    position: relative;
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 28px 0 2px;
    border-bottom: 1px solid rgba(0, 91, 172, 0.1);
    color: var(--heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
  }

  .mobile-menu__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--deep);
    border-right: 2px solid var(--deep);
    transform: translateY(-50%) rotate(45deg);
  }

  .mobile-menu__link:last-child {
    border-bottom: 0;
  }

  body.is-mobile-menu-open {
    overflow: hidden;
  }

  .hero {
    padding: 0;
  }

  .hero__stage {
    width: min(100%, var(--hero-stage-max-w-sp));
    aspect-ratio: var(--hero-stage-ratio-sp);
    height: auto;
  }

  .hero__stage::before {
    content: none;
  }

  .hero__layer--background {
    z-index: 4;
    top: 26%;
    left: -18.92%;
    width: auto;
    height: 48%;
    --mv-crop-top: 0%;
    --mv-crop-right: 0%;
    --mv-crop-bottom: 0%;
    --mv-crop-left: 0%;
  }

  .hero__layer--woman {
    z-index: 1;
    top: -3.71%;
    left: 30.22%;
    width: auto;
    height: 48.25%;
  }

  .hero__layer--man {
    z-index: 1;
    top: 68.62%;
    left: 16.51%;
    width: auto;
    height: 47.81%;
  }

  .hero__layer--message {
    z-index: 5;
    top: 29.35%;
    left: 13.83%;
    width: auto;
    height: 41.3%;
  }

  .section {
    padding: 64px 0;
  }

  #section1 {
    padding-bottom: 40px;
  }

  .section--band-right::before,
  .section--band-left::before {
    top: 22px;
    bottom: 22px;
    width: 100%;
  }

  .section--band-right::before {
    border-radius: 34px 0 0 34px;
  }

  .section--band-left::before {
    border-radius: 0 34px 34px 0;
  }

  .campaign-banner-area {
    padding: 32px 0 24px;
  }

  .campaign-banner {
    width: 100%;
  }

  .section1-summary {
    margin: 22px auto 0;
  }

  .section1-summary p {
    font-size: 15px;
    line-height: 1.75;
  }

  .cards-grid,
  .section2-points,
  .section3-future {
    grid-template-columns: 1fr;
  }

  .section1-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section1-flow__arrow {
    min-width: 0;
    min-height: 28px;
  }

  .section1-flow__arrow::before {
    width: var(--connector-dot-size);
    height: 28px;
    background-repeat: repeat-y;
    background-size: var(--connector-dot-size) var(--connector-dot-gap);
  }

  .section2-points {
    gap: 14px;
  }

  .section2-card {
    min-height: 0;
    padding: 22px 18px;
    gap: 14px;
  }

  .section2-card h3 {
    font-size: 18px;
  }

  .section2-card p {
    font-size: 13px;
    line-height: 1.75;
  }

  .section2-summary {
    margin-top: 22px;
  }

  .section2-summary p {
    font-size: 15px;
    line-height: 1.75;
  }

  .section3-block + .section3-block {
    margin-top: 34px;
  }

  .section3-block__head {
    text-align: left;
  }

  .section3-block__head h3 {
    font-size: 20px;
  }

  .section3-block__head p {
    font-size: 14px;
  }

  .section3-future {
    gap: 14px;
  }

  .section3-card {
    min-height: 220px;
    padding: 20px 16px 0;
  }

  .section3-card h4 {
    font-size: 17px;
  }

  .section3-card__icon {
    width: min(100%, 190px);
    height: 140px;
  }

  .section3-sim {
    padding: 20px 18px;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid #c8e6f8;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 58, 120, 0.06);
  }

  .section3-result-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .section3-panel {
    padding: 20px 16px 14px;
  }

  .section3-result__main {
    font-size: 19px;
  }

  .section3-result__main strong {
    font-size: 30px;
  }

  .section3-result__meta {
    gap: 8px;
  }

  .section3-result__meta span {
    padding: 10px 4px;
    font-size: 11px;
    white-space: nowrap;
  }

  .section3-result__meta-label--pc,
  .section3-result__meta-break {
    display: none;
  }

  .section3-result__meta-label--sp {
    display: inline;
  }

  .section3-chart {
    min-height: 350px;
    margin: 0 -8px;
    padding: 0;
    background: #fff;
    overflow: hidden;
  }

  .section3-chart .section3-chart__desktop {
    display: none;
  }

  .section3-chart .section3-chart__mobile {
    position: relative;
    display: block;
    width: 100%;
    height: 340px;
    overflow: hidden;
  }

  .section3-chart__mobile-title {
    position: absolute;
    top: 0;
    left: 54px;
    z-index: 5;
    color: #24324a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    pointer-events: none;
  }

  .section3-chart__mobile-grid,
  .section3-chart__mobile-axis,
  .section3-chart__mobile-y-label,
  .section3-chart__mobile-legend {
    position: absolute;
    pointer-events: none;
  }

  .section3-chart__mobile-grid {
    left: 54px;
    right: 0;
    z-index: 1;
    height: 1px;
    background: #d7e1ea;
  }

  .section3-chart__mobile-axis {
    left: 54px;
    z-index: 4;
    width: 1.5px;
    background: #24324a;
  }

  .section3-chart__mobile-y-label {
    left: 0;
    z-index: 5;
    width: 48px;
    color: #005bac;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: right;
    transform: translateY(-50%);
  }

  .section3-chart__mobile-legend {
    top: 52px;
    left: 76px;
    z-index: 6;
    width: 168px;
    padding: 8px 10px;
    border: 1px solid #24324a;
    background: #fff;
    color: #24324a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
  }

  .section3-chart__mobile-legend-row {
    display: grid;
    grid-template-columns: 12px 44px 1fr;
    gap: 8px;
    align-items: center;
  }

  .section3-chart__mobile-legend-row + .section3-chart__mobile-legend-row {
    margin-top: 5px;
  }

  .section3-chart__mobile-legend-swatch {
    width: 12px;
    height: 12px;
  }

  .section3-chart__mobile-scroll {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 54px;
    z-index: 2;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .section3-chart__mobile-bars {
    position: relative;
    height: 340px;
  }

  .section3-chart__mobile-x-axis {
    position: absolute;
    z-index: 1;
    height: 1.5px;
    background: #24324a;
  }

  .section3-chart__mobile-bar {
    position: absolute;
    z-index: 2;
  }

  .section3-chart__mobile-bar span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
  }

  .section3-chart__mobile-principal {
    bottom: 0;
    background: #d7e7f2;
  }

  .section3-chart__mobile-profit {
    background: #0ca9e8;
  }

  .section3-chart__mobile-year {
    position: absolute;
    z-index: 2;
    color: #005bac;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .section3-future__closing,
  .section3-summary {
    text-align: left;
  }

  .section3-note {
    padding: 12px 16px 18px;
    background: #fff;
  }

  .section4-wrap {
    gap: 22px;
  }

  .section4-faq__item {
    border-radius: 0;
  }

  .section4-faq__item summary {
    min-height: 76px;
    padding: 10px 56px 10px 68px;
    font-size: 15px;
  }

  .section4-faq__item summary > span:first-child::before {
    left: -48px;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .section4-faq__mark {
    right: 18px;
    width: 14px;
    height: 14px;
  }

  .section4-faq__mark::before,
  .section4-faq__mark::after {
    width: 14px;
  }

  .section4-faq__answer {
    padding: 28px 22px 26px 68px;
  }

  .section4-faq__answer::before {
    top: 17px;
    left: 20px;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .section4-faq__answer p {
    font-size: 13px;
    line-height: 1.75;
  }

  .section4-support {
    padding: 22px 18px;
    text-align: left;
  }

  .section4-support h3 {
    font-size: 20px;
  }

  .section4-support__grid {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .section4-support__item,
  .section4-support__item:nth-child(odd),
  .section4-support__item:nth-child(n + 3) {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    min-height: 0;
    padding: 16px 0;
    border-left: 0;
    border-top: 0;
    text-align: left;
  }

  .section4-support__item + .section4-support__item {
    border-left: 0;
    border-top: 1px solid #d8e4ef;
  }

  .section4-support__icon {
    width: 52px;
    height: 52px;
  }

  .section4-support__item h4 {
    font-size: 15px;
  }

  .section4-merit-link {
    width: min(100%, 320px);
    min-height: 58px;
    margin-top: 20px;
    padding: 12px 48px;
    font-size: 14px;
  }

  .section4-merit-link__arrow,
  .product-search-link__icon,
  .section6-account-link__arrow,
  .section6-notice__button-arrow {
    right: 18px;
  }

  .product-search {
    gap: 18px;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .product-search__body {
    text-align: left;
  }

  .product-search__body p {
    font-size: 13px;
    line-height: 1.75;
  }

  .product-search-link-set {
    gap: 7px;
  }

  .product-search__links {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .product-search-link {
    min-height: 58px;
    padding: 12px 48px;
    font-size: 14px;
  }

  .product-search__note {
    font-size: 11px;
    line-height: 1.55;
    text-align: center;
  }

  .product-search__closing {
    margin-top: 18px;
  }

  .product-search__notice {
    margin-top: 42px;
  }

  .section1-summary,
  .section2-summary,
  .section3-future__closing,
  .section3-summary,
  .product-search__closing,
  .section5-closing,
  .section4-closing {
    padding: 22px 18px;
    text-align: left;
  }

  .section1-summary p,
  .section2-summary p,
  .section3-future__closing p,
  .section3-summary p,
  .product-search__closing p,
  .section5-closing p,
  .section4-closing p {
    font-size: 14px;
    line-height: 1.7;
  }

  .section5-wrap {
    gap: 22px;
  }

  .section5-reasons {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section5-reason,
  .section5-reason:nth-child(4),
  .section5-reason:nth-child(5) {
    grid-column: 1 / -1;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    min-height: 0;
    padding: 16px 18px;
    text-align: left;
  }

  .section5-reason:not(:last-child)::after {
    display: block;
    top: auto;
    right: auto;
    bottom: -12px;
    left: 44px;
    width: var(--connector-dot-size);
    height: 12px;
    background-repeat: repeat-y;
    background-size: var(--connector-dot-size) var(--connector-dot-gap);
    transform: none;
  }

  .section5-reason__icon {
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .section5-reason h3 {
    font-size: 15px;
  }

  .section5-reason p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.65;
  }

  .section5-compare__col {
    padding: 22px 18px;
  }

  .section5-compare__label {
    margin-bottom: 14px;
    font-size: 17px;
  }

  .section5-compare__list {
    gap: 10px;
  }

  .section5-compare__list li {
    font-size: 13px;
    line-height: 1.7;
  }

  .section5-closing {
    text-align: left;
  }

  .section5-closing p {
    font-size: 14px;
  }

  .section6-wrap {
    gap: 24px;
  }

  .section6-guide {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 4px;
    border-radius: 18px;
  }

  .section6-start-card {
    gap: 14px;
    padding: 24px 18px 26px;
  }

  .section6-start-card + .section6-start-card {
    border-top: 1px solid rgba(0, 91, 172, 0.12);
    border-left: 0;
  }

  .section6-start-card__icon {
    width: 72px;
    height: 72px;
  }

  .section6-start-card__body {
    max-width: none;
  }

  .section6-start-card__body h3 {
    font-size: 18px;
  }

  .section6-start-card__body p {
    font-size: 13px;
    line-height: 1.75;
  }

  .section6-start-actions {
    width: min(100%, 320px);
  }

  .section6-start-button {
    min-height: 56px;
    padding: 12px 48px;
    font-size: 14px;
  }

  .section6-account-links {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    padding: 22px 18px 24px;
  }

  .section6-account-link {
    width: min(100%, 320px);
    min-height: 56px;
    padding: 12px 48px;
    font-size: 14px;
  }

  .section6-notice {
    gap: 20px;
  }

  .section6-notice.product-search__notice {
    margin-top: 42px;
  }

  .section6-notice__body {
    padding: 24px 18px 26px;
  }

  .section6-notice__body h3 {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .section6-notice__body ul {
    gap: 6px;
  }

  .section6-notice__body li {
    padding-left: 1em;
    font-size: 13px;
    line-height: 1.75;
  }

  .section6-notice__links {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 320px);
  }

  .section6-notice__button {
    min-height: 58px;
    padding: 12px 48px;
    font-size: 14px;
  }

  .section6-notice__button > span:first-child {
    white-space: normal;
  }

  .section__head--left h2 {
    font-size: 28px;
  }

  .section__head--left p {
    font-size: 14px;
  }

  .pc-break {
    display: none;
  }

  .sp-break {
    display: inline;
  }

  .card--simple h3 {
    font-size: 18px;
  }

  .card__short {
    font-size: 14px;
  }

  .section__head--left {
    margin-bottom: 28px;
  }

  .section__head--left h2 {
    padding-bottom: 12px;
  }

  .section__head--left h2::after {
    width: 100%;
    height: 3px;
  }

  .card {
    padding: 20px 18px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: block;
    padding: 10px 0 12px;
    border-top: 1px solid rgba(0, 91, 172, 0.08);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-cta__inner {
    width: min(calc(100vw - 24px), 430px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }

  .mobile-cta .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 10px;
    font-size: 14px;
  }

  .mobile-page-top {
    position: fixed;
    right: 12px;
    bottom: 92px;
    z-index: 54;
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1.5px solid rgba(0, 91, 172, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--deep);
    font-family:
      "Montserrat", "Yu Gothic Medium", "Yu Gothic", YuGothic, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(0, 58, 120, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      border-color 0.22s ease,
      background 0.22s ease;
  }

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

  .mobile-page-top:hover,
  .mobile-page-top:focus-visible {
    border-color: var(--deep);
    background: #fff;
  }

  .side-nav {
    display: none;
  }

  .footer__legal {
    padding: 22px 0 18px;
  }

  .footer__legal p {
    font-size: 10px;
    line-height: 1.8;
  }

  .footer__copyright {
    padding: 18px 14px;
  }

  .footer__copyright p {
    font-size: 11px;
  }
}

@media (min-width: 393px) and (max-width: 767px) {
  .hero__stage {
    overflow: visible;
  }

  .hero__layer--background {
    left: calc((100% - 100vw) / 2);
    left: calc((100% - 100dvw) / 2);
    width: 100vw;
    width: 100dvw;
  }
}

@media (max-width: 374px) {
  :root {
    --content: 86%;
  }
}
