@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #2c2c2c;
}

.inner {
  padding-inline: 25px;
}
@media screen and (min-width: 1101px) {
  .inner {
    padding-inline: 130px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.inner__image {
  position: relative;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1101px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.heading {
  text-align: center;
}

.heading__title-en {
  font-size: 36px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 2px;
}
@media screen and (min-width: 1101px) {
  .heading__title-en {
    font-size: 56px;
  }
}

.heading__title-ja {
  font-size: 14px;
}
@media screen and (min-width: 1101px) {
  .heading__title-ja {
    font-size: 20px;
  }
}

.button {
  font-weight: 700;
  background: #fdfdfd;
  border-radius: 50px;
  padding: 5px 25px;
  width: 250px;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .button {
    width: 285px;
    padding: 16px 48px;
  }
}
.button-experience {
  border: 1px solid #006fbe;
  -webkit-box-shadow: 0 3px 0 0 #006fbe;
          box-shadow: 0 3px 0 0 #006fbe;
  position: relative;
}
.button-experience span {
  font-size: 16px;
}
.button-experience a {
  color: #006fbe;
}
.button-experience:hover {
  background: #006fbe;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button-experience:hover a {
  color: #fdfdfd;
}
.button-experience:hover::after {
  background: #fdfdfd;
}
.button-experience::after {
  position: absolute;
  content: "";
  -webkit-mask-image: url(../img/right-arrow.svg);
          mask-image: url(../img/right-arrow.svg);
  width: 25px;
  height: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  background-color: #006fbe;
}
.button-enter {
  border: 1px solid #f9911a;
  -webkit-box-shadow: 0 3px 0 0 #f9911a;
          box-shadow: 0 3px 0 0 #f9911a;
  position: relative;
}
.button-enter span {
  font-size: 16px;
}
.button-enter a {
  color: #f9911a;
}
.button-enter:hover {
  background: #f9911a;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button-enter:hover a {
  color: #fdfdfd;
}
.button-enter:hover::after {
  background: #fdfdfd;
}
.button-enter::after {
  position: absolute;
  content: "";
  -webkit-mask-image: url(../img/right-arrow.svg);
          mask-image: url(../img/right-arrow.svg);
  width: 25px;
  height: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  background-color: #f9911a;
}
.button-line {
  background: #fabdcd;
  -webkit-box-shadow: 0 3px 0 0 #fabdcd;
          box-shadow: 0 3px 0 0 #fabdcd;
  position: relative;
}
.button-line span {
  font-size: 16px;
}
.button-line a {
  color: #fdfdfd;
}
.button-line::after {
  position: absolute;
  content: "";
  -webkit-mask-image: url(../img/right-arrow.svg);
          mask-image: url(../img/right-arrow.svg);
  width: 25px;
  height: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  background-color: #fdfdfd;
}
.button-line:hover {
  background: #fdfdfd;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button-line:hover a {
  color: #fabdcd;
}
.button-line:hover::after {
  background: #fabdcd;
}

.circle {
  border-radius: 50%;
  position: absolute;
}

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

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

a:hover {
  opacity: 0.7;
}

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

.fuwafuwa {
  -webkit-animation: fuwafuwa 3s ease-in-out infinite alternate;
          animation: fuwafuwa 3s ease-in-out infinite alternate;
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -15px) rotate(0deg);
            transform: translate(0, -15px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -15px) rotate(0deg);
            transform: translate(0, -15px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}
.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 {
  position: fixed;
  z-index: 999;
  overflow: hidden;
  width: 100%;
  height: 59px;
  background: #fdfdfd;
  -webkit-box-shadow: 0px 0px 3px 0 #333333;
          box-shadow: 0px 0px 3px 0 #333333;
}
@media screen and (min-width: 1101px) {
  .header {
    height: 99px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  display: block;
  padding-left: 20px;
  line-height: 60px;
}
@media screen and (min-width: 1101px) {
  .header__logo {
    line-height: 99px;
  }
}
.header__logo a {
  display: inline-block;
}

.header__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  padding-left: 20px;
  font-size: 20px;
  position: relative;
}
.header__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/logo_comugi.png);
  background-size: contain;
  border-radius: 50%;
  z-index: -1;
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 600px) {
  .header__title::before {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1101px) {
  .header__title::before {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 600px) {
  .header__title {
    padding-left: 30px;
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .header__title {
    padding-left: 50px;
  }
}

.drawer__icon {
  position: relative;
  top: 19px;
  width: 24px;
  height: 24px;
  padding: 4px 3px;
  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;
  z-index: 51;
}
@media screen and (min-width: 1101px) {
  .drawer__icon {
    display: none;
  }
}
.drawer__icon.is-checked .drawer__icon-bar {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-of-type(1) {
  top: 11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.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: 11px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer__icon-bar {
  position: absolute;
  width: 18px;
  height: 1px;
  background: #333333;
  border-radius: 6px;
}
.drawer__icon-bar:nth-of-type(1) {
  top: 4px;
}
.drawer__icon-bar:nth-of-type(2) {
  top: 11px;
}
.drawer__icon-bar:nth-of-type(3) {
  top: 18px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1101px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.header__nav-item {
  font-family: "Josefin Sans", sans-serif;
}

.header__nav-link {
  padding-bottom: 7px;
}
.header__nav-link:hover {
  border-bottom: 2px solid #0066d2;
}

.header__drawer-nav {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  position: fixed;
  z-index: 999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}
.header__drawer-nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  background: #fff6a8;
  height: 100vh;
  top: 59px;
}

.header__drawer-menu {
  padding: 60px 50px;
  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;
}

.header__drawer-item {
  text-align: center;
  color: #0066d2;
  font-weight: 700;
}

.header__drawer-link {
  font-weight: 700;
  font-size: 18px;
}

.main {
  overflow: hidden;
}
.main-policy {
  overflow: hidden;
}

.fv {
  position: relative;
  margin-top: 60px;
  padding-top: 70px;
  padding-bottom: 280px;
}
@media screen and (min-width: 1101px) {
  .fv {
    padding-bottom: 100px;
  }
}

.fv__image {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1101px) {
  .fv__image img {
    -o-object-position: center center;
       object-position: center center;
  }
}

.fv__swiper {
  position: absolute;
  bottom: 5px;
  width: 100%;
}

.fv__swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.fv__swiper-image {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #fff;
}
.fv__swiper-image img {
  background-position: top left;
  background-size: cover;
  height: 150px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__swiper-image img {
    height: 200px;
  }
}
@media screen and (min-width: 1101px) {
  .fv__swiper-image img {
    height: 250px;
  }
}

.fv__inner {
  position: relative;
  padding-inline: 5px;
}

.fv__title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #fdfdfd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  text-shadow: 3px 3px 4px #2c2c2c, -2px -2px 4px #2c2c2c;
  width: 100%;
  font-family: "Yusei Magic", sans-serif;
}
@media screen and (min-width: 375px) {
  .fv__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 600px) {
  .fv__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 60px;
  }
}
@media screen and (min-width: 1101px) {
  .fv__title {
    margin-top: 100px;
  }
}
.fv__title p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 10px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .fv__title p {
    padding: 10px 15px;
    letter-spacing: 1.8px;
  }
}
@media screen and (min-width: 1101px) {
  .fv__title p {
    letter-spacing: 2px;
  }
}
.fv__title p + p {
  margin-top: 15px;
}
.fv__title-en {
  white-space: nowrap;
}

.fv_title-image {
  text-align: center;
}
.fv_title-image img {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 375px) {
  .fv_title-image img {
    max-width: 250px;
  }
}
@media screen and (min-width: 600px) {
  .fv_title-image img {
    max-width: 400px;
  }
}

.fv__button {
  margin-top: 80px;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
@media screen and (min-width: 600px) {
  .fv__button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1101px) {
  .fv__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -300px;
    margin-bottom: 500px;
    margin-left: 500px;
  }
}

.fv__button-enter,
.fv__button-experience,
.fv__button-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 130px;
  height: 130px;
  padding: 0;
  border-radius: 50%;
}
.fv__button-enter a,
.fv__button-experience a,
.fv__button-line a {
  padding-left: 25px;
}

.concept {
  background: #1a9df1;
  overflow: hidden;
  height: 100%;
}

.concept__image-orange {
  position: absolute;
  top: -95px;
  left: -49px;
  z-index: 2;
}
.concept__image-orange img {
  width: 140px;
}
@media screen and (min-width: 600px) {
  .concept__image-orange {
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .concept__image-orange img {
    width: 180px;
  }
}
@media screen and (min-width: 1101px) {
  .concept__image-orange {
    top: -135px;
    left: 80px;
  }
  .concept__image-orange img {
    width: 234px;
  }
}

.concept__large-circle-left {
  top: -80px;
  left: -287px;
  width: 326px;
  height: 326px;
  background: #ffdb4a;
}
@media screen and (min-width: 600px) {
  .concept__large-circle-left {
    top: 0;
    left: -135px;
  }
}
@media screen and (min-width: 1101px) {
  .concept__large-circle-left {
    top: -120px;
    left: -100px;
    width: 417px;
    height: 417px;
  }
}

.concept__circle-left {
  top: 473px;
  left: -54px;
  width: 93px;
  height: 93px;
  background: #fff6a8;
}
@media screen and (min-width: 768px) {
  .concept__circle-left {
    width: 150px;
    height: 150px;
  }
}
@media screen and (min-width: 1101px) {
  .concept__circle-left {
    width: 199px;
    height: 199px;
  }
}

.concept__circle-right {
  top: 10px;
  right: -46px;
  width: 93px;
  height: 93px;
  background: #fff6a8;
}
@media screen and (min-width: 768px) {
  .concept__circle-right {
    width: 150px;
    height: 150px;
  }
}
@media screen and (min-width: 1101px) {
  .concept__circle-right {
    width: 205px;
    height: 205px;
  }
}

.concept__image-lemon {
  position: absolute;
  top: 537px;
  right: -78px;
}
.concept__image-lemon img {
  width: 155px;
}
@media screen and (min-width: 600px) {
  .concept__image-lemon {
    top: 600px;
    right: 0;
  }
  .concept__image-lemon img {
    width: 250px;
  }
}
@media screen and (min-width: 768px) {
  .concept__image-lemon {
    top: 500px;
  }
  .concept__image-lemon img {
    width: 350px;
  }
}
@media screen and (min-width: 1101px) {
  .concept__image-lemon {
    top: 470px;
    right: -170px;
  }
  .concept__image-lemon img {
    width: 550px;
  }
}

.concept__heading {
  color: #fff;
}

.concept__body {
  margin-top: 45px;
  position: relative;
  z-index: 3;
  color: #fff;
  line-height: 3;
  text-align: center;
}
.concept__body p {
  font-size: 14px;
  text-shadow: 3px 3px 4px #9a9a9a, -2px -2px 4px #9a9a9a;
}
@media screen and (min-width: 375px) {
  .concept__body p {
    font-size: 16px;
  }
}

.lesson {
  overflow: hidden;
}

.lesson__image {
  position: relative;
}
@media screen and (min-width: 600px) {
  .lesson__image {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.lesson__image .lesson__left-circle-blue:nth-of-type(2) {
  top: 2260px;
  left: -78px;
}
@media screen and (min-width: 768px) {
  .lesson__image .lesson__left-circle-blue:nth-of-type(2) {
    top: 2350px;
    left: -270px;
    width: 300px;
    height: 300px;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__image .lesson__left-circle-blue:nth-of-type(2) {
    display: none;
  }
}

.lesson__left-circle-yellow {
  width: 76px;
  height: 76px;
  background: #fff6a8;
  top: 600px;
  left: -37px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .lesson__left-circle-yellow {
    width: 150px;
    height: 150px;
    left: -150px;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__left-circle-yellow {
    width: 389px;
    height: 389px;
    top: 1500px;
    left: -700px;
  }
}

.lesson__left-circle-blue {
  width: 187px;
  height: 187px;
  background: #d5e3f8;
  top: 650px;
  left: -78px;
}
@media screen and (min-width: 768px) {
  .lesson__left-circle-blue {
    width: 250px;
    height: 250px;
    top: 700px;
    left: -250px;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__left-circle-blue {
    width: 915px;
    height: 915px;
    top: 1650px;
    left: -830px;
  }
}

.lesson__right-circle-blue {
  width: 187px;
  height: 187px;
  background: #d5e3f8;
  top: -20px;
  right: -70px;
}
@media screen and (min-width: 768px) {
  .lesson__right-circle-blue {
    width: 250px;
    height: 250px;
    top: 0;
    right: -300px;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__right-circle-blue {
    width: 704px;
    height: 704px;
    top: 0;
    right: -820px;
  }
}

.lesson__right-circle-orange {
  width: 77px;
  height: 77px;
  background: #f9911a;
  z-index: 2;
  top: 130px;
  right: -25px;
}
@media screen and (min-width: 768px) {
  .lesson__right-circle-orange {
    width: 150px;
    height: 150px;
    top: 200px;
    right: -350px;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__right-circle-orange {
    width: 309px;
    height: 309px;
    top: 500px;
    right: -600px;
  }
}

.lesson__inner {
  position: relative;
  z-index: 5;
}

.lesson__heading-title-ja {
  color: #9a9a9a;
}

@media screen and (min-width: 600px) {
  .lesson__container {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .lesson__container {
    max-width: 600px;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__container {
    max-width: 1180px;
  }
}

.lesson__title {
  margin-top: 45px;
  color: #333333;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  padding-bottom: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 3px solid #ffdb4a;
}

.lesson__daytime {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lesson__day {
  font-size: 18px;
  font-weight: 700;
}

.lesson__time {
  font-size: 18px;
  font-weight: 700;
}

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

.lesson__contents {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 140px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1101px) {
  .lesson__contents {
    margin-top: 95px;
  }
}

.lesson__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lesson__content:nth-of-type(2) {
  margin-left: auto;
}
@media screen and (min-width: 1101px) {
  .lesson__content:nth-of-type(2) {
    margin: 0;
  }
}
.lesson__content:nth-of-type(2) .lesson__content-image {
  margin-left: auto;
}
.lesson__content:nth-of-type(2) .lesson__content-text {
  position: absolute;
}
@media screen and (min-width: 320px) {
  .lesson__content:nth-of-type(2) .lesson__content-text {
    left: inherit;
  }
}
@media screen and (min-width: 375px) {
  .lesson__content:nth-of-type(2) .lesson__content-text {
    right: 150px;
  }
}
@media screen and (min-width: 600px) {
  .lesson__content:nth-of-type(2) .lesson__content-text {
    right: 50%;
  }
}
@media screen and (min-width: 768px) {
  .lesson__content:nth-of-type(2) .lesson__content-text {
    left: -120px;
    right: inherit;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__content:nth-of-type(2) .lesson__content-text {
    left: inherit;
    right: 50%;
  }
}

.lesson__content-image {
  margin-right: auto;
}
@media screen and (min-width: 1101px) {
  .lesson__content-image {
    margin: 0;
  }
}
.lesson__content-image img {
  width: 250px;
}
@media screen and (min-width: 768px) {
  .lesson__content-image img {
    width: 350px;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__content-image img {
    width: 666px;
  }
}

.lesson__content-text {
  position: absolute;
  top: 170px;
  color: #fff;
  font-weight: 700;
  background: #1a9df1;
  width: 170px;
  height: 170px;
  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;
  text-align: center;
}
@media screen and (min-width: 320px) {
  .lesson__content-text {
    left: 100px;
  }
}
@media screen and (min-width: 375px) {
  .lesson__content-text {
    left: 155px;
  }
}
@media screen and (min-width: 600px) {
  .lesson__content-text {
    left: 50%;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__content-text {
    top: 350px;
    left: 570px;
    width: 321px;
    height: 321px;
    font-size: 24px;
  }
}

.lesson__boxes {
  margin-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 600px) {
  .lesson__boxes {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1101px) {
  .lesson__boxes {
    gap: 20px;
    -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;
    max-width: 100%;
  }
}

.lesson__box {
  border-radius: 23px;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 3px 1px #006fbe;
          box-shadow: 1px 1px 3px 1px #006fbe;
}
.lesson__box:nth-of-type(3) .lesson__body-text + .lesson__body-text {
  border: none;
}
.lesson__box:nth-of-type(3) .lesson__body-text {
  line-height: 1;
  padding: 10px 0;
}
.lesson__box:nth-of-type(3) .lesson__box-body {
  padding: 79px 10px;
}
@media screen and (min-width: 1101px) {
  .lesson__box {
    width: calc(100% - 13.3333333333px);
  }
}

.lesson__box-head {
  background: #006fbe;
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  border: transparent;
  border-radius: 20px 20px 0 0;
}

.lesson__box-body {
  padding: 24px 25px;
  text-align: center;
  min-height: 300px;
  background: #fdfdfd;
}

.lesson__body-text {
  padding: 15px 0;
}

.lesson__body-text + .lesson__body-text {
  border-top: 1px solid #006fbe;
}

.lesson__body-place {
  font-weight: 700;
  line-height: 2;
  font-size: 15px;
}
@media screen and (min-width: 1280px) {
  .lesson__body-place {
    font-size: 20px;
  }
}

.price {
  background: #1a9df1;
}

.price__heading {
  color: #fff;
}

.price__head {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .price__head {
    margin-top: 80px;
  }
}

.price__head-wrap {
  position: relative;
}

.price__head-title {
  margin-left: auto;
  margin-right: auto;
  color: #fdfdfd;
  font-weight: 700;
  font-size: 20px;
  padding: 30px 0;
  border-bottom: 2px dotted #fdfdfd;
  border-top: 2px dotted #fdfdfd;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1101px) {
  .price__head-title {
    font-size: 48px;
    letter-spacing: 20px;
  }
}

.price__head-title-now {
  color: #fdfdfd;
  background: #1a9df1;
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1101px) {
  .price__head-title-now {
    font-size: 24px;
    font-weight: 700;
    top: -25px;
  }
}

.price__head-title-time {
  background: #1a9df1;
  color: #fdfdfd;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0 5px;
  line-height: 1;
}
@media screen and (min-width: 1101px) {
  .price__head-title-time {
    font-size: 20px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.price__head-title-limited {
  position: absolute;
  font-size: 12px;
  background: #ff699c;
  border-radius: 20px;
  color: #fdfdfd;
  padding: 0 5px 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 5px;
  z-index: 1;
}
@media screen and (min-width: 1101px) {
  .price__head-title-limited {
    left: inherit;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    right: 50%;
    bottom: -20px;
    font-size: 20px;
    padding: 2px 10px 5px;
  }
}

.price__head-body {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .price__head-body {
    margin-top: 100px;
  }
}

.price-body__content-campagne {
  background: #fdfdfd;
  border-radius: 20px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1101px) {
  .price-body__content-campagne {
    max-width: 800px;
  }
}
@media screen and (min-width: 1280px) {
  .price-body__content-campagne {
    max-width: 1020px;
  }
}

.price-body__wrap {
  position: relative;
  border-bottom: 3px solid #1a9df1;
}
@media screen and (min-width: 1101px) {
  .price-body__wrap {
    border-bottom: 6px solid #1a9df1;
  }
}

.price-body__title {
  text-align: center;
  padding: 25px 0 10px;
  font-weight: 700;
  color: #fdfdfd;
  background: #0066d2;
  border-radius: 20px 20px 0 0;
}
@media screen and (min-width: 1101px) {
  .price-body__title {
    font-size: 36px;
    letter-spacing: 5px;
  }
}

.price-body__title-en {
  position: absolute;
  font-family: "Josefin Sans", sans-serif;
  border: 2px solid #1a9df1;
  border-radius: 15px;
  background: #fdfdfd;
  padding: 5px 20px 0;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #0066d2;
}
@media screen and (min-width: 1101px) {
  .price-body__title-en {
    font-size: 24px;
    border-radius: 25px;
    top: -20px;
  }
}

.price-body {
  padding: 20px 30px 30px;
}
@media screen and (min-width: 1101px) {
  .price-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .price-body {
    padding: 40px 50px 30px;
  }
}

@media screen and (min-width: 1101px) {
  .price-body-box {
    width: calc(50% - 45px);
  }
}
@media screen and (min-width: 1280px) {
  .price-body-box {
    padding: 0 30px;
  }
}

.price-body__box-title {
  text-align: center;
  padding: 10px 40px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a9df1;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .price-body__box-title {
    font-size: 24px;
    letter-spacing: 10px;
  }
}
.price-body__box-title::before {
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 225px;
  height: 10px;
  -webkit-transform: translateX(-50%) skew(-45deg);
          transform: translateX(-50%) skew(-45deg);
  background-image: repeating-linear-gradient(90deg, transparent 0 4px, #1a9df1 4px 8px);
  content: "";
}

.price-body__fee-system {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 53px;
}
@media screen and (min-width: 1101px) {
  .price-body__fee-system {
    margin-top: 25px;
  }
}

.price-body__fee-enter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}

.price-body__price {
  font-weight: 700;
  font-family: "Duru Sans", sans-serif;
  line-height: 1;
  color: #0066d2;
  position: relative;
  font-size: 20px;
}
@media screen and (min-width: 375px) {
  .price-body__price {
    font-size: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .price-body__price {
    font-size: 48px;
  }
}
.price-body__price::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #ff699c;
  width: 100px;
  height: 2px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  left: 0;
  top: 5px;
}
@media screen and (min-width: 375px) {
  .price-body__price::after {
    top: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .price-body__price::after {
    width: 180px;
    height: 5px;
    top: 18px;
    left: -25px;
  }
}

.price-body__unit {
  line-height: 1;
  color: #1a9df1;
  font-weight: 700;
}
.price-body__unit span {
  font-size: 12px;
}
@media screen and (min-width: 1101px) {
  .price-body__unit span {
    font-size: 16px;
  }
}

.price-body__special-fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  position: relative;
}
.price-body__special-fee::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/price_right-arrow.svg) no-repeat center center/contain;
  width: 20px;
  height: 30px;
}
@media screen and (min-width: 375px) {
  .price-body__special-fee::before {
    left: -40px;
  }
}
.price-body__special {
  line-height: 1;
  color: #ff699c;
  font-size: 90px;
}
@media screen and (min-width: 375px) {
  .price-body__special {
    font-size: 120px;
  }
}
@media screen and (min-width: 1101px) {
  .price-body__special {
    font-size: 150px;
  }
}

.price-body__special-unit {
  color: #1a9df1;
  font-weight: 700;
  line-height: 1;
}
.price-body__special-unit span {
  font-size: 14px;
}
@media screen and (min-width: 1101px) {
  .price-body__special-unit span {
    font-size: 18px;
  }
}

.price-body__special-text {
  color: #0066d2;
  position: absolute;
  font-weight: 700;
  font-size: 20px;
  top: 0;
  right: 0;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

@media screen and (min-width: 1101px) {
  .price-present {
    width: calc(50% - 45px);
  }
}
@media screen and (min-width: 1280px) {
  .price-present {
    padding: 0 30px;
  }
}

.price-present__lists {
  margin-top: 20px;
  position: relative;
  padding: 0px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .price-present__lists {
    margin-top: 0;
    padding: 0 0 30px;
  }
}
.price-present__lists::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #1a9df1;
  width: 100%;
  height: 1px;
}
@media screen and (min-width: 1101px) {
  .price-present__lists::before {
    -webkit-transform: translateX(0) rotate(90deg);
            transform: translateX(0) rotate(90deg);
    width: 215px;
    top: 135px;
    left: -150px;
  }
}
@media screen and (min-width: 1280px) {
  .price-present__lists::before {
    left: -183px;
  }
}

.price-present__list-accent {
  color: #fdfdfd;
  background: #1a9df1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  position: absolute;
  top: 10px;
  left: -35px;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: 300ms;
  transition: 300ms;
  display: block;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .price-present__list-accent {
    left: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .price-present__list-accent {
    left: -60px;
    width: 160px;
    font-size: 24px;
  }
}
.price-present__list-accent::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #d5e3f8;
  -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: 1101px) {
  .price-present__list-accent::before {
    top: 0;
  }
}

@-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;
  }
}
.price-present__list {
  position: relative;
  -webkit-text-decoration: 4px underline wavy #ff699c;
          text-decoration: 4px underline wavy #ff699c;
  text-underline-offset: 10px;
  font-weight: 700;
  color: #1a9df1;
  white-space: nowrap;
}
@media screen and (min-width: 375px) {
  .price-present__list {
    padding: 10px 25px;
    font-size: 18px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1101px) {
  .price-present__list {
    padding: 10px 25px 10px 80px;
    font-size: 20px;
  }
}
.price-present__list::before {
  content: "";
  position: absolute;
  top: 64%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/price-present.svg) no-repeat center center/contain;
  width: 25px;
  height: 25px;
}
@media screen and (min-width: 375px) {
  .price-present__list::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1101px) {
  .price-present__list::before {
    left: 5px;
  }
}

.price-body__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1101px) {
  .price-body__content {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    gap: 0;
    max-width: 800px;
  }
  .price-body__content .price-body__content-box:nth-of-type(1) {
    border-radius: 20px 0 0 20px;
  }
  .price-body__content .price-body__content-box:nth-of-type(2) {
    border-radius: 0 20px 20px 0;
  }
}
@media screen and (min-width: 1280px) {
  .price-body__content {
    max-width: 1020px;
  }
}

.price-body__content-box {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
@media screen and (min-width: 1101px) {
  .price-body__content-box {
    width: 50%;
  }
  .price-body__content-box:nth-of-type(2) .price-body__fee-box {
    border-left: 1px solid #1a9df1;
  }
}

.price-body___box-title {
  background: #0066d2;
  padding: 20px 0px;
  text-align: center;
  color: #fdfdfd;
  font-weight: 700;
  border-bottom: 3px solid #1a9df1;
}
@media screen and (min-width: 1101px) {
  .price-body___box-title {
    font-size: 36px;
    letter-spacing: 6px;
  }
}

.price-body__fee-box {
  background: #fdfdfd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 20px 30px;
}
@media screen and (min-width: 1101px) {
  .price-body__fee-box {
    padding: 50px 20px 10px;
    min-height: 370px;
  }
}
@media screen and (min-width: 1280px) {
  .price-body__fee-box {
    padding: 95px 20px;
    min-height: 100%;
  }
}

.price-body__fee {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  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) {
  .price-body__fee {
    gap: 10px;
  }
}

.price-body__fee-cost {
  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;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .price-body__fee-cost {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}

.price-body__fee-head {
  font-weight: 700;
}

.price-body__content-price {
  color: #ff699c;
  font-size: 80px;
  line-height: 1;
}

.price-body__fee-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.price-body__campagne1 {
  display: block;
  position: absolute;
  top: -40px;
  left: -65px;
  font-weight: 700;
  font-size: 25px;
  white-space: nowrap;
  text-shadow: 0 0 3px #ffdb4a;
}
@media screen and (min-width: 375px) {
  .price-body__campagne1 {
    left: -100px;
  }
}
@media screen and (min-width: 1280px) {
  .price-body__campagne1 {
    top: -50px;
    left: -30px;
  }
}

.price-body__campagne2 {
  position: absolute;
  top: 10px;
  left: -60px;
  font-weight: 700;
  background: #ffdb4a;
  width: 75px;
  height: 75px;
  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;
  border-radius: 50%;
}
@media screen and (min-width: 1280px) {
  .price-body__campagne2 {
    left: -35px;
  }
}

.price-body__fee-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (min-width: 1101px) {
  .price-body__fee-body span {
    white-space: nowrap;
  }
}

.nyukai {
  padding-left: 50px;
}

.price-body__unit {
  line-height: 1;
}

.price-body__content-text {
  margin-top: 20px;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (min-width: 1101px) {
  .price-body__content-text {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  .price-body__content-text {
    padding: 0 30px;
  }
}

.cta {
  background: #ffdb4a;
  color: #fff;
  padding: 80px 20px 50px;
}
@media screen and (min-width: 1101px) {
  .cta {
    padding: 60px 20px;
  }
}

.cta__head {
  font-size: 24px;
  text-align: center;
  text-shadow: 3px 3px 4px #9a9a9a, -2px -2px 4px #9a9a9a;
  position: relative;
}
.cta__head::before {
  position: absolute;
  content: "";
  background: #fdfdfd;
  width: 150px;
  height: 2px;
  -webkit-transform: rotate(-100deg);
          transform: rotate(-100deg);
  top: 60px;
  right: 78%;
}
@media screen and (min-width: 600px) {
  .cta__head::before {
    -webkit-transform: rotate(-110deg);
            transform: rotate(-110deg);
  }
}
@media screen and (min-width: 768px) {
  .cta__head::before {
    right: 65%;
  }
}
@media screen and (min-width: 1280px) {
  .cta__head::before {
    -webkit-transform: rotate(-130deg);
            transform: rotate(-130deg);
    right: 62%;
  }
}
.cta__head::after {
  position: absolute;
  content: "";
  background: #fdfdfd;
  width: 150px;
  height: 2px;
  -webkit-transform: rotate(100deg);
          transform: rotate(100deg);
  top: 60px;
  left: 78%;
}
@media screen and (min-width: 600px) {
  .cta__head::after {
    -webkit-transform: rotate(110deg);
            transform: rotate(110deg);
  }
}
@media screen and (min-width: 768px) {
  .cta__head::after {
    left: 65%;
  }
}
@media screen and (min-width: 1280px) {
  .cta__head::after {
    -webkit-transform: rotate(130deg);
            transform: rotate(130deg);
    left: 62%;
  }
}

.cta__text {
  margin-top: 30px;
  text-align: center;
  text-shadow: 3px 3px 4px #9a9a9a, -2px -2px 4px #9a9a9a;
}

.cta__button {
  display: none;
}
@media screen and (min-width: 1101px) {
  .cta__button {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -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;
  }
}

.process__image-inner {
  position: relative;
}

.process__image {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.process__image img {
  height: 1650px;
}
@media screen and (min-width: 600px) {
  .process__image img {
    height: 1580px;
  }
}
@media screen and (min-width: 1101px) {
  .process__image {
    top: 5px;
    -webkit-transform: translateX(-50%) rotate(-90deg);
            transform: translateX(-50%) rotate(-90deg);
  }
  .process__image img {
    height: 850px;
    width: 90px;
  }
}

.process__heading-title-ja {
  color: #9a9a9a;
}

.process__steps {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1101px) {
  .process__steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.process__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 600px) {
  .process__step {
    max-width: 400px;
    margin: auto;
  }
}
@media screen and (min-width: 1101px) {
  .process__step {
    margin: 0;
  }
}
.process__step:nth-of-type(2) .process__step-head {
  background: #fdfdfd;
  padding-left: 0px;
}
.process__step:nth-of-type(2) .process__step-head-number {
  background: #333333;
  color: #fdfdfd;
  margin-left: -1px;
}
.process__step:nth-of-type(2) .process__step-head-title {
  color: #333333;
  font-weight: 700;
}

.process__step-head {
  background: #333333;
  border: 2px solid #333333;
  border-radius: 30px;
  padding: 0px 55px 0px 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.process__step-head-number {
  color: #333333;
  background: #fdfdfd;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  border-radius: 50%;
  line-height: 1;
  width: 50px;
  height: 50px;
  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;
  padding-top: 4px;
}

.process__step-head-title {
  line-height: 1;
  color: #fdfdfd;
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 5px;
}

.process__step-image {
  text-align: center;
}
.process__step-image img {
  height: 172px;
}

.process__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.process__link {
  color: #ff699c;
  text-decoration: underline;
  font-weight: 700;
}

@media screen and (min-width: 1101px) {
  .process__footer {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.process__button {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  height: 54px;
  border: 1px solid #006fbe;
  -webkit-box-shadow: 0 3px 0 0 #006fbe;
          box-shadow: 0 3px 0 0 #006fbe;
  color: #006fbe;
  border-radius: 30px;
  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;
  text-align: center;
}
.process__button:hover {
  color: #fdfdfd;
  background: #006fbe;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1101px) {
  .process__button {
    width: 285px;
    padding: 0;
    margin: 0;
  }
}

.button__experience {
  font-size: 20px;
  font-weight: 700;
}
.button__experience:hover {
  background: #006fbe;
  color: #fdfdfd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.process__footer-text {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .process__footer-text {
    text-align: center;
  }
}
@media screen and (min-width: 1101px) {
  .process__footer-text {
    margin-top: 10px;
    text-align: left;
  }
}

@media screen and (min-width: 1101px) {
  .process__footer-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.process__footer-contacts {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .process__footer-contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1101px) {
  .process__footer-contacts {
    margin: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.process__footer-contact {
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.process__footer-contact-text {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .instructor__inner {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1101px) {
  .instructor__inner {
    max-width: 1180px;
    padding-inline: 60px;
  }
}

.instructor__heading-title-ja {
  color: #9a9a9a;
}

.instructor__container {
  margin-top: 50px;
}
@media screen and (min-width: 1101px) {
  .instructor__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
  }
}

.instructor__image {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.instructor__image img {
  fill: #1a9df1;
  width: 311px;
}
@media screen and (min-width: 1101px) {
  .instructor__image img {
    width: 450px;
  }
}
.instructor__image::after {
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#d1b892), to(#e29d92));
  background: linear-gradient(#d1b892, #e29d92);
  z-index: -1;
  width: 265px;
  height: 270px;
  top: 10px;
  left: 15px;
}
@media screen and (min-width: 375px) {
  .instructor__image::after {
    width: 293px;
    height: 298px;
    top: 25px;
    left: 30px;
  }
}
@media screen and (min-width: 1101px) {
  .instructor__image::after {
    width: 450px;
    height: 460px;
  }
}

.instructor__body {
  margin-top: 62px;
}
@media screen and (min-width: 1101px) {
  .instructor__body {
    margin-top: 0;
  }
}

.instructor__body-text {
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 1101px) {
  .instructor__body-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

.instructor__carer {
  margin-top: 25px;
  font-weight: 700;
  font-size: 18px;
}

.instructor__carer-text {
  margin-top: 14px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 1101px) {
  .instructor__carer-text {
    font-size: 16px;
    line-height: 1.6;
  }
}

.instructor__award {
  margin-top: 25px;
  font-weight: 700;
  font-size: 18px;
}

.instructor__award-text {
  margin-top: 14px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 1101px) {
  .instructor__award-text {
    font-size: 16px;
    line-height: 1.6;
  }
}
.instructor__award-text tr td:nth-of-type(1) {
  font-size: 14px;
}
.instructor__award-text tr + tr {
  margin-top: 5px;
}
.instructor__award-text tr td:nth-of-type(2) {
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .instructor__award-text tr td:nth-of-type(2) {
    padding-left: 20px;
  }
}

.qa {
  background: #1a9df1;
  padding-inline: 15px;
}

.qa__inner {
  background: #fdfdfd;
  border-radius: 20px;
  padding: 40px 10px 20px;
}
@media screen and (min-width: 768px) {
  .qa__inner {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1101px) {
  .qa__inner {
    max-width: 900px;
  }
}

.qa__heading-title-ja {
  color: #9a9a9a;
}

.qa__boxes {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.qa__box {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .qa__box {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.qa__box.is-open .qa__box-wrap::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.qa__q-box {
  width: 100%;
  position: relative;
}
.qa__q-box::after {
  position: absolute;
  content: "";
  background: #9a9a9a;
  height: 1px;
  bottom: 0;
  right: 0;
  width: calc(100% - 20px - 5px);
}
@media screen and (min-width: 375px) {
  .qa__q-box::after {
    width: calc(100% - 20px - 15px);
  }
}
@media screen and (min-width: 768px) {
  .qa__q-box::after {
    width: calc(100% - 40px - 15px);
  }
}

.qa__box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 375px) {
  .qa__box-wrap {
    gap: 10px;
  }
}
.qa__box-wrap::before {
  content: "";
  position: absolute;
  top: 37%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/accordion.png) no-repeat center center/contain;
  background-color: #1a9df1;
  border-radius: 50%;
  background-size: 31px 31px;
  width: 25px;
  height: 25px;
}
@media screen and (min-width: 375px) {
  .qa__box-wrap::before {
    right: 10px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 600px) {
  .qa__box-wrap::before {
    right: 28px;
  }
}
.qa__box-wrap::after {
  content: "";
  position: absolute;
  top: 37%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  background: url(../img/accordion.png) no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  right: 0px;
}
@media screen and (min-width: 375px) {
  .qa__box-wrap::after {
    right: 10px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 600px) {
  .qa__box-wrap::after {
    right: 28px;
  }
}
@media screen and (min-width: 768px) {
  .qa__box-wrap {
    gap: 30px;
  }
}

.qa__q {
  color: #1a9df1;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  margin-top: 5px;
}
@media screen and (min-width: 375px) {
  .qa__q {
    margin-top: 0;
    font-weight: 700;
    font-size: 20px;
  }
}

.qa__q-text {
  color: #1a9df1;
  font-size: 14px;
  padding-bottom: 7px;
  padding-right: 20px;
  text-align: left;
}
@media screen and (min-width: 375px) {
  .qa__q-text {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 15px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) {
  .qa__q-text {
    font-size: 20px;
  }
}

.qa__a-box {
  margin-top: 20px;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .qa__a-box {
    padding-left: 60px;
  }
}

.qa__a-text {
  line-height: 2;
  font-size: 14px;
}
@media screen and (min-width: 375px) {
  .qa__a-text {
    font-size: 16px;
  }
}

.qa__button {
  margin-top: 30px;
  text-align: right;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .qa__button {
    margin-right: 30px;
  }
}
.qa__button-more {
  font-weight: 700;
  color: #ff699c;
  text-decoration: underline;
}
.sns {
  background: #d5e3f8;
}

.sns__contents {
  margin-top: 50px;
}

.sns__content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sns__content-image img {
  width: 20px;
}

.sns__content-head-title {
  font-size: 20px;
  font-weight: 700px;
  text-align: center;
  line-height: 1;
}

.sns__content-body {
  margin-top: 20px;
}

.access__inner {
  padding-inline: 10px;
}

.access__heading-title-ja {
  color: #9a9a9a;
}

.access__information {
  margin-top: 50px;
  -webkit-box-shadow: 0 0 3px 0 #9a9a9a;
          box-shadow: 0 0 3px 0 #9a9a9a;
  padding: 30px 10px;
  background: #fdfdfd;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 600px) {
  .access__information {
    max-width: 400px;
    margin: 50px auto 0;
  }
}
@media screen and (min-width: 768px) {
  .access__information {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 700px;
  }
}
@media screen and (min-width: 1101px) {
  .access__information {
    max-width: 900px;
    padding: 30px 10px 20px;
  }
}

@media screen and (min-width: 768px) {
  .access__body {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.access__place {
  font-size: 14px;
}
@media screen and (min-width: 1101px) {
  .access__place {
    margin-top: 10px;
  }
}

.access__place-name {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.access__place-body {
  padding-left: 20px;
  margin-top: 10px;
}

.access__place-address {
  position: relative;
}
.access__place-address::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #1a9df1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.access__place-detail {
  margin-top: 10px;
  position: relative;
}
.access__place-detail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #1a9df1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.access__facility {
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (min-width: 1101px) {
  .access__facility {
    margin-top: 40px;
  }
}

.access__facility-body {
  margin-top: 10px;
  padding-left: 20px;
}

.access__facility-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.access__facility-text {
  position: relative;
}
.access__facility-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #1a9df1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.access__parking {
  margin-top: 10px;
  position: relative;
}
.access__parking::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #1a9df1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.access__map {
  width: 100%;
}
.access__map iframe {
  width: 100%;
  max-height: 350px;
}

.footer {
  background: #111d59;
  color: #fff;
  padding: 31px 0px 40px;
}
@media screen and (min-width: 1101px) {
  .footer {
    padding: 31px 0 15px;
  }
}

@media screen and (min-width: 1101px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__logo {
  font-family: "Josefin Sans", sans-serif;
  font-size: 32px;
  text-align: center;
}

.footer__nav {
  margin-top: 30px;
}
@media screen and (min-width: 1101px) {
  .footer__nav {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

.footer__term-policy {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .footer__term-policy {
    margin-top: 0;
    gap: 20px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.footer__term-policy::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  width: 300px;
  height: 1px;
}
@media screen and (min-width: 1101px) {
  .footer__term-policy::before {
    display: none;
  }
}

.footer__content-link {
  padding-bottom: 5px;
}
.footer__content-link:hover {
  border-bottom: 2px solid #d5e3f8;
}

.footer__button {
  display: none;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .footer__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.footer__button::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  width: 300px;
  height: 1px;
}
@media screen and (min-width: 1101px) {
  .footer__button::before {
    display: none;
  }
}

.footer-button {
  padding: 5px 20px 5px 15px;
  font-size: 12px;
  width: 200px;
}
@media screen and (min-width: 375px) {
  .footer-button {
    font-size: 14px;
    padding: 12px 40px;
  }
}

.footer__sns {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1101px) {
  .footer__sns {
    margin-top: 0;
    gap: 24px;
  }
}

.footer__image {
  width: 40px;
  height: 40px;
  background: #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;
}
.footer__image img {
  width: 21px;
}
.footer__image:nth-of-type(3) img {
  width: 25px;
  fill: #1a9df1;
}

.footer__copyright {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__fixed {
  position: fixed;
  bottom: 0;
  display: grid;
  grid-template-columns: 2fr 3fr 3fr;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  z-index: 998;
  border-top: 2px solid #1a9df1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 1101px) {
  .footer__fixed {
    overflow: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.footer__fixed-email,
.footer__fixed-line {
  background: #fdfdfd;
  height: 100%;
  line-height: 1;
  width: 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;
}

.footer__fixed-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #fdfdfd;
  height: 100%;
}

.footer__fixed-sns-text {
  position: absolute;
  top: -44px;
  font-size: 10px;
  background: #fdfdfd;
  width: 70px;
  color: #1a9df1;
  padding: 0 3px;
  border-radius: 15px;
  border: 1px solid #1a9df1;
}
.footer__fixed-sns-text::before, .footer__fixed-sns-text::after {
  position: absolute;
  bottom: -15px;
  width: 30px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
.footer__fixed-sns-text::before {
  background: #1a9df1;
  left: 25px;
}
.footer__fixed-sns-text::after {
  bottom: -14px;
  left: 25px;
  background: #fdfdfd;
}

.footer__fixed-line {
  border-left: 1px solid #1a9df1;
}

.footer__fixed-image {
  width: 30px;
  height: 30px;
}
.footer__fixed-enter {
  background: #f9911a;
  padding: 15px 0;
  color: #fdfdfd;
  font-weight: 700;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: 300ms;
  transition: 300ms;
  display: block;
  position: relative;
}
.footer__fixed-enter::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #d5e3f8;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-animation: shinyshiny 2.5s ease-in-out infinite;
          animation: shinyshiny 2.5s ease-in-out infinite;
}

.footer__fixed-experience {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: 300ms;
  transition: 300ms;
  display: block;
  position: relative;
}
.footer__fixed-experience::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #d5e3f8;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-animation: shinyshiny 2.5s ease-in-out infinite;
          animation: shinyshiny 2.5s ease-in-out infinite;
}

.footer__fixed-experience-text {
  padding: 15px 0;
  color: #fdfdfd;
  font-weight: 700;
  background: #0066d2;
}

.footer__fixed-experience-unit {
  position: absolute;
  background: #fdfdfd;
  z-index: 999;
  color: #ff699c;
  top: -10px;
  right: 5px;
  padding: 2px 8px;
  border-radius: 5px;
  border: 2px solid #ff699c;
}

.pop-up {
  background: #fabdcd;
  border: 4px solid #fff;
  -webkit-box-shadow: 0px 4px 4px 0px #2c2c2c;
          box-shadow: 0px 4px 4px 0px #2c2c2c;
  padding-bottom: 15px;
  position: fixed;
  bottom: 10%;
  width: 145px;
  left: 20px;
  z-index: 50;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
  border-radius: 15px;
}
@media screen and (min-width: 600px) {
  .pop-up {
    padding-bottom: 27px;
  }
}
@media screen and (min-width: 768px) {
  .pop-up {
    width: 200px;
    bottom: 8%;
    padding-bottom: 18px;
  }
}
@media screen and (min-width: 1101px) {
  .pop-up {
    width: 240px;
    bottom: 5%;
    width: 300px;
  }
}
.pop-up.is-show {
  display: block;
  opacity: 1;
}
.pop-up.is-close {
  display: none;
}

.pop-up__close {
  position: absolute;
  right: -10px;
  top: -20px;
}
.pop-up__close img {
  width: 16px;
}
@media screen and (min-width: 1101px) {
  .pop-up__close img {
    width: 27px;
  }
}

.pop-up__text {
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-shadow: 3px 3px 4px #9a9a9a, -2px -2px 4px #9a9a9a;
}
@media screen and (min-width: 768px) {
  .pop-up__text {
    padding-top: 10px;
    font-weight: 700;
    font-size: 16px;
  }
}
@media screen and (min-width: 1101px) {
  .pop-up__text {
    padding-top: 20px;
  }
}

.pop-up__button {
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 1101px) {
  .pop-up__button {
    margin-top: 34px;
  }
}

.pop-up__button-link {
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 2px solid #0066d2;
  color: #0066d2;
  border-radius: 25px;
  font-weight: 700;
  font-size: 12px;
  padding: 7px 5px;
}
.pop-up__button-link::after {
  display: none;
}
@media screen and (min-width: 1101px) {
  .pop-up__button-link {
    padding: 11px 21px;
    font-size: 16px;
  }
}

.xmas-pop-up {
  background: #120262;
  border: 4px solid #fff;
  -webkit-box-shadow: 0px 4px 4px 0px #2c2c2c;
          box-shadow: 0px 4px 4px 0px #2c2c2c;
  padding-bottom: 15px;
  position: fixed;
  bottom: 32%;
  width: 145px;
  left: 20px;
  z-index: 50;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
  border-radius: 15px;
}
@media screen and (min-width: 600px) {
  .xmas-pop-up {
    bottom: 25%;
    padding-bottom: 27px;
  }
}
@media screen and (min-width: 768px) {
  .xmas-pop-up {
    width: 200px;
    padding-bottom: 18px;
  }
}
@media screen and (min-width: 1101px) {
  .xmas-pop-up {
    width: 300px;
  }
}
.xmas-pop-up.is-show {
  display: block;
  opacity: 1;
}
.xmas-pop-up.is-close {
  display: none;
}

.xmas-pop-up__close {
  position: absolute;
  right: -10px;
  top: -20px;
}
.xmas-pop-up__close img {
  width: 16px;
}
@media screen and (min-width: 1101px) {
  .xmas-pop-up__close img {
    width: 27px;
  }
}

.xmas-pop-up__modal-close {
  position: absolute;
  right: -10px;
  top: -20px;
}
.xmas-pop-up__modal-close img {
  width: 16px;
}
@media screen and (min-width: 1101px) {
  .xmas-pop-up__modal-close img {
    width: 27px;
  }
}

.xmas-pop-up__text {
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-shadow: 3px 3px 4px #9a9a9a, -2px -2px 4px #9a9a9a;
}
@media screen and (min-width: 768px) {
  .xmas-pop-up__text {
    padding-top: 10px;
    font-weight: 700;
    font-size: 16px;
  }
}
@media screen and (min-width: 1101px) {
  .xmas-pop-up__text {
    padding-top: 20px;
  }
}

.pop-up__button {
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 1101px) {
  .pop-up__button {
    margin-top: 34px;
  }
}

.xmas-pop-up__button-link {
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 2px solid #f4e6e5;
  color: #120262;
  border-radius: 25px;
  font-weight: 700;
  font-size: 12px;
  padding: 7px 5px;
  -webkit-box-shadow: 0 3px 0 0 #120262;
          box-shadow: 0 3px 0 0 #120262;
}
.xmas-pop-up__button-link::after {
  display: none;
}
@media screen and (min-width: 1101px) {
  .xmas-pop-up__button-link {
    padding: 11px 21px;
    font-size: 16px;
  }
}

.xmas-modal {
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: scroll;
  /* モーダル内でスクロールできるように */
}

.modal__overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.main.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.xmas-modal__container {
  background: #ae3524;
  margin: 25% auto;
  width: 90%;
  max-width: 500px;
  max-height: 480px;
  border-radius: 10px 10px 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .xmas-modal__container {
    margin: 15% auto;
    max-width: 640px;
  }
}

.xmas-modal__button img {
  width: 30px;
  height: 30px;
}

.xmas-modal__inner {
  padding-inline: 15px;
  position: relative;
}
.xmas-modal__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: url(../img/sp-star-modal.png) no-repeat center center/cover;
  width: 100%;
  height: 480px;
}
@media screen and (min-width: 1101px) {
  .xmas-modal__inner::before {
    background: url(../img/pc-star-modal.png) no-repeat center center/cover;
  }
}
@media screen and (min-width: 1101px) {
  .xmas-modal__inner {
    padding-inline: 30px;
  }
}

.xmas-modal__content {
  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) {
  .xmas-modal__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}

.xmas-modal__left {
  margin-top: 15px;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .xmas-modal__left {
    margin-top: 40px;
  }
}
.xmas-modal__left::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  background: url(../img/sp-white-xmas.png) no-repeat top left/contain;
  width: 224px;
  height: 209px;
}
@media screen and (min-width: 1101px) {
  .xmas-modal__left::before {
    background: url(../img/pc-white-xmas.png) no-repeat top left/cover;
    top: -40px;
    left: -30px;
    width: 322px;
    height: 339px;
  }
}

.xmas-modal__left-container {
  position: relative;
}
@media screen and (min-width: 1101px) {
  .xmas-modal__left-container {
    text-align: center;
  }
}

.xmas-modal__sub {
  font-family: "Poppins", sans-serif;
  text-shadow: 0 2px 2px #2c2c2c;
}
@media screen and (min-width: 1101px) {
  .xmas-modal__sub {
    font-size: 22px;
  }
}

.xmas-modal__title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  text-shadow: 0px 2px 2px #2c2c2c;
}
@media screen and (min-width: 1101px) {
  .xmas-modal__title {
    font-size: 48px;
    line-height: 1.2;
  }
}

.xmas-modal__day {
  display: block;
  width: 150px;
}
@media screen and (min-width: 1101px) {
  .xmas-modal__day {
    margin-top: 15px;
    width: 154px;
    margin-left: auto;
    margin-right: auto;
  }
}

.xmas-modal-right {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 65px;
}
@media screen and (min-width: 375px) {
  .xmas-modal-right {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1101px) {
  .xmas-modal-right {
    margin-top: 109px;
  }
}

.xmas-modal__text {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #d3b263;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .xmas-modal__text {
    font-size: 24px;
    line-height: 1.2;
  }
}

.xmas-modal__schedule {
  counter-reset: number;
  /*数字をリセット*/
}
@media screen and (min-width: 1101px) {
  .xmas-modal__schedule {
    margin-top: 30px;
  }
}

.xmas-modal__schedule-list {
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  position: relative;
  padding: 0.3em 0.5em 0.3em 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 375px) {
  .xmas-modal__schedule-list {
    font-size: 20px;
  }
}
@media screen and (min-width: 600px) {
  .xmas-modal__schedule-list {
    font-size: 24px;
  }
}
.xmas-modal__schedule-list::before {
  position: absolute;
  text-align: center;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  left: 0;
  width: 24px;
  height: 24px;
  font-weight: bold;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 375px) {
  .xmas-modal__schedule-list::before {
    width: 38px;
    height: 38px;
    border: 2px solid #fff;
  }
}

.xmas-modal__constant {
  position: absolute;
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 10px;
  background: #120262;
  border-radius: 50%;
  padding: 15px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  top: 72%;
  left: -15px;
}
.xmas-modal__constant span {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .xmas-modal__constant {
    font-size: 13px;
    left: -55px;
    padding: 12px;
  }
  .xmas-modal__constant span {
    font-size: 24px;
  }
}

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

.xmas-modal__arrow {
  position: relative;
}
.xmas-modal__arrow::before {
  content: "";
  position: absolute;
  background: #120262;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 50%);
          clip-path: polygon(0 0, 100% 0, 50% 50%);
  width: 10px;
  height: 25px;
  top: -17px;
  left: 40px;
  -webkit-transform: rotate(-140deg);
          transform: rotate(-140deg);
}
@media screen and (min-width: 375px) {
  .xmas-modal__arrow::before {
    top: -10px;
  }
}
@media screen and (min-width: 1101px) {
  .xmas-modal__arrow::before {
    left: 30px;
  }
}

.xmas-modal__link {
  display: block;
  background: #086f3e;
  padding: 15px 0;
  color: #fff;
  position: relative;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 375px) {
  .xmas-modal__link {
    font-size: 20px;
  }
}
.xmas-modal__link::before {
  content: "";
  position: absolute;
  top: -49px;
  left: 80%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/tree.png) no-repeat top left/contain;
  width: 50px;
  height: 100px;
}
@media screen and (min-width: 1101px) {
  .xmas-modal__link::before {
    width: 67px;
    height: 133px;
    top: -67px;
    left: 10%;
  }
}

@media screen and (min-width: 1101px) {
  .xmas-modal__link-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.xmas-modal__link-place {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.xmas-modal__link-text {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
  position: relative;
}
.xmas-modal__link-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  width: 15px;
  height: 20px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.page-xmas {
  background-color: #f4e6e5;
  padding-bottom: 0;
}

.page-xmas__sub {
  color: #fff;
  font-size: 24;
  font-weight: 500;
}

.page-xmas__head {
  padding-top: 20px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .page-xmas__head {
    padding-top: 0;
  }
}

.page-xmas__head-image img {
  width: 100%;
}

.page-xmas__head-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.page-xmas__sub {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

.page-xmas__title {
  color: #fff;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 1101px) {
  .page-xmas__title {
    font-size: 32px;
  }
}

.page-xmas__container {
  margin-top: 40px;
  position: relative;
  padding-bottom: 40px;
}
@media screen and (min-width: 1101px) {
  .page-xmas__container {
    padding-bottom: 150px;
  }
}
.page-xmas__container::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/page-xmas-sp-star.png) no-repeat top center/contain;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1101px) {
  .page-xmas__container::before {
    background: url(../img/page-xmas-pc-star.png) no-repeat top center/contain;
    top: 0px;
    background-size: 100%;
  }
}

.page-xmas__boxes {
  padding-inline: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
@media screen and (min-width: 375px) {
  .page-xmas__boxes {
    padding-inline: 25px;
  }
}
@media screen and (min-width: 1101px) {
  .page-xmas__boxes {
    max-width: 1100px;
    height: 950px;
    margin-inline: auto;
    display: inherit;
    position: relative;
  }
}
.page-xmas__boxes .page-xmas__box:nth-of-type(1) {
  background: #ae3524;
  color: #fff;
}
@media screen and (min-width: 1101px) {
  .page-xmas__boxes .page-xmas__box:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.page-xmas__boxes .page-xmas__box:nth-of-type(2) {
  background: #fff;
  color: #ae3524;
}
@media screen and (min-width: 1101px) {
  .page-xmas__boxes .page-xmas__box:nth-of-type(2) {
    position: absolute;
    top: 100px;
    right: 0;
  }
}
.page-xmas__boxes .page-xmas__box:nth-of-type(3) {
  background: #086f3e;
  color: #fff;
}
@media screen and (min-width: 1101px) {
  .page-xmas__boxes .page-xmas__box:nth-of-type(3) {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
  }
}

.page-xmas__box {
  width: 100%;
  max-width: 325px;
  height: 325px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 1101px) {
  .page-xmas__box {
    max-width: 450px;
    height: 450px;
  }
}

.page-xmas__box-number {
  position: absolute;
}

.xmas-present {
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.xmas-present img {
  width: 57px;
}
@media screen and (min-width: 1101px) {
  .xmas-present {
    top: -30px;
  }
  .xmas-present img {
    width: 93px;
  }
}

.xmas-shose {
  right: 31px;
}
.xmas-shose img {
  width: 58px;
}
@media screen and (min-width: 1101px) {
  .xmas-shose {
    right: -24px;
  }
  .xmas-shose img {
    width: 119px;
  }
}

.xmas-ornament {
  top: -10px;
  left: -18px;
}
.xmas-ornament img {
  width: 110px;
}
@media screen and (min-width: 1101px) {
  .xmas-ornament {
    top: -53px;
    left: -59px;
  }
  .xmas-ornament img {
    width: 196px;
  }
}

.page-xmas__content {
  padding-top: 71px;
}
@media screen and (min-width: 1101px) {
  .page-xmas__content {
    padding-top: 108px;
  }
}

.page-xmas__box-title {
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .page-xmas__box-title {
    font-size: 24px;
  }
}

.page-xmas__box-age {
  margin-top: 5px;
  background: #d3b263;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 13px 7px;
  font-size: 14px;
  color: #2c2c2c;
  border-radius: 8px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .page-xmas__box-age {
    font-size: 20px;
  }
}

.page-xmas__box-time {
  margin-top: 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1101px) {
  .page-xmas__box-time {
    margin-top: 20px;
    font-size: 24px;
  }
}

.page-xmas__box-text {
  margin-top: 9px;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 1101px) {
  .page-xmas__box-text {
    margin-top: 10px;
    font-size: 20px;
  }
}

.page-xmas__box-discription {
  margin-top: 8px;
  font-weight: 700;
  font-size: 15px;
}

.page-xmas__box-price {
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 1101px) {
  .page-xmas__box-price {
    margin-top: 7px;
    font-size: 30px;
  }
}
.page-xmas__box-price span {
  font-size: 24px;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
}
@media screen and (min-width: 1101px) {
  .page-xmas__box-price span {
    font-size: 36px;
  }
}

.page-xmas__arrow {
  margin-top: 25px;
  width: 46px;
  margin-inline: auto;
}
@media screen and (min-width: 1101px) {
  .page-xmas__arrow {
    margin-top: 33px;
    width: 71px;
  }
}

.page-xmas__way {
  margin-top: 25px;
  color: #fff;
  background: #ae3524;
  padding: 20px 13px 27px;
  position: relative;
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (min-width: 1101px) {
  .page-xmas__way {
    margin-top: 32px;
    padding: 20px 20px 27px;
  }
}

.page-xmas__way-wrap {
  border: 1px solid #fff;
}

.page-xmas__way-inner {
  max-width: 420px;
  margin-inline: auto;
}

.page-xmas__way-head {
  margin-top: 39px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-align: center;
}
@media screen and (min-width: 1101px) {
  .page-xmas__way-head {
    margin-top: 37px;
    font-size: 30px;
  }
}

.page-xmas__way-text {
  margin-top: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-align: center;
}
.page-xmas__way-text span {
  text-decoration: underline;
  text-decoration-color: #f4ebe8;
}
@media screen and (min-width: 1101px) {
  .page-xmas__way-text {
    margin-top: 30px;
    font-size: 20px;
  }
}

.page-xmas__way-note {
  margin-top: 24px;
  padding: 0 8px;
}
@media screen and (min-width: 1101px) {
  .page-xmas__way-note {
    margin-top: 35px;
  }
}

.page-xmas__way-list {
  font-size: 14px;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
.page-xmas__way-list::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
}

.page-xmas__way-line {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
@media screen and (min-width: 1101px) {
  .page-xmas__way-line {
    gap: 20px;
  }
}

.page-xmas__way-image img {
  width: 100px;
}

.page-xmas__way-line-icon {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-xmas__way-kine-link {
  fill: #fff;
}
.page-xmas__way-kine-link img {
  width: 50px;
}

.page-xmas__way-line-link img {
  width: 100px;
}

.footer__page-top {
  position: relative;
}

.page-top {
  right: 20px;
  bottom: 12%;
  border-radius: 50%;
  padding: 2px;
  width: 45px;
  height: 45px;
  position: fixed;
  right: 40px;
  z-index: 998;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.page-top:nth-of-type(2) {
  background: #fdfdfd;
}
.page-top img {
  border-radius: 50%;
  width: 40px;
}
@media screen and (min-width: 600px) {
  .page-top {
    width: 75px;
    height: 75px;
    bottom: 15%;
  }
  .page-top img {
    width: 70px;
  }
}
@media screen and (min-width: 1101px) {
  .page-top {
    width: 85px;
    height: 85px;
  }
  .page-top img {
    width: 80px;
  }
}
.page-top:hover {
  opacity: 0;
}
.page-top.is-show {
  opacity: 1;
}

.flow {
  padding-top: 60px;
}
@media screen and (min-width: 1101px) {
  .flow {
    padding-top: 120px;
  }
}

.flow__inner {
  position: relative;
}

.flow__heading-title-ja {
  color: #9a9a9a;
}

.flow__boxes {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .flow__boxes {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
}
@media screen and (min-width: 1101px) {
  .flow__boxes {
    max-width: 800px;
  }
}

.flow__box {
  border: 1px solid #2c2c2c;
  height: 350px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .flow__box {
    width: calc(50% - 8px);
  }
}

.flow__number {
  line-height: 1;
  font-size: 77px;
  font-family: "Duru Sans", sans-serif;
  text-align: right;
  color: #9a9a9a;
}

.flow__title {
  font-size: 24px;
  color: #0066d2;
  margin-top: 44px;
  font-weight: 700;
}

.flow__text {
  margin-top: 20px;
}

.flow__cards {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .flow__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}

.flow__card {
  border: 1px solid #006fbe;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .flow__card {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}

.flow__card-head {
  padding: 18px 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  background: #006fbe;
  letter-spacing: 2px;
}

.flow__card-body,
.flow__card-body-fee {
  height: 222px;
  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;
}

.flow__card-text {
  text-align: center;
  line-height: 2;
}

.flow__card-body-fee {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flow__card-price {
  font-size: 52px;
  line-height: 1;
  color: #ff699c;
  padding-bottom: 5px;
}

.flow__card-unit {
  line-height: 1;
  margin-top: 10px;
}

.flow__footer {
  margin-top: 50px;
}

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

.flow__footer-contents {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.back {
  position: absolute;
  position: fixed;
  bottom: 50px;
  right: 40px;
  text-align: center;
  background: #1a9df1;
  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;
  border-radius: 50%;
  z-index: 999;
  font-size: 8px;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .back {
    width: 100px;
    height: 100px;
    font-size: 16px;
  }
}
.back-white {
  background: #fdfdfd;
  border: 1px solid #1a9df1;
}

.back-text {
  color: #fdfdfd;
  font-weight: 700px;
}
.back-text-white {
  color: #1a9df1;
}

.qa-page {
  padding-top: 40px;
  position: relative;
}
@media screen and (min-width: 1101px) {
  .qa-page {
    padding-top: 120px;
  }
}

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

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

.term__head-title,
.policy__head-title {
  color: #fdfdfd;
  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: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.term__container,
.policy__container {
  margin-top: 40px;
}
@media screen and (min-width: 1101px) {
  .term__container,
  .policy__container {
    margin-top: 100px;
  }
}

.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;
  padding-bottom: 60px;
}
@media screen and (min-width: 1101px) {
  .term__wrap,
  .policy__wrap {
    margin-top: 40px;
    gap: 30px;
    padding-bottom: 100px;
  }
}

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

#particles-js {
  position: fixed;
  /*描画固定*/
  z-index: -1;
  /*描画を一番下に*/
  width: 100%;
  height: 100%;
}

#wrapper-w {
  position: relative;
  /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
  z-index: 10;
  /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
  width: 100%;
  height: 100%;
}