@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic&display=swap');


.jp{
  font-family: "Noto Sans JP", sans-serif;
}
.eng{
  font-family: "Zen Maru Gothic", sans-serif;
}
body {
    margin: 0;
    background: #FEF7F8;
    color: #2b2b2b;
    font-size: 16px;
      font-family: "Noto Sans JP", sans-serif;
}
/* ====== step form base ====== */
form#stepForm {
    background: #fff;
    border-radius: 20px;
}
.section-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid #ccc;
}

.section-form-head-text30 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-form-head-text30 span {
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 10000000px;
  color: #fff;
  background-color: #67AFD8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* progress */
.progress {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.progress__meta {
  font-size: 18px;
  font-weight: 500;
  color: #ccc;
}

.progress__bar {
    height: 6px;
    border-radius: 999px;
    background: #e2e2e2;
    position: relative;
    overflow: hidden;
    width: 200px;
}

.progress__bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--progress, 0%);
  background: #67AFD8;
  transition: width .25s ease;
}

/* step show/hide */
.form-step {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: .2s;
  padding: 40px 20px 32px;
  max-width: 740px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.form-step.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}


/* title */
.form-title {
  font-size: 24px;
  margin: 0 0 40px;
  text-align: center;
  font-weight: 700;
}

.form-title span {
  display: block;
  font-size: 16px;
  color: #9A9A9A;
  margin-top: 14px;
  font-weight: 400;
}

/* choices */
.choice-list {
  list-style: none;
  flex-wrap: wrap;
  justify-content: c;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 14px 32px;
}

.choice-list li{
  width: calc((100% - 32px) / 2);
  position: relative;
}

.choice {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 15px 12px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  text-align: center;
  transition: .25s;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.15));
  background-color: #fff;
}

.choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}


/* =========================
   擬似ラジオ（外円）
   14px × 14px
========================= */

.choice span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E2E2E2;
  transform: translateY(-50%);
  box-sizing: border-box;
  transition: background .2s ease, border-color .2s ease;
}

/* =========================
   中の円（8px）
========================= */
.choice span::after {
  content: "";
  position: absolute;
  left: 21px;   /* (14 - 8) / 2 */
  top: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background .2s ease;
}

/* =========================
   hover（未選択）
========================= */
.choice:hover span::before {
  background: #ffffff;
  border-color: #5bb3e6;
}

.choice:hover span::after {
  background: #5bb3e6;
}

/* =========================
   checked
========================= */
.choice input[type="radio"]:checked + span::before {
  background: #ffffff;
  border-color: #5bb3e6;
}

.choice input[type="radio"]:checked + span::after {
  background: #5bb3e6;
}

/* =========================
   focus-visible（キーボード）
========================= */
.choice input[type="radio"]:focus-visible + span::before {
  outline: 2px solid rgba(91, 179, 230, 0.4);
  outline-offset: 2px;
}

.choice:hover {
  background-color: #67AFD8;
  color: #fff;
  font-size: 16px;
  transition: .25s;
}

.choice input {
    position: absolute;
    left: 19px;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    margin: 0;
    padding: 0;
}
/* =========================
   checked 時：choice 全体を青
========================= */
.choice input[type="radio"]:checked ~ span,
.choice input[type="radio"]:checked + span {
  color: #fff;
}

.choice input[type="radio"]:checked {
  /* ダミー：兄弟セレクタ用 */
}

.choice:has(input[type="radio"]:checked) {
  background-color: #67AFD8;
  color: #fff;
}

/* nav buttons */
.nav.nav--end {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.nav--end {
  justify-content: space-between;
}

.btn {
  cursor: pointer;
  color: #9A9A9A;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  display: block;
  margin-top: 32px;
}

.btn--primary {
  background: #5bb3e6;
  color: #fff;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  border-radius: 1000000px;
  justify-content: center;
  padding: 16px;
  line-height: 12px;
}

.btn--ghost {
  background: #fff;
}

/* table-like form */
.form-table {
  display: grid;
  gap: 20px;
  margin-top: 12px;
}

.row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  align-items: center;
}
.form-table .th{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.row--full {
  grid-template-columns: 180px 1fr;
}

.th em {
    font-style: normal;
    font-size: 12px;
    margin-left: 8px;
    background: #D86681;
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
}

.td input[type="text"],
.td input[type="tel"],
.td input[type="email"],
.td select {
  width: 100%;
  padding: 4px 20px;
  line-height: 32px;
  font-size: 14px;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.15));
    background-color: #fff;
  border-radius: 10px;
}

