@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-ac48 {
  font-size: 4.8rem;
  font-weight: bold;
  color: #FC68A1;
  /* 文字色（お好みで） */
}

.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-blue48 {
  color: #00AEF9;
  font-weight: bold;
  font-size: 4.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: 0.1em;
  /* 下にずらす位置（微調整可） */
  width: 100%;
  height: 0.5em;
  /* 下線の太さ（文字の半分ぐらいにかぶせる） */
  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;
  }
}

img {
  object-fit: contain;
}

.header {
  background-color: #fff;
}

.header__logo {
  height: 48px;
  position: relative;
  z-index: 10;
  margin-left: 30px;
  margin-top: 2.6666666667vw;
}

@media screen and (min-width: 1301px) {
  .header__logo {
    height: 4.8rem;
    padding-top: 2rem;
    margin-top: 0;
    margin-left: 3rem;
  }
}

.header__logo a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  gap: 22px;
  gap: 2.9333333333vw;
}

@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: 230px;
  width: 30.6666666667vw;
}

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

.main {
  overflow-x: clip;
}

.main-fv {
  width: 100%;
  height: 707px;
  height: 94.2666666667vw;
  background-color: #C7EEFE;
  position: relative;
}

@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: 196px;
  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%;
  right: 35%;
  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: 24px;
  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: 2.4rem;
  }
}

.main-fv__text02 {
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 4.8rem;
  /* 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.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 18vw;
  max-width: 180px;
  height: 11vw;
  position: absolute;
  top: -50%;
  left: 4%;
  z-index: 20;
}

@media screen and (min-width: 1301px) {
  .main-fv__text02::after {
    width: 13.5rem;
    height: 12.75rem;
  }
}

.main-fv__text02::before {
  content: "";
  background-image: url(../img/fv-woman.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 61.2vw;
  height: 112.2666666667vw;
  position: absolute;
  top: -400%;
  right: -72%;
  z-index: -1;
}

@media screen and (min-width: 1301px) {
  .main-fv__text02::before {
    width: 45.9rem;
    height: 84.2rem;
  }
}

.main-fv__text03 {
  margin-top: 5px;
  width: 56.2666666667vw;
  height: auto;
}

@media screen and (min-width: 1301px) {
  .main-fv__text03 {
    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: 206px;
  height: 27.4666666667vw;
  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: 27.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;
}

@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: 80px;
}

.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: 42.6666666667vw;
}

@media screen and (min-width: 1301px) {
  .footer__logo {
    padding-bottom: 9.2rem;
  }
}

.footer__logo01 {
  margin-left: -3.4666666667vw;
}

@media screen and (min-width: 1301px) {
  .footer__logo01 {
    margin-left: -2.6rem;
  }
}

.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 -2px 10px rgba(0, 0, 0, 0.1);
  /* 上に影をつけて浮かせる */
  padding: 0 3rem;
}

.footerCta__container-wrapper::after {
  content: "";
  background-image: url(../img/cta-img07.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: 4px;
  align-items: center;
  padding-left: 6.666vw;
  width: 100%;
  position: relative;
  top: 3px;
}

@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: 4vw;
  overflow-x: clip;
}

@media screen and (min-width: 1301px) {
  .cta {
    padding-top: 3rem;
  }
}

.cta__p-short {
  padding-top: 13.3333333333vw;
  padding-bottom: 0;
}

@media screen and (min-width: 1301px) {
  .cta__p-short {
    padding-top: 10rem;
  }
}

.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: -10px;
  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-mainWrap{
  margin-bottom: 4rem;
}

.cta__title-main {
  display: flex;
  align-items: end;
  justify-content: center;
  /* margin-bottom: 40px; */
  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-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: 0px 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: 40px;
  }
}

.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::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: -23px;
}

@media screen and (min-width: 1301px) {
  .cta__container-title-wrapper {
    top: -4.2rem;
  }
}

.cta__container-title {
  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: 8px;
}

@media screen and (min-width: 1301px) {
  .cta__container-title::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: 8px;
  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: 2px;
  bottom: -5px;
  width: 100%;
  height: 0.9333333333vw;
}

