:root {
  /* テキスト */
  --c-text: #38240d;
  --c-text-sub: #746554;

  /* ブランド／アクセント */
  --c-primary: #fc6b01;
  --c-accent: #ffc908;
  --c-accent-light: #ffde81;

  /* 面・背景 */
  --c-white: #fffdfa;
  --c-cream: #fff5db;
  --c-gray-100: #efedea;

  /* モーダル */
  --c-overlay: rgba(0, 0, 0, 0.3); 

  /* 影・オーバーレイ（デザインの rgba 値） */
  --c-shadow: rgba(0, 0, 0, 0.15);
  --c-shadow-weak: rgba(0, 0, 0, 0.1);
}

html {
	font-size: clamp(12px, 3.2vw, 21px);
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--c-text);
  background-color: var(--c-white);
  overflow-x: hidden;
  font-size: 1.4rem;
	line-height: 1.5;
	height: 100%;
	-webkit-text-size-adjust: 100%;
}

.lp {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
  isolation: isolate;
}

.lp > main,
.lp > .site-footer {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

.lp > .site-footer {
  padding-bottom: 120px;
}

.lp > main {
  background-color: var(--c-white);
}

.lp a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.lp__notes li::before {
  content: "※";
  margin-right: 2px;
}

.lp__notes {
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
  font-weight: 400;
  font-size: 1rem;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 500px;
  padding: 16px 24px;
  border-radius: 9999px; 
  color: var(--c-white) !important;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 0 var(--c-shadow);
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    filter 0.2s ease;
}

.btn:hover {
  opacity: 0.5;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 0 var(--c-shadow);
}

.btn:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--c-primary);
  position: relative;
  background:
  radial-gradient(
    77.07% 73% at 50.16% 16.46%,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 90%,
    rgba(255, 255, 255, 0) 90.38%,
    rgba(255, 255, 255, 0) 100%
  ),
  var(--c-primary);
}

.btn--primary::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(/camp/kodomo_nisa/assets/img/cv-kids.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  vertical-align: -3px;
}

.btn--secondary {
  background-color: var(--c-text);
  position: relative;
  width: 90%;
  background:
  radial-gradient(
    77.07% 73% at 50.16% 16.46%,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 90%,
    rgba(255, 255, 255, 0) 90.38%,
    rgba(255, 255, 255, 0) 100%
  ),
  var(--c-text);
}

.btn--arrow::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(/camp/kodomo_nisa/assets/img/arrow_forward_white.svg);
  background-repeat: no-repeat;
  right: 16px;
  background-size: contain;
}

.float-cta {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0;
  width: 100%;
  max-width: 500px; 
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(100%);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 63.434%
  );
  pointer-events: none; 
}

.float-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.float-cta > * {
  pointer-events: auto;
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: var(--c-white);
  filter: drop-shadow(0 5px 2.5px rgba(0, 0, 0, 0.04));
  position: relative;
  z-index: 3;
}

.site-header__logo {
  width: 65%;
  max-width: 244px;
  height: auto;
}

.disclaimer {
  padding: 6px 4px;
  background-color: var(--c-gray-100);
}

.disclaimer li {
	font-weight: 400;
	font-size: 11px;
	line-height: 1.15;
	letter-spacing: -0.88px;
}

.disclaimer__note{
	text-indent: -12px;
	padding-left: 12px;
}

.fv {
  background-color: var(--c-white);
  overflow: hidden;
}

.fv__title {
  max-width: 100%;
  margin-inline: auto;
}

.fv__title img {
  width: 100%;
  height: auto;
}

.cv {
  padding: 1.33rem 2rem 2rem;
  background-color: var(--c-accent);
}

.cv_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cv-scallop {
  display: block;
  width: 102%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 2;
  margin: -2px 0 -2px -4px ;
  transform: scaleY(-1);
  }
  
  .cv-scallop img{
	width: 100%;
	  height: auto;
  }

.cv__balloon {
  position: relative;
  margin-bottom: 1.33rem;
  padding: 1rem 3.33rem;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
}

.cv__balloon::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #fff;
}

.cv__balloon-lead {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.cv__balloon-main {
  font-size: 1.17rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.cv__balloon-main span {
  font-weight: 900;
}

.cv__routes {
  display: flex;
  flex-direction: column;
  gap: 1.33rem;
  width: 100%;
  max-width: 500px;
}

.cv__route {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.67rem;
}

.cv__route-label {
  position: relative;
  padding: 0 1.33rem 0.17rem;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}

.cv__route-label span {
  font-weight: 900;
}

.cv__route-label::before,
.cv__route-label::after {
  content: "";
  position: absolute;
  bottom: 0.17rem;
  width: 0.15rem;
  height: 15px;
  border-radius: 1px;
  background-color: var(--c-text);
}

.cv__route-label::before {
  left: 0.17rem;
  transform: rotate(-25deg);
  transform-origin: bottom center;
}

.cv__route-label::after {
  right: 0.17rem;
  transform: rotate(25deg);
  transform-origin: bottom center;
}

.cv__btn {
  height: 4.83rem;
  gap: 0.67rem;
  box-shadow: inset 0 -3px 0 0 var(--c-shadow);
}

.cv__btn:active {
  box-shadow: inset 0 -1px 0 0 var(--c-shadow);
}

.btn__label {
  font-weight: 900;
  font-size: 1.33rem;
  letter-spacing: 0.02em;
  margin-right: 1.67rem;
}

.secondary{
  margin-right: 0px !important;
}

.cv__more {
  display: inline-flex;
  align-items: center;
  gap: 0.33rem;
  font-weight: 500;
  font-size: 1.08rem;
  margin-top: 0.67rem;
}

.cv__more-text {
  text-decoration: underline;
}

.cv__more:hover {
  opacity: 0.5;
}

.cv__more-icon {
  flex-shrink: 0;
  width: 1.33rem;
  height: 1.33rem;
  object-fit: contain;
}

.cv__note {
  gap: 0.17rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.45;
  margin-top: 0.67rem;
}

.marker {
  background: linear-gradient(
    to top,
    var(--c-accent-light) 0%,
    var(--c-accent-light) 45%,
    transparent 45%,
    transparent 100%
  );
}

.edu__marker {
  background: linear-gradient(
    to top,
    var(--c-accent-light) 0%,
    var(--c-accent-light) 45%,
    transparent 45%,
    transparent 100%
  );
  height: 36px;
}

.edu {
	overflow: hidden;
}

.edu__inner {
  position: relative;
  overflow: hidden;
  padding: 16px 24px 32px;
  background-color: var(--c-white);
  text-align: center;
}

.edu-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 64px;
}

.edu-head__q {
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 0.5;
  color: var(--c-primary);
}

.edu-head__title {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--c-text);
  position: relative;
}

.edu-head__title::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--c-primary);
  box-shadow: 22.5px 0 0 var(--c-primary), 45px 0 0 var(--c-primary);
  margin-left: 200px;
}

.edu-answer {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  padding: 32px 0 24px;
  background-color: var(--c-cream);
  filter: drop-shadow(6px 6px 0 rgba(31, 30, 29, 0.05));
}

.edu-answer__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background-color: var(--c-primary);
  border-radius: 999px;
  line-height: 0.5;
  color: var(--c-white);
}

.edu-answer__badge::before
{
  content: "A";
  color: var(--c-white);
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  font-size: 30px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: block;
  text-align: center;
  line-height: 36px;
  position: absolute;

}

.edu-answer__text {
  font-weight: 500;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.01em;
  color: var(--c-text);
}

.edu-answer__text span {
  font-weight: 700;
}

.edu-lead {
  font-weight: 500;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.01em;
  color: var(--c-text);
  position: relative;
  padding:48px 0 40px;
  max-width: 375px;
  margin: 0 auto;
}

.edu-lead span {
  font-weight: 700;
}

.edu-lead::before {
  content: "";
  display: inline-block;
  width: 28%;
  max-width: 100px;
  height: 100%;
  background-image: url(/camp/kodomo_nisa/assets/img/edu-money.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: -8px;
  position: absolute;
  right: 0;
  top: 16px;
}

.edu-deco {
  position: absolute;
  height: auto;
  pointer-events: none;
}

.edu-deco--1 {
  width: 55.95px; 
  top: -32%;
  right: 8%; 
  position: absolute;
}
.edu-deco--2 { 
  width: 58.93px; top: -30%; left: 8%; position: absolute; 
}

.edu-acc {
  width: 100%;
  border: 2px solid var(--c-text);
  border-radius: 10px;
  background-color: var(--c-white);
  text-align: left;
}

.edu-acc__heading {
  margin: 0;
}

.edu-acc__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px 16px;
  color: var(--c-text);
  cursor: pointer;
}

.edu-acc__label {
  flex: 1 0 0;
  min-width: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
}

.edu-acc__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.edu-acc__icon::before,
.edu-acc__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--c-text);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.edu-acc__icon::before {
  width: 12px;
  height: 3px;
}

.edu-acc__icon::after {
  width: 3px;
  height: 12px;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.edu-acc__toggle[aria-expanded="true"] .edu-acc__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.edu-acc__panel {
  padding: 0 16px 20px;
}

.edu-acc__panel[hidden] {
  display: none;
}

.edu-acc__note {
  display: flex;
  gap: 2px;
  padding-top: 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
  color: var(--c-text-sub);
}

.edu-table {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}

.edu-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 88px; 
  padding: 6px 0;
  border-bottom: 1px solid var(--c-gray-100);
}

.edu-row--head {
  padding: 0 0 16px;
  gap: 40px;
}

.edu-row--total {
  padding: 8px 0 8px;
  border-bottom: none;
}

.edu-cell {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  justify-content: center;
  padding: 0px 12px;
}

.edu-row--head .edu-cell {
  padding: 0 12px;
  height: 66px;
}

.edu-colimg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.edu-colimg_pub {
  margin-right: 16px;
}

.edu-colimg_pri {
  margin-left: 16px;
}

.edu-num {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--c-text);
  white-space: nowrap;
}

.edu-num__val {
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.edu-num__unit {
  font-weight: 700;
  font-size: 13px;
}

.edu-num--total .edu-num__val {
  font-size: 48px;
}

.edu-num--total .edu-num__unit {
  font-size: 14px;
}

.edu-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  padding: 6px 24px;
  background-color: var(--c-gray-100);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  color: var(--c-text);
}

.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
}

.sec-head__deco {
  width: 24px;
  height: auto;
  margin-bottom: 4px;
}

.sec-head__sub {
  padding-top: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--c-text-sub);
}

.sec-head__title {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--c-text);
  padding: 4px 0 12px;
}

.sec-head__bar {
  width: 40px;
  height: 5px;
  border-radius: 999px;
  background-color: var(--c-primary);
}

.point-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 24px;
}

.point-card {
  position: relative;
  overflow: hidden;
  padding: 32px 16px;
  background-color: var(--c-white);
  border-radius: 20px;
}

.point-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 12px;
  background-color: var(--c-text);
  border-radius: 0 0 10px 0;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--c-white);
}

.point-card__body {
  display: flex;
  align-items: center;
  gap: 20px;
}

.point-card__icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.point-card__text {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--c-text);
  text-align: left;
}

.point-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.point-card__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.nisa {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
  background-color: var(--c-cream);
  text-align: center;
}

.nisa__lead {
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.01em;
  color: var(--c-text);
}

.nisa__lead span {
  font-weight: 700;
}

.nisa__note {
  display: flex;
  gap: 2px;
  align-self: stretch;
  padding-bottom: 32px;
  text-align: left;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--c-text-sub);
}

.nisa__note__bottom {
	padding-bottom: 0;
}

.nisa__link {
	text-decoration: underline !important;
}

.sim {
  padding: 48px 24px;
  background-color: var(--c-white);
}

.sim__note {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-text-sub);
  padding-top: 8px;
}

.sim__note.lp__notes {
	padding-bottom: 24px;
  letter-spacing: -0.4px;
}

.sim__note--sm {
  padding-bottom: 0 !important;
  display: flex;
  justify-content: center;
}

.sim__cond {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 9999px;
  background-color: var(--c-cream);
  justify-content: center;
}

.sim__cond-icon {
  width: 35px;
  height: auto;
  flex-shrink: 0;
}

.sim__cond-title {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.3;
}

.sim__cond-text {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.sim__cond-sub {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-text-sub);
}

.sim__chart {
  width: 100%;
  max-width: 327px;
  height: auto;
  margin: 16px auto 24px;
}

.sim__cta {
  background-color: var(--c-text);
  position: relative;
  width: 90%;
  display: flex;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: none;
  position: relative;
  padding: 18px 16px 18px 24px;
}

.sim__cta:active {
  box-shadow: none;
}

.sim__cta-label {
  font-weight: 700;
  font-size: 15px;
  margin-right: 0px;
}

.sim__cta-arrow::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(/camp/kodomo_nisa/assets/img/plus.svg);
  background-repeat: no-repeat;
  right: 16px;
  top: 20px;
  background-size: contain;
}

.sbi {
  padding: 48px 24px;
  background-color: var(--c-cream);
}

.sbi-acc-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.sbi-acc {
  background-color: var(--c-white);
  border-radius: 10px;
  box-shadow: 0 0 5px var(--c-shadow-weak);
}

.sbi-acc__heading {
  margin: 0;
}

.sbi-acc__toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  text-align: left;
}

.sbi-acc__toggle:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 10px;
}

.sbi-acc__icon {
  width: 51px;
  height: 51px;
  object-fit: cover;
  flex-shrink: 0;
}

.sbi-acc__title {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.16px;
  color: var(--c-text);
}

.sbi-acc__mark {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sbi-acc__mark::before,
.sbi-acc__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: var(--c-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sbi-acc__mark::before {
  width: 12px;
  height: 3px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.sbi-acc__mark::after {
  width: 3px;
  height: 12px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.sbi-acc__toggle[aria-expanded="true"] .sbi-acc__mark::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.sbi-acc__panel {
  padding: 0 16px 16px;
}

.sbi-acc__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sbi-acc__subhead {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.15px;
  color: var(--c-text);
}

.sbi-acc__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.15px;
  color: var(--c-text);
}

.sbi-acc__ref {
  font-size: 0.66em;
}

.sbi-acc__note {
  display: flex;
  gap: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.45;
  color: var(--c-text-sub);
  flex-direction: column;
}

.step {
	overflow: hidden;
}

.step__inner {
  padding: 48px 16px 64px;
  background-color: var(--c-white);
  scroll-margin-top: 16px;
}

.step__tabs {
  display: flex;
  width: 100%;
  margin: 0 auto 16px;
}

.step-tab {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 12px 8px;
  border: 2px solid var(--c-gray-100);
  background-color: transparent;
  color: var(--c-text);
  text-align: center;
}

.step-tab:hover {
  opacity: 0.5;
}

.step-tab:first-child {
  border-radius: 10px 0 0 10px;
}

.step-tab:last-child {
  border-radius: 0 10px 10px 0;
}

.step-tab[aria-selected="true"] {
  background-color: var(--c-text);
  border-color: var(--c-text);
  color: var(--c-white);
}

.step-tab:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

.step-tab__lead {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.24px;
}

.step-tab__main {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.36px;
}

.step__panel {
  width: 100%;
  justify-items: center;
}

.step-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.step-item {
  padding: 8px 0;
  border-bottom: 2px dashed var(--c-gray-100);
}

.step-item--stacked {
  padding-bottom: 16px;
}

.step-item__row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-item__img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
}

.step-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.step-item__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  position: relative;
}

.step-badge_01::before {
  content: "01";
  display: block;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  background-color: var(--c-text);
  color: var(--c-white);
  font-family: "Dongle", sans-serif;
  width: 36px;
  height: 24px;
  border-radius: 999px;
  text-align: center;
  line-height: 28px;
  left: 0;
  position: absolute;
}

.step-badge_02::before {
  content: "02";
  display: block;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  background-color: var(--c-text);
  color: var(--c-white);
  font-family: "Dongle", sans-serif;
  width: 36px;
  height: 24px;
  border-radius: 999px;
  text-align: center;
  line-height: 28px;
  left: 0;
  position: absolute;
}

.step-badge_03::before {
  content: "03";
  display: block;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  background-color: var(--c-text);
  color: var(--c-white);
  font-family: "Dongle", sans-serif;
  width: 36px;
  height: 24px;
  border-radius: 999px;
  text-align: center;
  line-height: 28px;
  left: 0;
  position: absolute;
}

.step-badge_04::before {
  content: "04";
  display: block;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  background-color: var(--c-text);
  color: var(--c-white);
  font-family: "Dongle", sans-serif;
  width: 36px;
  height: 24px;
  border-radius: 999px;
  text-align: center;
  line-height: 28px;
  left: 0;
  position: absolute;
}

.step-item__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.32px;
  color: var(--c-text);
}

