@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 1301px) {
  html {
    font-size: 62.5%;
  }
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  line-height: 1.5;
  width: 100%;
  color: #292928;
  letter-spacing: 0.1em;
}
body img {
  width: 100%;
}
body a {
  transition: all 1s ease;
  cursor: pointer;
}

.hidden-pc {
  display: block;
}
@media screen and (min-width:768px) {
  .hidden-pc {
    display: none;
  }
}

.hidden-m {
  display: none;
}
@media screen and (min-width: 1301px) {
  .hidden-m {
    display: block;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width:768px) {
  .hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-bigpage {
    display: none;
  }
}

.is-checked {
  transition: all 1s ease;
}

.reserve-hidden {
  display: none;
}

.c-pink {
  color: #FC68A1;
  font-weight: bold;
  font-size: 3.2rem;
}

.c-pink24 {
  color: #FC68A1;
  font-weight: bold;
  font-size: 2.4rem;
}

.c-pink32 {
  color: #FC68A1;
  font-weight: bold;
  font-size: 3.2rem;
}

.c-pink48 {
  color: #FC68A1;
  font-weight: bold;
  font-size: 4.8rem;
}

.c-pink-ac40 {
  font-size: 4rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
}
.c-pink-ac42 {
  font-size: 4.2rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
}
.c-pink-ac45 {
  font-size: 4.5rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
}
.c-pink-ac46 {
  font-size: 4.6rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
}

.c-pink-ac48 {
  font-size: 4.8rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
}
.c-pink-ac53 {
  font-size: 5.3rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
}

.c-pink-ac56 {
  font-size: 5.6rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
}

.c-pink-ac64 {
  font-size: 6.4rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
  letter-spacing: 0.05em;
}

.c-pink-ac92 {
  font-size: 9.2rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
}

.c-pink-ac96 {
  font-size: 9.6rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
  font-weight: bold;
  letter-spacing: -0.01em;
}

.c-yellow {
  color: #FFEC4E;
  font-weight: bold;
}

.c-blue32 {
  color: #00AEF9;
  font-weight: bold;
  font-size: 3.2rem;
}
.c-blue34 {
  color: #00AEF9;
  font-weight: bold;
  font-size: 3.4rem;
}

.c-blue48 {
  color: #00AEF9;
  font-weight: bold;
  font-size: 4.8rem;
}
.c-blue58 {
  color: #00AEF9;
  font-weight: bold;
  font-size: 5.8rem;
}

.c-d-blue64 {
  color: #023D6D;
  font-weight: bold;
  font-size: 6.4rem;
}

.c-white64 {
  color: #fff;
  font-weight: bold;
  font-size: 6.4rem;
}

.text-white {
  color: #fff;
}

.c-center {
  text-align: center;
}

.c-highlight-y {
  background-color: #fff600;
  /* 鮮やかな黄色。お好みで変更可 */
  padding: 0.1em 0.2em;
  /* 少し余白を入れると読みやすい */
}

.c-highlight-y-b {
  color: #292928;
  font-weight: bold;
  background-color: #fff600;
  /* 鮮やかな黄色。お好みで変更可 */
  padding: 0.05em 0.3em;
  /* 少し余白を入れると読みやすい */
}

.c-underline {
  position: relative;
  z-index: 0;
}
.c-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1.0rem;
  /* 下にずらす位置（微調整可） */
  width: 100%;
  height: 3.8rem;
  /* 下線の太さ（文字の半分ぐらいにかぶせる） */
  background-color: #fff600;
  /* 好みの下線色（黄色例） */
  z-index: -1;
}

.all-content {
  width: 100%;
}
@media screen and (min-width: 1301px) {
  .all-content {
    max-width: 75rem;
    margin: auto;
    overflow-x: hidden;
  }
}

@media screen and (min-width: 1301px) {
  .body-wrapper::before {
    content: "";
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -1;
    background-image: url(../img/body_pc_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
  }
}

.header {
  background-color: #fff;
}

.header__logo {
  height: 4.8rem;
  position: relative;
  z-index: 10;
  margin-left: 3.0rem;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 1301px) {
  .header__logo {
    height: 4.8rem;
    padding-top: 3rem;
    margin-top: 0;
    margin-left: 3rem;
  }
}

.header__logo a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  gap: 2.2rem;
}
@media screen and (min-width: 1301px) {
  .header__logo a {
    gap: 2.2rem;
  }
}

.header__logo01 {
  width: 6.2666666667vw;
  height: 5.6vw;
}
@media screen and (min-width: 1301px) {
  .header__logo01 {
    width: 4.7rem;
    height: 4.2rem;
  }
}

.header__logo02 {
  width: 30.6666666667vw;
}
@media screen and (min-width: 1301px) {
  .header__logo02 {
    width: 23rem;
  }
}

.main {
  overflow-x: clip;
}

.main-fv {
  width: 100%;
  height: 94.2666666667vw;
  background-image: url(../img/fv2-woman-2.png);
  background-size: cover;
  background-position: center -6.9rem;
  position: relative;
}
@media screen and (max-width: 480px) {
  .main-fv {
    background-position: center -3.0rem;
  }
}
@media screen and (min-width: 1301px) {
  .main-fv {
    width: 100%;
    height: 70.7rem;
  }
}

.main-fv::before {
  content: "";
  position: absolute;
  top: -8%;
  left: 0;
  width: 100vw;
  height: 26.1333333333vw;
  background-image: url(../img/header-cloud.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* or contain / auto as needed */
  z-index: 0;
  /* 背景にする */
}
@media screen and (min-width: 1301px) {
  .main-fv::before {
    width: 100%;
    height: 19.6rem;
  }
}

.main-fv__text {
  position: absolute;
  top: 31%;
  left: 41%;
  transform: translateY(-50%);
}
.main-fv__text01 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: -0.01em;
  color: #000;
  /* 文字色（お好みで） */
  margin-bottom: 2.1rem;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, -2px 0 #fff, 0 2px 0 #fff;
}
@media screen and (min-width: 1301px) {
  .main-fv__text01 {
    margin-bottom: 0.8rem;
  }
}

.main-fv__text02 {
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.6rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  font-weight: bold;
  color: #023D6D;
  /* 文字色（お好みで） */
  font-weight: bold;
  letter-spacing: -0.014em;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, -2px 0 #fff, 0 2px 0 #fff;
}
.main-fv__text02::after {
  content: "";
  background-image: url(../img/fv-message04-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 18vw;
  max-width: 18.0rem;
  height: 10.5vw;
  position: absolute;
  top: -63%;
  left: -3%;
  z-index: 20;
}

@media screen and (min-width: 1301px) {
  .main-fv__text02::after {
    /* width: 13.5rem; */
    height: 5.0rem;
    top: -17%; 
   left: 13%;
  }
}

.main-fv__text03 {
  margin-top: 2.0rem;
  width: 56.2666666667vw;
  height: auto;
}
@media screen and (min-width: 1301px) {
  .main-fv__text03 {
     margin-top: 1.0rem;
     width: 42.2rem;
  }
}

.main-fv__text-right {
  text-align: right;
  line-height: 1;
}

.main-fv__img {
  display: block;
  position: absolute;
  bottom: -3%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: fit-content;
  z-index: 30;
}
@media screen and (min-width: 1301px) {
  .main-fv__img {
    width: 100%;
  }
}
.main-fv__img::after {
  content: "";
  position: absolute;
  background-color: #fff;
  background-size: contain;
  width: 50vw;
  height: 26.6666666667vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  /* 背景にする */
}
@media screen and (min-width: 1301px) {
  .main-fv__img::after {
    width: 37.5rem;
    height: 20rem;
  }
}

.main-message {
  position: relative;
  padding-top: 4vw;
  background-color: #FFEC4E;
  background-image: url(../img/main-message.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 100vw;
  height: 77.8666666667vw;
  margin-top: -27vw;
}
@media screen and (min-width: 1301px) {
  .main-message {
    padding-top: 3rem;
    width: 100%;
    height: 58.4rem;
    margin-top: -20.25rem;
  }
}
.main-message::after {
  position: relative;
  width: 75vw;
  margin: 0 auto 0;
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #292928;
  /* 文字色（お好みで） */
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 2;
  z-index: 20;
}

.main-message__text {
  position: relative;
  width: 75vw;
  margin: 26.0666666667vw auto 0;
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #292928;
  /* 文字色（お好みで） */
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 2;
  z-index: 20;
  text-align: center;
}
@media screen and (min-width: 1301px) {
  .main-message__text {
    width: 56.25rem;
    margin: 20.3rem auto 0;
  }
}
.main-message__text::before {
  content: "";
  background-image: url(../img/cloud-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 22.8vw;
  height: 11.4666666667vw;
  position: absolute;
  top: 25%;
  left: -29%;
}
@media screen and (min-width: 1301px) {
  .main-message__text::before {
    width: 17.1rem;
    height: 8.6rem;
  }
}
.main-message__text::after {
  content: "";
  background-image: url(../img/cloud-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 22.8vw;
  height: 11.4666666667vw;
  position: absolute;
  top: 26%;
  right: -32%;
}
@media screen and (min-width: 1301px) {
  .main-message__text::after {
    width: 17.1rem;
    height: 8.6rem;
  }
}

footer {
  background-color: #fff;
  overflow: hidden;
}

.footer__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8.0rem;
}

.footer__text {
  font-size: 2.4rem; /* 32px at 750px, 16px at 375px */
  font-weight: normal;
  letter-spacing: -0.05em;
  padding: 9.8vw 0 10.66vw;
}
@media screen and (min-width: 1301px) {
  .footer__text {
    padding: 7.35rem 0;
  }
}
.footer__text:hover {
  opacity: 0.7;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 28.0rem;
}
@media screen and (min-width: 1301px) {
  .footer__logo {
    padding-bottom: 9.2rem;
  }
}

.footer__logo02 {
  /* margin-left: -3vw; */
  width: 30.0rem;
}


.footerCta {
  display: block;
}

.footerCta__container-wrapper {
  background-color: #FFEC4E;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 9999; /* 他の要素の上に表示されるように */
  text-align: center;
  box-shadow: 0 -0.2rem 1.0rem rgba(0, 0, 0, 0.1); /* 上に影をつけて浮かせる */
  padding: 0 3rem;
}
.footerCta__container-wrapper::after {
  content: "";
  background-image: url(../img/cta-img07-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 22.2666666667vw;
  height: 28.4vw;
  z-index: 20;
}
@media screen and (min-width: 1301px) {
  .footerCta__container-wrapper::after {
    width: 16.7rem;
    height: 21.3rem;
  }
}
@media screen and (min-width: 1301px) {
  .footerCta__container-wrapper {
    display: none;
  }
}

.footerCta__container-btnText {
  display: flex;
  justify-content: flex-start;
  gap: 0.4rem;
  align-items: center;
  padding-left: 6.666vw;
  width: 100%;
  position: relative;
  top: 0.3rem;
}
@media screen and (min-width: 1301px) {
  .footerCta__container-btnText {
    padding-left: 5.3rem;
  }
}

.footerCta__container-text {
  font-size: 2.766rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  letter-spacing: -0.1em;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, -2px 0 #fff, 0 2px 0 #fff;
}

.footerCta__img01 {
  width: 22.9333333333vw;
  height: 11.984vw;
}
@media screen and (min-width: 1301px) {
  .footerCta__img01 {
    width: 17.2rem;
    height: 8.988rem;
  }
}

.footerCta__img02 {
  width: 12.7653333333vw;
  height: 8.8266666667vw;
}
@media screen and (min-width: 1301px) {
  .footerCta__img02 {
    width: 9.574rem;
    height: 6.62rem;
  }
}

.footerCta__btn {
  display: flex;
  background-color: #04c854;
  border: #004D20 4.53px solid;
  gap: 5.3333333333vw;
  border-radius: 16px 16px 0 0;
  align-items: center;
  margin: 0 auto;
  padding: 3.2vw 0vw 3.2vw 3vw;
  color: #292928;
  font-size: 3.2rem;
  font-family: Zen Maru Gothic;
  font-weight: bold;
  text-align: center;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff, -4px 0 0 #fff, 4px 0 0 #fff, -4px 0 #fff, 0 4px 0 #fff;
  position: relative;
  z-index: 10;
  transition: opacity 0.3s ease; /* ゆっくり変化 */
}
@media screen and (min-width: 1301px) {
  .footerCta__btn {
    padding: 2.4rem 3rem;
    gap: 4rem;
  }
}
.footerCta__btn:hover {
  background-color: rgba(4, 200, 84, 0.7);
  color: rgba(41, 41, 40, 0.7);
}

.cta {
  background-color: #FFEC4E;
  padding-top: 5rem;
  overflow-x: clip;
}
@media screen and (min-width: 1301px) {
  .cta {
    padding-top: 3rem;
  }
}

.cta__p-short {
  padding-top: 14.33vw;
  padding-bottom: 0;
}
@media screen and (min-width: 1301px) {
  .cta__p-short {
    padding-top: 10.75rem;
  }
}

.cta__title {
  position: relative;
}

.cta__title-sab {
  color: #023D6D;
  font-size: 3.2rem;
  font-family: Zen Maru Gothic;
  font-weight: bold;
  width: 100vw;
  text-align: center;
  position: absolute;
  top: -1.0rem;
  /* left: 10px; */
}
@media screen and (min-width: 1301px) {
  .cta__title-sab {
    width: 100%;
  }
}
.cta__title-sab::before {
  content: "";
  background-image: url(../img/kirari-3.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 11.7333333333vw;
  height: 25.6vw;
  position: absolute;
  top: -92%;
  left: 3%;
  z-index: 10;
}
@media screen and (min-width: 1301px) {
  .cta__title-sab::before {
    width: 8.8rem;
    height: 19.2rem;
  }
}
.cta__title-sab::after {
  content: "";
  background-image: url(../img/kirari-2-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 8.4vw;
  height: 14vw;
  position: absolute;
  top: -100%;
  right: 7%;
}
@media screen and (min-width: 1301px) {
  .cta__title-sab::after {
    width: 6.3rem;
    height: 10.5rem;
  }
}

.cta__title-sab02{
    top: -4.5rem;
}

.cta__title-mainWrap{
  margin-bottom: 2cap;
}

.cta__title-main {
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1301px) {
  .cta__title-main {
    /* margin-bottom: 4rem; */
  }
}

.cta__title-mainText {
  color: #292928;
  text-align: center;
  font-size: 6.4rem;
  font-weight: bold;
  font-family: Zen Maru Gothic;
  letter-spacing: -0.1em;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -3px 0px 0 #fff, 3px 0px 0 #fff, 0px -3px 0 #fff, 0px 3px 0 #fff;
}
.cta__title-mainText02 {
  color: #292928;
  text-align: center;
  font-size: 4.8rem;
  font-weight: bold;
  font-family: Zen Maru Gothic;
  letter-spacing: -0.1em;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -3px 0px 0 #fff, 3px 0px 0 #fff, 0px -3px 0 #fff, 0px 3px 0 #fff;
}


.cta__title-img {
  width: 23.596vw;
}
@media screen and (min-width: 1301px) {
  .cta__title-img {
    width: 17.7rem;
  }
}

.cta__container {
  width: 84vw;
  background: #fff;
  border-radius: 5.3333333333vw;
  margin: 0 auto;
  padding: 0 3.2vw 4.5333333333vw 3.2vw;
  position: relative;
}
@media screen and (min-width: 1301px) {
  .cta__container {
    width: 63rem;
    padding: 0 2.4rem 3.4rem 2.4rem;
    border-radius: 4.0rem;
  }
}
.cta__container::before {
  content: "";
  background-image: url(../img/cta-img05.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 28.4vw;
  height: 38vw;
  position: absolute;
  top: -10%;
  left: -9%;
  z-index: 10;
}
@media screen and (max-width: 680px) {
  .cta__container::before {
    top: -9%;
    left: -14%;
  }
}
@media screen and (min-width: 1301px) {
  .cta__container::before {
    width: 21.3rem;
    height: 28.5rem;
    top: -9%;
    left: -10%;
  }
}


.cta__container-lastMan::before{
  top: 149%;
  left: -9%;

}


.cta__container::after {
  content: "";
  background-image: url(../img/cta-img06.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 28vw;
  height: 37.6vw;
  position: absolute;
  top: -20%;
  right: -15%;
}
@media screen and (max-width: 680px) {
  .cta__container::after {
    top: -25%;
    right: -15%;
  }
}
@media screen and (min-width: 1301px) {
  .cta__container::after {
    width: 21rem;
    height: 28.2rem;
  }
}

.cta__container-title-wrapper {
  position: relative;
  top: -6vw;
  left: -2.3rem;
}
@media screen and (min-width: 1301px) {
  .cta__container-title-wrapper {
    top: -4.2rem;
  }
}

.cta__container-title-wrapper-last {
  position: relative;
  top: -3.5rem;
  left: -3.6rem;
  width: 104%;
}
/* @media screen and (min-width: 1301px) {
  .cta__container-title-wrapper-last {
    top: -3.5rem;
  }
} */



.cta__container-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 一番最後のCTAのみテキスト変更あり */
.cta__container-title-last{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

.cta__container-title::before {
  content: "";
  background-image: url(../img/cta-img02.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 29.6666666667vw;
  height: 29.6666666667vw;
  margin-right: 0.8rem;
}
@media screen and (min-width: 1301px) {
  .cta__container-title::before {
    width: 22.25rem;
    height: 22.25rem;
  }
}

.cta__container-title-last::before {
  content: "";
  background-image: url(../img/cta-img02-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 29.6666666667vw;
  height: 29.6666666667vw;
}
@media screen and (min-width: 1301px) {
  .cta__container-title-last::before {
    width: 22.25rem;
    height: 22.25rem;
  }
}





.cta__container-title01 {
  color: #FC68A1;
  font-size: 4.8rem;
  font-family: Zen Maru Gothic;
  font-weight: 700;
  word-wrap: break-word;
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
  display: inline-flex;
  margin-right: 0.8rem;
  position: relative;
  display: inline-block;
}
.cta__container-title01::after {
  content: "";
  position: absolute;
  background-image: url(../img/underline-p.png);
  background-size: cover;
  background-repeat: no-repeat;
  left: 0.2rem;
  bottom: -0.5rem;
  width: 100%;
  height: 0.9333333333vw;
}
@media screen and (min-width: 1301px) {
  .cta__container-title01::after {
    height: 0.6rem;
  }
}

.cta__container-title02 {
  color: #292928;
  font-size: 4rem;
  font-family: Zen Maru Gothic;
  font-weight: 700;
}

.cta__container-wrapper {
  display: block;
  margin-top: -5.0rem;
}
@media screen and (max-width: 480px) {
  .cta__container-wrapper {
    margin-top: -4.0rem;
  }
}

.cta__container-button {
  display: flex;
  justify-content: center;
  background-color: #04c854;
  /* border: #004D20 4px solid; */
  border: #004D20 0.4rem solid;
  filter: drop-shadow(0px 4px 0px #004D20);
  border-radius: 16px;
  padding: 2.8vw 0 2vw;
  align-items: center;
  gap: 4.2666666667vw;
  position: relative;
  color: #292928;
  font-size: 3.2rem;
  font-family: Zen Maru Gothic;
  font-weight: bold;
  text-align: center;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff, -4px 0 0 #fff, 4px 0 0 #fff, -4px 0 #fff, 0 4px 0 #fff;
  transition: opacity 0.3s ease;
  /* ゆっくり変化 */
}
@media screen and (min-width: 1301px) {
  .cta__container-button {
    padding: 2.4rem 0 2rem;
    gap: 3.2rem;
  }
}
.cta__container-button:hover {
  opacity: 0.7;
  /* 色が薄くなる */
}

.cta__container-float {
  width: 100%;
  display: inline-block;
  animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 上に10px */
  }
  100% {
    transform: translateY(0);
  }
}
.cta__container-btnText {
  color: #292928;
  font-size: 3.2rem;
  font-family: Zen Maru Gothic;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  /* margin-bottom: 28px; */
  margin-bottom: 3.8rem;
}

.cta__container-btnText.c-white {
  color: #fff;
  letter-spacing: -0.05em;
}

.cta__line {
  display: block;
  width: 9.3333333333vw;
}
@media screen and (min-width: 1301px) {
  .cta__line {
    width: 7rem;
  }
}

.cta__line-text {
  width: 46.9333333333vw;
}
@media screen and (min-width: 1301px) {
  .cta__line-text {
    width: 35.2rem;
  }
}

.cta__line-footer-text {
  width: 52.93vw;
}
@media screen and (min-width: 1301px) {
  .cta__line-footer-text {
    width: rem;
  }
}

.cta__text {
  color: #292928;
  font-size: 3.2rem;
  font-family: Zen Maru Gothic;
  font-weight: bold;
  letter-spacing: -0.01em;
  width: 100vw;
  text-align: left;
}
@media screen and (min-width: 1301px) {
  .cta__text {
    width: 100%;
     font-size: 3.0rem;
  }
}

.cta__text-01,
.cta__text-02,
.cta__text-03 {
  font-weight: 700;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.cta__text-01::before,
.cta__text-02::before,
.cta__text-03::before {
  content: "";
  background-image: url(../img/check-box.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 4.8vw;
  height: 4.2666666667vw;
}
@media screen and (min-width: 1301px) {
  .cta__text-01::before,
  .cta__text-02::before,
  .cta__text-03::before {
    width: 3.6rem;
    height: 3.2rem;
  }
}

.cta__message {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 6vw;
  margin-top: -5.5vw;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 1301px) {
  .cta__message {
    margin-top: -4.1rem;
    padding-left: 6rem;
  }
}
.cta__message::before {
  content: "";
  background-image: url(../img/kirari-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 4.8vw;
  height: 6.8vw;
  position: absolute;
  bottom: 8%;
  left: 19%;
  z-index: -1;
}
@media screen and (min-width: 1301px) {
  .cta__message::before {
    width: 3.6rem;
    height: 5.1rem;
  }
}
.cta__message::after {
  content: "";
  background-image: url(../img/kirari-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 4.8vw;
  height: 14vw;
  position: absolute;
  top: 16%;
  right: 28%;
  z-index: -1;
  width: 3.6rem;
  height: 10.5rem;
}

.cta__img04 {
  display: block;
  width: 34vw;
}
@media screen and (min-width: 1301px) {
  .cta__img04 {
    width: 25.5rem;
  }
}

.cta__img04-big {
  display: block;
  width: 34vw;
}
@media screen and (min-width: 1301px) {
  .cta__img04-big {
    width: 27.5rem;
  }
}

.cta-end {
  padding-bottom: 4vw;
  position: relative;
}
@media screen and (min-width: 1301px) {
  .cta-end {
    padding-bottom: 3rem;
  }
}
.cta-end::after {
  content: "";
  background-image: url(../img/cta-end.png);
  background-size: contain;
  display: block;
  position: absolute;
  bottom: -0.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 12.3333333333vw;
  z-index: 30;
}
@media screen and (min-width: 1301px) {
  .cta-end::after {
    width: 100%;
    height: 9.25rem;
  }
}

.problem {
  position: relative;
  z-index: 0;
  padding: 0 3.2vw 1.0rem;
  overflow-x: clip;
}
@media screen and (min-width: 1301px) {
  .problem {
    padding: 0 2.4rem 1rem;
  }
}
.problem::before {
  content: "";
  background-image: url(../img/problem-back03.png);
  background-repeat: repeat;
  background-size: contain;
  background-size: cover;
  display: inline-block;
  width: 100vw;
  height: 128vw;
  height: 271vw;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 1301px) {
  .problem::before {
    width: 100%;
    height: 203.25rem;
  }
}
.problem::after {
  content: "";
  background-image: url(../img/problem-back02.png);
  background-repeat: repeat;
  background-size: contain;
  display: inline-block;
  width: 91.2vw;
  height: 77.8666666667vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (min-width: 1301px) {
  .problem::after {
    width: 68.4rem;
    height: 58.4rem;
  }
}

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

.problem__title-main {
  padding: 8.133vw 0 0 0;
}
@media screen and (min-width: 1301px) {
  .problem__title-main {
    padding: 5.6rem 0 0
  }
}

.problem__title-main img {
  width: 89.6vw;
}
@media screen and (min-width: 1301px) {
  .problem__title-main img {
    width: 67.2rem;
  }
}

.problem__title-sab {
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  letter-spacing: -0.01em;
  color: #fff;
  /* 文字色（お好みで） */
  text-align: center;
  padding: 2.6666666667vw 6.6666666667vw;
  width: 84vw;
  background-color: #023D6D;
  margin: 0 auto;
}
@media screen and (min-width: 1301px) {
  .problem__title-sab {
    width: 63rem;
    padding: 2rem 5rem;
  }
}

.problem__container-wrapper {
  display: block;
  /* 縦並びのままでOK（デフォルトでもよい） */
  padding-top: 7.06vw;
}
@media screen and (min-width: 1301px) {
  .problem__container-wrapper {
    padding-top: 6.8rem;
  }
}

.problem__container {
  display: flex;
  gap: 3.2vw;
  margin-bottom: 3.2rem;
  align-items: flex-end;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1301px) {
  .problem__container {
    gap: 2.4rem;
  }
}

.problem__container + .problem__container {
  margin-top: 11.333vw;
}
@media screen and (min-width: 1301px) {
  .problem__container + .problem__container {
    margin-top: 8.5rem;
  }
}

.flex-reverse {
  flex-direction: row-reverse;
  /* ← これで画像→テキストの順番に */
}

.problem__container-title,
.problem__container-text {
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #fff;
  /* 文字色（お好みで） */
  line-height: 2;
  letter-spacing: -0.05em;
  margin-top: 0.9rem;
  margin-bottom: -1.2rem;
}

.problem__container-title {
  position: relative;
  text-align: center;
}

.problem__container-title03{
  position: relative;
   text-align: center;
   margin-bottom: 1.0rem;
}
@media screen and (min-width: 1301px) {
  .problem__container-title03 {
     margin-bottom: 1.4rem;
  }
}


.problem__container-text03{
  line-height: 1.7;
}

.problem__container01 {
  position: relative;
  width: 58.8vw;
}
@media screen and (min-width: 1301px) {
  .problem__container01 {
    width: 44.1rem;
  }
}
.problem__container01::after {
  content: "";
  background-image: url(../img/problem01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 33.6026666667vw;
  height: 50.404vw;
  position: absolute;
  top: 12%;
  left: -59%;
}
@media screen and (min-width: 1301px) {
  .problem__container01::after {
    width: 25rem;
    height: 37.8rem;
  }
}

.underline-b-01::before{
    content: "";
    background-image: url(../img/underline-b-01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 48vw;
    height: 2.6666666667vw;
    position: absolute;
    top: 5.3rem;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (min-width: 1301px) {
  .underline-b-01::before{
   width: 37.0rem;
  }
}

.underline-y-02::before{
    content: "";
    background-image: url(../img/underline-y-02.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 34vw;
    height: 2.6666666667vw;
    position: absolute;
    top: 5.3rem;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (min-width: 1301px) {
  .underline-y-02::before{
   width: 24.0rem;
  }
}



.underline-b-03::before{
    content: "";
    background-image: url(../img/underline-b-03.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 56vw;
    height: 2.6666666667vw;
    position: absolute;
    top: 5.3rem;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (min-width: 1301px) {
  .underline-b-03::before{
   width: 42.0rem;
  }
}
.underline-y-04::before{
    content: "";
    background-image: url(../img/underline-y-04.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 58vw;
    height: 2.6666666667vw;
    position: absolute;
    top: 5.3rem;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (min-width: 1301px) {
  .underline-y-04::before{
   width: 42.0rem;
  }
}








.problem__container02 {
  position: relative;
  width: 59.3333333333vw;
  margin-top: 2.0rem;
}
@media screen and (min-width: 1301px) {
  .problem__container02 {
    width: 45rem;
  }
}
.problem__container02::after {
  content: "";
  background-image: url(../img/problem02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 34.9333333333vw;
  height: 45.4vw;
  position: absolute;
  top: 6%;
  left: 109%;
}
@media screen and (min-width: 560px) {
  .problem__container02::after {
    width: 24.4rem;
    height: 32.7rem;
    top: 10%;
    left: 110%;

  }
}
@media screen and (min-width: 1301px) {
  .problem__container02::after {
    width: 24.4rem;
    height: 32.7rem;
    top: 8%;
    left: 110%;

  }
}

.problem__container03 {
  position: relative;
  width: 61.3333333333vw;
  margin-top: 3.0rem;
}
@media screen and (min-width: 1301px) {
  .problem__container03 {
    width: 46rem;
    margin-top: 3rem;
  }
}
.problem__container03::after {
  content: "";
  background-image: url(../img/problem03.png);
  background-size: contain;
    background-repeat: no-repeat;
  width: 37.31vw;
  height: 58.9773333333vw;
  position: absolute;
   top: -25%;
    left: -60%;
}
@media screen and (min-width: 560px) {
  .problem__container03::after {
    width: 23.5rem;
    height: 42.1rem;
    top: -13%;
    left: -54%;
  }
}
@media screen and (min-width: 1301px) {
  .problem__container03::after {
    width: 23.5rem;
    height: 42.1rem;
    top: -13%;
    left: -54%;
  }
}

.problem__container04 {
  position: relative;
  width: 61.2vw;
  margin-top: 11.4rem;
}
@media screen and (min-width: 1301px) {
  .problem__container04 {
    width: 46rem;
  }
}
.problem__container04::after {
  content: "";
  background-image: url(../img/problem04.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 39.9546666667vw;
  height: 49.944vw;
  position: absolute;
  top: -12%;
  left: 96%;
}
@media screen and (min-width: 1301px) {
  .problem__container04::after {
    width: 30.3rem;
    height: 36.5rem;
    top: -2%;
      left: 93%;
  }
}


.problem-back-b {
  position: relative;
}

.problem-back-b::after {
  content: "";
  background-image: url(../img/problem-back01.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 100vw;
  height: 128vw;
  position: absolute;
  top: -44%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 1301px) {
  .problem-back-b::after {
    width: 75rem;
    height: 96rem;
    top: -46%;
}
}

.problem-back-b02 {
  position: relative;
}
.problem-back-b02::before {
  content: "";
  /* background-image: url(../img/problem-line02.svg); */
  /* background-image: url(../img/problem-back01-2.png); */
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 76.6rem;
  height: 16.5333333333vw;
  position: absolute;
  bottom: -13rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background-position: center;
  aspect-ratio: 766/124;
}
@media screen and (min-width: 1301px) {
  .problem-back-b02::before {
    width: 76.6rem;
    height: auto;
    bottom: -12rem;
  }
}
.problem-back-b02::after {
  content: "";
  background-image: url(../img/problem-back01-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 129vw;
  width: 100vw;
  height: 187vw;
  position: absolute;
  top: -8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 1301px) {
  .problem-back-b02::after {
    width: 77.65rem;
    height: 140.25rem;
  }
}

.solution {
  background-image: url(../img/solution-back.png);
  background-repeat: repeat;
  background-size: contain;
  position: relative;
  overflow: hidden;
  margin-top: -27vw;
  padding-top: 45vw;
  z-index: -1;
}
@media screen and (min-width: 1301px) {
  .solution {
    margin-top: -15rem;
    padding-top: 30rem;
  }
}

.solution__title{
  position: relative;
}

.solution__title-sab {
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  width: 100vw;
  text-align: center;
  margin-bottom: 3vw;
}
@media screen and (min-width: 1301px) {
  .solution__title-sab {
    width: 100%;
  }
}

.solution__title-main {
  color: #023D6D;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  padding: 0 1vw;
  padding: 0 1.6rem;
  letter-spacing: -0.08em;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.solution__title-main::after{
  display:inline-block;
  content: "";
  background-color:  #FFEC4E;
  width: 100%;
  height: 10vw;
  position: absolute;
  top: 59%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1301px) {
.solution__title-main::after{
    max-height: 6.8rem;
  }
}



.solution__title-main + .solution__title-main {
  margin-top: 3.5rem;
}
@media screen and (min-width: 1301px) {
.solution__title-main + .solution__title-main {
   margin-top: 3.5rem;
  }
}

.font-34 {
  font-size: 3.4rem;
  color: #292928;
  font-weight: bold;
}

.solution__title-text {
  color: #fff;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.01em;
  margin-top:5.0rem;
}

.solution__title-text02{
  color: #555555;
  opacity: 0.5;
  font-size: 1.3rem;
  font-weight: bold;
  position: absolute;
  bottom: -3.8vw;
  right: 8vw;
}
@media screen and (min-width: 1301px) {
  .solution__title-text02 {
     bottom: -2.8rem;
    right: 7rem;
  }
}

.solution__img img {
  display: block;
  width: 88.8946666667vw;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 1301px) {
  .solution__img img {
    width: 66.67rem;
  }
}

.achievements {
  padding-bottom: 9.4vw;
  overflow: visible;
  position: relative;
}
@media screen and (min-width: 1301px) {
  .achievements {
    padding-bottom: 7.05rem;
    background-color: #fff;
  }
}
.achievements::after {
  content: "";
  background-image: url(../img/solution-img04.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  position: absolute;
  top: -18.3vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 18.6666666667vw;
}
@media screen and (min-width: 1301px) {
  .achievements::after {
    top: -13.7rem;
    height: 13.8rem;
  }
}

.achievements__title-wrapper {
  padding: 8.8vw 6.8vw 0vw;
  position: relative;
  z-index: 10;
  overflow-x: clip;
}
@media screen and (min-width: 1301px) {
  .achievements__title-wrapper {
    padding: 6.6rem 5.0rem 0;
  }
}
.achievements__title-wrapper::before {
  content: "";
  background-image: url(../img/cloud-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 22.868vw;
  height: 11.5093333333vw;
  position: absolute;
  top: 34%;
  left: -5%;
}
@media screen and (min-width: 1301px) {
  .achievements__title-wrapper::before {
    width: 17.1rem;
    height: 8.6rem;
  }
}
.achievements__title-wrapper::after {
  content: "";
  background-image: url(../img/cloud-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 22.868vw;
  height: 11.5093333333vw;
  position: absolute;
  bottom: 8%;
  right: -4%;
}
@media screen and (min-width: 1301px) {
  .achievements__title-wrapper::after {
    width: 17.1rem;
    height: 8.6rem;
  }
}

.achievements__title {
  position: relative;
  text-align: center;
}
.achievements__title::before {
  content: "";
  background-image: url(../img/achievements-l.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: -9%;
  transform: translateX(50%);
  width: 6.6666666667vw;
  height: 28.8vw;
  z-index: 0;
}
@media screen and (min-width: 1301px) {
  .achievements__title::before {
    width: 5rem;
    height: 21.6rem;
  }
}
.achievements__title::after {
  content: "";
  background-image: url(../img/achievements-r.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  right: -5%;
  transform: translateX(50%);
  width: 6.6666666667vw;
  height: 26.6666666667vw;
  z-index: 0;
}
@media screen and (min-width: 1301px) {
  .achievements__title::after {
    width: 5rem;
    height: 20rem;
  }
}

.achievements__title-sab {
  font-size: 4rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #00AEF9;
  /* 文字色（お好みで） */
  font-weight: bold;
  line-height: 0.5;
}
.achievements__title-main {
  font-size: 5.6rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.achievements__title-main.c-underline::after {
  left: 0.1em;
}

.achievements__title-text {
  font-size: 4rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #00AEF9;
  /* 文字色（お好みで） */
  font-weight: bold;
  text-align: center;
}

.achievements__title-img {
  padding-top: 4.6666666667vw;
}
@media screen and (min-width: 1301px) {
  .achievements__title-img {
    padding-top: 3.5rem;
  }
}

.achievements__title-imgNote {
  color: #555555;
  opacity: 0.5;
  text-align: right;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

@media screen and (min-width: 1301px) {
  .achievements__title-imgNote {
    font-size: 1.4rem;
  }
}

.achievements__title-imgText {
  font-size: 4rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #FC68A1; /* 文字色（お好みで） */
  text-align: center;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-thickness: 0.3rem;
   text-underline-offset: 0.4rem; /* ← アンダーラインのオフセット */
  padding-top: 7.8vw;
}
@media screen and (min-width: 1301px) {
  .achievements__title-imgText {
    padding-top: 6.6rem;
  }
}

.c-dot {
  font-size: 4rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
  text-align: center;
  position: relative;
}
.c-dot::after {
  content: "";
  background-image: url(../img/achievements-04.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 14.0666666667vw;
  height: 1.3333333333vw;
  position: absolute;
  top: -0.6666666667vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1301px) {
  .c-dot::after {
    width: 10.55rem;
    height: 1rem;
    top: -0.5rem;
  }
}

.achievements__content {
  padding: 6.6vw 3.5vw 8vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1301px) {
  .achievements__content {
    padding: 3.2rem 2.5rem 5.25rem;
  }
}

.achievements__content-text {
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #292928;
  /* 文字色（お好みで） */
  text-align: left;
  line-height: 2;
  letter-spacing: 0.01em;
}

.achievements__content-text + .achievements__content-text {
  margin-top: 4.046vw;
}
@media screen and (min-width: 1301px) {
  .achievements__content-text + .achievements__content-text {
    margin-top: 3.03rem;
  }
}

.achievements__cta {
  font-size: 4.8rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #00AEF9;
  /* 文字色（お好みで） */
  font-weight: bold;
  position: relative;
}
.achievements__cta::after {
  content: "";
  background-image: url(../img/cloud-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotateY(180deg);
  display: inline-block;
  width: 22.868vw;
  height: 11.5093333333vw;
  position: absolute;
  top: -4%;
  left: -10%;
}
@media screen and (min-width: 1301px) {
  .achievements__cta::after {
    width: 17.15rem;
    height: 86.32rem;
  }
}

.achievements__cta-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}

.achievements__cta-title-text {
  font-weight: bold;
}

.achievements__cta-text {
  background-color: #00AEF9;
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #fff;
  /* 文字色（お好みで） */
  font-weight: bold;
  border: 0.4rem solid #FFEC4E;
  border-radius: 4.0rem;
  width: 84vw;
  margin: 0 auto;
  text-align: left;
  padding: 2.1rem 3.0rem;
  line-height: 2;
}
@media screen and (min-width: 1301px) {
  .achievements__cta-text {
    width: 63rem;
    border-radius: 4.0rem;
  }
}

.achievements__cta-img {
  width: 44.7222222222vw;
}
@media screen and (min-width: 1301px) {
  .achievements__cta-img {
    width: 32.2rem;
  }
}

.feature {
  background-color: #E5F8FF;
  padding: 9.3vw 0 9.2vw;
  position: relative;
}
@media screen and (min-width: 1301px) {
  .feature {
    padding: 7rem 0 8.4rem;
  }
}

.feature__title-wrapper {
  padding: 0 3.0rem 8.0rem 3.0rem;
  padding-bottom: clamp(4.5rem, 8.0rem, 8.0rem);
}

.feature__title-main {
  display: flex;
  align-items: center;
  gap: 2.0rem;
  position: relative;
  z-index: 10;
}

.feature__title {
  position: relative;
  z-index: 10;
}
.feature__title::after {
  content: "";
  background-image: url(../img/feature-01.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -7.5rem;
  right: 14%;
  transform: translateX(50%);
  width: 32.9773333333vw;
  height: 49.4666666667vw;
}
@media screen and (max-width: 480px) {
  .feature__title::after {
    top: -8.1rem;
  }
}
@media screen and (min-width: 1301px) {
  .feature__title::after {
    width: 24.7rem;
    height: 37.1rem;
  }
}

.feature__logo {
  width: 10.5333333333vw;
  height: 9.3333333333vw;
}
@media screen and (min-width: 1301px) {
  .feature__logo {
    width: 7.9rem;
    height: 7rem;
  }
}

.feature__logo02 {
  width: 40.8vw;
  height: 12.8vw;
}
@media screen and (min-width: 1301px) {
  .feature__logo02 {
    width: 30.6rem;
    height: 9.6rem;
  }
}

.feature__title-sab,
.feature__title-sab-p {
  position: relative;
  font-size: 4rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #292928;
  /* 文字色（お好みで） */
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -3px 0px 0 #fff, 3px 0px 0 #fff, 0px -3px 0 #fff, 0px 3px 0 #fff;
  z-index: 10;
}

.feature__title-sab-p {
  color: #FC68A1;
}

.feature__content-wrapper {
  position: relative;
  padding: 0 4.4VW;
  z-index: 20;
}
@media screen and (min-width: 1301px) {
  .feature__content-wrapper {
    padding: 0 3.3rem;
  }
}
.feature__content-wrapper::before {
  content: "";
  background-image: url(../img/cloud-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  transform: rotateY(180deg);
  width: 22.868vw;
  height: 11.5093333333vw;
  position: absolute;
  top: 2%;
  left: -15%;
  z-index: -1;
}
@media screen and (min-width: 1301px) {
  .feature__content-wrapper::before {
    width: 17.15rem;
    height: 8.632rem;
  }
}

.feature__content {
  background-color: #fff;
  /* border: 4px solid #00AEF9; */
  border: 0.4rem solid #00AEF9;
  padding: 4.1333333333VW 4.1333333333VW 3.2VW;
  border-radius: 5.3333333333vw;
  position: relative;
}
@media screen and (min-width: 1301px) {
  .feature__content {
    padding: 3.1rem 3.1rem 2.4rem;
    border-radius: 4.0rem;
  }
}

.feature__content + .feature__content {
  margin-top: 4.4rem;
}

.feature__content-title {
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #00AEF9;
  /* 文字色（お好みで） */
  border-bottom: 0.1rem solid #00AEF9;
  margin-bottom: 2.8vw;
  padding-bottom: 2.8vw;
  text-align: center;
}
@media screen and (min-width: 1301px) {
  .feature__content-title {
      margin-bottom: 2.8rem;
     padding-bottom: 2.8rem;
  }
}



.feature__content-text,
.feature__content-text-p {
  font-size: 2.4rem;
  font-weight: bold;
  color: #292928;
  line-height: 2;
  letter-spacing: -0.05em;
}

.feature__content-text + .feature__content-text {
  margin-top: 1.0rem;
}

.feature__arrow {
  width: 38.8vw;
  margin: 4.13vw auto 14.1333333333vw;
}
@media screen and (min-width: 1301px) {
  .feature__arrow {
    width: 29.1rem;
    margin: 3.09rem auto 10.6rem;
  }
}

.feature__container {
  padding: 0 8vw;
  position: relative;
}
@media screen and (min-width: 1301px) {
  .feature__container {
    padding: 0 6rem;
  }
}
.feature__container::before {
  content: "";
  background-image: url(../img/cloud-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotateY(180deg);
  display: inline-block;
  width: 22.868vw;
  height: 11.5093333333vw;
  position: absolute;
  top: -6%;
  left: -4%;
  z-index: 10;
}
@media screen and (min-width: 1301px) {
  .feature__container::before {
    width: 17.15rem;
    height: 8.632rem;
  }
}
.feature__container::after {
  content: "";
  background-image: url(../img/cloud-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotateY(180deg);
  display: inline-block;
  width: 22.868vw;
  height: 11.5093333333vw;
  position: absolute;
  top: -19%;
  right: 0%;
}
@media screen and (min-width: 1301px) {
  .feature__container::after {
    width: 17.15rem;
    height: 8.632rem;
  }
}

.feature__container-wrapper {
  background-color: #00AEF9;
  border-radius: 2.4rem;
  padding: 10.8vw 0 4.4vw;
  position: relative;
}
@media screen and (min-width: 1301px) {
  .feature__container-wrapper {
    padding: 10.1rem 0 4rem;
  }
}

.feature__container-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #292928;
  line-height: 1.2;
  background-color: #FFEC4E;
  padding: 2.2666666667vw 3.2vw;
  position: absolute;
  top: -9%;
  left: 50%;
  transform: translateX(-50%);
  text-align:center;
  width: 52.6vw;
}
@media screen and (min-width: 1301px) {
  .feature__container-title {
    width: 46.2rem;
    padding: 2.6rem 1.6rem;
  }
}
.feature__container-title::after {
  content: "";
  background-image: url(../img/Polygon-01.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 5.3333333333vw;
  height: 5.3333333333vw;
}
@media screen and (min-width: 1301px) {
  .feature__container-title::after {
    width: 4rem;
    height: 4rem;
  }
}

.feature__container-title-p {
  font-size: 4.4rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
}

.feature__container-body {
  padding: 0 4.2666666667vw;
  text-align: center;
}
@media screen and (min-width: 1301px) {
  .feature__container-body {
    padding: 0 3.2rem;
  }
}

.feature__container-text {
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #fff;
  /* 文字色（お好みで） */
  line-height: 2;
  letter-spacing: -0.01em;
  margin-top: 3.93vw;
  margin-bottom: 12.5333333333vw;
  text-align: left;
}
@media screen and (min-width: 1301px) {
  .feature__container-text {
    margin-top: 2.95rem;
    margin-bottom: 9.4rem;
  }
}

.feature__cta {
  padding: 0 3.2vw;
}
@media screen and (min-width: 1301px) {
  .feature__cta {
    padding: 0 2.4rem;
  }
}

.feature__cta-img {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.voice {
  background-image: url(../img/voice-back.png);
  background-repeat: repeat;
  background-size: contain;
  padding: 13.3333333333vw 0 23vw 0;
}
@media screen and (min-width: 1301px) {
  .voice {
    padding: 10rem 0 18.8rem 0;
  }
}

.voice__title {
  text-align: center;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1301px) {
  .voice__title {
    margin-bottom: 10rem;
  }
}

.voice__title-sab01 {
  font-size: 3.2rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #fff; /* 文字色（お好みで） */
  margin-bottom: 2.5rem;
  position: relative;
}
.voice__title-sab01::before {
  content: "";
  background-image: url(../img/voice-01.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -159%;
  left: 9%;
  width: 17.244vw;
  height: 25.8666666667vw;
  z-index: 0;
}
@media screen and (min-width: 1301px) {
  .voice__title-sab01::before {
    width: 12.933rem;
    height: 19.4rem;
  }
}
.voice__title-sab01::after {
  content: "";
  background-image: url(../img/voice-03.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -208%;
  right: 11%;
  width: 17.3333333333vw;
  height: 26vw;
  z-index: 0;
}
@media screen and (min-width: 1301px) {
  .voice__title-sab01::after {
    width: 13rem;
    height: 19.5rem;
  }
}

.voice__title-sab-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.voice__title-sab02 {
  font-size: 4rem; /* 32px at 750px, 16px at 375px */
  position: relative;
}

.voice__title-img {
  width: 41.0666666667vw;
  z-index: 10;
}
@media screen and (min-width: 1301px) {
  .voice__title-img {
    width: 30.8rem;
  }
}

.voice__title-sab03 {
  font-weight: bold;
  color: #fff; /* 文字色（お好みで） */
  padding: 0 1.0rem;
  background-color: #FC68A1;
}

.voice__title-sab04 {
  font-weight: bold;
  color: #292928; /* 文字色（お好みで） */
  padding: 0 1.0rem;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -3px 0px 0 #fff, 3px 0px 0 #fff, 0px -3px 0 #fff, 0px 3px 0 #fff;
}

.voice__title-main {
  font-size: 8rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #FFEC4E;
  text-shadow: -1px -1px 0 #023D6D, 1px -1px 0 #023D6D, -1px 1px 0 #023D6D, 1px 1px 0 #023D6D, -2px -2px 0 #023D6D, 2px -2px 0 #023D6D, -2px 2px 0 #023D6D, 2px 2px 0 #023D6D, -3px 0px 0 #023D6D, 3px 0px 0 #023D6D, 0px -3px 0 #023D6D, 0px 3px 0 #023D6D;
  position: relative;
}
.voice__title-main::before {
  content: "";
  background-image: url(../img/voice-02.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -8%;
  left: 5%;
  width: 18.4vw;
  height: 27.6vw;
  z-index: 0;
}
@media screen and (min-width: 1301px) {
  .voice__title-main::before {
    width: 13.8rem;
    height: 20.7rem;
  }
}
.voice__title-main::after {
  content: "";
  background-image: url(../img/voice-04.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -12%;
  right: 3%;
  width: 17.0666666667vw;
  height: 25.6vw;
  z-index: 0;
}
@media screen and (min-width: 1301px) {
  .voice__title-main::after {
    width: 12.8rem;
    height: 19.2rem;
  }
}

.voice__card-wrapper {
  padding: 0 8vw 0 8vw;
}
@media screen and (min-width: 1301px) {
  .voice__card-wrapper {
    padding: 0 6rem;
  }
}

.voice__card {
  background-color: #fff;
  /* border: 4px solid #FFEC4E; */
  border: 0.4rem solid #FFEC4E;
  border-radius: 5.3333333333vw;
  padding: 9.3333333333vw 3.8vw 3.4vw;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1301px) {
  .voice__card {
    padding: 7rem 3rem 4.8rem;
    border-radius: 40px;
  }
}

.voice__card + .voice__card {
  margin-top: 11.93vw;
}
@media screen and (min-width: 1301px) {
  .voice__card + .voice__card {
    margin-top: 8.2rem;
  }
}

.voice__card-img {
  width: 19.4vw;
  position: absolute;
  top: -14%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1301px) {
  .voice__card-img {
    width: 14.55rem;
  }
}

.voice__card-personal {
  font-size: 2.4rem; /* 32px at 750px, 16px at 375px */
  font-weight: normal;
  padding: 5px 16px;
  background-color: #E5F8FF;
  border-radius: 40px;
  width: fit-content;
  margin: 0 auto;
}
.voice__card-title {
  letter-spacing: -0.01em;
  margin: 1.5rem auto 2.3rem3.3vw;
  width: fit-content;
}
@media screen and (min-width: 1301px) {
  .voice__card-title {
  margin: 1.0rem auto 2.3rem;
  }

.voice__card-title02 {
  letter-spacing: -0.1em;
}
}

.c-blue48 {
  font-size: 4.8rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
}

.voice__card-text {
  font-size: 2.4rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  line-height: 2;
  letter-spacing: -0.05em;
  text-align: left;
}

.voice__card-text + .voice__card-text {
  margin-top: 1.4rem;
}

.voice-attention {
  text-align: center;
  font-size:1.8rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #fff;
  opacity: 0.5;
  letter-spacing: 0.1em;
  margin-top:3.0rem;
}

.flow {
  padding: 0 8vw 7.5vw 8vw;
  position: relative;
}
@media screen and (min-width: 1301px) {
  .flow {
    padding: 0 6rem 5.6rem 6rem;
  }
}
.flow::before {
  content: "";
  background-image: url(../img/flow-back.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vw;
  z-index: 0;
}
@media screen and (min-width: 1301px) {
  .flow::before {
    width: 75rem;
    height: 75rem;
  }
}
.flow::after {
  content: "";
  background-color: #E5F8FF;
  display: block;
  position: absolute;
  top: 0rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 0;
}
@media screen and (min-width: 1301px) {
  .flow::after {
    width: 75rem;
    height: 100%;
  }
}

.flow__title {
  text-align: center;
  position: relative;
  z-index: 10;
  padding-top: 6.2666666667vw;
}
@media screen and (min-width: 1301px) {
  .flow__title {
    padding-top: 4.7rem;
  }
}

.flow__title-sab {
  font-size: 3.2rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #00AEF9; /* 文字色（お好みで） */
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -3px 0px 0 #fff, 3px 0px 0 #fff, 0px -3px 0 #fff, 0px 3px 0 #fff;
}

.flow__title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.flow__title-main {
  font-size: 6.4rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #023D6D; /* 文字色（お好みで） */
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -3px 0px 0 #fff, 3px 0px 0 #fff, 0px -3px 0 #fff, 0px 3px 0 #fff;
  letter-spacing: -0.05em;
}

.flow__title-main02 {
  display: block;
  width: 9.6vw;
  height: 14.4vw;
}
@media screen and (min-width: 1301px) {
  .flow__title-main02 {
    width: 7.2rem;
    height: 10.8rem;
  }
}

.flow__card-wrapper {
  margin-top: 3.6rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .flow__card-wrapper {
    margin-top: 46px;
  }
}

.flow__card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.4vw;
  background-color: #FFF6AE;
  /* border: 4px solid #00AEF9; */
  border: 0.4rem solid #00AEF9;
  border-radius: 4.0rem;
  position: relative;
}
@media screen and (min-width: 1301px) {
  .flow__card {
    gap: 3.3rem;
  }
}
.flow__card::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -5.2rem;
  left: 3.0rem;
  transform: translateX(-50%);
  width: 18.1333333333vw;
  height: 20vw;
  z-index: 0;
}
@media screen and (min-width: 1301px) {
  .flow__card::after {
    width: 13.6rem;
    height: 15rem;
  }
}

.flow__card-img {
  width: 30.4vw;
}
@media screen and (min-width: 1301px) {
  .flow__card-img {
    width: 22.8rem;
  }
}

.flow__card-textBody {
  width: 38.1333333333vw;
}
@media screen and (min-width: 1301px) {
  .flow__card-textBody {
    width: 28.6rem;
  }
}

.flow-step01 {
  padding: 3.4666666667vw 4.6666666667vw 0px 7.4666666667vw;
}
@media screen and (min-width: 1301px) {
  .flow-step01 {
    padding: 2.6rem 3.5rem 0 5.6rem;
  }
}
.flow-step01::after {
  content: "";
  background-image: url(../img/flow-01.png);
}

.flow-step02 {
  padding: 6.1333333333vw 4.6666666667vw 5.3333333333vw 7.4666666667vw;
}
@media screen and (min-width: 1301px) {
  .flow-step02 {
    padding: 4.6rem 3.5rem 4rem 5.6rem;
  }
}
.flow-step02::after {
  content: "";
  background-image: url(../img/flow-02.png);
}

.flow-step03 {
  padding: 6.1333333333vw 4.6666666667vw 5.3333333333vw 7.4666666667vw;
}
@media screen and (min-width: 1301px) {
  .flow-step03 {
    padding: 4.6rem 3.5rem 4rem 5.6rem;
  }
}
.flow-step03::after {
  content: "";
  background-image: url(../img/flow-03.png);
}

.flow__card-title {
  font-size: 2.8rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #FFEC4E; /* 文字色（お好みで） */
  background-color: #023D6D;
  width: 38.1333333333vw;
  line-height: 2;
  margin-bottom: 1.0rem;
  text-align: center;
}
@media screen and (min-width: 1301px) {
  .flow__card-title {
    width: 28.6rem;
  }
}

.flow__card-text {
  font-size: 2.4rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  line-height: 2;
  letter-spacing: -0.05em;
}
.flow__arrow {
  width: 41.6vw;
  margin: 1.5vw auto 5vw;
}
@media screen and (min-width: 1301px) {
  .flow__arrow {
    width: 31.2rem;
    margin: 3rem auto 4.9rem;
  }
}

.flow__card-attention {
  width: 57.5rem;
  height: 27.0rem;
}


/* 面談予約を赤く点滅させる */
.flow__card-attention {
  position: relative;
  display: inline-block;
}

.flow__card-attention img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -41%);
  width: 100%;
}

.flow__card-attention img.alert {
  opacity: 0;
  /* animation: blink-red 2s infinite; */
  animation: blink-red cubic-bezier(0, 1, 0.51, 1.19) 0.8s infinite;
}

@keyframes blink-red {
  0%   { opacity: 0; }
  50%  { opacity: 1; }  /* 赤表示 */
  100% { opacity: 0; }  /* 元画像に戻る */
}
/* ここまで面談予約を赤く点滅させる */








.message {
  background-color: #fff;
}

.message__title {
  text-align: center;
  position: relative;
  padding-top: 14.33vw;
  z-index: 10;
}
@media screen and (min-width: 1301px) {
  .message__title {
    padding-top: 10.705rem;
  }
}
.message__title::after {
  content: "";
  background-image: url(../img/message-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 68.8vw;
  z-index: -1;
}
@media screen and (min-width: 1301px) {
  .message__title::after {
    width: 100%;
    height: 51.6rem;
  }
}

.message__title-img {
  width: 65.7333333333vw;
  height: 55.6vw;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1301px) {
  .message__title-img {
    width: 53.3rem;
    height: 45.1rem;
  }
}

.message__title-main {
  font-size: 4rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #fff; /* 文字色（お好みで） */
  text-align: center;
  position: relative;
  z-index: 30;
  margin-top: -4.5rem;
}
.message__title-main::before {
  content: "";
  background-image: url(../img/message-02.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 79%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88.8213333333vw;
  height: 11.05rem;
  z-index: -10;
}
@media screen and (min-width: 1301px) {
  .message__title-main::before {
    width: 66.6rem;
    height: 11rem;
  }
}

.message__container-wrapper {
  padding: 8.8vw 8vw 10vw;
}
@media screen and (min-width: 1301px) {
  .message__container-wrapper {
    padding: 6.6rem 6rem 9.75rem;
  }
}

.message__container-text {
  font-size: 3.2rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.01em;
}

.message__container-text + .message__container-text {
  margin-top: 3.2rem;
}

.message__container-attention {
  font-size: 4rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-top: 3.2rem;
  letter-spacing: -0.05em;
}

.faq {
  width: 100%;
  background-image: url(../img/voice-back.png);
  background-repeat: repeat;
  background-size: contain;
  position: relative;
  padding-top: 23.2vw;
}
@media screen and (min-width: 1301px) {
  .faq {
    padding-top: 17.4rem;
  }
}

.faq__title {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  position: absolute;
  top: -2.5%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1301px) {
  .faq__title {
    width: 100%;
  }
}

.faq__title-img {
  width: 29.956vw;
  height: 44.9333333333vw;
}
@media screen and (min-width: 1301px) {
  .faq__title-img {
    width: 22.4rem;
    height: 33.7rem;
  }
}

.faq__title-main {
  width: 50.5333333333vw;
}
@media screen and (min-width: 1301px) {
  .faq__title-main {
    width: 37.9rem;
  }
}

.faq__container-wrapper {
  background-color: #E5F8FF;
  border-bottom: 0.6rem solid #00AEF9;
  border-top-right-radius: 4.0rem;
  border-top-left-radius:  4.0rem;
  position: relative;
  z-index: 1;
  padding: 16.6666666667vw 6vw 7vw;
}
@media screen and (min-width: 1301px) {
  .faq__container-wrapper {
    padding: 12.5rem 4.5rem 10.08rem;
  }
}

.faq__container {
  width: 88vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1.7333vw;
}
@media screen and (min-width: 1301px) {
  .faq__container {
    width: 66rem;
    padding-bottom: 1.3rem;
  }
}

.faq-reverse {
  flex-direction: row-reverse;
}

.faq__container-card + .faq__container-card {
  margin-top: 9.6666666667vw;
}
@media screen and (min-width: 1301px) {
  .faq__container-card + .faq__container-card {
    margin-top: 7.25rem;
  }
}

.faq__container + .faq__container {
  margin-top: 3.2vw;
}
@media screen and (min-width: 1301px) {
  .faq__container + .faq__container {
    margin-top: 2.2rem;
  }
}



.faq__container-img {
  width: 18.4vw;
  height: 17.8666666667vw;
}
@media screen and (min-width: 1301px) {
  .faq__container-img {
    width: 13.8rem;
    height: 13.4rem;
  }
}

.faq__container-text {
  font-size: 3.2rem; /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  padding: 2.66vw 1.8vw 2.66vw 2.9vw;
  letter-spacing: -0.05em;
  position: relative;
}
@media screen and (min-width: 1301px) {
  .faq__container-text {
    padding: 2rem 1.35rem 2rem 2.425rem;
  }
}
.faq__container-text::after {
  content: "";
  background-image: url(../img/faq-q.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -21%;
  left: -1.0rem;
  transform: translateY(-50%);
  width: 12vw;
  height: 12vw;
}
@media screen and (min-width: 1301px) {
  .faq__container-text::after {
    width: 9rem;
    height: 9rem;
  }
}

.faq__container-text-a {
  position: relative;
}
.faq__container-text-a::after {
  content: "";
  background-image: url(../img/faq-a.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 1.5rem;
  left: -10%;
  transform: translateY(-50%);
  width: 12vw;
  height: 12vw;
}
@media screen and (min-width: 1301px) {
  .faq__container-text-a::after {
    width: 9rem;
    height: 9rem;
  }
}

.speechBubble {
  width: 100%;
  position: relative;
  display: inline-block;
  margin-right: 3.0rem;
  border: 0.4rem solid #00aef9;
  border-radius: 3.2vw;
  background-color: #fffad5;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #060606;
}
@media screen and (min-width: 1301px) {
  .speechBubble {
    border-radius: 2.4rem;
  }
}

.speechBubble::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 1.5rem 0 1.5rem 3.0rem;
  border-color: transparent transparent transparent #00aef9;
  translate: 100% -50%;
}

.speechBubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.1rem;
  border-style: solid;
  border-width: 1.05rem 0 1.05rem 2.11rem;
  border-color: transparent transparent transparent #fffad5;
  translate: 100% -50%;
}

.speechBubble-b {
  position: relative;
  display: inline-block;
  margin-left: 3.0rem;
  border: 0.4rem solid #ffec4e;
  border-radius: 3.2vw;
  background-color: #00aef9;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (min-width: 1301px) {
  .speechBubble-b {
    border-radius: 2.4rem;
  }
}

.speechBubble-b::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0rem;
  border-style: solid;
  border-width: 1.5rem 3.0rem 1.5rem 0;
  border-color: transparent #ffec4e transparent transparent;
  translate: -100% -50%;
}

.speechBubble-b::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.1rem;
  border-style: solid;
  border-width: 1.05rem 2.11rem 1.05rem 0;
  border-color: transparent #00aef9 transparent transparent;
  translate: -100% -50%;
}

.pc-fixed-content__left {
  display: none;
}
@media screen and (min-width: 1301px) {
  .pc-fixed-content__left {
    display: block;
    position: fixed;
    left: 1.5vw;
    top: 0;
    width: 23.3125vw;
  }
}
.pc-fixed-content__left::before, .pc-fixed-content__left::after {
  content: "";
  width: 10.6875vw;
  height: 5.375vw;
  background-image: url(../img/pc-fixed-union.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  animation: float 3s ease-in-out infinite;
}
.pc-fixed-content__left::before {
  top: 12%;
  left: 39%;
  z-index: -1;
}
.pc-fixed-content__left::after {
  top: 42vw;
  left: -8vw;
  z-index: -1;
}
.pc-fixed-content__right {
  display: none;
}
@media screen and (min-width: 1301px) {
  .pc-fixed-content__right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    width: clamp(275px, (100vw - 750px) / 2, 100%);
  }
}
@media screen and (min-width: 1301px) {
  .pc-fixed-content__logo {
    width: 17.5vw;
    position: absolute;
    top: 1.5vw;
  }
}
@media screen and (min-width: 1301px) {
  .pc-fixed-content__service-text {
    width: 17.0625vw;
    margin-bottom: 2.5vw;
  }
}
.pc-fixed-content__nav-wrap {
  width: 19.375vw;
  height: 100vh;
  margin: -51px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.pc-fixed-content__nav li {
  padding-left: 1.25vw;
  position: relative;
}
.pc-fixed-content__nav li:not(:last-child) {
  margin-bottom: 1vw;
}
.pc-fixed-content__nav li::before {
  content: "";
  width: 0.75vw;
  height: 0.125vw;
  min-height: 1px;
  background-color: #292928;
  position: absolute;
  top: 50%;
  left: 0;
}
.pc-fixed-content__nav a {
  font-size: 1.125vw;
  font-weight: bold;
}
.pc-fixed-content__cta {
  width: 19.375vw;
  position: relative;
  transform: translateY(-20%);
}
.pc-fixed-content__btn {
  position: absolute;
  width: 90%;
  top: 25vw;
  left: 6.5%;
  height: 3.724375vw;
}
.pc-fixed-content__btn:hover {
  opacity: 0.7;
}
.pc-fixed-content__cta-image {
  position: absolute;
  width: 100%;
  bottom: -10vw;
  left: 16px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.note {
  font-size: 1.4rem;
  display: block;
  color: #555555;
  opacity: 0.5;
  max-width: 56rem;
  margin: auto;
  margin-top: 1rem;
  font-weight: bold;
}

.note.note--right{
  text-align: right;
}

.feature__content .note{
  margin: 0;
  width: 100%;
  position: absolute;
  max-width: unset;
  right: 0;
  top: -3rem;
}

/*# sourceMappingURL=style.css.map */