@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);
}

html {
  overscroll-behavior-y: none;
}

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

.header__logo {
  width: 51%;
}

/*------------------------------
fv
------------------------------*/
/*------------------------------
cta
------------------------------*/
.cta {
  padding: 3% 0;
}

#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;
  font-size: min(28.6153846154px, 4.6153846154vw);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
#float strong {
  display: block;
  font-size: min(38.1538461538px, 6.1538461538vw);
  position: relative;
  margin-top: 0.2em;
  margin-left: -0.7em;
  letter-spacing: 0.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: 0.4em;
  width: 0.45em;
}

.cta__button-orange {
  display: inline-block;
  background: url(../img/bg_cta-button2.png) 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;
  font-size: min(28.6153846154px, 4.6153846154vw);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
.cta__button-orange strong {
  display: block;
  font-size: min(38.1538461538px, 6.1538461538vw);
  position: relative;
  margin-top: 0.2em;
  margin-left: -0.7em;
  letter-spacing: 0.1em;
}
.cta__button-orange 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: 0.4em;
  width: 0.45em;
}

#float {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  transition: opacity 0.3s;
  width: 92%;
  max-width: 570px;
  position: relative;
}
#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;
}

.cta-wrap {
  aspect-ratio: 390/83.52;
  padding-top: 7%;
}

.cta02 {
  padding: 16px 0;
}

.cta__text {
  font-size: min(22.2564102564px, 3.5897435897vw);
  font-weight: 700;
  line-height: 1.6;
  color: #495880;
  margin-bottom: 12px;
}

/*------------------------------
sec01
------------------------------*/
.sec01 {
  position: relative;
}

.sec01__content {
  padding: 34% 0 10%;
  background: url(../img/sec01_bg.webp) no-repeat center center/cover;
}

.sec01__heading {
  width: 85.9%;
  margin: 0 auto;
}

.sec01__check-list {
  margin-top: 40px;
}
.sec01__check-list li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 0.5em 0.5em 2.5em;
  background: #fff;
  font-size: min(25.4358974359px, 4.1025641026vw);
  font-weight: 500;
  line-height: normal;
  position: relative;
}
.sec01__check-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.75em;
  transform: translateY(-50%);
  background: url(../img/icon_check.webp) no-repeat center center/contain;
  width: 1.25em;
  aspect-ratio: 42/40;
}
.sec01__check-list li:nth-child(n+2) {
  margin-top: 1.6%;
}
.sec01__check-list li strong {
  font-size: min(31.7948717949px, 5.1282051282vw);
  font-weight: 700;
  color: #2B4680;
}

/*------------------------------
sec02
------------------------------*/
.sec02 {
  padding: 34px 0 40px;
  position: relative;
}
.sec02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
  background: url(../img/sec02_bubble.webp) no-repeat center center/contain;
  width: 41%;
  aspect-ratio: 320/80;
}

/*------------------------------
sec03
------------------------------*/
.sec03 {
  background: url(../img/bg_bubble.webp) no-repeat center center/cover;
  padding-bottom: 10%;
}

.sec02__title {
  width: 62.3%;
  margin: 0 auto;
}

.sec03__list {
  margin-top: 5%;
}

.sec03__item:nth-child(n+2) {
  margin-top: 6.3%;
}
.sec03__item:nth-child(2n) .sec03__heading {
  padding-left: 0;
  padding-right: 2.5%;
}

.sec03__heading {
  padding-left: 2.5%;
}

.sec03__description {
  padding: 0 4.5%;
  margin-top: 0.6em;
  font-size: min(25.4358974359px, 4.1025641026vw);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.sec03__description strong {
  display: inline-block;
  font-weight: 900;
  background: linear-gradient(90deg, #F1995B 0%, #F86577 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
}
.sec03__description strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #F1995B 0%, #F86577 100%);
}

/*------------------------------
sec04
------------------------------*/
/*------------------------------
sec05
------------------------------*/
.sec05 {
  position: relative;
  z-index: 10;
}

.sec05__figure {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 69%);
  width: 93.8%;
}

/*------------------------------
sec06
------------------------------*/
.sec06 {
  padding: 48.5% 0 10%;
  position: relative;
}
.sec06::before {
  content: "";
  position: absolute;
  background: url(../img/img_dots.webp) no-repeat center center/100%;
  transform: translate(0%, 0%);
  aspect-ratio: 420/848;
  width: 54%;
  right: 0%;
  top: 0%;
}
.sec06::after {
  content: "";
  position: absolute;
  background: url(../img/img_dots.webp) no-repeat center center/100%;
  transform: translate(0%, 0%);
  aspect-ratio: 420/848;
  width: 54%;
  left: 0%;
  bottom: -10%;
}
.sec06 .inner {
  position: relative;
  z-index: 20;
}

.sec06__title {
  width: 63%;
  margin: 0 auto;
}

.sec06__list {
  position: relative;
  padding-bottom: 12%;
}
.sec06__list::before {
  content: "";
  position: absolute;
  background: url(../img/dec1.webp) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 580/4;
  width: 82%;
  left: 50%;
  bottom: 0%;
}

.sec06__item {
  margin-top: 2%;
}

.sec06__description {
  padding-left: 6.1%;
  margin-top: 2.7%;
  font-size: min(25.4358974359px, 4.1025641026vw);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.sec06__description strong {
  font-weight: 700;
  color: #F86577;
}

/*------------------------------
sec07
------------------------------*/
.sec07 {
  position: relative;
  z-index: 30;
}

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

.sec08__title {
  font-size: min(23.8461538462px, 3.8461538462vw);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  background: linear-gradient(270deg, #7189C3 0%, #CB99BC 100%);
  padding: 8px 0;
  position: relative;
}
.sec08__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/sec08_en.webp) no-repeat center center/contain;
  width: 83.6%;
  aspect-ratio: 658/155;
}
.sec08__title strong {
  display: block;
  font-size: min(50.8717948718px, 8.2051282051vw);
}

.sec08__list {
  margin-top: 8%;
  position: relative;
}
.sec08__list::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25.7%;
  transform: translateY(-50%);
  background: url(../img/img_bar.webp) no-repeat center center/100% 100%;
  width: min(12.7179487179px, 2.0512820513vw);
  height: 107%;
}

.sec08__item {
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3% 4%;
}
.sec08__item:nth-child(n+2) {
  margin-top: 2.5%;
}

.sec08__icon {
  width: min(95.3846153846px, 15.3846153846vw);
}

.sec08__body {
  width: 70%;
}

.sec08__heading {
  font-size: min(25.4358974359px, 4.1025641026vw);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  color: #2B4680;
}

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

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

.faq__title {
  font-size: min(38.1538461538px, 6.1538461538vw);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  background: linear-gradient(90deg, #F1995B 0%, #F86577 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.faq__list {
  margin-top: 7%;
}

.faq__item {
  padding: 4.3%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(30, 61, 72, 0.1);
  font-size: min(25.4358974359px, 4.1025641026vw);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.faq__item:nth-child(n+2) {
  margin-top: 5%;
}

.faq__q {
  background: linear-gradient(90deg, #F1995B 0%, #F86577 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  padding-left: 2.25em;
}
.faq__q::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_question.webp) no-repeat center center/contain;
  width: 1.5em;
  aspect-ratio: 48/48;
}

.faq__a {
  margin-top: 3.7%;
}

/*------------------------------
sec09
------------------------------*/
.sec09 {
  padding: 24px 0;
}

.sec09__title {
  font-size: min(22.2564102564px, 3.5897435897vw);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.sec09__table {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #EAEAEA;
}
.sec09__table dt, .sec09__table dd {
  font-size: min(22.2564102564px, 3.5897435897vw);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 1.143em 0.37em;
}
.sec09__table dt:nth-of-type(n + 2), .sec09__table dd:nth-of-type(n + 2) {
  border-top: 1px solid #EAEAEA;
}
.sec09__table dt {
  width: 37%;
  background: #F6F6F6;
}
.sec09__table dd {
  width: 63%;
}

/*------------------------------
footer
------------------------------*/
footer {
  padding: 16px 0;
  background: linear-gradient(90deg, #F1995B 0%, #F86577 100%);
}

.footer__menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.footer__menu li:nth-child(n+2) {
  margin-top: min(10px, 2.5641025641vw);
}
.footer__menu li a {
  display: inline-block;
  font-size: min(19.0769230769px, 3.0769230769vw);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-decoration: underline;
}

.footer__copyright {
  margin-top: 20px;
  font-size: min(12.7179487179px, 2.0512820513vw);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */