@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-behavior: smooth;
  font-size: 10px;
}
@media (max-width: 1140px) {
  html {
    font-size: 0.8771929825vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.3255813953vw;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    -webkit-transition: none;
    transition: none;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
}

.l-header {
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header.change-color {
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-header__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1440px;
  padding-left: 24px;
  padding-right: 15px;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__name {
  height: inherit;
}

.l-header__name-link {
  width: 14.4rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__name-link {
    width: 12.3rem;
  }
}

.footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1D6FB8;
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}

.footer__text {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}

.footer__company-link {
  padding: 0.4rem 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.6rem;
     -moz-column-gap: 0.6rem;
          column-gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}

.footer__company-logo {
  width: 3.6rem;
}

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

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

.l-inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 1.6rem;
  }
}

.l-large-inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .l-large-inner {
    padding-inline: 1.6rem;
  }
}

.l-bg {
  position: relative;
}

.bg-body {
  height: min(110vw, 1540px);
}
@media screen and (max-width: 1140px) {
  .bg-body {
    height: 154rem;
  }
}
@media screen and (max-width: 767px) {
  .bg-body {
    height: 81rem;
  }
}

.bg-body:first-child {
  margin-top: min(90.7142857143vw, 1270px);
}
@media screen and (max-width: 1140px) {
  .bg-body:first-child {
    margin-top: 113.4rem;
  }
}
@media screen and (max-width: 767px) {
  .bg-body:first-child {
    margin-top: 122.8rem;
  }
}

@media screen and (max-width: 767px) {
  .bg-body:nth-child(2) {
    margin-top: 11rem;
  }
}

.l-bg .bg-path {
  position: absolute;
  background-color: #F3F3F3;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  height: min(17.8571428571vw, 250px);
  border-radius: min(14.2857142857vw, 200px);
}
@media screen and (max-width: 1140px) {
  .l-bg .bg-path {
    height: 25rem;
    border-radius: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .l-bg .bg-path {
    height: 13.2rem;
    border-radius: 10rem;
  }
}

.l-bg .bg-path.--odd {
  top: min(65.7142857143vw, 920px);
  left: min(-93.2857142857vw, -1306px);
  width: min(208.9285714286vw, 2925px);
}
@media screen and (max-width: 1140px) {
  .l-bg .bg-path.--odd {
    top: 92rem;
    left: -147.6rem;
    width: 292.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-bg .bg-path.--odd {
    top: 32rem;
    left: -54.6rem;
    width: 102.2rem;
  }
}

.l-bg .bg-path.--even {
  top: min(47.4285714286vw, 664px);
  right: min(-27.8571428571vw, -390px);
  width: min(83.7857142857vw, 1173px);
}
@media screen and (max-width: 1140px) {
  .l-bg .bg-path.--even {
    top: 66.4rem;
    right: -53rem;
    width: 117.3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-bg .bg-path.--even {
    top: 39rem;
    right: -24.4rem;
    width: 62.3rem;
  }
}

@media screen and (max-width: 767px) {
  .l-bg.bg-body:first-child .bg-path.--even {
    top: 48rem;
    right: -24.4rem;
    width: 62.3rem;
  }
}

.l-page-top {
  z-index: 100;
  position: fixed;
  right: 1.9rem;
  bottom: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 7.6rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #1D6FB8;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-page-top {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 5rem;
  }
}

.l-page-top::before {
  position: absolute;
  content: "";
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2rem;
  height: auto;
  aspect-ratio: 201/2244;
  background-image: url(../images/icon-top-button.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .l-page-top::before {
    width: 1.3rem;
  }
}

.l-page-top.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.l-page-top.is-show:hover {
  opacity: 0.8;
}

.c-button {
  position: relative;
  background-color: #6F1361;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.c-button-mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.c-button-mail::before {
  content: "";
  width: 2rem;
  height: auto;
  aspect-ratio: 20/16;
  background-image: url(../images/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.c-button-contact {
  padding: 1.6rem 2rem;
  width: 19.6rem;
  border-radius: 4rem;
  outline: 0.3rem solid #6F1361;
  outline-offset: -1px;
  font-size: 1.6rem;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}

.c-button-contact:hover {
  background-color: #8a407f;
  opacity: 1;
}

.c-main-button {
  padding: 1.2rem 2rem 2rem;
  width: 46.8rem;
  height: 12rem;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  border-radius: 7rem;
  border: 0.3rem solid #fff;
  -webkit-box-shadow: 0.5rem 0.5rem 1.2rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0.5rem 0.5rem 1.2rem 0 rgba(0, 0, 0, 0.15);
  font-size: 2.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-main-button {
    padding: 1.7rem 3rem 2.2rem;
    margin-inline: auto;
    width: 100%;
    height: 8rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    font-size: 2rem;
  }
}

.c-main-button.--purple {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(34%, #6F1361), to(#C9AFD9));
  background: linear-gradient(0deg, #6F1361 34%, #C9AFD9 100%);
}

.c-main-button.--blue {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, #1D6FB8), to(#AED7FC));
  background: linear-gradient(0deg, #1D6FB8 45%, #AED7FC 100%);
}

.c-main-button:hover {
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}

.c-main-button .c-button-mail::before {
  width: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-main-button .c-button-mail::before {
    width: 2.7rem;
  }
}

.c-main-button .icon-arrow {
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-main-button .icon-arrow {
    width: 4rem;
    height: 4rem;
  }
}

.c-main-button .icon-arrow .svg-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.8rem;
}

.c-main-button.--purple .icon-arrow .path-arrow {
  width: 100%;
  fill: #6F1361;
}

.c-main-button.--blue .icon-arrow .path-arrow {
  fill: #1D6FB8;
}

.section-heading {
  position: relative;
  padding-bottom: 3.2rem;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-heading {
    padding-bottom: 2.7rem;
    font-size: 3.4rem;
  }
}

.section-heading::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 11.8rem;
  height: 0.5rem;
  background-color: #1D6FB8;
}
.section-heading.--reverse {
  color: #fff;
}

.section-heading.--reverse::before {
  background-color: #fff;
}

.section-heading-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section-heading-body .logo-img {
  margin-inline: auto;
  width: 10.3rem;
}

.section-heading .--num {
  font-family: "Barlow", sans-serif;
  font-size: 8rem;
  color: #1D6FB8;
}
@media screen and (max-width: 767px) {
  .section-heading .--num {
    font-size: 6rem;
  }
}

.section-heading .--strong {
  font-size: 5rem;
  font-weight: 900;
  color: #1D6FB8;
}
@media screen and (max-width: 767px) {
  .section-heading .--strong {
    font-size: 3.4rem;
  }
}

.heading-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .heading-top {
    font-size: 2.4rem;
  }
}

.heading-top.--reverse {
  margin-bottom: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .heading-top.--reverse {
    margin-bottom: 1.2rem;
  }
}

.en-heading {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: "Barlow", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .en-heading {
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
  }
}

/* フェードアニメーション */
/* ----------FV---------- */
.fadeIn-fv {
  opacity: 0;
  -webkit-animation: fvFadeIn 0.8s ease-out 0s forwards;
          animation: fvFadeIn 0.8s ease-out 0s forwards;
}

@-webkit-keyframes fvFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fvFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeUp-fv {
  opacity: 0;
  -webkit-animation: fvFadeUp 0.8s ease-out 0.8s forwards;
          animation: fvFadeUp 0.8s ease-out 0.8s forwards;
}

@-webkit-keyframes fvFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fvFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ----------下からふわっと---------- */
.fadeUp {
  opacity: 0;
}

.fadeUp.is-animated {
  opacity: 0;
  -webkit-animation: FadeUp 0.5s ease-out 0s forwards;
          animation: FadeUp 0.5s ease-out 0s forwards;
}

@-webkit-keyframes FadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes FadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
main {
  z-index: 1;
  position: relative;
}

/* ------------------------------------------------
bg
--------------------------------------------------- */
.bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* ------------------------------------------------
fv
--------------------------------------------------- */
.fv {
  z-index: 1;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.fv__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #F3F3F3;
}

.fv__bg .bg-path {
  background-color: #fff;
  top: 48.7917vw;
  height: 17.3611vw;
  border-radius: 13.8889vw;
}
@media screen and (max-width: 767px) {
  .fv__bg .bg-path {
    border-radius: 20rem;
    height: 19.6rem;
  }
}

.fv__bg .bg-path.--odd {
  top: 50.0972vw;
  left: -89.5278vw;
  width: 203.125vw;
}
@media screen and (max-width: 767px) {
  .fv__bg .bg-path.--odd {
    top: 18rem;
    left: -27rem;
    width: 92.9rem;
  }
}

.fv__bg .bg-path.--even {
  top: 34.0278vw;
  right: -25.6944vw;
  width: 81.4583vw;
}
@media screen and (max-width: 767px) {
  .fv__bg .bg-path.--even {
    top: 44rem;
    right: -52rem;
    width: 92.9rem;
  }
}

.fv__img {
  z-index: 50;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.fv__body {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/707;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .fv__body {
    aspect-ratio: 430/806;
  }
}

.fv__inner {
  z-index: 55;
  position: relative;
  padding-left: 12.22222vw;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    padding-inline: initial;
  }
}

.fv__title-container {
  padding-bottom: 8.2639vw;
}
@media screen and (max-width: 767px) {
  .fv__title-container {
    padding-top: 56.4rem;
    padding-bottom: 3.9rem;
    padding-left: 3.2rem;
  }
}

.fv__text {
  font-size: 1.11111vw;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.fv__title {
  margin-left: -0.2778vw;
  margin-top: 1.0417vw;
  font-size: 3.6111vw;
  font-weight: 900;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .fv__title {
    margin-left: 0;
    margin-top: 1rem;
    font-size: 3rem;
  }
}

.fv__title .--strong {
  font-size: 4.8611vw;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, right top, from(rgb(29, 111, 184)), color-stop(38%, rgb(29, 111, 184)), to(rgb(111, 15, 105)));
  background: linear-gradient(90deg, rgb(29, 111, 184) 0%, rgb(29, 111, 184) 38%, rgb(111, 15, 105) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .fv__title .--strong {
    font-size: 4rem;
  }
}

.fv__text.--bottom {
  margin-top: min(1.3571428571vw, 19px);
}
@media screen and (max-width: 767px) {
  .fv__text.--bottom {
    margin-top: 1.1rem;
  }
}

.fv__cta {
  z-index: 10;
  position: relative;
}

/* ------------------------------------------------
worries
--------------------------------------------------- */
.worries {
  padding-top: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .worries {
    padding-top: 4rem;
  }
}

.worries__heading {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .worries__heading {
    font-size: 2.1rem;
  }
}

.worries__heading .--strong {
  position: relative;
  font-size: 5.7rem;
  color: #1D6FB8;
}
@media screen and (max-width: 767px) {
  .worries__heading .--strong {
    font-size: 3rem;
  }
}

.worries__heading .--strong .--circle {
  position: absolute;
  display: block;
  top: -1rem;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.worries__heading .--strong .--circle span {
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #1D6FB8;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .worries__heading .--strong .--circle span {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.worries__heading .--strong .--circle span:nth-child(1) {
  margin-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .worries__heading .--strong .--circle span:nth-child(1) {
    margin-left: 1.1rem;
  }
}

.worries__heading .--strong .--circle span:nth-child(2) {
  margin-left: 5.8rem;
}
@media screen and (max-width: 767px) {
  .worries__heading .--strong .--circle span:nth-child(2) {
    margin-left: 2.8rem;
  }
}

.worries__heading .--strong .--circle span:nth-child(3) {
  margin-left: 4.6rem;
}
@media screen and (max-width: 767px) {
  .worries__heading .--strong .--circle span:nth-child(3) {
    margin-left: 2.3rem;
  }
}

.worries__head-content {
  position: relative;
  margin-top: 5.2rem;
  height: 63.5rem;
}
@media screen and (max-width: 767px) {
  .worries__head-content {
    margin-top: 3rem;
    height: 77.7rem;
  }
}

.worries__head-img {
  position: absolute;
  bottom: -7.6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 71.7rem;
}
@media screen and (max-width: 767px) {
  .worries__head-img {
    bottom: -1.2rem;
    width: 31.8rem;
  }
}

.worries__head-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  row-gap: 6.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .worries__head-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3rem;
  }
}

.worries__head-item {
  z-index: 1;
  position: relative;
  padding: 2.8rem 2rem 3.3rem;
  width: 32%;
  background-color: #D2E2F1;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .worries__head-item {
    padding: 2rem;
    width: 100%;
  }
}

.worries__head-item::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: -2.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.9rem;
  height: auto;
  aspect-ratio: 29/25;
  background-color: #D2E2F1;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 767px) {
  .worries__head-item::before {
    bottom: -1.3rem;
    width: 1.6rem;
    aspect-ratio: 16/14;
  }
}

.worries__band {
  z-index: 1;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #6F1361;
}
@media screen and (max-width: 767px) {
  .worries__band {
    padding-top: 1.4rem;
    padding-bottom: 2.4rem;
  }
}

.worries__band::before {
  z-index: 5;
  position: absolute;
  content: "";
  bottom: -5.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 17.8rem;
  height: 7rem;
  background-color: #6F1361;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 767px) {
  .worries__band::before {
    bottom: -2.4rem;
    width: 6.4rem;
    height: 2.5rem;
  }
}

.worries__band-text {
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .worries__band-text {
    font-size: 2.4rem;
  }
}

.worries__band-text .--strong {
  color: #FCFF5E;
}

.worries__content {
  padding-top: 13.5rem;
  background-color: rgba(202, 202, 202, 0.2);
}
@media screen and (max-width: 767px) {
  .worries__content {
    padding-top: 4rem;
  }
}

.worries__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .worries__content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.2rem;
  }
}

.worries__content-textArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.worries__content-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .worries__content-title {
    font-size: 2.4rem;
    text-align: center;
  }
}

.worries__content-title .--strong {
  color: #1D6FB8;
}

.worries__content-text {
  margin-top: 1.1rem;
  width: 52.8rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .worries__content-text {
    margin-top: 1.6rem;
    width: 100%;
    line-height: 2;
  }
}

.worries__content-img {
  width: 47.3rem;
}
@media screen and (max-width: 767px) {
  .worries__content-img {
    width: 100%;
  }
}

.worries__content-img img {
  border-radius: 2rem;
}

/* ------------------------------------------------
service
--------------------------------------------------- */
.service {
  z-index: 1;
  position: relative;
  padding-top: 9rem;
  background-color: rgba(202, 202, 202, 0.2);
}
@media screen and (max-width: 767px) {
  .service {
    padding-top: 7.2rem;
  }
}

.service__content {
  padding-bottom: 8.1rem;
}
@media screen and (max-width: 767px) {
  .service__content {
    padding-bottom: 5.6rem;
  }
}

.service__heading .section-heading {
  margin-top: -0.8rem;
}

.service__items {
  margin-top: 6rem;
  counter-reset: listnum;
}
@media screen and (max-width: 767px) {
  .service__items {
    margin-top: 5.5rem;
  }
}

.service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service__item:not(:first-child) {
  margin-top: 6rem;
}

.service__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .service__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service__textArea {
  width: 44.6rem;
}
@media screen and (max-width: 767px) {
  .service__textArea {
    width: 100%;
  }
}

.service__num-body {
  position: relative;
  padding: 1.6rem 1rem 2.1rem;
  width: 10.8rem;
  background-color: #1D6FB8;
  border-radius: 1.2rem;
}
@media screen and (max-width: 767px) {
  .service__num-body {
    margin-inline: auto;
  }
}

.service__num-body::before {
  position: absolute;
  content: "";
  bottom: -1.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.7rem;
  height: auto;
  aspect-ratio: 1699/2124;
  background-color: #1D6FB8;
  clip-path: polygon(100% 100%, 0 0, 100% 0);
}

.service__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.service__num::after {
  counter-increment: listnum;
  content: counter(listnum);
}

.service__title {
  margin-top: 2.2rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: #1D6FB8;
}
@media screen and (max-width: 767px) {
  .service__title {
    margin-top: 2.8rem;
    font-size: 2.4rem;
  }
}

.service__text {
  margin-top: 2.1rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .service__text {
    margin-top: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .service__img {
    margin-inline: auto;
  }
}

.service__item:nth-child(1) .service__img {
  width: 52.3rem;
}
@media screen and (max-width: 767px) {
  .service__item:nth-child(1) .service__img {
    margin-top: 3.2rem;
    width: 34rem;
  }
}

.service__item:nth-child(2) .service__img {
  width: 50.5rem;
}
@media screen and (max-width: 767px) {
  .service__item:nth-child(2) .service__img {
    margin-top: 2.2rem;
    width: 34rem;
  }
}

.service__band {
  background-color: #6F1361;
}

.service__band-inner {
  position: relative;
}

.service__band-textArea {
  padding-top: 4.7rem;
  padding-bottom: 4.6rem;
  width: 81.4rem;
}
@media screen and (max-width: 767px) {
  .service__band-textArea {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    width: 100%;
  }
}

.service__band-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__band-text {
    font-size: 2rem;
  }
}

.service__band-text::before,
.service__band-text::after {
  position: absolute;
  content: "";
  top: 8rem;
  width: 17rem;
  height: 0.3rem;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .service__band-text::before,
  .service__band-text::after {
    top: 5rem;
    width: 8.1rem;
    height: 1.5px;
  }
}

.service__band-text::before {
  left: -5.8rem;
  -webkit-transform: rotate(72deg);
          transform: rotate(72deg);
}
@media screen and (max-width: 767px) {
  .service__band-text::before {
    left: -1.8rem;
  }
}

.service__band-text::after {
  right: -5.8rem;
  -webkit-transform: rotate(108deg);
          transform: rotate(108deg);
}
@media screen and (max-width: 767px) {
  .service__band-text::after {
    right: -1.8rem;
  }
}

.service__band-text .--top {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .service__band-text .--top {
    font-size: 1.5rem;
  }
}

.service__band-text .--center {
  margin-inline: auto;
  padding-left: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4.2rem;
  line-height: 1.7;
  color: #FCFF5E;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(63.4%, transparent), color-stop(28.2%, #a889a3));
  background: linear-gradient(transparent 63.4%, #a889a3 28.2%);
}
@media screen and (max-width: 767px) {
  .service__band-text .--center {
    font-size: 2rem;
  }
}

.service__band-text .--strong {
  font-weight: 900;
  line-height: 1.3;
}

.service__band-text .--bottom {
  margin-top: 0.1rem;
  line-height: 1.7;
}

.service__band-img {
  position: absolute;
  bottom: 0;
  right: 1.4rem;
  width: 35.7rem;
}

/* ------------------------------------------------
effect
--------------------------------------------------- */
.effect {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .effect {
    padding-top: 5.6rem;
  }
}

.effect__heading .section-heading {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .effect__heading .section-heading {
    margin-top: 1.6rem;
  }
}

.effect__content {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .effect__content {
    margin-top: 4rem;
  }
}

.effect__content-img {
  margin-inline: auto;
  width: 80rem;
}
@media screen and (max-width: 767px) {
  .effect__content-img {
    width: 100%;
  }
}

/* ------------------------------------------------
merit
--------------------------------------------------- */
.merit {
  padding-top: 16rem;
  padding-bottom: 4.2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .merit {
    padding-top: 5.6rem;
    padding-bottom: 4.4rem;
  }
}

@media screen and (max-width: 767px) {
  .merit__heading-top {
    font-size: 3rem;
  }
}

.merit__heading-top .logo-img {
  margin-inline: initial;
}

.merit__contents {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .merit__contents {
    margin-top: 12.9rem;
  }
}

.merit__items {
  counter-reset: listnum;
}

.merit__item {
  z-index: 1;
  position: relative;
  padding-top: 4.9rem;
  padding-bottom: 3.6rem;
  min-height: 36rem;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .merit__item {
    padding-bottom: 3.6rem;
    min-height: 34rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.merit__item:not(:first-child) {
  margin-top: 8rem;
}

.merit__item:nth-child(odd) {
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: 34.4rem;
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
  background-position: left center;
}
@media screen and (max-width: 767px) {
  .merit__item:nth-child(odd) {
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    border-top-left-radius: initial;
    border-bottom-left-radius: initial;
  }
}

.merit__item:nth-child(even) {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
  background-position: right center;
}
@media screen and (max-width: 767px) {
  .merit__item:nth-child(even) {
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    border-top-right-radius: initial;
    border-bottom-right-radius: initial;
  }
}

.merit__item:nth-child(1) {
  background-image: url(../images/bg-merit01.jpg);
}
@media screen and (max-width: 767px) {
  .merit__item:nth-child(1) {
    background-position: 69% 50%;
  }
}

.merit__item:nth-child(2) {
  background-image: url(../images/bg-merit02.jpg);
}
@media screen and (max-width: 767px) {
  .merit__item:nth-child(2) {
    margin-top: 10.7rem;
    background-position: 0% 50%;
  }
}

.merit__item:nth-child(3) {
  background-image: url(../images/bg-merit03.jpg);
}
@media screen and (max-width: 767px) {
  .merit__item:nth-child(3) {
    margin-top: 12.4rem;
    background-position: 99% 50%;
  }
}

.merit__item:nth-child(4) {
  min-height: 39.9rem;
  background-image: url(../images/bg-merit04.jpg);
}
@media screen and (max-width: 767px) {
  .merit__item:nth-child(4) {
    margin-top: 12.4rem;
    padding-bottom: 0;
    background-position: 27% 50%;
  }
}

.merit__textArea {
  width: 52.6rem;
}
@media screen and (max-width: 767px) {
  .merit__textArea {
    width: 100%;
  }
}

.merit__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 3.1rem;
     -moz-column-gap: 3.1rem;
          column-gap: 3.1rem;
}
@media screen and (max-width: 767px) {
  .merit__title-container {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.merit__num-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Barlow", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .merit__num-text {
    font-size: 2rem;
  }
}

.merit__num-text::after {
  margin-top: -1.5rem;
  counter-increment: listnum;
  content: counter(listnum, decimal-leading-zero);
  font-size: 13.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .merit__num-text::after {
    margin-top: -1.1rem;
    font-size: 9.5rem;
  }
}

.merit__title {
  padding-bottom: 0.8rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .merit__title {
    padding-bottom: 0.6rem;
    font-size: 2rem;
  }
}

.merit__text {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .merit__text {
    margin-top: 1.9rem;
    line-height: 1.6;
  }
}

.merit__img {
  position: absolute;
}

.merit__item:nth-child(1) .merit__img {
  top: 8.7rem;
  left: -5.8rem;
  width: 35.9rem;
}
@media screen and (max-width: 767px) {
  .merit__item:nth-child(1) .merit__img {
    top: -11.6rem;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    width: 30rem;
  }
}

.merit__item:nth-child(2) .merit__img {
  top: 4.4rem;
  right: -3.1rem;
  width: 56.4rem;
}
@media screen and (max-width: 767px) {
  .merit__item:nth-child(2) .merit__img {
    top: -6.7rem;
    right: initial;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    width: 30rem;
  }
}

.merit__item:nth-child(3) .merit__img {
  top: 4.4rem;
  left: -6.8rem;
  width: 37.4rem;
}
@media screen and (max-width: 767px) {
  .merit__item:nth-child(3) .merit__img {
    top: -8.4rem;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    width: 30rem;
  }
}

.merit__item:nth-child(4) .merit__img {
  top: 5.2rem;
  right: -1.7rem;
  width: 47.9rem;
}
@media screen and (max-width: 767px) {
  .merit__item:nth-child(4) .merit__img {
    top: -9.5rem;
    right: initial;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    width: 30rem;
  }
}

.merit__table-img {
  position: absolute;
  bottom: -4.1rem;
  right: 6rem;
  width: 100.8rem;
}
@media screen and (max-width: 767px) {
  .merit__table-img {
    position: relative;
    bottom: initial;
    right: initial;
    margin-top: 3.5rem;
    margin-bottom: -4rem;
    margin-left: 1.6rem;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 767px) {
  .merit__table-img img {
    width: 100.8rem;
    max-width: none;
  }
}

/* ------------------------------------------------
price
--------------------------------------------------- */
.price {
  padding-top: 6.7rem;
}
@media screen and (max-width: 767px) {
  .price {
    padding-top: 5.6rem;
  }
}

.price__content {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .price__content {
    margin-top: 3.8rem;
  }
}

.price__head-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  color: #6F1361;
  text-align: center;
}

.price__head-text .--regular {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .price__head-text .--regular {
    font-size: 2.2rem;
  }
}

.price__head-text .--strong {
  z-index: 1;
  position: relative;
  margin-top: 2rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .price__head-text .--strong {
    margin-right: 1.8rem;
    font-size: 4.5rem;
  }
}

.price__head-text .--strong::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: -1.3rem;
  left: -1.5rem;
  width: 72.7rem;
  height: 4.1rem;
  background-color: #FCFF5E;
}
@media screen and (max-width: 767px) {
  .price__head-text .--strong::before {
    bottom: -0.9rem;
    left: 0;
    width: 100%;
    height: 2.5rem;
  }
}

.price__text--first {
  margin-top: 4rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
  color: #6F1361;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__text--first {
    top: 1.6rem;
    font-size: 2.1rem;
    line-height: 1.5;
  }
}

.price__text--second {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__text--second {
    margin-top: 1.6rem;
  }
}

.price__img {
  margin-top: 4rem;
  margin-inline: auto;
  width: 100.6rem;
}
@media screen and (max-width: 767px) {
  .price__img {
    margin-top: 1.4rem;
    width: 100%;
  }
}

.price__list-body {
  position: relative;
  margin-top: 3.3rem;
  margin-inline: auto;
  width: 98rem;
  height: auto;
  min-height: 20rem;
  outline: 0.4rem solid #1D6FB8;
  outline-offset: -0.3rem;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .price__list-body {
    width: 100%;
    min-height: 14.6rem;
    outline: 0.2rem solid #1D6FB8;
    outline-offset: -0.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.price__list-title {
  position: relative;
  width: 18.5rem;
  height: inherit;
  background-color: #1D6FB8;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__list-title {
    padding: 1rem;
    width: 100%;
    height: auto;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: initial;
    border-top-right-radius: 1rem;
    font-size: 1.6rem;
  }
}

.price__list-title::after {
  position: absolute;
  content: "";
  top: 0;
  right: -3.6rem;
  width: 3.7rem;
  height: 100%;
  background-color: #1D6FB8;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width: 767px) {
  .price__list-title::after {
    display: none;
  }
}

.price__lists {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 2.7rem;
  padding-bottom: 3rem;
  padding-left: 6.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .price__lists {
    padding: 1.4rem 2rem 2.4rem;
    row-gap: 1.2rem;
  }
}

.price__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.7rem;
     -moz-column-gap: 1.7rem;
          column-gap: 1.7rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .price__list {
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
    font-size: 1.6rem;
    line-height: 1;
  }
}

.price__list::before {
  content: "";
  width: 3.2rem;
  height: auto;
  aspect-ratio: 3177/2912;
  background-image: url(../images/icon-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .price__list::before {
    width: 1.6rem;
  }
}

.price__list-img {
  position: absolute;
  bottom: 0;
  right: 1.5rem;
  width: 22.3rem;
}
@media screen and (max-width: 767px) {
  .price__list-img {
    display: none;
  }
}

.price__cta {
  margin-top: 9.8rem;
}
@media screen and (max-width: 767px) {
  .price__cta {
    margin-top: 7.2rem;
  }
}

/* ------------------------------------------------
flow
--------------------------------------------------- */
.flow {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: rgba(29, 111, 184, 0.15);
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}

.flow__content {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .flow__content {
    margin-top: 4.8rem;
  }
}

.flow__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 11.5rem;
  counter-reset: listnum;
}
@media screen and (max-width: 767px) {
  .flow__items {
    row-gap: 8.2rem;
  }
}

.flow__item {
  position: relative;
  padding: 2.2rem 3.3rem 2.2rem 4rem;
  background-color: #fff;
  border-radius: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .flow__item {
    padding: 2.4rem 2rem;
    border-radius: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2rem;
  }
}

.flow__item:not(:first-child)::before {
  position: absolute;
  content: "";
  top: -7.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 5.9rem;
  height: auto;
  aspect-ratio: 59.4/34.36;
  background-image: url(../images/icon-arrow-bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .flow__item:not(:first-child)::before {
    top: -5rem;
    width: 3.4rem;
  }
}

.flow__num {
  position: relative;
  width: 10.5rem;
}
@media screen and (max-width: 767px) {
  .flow__num {
    padding-bottom: 1.1rem;
    width: 100%;
  }
}

.flow__num::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 10.3rem;
  background-color: #1D6FB8;
}
@media screen and (max-width: 767px) {
  .flow__num::after {
    top: initial;
    bottom: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 31.2rem;
    height: 1px;
  }
}

.flow__num-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #1D6FB8;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .flow__num-text {
    width: 100%;
    font-size: 1.4rem;
  }
}

.flow__num-text::after {
  margin-top: -0.7rem;
  counter-increment: listnum;
  content: counter(listnum, decimal-leading-zero);
  font-size: 7.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .flow__num-text::after {
    font-size: 5.2rem;
  }
}

.flow__textArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-inline: 1rem;
}
@media screen and (max-width: 767px) {
  .flow__textArea {
    padding-inline: initial;
  }
}

.flow__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

.flow__text {
  margin-top: 1.4rem;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__text {
    margin-top: 1.1rem;
    font-size: 1.4rem;
  }
}

.flow__img {
  width: 10.8rem;
  height: 10.8rem;
  border-radius: 50%;
  background-color: #1D6FB8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .flow__img {
    width: 8rem;
    height: 8rem;
  }
}

.flow__item:nth-child(1) .flow__img-icon {
  width: 5.8rem;
}
@media screen and (max-width: 767px) {
  .flow__item:nth-child(1) .flow__img-icon {
    width: 4.3rem;
  }
}

.flow__item:nth-child(2) .flow__img-icon {
  width: 7rem;
}
@media screen and (max-width: 767px) {
  .flow__item:nth-child(2) .flow__img-icon {
    width: 5.2rem;
  }
}

.flow__item:nth-child(3) .flow__img-icon {
  width: 4.7rem;
}
@media screen and (max-width: 767px) {
  .flow__item:nth-child(3) .flow__img-icon {
    width: 3.5rem;
  }
}

.flow__item:nth-child(4) .flow__img-icon {
  width: 7.8rem;
}
@media screen and (max-width: 767px) {
  .flow__item:nth-child(4) .flow__img-icon {
    width: 5.8rem;
  }
}

/* ------------------------------------------------
faq
--------------------------------------------------- */
.faq {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}

.accordion {
  margin-top: 5.6rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .accordion {
    margin-top: 4rem;
  }
}

.accordion__item {
  position: relative;
  cursor: pointer;
}
.accordion__item:not(:first-child) {
  margin-top: 3.2rem;
}

.accordion__title {
  position: relative;
  padding: 2.2rem 6rem 2.3rem 1.7rem;
  border-radius: 1rem;
  background-color: #1D6FB8;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .accordion__title {
    padding: 1.6rem 6rem 1.6rem 2rem;
  }
}

.accordion__item.is-open .accordion__title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion__title .icon-open {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3.3rem;
  height: 3.3rem;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .accordion__title .icon-open {
    width: 3rem;
    height: 3rem;
  }
}

.accordion__title .icon-open::after {
  position: absolute;
  content: "+";
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Barlow", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000;
  -webkit-transition: 0.3s content;
  transition: 0.3s content;
}

.accordion__item.is-open .accordion__title .icon-open::after {
  content: "-";
}

.accordion__title-text {
  position: relative;
  padding-left: 4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.944;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .accordion__title-text {
    width: 30rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.accordion__title-text::before,
.accordion__text::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Barlow", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.accordion__title-text::before {
  content: "q";
  color: #fff;
}

.accordion__text::before {
  content: "a";
  color: #f22323;
}

.accordion__content {
  display: none;
  padding: 1.9rem 1.7rem 2.7rem;
  background-color: #F3F3F3;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .accordion__content {
    padding: 1.3rem 1.6rem 1.6rem 2rem;
  }
}

.accordion__text {
  position: relative;
  padding-left: 4rem;
  font-size: 1.6rem;
}
.accordion__text span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ------------------------------------------------
contact
--------------------------------------------------- */
.contact {
  padding-top: 7.4rem;
  padding-bottom: 6.6rem;
  background-image: url(../images/bg-contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 5.6rem;
    padding-bottom: 5.5rem;
    background-image: url(../images/bg-contact-sp.jpg);
  }
}

.contact-form {
  margin-top: 8.5rem;
  padding-top: 7rem;
  padding-bottom: 20rem;
  padding: 7rem 12.3rem 20rem;
  background-color: #fff;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 4rem 3rem;
    padding-bottom: 4rem;
    border-radius: 1.5rem;
  }
}

.form {
  width: 100%;
}

.form__text {
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__text {
    margin-top: 2.4rem;
  }
}

.form__list {
  margin-top: 5rem;
}

.form .required {
  padding: 0.5rem 0 0.7rem;
  width: 5.8rem;
  height: 2.7rem;
  background-color: #f22323;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .form__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form__field:not(:first-child) {
  margin-top: 3.8rem;
}
@media screen and (max-width: 767px) {
  .form__field:not(:first-child) {
    margin-top: 2rem;
  }
}

.form__label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .form__label {
    width: 21.4rem;
  }
}

.form__label label,
.form__radio-title {
  padding-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .form__label label,
  .form__radio-title {
    padding-top: initial;
  }
}

.form__data {
  z-index: 1;
  width: 56.8rem;
}
@media screen and (max-width: 767px) {
  .form__data {
    margin-top: 1rem;
    width: 100%;
  }
}

.form__input,
textarea.form__textarea {
  padding: 1.2rem 1.8rem;
  width: 100%;
  background-color: #fff;
  border: 1px solid #939393;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .form__input,
  textarea.form__textarea {
    padding: 1.5rem 1.7rem;
  }
}

textarea.form__textarea {
  height: 28.3rem;
}

.form__input::-webkit-input-placeholder, textarea.form__textarea::-webkit-input-placeholder {
  color: #CACACA;
}

.form__input::-moz-placeholder, textarea.form__textarea::-moz-placeholder {
  color: #CACACA;
}

.form__input:-ms-input-placeholder, textarea.form__textarea:-ms-input-placeholder {
  color: #CACACA;
}

.form__input::-ms-input-placeholder, textarea.form__textarea::-ms-input-placeholder {
  color: #CACACA;
}

.form__input::placeholder,
textarea.form__textarea::placeholder {
  color: #CACACA;
}

.form__radio-input {
  padding-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .form__radio-input {
    padding-top: initial;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 2.4rem;
  padding-right: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.875;
}

.wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #939393;
  border-radius: 50%;
}

.wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 0.4rem;
  width: 1rem;
  height: 1rem;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  border-radius: 50%;
  background-color: #1D6FB8;
}

.wpcf7-form-control-wrap[data-name=radio-171] .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy {
  margin-top: 6rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    margin-top: 4rem;
    padding-bottom: 2.4rem;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
  }
}

.form__privacy .wpcf7-list-item-label {
  position: relative;
  padding-left: 4.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .form__privacy .wpcf7-list-item-label {
    padding-left: 2.9rem;
  }
}

.form__privacy .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  top: 51%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.8rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #939393;
}
@media screen and (max-width: 767px) {
  .form__privacy .wpcf7-list-item-label::before {
    top: 48%;
    width: 2.4rem;
  }
}

.form__privacy .wpcf7-list-item-label::after {
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  width: 1.6rem;
  height: auto;
  aspect-ratio: 23/15;
  content: "";
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  opacity: 0;
  border-bottom: 0.2rem solid #000;
  border-left: 0.2rem solid #000;
}
@media screen and (max-width: 767px) {
  .form__privacy .wpcf7-list-item-label::after {
    top: 0.7rem;
    left: 0.9rem;
    width: 1.2rem;
  }
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy-text {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .form__privacy-text {
    font-size: 1.5rem;
  }
}

.form__privacy-link {
  text-decoration: underline;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.form__privacy-link:hover {
  opacity: 0.7;
}

.wpcf7-not-valid-tip {
  color: #f22323;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.43;
}

.wpcf7-response-output {
  font-size: 1.4rem;
  font-weight: 400;
}

.form__field-button {
  margin-top: 3.8rem;
}
@media screen and (max-width: 767px) {
  .form__field-button {
    margin-top: 2.4rem;
  }
}

.form__submit-button {
  z-index: 1;
  position: relative;
  margin-inline: auto;
  padding: 1.6rem 4rem 1.9rem;
  width: 45rem;
  height: 7rem;
  background: -webkit-gradient(linear, left top, right top, from(#FF8C20), color-stop(50%, #FFCE2F), to(#FF8C20));
  background: linear-gradient(90deg, #FF8C20 0%, #FFCE2F 50%, #FF8C20 100%);
  background-size: 200% 100%;
  -webkit-box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 5rem;
  border: 0.4rem solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .form__submit-button {
    padding: 1.6rem 4rem 1.5rem;
    width: 100%;
    height: 5.9rem;
  }
}

.form__submit-button:hover {
  background-position: 100% 0;
}

.form__submit-button::before {
  z-index: 5;
  position: absolute;
  content: "";
  top: 50%;
  left: 14.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.6rem;
  height: auto;
  aspect-ratio: 30/24;
  background-image: url(../images/icon-mail02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .form__submit-button::before {
    left: 9rem;
    top: 53%;
    width: 2.3rem;
  }
}

.form__submit-button::after {
  z-index: 5;
  position: absolute;
  content: "";
  top: 50%;
  right: 2.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.2rem;
  height: auto;
  aspect-ratio: 1.2/20;
  background-image: url(../images/icon-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .form__submit-button::after {
    right: 1.8rem;
    width: 0.9rem;
  }
}

.form__submit-input {
  z-index: 1;
  position: relative;
  width: 100%;
  height: inherit;
  font-size: 2.6rem;
  font-size: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 2rem;
}

.wpcf7-spinner {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* ------------------------------------------------
thanks
--------------------------------------------------- */
.thanks {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding-top: 4rem;
  }
}

.thanks__heading {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}

.thanks__text {
  margin-top: 5rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

.thanks__button {
  margin-top: 8rem;
  margin-inline: auto;
  border-radius: 5rem;
  width: 46.8rem;
  height: 10rem;
  padding: 1.2rem 4rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .thanks__button {
    margin-top: 4rem;
  }
}

.cta {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 111, 184, 0.4)), color-stop(38%, rgba(29, 111, 184, 0.4)), to(rgba(111, 15, 105, 0.4)));
  background: linear-gradient(90deg, rgba(29, 111, 184, 0.4) 0%, rgba(29, 111, 184, 0.4) 38%, rgba(111, 15, 105, 0.4) 100%);
}
@media screen and (max-width: 767px) {
  .cta {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.cta__body {
  position: relative;
  padding: 3.5rem 6rem;
  background-color: #fff;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .cta__body {
    padding: 2.5rem 1rem 2.9rem;
    border-radius: 1rem;
  }
}

.cta__decoration {
  z-index: 1;
  position: absolute;
  top: -9.2rem;
  left: -3rem;
  width: 23.1rem;
  height: auto;
  aspect-ratio: 231.85/104.81;
}
@media screen and (max-width: 767px) {
  .cta__decoration {
    top: -5.4rem;
    left: 2rem;
    width: 15.8rem;
  }
}

.cta__decoration::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 26rem;
  height: auto;
  aspect-ratio: 222.21/60.93;
  background-image: url(../images/cta-icon-speech.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .cta__decoration::before {
    width: 18rem;
  }
}

.cta__decoration-text {
  z-index: 1;
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
  -webkit-transform: rotate(-7.7deg);
          transform: rotate(-7.7deg);
}
@media screen and (max-width: 767px) {
  .cta__decoration-text {
    top: 1.6rem;
    font-size: 1.6rem;
  }
}

.cta__decoration-text::after {
  z-index: -1;
  position: absolute;
  content: "さらに今なら！";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  -webkit-text-stroke: 0.4rem #fff;
}
@media screen and (max-width: 767px) {
  .cta__decoration-text::after {
    -webkit-text-stroke: 0.3rem #fff;
  }
}

.cta__head {
  width: 100%;
}

.cta__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .cta__button-container {
    margin-top: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */