@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Original Yu Gothic", "Yu Gothic", "YuGothic", "Meiryo", "sans-serif";
  color: #229CC2;
}

body.overflow__hidden {
  height: 100%;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-btn {
  padding: 1.25rem 0.625rem;
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  border: 2px solid #fff;
  border-radius: 3rem;
  background-color: #FE5FA9;
  -webkit-box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, .15);
          box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, .15);
  color: #fff;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 20.875rem;
}
@media screen and (min-width: 550px) {
  .c-btn {
    max-width: 25rem;
  }
}
@media screen and (min-width: 768px) {
  .c-btn {
    max-width: 34.75rem;
    padding: 1.75rem 0.625rem;
    border-radius: 5rem;
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1350px) {
  .c-btn {
    font-size: 2rem;
  }
}

.c-btn::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -1.25rem;
  width: 1.75rem;
  height: 12.5rem;
  background: #fff;
  opacity: 0.8;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-animation: moveRight 3s linear infinite;
          animation: moveRight 3s linear infinite; /* アニメーションが 5 秒かかる */
}
@media screen and (min-width: 768px) {
  .c-btn::after {
    width: 2rem;
    height: 18.75rem;
  }
}

@-webkit-keyframes moveRight {
  0% {
    left: -2.5rem;
  }
  40% {
    left: calc(100% + 1.875rem); /* 100%右に移動 */
  }
  100% {
    left: calc(100% + 1.875rem); /* 100%右に移動 */
  }
}

@keyframes moveRight {
  0% {
    left: -2.5rem;
  }
  40% {
    left: calc(100% + 1.875rem); /* 100%右に移動 */
  }
  100% {
    left: calc(100% + 1.875rem); /* 100%右に移動 */
  }
}
.c-btn.c-btn--header {
  padding: 0.5rem 0.625rem;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn--header {
    padding: 1rem 0.625rem;
    font-size: 1.375rem;
  }
}

.c-btn.c-btn--header::after {
  display: none;
}

.p-banner {
  padding: 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .p-banner {
    padding: 3.25rem 0;
  }
}

@media screen and (min-width: 768px) {
  .l-inner.p-banner__inner {
    max-width: 37.1875rem;
  }
}

.p-banner__link {
  display: block;
  width: 65%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-banner__link {
    width: 100%;
  }
}

.p-banner__link img {
  aspect-ratio: 220/115;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-banner__link img {
    aspect-ratio: 545/287;
  }
}

.p-count {
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-count {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1350px) {
  .p-count {
    font-size: 1.25rem;
  }
}

.p-count__date {
  font-size: 0.75rem;
  font-weight: 700;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-count__date {
    border-bottom: 3px solid #fff;
    padding-bottom: 0.625rem;
    font-size: 1.25rem;
  }
}

.p-count__date .p-count__date--month,
.p-count__date .p-count__date--day {
  font-family: "Gotham SSm A", "Gotham SSm B", "Montserrat", "Original Yu Gothic", "Yu Gothic", "YuGothic", "Meiryo", "sans-serif";
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-count__date .p-count__date--month,
  .p-count__date .p-count__date--day {
    font-size: 2.1875rem;
  }
}

.p-count__btn {
  text-align: center;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-count__btn {
    margin-top: 0.9375rem;
  }
}

.p-count__btn.p-count__btn--fv {
  display: inline-block;
}

.p-count__texts {
  text-align: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
}

.p-count__text {
  margin-top: 0.25rem;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-count__text {
    margin-top: 0.4375rem;
    font-size: 0.8125rem;
  }
}

.p-count__text.p-count__text--fv {
  margin-top: 0;
}

.p-count__text.p-count__text--fv:nth-child(n+2) {
  margin-top: 0;
}

.p-cta {
  padding: 2.375rem 0;
  background: url(../images/cta-bg-sp.jpg) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .p-cta {
    background: url(../images/cta-bg.jpg) no-repeat top center/cover;
  }
}

@media screen and (min-width: 768px) {
  .l-inner.p-cta__inner {
    max-width: 37.875rem;
  }
}

.p-cta__title {
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 550px) {
  .p-cta__title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__title {
    font-size: 1.875rem;
  }
}

.p-cta__title span {
  font-family: "Gotham SSm A", "Gotham SSm B", "Montserrat", "Original Yu Gothic", "Yu Gothic", "YuGothic", "Meiryo", "sans-serif";
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
}
@media screen and (min-width: 550px) {
  .p-cta__title span {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__title span {
    font-size: 1.875rem;
    letter-spacing: 0.1em;
  }
}

.p-cta__body {
  margin-top: 1.5625rem;
  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;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-cta__body {
    margin-top: 1.875rem;
    gap: 0.5rem;
  }
}

.p-cta__item {
  background-color: #fff;
  border-radius: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-cta__item {
    border-radius: 1.6875rem;
  }
}

.p-cta__img {
  width: 8.3125rem;
}
@media screen and (min-width: 768px) {
  .p-cta__img {
    width: 12.5rem;
  }
}

.p-cta__img img {
  aspect-ratio: 200/137;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.125rem 1.125rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-cta__img img {
    aspect-ratio: 200/137;
    border-radius: 1.6875rem 1.6875rem 0 0;
  }
}

.p-cta__text {
  text-align: center;
  padding: 0.5rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-cta__text span {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-cta__text span {
    font-size: 1.6875rem;
  }
}

.p-cta__plus {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-cta__plus {
    font-size: 2.0625rem;
  }
}

.p-cta__count {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-cta__count {
    margin-top: 1.875rem;
  }
}

.p-footer {
  text-align: center;
  background-color: #3C424A;
  padding: 1.875rem 2.5rem;
  color: #97A0AA;
}

@media screen and (min-width: 768px) {
  .p-footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.875rem;
  }
}

.p-footer__img {
  width: 8.125rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-footer__img {
    margin-left: 0;
    margin-right: 0;
  }
}

.p-footer__img img {
  aspect-ratio: 130/22;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__line {
  width: 12.5625rem;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-footer__line {
    width: 12.5rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-footer__line img {
  aspect-ratio: 301/48;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__list {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__list {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__item:nth-child(n+2) {
    margin-left: 1rem;
  }
}

.p-footer__link {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-footer__link {
    font-size: 0.75rem;
    font-weight: 800;
  }
}

.p-footer__copyright {
  margin-top: 3.75rem;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 0;
  }
}

.p-fv-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-fv-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-fv-pc__img {
  width: 29.1666666667%;
  min-height: 31.875rem;
  max-height: 50rem;
}

.p-fv-pc__img img {
  aspect-ratio: 420/510;
  width: 100%;
  min-height: inherit;
  max-height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv-pc__body {
  text-align: center;
  padding: 5.0625rem 0 4rem;
  width: 41.6666666667%;
  background: -webkit-gradient(linear, left top, right top, from(#65CED9), to(#5FC2E1));
  background: linear-gradient(90deg, #65CED9 0%, #5FC2E1 100%);
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
}

.p-fv-pc__title {
  color: #fff;
  font-size: 1.7vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.12em;
}

.p-fv-pc__title .p-fv-pc__title--en {
  font-size: 2.1vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-fv-pc__title .p-fv-pc__title--bg {
  font-size: 2vw;
  background-color: #000000;
  padding: 0.98vw 2.23vw;
}

.p-fv-pc__text01 {
  margin-top: 4.17vw;
  color: #FFF974;
  font-size: 1.53vw;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-fv-pc__text02 {
  margin-top: 1.4vw;
  color: #fff;
  font-size: 1.59vw;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.p-fv-pc__text02 span {
  font-size: 1.9vw;
  font-weight: 700;
}

.p-fv-sp {
  display: block;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#65CED9), to(#5FC2E1));
  background: linear-gradient(90deg, #65CED9 0%, #5FC2E1 100%);
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-fv-sp {
    display: none;
  }
}

.p-fv-sp__img {
  display: inline-block;
  margin-top: 1.5625rem;
  width: 100%;
  max-width: 34.375rem;
}

.p-fv-sp__img img {
  aspect-ratio: 375/301.5;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv-sp__title {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.12em;
}

.p-fv-sp__title .p-fv-sp__title--en {
  font-size: 1.0625rem;
  font-weight: 700;
}

.p-fv-sp__title .p-fv-sp__title--bg {
  font-size: 0.9375rem;
  background-color: #000000;
  padding: 0.46875rem 1.09375rem;
}

.p-fv-sp__text01 {
  margin-top: 1.25rem;
  color: #FFF974;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-fv-sp__text02 {
  margin-top: 0.5625rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.p-fv-sp__text02 span {
  font-size: 1.125rem;
  font-weight: 700;
}

.p-fv {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-fv {
    margin-top: 6.25rem;
    min-height: 31.875rem;
    max-height: 50rem;
  }
}

.p-header {
  width: 100%;
  height: 3.125rem;
  background: linear-gradient(50.24deg, #38B7E7 -21.5%, #4DC8D5 114.26%);
  padding-left: 1.3125rem;
  padding-right: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 6.25rem;
    padding-left: 2.6875rem;
    padding-right: 1.8125rem;
  }
}

.p-header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.p-header__logo {
  height: inherit;
  position: relative;
  z-index: 50;
}

.p-header__logo a img {
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo a img {
    width: 12.9vw;
  }
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    margin-left: 1.5625rem;
  }
}
@media screen and (min-width: 1150px) {
  .p-header__nav {
    margin-left: 1.875rem;
  }
}
@media screen and (min-width: 1350px) {
  .p-header__nav {
    margin-left: 3.125rem;
  }
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__nav-item {
  color: #fff;
  font-size: 1vw;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 1150px) {
  .p-header__nav-item {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1350px) {
  .p-header__nav-item {
    font-size: 1.12vw;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav-item:nth-child(n+2) {
    margin-left: 1.1vw;
  }
}
@media screen and (min-width: 1150px) {
  .p-header__nav-item:nth-child(n+2) {
    margin-left: 1vw;
  }
}
@media screen and (min-width: 1350px) {
  .p-header__nav-item:nth-child(n+2) {
    margin-left: 1.8vw;
  }
}

.p-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.45vw;
}

.p-header__login {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "Gotham SSm A", "Gotham SSm B", "Montserrat", "Original Yu Gothic", "Yu Gothic", "YuGothic", "Meiryo", "sans-serif";
    color: #fff;
    font-size: 1.53vw;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
}

.p-header__login::after {
  display: inline-block;
  content: "";
  width: 1.75rem;
  height: 2.375rem;
  background: url(../images/login-icon.png) no-repeat top center/cover;
  margin-left: 0.75rem;
  margin-bottom: 0.625rem;
}

.p-header__btn {
  margin-left: 2.5rem;
  width: 7.8125rem;
}
@media screen and (min-width: 768px) {
  .p-header__btn {
    width: 14.8125rem;
    margin-left: 1.5625rem;
  }
}
@media screen and (min-width: 1150px) {
  .p-header__btn {
    margin-left: 1.5625rem;
  }
}
@media screen and (min-width: 1350px) {
  .p-header__btn {
    margin-left: 2.5rem;
  }
}

.p-header__hamburger {
  position: relative;
  z-index: 999;
  width: 2.125rem;
  height: 2.125rem;
  padding: 0.4375rem;
  margin-top: 0.4375rem;
  margin-left: 1.125rem;
  border: 1px solid #F4FCFF;
  border-radius: 0.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  width: 100%;
  height: 1px;
  border-radius: 3px;
  display: block;
  background-color: #fff;
  -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, transform 0.3s, opacity 0.3s;
  transition: top 0.3s, transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger span {
    display: none;
  }
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  -webkit-transform: translateY(0.375rem) rotate(45deg);
          transform: translateY(0.375rem) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  -webkit-transform: translateY(-0.375rem) rotate(-45deg);
          transform: translateY(-0.375rem) rotate(-45deg);
}

.p-header__drawer {
  padding: 3.1875rem 0.8125rem 1.8125rem;
  position: fixed;
  z-index: 900;
  top: 0;
  right: -100%;
  width: 14.6875rem;
  height: 16.8125rem;
  border-radius: 0.75rem;
  background: linear-gradient(50.24deg, #38B7E7 -21.5%, #4DC8D5 114.26%);
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .1);
          box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, .1);
}

.p-header__drawer.is-open {
  right: 0;
}

.p-header__drawer-list {
  border-top: 1px solid #F4FCFF;
}

.p-header__drawer-item:first-child {
  margin-top: 1.5625rem;
}

.p-header__drawer-item:nth-child(n+2) {
  margin-top: 0.9375rem;
}

.p-header__drawer-item a {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.p-header__drawer-item.p-header__drawer-item--login a {
  font-family: "Gotham SSm A", "Gotham SSm B", "Montserrat", "Original Yu Gothic", "Yu Gothic", "YuGothic", "Meiryo", "sans-serif";
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-header__drawer-item.p-header__drawer-item--login a::after {
  display: inline-block;
  content: "";
  width: 0.9375rem;
  height: 1.25rem;
  background: url(../images/login-icon.png) no-repeat top center/cover;
  margin-bottom: -0.1875rem;
}

.p-lesson-card {
  background-color: #fff;
  text-align: center;
  height: clamp(291px, 78vw, 375px);
}
@media screen and (min-width: 768px) {
  .p-lesson-card {
    height: 100%;
  }
}

.p-lesson-card__img img {
  aspect-ratio: 321/180;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-lesson-card__body {
  padding: 0.4375rem 0 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-lesson-card__body {
    padding: 0.6875rem 0 0.75rem;
  }
}

.p-lesson-card__title {
  font-size: 0.950625rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .p-lesson-card__title {
    font-size: 1.32rem;
  }
}

.p-lesson-card__title-line {
  margin: 0.4375rem auto 0;
  width: 91%;
  border-bottom: solid 1px #5DBFE3;
}
@media screen and (min-width: 768px) {
  .p-lesson-card__title-line {
    display: none;
  }
}

.p-lesson-card__title span {
  font-size: 0.950625rem;
}
@media screen and (min-width: 768px) {
  .p-lesson-card__title span {
    font-size: 1.08rem;
  }
}

.p-lesson-card__text {
  color: #5DBFE3;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.p-lesson-card__text::after {
  display: inline-block;
  content: "";
  width: 0.5rem;
  height: 0.6875rem;
  background: url(../images/lesson-card-icon.png) no-repeat center center/cover;
  margin-left: 0.3125rem;
}

.p-lesson-card__desc {
  padding: 0.375rem 0.9375rem 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: left;
}

.p-lesson-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-lesson-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  z-index: 1;
}

.p-lesson-modal__content {
  position: relative;
  z-index: 2;
  background: #fff;
  width: 100%;
  max-width: 20.8125rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, .15);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, .15);
}
@media screen and (min-width: 768px) {
  .p-lesson-modal__content {
    max-width: 40rem;
  }
}

.p-lesson-modal__close {
  position: relative;
  left: 90%;
  width: 1.875rem;
  height: 1.875rem;
  background: #5DBFE3;
  border-radius: 50%;
  margin-top: 0.5rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-lesson-modal__close {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

.p-lesson-modal__close::after {
  display: block;
  content: "";
  position: absolute;
  top: 9.5%;
  right: 7.4%;
  width: 1.5625rem;
  height: 1.5625rem;
  background: url(../images/lesson-modal-icon01.png) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .p-lesson-modal__close::after {
    width: 2.375rem;
    height: 2.375rem;
  }
}

.p-lesson-modal__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.p-lesson-modal__video iframe {
  aspect-ratio: 640/360;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 0.1875rem;
}

/* ポスター */
.p-lesson-modal__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: none;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

.p-lesson-modal__sound {
  position: absolute;
  top: 40%;
  right: 30%;
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  max-width: 9.0625rem;
  transition: opacity 0.8s ease;
}

.p-lesson-modal__sound img {
  aspect-ratio: 145/38;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-lesson-modal__sound {
    display: none;
  }
}

.p-lesson-modal__info {
  padding: 0.8125rem 0 2.375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lesson-modal__info {
    padding: 0.8125rem 0 2.5rem;
  }
}

.p-lesson-modal__title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .p-lesson-modal__title {
    font-size: 1.875rem;
  }
}

.p-lesson-modal__title::after {
  display: block;
  content: "";
  position: absolute;
  top: 130%;
  right: 3%;
  width: 19.4375rem;
  height: 2px;
  background: url(../images/lesson-modal-icon02.png) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .p-lesson-modal__title::after {
    top: 110%;
    right: 7%;
    width: 34.375rem;
  }
}

.p-lesson-modal__desc {
  padding: 1.25rem 0.9375rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-lesson-modal__desc {
    padding: 0;
    margin-top: 0.9375rem;
    text-align: center;
  }
}

.p-lesson {
  padding: 3.125rem 0;
  background: linear-gradient(80.53deg, rgba(212, 250, 255, .6) 5.76%, rgba(237, 247, 214, .6) 92.83%), #FFFFFF;
}
@media screen and (min-width: 768px) {
  .p-lesson {
    padding: 6.5rem 0;
  }
}

@media screen and (min-width: 768px) {
  .l-inner.p-lesson__inner {
    max-width: 66.25rem;
  }
}

.p-lesson__title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-lesson__title {
    font-size: 2.1875rem;
    font-weight: 700;
    line-height: 1.5;
  }
}

.p-lesson__title::before {
  display: block;
  content: "";
  width: 17.8125rem;
  height: 0.75rem;
  background: url(../images/plan-title-img.png) no-repeat center center/cover;
  position: absolute;
  bottom: 33%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-lesson__title::before {
    width: 26.875rem;
    height: 1.25rem;
    background: url(../images/plan-title-img.png) no-repeat center center/cover;
    bottom: 1%;
  }
}

.p-lesson__title::after {
  display: block;
  margin: 1.25rem auto 0;
  content: "";
  width: 100%;
  max-width: 19.0625rem;
  height: 2px;
  background: url(../images/title-img-sp.png) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .p-lesson__title::after {
    display: none;
  }
}

.p-lesson__text01 {
  margin-top: 0.9375rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-lesson__text01 {
    margin-top: 1.875rem;
    font-size: 1.375rem;
  }
}

.p-lesson__text01 span {
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-lesson__text01 span {
    font-size: 1.5rem;
  }
}

.p-lesson__text02 {
  margin-top: 1.875rem;
  text-align: center;
  color: #FE5FA9;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-lesson__text02 {
    margin-top: 2.5rem;
    font-size: 1.32rem;
  }
}

@media screen and (min-width: 768px) {
  .p-lesson__cards {
    margin-top: 1.1875rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.46875rem;
  }
}

.p-lesson__card {
  cursor: pointer;
}

.p-lesson__card.p-lesson__card--last {
  grid-column: 2/3;
}

.p-lesson__pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lesson__pc-only {
    display: block;
  }
}

.p-lesson__sp-only {
  display: block;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-lesson__sp-only {
    display: none;
  }
}

.swiper-container {
  position: relative;
  margin-top: 1.25rem;
  padding-bottom: 2.5rem;
}

.swiper-slide {
  display: block;
  opacity: 0.4;
}

.swiper-slide.swiper-slide-active {
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  width: 38px;
  height: 38px;
  top: 45%;
}

.swiper-button-prev {
  left: 14%;
}
@media screen and (min-width: 550px) {
  .swiper-button-prev {
    left: 20%;
  }
}

.swiper-button-next {
  right: 14%;
}
@media screen and (min-width: 550px) {
  .swiper-button-next {
    right: 20%;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-size: contain;
  content: "";
  height: 38px;
  margin: auto;
  width: 38px;
  background-repeat: no-repeat;
}

.swiper-button-prev::after {
  background: url(../images/prev_arrow.png) no-repeat center center/cover;
}

.swiper-button-next::after {
  background: url(../images/next_arrow.png) no-repeat center center/cover;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  background: url(../images/pagination1.png) no-repeat center center/cover;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: unset;
  height: 8px;
  opacity: 1;
  width: 8px;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: url(../images/pagination2.png) no-repeat center center/cover;
  height: 8px;
  width: 8px;
}

.swiper-pagination > .swiper-pagination-bullet,
.swiper-pagination.swiper-pagination-horizontal > .swiper-pagination-bullet {
  margin: 0 7px;
  bottom: 0;
}

.swiper-pagination.swiper-pagination-horizontal {
  bottom: 0%;
}

.p-plan-card {
  position: relative;
}

.p-plan-card--1::before {
  display: block;
  content: "";
  position: absolute;
  top: 23%;
  right: -13%;
  width: 5rem;
  height: 5rem;
  background: url(../images/plan-icon3.png) no-repeat top center/cover;
}

.p-plan-card--2::before {
  display: block;
  content: "";
  position: absolute;
  top: 23%;
  right: -13%;
  width: 5rem;
  height: 5rem;
  background: url(../images/plan-icon4.png) no-repeat top center/cover;
}

.p-plan-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-plan-card__head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-plan-card__icon {
  width: 13.8888888889%;
}
@media screen and (min-width: 768px) {
  .p-plan-card__icon {
    width: 15.873015873%;
  }
}

.p-plan-card__icon img {
  aspect-ratio: 40/40;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-plan-card__icon img {
    aspect-ratio: 60/60;
  }
}

.p-plan-card__title {
  margin-left: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-plan-card__title {
    margin-left: 1.125rem;
    font-size: 1.1875rem;
  }
}

.p-plan-card__title span {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-plan-card__title span {
    font-size: 1.6875rem;
    letter-spacing: 0.05em;
  }
}

.p-plan-card__img {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-plan-card__img {
    margin-top: 1.25rem;
  }
}

.p-plan-card__img img {
  aspect-ratio: 432/143;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-plan-card__img img {
    aspect-ratio: 432/143;
  }
}

.p-plan-card__text {
  margin-top: 0.5rem;
  font-size: 0.83125rem;
  font-weight: 600;
  line-height: 1.8796992481;
}
@media screen and (min-width: 768px) {
  .p-plan-card__text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 2.1875;
  }
}

.p-plan-card__text span {
  font-size: 1.06875rem;
  font-weight: 700;
  line-height: 1.4619883041;
}
@media screen and (min-width: 768px) {
  .p-plan-card__text span {
    font-size: 1.25rem;
    line-height: 1.75;
  }
}

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

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

.p-plan {
  background-color: #F7FDFD;
  padding: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .p-plan {
    padding: 6.5rem 0;
  }
}

.p-plan__pc-title {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-plan__pc-title {
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 0.3;
    letter-spacing: -0.01em;
    font-size: 2.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-plan__pc-title span {
    font-family: "Gotham SSm A", "Gotham SSm B", "Montserrat", "Original Yu Gothic", "Yu Gothic", "YuGothic", "Meiryo", "sans-serif";
    font-size: 2.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-plan__pc-title::before {
    display: block;
    content: "";
    width: 43.75rem;
    height: 1.25rem;
    background: url(../images/plan-title-img.png) no-repeat center center/cover;
    position: absolute;
    bottom: 34%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .p-plan__pc-title::after {
    display: block;
    margin: 2.0625rem 0 0;
    content: "";
    width: 100%;
    height: 2px;
    background: url(../images/title-img-pc.png) no-repeat top center/cover;
  }
}

.p-plan__sp-title {
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-plan__sp-title {
    display: none;
  }
}

.p-plan__sp-title .p-plan__sp-title--en {
  font-family: "Gotham SSm A", "Gotham SSm B", "Montserrat", "Original Yu Gothic", "Yu Gothic", "YuGothic", "Meiryo", "sans-serif";
  font-size: 1.125rem;
}

.p-plan__sp-title .p-plan__sp-title--bg {
  font-size: 1.5rem;
  font-weight: 700;
}

.p-plan__sp-title::before {
  display: block;
  content: "";
  width: 14.0625rem;
  height: 1.125rem;
  background: url(../images/plan-title-img.png) no-repeat center center/cover;
  position: absolute;
  bottom: -3%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.p-plan__cards {
  display: none;
  display: grid;
  gap: 2.375rem;
  max-width: 25rem;
  margin: 2.375rem auto 0;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .p-plan__cards {
    max-width: 100%;
    margin: 3.125rem 5.625rem 0;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