.step-item__desc {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.24px;
  color: var(--c-text-sub);
}

.step-doclink {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--c-text-sub);
}

.step-doclink:hover {
  opacity: 0.5;
}

.step-doclink__label {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.24px;
  text-decoration: underline;
}

.step-doclink__icon {
  margin-top:2px;
}

.step-doclink:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

.step-bonus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  background-color: var(--c-cream);
  max-width: 300px;
  margin: 0 auto;
}

.step-bonus:hover {
  opacity: 0.5;
}

.step-bonus::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid var(--c-cream);
}

.step-bonus::after { 
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(/camp/kodomo_nisa/assets/img/arrow_forward_ios.svg);
  background-repeat: no-repeat;
  right: 16px;
  top: 20px;
  background-size: contain;
}

.step-bonus__amount {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 1px;
  color: var(--c-text);
  margin-bottom: -8px;
}

.step-bonus__amount::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 12px;
  background-color: var(--c-accent-light);
  z-index: 0;
}

.step-bonus__max {
  position: relative;
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin-top: 5px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.24px;
}

.step-bonus__num {
  position: relative;
  z-index: 1;
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 0.72;
  letter-spacing: -2.32px;
}

 span.step-bonus__num span{
  display: inline-block;
  transform: scaleY(0.7);
  vertical-align: 0.1rem;
  margin-right: 0rem;
}

.step-bonus__unit {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--c-text);
}

.step-bonus__unit-top,
.step-bonus__unit-main {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.24px;
  white-space: nowrap;
}

.step-scallop {
  display: block;
  width: 102%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 2;
  margin: -35px 0 -2px -2px;
  

}

.step-scallop img{
  width: 100%;
  height: auto;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.modal[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .float-cta {
  display: none;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--c-overlay);
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 343px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 56px 24px 16px;
  border-radius: 20px;
  background-color: #ffffff;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background-color: var(--c-text);
}

.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__close:hover {
  opacity: 0.5;
}

.modal__close:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

.modal__title {
  padding-bottom: 32px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.36px;
  color: var(--c-text);
  text-align: center;
}

.modal__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
}

.modal__group {
  display: flex;
  flex-direction: column;
}

.modal__subhead {
  padding-bottom: 8px;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.16px;
  color: var(--c-text);
}

.modal__list {
  padding-left: 22px;
  list-style: disc;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.15px;
  color: var(--c-text);
}

.modal__note {
  display: flex;
  gap: 2px;
  padding-top: 12px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.12px;
  color: var(--c-text-sub);
}

.modal__dismiss {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.14px;
  color: var(--c-text);
}

.modal__dismiss:hover {
  opacity: 0.5;
}

.early {
	overflow: hidden;
}

.early__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 34px 16px 0;
  background-color: var(--c-white);
}

.early__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.early__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.48px;
  color: var(--c-text);
  text-align: center;
  position: relative;
}

.early__title::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--c-primary);
  box-shadow: 24px 0 0 var(--c-primary),48px 0 0 var(--c-primary),72px 0 0 var(--c-primary);
  position: absolute;
  top: -4px;
  right: 0;
  margin-right: 82px;
  
}

.early__lead {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.32px;
  color: var(--c-text);
  text-align: center;
}

.early__hl {
  font-weight: 700;
  background: linear-gradient(transparent 55%, var(--c-accent-light) 55%);
}

.early__illust {
  width: 290px;
  max-width: 100%;
  height: auto;
}

.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 16px;
  background-color: var(--c-gray-100);
}

.faq-section__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.48px;
  color: var(--c-text);
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 500px;
}

.faq {
  padding: 20px 16px;
  border-radius: 10px;
  background-color: var(--c-white);
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.faq__heading {
  margin: 0;
}

.faq__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
}

.faq__toggle:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 6px;
}

.faq__lead {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 12px;
  align-items: flex-start;
  position: relative;
}

.faq__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
}

.faq__badge--q {
  background-color: var(--c-text);
}

.faq__badge--q::before {
  content: "Q";
  color: var(--c-white);
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  font-size: 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: block;
  text-align: center;
  line-height: 27px;
  position: absolute;
}

.faq__badge--a {
  border: 2px solid var(--c-text);
  position: relative;
}

.faq__question {
  flex: 1;
  min-width: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.15px;
  color: var(--c-text);
}

.faq__badge--a::before {
  content: "A";
  color: var(--c-text);
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  font-size: 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: block;
  text-align: center;
  line-height: 27px;
  position: absolute;
}

.faq__mark {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq__mark::before,
.faq__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: var(--c-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq__mark::before {
  width: 12px;
  height: 3px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.faq__mark::after {
  width: 3px;
  height: 12px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.faq__toggle[aria-expanded="true"] .faq__mark::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq__panel {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.faq__panel[hidden] {
  display: none;
}

.faq__answer {
  flex: 1;
  min-width: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.14px;
  color: var(--c-text);
}

.cv-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 16px 12px 24px;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.32px;
  text-align: center;
  color: var(--c-white) !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cv-btn:hover {
  opacity: 0.5;
}

.cv-btn--primary {
  background-color: var(--c-primary);
  box-shadow: inset 0 -3px 0 0 var(--c-shadow);
  background: radial-gradient(77.07% 73% at 50.16% 16.46%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 90%, rgba(255, 255, 255, 0) 90.38%, rgba(255, 255, 255, 0) 100%), var(--c-primary);
}

.cv-btn--primary::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(/camp/kodomo_nisa/assets/img/cv-kids.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  vertical-align: -3px;
}

.cv-btn--secondary {
  background-color: var(--c-text);
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.5);
  background: radial-gradient(77.07% 73% at 50.16% 16.46%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 90%, rgba(255, 255, 255, 0) 90.38%, rgba(255, 255, 255, 0) 100%), var(--c-text);
}

.cv-btn::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(/camp/kodomo_nisa/assets/img/arrow_forward_white.svg);
  background-repeat: no-repeat;
  right: 8px;
  background-size: contain;
}

.cv-btn__label {
  margin: 0 20px 0 0;
}

.cv-btn__label__txt{
  display: inline-block;
}

.primary {
  margin-right: 24px;
}

.float-cta__buttons {
  display: flex;
  gap: 4px;
  width: 100%;
  max-width: 500px;
}

.float-cta__btn {
  flex: 1;
  min-width: 0;
  min-height: 56px;
  padding: 8px 8px 8px 16px;
  font-size: 13px;
  letter-spacing: 0.26px;
}

.float-cta__note {
  margin-top: 2px;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.45;
  color: var(--c-text);
}

.site-footer {
  background-color: var(--c-text);
}

.site-footer__copyright {
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.44px;
  text-align: center;
  color: var(--c-white);
      padding: 40px 16px 0;
}

.ft-block {
  padding: 48px  16px;
  background-color: var(--c-white);
  font-size: 12px;
}

.notes-heading {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.28px;
}

.notes-bullets {
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.24px;
  padding: 4px 0 0 24px;
}

.notes-link {
  line-height: 150%;
  letter-spacing: 0.24px;
  margin-top: 4px;
}

.notes-link a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
    text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.notes-link img {
	margin-top:2px;
}

.notes-body {
  padding-top: 16px;
}

.notes-link:hover {
  opacity: 0.5;
}

.footer__note {
  font-weight: 400;
    font-size: 12px;
    line-height: 145%;
    color: var(--c-text-sub);
    padding-top: 4px;
}

.pc-rail {
  display: none;
}

@media (min-width: 500px) {
  body {
    background-color: var(--c-cream);
    background-image: url(/camp/kodomo_nisa/assets/img/bg_archi.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    background-attachment: fixed;
  }

  .cv {
  padding: 21.28px 32px 32px;
  }

  .cv__balloon {
    margin-bottom: 21.28px;
    padding: 16px 53.28px;
  }

  .cv__balloon-lead {
    font-size: 16px
  }

  .cv__balloon-main {
    font-size: 19px;
  }

  .cv__balloon::after {
      bottom: -8px;
  }

  .cv__routes {
    gap: 21.28px;
  }
  .cv__route {
    gap: 10.72px;
  }

  .cv__route-label {
    font-size: 16px;
    padding: 0 21.28px 2.72px;
  }

  .cv__route-label::before,
  .cv__route-label::after {
    bottom: 2.72px;
    width: 2.4px;
  }

  .cv__route-label::before {
    left: 2.72px;
  }
  .cv__route-label::after {
    right: 2.72px;
  }

  .cv__btn {
    height: 77.28px;
    gap: 10.72px;
  }

  .btn__label {
    font-size: 21px;
      margin-right: 26.72px;
  }

  .cv__more {
    gap: 5.28px;
    font-size: 17px;
    margin-top: 10.72px;
  }

  .cv__more-icon {
    width: 21.28px;
    height: 21.28px;
  }

  .cv__note {
    font-size: 16px;
    margin-top: 10.72px;
  }

  .sim__cta-label {
    font-size: 15px;
  }

  .lp > main {
    box-shadow: 0 0 20px rgba(56, 36, 13, 0.1);
  }
  
  .cv-btn__label__secondary {
	margin-right: 0px !important;
  }
  
}

@media (min-width: 768px) {
  .lp {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px minmax(0, 1fr);
    align-items: start;
    column-gap: 32px;
    max-width: 1440px;
    margin-inline: auto;
  }

  .lp > main {
    grid-column: 2;
    grid-row: 1;
    width: 500px;
    background-color: var(--c-white);
    box-shadow: 0 0 20px rgba(56, 36, 13, 0.1);
  }

  .site-footer {
    grid-column: 2;
    grid-row: 2;
  }

  .pc-rail {
    grid-row: 1;
    position: sticky;
    top: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
  }

  .pc-rail--left {
    grid-column: 1;
    justify-self: end;
    width: 100%;
    max-width: 400px;
  }

  .pc-rail--right {
    grid-column: 3;
    justify-self: start;
    gap: 32px;
  }

  .pc-rail__title {
    width: 350px;
    max-width: 100%;
    height: auto;
    margin-bottom: 64px;
  }

  .pc-rail__routes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 400px;
  }

  .pc-rail__route {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .pc-rail__route--pad {
    padding-inline: 16px;
  }

  .pc-rail__label {
    position: relative;
    padding: 0 16px 2px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    color: var(--c-text);
    white-space: nowrap;
  }

  .pc-rail__label span {
    font-weight: 900;
  }

  .pc-rail__label::before,
  .pc-rail__label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.78px;
    height: 20px;
    border-radius: 1px;
    background-color: var(--c-text);
  }

  .pc-rail__label::before {
    left: 2px;
    transform: translateY(-50%) rotate(-25deg);
  }

  .pc-rail__label::after {
    right: 2px;
    transform: translateY(-50%) rotate(25deg);
  }

  .pc-rail__cta {
    max-width: 400px;
    min-height: 77px;
    padding: 16px 21px 16px 32px;
    font-size: 21px;
  }
  
  .pc-rail__cta.btn--secondary {
	width: 100%;
  }

  .pc-rail__cta__primary{
    margin-right: 28px;
    font-size: 16px;
  }

  .pc-rail__cta__secondary{
    margin-right: 0px;
    font-size: 16px;
  }

  .pc-rail__note {
    display: flex;
    gap: 2px;
    margin-top: 8px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.45;
    color: var(--c-text);
	white-space: nowrap;
  }

  .pc-nav {
    width: 280px;
    padding: 16px 32px;
    background-color: var(--c-white);
    border: 3px solid var(--c-text);
    border-radius: 15px;
  }

  .pc-nav__list {
    list-style: none;
  }

  .pc-nav__item {
    border-bottom: 1px solid var(--c-gray-100);
  }

  .pc-nav__item:last-child {
    border-bottom: none;
  }

  .pc-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 64px;
    padding: 8px;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.16px;
    color: var(--c-text);
    text-decoration: none;
  }

  .pc-nav__link:hover {
    opacity: 0.5;
  }

  .pc-nav__link > :first-child {
    flex: 1;
    min-width: 0;
  }

  .pc-nav__icon {
    flex: none;
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .pc-nav__sub {
    display: block;
    font-size: 13px;
    line-height: 1.5;
  }

  .pc-qr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 280px;
    height: 140px;
    padding: 6px 8px 6px 20px;
    background-color: var(--c-white);
    border: 5px solid var(--c-white);
    border-radius: 15px;
    box-shadow: 0 2px 8px var(--c-shadow-weak);
  }

  .pc-qr__text {
    flex: none;
    font-weight: 900;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--c-text);
  }

  .pc-qr__img {
    flex: none;
    width: 128px;
    height: 128px;
  }
}

@media (min-width: 1220px) {
  .pc-rail {
    display: flex;
  }
}
