@charset "UTF-8";
body {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  color: #333333;
}
body.is-checked {
  overflow: hidden;
}

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

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

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

.inner {
  padding-inline: 20px;
  margin-inline: auto;
  width: 100%;
  max-width: 1100px;
}

a:hover {
  opacity: 0.7;
}

.button {
  display: block;
  padding: 10px 0 10px;
  width: 142px;
  border-radius: 20px;
  text-align: center;
  font-weight: 700;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button.experience {
  border: 1px solid #ff77ad;
  -webkit-box-shadow: #ff77ad 3px 3px 1px;
          box-shadow: #ff77ad 3px 3px 1px;
}
.button.join {
  border: 1px solid #eef660;
  -webkit-box-shadow: #eef660 3px 3px 1px;
          box-shadow: #eef660 3px 3px 1px;
}
.button.consultation {
  border: 1px solid #00aed1;
  -webkit-box-shadow: #00aed1 3px 3px 1px;
          box-shadow: #00aed1 3px 3px 1px;
}
.button:hover {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  opacity: 1;
}
.button:hover.experience {
  color: #fff;
  background: #ff77ad;
  -webkit-box-shadow: #ff77ad 0px 0px 0px;
          box-shadow: #ff77ad 0px 0px 0px;
}
.button:hover.join {
  color: #fff;
  background: #eef660;
  -webkit-box-shadow: #eef660 0px 0px 0px;
          box-shadow: #eef660 0px 0px 0px;
}
.button:hover.consultation {
  color: #fff;
  background: #00aed1;
  -webkit-box-shadow: #00aed1 0px 0px 0px;
          box-shadow: #00aed1 0px 0px 0px;
}

.section {
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .section {
    padding: 50px 0;
  }
}

.section-head__title {
  font-size: 36px;
  font-family: "Rampart One", serif;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 426px) {
  .section-head__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 1101px) {
  .section-head__title {
    font-size: 96px;
  }
}

.section-head__text {
  margin-top: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fdfcfc;
}
@media screen and (min-width: 426px) {
  .section-head__text {
    font-size: 24px;
  }
}
@media screen and (min-width: 1101px) {
  .section-head__text {
    margin-top: 15px;
    font-size: 32px;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.poyopoyo {
  -webkit-animation: poyopoyo 2s ease-out infinite;
          animation: poyopoyo 2s ease-out infinite;
}

@-webkit-keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
.header {
  background: #fe3781;
  padding: 8px 0 9px;
  position: fixed;
  z-index: 300;
  width: 100%;
}
.header.is-checked {
  background: none;
}
.header.is-checked .header__title {
  color: #333333;
}
@media screen and (min-width: 1101px) {
  .header {
    padding: 15px 0;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1280px) {
  .header__inner {
    max-width: 1140px;
    margin-inline: auto;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}

.header__image {
  width: 27px;
}
@media screen and (min-width: 768px) {
  .header__image {
    width: 39px;
  }
}

.header__title {
  padding-left: 2px;
  font-size: 14px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header__title {
    font-size: 20px;
  }
}

.drawer__icon {
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .drawer__icon {
    display: none;
  }
}
.drawer__icon.is-checked {
  background: #fe3781;
}
.drawer__icon.is-checked .drawer__icon-bar {
  left: 32%;
  background: #fff;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-of-type(1) {
  top: 19px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-of-type(3) {
  top: 19px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.drawer__icon-bar {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 14px;
  height: 1.5px;
  border-radius: 20px;
  background: #fe3781;
}
.drawer__icon-bar:nth-of-type(1) {
  top: 14px;
}
.drawer__icon-bar:nth-of-type(2) {
  top: 19px;
}
.drawer__icon-bar:nth-of-type(3) {
  top: 24px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1101px) {
  .header__nav {
    display: block;
  }
}

.header__nav-menu-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.header__nav-link-button {
  text-align: center;
  font-size: 14px;
  line-height: 17px;
}

.header__nav-link {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: -0.04em;
}

.header__nav-menu-under {
  margin-top: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 50px;
}

.header__drawer-nav {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 250;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header__drawer-nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  background: url(../img/bg-checked.png) bottom left/cover;
  height: 100vh;
  width: 100%;
  max-width: 375px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__drawer-menu {
  margin-top: 144px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.header__drawer-link {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.header__drawer-link-button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}

.header__drawer-link-button {
  font-size: 14px;
}

.header__nav-item-sns {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__nav-item-sns-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sns-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.icon-x img {
  width: 21px;
  height: 21px;
  text-align: center;
}

.header__nav-item-sns-text {
  font-size: 12px;
}

.icon-line img {
  width: 24px;
  height: 24px;
}

.icon-instagram img {
  width: 23px;
  height: 23px;
}

.bg-black {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.bg-black.is-checked {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 140;
  background: #333333;
  opacity: 0.3;
  display: block;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.bg-black.is-checked body {
  overflow: hidden;
}

.main {
  overflow: hidden;
}

.main1 {
  padding-top: 57px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fe3781), color-stop(25%, #ff77ad), color-stop(140%, #eef660));
  background: linear-gradient(#fe3781 20%, #ff77ad 25%, #eef660 140%);
  z-index: -1;
}
@media screen and (min-width: 1101px) {
  .main1 {
    padding-top: 100px;
  }
}

.fv {
  position: relative;
  height: 100%;
  max-height: 800px;
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (min-width: 1101px) {
  .fv {
    max-height: 1000px;
    margin-bottom: 0;
  }
}

.fv__container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fv__decoration {
  position: absolute;
  background: url(../img/fv-decoration.png) no-repeat center center/cover;
  background-size: 1637px 1295px;
  width: 100%;
  height: 100%;
  top: -275px;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

.swiper {
  z-index: 0;
}

.fv__swiper {
  margin-top: -150px;
}

.fv__swiper-wrapper {
  overflow: hidden;
}

.fv__swiper-slide.swiper-slide {
  overflow: hidden;
}
.fv__swiper-slide.swiper-slide-active img {
  display: block;
  width: 100%;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: all 2.5s linear;
  transition: all 2.5s linear;
}

.fv__swiper-slide {
  max-height: 800px;
  /* スライドの最大高さを800pxに設定 */
  height: 100%;
  /* 高さを親要素に合わせる */
  position: relative;
  /* relativeにすることで内部要素を制御 */
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .fv__swiper-slide {
    max-height: 1195px;
  }
}
.fv__swiper-slide img {
  max-width: 1028px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fv__swiper-slide-image {
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fv__swiper-pagination .swiper-pagination-bullet-active {
  background: #fe3781;
}

.fv__swiper-pagination .swiper-horizontal > .swiper-pagination-bullets,
.fv__swiper-pagination .swiper-pagination-bullets.swiper-pagination-horizontal,
.fv__swiper-pagination .swiper-pagination-custom,
.fv__swiper-pagination .swiper-pagination-fraction {
  bottom: 25px;
}
@media screen and (min-width: 1101px) {
  .fv__swiper-pagination .swiper-horizontal > .swiper-pagination-bullets,
  .fv__swiper-pagination .swiper-pagination-bullets.swiper-pagination-horizontal,
  .fv__swiper-pagination .swiper-pagination-custom,
  .fv__swiper-pagination .swiper-pagination-fraction {
    bottom: 0;
  }
}

.fv__inner {
  position: absolute;
  top: 90px;
  z-index: 2;
  width: 100%;
  height: calc(100% - 90px);
}
@media screen and (min-width: 1101px) {
  .fv__inner {
    top: 100px;
    max-width: 1100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  max-width: 1100px;
  width: calc(100% - 40px);
  top: -70px;
}
@media screen and (min-width: 1101px) {
  .fv__title {
    top: -90px;
  }
}

.fv__text-1 img {
  width: 200px;
}
@media screen and (min-width: 426px) {
  .fv__text-1 img {
    width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .fv__text-1 img {
    width: 400px;
  }
}
@media screen and (min-width: 1101px) {
  .fv__text-1 img {
    width: 100%;
    max-width: 540px;
  }
}

.fv__text-2 {
  margin-top: -10px;
  text-align: center;
}
.fv__text-2 img {
  width: 250px;
}
@media screen and (min-width: 426px) {
  .fv__text-2 img {
    width: 350px;
  }
}
@media screen and (min-width: 768px) {
  .fv__text-2 img {
    width: 450px;
  }
}
@media screen and (min-width: 1101px) {
  .fv__text-2 {
    margin-top: -25px;
  }
  .fv__text-2 img {
    width: 100%;
    max-width: 600px;
  }
}

.fv__message {
  margin-left: auto;
  font-weight: 700;
  font-family: "M PLUS 1", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: #fdfcfc;
  background: #00aed1;
  letter-spacing: 0.03em;
  padding: 2px 5px;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: 300ms;
  transition: 300ms;
  display: block;
  position: relative;
}
.fv__message::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #eef660;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-animation: shinyshiny 2.5s ease-in-out infinite;
          animation: shinyshiny 2.5s ease-in-out infinite;
}
@media screen and (min-width: 426px) {
  .fv__message {
    font-size: 18px;
  }
}
@media screen and (min-width: 1101px) {
  .fv__message {
    font-size: 24px;
    padding: 5px 10px;
  }
}

@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.fv__content {
  position: absolute;
  bottom: 30px;
}
@media screen and (min-width: 768px) {
  .fv__content {
    width: calc(100% - 40px);
    max-width: 375px;
  }
}
@media screen and (min-width: 1024px) {
  .fv__content {
    max-width: 491px;
  }
}
@media screen and (min-width: 1101px) {
  .fv__content {
    bottom: 190px;
  }
}

.fv__box {
  background: rgba(253, 253, 253, 0.67);
  border-radius: 15px;
  position: relative;
  padding: 28px 15px 10px;
}
@media screen and (min-width: 768px) {
  .fv__box {
    padding: 25px 15px;
  }
}
@media screen and (min-width: 1101px) {
  .fv__box {
    padding: 45px 20px 25px;
  }
}

.fv__box-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__box-title {
    font-size: 24px;
  }
}

.fv__box-point {
  position: absolute;
  top: -6px;
}
@media screen and (min-width: 375px) {
  .fv__box-point {
    left: 25px;
  }
}
@media screen and (min-width: 768px) {
  .fv__box-point {
    left: -13px;
    -webkit-transform: rotate(-11deg);
            transform: rotate(-11deg);
  }
}

.fv__box-label {
  font-size: 16px;
  background: #eef660;
  border: 3px solid #333333;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
  letter-spacing: 0.2em;
  position: relative;
  font-weight: 700;
  padding: 5px 6px 5px 8px;
}
@media screen and (min-width: 768px) {
  .fv__box-label {
    padding: 5px 50px;
  }
}
@media screen and (min-width: 1101px) {
  .fv__box-label {
    font-size: 26px;
  }
}
.fv__box-label::after, .fv__box-label::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 21px;
  background: #333333;
}
@media screen and (min-width: 1101px) {
  .fv__box-label::after, .fv__box-label::before {
    height: 28px;
  }
}
.fv__box-label::before {
  top: -2px;
  left: 1px;
  -webkit-transform: rotate(-17deg);
          transform: rotate(-17deg);
}
@media screen and (min-width: 768px) {
  .fv__box-label::before {
    top: -2px;
    left: 3px;
    -webkit-transform: rotate(-29deg);
            transform: rotate(-29deg);
  }
}
@media screen and (min-width: 1101px) {
  .fv__box-label::before {
    top: -2px;
    left: 5px;
    -webkit-transform: rotate(-29deg);
            transform: rotate(-29deg);
  }
}
.fv__box-label::after {
  bottom: -3px;
  left: 1px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .fv__box-label::after {
    bottom: -2px;
    left: 3px;
    -webkit-transform: rotate(29deg);
            transform: rotate(29deg);
  }
}
@media screen and (min-width: 1101px) {
  .fv__box-label::after {
    bottom: -3px;
    left: 5px;
    -webkit-transform: rotate(27deg);
            transform: rotate(27deg);
  }
}
.fv__box-label span {
  font-size: 20px;
  font-family: "Outfit", serif;
  font-weight: 800;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .fv__box-label span {
    font-size: 36px;
  }
}
.fv__box-label span::after, .fv__box-label span::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 21px;
  background: #333333;
}
@media screen and (min-width: 1101px) {
  .fv__box-label span::after, .fv__box-label span::before {
    height: 28px;
  }
}
.fv__box-label span::before {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  top: -6px;
  right: -44px;
}
@media screen and (min-width: 768px) {
  .fv__box-label span::before {
    -webkit-transform: rotate(29deg);
            transform: rotate(29deg);
    top: -6px;
    right: -86px;
  }
}
@media screen and (min-width: 1101px) {
  .fv__box-label span::before {
    top: -1px;
    right: -107px;
    -webkit-transform: rotate(29deg);
            transform: rotate(29deg);
  }
}
.fv__box-label span::after {
  bottom: -7px;
  right: -44px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
@media screen and (min-width: 768px) {
  .fv__box-label span::after {
    bottom: -7px;
    right: -86px;
    -webkit-transform: rotate(-29deg);
            transform: rotate(-29deg);
  }
}
@media screen and (min-width: 1101px) {
  .fv__box-label span::after {
    bottom: -6px;
    right: -108px;
    -webkit-transform: rotate(-28deg);
            transform: rotate(-28deg);
  }
}

.fv__box-benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .fv__box-benefits {
    margin-top: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.fv__box-benefit {
  background: #fe3781;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 10px;
  padding: 5px 0;
  width: 120px;
}
@media screen and (min-width: 375px) {
  .fv__box-benefit {
    width: 140px;
  }
}
@media screen and (min-width: 426px) {
  .fv__box-benefit {
    width: 200px;
  }
}
@media screen and (min-width: 768px) {
  .fv__box-benefit {
    padding: 0;
    border-radius: 50%;
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .fv__box-benefit {
    width: 130px;
    height: 130px;
  }
}

.fv__box-benefit-number {
  position: absolute;
  color: #333333;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/number-decoration.png) no-repeat center center/contain;
  width: 25px;
  height: 32px;
  top: 10px;
  left: 10px;
}
@media screen and (min-width: 768px) {
  .fv__box-benefit-number {
    top: -15px;
    left: -10px;
    padding-top: 4px;
    font-size: 20px;
    width: 35px;
    height: 45px;
  }
}

.fv__box-benefit-text {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  padding-left: 20px;
}
.fv__box-benefit-text span {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .fv__box-benefit-text {
    padding: 0;
  }
}

.fv__point {
  position: absolute;
  bottom: 40px;
  left: 55%;
}
@media screen and (min-width: 1101px) {
  .fv__point {
    bottom: 220px;
  }
}

.fv__point-box {
  background: #00aed1;
  padding: 6px 8px;
  position: relative;
}
.fv__point-box::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: rotate(-5deg) translateX(-50%);
          transform: rotate(-5deg) translateX(-50%);
  background: rgba(253, 253, 253, 0.9);
  width: 67px;
  height: 26px;
}
@media screen and (min-width: 426px) {
  .fv__point-box::after {
    content: "";
    position: absolute;
    background: url(../img/icon-comugi-right.png) no-repeat center center/contain;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
    width: 150px;
    height: 200px;
    top: -10px;
    left: 100%;
  }
}

.fv__point-body {
  padding: 30px 13px;
  border: 1px dashed #fdfcfc;
  border-width: 2px;
}

.fv__point-body-text-1 {
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  color: #fdfcfc;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .fv__point-body-text-1 {
    font-size: 20px;
  }
}

.fv__point-body-text-2 {
  margin-top: 13px;
  color: #fdfcfc;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.logo-swiper {
  z-index: 2;
  position: absolute;
  bottom: -70px;
  width: 100%;
}
@media screen and (min-width: 1101px) {
  .logo-swiper {
    bottom: -23px;
  }
}

.logo-swiper__wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  position: relative;
  z-index: 3;
}

.logo-swiper__slide {
  width: 1071px;
  height: 77px;
}
@media screen and (min-width: 1101px) {
  .logo-swiper__slide {
    width: 2706px;
    height: 192px;
  }
  .logo-swiper__slide img {
    width: 100%;
    height: 75%;
  }
}

.concept__inner {
  max-width: 425px;
  margin-inline: auto;
}
@media screen and (min-width: 426px) {
  .concept__inner {
    max-width: 450px;
  }
}
@media screen and (min-width: 1101px) {
  .concept__inner {
    max-width: 1100px;
  }
}

.concept__decoration {
  position: relative;
}

.concept__decoration-1 {
  position: absolute;
  top: 390px;
  left: -80px;
}
@media screen and (min-width: 1101px) {
  .concept__decoration-1 {
    top: 170px;
    left: -330px;
  }
}
.concept__decoration-1 img {
  width: 194px;
}
@media screen and (min-width: 1101px) {
  .concept__decoration-1 img {
    width: 478px;
  }
}

.concept__decoration-2 {
  position: absolute;
  top: 670px;
  right: -150px;
}
@media screen and (min-width: 1101px) {
  .concept__decoration-2 {
    top: 930px;
    right: -360px;
  }
}
.concept__decoration-2 img {
  width: 235px;
}
@media screen and (min-width: 1101px) {
  .concept__decoration-2 img {
    width: 448px;
  }
}

.concept__title {
  text-align: center;
}
.concept__title span {
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #00aed1));
  background: linear-gradient(transparent 50%, #00aed1 50%);
  padding: 0 10px;
}
@media screen and (min-width: 1101px) {
  .concept__title span {
    font-size: 36px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #00aed1));
    background: linear-gradient(transparent 60%, #00aed1 40%);
  }
}

.concept__image {
  margin-top: 20px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .concept__image {
    margin-top: 38px;
  }
}
.concept__image img {
  width: 248px;
}
@media screen and (min-width: 1101px) {
  .concept__image img {
    width: 380px;
  }
}

.concept__image-text {
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  text-align: center;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1101px) {
  .concept__image-text {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.04em;
    -webkit-transform: translate(10%, -50%);
            transform: translate(10%, -50%);
  }
}

.concept__image-decoration {
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 63px;
  height: 47px;
}
@media screen and (min-width: 1101px) {
  .concept__image-decoration {
    width: 69px;
    height: 87px;
  }
}

.concept__content {
  margin-top: 20px;
}
@media screen and (min-width: 1101px) {
  .concept__content {
    margin-top: 47px;
  }
}

.concept__text {
  position: relative;
}
.concept__text::before, .concept__text::after {
  content: "";
  position: absolute;
  width: 89px;
  height: 1px;
  background: #333333;
}
.concept__text::before {
  -webkit-transform: rotate(56deg);
          transform: rotate(56deg);
  top: 45px;
  left: -18px;
}
@media screen and (min-width: 1101px) {
  .concept__text::before {
    top: 80px;
    left: calc(50% - 230px);
  }
}
.concept__text::after {
  -webkit-transform: rotate(-56deg);
          transform: rotate(-56deg);
  top: 45px;
  right: -25px;
}
@media screen and (min-width: 1101px) {
  .concept__text::after {
    top: 80px;
    right: calc(50% - 230px);
  }
}

.concept__text1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .concept__text1 {
    font-size: 20px;
    line-height: 24px;
  }
}

.concept__text2 {
  margin-top: 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .concept__text2 {
    margin-top: 23.14px;
    font-size: 20px;
  }
}
.concept__text2 span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 1px 1px 0 #00aed1, -1px 1px 0 #00aed1, -1px -1px 0 #00aed1, 1px -1px 0 #00aed1;
  padding-right: 12px;
}
@media screen and (min-width: 1101px) {
  .concept__text2 span {
    font-size: 40px;
    padding-right: 5.17px;
  }
}
.concept__text2 span::before {
  content: "";
  position: absolute;
  background: url(../img/concept-accent.png) no-repeat top left/cover;
  width: 120px;
  height: 23px;
  top: -15px;
  left: 6px;
}
@media screen and (min-width: 1101px) {
  .concept__text2 span::before {
    width: 181.79px;
    height: 23.57px;
    top: -25px;
  }
}

.concept__content-body {
  margin-top: 27px;
  z-index: 3;
}
@media screen and (min-width: 1101px) {
  .concept__content-body {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.concept__content-body .content__body {
  margin-left: auto;
}
.concept__content-body .content__body:nth-of-type(2n) {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (min-width: 1101px) {
  .concept__content-body .content__body {
    margin-inline: auto;
  }
  .concept__content-body .content__body:nth-of-type(2n) {
    margin-inline: auto;
  }
}

.content__body {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #fe3781;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1101px) {
  .content__body {
    width: 300px;
    height: 300px;
  }
}

.content__body-number {
  position: absolute;
  top: 0;
  left: 15px;
  width: 28.56px;
  height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1101px) {
  .content__body-number {
    width: 49.82px;
    height: 75px;
  }
}

.content__body-text {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 28px;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .content__body-text {
    font-size: 24px;
    letter-spacing: 0.04em;
    line-height: 40px;
  }
}

.concept__message {
  margin-top: 62px;
  position: relative;
  padding-bottom: 40px;
}
@media screen and (min-width: 1101px) {
  .concept__message {
    margin-top: 77px;
    padding-bottom: 167px;
  }
}

.concept__message-text {
  line-height: 28px;
  letter-spacing: 0.06em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  font-size: 14px;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 375px) {
  .concept__message-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1101px) {
  .concept__message-text {
    font-size: 32px;
    line-height: 40px;
  }
  .concept__message-text::before, .concept__message-text::after {
    content: "";
    position: absolute;
    width: 91px;
    height: 1px;
    background: #333333;
  }
  .concept__message-text::before {
    top: -10px;
    left: 0;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  .concept__message-text::after {
    bottom: -40px;
    left: 0;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}

.concept__message-image {
  position: absolute;
  bottom: calc(100% + 67px);
  left: 14px;
}
@media screen and (min-width: 1101px) {
  .concept__message-image {
    left: 60px;
    bottom: 50px;
  }
}
.concept__message-image img {
  width: 78px;
}
@media screen and (min-width: 1101px) {
  .concept__message-image img {
    width: 124px;
  }
}

.cta {
  padding: 45px 0;
  position: absolute;
  width: 100%;
  background: url(../img/cta-bg-sp.png) no-repeat top left/cover;
}
@media screen and (min-width: 1101px) {
  .cta {
    padding: 33.5px 0;
    background: url(../img/cta-bg.png) no-repeat center right/cover;
  }
}

.cta__title {
  color: #eef660;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
  text-shadow: 4px 4px 4px #00aed1, -4px -4px 4px #00aed1, -4px 4px 4px #00aed1, 4px -4px 4px #00aed1, 4px 0 4px #00aed1, -4px 0 4px #00aed1, 0 4px 4px #00aed1, 0 -4px 4px #00aed1;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .cta__title {
    font-size: 40px;
    line-height: 50px;
  }
}

.cta__text {
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: center;
  font-size: 13px;
}
@media screen and (min-width: 375px) {
  .cta__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1101px) {
  .cta__text {
    margin-top: 25px;
    font-size: 32px;
    line-height: 50px;
  }
}

.cta__button {
  display: none;
}
@media screen and (min-width: 1101px) {
  .cta__button {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 45px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main2 {
  background: url(../img/msin2-bg.png) no-repeat top left/cover;
  width: 100%;
  position: relative;
}
.main2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/msin2-bg.png) no-repeat top left/cover;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  z-index: -1;
  /* 背景だけ反転させ、要素の上に表示させない */
}

.voice__decoration {
  position: relative;
}
@media screen and (min-width: 1101px) {
  .voice__decoration {
    padding-top: 80px;
  }
}

.voice__decoration-1,
.voice__decoration-2 {
  position: absolute;
}

.voice__decoration-1 {
  top: -116px;
  left: -5px;
}
@media screen and (min-width: 1101px) {
  .voice__decoration-1 {
    top: -55px;
    left: -70px;
  }
}
.voice__decoration-1 img {
  width: 81.58px;
}
@media screen and (min-width: 426px) {
  .voice__decoration-1 img {
    width: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .voice__decoration-1 img {
    width: 150px;
  }
}
@media screen and (min-width: 1101px) {
  .voice__decoration-1 img {
    width: 234px;
  }
}

.voice__decoration-2 {
  top: -109px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .voice__decoration-2 {
    top: -220px;
  }
}
@media screen and (min-width: 1101px) {
  .voice__decoration-2 {
    right: 35px;
  }
}
.voice__decoration-2 img {
  width: 47px;
}
@media screen and (min-width: 426px) {
  .voice__decoration-2 img {
    width: 70px;
  }
}
@media screen and (min-width: 768px) {
  .voice__decoration-2 img {
    width: 100px;
  }
}
@media screen and (min-width: 1101px) {
  .voice__decoration-2 img {
    width: 131px;
  }
}

.voice__head {
  text-align: center;
  position: relative;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 1101px) {
  .voice__head {
    max-width: 100%;
  }
}

.voice__head-image-top img {
  width: 44px;
}
@media screen and (min-width: 426px) {
  .voice__head-image-top img {
    width: 78px;
  }
}

.voice__title-text {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  position: absolute;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  bottom: 65%;
  left: 0%;
}
@media screen and (min-width: 426px) {
  .voice__title-text {
    left: 5%;
    font-size: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .voice__title-text {
    font-size: 30px;
    line-height: 1;
  }
}
@media screen and (min-width: 1101px) {
  .voice__title-text {
    font-size: 40px;
    bottom: 75%;
    left: 150px;
  }
}

.voice__title {
  margin-top: -4px;
  font-size: 24px;
  line-height: 40px;
}
@media screen and (min-width: 1024px) {
  .voice__title {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1101px) {
  .voice__title {
    font-size: 40px;
  }
}
.voice__title span {
  font-family: "Rampart One", serif;
  font-size: 24px;
  line-height: 40px;
}
@media screen and (min-width: 426px) {
  .voice__title span {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .voice__title span {
    font-size: 48px;
  }
}
@media screen and (min-width: 1101px) {
  .voice__title span {
    font-size: 64px;
  }
}

.voice__head-bottom {
  padding: 4.91px 10px 0 8px;
}
@media screen and (min-width: 1101px) {
  .voice__head-bottom {
    padding-top: 40px;
  }
}
.voice__head-bottom img {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 1101px) {
  .voice__head-bottom img {
    max-width: 700px;
    margin-inline: auto;
    height: 38px;
  }
}

.voice__container {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 426px) {
  .voice__container {
    margin-top: 50px;
    gap: 20px;
    max-width: 900px;
  }
}
@media screen and (min-width: 1101px) {
  .voice__container {
    max-width: 100%;
  }
}

.voice__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 305px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}
@media screen and (min-width: 426px) {
  .voice__body {
    max-width: 860px;
  }
}
.voice__body:nth-of-type(2n+1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: auto;
}

.voice__image {
  width: 45px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 426px) {
  .voice__image {
    width: 80px;
  }
}
@media screen and (min-width: 1101px) {
  .voice__image {
    width: 100px;
  }
}
.voice__image img {
  border-radius: 50%;
}
@media screen and (min-width: 426px) {
  .voice__image img {
    width: 100%;
  }
}
.voice__image span {
  display: block;
  font-size: 10px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 426px) {
  .voice__image span {
    font-size: 16px;
  }
}

.voice__body-text {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  position: relative;
}
@media screen and (min-width: 426px) {
  .voice__body-text {
    line-height: 40px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .voice__body-text {
    font-size: 20px;
    font-weight: 700;
    padding: 15px;
  }
}

.voice__body-left-text {
  margin-left: 11px;
}
@media screen and (min-width: 426px) {
  .voice__body-left-text {
    margin-left: 20px;
  }
}
.voice__body-left-text::before {
  position: absolute;
  content: "";
  background: url(../img/voice-fukidashi.png) no-repeat top left/contain;
  width: 20px;
  height: 32px;
  top: 0;
  left: -10px;
}

.voice__body-right-text {
  margin-right: 11px;
}
@media screen and (min-width: 426px) {
  .voice__body-right-text {
    margin-right: 20px;
  }
}
.voice__body-right-text::before {
  position: absolute;
  content: "";
  background: url(../img/voice-fukidashi.png) no-repeat top left/contain;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  width: 20px;
  height: 32px;
  top: 0;
  right: -10px;
}

.voice__body-text-wrap .voice__body-text:nth-of-type(2) {
  margin-top: 15px;
  margin-left: 11px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 426px) {
  .voice__body-text-wrap .voice__body-text:nth-of-type(2) {
    margin-left: 20px;
  }
}

.voice__step-head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  text-align: center;
}

.voice__step-head-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}
@media screen and (min-width: 1101px) {
  .voice__step-head-title {
    font-size: 32px;
  }
}

.voice__step-head-text {
  margin-top: 20px;
  font-family: "Rampart One", serif;
  font-size: 48px;
  line-height: 40px;
}
@media screen and (min-width: 1101px) {
  .voice__step-head-text {
    margin-top: 40px;
    font-size: 64px;
  }
}

.voice__step-deco {
  position: absolute;
  top: 25px;
  right: 15px;
}
.voice__step-deco img {
  width: 39px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}
@media screen and (min-width: 1101px) {
  .voice__step-deco img {
    width: 85px;
  }
}

.voice__step-container {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  background: url(../img/step-bg.png) no-repeat center center/contain;
  background-size: 136px 491px;
  background-position: 50% 215px;
}
@media screen and (min-width: 1101px) {
  .voice__step-container {
    margin-top: 73px;
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: url(../img/step-bg-pc.png) no-repeat center center/contain;
    background-size: 548px 152px;
  }
}

.voice__step-wrap {
  z-index: 10;
}
.voice__step-wrap:nth-of-type(1) .voice__step-body .voice__step-image img {
  width: 130px;
  height: 140px;
}
@media screen and (min-width: 1101px) {
  .voice__step-wrap:nth-of-type(1) .voice__step-body .voice__step-image img {
    width: 177px;
    height: 191px;
  }
}
.voice__step-wrap:nth-of-type(2) .voice__step-body .voice__step-image img {
  width: 143px;
  height: 102px;
}
@media screen and (min-width: 1101px) {
  .voice__step-wrap:nth-of-type(2) .voice__step-body .voice__step-image img {
    width: 195px;
    height: 139px;
  }
}
.voice__step-wrap:nth-of-type(3) .voice__step-body .voice__step-image img {
  margin-left: -18px;
  width: 110px;
  height: 152px;
}
@media screen and (min-width: 1101px) {
  .voice__step-wrap:nth-of-type(3) .voice__step-body .voice__step-image img {
    width: 136px;
    height: 189px;
  }
}
.voice__step-wrap:nth-of-type(3) .voice__step-body-text {
  text-align: left;
}

.voice__step-body-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1101px) {
  .voice__step-body-head {
    gap: 32px;
  }
}

.voice__step-number {
  position: relative;
}

.voice__step-number-text {
  font-family: "Outfit", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40.32px;
}
@media screen and (min-width: 1101px) {
  .voice__step-number-text {
    font-size: 40px;
  }
}

.voice__step-number-image {
  position: absolute;
  width: 63px;
  top: -2px;
  left: -32px;
}
@media screen and (min-width: 1101px) {
  .voice__step-number-image {
    top: -8px;
    left: -30px;
  }
}
.voice__step-number-image img {
  width: 63px;
  height: 46px;
}
@media screen and (min-width: 1101px) {
  .voice__step-number-image img {
    width: 78px;
    height: 57.5px;
  }
}

.voice__step-number-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28.8px;
  -ms-flex-item-align: center;
      align-self: center;
}

.voice__step-image {
  margin-top: 8px;
  background: #fff;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
}
@media screen and (min-width: 1101px) {
  .voice__step-image {
    margin-top: 30px;
    width: 274px;
    height: 274px;
  }
}

.voice__step-body-text {
  margin-top: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  max-width: 320px;
  margin-inline: auto;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 426px) {
  .voice__step-body-text {
    font-size: 16px;
  }
}
.cta2 {
  background: #fe3781;
  padding: 30px 20px;
}

.cta2__inner {
  border-radius: 15px;
  background: #fdfcfc;
  position: relative;
  max-width: 961px;
  margin-inline: auto;
}

.cta2__image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -38%);
          transform: translate(-50%, -38%);
}
@media screen and (min-width: 1101px) {
  .cta2__image {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(145px, -50%);
            transform: translate(145px, -50%);
  }
}
.cta2__image img {
  width: 120px;
}
@media screen and (min-width: 1101px) {
  .cta2__image img {
    width: 242px;
  }
}

.cta2__wrap {
  overflow: hidden;
  border-radius: 15px;
  height: 408px;
  background: url(../img/cta-rainbow.png) no-repeat top left/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 27px;
}
@media screen and (min-width: 1101px) {
  .cta2__wrap {
    background: url(../img/cta-rainbow-pc.png) no-repeat;
    background-size: 1130px 830px;
    background-position: -115px -128px;
    height: 278px;
    padding: 45px 0 36px 142px;
  }
}

@media screen and (min-width: 1101px) {
  .cta2__head {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 74px;
  }
}

.cta2__title {
  margin-top: 34px;
  color: #00aed1;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .cta2__title {
    font-size: 24px;
    margin-top: 0px;
  }
}
.cta2__title::before, .cta2__title::after {
  position: absolute;
  background: #000;
  width: 43px;
  height: 3px;
  background: #00aed1;
  border-radius: 20px;
}
.cta2__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: rotate(66deg) translateY(-50%);
          transform: rotate(66deg) translateY(-50%);
}
.cta2__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  -webkit-transform: rotate(-66deg) translateY(-50%);
          transform: rotate(-66deg) translateY(-50%);
}

.cta2__text {
  margin-top: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 375px) {
  .cta2__text {
    font-size: 16px;
  }
}

.cta2__button {
  margin-inline: auto;
}
@media screen and (min-width: 1101px) {
  .cta2__button {
    margin: 0;
  }
}
.cta2__button:hover {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
}
.cta2__button:hover .cta2__link-button {
  color: #fff;
  background: #fe3781;
  -webkit-box-shadow: #fe3781 0px 0px 0px;
          box-shadow: #fe3781 0px 0px 0px;
}

.cta2__link-button {
  display: block;
  max-width: 230px;
  width: 230px;
  color: #fe3781;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  -webkit-box-shadow: #fe3781 3px 3px 1px;
          box-shadow: #fe3781 3px 3px 1px;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: 300ms;
  transition: 300ms;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cta2__link-button::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #eef660;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-animation: shinyshiny 2.5s ease-in-out infinite;
          animation: shinyshiny 2.5s ease-in-out infinite;
}
@media screen and (min-width: 375px) {
  .cta2__link-button {
    max-width: 295px;
    width: 295px;
  }
}
@media screen and (min-width: 1101px) {
  .cta2__link-button {
    font-size: 24px;
    max-width: 440px;
    width: 440px;
  }
}
.cta2__link-button span {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-size: 20px;
  line-height: 1.2;
}
@media screen and (min-width: 1101px) {
  .cta2__link-button span {
    font-size: 38px;
  }
}

.lesson {
  padding-top: 406px;
}

.lesson__decoration {
  position: relative;
}

.lesson__decoration-1 {
  position: absolute;
  top: -30px;
  right: -165px;
}
@media screen and (min-width: 1024px) {
  .lesson__decoration-1 {
    top: -50px;
  }
}
.lesson__decoration-1 img {
  width: 235px;
}
@media screen and (min-width: 426px) {
  .lesson__decoration-1 img {
    width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .lesson__decoration-1 img {
    width: 448px;
  }
}

.lesson__head {
  position: relative;
}

.lesson__title {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #eef660));
  background: linear-gradient(transparent 50%, #eef660 50%);
  padding: 0 16px 6px;
}
@media screen and (min-width: 375px) {
  .lesson__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__title {
    margin-top: 45px;
    font-size: 36px;
  }
}

.lesson__text {
  margin-top: 20px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 375px) {
  .lesson__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__text {
    font-size: 18px;
    line-height: 40px;
  }
}

.lesson__boxes {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .lesson__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .lesson__boxes {
    gap: 60px;
  }
}
.lesson__boxes .lesson__box:nth-of-type(1) .lesson__box-container .lesson__box-lists .lesson__box-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-check.png) no-repeat top left/contain;
}
.lesson__boxes .lesson__box:nth-of-type(2) .lesson__box-container .lesson__box-lists .lesson__box-list::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-star.png) no-repeat top left/contain;
}

.lesson__box {
  border-radius: 10px;
  border: 1px solid #00aed1;
  background: #00aed1;
  position: relative;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.lesson__box-container {
  border-radius: 0 10px 10px 0;
  background: #fdfcfc;
  margin: 1px 1px 1px 11px;
  padding: 22px 0 23px;
}
@media screen and (min-width: 1101px) {
  .lesson__box-container {
    padding: 24px 0 47px;
  }
}

.lesson__box-head {
  text-align: center;
}

.lesson__box-image img {
  width: 40px;
}

.lesson__box-text {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .lesson__box-text {
    margin-top: 7px;
    font-size: 32px;
  }
}

.lesson__box-lists {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1101px) {
  .lesson__box-lists {
    margin-top: 25px;
    gap: 20px;
  }
}

.lesson__box-list {
  font-weight: 700;
  padding-left: 19px;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 1101px) {
  .lesson__box-list {
    font-size: 20px;
    padding-left: 30px;
  }
}
.lesson__box-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 1101px) {
  .lesson__box-list::before {
    width: 20px;
    height: 20px;
  }
}
.lesson__box-list span {
  font-size: 12px;
}
@media screen and (min-width: 1101px) {
  .lesson__box-list span {
    padding-left: 5px;
  }
}

.lesson__box-point-text {
  position: absolute;
  font-size: 12px;
  top: 100%;
  padding-left: 10px;
  text-align: left;
}

.price__decoration {
  position: relative;
}

.price__decoration-1 {
  position: absolute;
  top: 1200px;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .price__decoration-1 {
    top: 810px;
    right: -250px;
  }
}
.price__decoration-1 img {
  width: 240px;
}
@media screen and (min-width: 426px) {
  .price__decoration-1 img {
    width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .price__decoration-1 img {
    width: 478px;
  }
}

.price__decoration-2 {
  position: absolute;
  top: -115px;
  left: -100px;
}
@media screen and (min-width: 426px) {
  .price__decoration-2 {
    top: -150px;
  }
}
@media screen and (min-width: 768px) {
  .price__decoration-2 {
    top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .price__decoration-2 {
    top: 38px;
    left: -330px;
  }
}
.price__decoration-2 img {
  width: 240px;
}
@media screen and (min-width: 426px) {
  .price__decoration-2 img {
    width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .price__decoration-2 img {
    width: 478px;
  }
}

.section-head {
  position: relative;
}

.price__head {
  margin-top: 8px;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .price__head {
    margin-top: 29px;
  }
}

.price__head-text-arch {
  font-size: 14px;
  line-height: 40px;
}
@media screen and (min-width: 1101px) {
  .price__head-text-arch {
    font-size: 24px;
  }
}

.arch {
  display: inline-block;
}

.price__head-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 31px;
  margin-inline: auto;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #eef660));
  background: linear-gradient(transparent 70%, #eef660 30%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1101px) {
  .price__head-title {
    gap: 25px;
    padding: 0 5px;
  }
}
.price__head-title .price__head-image:nth-of-type(2) img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.price__head-image img {
  width: 43px;
}
@media screen and (min-width: 1101px) {
  .price__head-image img {
    width: 56px;
  }
}

.price__head-text {
  font-weight: 700;
}
.price__head-text span {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
@media screen and (min-width: 1101px) {
  .price__head-text span {
    font-size: 64px;
  }
}
@media screen and (min-width: 1101px) {
  .price__head-text {
    font-size: 40px;
  }
}

.price__cards {
  margin-top: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}
@media screen and (min-width: 1024px) {
  .price__cards {
    margin-top: 77px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1101px) {
  .price__cards {
    gap: 28px;
  }
}

.price__card {
  border-radius: 15px;
  background: #fdfcfc;
  padding: 10px 11px;
  position: relative;
  max-width: 335px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .price__card {
    max-width: 320px;
  }
}

.price__card-ribbon {
  position: absolute;
  width: 190px;
  top: -16px;
  left: -14px;
}

.price__card-label {
  position: absolute;
  line-height: 1;
  font-size: 24px;
  font-weight: 700;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 40px;
  left: 25px;
}

.price__card-box {
  border-radius: 15px;
  border: 1px solid #dddddd;
  padding: 33px 22px 31px;
}

.price__card-title {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #dddddd;
}
@media screen and (min-width: 1101px) {
  .price__card-title {
    font-size: 24px;
  }
}

.price__card-body {
  padding: 28px 60px 0;
}
@media screen and (min-width: 375px) {
  .price__card-body {
    padding: 28px 84px 0;
  }
}

.price__card-text {
  font-size: 14px;
  text-align: left;
}

.price__card-fee {
  font-family: "Outfit", serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.15rem;
  text-align: left;
  line-height: 30px;
  white-space: nowrap;
  vertical-align: bottom;
  text-align: center;
}
.price__card-fee span {
  vertical-align: bottom;
  font-family: "Outfit", serif;
  font-weight: 700;
  font-size: 16px;
  margin-right: -2px;
}

.price__card-image {
  margin-top: 10px;
  margin-left: 5px;
}
.price__card-image img {
  width: 14px;
}

.price__card-free {
  margin-top: 20px;
  font-weight: 700;
  font-size: 105px;
  line-height: 0.4;
  white-space: nowrap;
}
.price__card-free span {
  font-size: 20px;
  font-weight: 700;
}

.price__content {
  margin-top: 73px;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .price__content {
    margin-top: 120px;
  }
}

.price__content-card {
  margin-inline: auto;
  max-width: 335px;
  width: 100%;
}

.price__content-head-image {
  position: absolute;
  top: -7%;
  left: 47%;
  -webkit-transform: translateX(-145%);
          transform: translateX(-145%);
}
@media screen and (min-width: 1101px) {
  .price__content-head-image {
    top: -20%;
    -webkit-transform: translateX(-125%);
            transform: translateX(-125%);
  }
}
.price__content-head-image img {
  width: 104px;
}
@media screen and (min-width: 1101px) {
  .price__content-head-image img {
    width: 191px;
  }
}

.price__content-text {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .price__content-text {
    line-height: 1;
    font-size: 40px;
  }
}
.price__content-text span {
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 375px) {
  .price__content-text span {
    font-size: 20px;
  }
}
@media screen and (min-width: 1101px) {
  .price__content-text span {
    font-size: 20px;
  }
}

.price__content-card {
  margin-top: 15px;
}
@media screen and (min-width: 1101px) {
  .price__content-card {
    margin-top: 30px;
  }
}

.price__content-box {
  padding: 16px 14px 13px;
}

.price__content-card-body {
  padding: 33px 0 0;
}

.price__card-top-point {
  color: #fff;
  background: #fe3781;
  border-radius: 57px;
  font-weight: 700;
  line-height: 1.2;
  padding: 8px 21px;
  font-size: 14px;
}
@media screen and (min-width: 375px) {
  .price__card-top-point {
    font-size: 16px;
  }
}

.price__content-card-top {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: text-bottom;
}

.price__content-card-top-text {
  font-size: 14px;
  line-height: 17px;
  -ms-flex-item-align: center;
      align-self: center;
}

.price__content-card-top-fee {
  margin-bottom: 3px;
  padding-left: 2px;
  font-family: "Outfit", serif;
  font-weight: 700;
  line-height: 20px;
  font-size: 16px;
  margin-right: -2px;
}
.price__content-card-top-fee span {
  font-family: "Outfit", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.15em;
  margin-left: -7px;
}

.price__card-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.price__card-bottom-point {
  background: #00aed1;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 10px;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 375px) {
  .price__card-bottom-point {
    font-size: 14px;
    width: 57px;
    height: 57px;
  }
}

.price__content-card-free {
  margin-top: 0;
  padding-left: 6px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Outfit", serif;
  line-height: 30px;
}
.price__content-card-free span {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  margin-left: -7px;
  letter-spacing: -0.15em;
}

.price__card-bottom-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.2;
}

.price__card-bottom-caution {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.experience__decoration {
  position: relative;
}
@media screen and (min-width: 1101px) {
  .experience__decoration {
    margin-inline: auto;
    max-width: 1200px;
  }
}

.experience__decoration-1 {
  position: absolute;
  top: -390px;
  left: -665px;
}
@media screen and (min-width: 768px) {
  .experience__decoration-1 {
    left: -520px;
  }
}
@media screen and (min-width: 1024px) {
  .experience__decoration-1 {
    left: -365px;
  }
}
@media screen and (min-width: 1101px) {
  .experience__decoration-1 {
    top: -400px;
  }
}
.experience__decoration-1 img {
  width: 775px;
}

.experience__swiper {
  margin-top: 30px;
  padding-bottom: 30px;
  z-index: 5;
}

.experience__swiper-slide {
  background: #00aed1;
  clip-path: polygon(50% 0, 100% 40%, 80% 100%, 20% 100%, 0 40%);
  width: 328px;
  height: 312px;
}

.experience__swiper-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.experience__swiper-box-title {
  margin-top: 108px;
  color: #fdfcfc;
  padding-left: 23px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  position: relative;
}
.experience__swiper-box-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background: url(../img/icon-ponpon.png) no-repeat center center/contain;
  width: 22px;
  height: 22px;
}

.experience__swiper-box-text {
  margin-top: 24.5px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
  font-size: 14px;
}
@media screen and (min-width: 375px) {
  .experience__swiper-box-text {
    font-size: 16px;
  }
}

.experience__swiper-pagination {
  margin-bottom: -5px;
}
@media screen and (min-width: 1101px) {
  .experience__swiper-pagination {
    display: none;
  }
}

.experience__swiper-pagination .swiper-pagination-bullet-active {
  background: #00aed1;
}

@media screen and (min-width: 1101px) {
  .box {
    margin-inline: auto;
    width: 900px;
    height: 856px;
    position: relative;
    margin-bottom: 40px;
  }
  .experience-box__image {
    position: absolute;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -35%);
            transform: translate(-50%, -35%);
  }
  .experience-box__image img {
    width: 178px;
  }
  .box1,
  .box2,
  .box3,
  .box4,
  .box5 {
    position: absolute;
  }
  .box1 {
    top: 208px;
  }
  .box2 {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .box3 {
    top: 208px;
    right: 0;
  }
  .box4 {
    bottom: 0;
    left: 50%;
    margin-left: 13px;
  }
  .box5 {
    bottom: 0;
    right: 50%;
    margin-right: 13px;
  }
}
.instructor {
  background: url(../img/bg-checked.png) no-repeat top left/cover;
}

.instructor-head {
  padding-top: 40px;
}

.instructor-head__text {
  color: #333333;
}

.instructor__container {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .instructor__container {
    margin-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
}

.instructor__image {
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .instructor__image {
    margin-top: 30px;
  }
}
.instructor__image img {
  width: 260px;
}
@media screen and (min-width: 426px) {
  .instructor__image img {
    width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .instructor__image img {
    width: 500px;
  }
}

.instructor__text {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-inline: auto;
  max-width: 750px;
}
@media screen and (min-width: 1024px) {
  .instructor__text {
    margin: 0;
    font-size: 18px;
    line-height: 40px;
  }
}

.spirit__head {
  z-index: 5;
}

.spirit__head-text {
  font-weight: 700;
  margin-top: 20px;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 1101px) {
  .spirit__head-text {
    margin-top: 45px;
  }
}

.spirit__container {
  margin-top: 30px;
}
@media screen and (min-width: 1101px) {
  .spirit__container {
    margin-top: 50px;
  }
}

.spirit__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .spirit__wrap {
    height: 728px;
  }
}

.spirit__body {
  position: relative;
}

.spirit__cloud {
  max-width: 435px;
}

.spirit__image {
  position: absolute;
}

.spirit__body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 375px) {
  .spirit__body-text {
    font-size: 28px;
  }
}
.spirit__body-text span {
  white-space: nowrap;
}

.text-smile {
  white-space: nowrap;
}

.spirit__smile {
  width: 118px;
  top: -69px;
  right: -25px;
}
@media screen and (min-width: 426px) {
  .spirit__smile {
    width: 200px;
    top: -50px;
    right: -150px;
  }
}
@media screen and (min-width: 1101px) {
  .spirit__smile {
    right: -290px;
    width: 303px;
  }
}
.spirit__smile img {
  -webkit-transform: rotate(-10px);
          transform: rotate(-10px);
}

.spirit__happy {
  width: 157px;
  top: -70px;
  left: -20px;
}
@media screen and (min-width: 426px) {
  .spirit__happy {
    width: 200px;
    left: -90px;
  }
}
@media screen and (min-width: 1101px) {
  .spirit__happy {
    width: 326px;
    top: -210px;
  }
}

.spirit__fight {
  width: 86px;
  top: -50px;
  right: 0;
}
@media screen and (min-width: 426px) {
  .spirit__fight {
    width: 150px;
    right: -60px;
  }
}
@media screen and (min-width: 1101px) {
  .spirit__fight {
    width: 229px;
    top: 250px;
  }
}

.body-smile,
.body-happy,
.body-fight {
  z-index: 5;
}

@media screen and (min-width: 1101px) {
  .body-happy {
    position: absolute;
    left: 0;
    bottom: 108px;
    width: 448px;
  }
}

@media screen and (min-width: 1101px) {
  .body-fight {
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
}

.spirit__text {
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: -100px;
}
.spirit__text span {
  font-size: 24px;
  padding: 0 26px;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .spirit__text span {
    font-size: 55px;
    padding: 0 64px;
  }
}
.spirit__text span::before, .spirit__text span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url(../img/icon-kirakira.png) no-repeat center center/contain;
}
@media screen and (min-width: 1101px) {
  .spirit__text span::before, .spirit__text span::after {
    width: 64px;
    height: 64px;
  }
}
.spirit__text span::before {
  left: 0;
}
.spirit__text span::after {
  right: 0;
}
@media screen and (min-width: 1101px) {
  .spirit__text {
    font-size: 32px;
  }
}

.spirit__rainbow {
  position: absolute;
  bottom: 170px;
  left: 50%;
  -webkit-transform: translateX(-80%);
          transform: translateX(-80%);
  width: 918px;
  height: 685px;
}
@media screen and (min-width: 1101px) {
  .spirit__rainbow {
    width: 1309px;
    height: 982px;
    bottom: -270px;
    -webkit-transform: translateX(-62%);
            transform: translateX(-62%);
  }
}
.spirit__rainbow img {
  width: 100%;
}

.spirit__rainbow-sp {
  position: absolute;
  bottom: 660px;
  left: -200px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: 918px;
  height: 685px;
}
@media screen and (min-width: 375px) {
  .spirit__rainbow-sp {
    bottom: 630px;
  }
}
@media screen and (min-width: 375px) {
  .spirit__rainbow-sp {
    bottom: 780px;
  }
}
@media screen and (min-width: 426px) {
  .spirit__rainbow-sp {
    bottom: 830px;
  }
}
@media screen and (min-width: 1101px) {
  .spirit__rainbow-sp {
    display: none;
  }
}
.spirit__rainbow-sp img {
  width: 100%;
}

.qa__wrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin-inline: auto;
}

.qa__box.is-open .qa__q-box::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.qa__q-box {
  background: #fdfcfc;
  border-radius: 15px;
  padding: 22px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
}
.qa__q-box::before, .qa__q-box::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #333333;
  width: 8px;
  height: 2px;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.qa__q-box::before {
  right: 10px;
  top: calc(50% + 1px);
}
.qa__q-box::after {
  right: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 1101px) {
  .qa__q-box {
    padding: 15px 30px;
    gap: 20px;
  }
}

.qa__q,
.qa__a {
  font-family: "Rampart One", serif;
}
@media screen and (min-width: 1101px) {
  .qa__q,
  .qa__a {
    font-size: 20px;
  }
}

.qa__q-text,
.qa__a-text {
  padding-left: 5px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 1101px) {
  .qa__q-text,
  .qa__a-text {
    font-size: 20px;
  }
}

.qa__a-text {
  letter-spacing: 0.06em;
}

.qa__a-box {
  display: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fdfcfc;
  border-radius: 15px;
  padding: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: 1px solid #eef660;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 1101px) {
  .qa__a-box {
    padding: 30px;
    gap: 20px;
  }
}

.qa__more {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  max-width: 800px;
  margin-inline: auto;
}
.qa__more:hover .qa__more-image img {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.qa__more-text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.access {
  background: url(../img/bg-checked.png) no-repeat bottom left/cover;
}

.access-head__text {
  color: #333333;
}

.access__map {
  margin-top: 20px;
  max-width: 750px;
  margin-inline: auto;
}
.access__map iframe {
  height: 300px;
  width: 100%;
}
@media screen and (min-width: 1101px) {
  .access__map {
    margin-top: 45px;
  }
}

.access__title {
  margin-top: 25px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .access__title {
    margin-top: 57px;
  }
}

.access__detail {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  max-width: 400px;
  margin-inline: auto;
}
@media screen and (min-width: 1101px) {
  .access__detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
    max-width: 100%;
  }
}

.access__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px 15px 5px;
  border-bottom: 1px solid #333333;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 335px;
  height: 100%;
}
@media screen and (min-width: 320px) {
  .access__body {
    max-width: 335px;
    width: 100%;
  }
}
@media screen and (min-width: 1101px) {
  .access__body {
    border-bottom: none;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
  }
}

@media screen and (min-width: 1101px) {
  .access__body + .access__body {
    border-left: 1px solid #333333;
    padding-left: 15px;
  }
}
.access__body-head {
  width: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
}
@media screen and (min-width: 1101px) {
  .access__body-head {
    font-size: 16px;
  }
}

.access__body-text {
  font-size: 13px;
}
@media screen and (min-width: 375px) {
  .access__body-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1101px) {
  .access__body-text {
    font-size: 16px;
  }
}

.footer {
  padding: 30px 0 100px;
  background: #00aed1;
}
@media screen and (min-width: 1101px) {
  .footer {
    padding: 50px 0 20px;
  }
}

.footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1101px) {
  .footer__head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer__logo {
  -ms-flex-item-align: center;
      align-self: center;
}
.footer__logo img {
  width: 39px;
}
@media screen and (min-width: 1101px) {
  .footer__logo img {
    width: 50px;
  }
}

.footer__title {
  font-size: 20px;
  letter-spacing: -0.04em;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .footer__title {
    padding-left: 10px;
    font-size: 36px;
  }
}

.footer__wrap {
  margin-top: 40px;
}
@media screen and (min-width: 1101px) {
  .footer__wrap {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 200px;
  }
}

.footer__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 426px) {
  .footer__lists {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1101px) {
  .footer__lists {
    max-width: 100%;
  }
}

.footer__list {
  text-align: center;
}
.footer__item {
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 13px;
}
@media screen and (min-width: 375px) {
  .footer__item {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__item {
    font-size: 16px;
  }
}

.footer__sns-lists {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1101px) {
  .footer__sns-lists {
    padding-left: 50px;
  }
}

.footer__sns-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__sns-item-image img {
  width: 24px;
}

.footer__sns-item--text {
  font-size: 12px;
}
.footer__copyright {
  text-align: center;
}

.footer__text {
  padding-top: 20px;
}

.sp-bottom {
  position: fixed;
  bottom: 3%;
  z-index: 200;
  width: 100%;
  display: none;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sp-bottom.is-show {
  display: block;
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .sp-bottom.is-show {
    display: none;
    opacity: 0;
  }
}
.sp-bottom.is-checked {
  display: none;
}
@media screen and (min-width: 1024px) {
  .sp-bottom {
    display: none;
    opacity: 0;
  }
}

.sp-bottom__inner {
  padding-inline: 10px;
  max-width: 400px;
  margin-inline: auto;
}

.sp-bottom__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.sp-button {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sp-button:hover {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
}
.sp-button:hover .sp-bottom__comment {
  display: none;
}
.sp-button:hover .sp-bottom__text {
  padding: 15px 0;
  border: 1px solid #fff;
}
.sp-button:hover .sp-bottom__experience-text {
  color: #fff;
  background: #fe3781;
  -webkit-box-shadow: #fe3781 0px 0px 0px;
          box-shadow: #fe3781 0px 0px 0px;
}
.sp-button:hover .sp-bottom__join-text {
  color: #333333;
  background: #eef660;
  -webkit-box-shadow: #eef660 0px 0px 0px;
          box-shadow: #eef660 0px 0px 0px;
}

.sp-bottom__image {
  position: absolute;
  top: 5px;
  left: 0px;
}

.sp-bottom__experience-image {
  width: 64px;
}
.sp-bottom__experience-image img {
  height: 64px;
}

.sp-bottom__join-image {
  width: 64px;
}
.sp-bottom__join-image img {
  height: 64px;
}

.sp-bottom__text {
  display: block;
  font-weight: 700;
  line-height: 21.6px;
  letter-spacing: -4%;
  background: #fff;
  border-radius: 124px;
  border: 1px solid #fe3781;
  padding: 21px 0 15px;
}
@media (max-width: 374px) {
  .sp-bottom__text {
    width: 140px;
    padding: 15px 12px 8px;
  }
}

.sp-bottom__experience-text {
  border: 1px solid #fe3781;
  -webkit-box-shadow: #fe3781 3px 3px 1px;
          box-shadow: #fe3781 3px 3px 1px;
  width: 150px;
  max-width: 150px;
  font-size: 18px;
}
@media screen and (min-width: 375px) {
  .sp-bottom__experience-text {
    width: 170px;
    max-width: 170px;
  }
}

.sp-bottom__join-text {
  border: 1px solid #eef660;
  -webkit-box-shadow: #eef660 3px 3px 1px;
          box-shadow: #eef660 3px 3px 1px;
  width: 150px;
  max-width: 150px;
  font-size: 18px;
}
@media screen and (min-width: 375px) {
  .sp-bottom__join-text {
    width: 170px;
    max-width: 170px;
  }
}

.sp-bottom__comment {
  position: absolute;
  left: 0;
  top: -10px;
  font-weight: 700;
  font-size: 12px;
  line-height: 14.4px;
  letter-spacing: -4%;
  color: #fff;
  background: #00aed1;
  border-radius: 124px;
  text-align: center;
  padding: 6px 10px 5px 11px;
  border: 1px solid #fff;
}

.top {
  position: fixed;
  bottom: 15%;
  right: 5%;
  z-index: 100;
}
@media screen and (min-width: 1101px) {
  .top {
    bottom: 20%;
  }
}

.top__page-top {
  opacity: 0;
  display: none;
}
.top__page-top.is-show {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
  margin-left: auto;
  display: block;
  opacity: 1;
}

.top__body {
  background: rgba(253, 253, 253, 0.67);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 426px) {
  .top__body {
    width: 101px;
    height: 101px;
  }
}

.top__image img {
  width: 30px;
}
@media screen and (min-width: 426px) {
  .top__image img {
    width: 51px;
  }
}

.top__text {
  font-family: "Outfit", serif;
  letter-spacing: -0.04em;
  font-size: 12px;
}
@media screen and (min-width: 426px) {
  .top__text {
    font-size: 16px;
    line-height: 24px;
  }
}

.qa-section {
  padding: 100px 0 100px;
  background: #fe3781;
}

.term,
.policy {
  padding-top: 60px;
  background: url(../img/msin2-bg.png) no-repeat top left/cover;
}
@media screen and (min-width: 1101px) {
  .term,
  .policy {
    padding-top: 100px;
  }
}

.term__head,
.policy__head {
  padding: 60px;
}
@media screen and (min-width: 1101px) {
  .term__head,
  .policy__head {
    padding: 100px;
  }
}

.term__head-title,
.policy__head-title {
  font-weight: 700;
  font-size: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1101px) {
  .term__head-title,
  .policy__head-title {
    font-size: 36px;
  }
}

.term__inner,
.policy__inner {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
}
@media screen and (min-width: 1101px) {
  .term__inner,
  .policy__inner {
    max-width: 900px;
  }
}

.term__container,
.policy__container {
  background: #fff;
  border-radius: 20px;
  padding: 20px 10px;
  margin-top: 40px;
}
@media screen and (min-width: 426px) {
  .term__container,
  .policy__container {
    padding: 50px 30px 40px;
  }
}
@media screen and (min-width: 1101px) {
  .term__container,
  .policy__container {
    margin-top: 50px;
  }
}
.term__container:nth-of-type(2) .term__head-text,
.policy__container:nth-of-type(2) .term__head-text {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .term__container:nth-of-type(2) .term__head-text,
  .policy__container:nth-of-type(2) .term__head-text {
    margin-top: 80px;
  }
}

.term__head-text,
.policy__head-text {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .term__head-text,
  .policy__head-text {
    font-size: 36px;
  }
}

.term__wrap,
.policy__wrap {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1101px) {
  .term__wrap,
  .policy__wrap {
    margin-top: 40px;
    gap: 30px;
  }
}

.term__body,
.policy__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1101px) {
  .term__body,
  .policy__body {
    gap: 15px;
  }
}

.term__body-title,
.policy__body-title {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (min-width: 1101px) {
  .term__body-title,
  .policy__body-title {
    font-size: 20px;
  }
}

.term__body-text {
  font-size: 16px;
}
.term__body-text span {
  font-size: 14px;
}

.term__body-lists,
.policy__body-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  list-style-type: decimal;
  padding-left: 18px;
}
@media screen and (min-width: 1101px) {
  .term__body-lists,
  .policy__body-lists {
    gap: 10px;
  }
}

.l-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.c-loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FE3781;
  z-index: 100;
  display: grid;
  place-items: center;
  pointer-events: none;
  padding-inline: 15px;
}

.c-loader-text {
  text-align: center;
  margin-bottom: -150px;
}
.c-loader-text p {
  display: block;
}
.c-loader-text span {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  font-family: "M PLUS 1", serif;
  letter-spacing: 0.3em;
  color: #fdfcfc;
}
@media screen and (min-width: 768px) {
  .c-loader-text {
    margin-bottom: -100px;
  }
  .c-loader-text span {
    font-size: 36px;
  }
}

.c-loader-img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  pointer-events: none;
  margin-top: -150px;
  z-index: 101;
}

.c-loader-img > span {
  display: block;
}
.c-loader-img > span img {
  width: 150px;
  height: auto;
}
.c-loader-img > span:nth-of-type(1) img {
  width: 110px;
}
.c-loader-img > span:nth-of-type(3) img {
  width: 120px;
}

.c-loader-img > span + span {
  margin-left: 3rem;
}

.no-js .c-loader-text,
.no-js .c-loader-img {
  display: none;
}