@charset "UTF-8";
/*----------------------------------------------------
  reset
----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Mohave:wght@500&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  --clipPath: inset(0 100% 0 0);
  --opacity: 0;
}

a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 96%;
  top: 8px;
  left: 0;
  background-image: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0) 25%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 75%
  );
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-clip-path: var(--clipPath);
  clip-path: var(--clipPath);
  opacity: var(--opacity);
}

/*----------------------------------------------------
共通
----------------------------------------------------*/
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
}

.inner {
  margin: 0 auto;
  padding: 0 30px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.main {
  max-width: 600px;
  margin: 0 auto;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
}
.header {
  max-width: 600px;
  margin: 0 auto;
  height: 60px;
  display: grid;
  place-items: center;
  background-color: #fff;
}
.header-logo {
  display: block;
}

/* ===============================================
# step
=============================================== */
.step {
  margin-top: 64px;
}

.step__body {
  background-color: #edf3ff;
  padding-bottom: 15px;
}

@media screen and (min-width: 375px) {
  .step__body {
    padding-bottom: 30px;
  }
}

.step__item {
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  padding: 1.25rem;
  background-color: #fff;
  position: relative;
}

@media screen and (min-width: 375px) {
  .step__item {
    padding: clamp(19px, 5vw, 40.5px);
  }
}

.step__item:not(:first-child) {
  margin-top: 1.5rem;
}

@media screen and (min-width: 375px) {
  .step__item:not(:first-child) {
    margin-top: 2.4rem;
  }
}

.step__item-title {
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (min-width: 375px) {
  .step__item-title {
    font-size: clamp(16px, 6.4vw, 36px);
  }
}

@media screen and (max-width: 374px) {
  .step__item-title {
    font-size: 6.4vw;
  }
}

.step__item-num {
  font-size: 6rem;
  font-family: "Mohave", sans-serif;
  color: #eeeeee;
  position: absolute;
  top: 0.6rem;
  right: 1.25rem;
}

@media screen and (min-width: 375px) {
  .step__item-num {
    font-size: clamp(16px, 25.6vw, 140px);
    right: clamp(19px, 5vw, 40.5px);
    top: clamp(7px, 2vw, 10px);
  }
}

@media screen and (max-width: 374px) {
  .step__item-num {
    font-size: 25.6vw;
  }
}

.step__item-text {
  line-height: calc(25.6 / 16);
  margin-top: 1.5rem;
}

.step__item-text span {
  font-weight: bold;
}

@media screen and (min-width: 375px) {
  .step__item-text {
    font-size: clamp(16px, 4.26666vw, 25px);
  }
}

@media screen and (max-width: 374px) {
  .step__item-text {
    font-size: 4.26666vw;
  }
}

.step__item-img {
  margin-top: 1.5rem;
  width: 100%;
}

.step__item-img img {
  aspect-ratio: 297/172;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.step__item-link {
  text-decoration: underline;
}

/* ===============================================
# faq
=============================================== */
.faq {
  margin-top: 92px;
}

.faq__title {
  margin-bottom: -7%;
}

.faq__list {
  position: relative;
}

.faq-list__item {
  background-color: #fff;
  border: 2px solid;
  -o-border-image: linear-gradient(to right, #17467c, #3786e0) 1;
  border-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#17467c),
      to(#3786e0)
    )
    1;
  border-image: linear-gradient(to right, #17467c, #3786e0) 1;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.faq-list__item + .faq-list__item {
  margin-top: 0.75rem;
}

@media screen and (min-width: 375px) {
  .faq-list__item + .faq-list__item {
    margin-top: clamp(12px, 9.12vw, 20px);
  }
}

.faq-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 375px) {
  .faq-list__item-content {
    font-size: clamp(16px, 3.5vw, 25px);
    gap: clamp(16px, 3.5vw, 25px);
    padding: clamp(16px, 3.5vw, 25px);
  }
}

@media screen and (max-width: 374px) {
  .faq-list__item-content {
    font-size: 4.26666vw;
    gap: 4.26666vw;
    padding: 4.26666vw;
  }
}

.faq-list__item-question {
  line-height: calc(20.8 / 16);
  font-weight: bold;
  padding-right: 20px;
}

.faq-list__item-content--question {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.faq-list__item-content--question img {
  max-width: 18px;
  max-height: 41px;
}

@media screen and (max-width: 374px) {
  .faq-list__item-content--question img {
    max-width: 4.5vw;
  }
}

@media screen and (min-width: 375px) {
  .faq-list__item-content--question img {
    max-width: 6vw;
    max-height: clamp(41px, 8.4vw, 65px);
  }
}

.faq-list__item-content--question::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 2.5px;
  top: 50%;
  right: 16px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#17467c),
    to(#3786e0)
  );
  background: linear-gradient(to right, #17467c, #3786e0);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 375px) {
  .faq-list__item-content--question::before {
    width: clamp(18px, 3.5vw, 25px);
    right: clamp(16px, 3.5vw, 25px);
    height: clamp(3px, 0.625vw, 4px);
  }
}

.faq-list__item-content--question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 2.5px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#17467c),
    to(#3786e0)
  );
  background: linear-gradient(to right, #17467c, #3786e0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (min-width: 375px) {
  .faq-list__item-content--question::after {
    width: clamp(18px, 3.5vw, 25px);
    right: clamp(16px, 3.5vw, 25px);
    height: clamp(3px, 0.625vw, 4px);
  }
}

.faq-list__item-content--question.is-open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.faq-list__item-answer {
  line-height: calc(25.6 / 16);
}

.faq-list__item-content--answer {
  padding-top: 0;
}

.faq-list__item-content--answer img {
  max-width: 18px;
  max-height: 34px;
}

@media screen and (max-width: 374px) {
  .faq-list__item-content--answer img {
    max-width: 4.5vw;
  }
}

@media screen and (min-width: 375px) {
  .faq-list__item-content--answer img {
    max-width: 6vw;
    max-height: clamp(34px, 7vw, 54px);
  }
}

.faq-list__item-hidden {
  display: none;
}

/* ===============================================
# mv
=============================================== */
.mv {
  position: relative;
}
.mv_wrap{
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 4.27vw, 24px);
  position: absolute;
  top: 2.13vw;
  left: 50%;
  transform: translateX(-50%);
  width: 89%;
}
.mv_campaign{
  display: grid;
  gap: 8px;
}

.mv__cta {
  position: absolute;
  bottom: 3.5%;
  left: 0;
  right: 0;
  padding: 0 7px;
}
img.p-banner-counseling {
  margin-top: 24px;
  margin-bottom: 26px;
}
img.p-banner-cta {
  padding-bottom: 18%;
}
.cta {
  display: block;
}

/* ===============================================
# apply
=============================================== */
.apply {
  /* margin-bottom: clamp(24px, 6.4vw, 32px); */
  position: relative;
}
.apply__wrap {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: min(10.7vw, 56px);
  left: 50%;
  transform: translateX(-50%);
  width: 89%;
}
.apply__head {
  width: 100%;
  display: grid;
  gap: min(10.7vw, 39px);
}
.apply__content {
  display: inline-block;
  position: relative;
}
.apply_content_bkcolor_1{
display: block;
/* border: 4px solid transparent; */
border-radius: 10px;
padding: 1rem 1.25rem 1.25rem;
background-color: #FFFFFF;
width: 100%;
height: auto;
}

.apply_content_bkcolor{
  display: block;
  background: linear-gradient(to bottom right, #FFD700, #DAA520, #B8860B, #FFD700);
  border-radius: 10px;
  padding: 4px;
  width: 100%;
  height: auto;
  }


.apply__details{
  position: absolute;
  top: 0;
  /* left: 50%;
  transform: translateX(-50%); */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.apply__text {
  color: #4f4f4f;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(16px, 4.266vw, 20px);
  font-weight: 700;
  line-height: 130%;
}
.apply__text span{
  color: #FA657A;
}
.apply__wrap ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: min(5.33vw, 32px);
  border-bottom: 1px solid #f0f0f0;
  margin-top: 4.8vw;
}
.apply__wrap li a {
  display: block;
}
/* .apply__cta {
  margin: 20px 0;
} */

.apply__cta img {
  width: 100%;
}
.apply__text-limit {
  font-family: "Noto Sans JP";
  font-size: clamp(15px, 4.266vw, 20px);
  font-weight: 500;
  line-height: 130%;
  margin-top: 4.8vw;
}
@media (min-width: 800px) {
  .apply__wrap ul{
    margin-top: 2vw;
  }
  .apply__text-limit {
    margin-top: 2vw;
  }
}
@media (max-width: 599px) {
  .apply__content {
    padding-bottom: 16px;
  }
  .apply__text {
    font-size: 4vw;
    white-space: nowrap;
  }
  .apply__text-limit {
    font-size: 4vw;
    white-space: nowrap;
  }
}
/* ===============================================
# benefits
=============================================== */
.benefits {
  width: 100%;
  background-color: #FFF6DF;
}
.benefits__items {
  display: flex;
  flex-direction: column;
}
.benefits__items img {
  width: 100%;
}
.benefits_intems_contain { position: relative; }
.benefits02 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 89%;
  display: grid;
  gap: 0.875rem;
  margin-top: 2rem;
}

/* ===============================================
# doctors
=============================================== */
.doctors {
  width: 100%;
  position: relative;

  padding-bottom: 4.2%;
}
.doctors img {
  width: 100%;
}
.doctors__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  bottom: clamp(72px, 23vw, 150px);
  width: 89.33%;
  left: 50%;
  transform: translateX(-50%);
}
.doctors__cta img {
  width: 100%;
}
.doctors__rchan img {
  width: 100%;
}
/* ===============================================
# footer
=============================================== */
.footer {
  max-width: 600px;
  width: 100%;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  background-color: #fff;
  margin: 0 auto;
}
.copy {
  width: 100%;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  background: #2e2e2e;
  color: #fff;
  text-align: center;
  font-size: clamp(14px, 3.733vw, 16px);
  /* margin: 0 auto clamp(40px, 23vw, 92px); */
  padding: 2.1%;
  min-height: 32px;
}

/* ===============================================
# fixed-cta
=============================================== */
.fixed-cta {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  max-width: 600px;
  margin: 0 auto;
  padding: 5px 0;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.fixed-cta p {
  width: 100%;
  font-family: "Zen Kaku Gothic New";
  font-size: clamp(13px, 3.733vw, 16px);
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 0px;
  text-align: center;
}
.fixed-cta-items {
  display: flex;
}

.fixed-cta img {
  display: block;
  margin-bottom: -6px;
}
