@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  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;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

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

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  max-width: 621px;
  margin: 0 auto;
  word-break: break-all;
  color: #242424;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: 621px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 min(25.4358974359px, 4.1025641026vw);
}

/*------------------------------
header
------------------------------*/
header {
  width: 621px;
  max-width: 100%;
  margin: 0 auto;
  position: absolute;
  padding: 16px;
}

.header__logo {
  width: 47.18%;
}

main {
  position: relative;
}

/*------------------------------
fv
------------------------------*/
.fv {
  position: relative;
  overflow: hidden;
}
.fv::before {
  content: "";
  position: absolute;
  background: #fff;
  aspect-ratio: 1/1;
  transform: translate(-50%, 82%);
  width: 154%;
  left: 50%;
  bottom: 0%;
  border-radius: 50%;
}

.fv__cta {
  position: absolute;
  bottom: 12.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 94.8%;
  aspect-ratio: 756/176;
}

#float {
  display: inline-block;
  background: url(../img/bg_cta-button.webp) no-repeat center center/100%;
  aspect-ratio: 756/176;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
  max-width: 590px;
  font-size: min(28.6153846154px, 4.6153846154vw);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 11.5%;
  left: 50%;
  transform: translateX(-50%);
}
#float.fl {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 500;
  transition: opacity 0.3s;
  transform: translateX(-50%);
}
#float.act {
  opacity: 0;
  pointer-events: none;
}
#float strong {
  display: block;
  font-size: min(44.5128205128px, 7.1794871795vw);
  position: relative;
  margin-top: 0.2em;
  letter-spacing: 0.1em;
  margin-left: -1em;
}
#float strong::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.webp) no-repeat center center/contain;
  aspect-ratio: 22/26;
  right: -1.05em;
  width: 0.9em;
}

#float {
  transition: opacity 0.3s;
}
#float.act {
  opacity: 0;
  pointer-events: none;
}

/*------------------------------
sec01
------------------------------*/
.sec01 {
  position: relative;
  margin-top: -16%;
}
.sec01 .inner {
  position: relative;
  z-index: 10;
}

.sec01__title {
  font-size: min(34.9743589744px, 5.641025641vw);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  color: #002F63;
  position: relative;
}
.sec01__title::before {
  content: "";
  position: absolute;
  background: url(../img/dec1.webp) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  width: 6%;
  left: 50%;
  top: -25%;
}

.sec01__content {
  margin-top: 37px;
}

.sec01__item:nth-child(n+2) {
  margin-top: 40px;
}

.sec01__header {
  display: flex;
  align-items: center;
}

.sec01__number {
  width: min(136.7179487179px, 22.0512820513vw);
}