.check {
  display: flex;
  gap: 10px;
  align-items: center;
}

.notice {
    font-size: 14px;
    /* opacity: .85; */
    margin-top: 16px;
    text-align: center;
    color: #827F7B;
}

.notice a {
  text-decoration: underline;
}

.form-error {
  color: #b00020;
  font-size: 13px;
  margin-top: 10px;
  min-height: 1em;
}

@media (max-width: 640px) {
  .row {
    grid-template-columns: 1fr;
  }
}





.w-980 {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.w-1200 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

section.section-reason {
    margin-top: 80px;
    margin-bottom: 120px;
}

.section-reason__inner__ttl{
  font-size: 64px;
  text-align: center;
  color: #d8668171;
  margin-bottom: 32px;
}

.section-reason__inner__ttl span{
  font-size: 24px;
  margin-top: 14px;
  display: block;
  color: #2b2b2b;
  font-weight: 700;
}


ul.section-reason__content {
    padding: 32px 40px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}


ul.section-reason__content li{
width: calc((100% - 60px) / 3);
}

.td input[type="text"]::placeholder,
.td input[type="tel"]::placeholder,
.td input[type="email"]::placeholder,
.td select::placeholder {
  color: #CCCCCC;
}
.td input[type="text"]::placeholder,
.td input[type="tel"]::placeholder,
.td select::placeholder,
.td input[type="email"]::placeholder,
.td input[type="text"]::-webkit-input-placeholder,
.td input[type="tel"]::-webkit-input-placeholder,
.td select::-webkit-input-placeholder,
.td input[type="email"]::-webkit-input-placeholder,
.td input[type="text"]:-ms-input-placeholder,
.td input[type="tel"]:-ms-input-placeholder,
.td select:-ms-input-placeholder,
.td input[type="email"]:-ms-input-placeholder {
  color: #CCCCCC;
}

header.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    position: fixed;
    z-index: 99999;
    width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    padding: 14px 32px;
    border-radius: 10px;
}



.header-logo {
    width: 260px;
}

.header-logo a{
    width: 260px;
    display: block;
}

.header-logo a img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.header-btn-wrap{
  width: 230px;
  height: 40px;
}
.header-btn-wrap a{
  width: 230px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5bb3e6;
  color: #fff;
  border-radius: 1000000px;
}


section.section-header {
    margin-top: 135px;
    margin-bottom: 80px;
}

section.section-header picture,
section.section-header picture img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

section.section-header picture img{
filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.15));
}

section.section-header h1{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.span-01{
  font-size: 20px;
  font-weight: 400;
  display: block;
}
.span-02{
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  margin-bottom: 26px;
  margin-top: 24px;
}

.span-02-01{
  color: #D86681;
}

.span-03{
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  display: block;
}

.span-03-01{
  font-size: 24px;
}

.section-header__list{
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-header__list li{
  background-color: #5bb3e6;
  color: #fff;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 10px;
}
.section-reason__content__item__text{
  margin-top: 18px;
}
.section-reason__content__item__text p {
    color: #8A8A8A;
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.5;
}
.section-reason__content__item__text h3{
  font-weight: 700;
}

.pink{
  color: #D86681;
}
.yellow{
  color: #D8B266;
}
.blue{
  color: #5bb3e6;
}



footer{
  background: #E8EEF7;
  text-align: center;
  padding: 12px;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
}

.cta-btn-sp{
  display: none;
}
@media screen and (max-width:1200px){
  .w-1200 {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
}@media screen and (max-width:980px){
  .w-980 {
    width: 100%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
}
@media screen and (max-width:640px) {
  ul.section-reason__content {
    padding: 32px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 32px;
}
ul.section-reason__content li {
    width: 100%;
}
.section-reason__content__item__text p {
    color: #8A8A8A;
    font-size: 12px;
    margin-top: 14px;
    line-height: 1.5;
}
.section-reason__content__item__text {
    margin-top: 14px;
}

.section-reason__inner__ttl span {
    font-size: 20px;
    margin-top: 12px;
    display: block;
    color: #2b2b2b;
    font-weight: 700;
}
.section-reason__inner__ttl {
    font-size: 40px;
    text-align: center;
    color: #d8668171;
    margin-bottom: 32px;
}
.section-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 20px;
    border-bottom: 1px solid #ccc;
    flex-direction: column;
    justify-content: center;
gap: 12px;
  }

.progress {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
}
.progress__meta{
  order: 1;
  font-size: 14px;
}
.progress__bar{
  order: 2;
  margin-top: 8px;
}
.progress__bar {
    height: 4px;
}
.header-logo {
    width: 140px;
}
.header-logo a {
    width: 140px;
    display: block;
}
header.header {
    width: calc(100% - 40px);
    top: 10px;
    padding: 10px;
}
.header-btn-wrap a {
    width: 150px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5bb3e6;
    color: #fff;
    border-radius: 1000000px;
    font-size: 12px;
}
.header-btn-wrap {
    width: auto;
    height: auto;
}
.header-btn span{
  display: none;
}
.span-01 {
    font-size: 16px;
    font-weight: 400;
    display: block;
}
.span-02 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    display: block;
    margin-bottom: 18px;
    margin-top: 18px;
}
.span-03-01 {
    font-size: 16px;
}
.span-03 {
    font-size: 16px;
}
.section-header__list {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.section-header__list li {
    background-color: #5bb3e6;
    color: #fff;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 10px;
    font-size: 10px;
}
.section-header__list li {
    background-color: #5bb3e6;
    color: #fff;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 11px;
    line-height: 1.5;
}
.form-title {
    font-size: 18px;
    margin: 0 0 20px;
    text-align: center;
    font-weight: 700;
}
.form-title span {
    display: block;
    font-size: 14px;
    color: #9A9A9A;
    margin-top: 8px;
    font-weight: 400;
}
.choice-list {
    list-style: none;
    flex-wrap: wrap;
    justify-content: c;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 14px;
}
.choice-list li {
    width: 100%;
    position: relative;
}
.form-table .th {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 700;
    gap: 10px;
}
.th em {
    font-style: normal;
    font-size: 10px;
    margin-left: 8px;
    background: #D86681;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
}
.notice {
    font-size: 10px;
    /* opacity: .85; */
    margin-top: 16px;
    text-align: center;
    color: #827F7B;
    line-height: 2;
}
section.section-header {
    margin-top: 140px;
    margin-bottom: 64px;
}
.choice{
  font-size: 14px;
}
section.section-reason {
    margin-top: 80px;
    margin-bottom: 80px;
}

.cta-btn-sp{
  position: fixed;
  z-index: 99999;
  bottom: 10px;
  left: 50%;
  transform:translateX(-50%);
  max-width: 390px;
  width: calc(100% - 40px);
  left: 50%;
  display: block;
}
}

* {
  scroll-margin-top: 100px;
}
html {
  scroll-behavior: smooth;
}


.section-form-thanks.w-980 div {
    background: #fff;
    padding: 90px 20px;
    text-align: center;
}


.section-form-thanks.w-980 div h3 {
  color: #D86681;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;

  }

.section-form-thanks.w-980 div p {
  font-size: 16px;
  line-height: 2;
  
  }

@media screen and (max-width:640px) {
  .section-form-thanks.w-980 div {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}.section-form-thanks.w-980 div p {
    font-size: 14px;
    line-height: 2;
    text-align: left;
}
    .section-form-thanks.w-980 div h3 {
    color: #D86681;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 2;
    text-align: left;
}
section.section-header {
    margin-top: 100px;
    margin-bottom: 40px;
}
section.section-header picture, section.section-header picture img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
section.section-header picture img {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
}
  }