@media screen and (min-width: 1301px) {
  .cta__container-title01::after {
    bottom: -5px;
    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: -50px;
}

@media screen and (max-width: 480px) {
  .cta__container-wrapper {
    margin-top: -20px;
  }
}

.cta__container-button {
  display: flex;
  justify-content: center;
  background-color: #04c854;
  border: #004D20 4px 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;
}

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

.cta__line {
  display: block;
  width: 70px;
  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;
  margin-top: -32px;
  text-align: left;
}

@media screen and (min-width: 1301px) {
  .cta__text {
    width: 100%;
  }
}

.cta__text-01,
.cta__text-02,
.cta__text-03 {
  font-weight: 700;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.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: center;
  align-items: center;
  padding-left: 5vw;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 480px) {
  .cta__message {
    margin-top: 0px;
  }
}

@media screen and (min-width: 1301px) {
  .cta__message {
    padding-left: 5rem;
  }
}

.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: 4%;
  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: 51%;
  right: 38%;
  z-index: -1;
  width: 3.6rem;
  height: 10.5rem;
}

.cta__message img {
  display: block;
  width: 37.6vw;
}

@media screen and (min-width: 1301px) {
  .cta__message img {
    width: 28.2rem;
  }
}

.cta-end {
  padding-bottom: 7.0666666667vw;
  position: relative;
}

@media screen and (min-width: 1301px) {
  .cta-end {
    padding-bottom: 5.3rem;
  }
}

.cta-end::after {
  content: "";
  background-image: url(../img/cta-end.png);
  background-size: contain;
  display: block;
  position: absolute;
  bottom: -1px;
  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 10px;
  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 9.5vw 0;
}

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

.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: 68px;
  padding-top: 9.0666666667vw;
}

@media screen and (min-width: 1301px) {
  .problem__container-wrapper {
    padding-top: 6.8rem;
  }
}

.problem__container {
  display: flex;
  gap: 3.2vw;
  margin-bottom: 32px;
  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 p {
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #fff;
  /* 文字色（お好みで） */
  line-height: 2;
  letter-spacing: -0.05em;
  margin-top: 9px;
  margin-bottom: -12px;
}

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

.problem__container-title::after {
  content: "";
  background-image: url(../img/underline-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 45.8666666667vw;
  height: 2.6666666667vw;
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1301px) {
  .problem__container-title::after {
    width: 34.4rem;
    height: 2rem;
  }
}

.problem__underli-y {
  position: relative;
  text-align: center;
}

.problem__underli-y::after {
  content: "";
  background-image: url(../img/underline-y.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 45.8666666667vw;
  height: 2.6666666667vw;
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1301px) {
  .problem__underli-y::after {
    width: 34.4rem;
    height: 2rem;
  }
}

.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;
  width: 38.9333333333vw;
  height: 58.2666666667vw;
  position: absolute;
  top: -10%;
  left: -61%;
}

@media screen and (min-width: 1301px) {
  .problem__container01::after {
    width: 29.2rem;
    height: 43.7rem;
  }
}

.problem__container02 {
  position: relative;
  width: 53.3333333333vw;
  margin-top: 20px;
}

@media screen and (min-width: 1301px) {
  .problem__container02 {
    width: 40rem;
  }
}

.problem__container02::after {
  content: "";
  background-image: url(../img/problem02.png);
  background-size: contain;
  width: 36.9333333333vw;
  height: 52.4vw;
  position: absolute;
  top: -3rem;
  left: 108%;
}

@media screen and (min-width: 1301px) {
  .problem__container02::after {
    width: 27.7rem;
    height: 39.3rem;
    top: -11%;
  }
}

.problem__container03 {
  position: relative;
  width: 59.3333333333vw;
  margin-top: 30px;
  margin-top: 4vw;
}

@media screen and (min-width: 1301px) {
  .problem__container03 {
    width: 44.5rem;
    margin-top: 3rem;
  }
}

.problem__container03::after {
  content: "";
  background-image: url(../img/problem03.png);
  background-size: contain;
  width: 39.2vw;
  height: 58.9333333333vw;
  position: absolute;
  top: 0%;
  left: -66%;
}

@media screen and (min-width: 1301px) {
  .problem__container03::after {
    width: 29.4rem;
    height: 44.2rem;
  }
}

.problem__container04 {
  position: relative;
  width: 61.2vw;
  margin-top: 114px;
  margin-top: 15.2vw;
}

@media screen and (min-width: 1301px) {
  .problem__container04 {
    width: 46rem;
    margin-top: 11.4rem;
  }
}

.problem__container04::after {
  content: "";
  background-image: url(../img/problem04.png);
  background-size: contain;
  width: 45.8666666667vw;
  height: 49.8666666667vw;
  position: absolute;
  top: 18%;
  left: 91%;
}

@media screen and (min-width: 1301px) {
  .problem__container04::after {
    width: 34.4rem;
    height: 37.4rem;
  }
}

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

.problem-back-b::before {
  content: "";
  background-image: url(../img/problem-line.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 76.6rem;
  height: 16.5333333333vw;
  position: absolute;
  bottom: -12rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background-position: center;
  aspect-ratio: 766/124;
}

@media screen and (min-width: 1301px) {
  .problem-back-b::before {
    width: 76.6rem;
    height: auto;
  }
}

.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;
  }
}

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

.problem-back-b02::after {
  content: "";
  background-image: url(../img/problem-back01.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 129vw;
  height: 187vw;
  position: absolute;
  top: -27%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (min-width: 1301px) {
  .problem-back-b02::after {
    width: 97.65rem;
    height: 140.25rem;
  }
}

.solution {
  background-image: url(../img/solution-back.png);
  background-repeat: repeat;
  background-size: contain;
  position: relative;
  overflow: hidden;
  margin-top: -28vw;
  padding-top: 40vw;
  z-index: -1;
}

@media screen and (min-width: 1301px) {
  .solution {
    margin-top: -21rem;
    padding-top: 30rem;
  }
}

.solution__title-sab {
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  width: 100vw;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (min-width: 1301px) {
  .solution__title-sab {
    width: 100%;
  }
}

.solution__title-main {
  color: #023D6D;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  background-color: #FFEC4E;
  padding: 0 1vw;
  letter-spacing: -0.08em;
  width: fit-content;
  margin: 0 auto;
}

.solution__title-main+.solution__title-main {
  margin-top: 16px;
}

.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: 30px;
}

.solution__img img {
  display: block;
  width: 88.8946666667vw;
  margin: 25px auto 0;
}

@media screen and (min-width: 1301px) {
  .solution__img img {
    width: 66.67rem;
  }
}

.achievements {
  padding-bottom: 6.4vw;
  overflow: visible;
  position: relative;
}

@media screen and (min-width: 1301px) {
  .achievements {
    padding-bottom: 4.8rem;
    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: -137px;
    background-size: contain;
  }
}

.achievements__title-wrapper {
  padding: 8.8vw 9.6vw 0vw;
  position: relative;
  z-index: 10;
  overflow-x: clip;
}

@media screen and (min-width: 1301px) {
  .achievements__title-wrapper {
    padding: 6.6rem 7.2rem 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: -10%;
  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;
}

.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 {
  text-align: right;
  font-size: 2rem;
  margin-bottom: 1rem;
}

@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: 3px;
  padding-top: 28px;
}

.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: 9.6vw 4.6666666667vw 7vw;
}

@media screen and (min-width: 1301px) {
  .achievements__content {
    padding: 7.2rem 3.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: 5.4666666667vw;
}

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

.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: 13px;
}

.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: 4px solid #FFEC4E;
  border-radius: 5.3333333333vw;
  width: 84vw;
  margin: 0 auto;
  text-align: left;
  padding: 4.9333333333vw 2.9333333333vw 7.0666666667vw;
  padding: 4.9333333333% 2.9333333333% 7.0666666667%;
  line-height: 2;
}

@media screen and (min-width: 1301px) {
  .achievements__cta-text {
    width: 63rem;
    border-radius: 40px;
  }
}

.achievements__cta-img {
  width: 44.7222222222vw;
}

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

.feature {
  background-color: #E5F8FF;
  padding: 70px 0 9.2vw;
  position: relative;
}

@media screen and (min-width: 1301px) {
  .feature {
    padding: 7rem 0 8.4rem;
  }
}

.feature__title-wrapper {
  padding: 0 4vw 6.6666666667vw 4vw;
}

.feature__title-main {
  display: flex;
  align-items: center;
  gap: 20px;
  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: -75px;
  right: 14%;
  transform: translateX(50%);
  width: 32.9773333333vw;
  height: 49.4666666667vw;
}

@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;
  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: 40px;
  }
}

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

.feature__content-title {
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  color: #00AEF9;
  /* 文字色（お好みで） */
  border-bottom: 1px solid #00AEF9;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

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

.feature__content-text+.feature__content-text {
  margin-top: 10px;
}

.feature__arrow {
  width: 38.8vw;
  margin: 7.133vw auto 14.1333333333vw;
}

@media screen and (min-width: 1301px) {
  .feature__arrow {
    width: 29.1rem;
    margin: 5.35rem 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: -2%;
  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: -15%;
  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: 24px;
  padding: 10.8vw 0px 40px;
  position: relative;
}

@media screen and (min-width: 1301px) {
  .feature__container-wrapper {
    padding: 10.1rem 0 4rem;
  }
}

.feature__container-title {
  font-size: 3.2rem;
  /* 32px at 750px, 16px at 375px */
  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: left;
  width: 61.6vw;
}

@media screen and (min-width: 1301px) {
  .feature__container-title {
    width: 46.2rem;
    padding: 2.2666666667vw 1.6vw;
  }
}

.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;
}

@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: 2.9333333333vw;
  margin-bottom: 12.5333333333vw;
}

@media screen and (min-width: 1301px) {
  .feature__container-text {
    margin-top: 2.2rem;
    margin-bottom: 9.4rem;
  }
}

.feature__cta {
  padding: 0 3.2vw;
}

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

.voice {
  background-image: url(../img/voice-back.png);
  background-repeat: repeat;
  background-size: contain;
  padding: 13.3333333333vw 0 25.0666666667vw 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: 25px;
  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: 5px;
}

.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 10px;
  background-color: #FC68A1;
}

.voice__title-sab04 {
  font-weight: bold;
  color: #292928;
  /* 文字色（お好みで） */
  padding: 0 10px;
  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-radius: 5.3333333333vw;
  padding: 9.3333333333vw 3.8vw 5.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: 20px auto 26px;
  width: fit-content;
}

.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: 14px;
}

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

.flow {
  padding: 0 8vw 56px 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: 0px;
  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: 36px;
  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-radius: 5.3333333333vw;
  position: relative;
}

@media screen and (min-width: 1301px) {
  .flow__card {
    gap: 3.3rem;
    border-radius: 40px;
  }
}

.flow__card::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -52px;
  left: 30px;
  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: 10px;
  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: 10px auto 9.2vw;
}

@media screen and (min-width: 1301px) {
  .flow__arrow {
    width: 31.2rem;
    margin: 1rem auto 6.9rem;
  }
}

.flow__card-attention {
  font-size: 2.8rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  text-align: center;
  width: 75.0666666667vw;
  margin-top: 42px;
  margin: 7.0666666667vw auto 0;
  line-height: 2.2;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1301px) {
  .flow__card-attention {
    width: 56.3rem;
    margin: 5.3rem auto 0;
  }
}

.message {
  background-color: #fff;
}

.message__title {
  text-align: center;
  position: relative;
  padding-top: 5.3333333333vw;
  z-index: 10;
}

@media screen and (min-width: 1301px) {
  .message__title {
    padding-top: 4rem;
  }
}

.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: 71.0666666667vw;
  height: 60.1333333333vw;
  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: -18px;
}

.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: 110.5px;
  height: 14.7333333333vw;
  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 13vw;
}

@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: 32px;
}

.message__container-attention {
  font-size: 4rem;
  /* 32px at 750px, 16px at 375px */
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-top: 32px;
  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: 16px;
  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: 6px solid #00AEF9;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  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;
}

.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 1.9vw;
  letter-spacing: -0.05em;
  position: relative;
}

@media screen and (min-width: 1301px) {
  .faq__container-text {
    padding: 2rem 1.35rem 2rem 1.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: -10px;
  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: 6px;
  left: -21px;
  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: 30px;
  border: 4px solid #00aef9;
  border-radius: 3.2vw;
  background-color: #fffad5;
  text-align: left;
  font-size: 16px;
  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: 15px 0 15px 30px;
  border-color: transparent transparent transparent #00aef9;
  translate: 100% -50%;
}

.speechBubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  border-style: solid;
  border-width: 10.5px 0 10.5px 21.1px;
  border-color: transparent transparent transparent #fffad5;
  translate: 100% -50%;
}

.speechBubble-b {
  position: relative;
  display: inline-block;
  margin-left: 30px;
  border: 4px solid #ffec4e;
  border-radius: 3.2vw;
  background-color: #00aef9;
  text-align: left;
  font-size: 16px;
  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: 0px;
  border-style: solid;
  border-width: 15px 30px 15px 0;
  border-color: transparent #ffec4e transparent transparent;
  translate: -100% -50%;
}

.speechBubble-b::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  border-style: solid;
  border-width: 10.5px 21.1px 10.5px 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;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

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

.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 */