.sec01__heading {
  width: calc(100% - min(136.7179487179px, 22.0512820513vw));
  font-size: min(31.7948717949px, 5.1282051282vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #F86577;
  margin-left: min(19.0769230769px, 3.0769230769vw);
}
.sec01__heading strong {
  display: block;
  font-size: min(50.8717948718px, 8.2051282051vw);
  font-weight: 500;
  color: #002F63;
}

.sec01__heading--footnote {
  font-size: min(12.7179487179px, 2.0512820513vw);
}

.sec01__subext {
  font-size: min(25.4358974359px, 4.1025641026vw);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

.sec01__image {
  margin-top: 16px;
}

.sec01__description {
  margin-top: 16px;
  font-size: min(22.2564102564px, 3.5897435897vw);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.sec01__description strong {
  font-weight: 700;
  color: #F86577;
}

.sec01__message {
  margin-top: 24px;
}

/*------------------------------
cta
------------------------------*/
.cta img {
  margin: 0 auto;
  width: 92%;
  display: block;
}

.cta01 {
  padding: 6% 0;
}
.cta01 img {
  margin: 0 auto;
  width: 92%;
  display: block;
}

/*------------------------------
sec02
------------------------------*/
/*------------------------------
sec03
------------------------------*/
.sec03 {
  padding: 10% 0;
}

.sec03__title {
  font-size: min(38.1538461538px, 6.1538461538vw);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-align: center;
  color: #002F63;
}

.sec03__step {
  margin-top: 24px;
}

.sec03__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec03__item:nth-child(n+2) {
  margin-top: 4%;
  position: relative;
}
.sec03__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16.8%;
  transform: translate(-50%, -82%);
  background: #E0D2E3;
  width: min(6.358974359px, 1.0256410256vw);
  height: 18%;
}

.sec03__label {
  width: 34%;
}

.sec03__content {
  width: 63%;
}

.sec03__heeading {
  font-size: min(31.7948717949px, 5.1282051282vw);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #002F63;
}

.sec03__description {
  font-size: min(22.2564102564px, 3.5897435897vw);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/*------------------------------
sec04
------------------------------*/
.sec04 {
  padding: 40px 0;
}

/*------------------------------
sec05
------------------------------*/
.sec05 {
  padding: 9% 0;
  background: url(../img/sec05_bg.webp) no-repeat center center/cover;
}

.sec05__title {
  width: 98.2%;
}

.sec05__list {
  margin-top: 10%;
}

.sec05__item {
  padding: 3% 2% 5%;
  background: #fff;
  position: relative;
}
.sec05__item:nth-child(n+2) {
  margin-top: 13.4%;
}

.sec05__number {
  position: absolute;
  top: -7%;
  left: -4%;
  display: inline-block;
  width: min(143.0769230769px, 23.0769230769vw);
}

.sec05__heading {
  margin-left: 24.7%;
  font-size: min(25.4358974359px, 4.1025641026vw);
  font-weight: 700;
  line-height: 1.6;
  color: #002F63;
}

.sec05__image {
  margin-top: 30px;
}

.sec05__description {
  margin-top: 4.3%;
  font-size: min(25.4358974359px, 4.1025641026vw);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 0 0.5em;
}
.sec05__description strong {
  color: #F86577;
}

/*------------------------------
sec06
------------------------------*/
.sec06 {
  padding-bottom: 40px;
}

/*------------------------------
faq
------------------------------*/
.faq {
  padding: 40px 0;
  background: url(../img/bg_faq.webp) repeat-y center center/100%;
}

.faq__title {
  font-size: 2.4rem;
  font-size: min(38.1538461538px, 6.1538461538vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #002F63;
  position: relative;
  text-align: center;
}
.faq__title::before {
  content: "FAQ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
}
.faq__title span {
  position: relative;
}

.faq__list {
  margin-top: 60px;
}

.faq__item {
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(30, 61, 72, 0.1);
  font-size: min(22.2564102564px, 3.5897435897vw);
  font-weight: 500;
  line-height: 1.6;
}
.faq__item:nth-child(n+2) {
  margin-top: 6.5%;
}

.faq__q {
  border-radius: 4px 4px 0 0;
  position: relative;
  padding: 0;
  height: min(95.3846153846px, 15.3846153846vw);
  display: flex;
  align-items: center;
  background: #F6F6F6;
  padding-left: 15.7%;
  padding-right: 12%;
}
.faq__q::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4.3%;
  transform: translateY(-50%);
  background: url(../img/icon_q.webp) no-repeat center center/contain;
  width: 9%;
  aspect-ratio: 48/48;
}

.faq__icon {
  cursor: pointer;
  width: 6%;
  aspect-ratio: 1/1;
  position: absolute;
  right: 4.5%;
  top: 50%;
  transform: translateY(-50%);
}
.faq__icon.is-open .faq__bar2 {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq__bar1,
.faq__bar2 {
  width: min(31.7948717949px, 5.1282051282vw);
  aspect-ratio: 20/2;
  background: #002F63;
  border-radius: 20px;
}

.faq__bar1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__bar2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease 0s;
}

.faq__a {
  border-radius: 0 0 4px 4px;
  display: none;
  padding: 4.2% 0;
  position: relative;
  padding-left: 15.7%;
  padding-right: 6%;
  background: #fff;
}
.faq__a.type2 {
  padding: 5% 0;
  padding-left: 15.7%;
  padding-right: 6%;
}
.faq__a::before {
  content: "";
  position: absolute;
  top: 2.3em;
  left: 1.2em;
  transform: translateY(-50%);
  background: url(../img/icon_a.webp) no-repeat center center/contain;
  width: 2.2em;
  aspect-ratio: 48/48;
}

/*------------------------------
footer
------------------------------*/
footer {
  padding: 16px 0;
}

.footer__menu li {
  text-align: center;
}
.footer__menu li:nth-child(n+2) {
  margin-top: 12px;
}
.footer__menu li a {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
}

.footer__copyright {
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */
