@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --base: #0B0036;
  --bg: #DCF3F3;
  --blue1: #2774AD;
  --blue2: #58D1E1;
  --gray1: #B5C2C2;
  --gray2: #8CA9B5;
  --gray3: #D5E2E6;
  --gradation1: linear-gradient(135deg, #80D5E2, #2567B5);
  --gradation2: linear-gradient(135deg, #F1D204, #F16E04);
}

/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  min-height: 0%;
  vertical-align: top;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  backface-visibility: hidden;
  transition: 0.3s;
}
a img {
  display: inline-block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  background: #FFF;
  position: relative;
  font-family: "Arial", "Noto Sans JP", sans-serif;
  text-align: center;
  color: var(--base);
}
@media only screen and (max-width: 767px) {
  body {
    min-width: initial;
    overflow: hidden;
    overflow-y: scroll;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "Arial", "Noto Sans JP", sans-serif;
}

label {
  cursor: pointer;
}

img {
  vertical-align: middle;
}

.l-main {
  display: block;
}

.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media only screen and (max-width: 1400px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.inline-pc {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .inline-pc {
    display: none;
  }
}

.inline-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .inline-sp {
    display: inline;
  }
}

.no-link {
  pointer-events: none;
}

.c-page-links {
  scroll-margin-top: 9.5rem;
}
@media only screen and (max-width: 767px) {
  .c-page-links {
    scroll-margin-top: 6rem;
  }
}

.l-header {
  width: 100%;
  margin: 0 auto;
}
.l-header__container {
  max-width: 37.5rem;
  width: 100%;
  margin: 0 auto;
}
.l-header__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.4rem;
  margin: 0 auto;
  box-sizing: border-box;
  background: var(--blue1);
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-size: 1.1rem;
  font-weight: 400;
  color: #FFF;
}
.l-header__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.6rem;
  margin: 0 auto;
}
.l-header__body_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 0 0.95rem;
  box-sizing: border-box;
  line-height: 1.2;
}
.l-header__body_title {
  letter-spacing: 0.025em;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue1);
}
.l-header__body_permission {
  letter-spacing: 0.025em;
  font-size: 1rem;
  font-weight: 400;
}

.l-footer {
  width: 100%;
  margin: 0 auto;
}
.l-footer__container {
  max-width: 37.5rem;
  width: 100%;
  margin: 0 auto;
}
.l-footer__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 3rem;
  padding: 0 0.95rem;
  box-sizing: border-box;
  background: #FFF;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue1);
}
.l-footer__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  height: 5rem;
  background: var(--blue1);
}
.l-footer__list {
  display: flex;
  justify-content: center;
  gap: 2em;
  line-height: 2;
  letter-spacing: 0.025em;
  font-size: 1.2rem;
  font-weight: 700;
}
.l-footer__list a {
  text-decoration: none;
  color: #FFF;
}
.l-footer__copy {
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-size: 1rem;
  font-weight: 400;
  color: #FFF;
}

.l-main {
  display: block;
  max-width: 37.5rem;
  width: 100%;
  min-height: calc(100vh - 6rem - 8rem);
  margin: 0 auto;
  box-sizing: border-box;
  background: var(--bg);
}
.l-main form {
  display: block;
  min-height: calc(100vh - 6rem - 8rem);
  height: 100%;
}

.l-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.l-modal__overlay {
  width: 100%;
  height: 100%;
  background: rgba(29, 48, 71, 0.74);
}
.l-modal__box {
  width: 30rem;
  border-radius: 3rem;
  box-shadow: 0.8rem 0.8rem 1.6rem rgba(0, 0, 0, 0.64);
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-modal__head {
  padding: 1.55rem 0 1.85rem;
  box-sizing: border-box;
  background: var(--blue1);
  line-height: 1.2777777778;
  letter-spacing: 0.025em;
  font-size: 3.6rem;
  font-weight: 700;
  color: #FFF;
}
.l-modal__head h2 {
  line-height: inherit;
  letter-spacing: inherit;
  font-feature-settings: "palt";
  font-size: inherit;
}
.l-modal__head span {
  font-size: 3.2rem;
}
.l-modal__body {
  padding: 1.7rem 0 2rem;
  box-sizing: border-box;
  background: #FFF;
}
.l-modal__lead {
  margin: 0 auto 1.7rem;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-size: 2.2rem;
  font-weight: 700;
}
.l-modal__btns {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 0 2rem;
  box-sizing: border-box;
}

.l-radio__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-radio__btn--ptn1 {
  width: 26rem;
  height: 9rem;
  border: 0.3rem solid var(--gray1);
  border-radius: 1.6rem;
  box-sizing: border-box;
  line-height: 1.1;
  letter-spacing: 0.025em;
  font-size: 2rem;
  font-weight: 700;
}
.l-radio__btn--ptn1 strong {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue1);
}
.l-radio__btn--ptn1 input[type=radio] {
  display: none;
}
.l-radio__btn--ptn1:has(input[type=radio]:checked) {
  background: var(--gradation1);
  color: #FFF;
}
.l-radio__btn--ptn1:has(input[type=radio]:checked) strong {
  color: #FFF;
}
.l-radio__btn--ptn2 {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  height: 6.6rem;
  border: 0.3rem solid var(--gray1);
  border-radius: 1.6rem;
  box-shadow: -0.4rem -0.4rem 0.4rem rgba(255, 255, 255, 0.8), 0.4rem 0.4rem 0.4rem rgba(122, 131, 146, 0.16);
  box-sizing: border-box;
  background: #FFF;
  line-height: 1.2222222222;
  letter-spacing: 0.025em;
  font-size: 1.8rem;
  font-weight: 700;
}
.l-radio__btn--ptn2 input[type=radio],
.l-radio__btn--ptn2 input[type=checkbox] {
  display: none;
}
.l-radio__btn--ptn2:has(input[type=radio]:checked, input[type=checkbox]:checked) {
  position: relative;
  background: var(--gradation1);
  color: #FFF;
}
.l-radio__btn--ptn2:has(input[type=radio]:checked, input[type=checkbox]:checked)::after {
  content: "";
  width: 0.8rem;
  height: 1.4rem;
  background: url(../img/arrow-01.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
}
.l-radio__btn--ptn2-typ2 {
  grid-column: 1/3;
}
.l-radio__btn--ptn3 {
  width: auto;
  height: 10.8rem;
  border: 0.3rem solid var(--gray1);
  border-radius: 1.6rem;
  box-shadow: -0.4rem -0.4rem 0.4rem rgba(255, 255, 255, 0.8), 0.4rem 0.4rem 0.4rem rgba(122, 131, 146, 0.16);
  box-sizing: border-box;
  background: #FFF;
  line-height: 1.2222222222;
  letter-spacing: 0.025em;
  font-size: 1.8rem;
  font-weight: 700;
}
.l-radio__btn--ptn3 input[type=radio],
.l-radio__btn--ptn3 input[type=checkbox] {
  display: none;
}
.l-radio__btn--ptn3:has(input[type=radio]:checked, input[type=checkbox]:checked) {
  position: relative;
  background: var(--gradation1);
  color: #FFF;
}
.l-radio__btn--ptn3:has(input[type=radio]:checked, input[type=checkbox]:checked)::after {
  content: "";
  width: 0.8rem;
  height: 1.4rem;
  background: url(../img/arrow-01.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
}

.l-container {
  min-height: calc(100vh - 6rem - 8rem);
  height: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
}

.l-contents {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.3rem;
  min-height: calc(100vh - 10rem - 8rem);
  height: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  transform: translateX(-3rem);
  opacity: 0;
}
.l-contents.is-show {
  display: flex;
  transition: 1s linear 1s;
  transform: translateX(0);
  opacity: 1;
}
.l-contents__body_block + .l-contents__body_block {
  margin-top: 4rem;
}
.l-contents__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 31rem;
  height: 6rem;
  margin: 0 auto 1.2rem;
  border-radius: 2rem;
  box-sizing: border-box;
  background: var(--blue1);
  position: relative;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  /* 
  &::before {
      content: "";
      width: 4.542rem;
      height: 4.618rem;
      background: url(../img/finger.svg) 50% 50% no-repeat;
      position: absolute;
      bottom: -2.3rem;
      right: -2.18rem;
      translate: 0 0;
      animation: .6s linear infinite forwards finger;
      filter: drop-shadow(0 0 .4rem rgba(0,0,0,.6));
  }
  */
}
.l-contents__title span {
  font-size: 0.7em;
}
.l-contents__title.is-optional {
  background: #4693cc;
}
.l-contents__title.is-optional span{
  display: flex;
  align-items: center;
  gap: .95rem;
  font-size: inherit;
}
.l-contents__title.is-optional span::after {
  content: "任意";
  display: block;
  padding: .1rem 1.1rem .2rem;
  border: 1px solid #FFF;
  border-radius: .6rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
}
.l-contents__radiolist {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 27rem;
  margin: 0 auto;
}
.l-contents__radiolist--ptn2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  width: 27rem;
  margin: 0 auto;
}
.l-contents__check {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 27.05rem;
  margin: 2.1rem auto 0;
  padding-left: 4.15rem;
  box-sizing: border-box;
  position: relative;
  line-height: 1.375;
  letter-spacing: 0.025em;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
}
.l-contents__check::before {
  content: "";
  width: 3.4rem;
  aspect-ratio: 1/1;
  background: url(../img/icon-check.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 0.2em;
  left: 0;
}
.l-contents__check input[type=checkbox] {
  display: none;
}
.l-contents__check:has(input[type=checkbox]:checked)::before {
  background-image: url(../img/icon-checked.svg);
}
.l-contents__check:has(input[type=checkbox]:disabled) {
  color: var(--gray1);
}
.l-contents__select {
  position: relative;
}
.l-contents__select::after {
  content: "";
  width: 0.8rem;
  height: 1.4rem;
  background: url(../img/arrow-03.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%) rotate(90deg);
}
.l-contents__select select {
  max-width: 31rem;
  width: 100%;
  padding: 2rem 2.95rem;
  border: 0.3rem solid var(--gray1);
  border-radius: 1.6rem;
  box-sizing: border-box;
  outline: none;
  background: #FFF;
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
}
.l-contents__text {
  display: block;
  max-width: 31rem;
  width: 100%;
  margin: 0 auto;
}
.l-contents__text input[type=text] {
  width: 100%;
  padding: 2rem 2.95rem;
  border: 0.3rem solid var(--gray1);
  border-radius: 1.6rem;
  box-sizing: border-box;
  background: #FFF;
  line-height: 1.2222222222;
  letter-spacing: 0.025em;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
}
.l-contents__text_caption {
  margin: 0.75rem -2rem 0 0;
  line-height: 1.375;
  letter-spacing: 0.025em;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 700;
  font-feature-settings: 'palt';
}

.l-contents__text--name {
  display: flex;
  gap: 10px;
  max-width: 31rem;
  width: 100%;
  margin: 0 auto;
}

.l-contents__text--name input[type=text] {
  width: 100%;
  padding: 2rem 2.95rem;
  border: 0.3rem solid var(--gray1);
  border-radius: 1.6rem;
  box-sizing: border-box;
  background: #FFF;
  line-height: 1.2222222222;
  letter-spacing: 0.025em;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
}

.l-contents__text--birth {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 31rem;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2.95rem;
  border: 0.3rem solid var(--gray1);
  border-radius: 1.6rem;
  box-sizing: border-box;
  background: #FFF;
  line-height: 1.2222222222;
  letter-spacing: 0.025em;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
}
.l-contents__text--birth input[type=text] {
  max-width: -moz-min-content;
  max-width: min-content;
  width: 6em;
  text-align: center;
  line-height: inherit;
  font-size: inherit;
}
.l-contents__text.is-optional input[type=text],input[type=mail],input[type=tel] {
  width: 100%;
  padding: 2rem 2.95rem;
  border: 0.3rem solid #D4E1E1;
  border-radius: 1.6rem;
  box-sizing: border-box;
  background: #FFF;
  line-height: 1.2222222222;
  letter-spacing: 0.025em;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
}
.l-contents__text.is-optional input[type=text]::placeholder,input[type=mail]::placeholder,input[type=tel]::placeholder {
  color: #D4E1E1;
}
.l-contents__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.6rem;
  padding: 0 1.2rem;
  box-sizing: border-box;
}
.l-contents__btn--submit {
  height: 7.4rem;
}
.l-contents__btn_prev {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5714285714;
  letter-spacing: 0.025em;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray2);
}
.l-contents__btn_prev::before {
  content: "";
  width: 0.5rem;
  height: 0.8rem;
  background: url(../img/arrow-02.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-contents__btn_next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 16rem;
  height: 4.6rem;
  border-radius: 1rem;
  box-sizing: border-box;
  background: var(--gradation1);
  position: relative;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
}
.l-contents__btn_next::after {
  content: "";
  width: 0.8rem;
  height: 1.4rem;
  background: url(../img/arrow-01.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
}
.l-contents__btn_next.is-unactive {
  background: var(--gray1);
}
.l-contents__btn_next-ptn2 {
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1.45rem;
  position: relative;
  line-height: 1.2222222222;
  letter-spacing: 0.025em;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue1);
}
.l-contents__btn_next-ptn2::after {
  content: "";
  width: 0.8rem;
  height: 1.25rem;
  background: url(../img/arrow-03.svg) 50% 50%/100% no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.l-contents__btn_submit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 24rem;
  height: 7.4rem;
  border-radius: 1rem;
  box-sizing: border-box;
  background: var(--gradation2);
  position: relative;
  overflow: hidden;
  line-height: 1.2857142857;
  letter-spacing: 0.025em;
  text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.16);
  font-feature-settings: "palt";
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFF;
}
.l-contents__btn_submit::after {
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(260deg, rgba(255, 255, 255, 0.8) 50%, transparent);
  position: absolute;
  top: 0;
  left: -100%;
  animation: btnFlash 4s ease forwards infinite;
  transform: skew(-12deg);
}
.l-contents__btn_submit.is-unactive {
  background: var(--gray1);
}
.l-contents__btn_submit.is-unactive::after {
  animation: none;
}
.l-contents__btn_submit.is-unactive span::before, .l-contents__btn_submit.is-unactive span::after {
  animation: none;
}
.l-contents__btn_submit span {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
  padding-right: 2.5rem;
  box-sizing: border-box;
  position: relative;
}
.l-contents__btn_submit span::before, .l-contents__btn_submit span::after {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  border-width: 0.2rem 0.2rem 0 0;
  border-style: solid;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
}
.l-contents__btn_submit span::before {
  right: 1.4rem;
  animation: submitArrow1 0.4s linear forwards infinite;
}
.l-contents__btn_submit span::after {
  right: 2.2rem;
  animation: submitArrow2 0.4s linear forwards infinite;
}
.l-contents__btn_submit strong {
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 2px 2px 0 #209d3e, 0 0 0 #209d3e, -2px -2px 0 #209d3e, 2px 0 0 #209d3e, 0 2px 0 #209d3e, -2px 0 0 #209d3e, 0 -2px 0 #209d3e;
}
.l-contents__btn_submit.is-unactive strong {
  text-shadow: 2px 2px 0 #aeaeae, 0 0 0 #aeaeae, -2px -2px 0 #aeaeae, 2px 0 0 #aeaeae, 0 2px 0 #aeaeae, -2px 0 0 #aeaeae, 0 -2px 0 #aeaeae;
}/*追記*/
.l-contents__term {
  margin: 5.65rem auto 0;
  line-height: 1.5714285714;
  letter-spacing: 0.025em;
  font-size: 1.4rem;
  font-weight: 700;
}
.l-contents__term a {
  text-decoration: none;
  color: var(--gray2);
}

@keyframes finger {
  0% {
    translate: 0 0;
  }
  25% {
    translate: 0 -0.5rem;
  }
  50% {
    translate: 0 0.5rem;
  }
  100% {
    translate: 0 0;
  }
}
.l-step {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
}
.l-step__title {
  width: 5rem;
  line-height: 1.2222222222;
  letter-spacing: 0.025em;
  text-align: left;
  font-feature-settings: "palt";
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue2);
}
.l-step__list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
  width: calc(100% - 5rem);
  position: relative;
  z-index: 1;
}
.l-step__list::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: var(--blue2);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
}
.l-step__list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  aspect-ratio: 1/1;
  padding-top: 0.2rem;
  border-radius: 0.8rem;
  box-sizing: border-box;
  background: var(--gray3);
  overflow: hidden;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
}
.l-step__list li.is-current {
  background: var(--blue2);
}

/* 20260206追記 */
.l-contents__body_lead {
  width: calc(100% + 4rem);
  margin: 0 -2rem 1.7rem;
  line-height: 1.4285714286;
  font-size: 1.4rem;
  font-weight: 700;
}
.l-contents__bottom_lead {
  margin: 1.7rem auto 0;
  line-height: 1.4285714286;
  font-size: 1.4rem;
  font-weight: 700;
}
@keyframes btnFlash {
  0% {
    left: -100%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes submitArrow1 {
  0% {
    border-color: #FFF;
  }
  100% {
    border-color: #89C61F;
  }
}
@keyframes submitArrow2 {
  0% {
    border-color: #89C61F;
  }
  100% {
    border-color: #FFF;
  }
}