@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

/* header
**********************************************/
@media screen and (min-width: 768px) {
  .header-sub {
    height: 4.625rem;
  }
}

/* fv
**********************************************/
@media screen and (min-width: 768px) {
  .fv {
    margin-top: 4.625rem;
    padding-top: 1.75rem;
  }
}

/* スライダー画像 調整 */
@media screen and (min-width: 768px) {
  .fv-slider .slick-list img,
  .fv-slider .slick-track img,
  .fv-slider .slick-slide img {
    aspect-ratio: 963/414;
    width: 66.875vw;
    /* 963 ÷ 1440 × 100 = 66.875 */
    -o-object-fit: cover;
    object-fit: contain;
  }
}

/* fv 2つめのスライダー調整*/
@media screen and (min-width: 768px) {
  .cp-slider {
    padding-top: 1.875rem;
    padding-bottom: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .cp-slider img {
    width: 23.958vw;
    /* 346 ÷ 1440 × 100 = 23.958 */
    height: auto;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    aspect-ratio: 346/134;
  }
}

/* cta
**********************************************/
@media screen and (min-width: 768px) {
  .cta__new {
    padding-top: 2.875rem;
  }
}

@media screen and (min-width: 768px) {
  .cta__container {
    max-width: 62.5rem;
    padding-bottom: 1.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .cta__container::after {
    right: 5%;
    top: -19%;
  }
}

@media screen and (min-width: 768px) {
  .cta__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    margin-top: initial;
  }
}

@media screen and (min-width: 768px) {
  .cta__items::after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .cta__item:nth-child(n+2)::before {
    width: 0;
    height: 0;
  }
}

@media screen and (min-width: 768px) {
  .cta__item::after {
    position: absolute;
    top: 50%;
    right: -8.5%;
    width: 10px;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(../img/center_line.png) no-repeat center center/contain;
    content: "";
  }
}

@media screen and (min-width: 768px) {
  .cta__item:last-child::after {
    left: -9%;
  }
}

.cta__item:nth-child(2) {
  display: none;
}
@media screen and (min-width: 768px) {
  .cta__item:nth-child(2) {
    display: block;
  }
}

/* topページ　about
**********************************************/
@media screen and (min-width: 768px) {
  .top-about {
    padding-top: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .top-about__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 27.5rem 3.0625rem 1fr;
    grid-template-columns: 27.5rem 1fr;
    gap: 3.0625rem;
    margin-left: initial;
  }
}

@media screen and (min-width: 768px) {
  .top-about__content {
    margin-left: initial;
    display: -ms-grid;
    display: grid;
    gap: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .top-about__title-jp {
    margin-top: initial;
  }
}

@media screen and (min-width: 768px) {
  .top-about__text {
    width: 100%;
    margin-top: initial;
  }
}

@media screen and (min-width: 768px) {
  .top-about__slider {
    margin-top: 2.8125rem;
  }
}

/* topページ shop 店舗一覧
**********************************************/
@media screen and (min-width: 768px) {
  .topShop__inner {
    max-width: 74.25rem;
  }
}

@media screen and (min-width: 768px) {
  .topShop__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5625rem 1fr 1.5625rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
  }
}

.topShop__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.topShop__content {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.topShop__footer {
  margin-top: auto;
  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-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.topShop__map {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .topShop__map {
    margin-top: 1.25rem;
  }
}

.topShop__btn {
  margin-top: 1rem;
}

.topShop__image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 366/155;
}

/* topページ other-comment
**********************************************/
.other-comment {
  position: relative;
  padding-block: 3rem;
}
@media screen and (min-width: 768px) {
  .other-comment {
    padding-block: 4.25rem;
  }
}

.other-comment::after {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 296px;
  background: #F1FAFD;
  content: "";
}

/* TOPページ blog
**********************************************/
@media screen and (min-width: 768px) {
  .top-blog {
    padding-top: 4.375rem;
    padding-bottom: 4.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .top-blog__image {
    max-width: 19.75rem;
    width: 100%;
    height: 11.875rem;
  }
}

.top-blog__image img {
  aspect-ratio: 316/190;
}

.top-blog__content {
  padding: 0;
}

.top-blog__title-wrap {
  position: relative;
}

.top-blog__title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #222;
}

.top-blog__title-inner {
  padding-block: 0.75rem;
  padding-inline: 0.625rem;
}

.top-blog__title {
  font-size: 0.9375rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top-blog__title {
    font-size: 1.125rem;
  }
}

.top-blog__text-wrap {
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .top-blog__text-wrap {
    padding: 0.75rem 1.375rem 2.5rem;
  }
}

.top-blog__text {
  margin-top: initial;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-height: 1.5;
  height: auto;
  font-size: 0.75rem;
  color: #222;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .top-blog__text {
    -webkit-line-clamp: 5;
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}

@media screen and (min-width: 768px) {
  .top-blog__btn {
    margin-top: 3.9375rem;
  }
}

/* topページ course コース一覧
**********************************************/
.top-course-menu {
  margin-top: 2.125rem;
  padding-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .top-course-menu {
    padding-top: 2.8125rem;
    padding-bottom: 6.5625rem;
  }
}

.course__list {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .course__list {
    margin-top: 3.125rem;
    -ms-grid-columns: 1fr 1.25rem 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    row-gap: 3.4375rem;
  }
}

.course-card {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "image" "content";
  border-radius: 0.625rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .course-card {
    -ms-grid-columns: 9.375rem 1fr;
    grid-template-columns: 9.375rem 1fr;
        grid-template-areas: "image content";
  }
}

.course-card__image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: image;
}
.course-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (min-width: 768px) {
  .course-card__image img {
    aspect-ratio: 1/1;
    height: 100%;
    border-radius: 0.625rem 0 0 0.625rem;
  }
}

.course-card__body {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: content;
  position: relative;
  border-radius: 0 0 0.625rem 0.625rem;
}

@media screen and (min-width: 768px){
  .course-card__image {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .course-card__body {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
@media screen and (min-width: 768px) {
  .course-card__body {
    border-radius: 0 0.625rem 0 0;
  }
}

.course-card__header {
  padding-block: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .course-card__header {
    border-radius: 0 0.625rem 0 0;
  }
}

.course-card__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  padding-left: 1rem;
}

.course-card__text {
  font-size: 1rem;
  line-height: 1.5;
}

.course-card__footer {
  padding: 0.625rem 1rem 0.625rem;
}

.course-card__age {
  position: absolute;
  top: -2.5rem;
  right: 1rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 1px solid currentColor;
  color: currentColor;
  z-index: 0;
}

.course-card__age-text {
  position: relative;
  line-height: 1;
  display: inline-block;
  z-index: 1;
}

.course-card__age-text::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.4375rem;
  width: 4.1875rem;
  height: 0.4375rem;
  background-color: #FFF474;
  z-index: -1;
}

.course-card__age-number {
  font-size: 1.25rem;
}

.course-card__age-unit {
  font-size: 0.75rem;
}

/* ========== コース別カラーとシャドウ ========== */
.course-card--sky {
  -webkit-box-shadow: 5px 5px 0 #FFBD0B;
          box-shadow: 5px 5px 0 #FFBD0B;
  border: 1px solid #FFBD0B;
}
.course-card--sky .course-card__header {
  background-color: #FFBD0B;
}

.course-card--sky .course-card__body {
  border-left: 1px solid #FFBD0B;
}

.course-card--sky .course-card__age {
  background-color: #fff;
  color: #FFBD0B;
}

.course-card--moon {
  -webkit-box-shadow: 5px 5px 0 #07B1E8;
          box-shadow: 5px 5px 0 #07B1E8;
  border: 1px solid #07B1E8;
}
.course-card--moon .course-card__header {
  background-color: #07B1E8;
}

.course-card--moon .course-card__body {
  border-left: 1px solid #07B1E8;
}

.course-card--moon .course-card__age {
  background-color: #fff;
  color: #07B1E8;
}

.course-card--supermoon {
  -webkit-box-shadow: 5px 5px 0 #F589BF;
          box-shadow: 5px 5px 0 #F589BF;
  border: 1px solid #F589BF;
}
.course-card--supermoon .course-card__header {
  background-color: #F589BF;
}

.course-card--supermoon .course-card__body {
  border-left: 1px solid #F589BF;
}

.course-card--supermoon .course-card__age {
  background-color: #fff;
  color: #F589BF;
}

.course-card--sun {
  -webkit-box-shadow: 5px 5px 0 #FEBD0D;
          box-shadow: 5px 5px 0 #FEBD0D;
  border: 1px solid #FEBD0D;
}
.course-card--sun .course-card__header {
  background-color: #FFBD0B;
}

.course-card--sun .course-card__body {
  border-left: 1px solid #FFBD0B;
}

.course-card--sun .course-card__age {
  background-color: #fff;
  color: #FFBD0B;
}

.course-card--sunrise {
  -webkit-box-shadow: 5px 5px 0 #07B1E8;
          box-shadow: 5px 5px 0 #07B1E8;
  border: 1px solid #07B1E8;
}
.course-card--sunrise .course-card__header {
  background-color: #07B1E8;
}

.course-card--sunrise .course-card__body {
  border-left: 1px solid #07B1E8;
}

.course-card--sunrise .course-card__age {
  background-color: #fff;
  color: #07B1E8;
}

.course-card--eiken {
  -webkit-box-shadow: 5px 5px 0 #F589BF;
          box-shadow: 5px 5px 0 #F589BF;
  border: 1px solid #F589BF;
}
.course-card--eiken .course-card__header {
  background-color: #F589BF;
}

.course-card--eiken .course-card__body {
  border-left: 1px solid #F589BF;
}

.course-card--eiken .course-card__age {
  background-color: #fff;
  color: #F589BF;
}

/* topページ event-list イベント一覧
**********************************************/
.top-event-list {
  padding-block: 2.125rem;
}
@media screen and (min-width: 768px) {
  .top-event-list {
    padding-top: initial;
    padding-bottom: 4.5rem;
  }
}

.event-list__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  row-gap: 2.5rem;
  padding-inline: 0.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .event-list__items {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
    padding-inline: 0;
    margin-top: 3.4375rem;
  }
}

/* カードとカードの間につなぎ線（横線） */
@media screen and (min-width: 768px) {
  .event-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.25rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1.875rem;
    height: 2px;
    background-color: #204398;
    z-index: -1;
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .event-card:last-child::after {
    display: none;
  }
}

.event-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
  overflow: visible;
  border: 1px solid #204398;
  border-radius: 0.625rem;
  background-color: #204398;
}

.event-card__month {
  position: absolute;
  top: -2.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4.0625rem;
  height: 2.0625rem;
  background-color: #FFF040;
  font-weight: bold;
  font-size: 0.875rem;
  color: #204398;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top-left-radius: 2.0625rem;
  border-top-right-radius: 2.0625rem;
  border: 1px solid #204398;
  z-index: 1;
}

.event-card__image {
  border-bottom: 1px solid #204398;
}
.event-card__image img {
  width: 100%;
  aspect-ratio: 160/143;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0.625rem 0.625rem 0 0;
}

.event-card__footer {
  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;
  padding: 0.75rem 0.5rem;
  color: #fff;
  height: 4.375rem;
}

.event-card__title {
  font-size: 0.9375rem;
  font-weight: bold;
  color: #fff;
}

/* topページ ambassador-slider
**********************************************/
.ambassador-slider {
  padding-block: 2.125rem;
}
@media screen and (min-width: 768px) {
  .ambassador-slider {
    padding-top: 5rem;
    padding-bottom: 4.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .ambassador-slider__inner.inner {
    max-width: 45.9375rem;
  }
}

.ambassador-slider__area {
  margin-top: 1.1875rem;
}

/* 矢印ナビ */
.ambassador-slider__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 60px);
  max-width: 35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .ambassador-slider__arrows {
    width: calc(100% + 130px);
    max-width: initial;
  }
}

.splide__arrow.ambassador-slider__arrow {
  width: 1.875rem;
  height: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .splide__arrow.ambassador-slider__arrow {
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* スライダー */
.ambassador-slider__container {
  position: relative;
  margin-inline: calc(50% - 50vi);
}

/* スライダーカード */
.ambassador-slider__card {
  background-color: #F1FAFC;
  border-radius: 1.875rem;
  padding: 1.25rem 1rem;
  border: 1px solid #07B1E8;
  position: relative;
  overflow: hidden;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ambassador-slider__card {
    padding: 2.3125rem 4.5625rem;
    max-width: 45.9375rem;
  }
}

.ambassador-slider__card-bg-text {
  position: absolute;
  top: 0.625rem;
  right: 1.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  z-index: 0;
  text-align: right;
  letter-spacing: 0.19em;
}
@media screen and (min-width: 768px) {
  .ambassador-slider__card-bg-text {
    font-size: 1.5625rem;
    line-height: 1.32;
  }
}

.ambassador-slider__header {
  margin-bottom: 1.25rem;
  text-align: left;
  position: relative;
  z-index: 2;
}

.ambassador-slider__position {
  font-size: 0.75rem;
  font-weight: bold;
  color: #234ABB;
  letter-spacing: 0.19em;
}
@media screen and (min-width: 768px) {
  .ambassador-slider__position {
    line-height: 2.8333333333;
  }
}

.ambassador-slider__name {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.19em;
  line-height: 1;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .ambassador-slider__name {
    margin: initial;
    font-size: 1.75rem;
    line-height: 1.7857142857;
  }
}

.ambassador-slider__suffix {
  font-size: 1.25rem;
  margin-left: 0.3125rem;
  color: #343434;
  font-weight: bold;
  letter-spacing: 0.19em;
}

.ambassador-slider__romaji {
  font-size: 0.75rem;
  color: #343434;
  font-weight: normal;
  letter-spacing: 0.19em;
  display: inline-block;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .ambassador-slider__romaji {
    margin-left: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .ambassador-slider__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 13.125rem 0.875rem auto;
    grid-template-columns: 13.125rem auto;
    gap: 0.875rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.ambassador-slider__image {
  text-align: center;
  max-width: 13.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ambassador-slider__image {
    max-width: 13.125rem;
  }
}

.ambassador-slider__image img {
  border-radius: 0.625rem;
  aspect-ratio: 210/336;
}
.ambassador-slider__message-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  border: 1px solid #07B1E8;
  border-radius: 0.625rem;
  padding: 1rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .ambassador-slider__message-block {
    height: 100%;
    padding: 1.125rem 1.25rem;
    margin-top: initial;
  }
}

.ambassador-slider__label {
  font-size: 0.875rem;
  font-weight: bold;
  color: #07B1E8;
}

.ambassador-slider__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .ambassador-slider__text {
    line-height: 2;
  }
}

/* ボタン */
.ambassador-slider__button {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .ambassador-slider__button {
    margin-top: 2.125rem;
  }
}

/* topページ partner-list パートナー一覧
**********************************************/
/* partner-list セクション */
.partner-list {
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .partner-list {
    padding-top: 4.375rem;
    padding-bottom: 4.6875rem;
  }
}

.partner-list__items {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: auto 1rem auto 1rem auto;
  grid-template-columns: repeat(3, auto);
}
@media screen and (min-width: 768px) {
  .partner-list__items {
    gap: 1.875rem;
  }
}

.partner-list__wrap {
  border-radius: 0.625rem;
  border: 11px solid #F1FAFC;
  margin-top: 1rem;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .partner-list__wrap {
    padding: 2.75rem 6.25rem 2.375rem;
  }
}

/* 各段の個別グリッド構成 */
@media screen and (min-width: 768px) {
  .partner-list__items:nth-child(1) {
    -ms-grid-columns: (auto)[6];
    grid-template-columns: repeat(6, auto);
  }
}

@media screen and (min-width: 768px) {
  .partner-list__items:nth-child(2) {
    -ms-grid-columns: (auto)[5];
    grid-template-columns: repeat(5, auto);
  }
}

@media screen and (min-width: 768px) {
  .partner-list__items:nth-child(3) {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
  }
}

.partner-list__item {
  width: auto;
  max-width: 10.125rem;
  height: auto;
  max-height: 6.0625rem;
  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;
}

.partner-list__item img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}

/* topページ faq よくある質問
**********************************************/
.faq-list {
  padding-block: 2.5rem;
  background-color: #F1FAFC;
}
@media screen and (min-width: 768px) {
  .faq-list {
    padding-top: 4.375rem;
    padding-bottom: 4.6875rem;
  }
}

.faq__btn {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .faq__btn {
    margin-top: 3rem;
  }
}

.btn {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 11.875rem;
  padding-top: 0.875rem;
  padding-bottom: 0.8125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
  background: #07B1EA;
  border-radius: 0.3125rem;
  margin-inline: auto;
  position: relative;
  text-align: center;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.4rem;
  height: 0.4rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

/* topページ contact-block
**********************************************/
.contact-block {
  padding-block: 2.125rem;
  background-image: url("../img/contact-block-bg.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-block {
    padding-top: 4.125rem;
    padding-bottom: 4.5rem;
  }
}

.contact-block .section__title-en {
  color: #fff;
}

.contact-block .section__title-en span::before,
.contact-block .section__title-en span::after {
  background: #fff;
}

.contact-block__inner {
  position: relative;
  z-index: 1;
  max-width: 67.5rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.contact-block__lead {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.contact-block__items {
  display: -ms-grid;
  display: grid;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .contact-block__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-top: 3.125rem;
  }
}

.contact-block__item {
  padding: 1.5rem 1rem;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-block__item--mail {
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-block__item--mail {
    border-right: 1px solid #fff;
    gap: 1.75rem;
  }
}

.contact-block__item--tel .contact-block__text {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-block__item--tel .contact-block__text {
    margin-top: 1.6875rem;
  }
}

.contact-block__item--tel .contact-block__tel {
  margin-top: 0.75rem;
}

.contact-block__text,
.contact-block__btn {
  font-weight: bold;
  font-size: 1.125rem;
}

.contact-block__icon-wrap {
  max-width: 2.875rem;
  width: 100%;
  max-height: 2.8125rem;
  height: 100%;
  margin-inline: auto;
}

.contact-block__icon {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-block__btn {
  max-width: 18.75rem;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  border: 1px solid #fff;
  padding-block: 1rem;
  -webkit-transition: background-color 0.3s 0s ease;
  transition: background-color 0.3s 0s ease;
}
@media screen and (min-width: 768px) {
  .contact-block__btn {
    padding-block: 1.375rem;
  }
}

.contact-block__btn:hover {
  background-color: #fff;
  color: rgb(34, 34, 34);
  opacity: 1;
}

.contact-block__tel {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .contact-block__tel {
    font-size: 2.125rem;
  }
}

.contact-block__time {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}

/* コース一覧ページ page-courses.php
**********************************************/
.page-course {
  margin-top: 3rem;
  padding-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .page-course {
    margin-top: 3.5rem;
    padding-bottom: 6.25rem;
  }
}

.page-common__intro {
  font-size: 1.125rem;
  line-height: 1.5384615385;
  margin-top: 1.5rem;
  color: #0ab1eb;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-common__intro {
    margin-top: 1.5625rem;
    font-size: 1.625rem;
  }
}

.page-common__intro-text {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-common__intro-text {
    margin-top: 2.25rem;
    line-height: 2.375;
  }
}

.page-course__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.page-course__item {
  position: relative;
}

.page-course__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 0.625rem;
}

.page-course__label {
  display: none;
}

.page-course__image {
  position: relative;
}

.page-course__content {
  margin-top: 0.625rem;
}

.page-course__title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5833333333;
  border-bottom: 0.75px solid #222222;
  padding-bottom: 0.3125rem;
}

.page-course__text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.13em;
  margin-top: 0.625rem;
}

.page-course__btn {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 1rem;
  border: 1px solid #0ab1eb;
  border-radius: 0.3125rem;
  background-color: #0ab1eb;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  white-space: normal;
  word-break: break-word;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

.page-course__btn-text {
  display: inline-block;
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 2;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.page-course__btn-text::after {
  position: absolute;
  content: "";
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -3.5625rem;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (any-hover: hover) {
  .page-course__btn:hover {
    background-color: white;
    opacity: 1;
  }
  .page-course__btn:hover .page-course__btn-text {
    color: #0ab1eb;
  }
  .page-course__btn:hover .page-course__btn-text::after {
    border-right: 1px solid #0ab1eb;
    border-bottom: 1px solid #0ab1eb;
  }
}
@media screen and (min-width: 768px) {
  .page-course__btn {
    padding: 0.625rem 1rem;
  }
  .page-course {
    padding-bottom: 10.625rem;
  }
  .page-course__items {
    margin-top: 4.125rem;
    -ms-grid-columns: 1fr 1.9375rem 1fr 1.9375rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.9375rem;
  }
  .page-course__label {
    position: absolute;
    color: #07b1e9;
    background: #fff;
    width: 5rem;
    height: 5rem;
    border: 1px solid #07b1e9;
    border-radius: 50%;
    top: 5px;
    right: 5px;
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
    text-align: center;
    display: -ms-grid;
    display: grid;
    place-items: center;
  }
  .page-course__title {
    padding-bottom: 0.6875rem;
    font-size: 1.5rem;
  }
  .page-course__text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}
/* 店舗一覧ページ page-stores.php
**********************************************/
.page-stores {
  margin-top: 3rem;
  padding-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .page-stores {
    margin-top: 3.5rem;
    padding-bottom: 6.25rem;
  }
}

.page-course__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.page-course__item {
  position: relative;
}

.page-course__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 0.625rem;
}

.page-course__label {
  display: none;
}

.page-course__image {
  position: relative;
}

.page-course__content {
  margin-top: 0.625rem;
}

.page-course__title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5833333333;
  border-bottom: 0.75px solid #222222;
  padding-bottom: 0.3125rem;
}

.page-course__text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.13em;
  margin-top: 0.625rem;
}

.page-course__btn {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 1rem;
  border: 1px solid #0ab1eb;
  border-radius: 0.3125rem;
  background-color: #0ab1eb;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  white-space: normal;
  word-break: break-word;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

.page-course__btn-text {
  display: inline-block;
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 2;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.page-course__btn-text::after {
  position: absolute;
  content: "";
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -3.5625rem;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (any-hover: hover) {
  .page-course__btn:hover {
    background-color: white;
    opacity: 1;
  }
  .page-course__btn:hover .page-course__btn-text {
    color: #0ab1eb;
  }
  .page-course__btn:hover .page-course__btn-text::after {
    border-right: 1px solid #0ab1eb;
    border-bottom: 1px solid #0ab1eb;
  }
}
@media screen and (min-width: 768px) {
  .page-course__btn {
    padding: 0.625rem 1rem;
  }
  .page-course {
    padding-bottom: 10.625rem;
  }
  .page-course__intro {
    font-size: 1.625rem;
  }
  .page-course__items {
    margin-top: 4.125rem;
    -ms-grid-columns: 1fr 1.9375rem 1fr 1.9375rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.9375rem;
  }
  .page-course__label {
    position: absolute;
    color: #07b1e9;
    background: #fff;
    width: 5rem;
    height: 5rem;
    border: 1px solid #07b1e9;
    border-radius: 50%;
    top: 5px;
    right: 5px;
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
    text-align: center;
    display: -ms-grid;
    display: grid;
    place-items: center;
  }
  .page-course__title {
    padding-bottom: 0.6875rem;
    font-size: 1.5rem;
  }
  .page-course__text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}
/* アンバサダー紹介ページ page-ambassador.php
**********************************************/
.ambassador-hero {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  background-color: #f1fafc;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ambassador-hero {
    padding-top: 4.9375rem;
    padding-bottom: 6.0625rem;
  }
}

.ambassador-hero::before {
  content: "AMBASSADORS AMBASSADORS";
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  color: #fff;
  letter-spacing: 0.16em;
  white-space: nowrap;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .ambassador-hero::before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 7.0625rem;
    line-height: 1.4690265487;
  }
}

@media screen and (min-width: 768px) {
  .ambassador-hero__inner.inner {
    max-width: 55rem;
  }
}

.ambassador-hero__main {
  display: -ms-grid;
  display: grid;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__main {
    -ms-grid-columns: 36.875rem auto;
    grid-template-columns: 36.875rem auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.ambassador-hero__main::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: -4.5rem;
  width: 15.4375rem;
  height: 3.5rem;
  background-color: #fff;
  background: url("../img/ambassador-decoration.svg") no-repeat;
  background-size: contain;
  -webkit-transform: rotate(-15deg) scale(0.6);
          transform: rotate(-15deg) scale(0.6);
}
@media screen and (min-width: 768px) {
  .ambassador-hero__main::before {
    width: 15.4375rem;
    height: 3.5rem;
    -webkit-transform: rotate(-15deg) scale(1);
            transform: rotate(-15deg) scale(1);
  }
}

.ambassador-hero__image {
  aspect-ratio: 590/390;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__image {
    max-width: 36.875rem;
    width: 100%;
  }
}

.ambassador-hero__image img {
  border-radius: 0.9375rem;
  width: 100%;
  height: auto;
  aspect-ratio: 590/390;
}

.ambassador-hero__info {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__info {
    margin-left: -3.125rem;
  }
}

.ambassador-hero__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__heading {
    gap: 1.0625rem;
  }
}

.ambassador-hero__number {
  font-size: 2.25rem;
  color: #204397;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__number {
    font-size: 4.375rem;
    line-height: 1.4857142857;
  }
}

.ambassador-hero__name {
  font-size: 1.125rem;
  font-weight: bold;
  color: #204397;
  letter-spacing: 0.19em;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__name {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}

.ambassador-hero__romaji {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.19em;
  line-height: 1.5;
  color: #204397;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .ambassador-hero__message {
    margin-top: 0.75rem;
  }
}

.ambassador-hero__message-line {
  background-color: #32BCDD;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  padding: 0.3125rem 0.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__message-line {
    font-size: 1.75rem;
    padding: 0.75rem 0.6875rem 0.625rem;
  }
}

.ambassador-hero__message-line:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__message-line:not(:first-child) {
    margin-top: 0.75rem;
  }
}

.ambassador-hero__subtext {
  font-family: "Outfit", sans-serif;
  font-size: 0.8125rem;
  color: #23AFD0;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__subtext {
    margin-top: 0.625rem;
  }
}

.ambassador-hero__profile {
  background-color: #fff;
  border: 1px solid #07B1E8;
  border-radius: 0.625rem;
  padding: 1.5rem;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__profile {
    margin-top: 4.8125rem;
    padding: 2.9375rem 4.375rem;
    gap: 2.3125rem;
  }
}

.ambassador-hero__profile-label {
  color: #07B1EA;
  font-weight: bold;
  font-size: 1.125rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.19em;
}
@media screen and (min-width: 768px) {
  .ambassador-hero__profile-label {
    font-size: 1.375rem;
    line-height: 1.5454545455;
  }
}

.ambassador-hero__profile-text {
  font-size: 0.875rem;
  line-height: 2;
  color: #333;
}

/* インタビュー
**********************************************/
.ambassador-interview {
  padding-top: 2.125rem;
  padding-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .ambassador-interview {
    padding-top: 4.1875rem;
    padding-bottom: 4.75rem;
  }
}

@media screen and (min-width: 768px) {
  .ambassador-interview__inner.inner {
    max-width: 70.625rem;
  }
}

.ambassador-interview__items {
  position: relative;
}

.ambassador-interview__item {
  margin-top: 3.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ambassador-interview__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.9375rem;
  }
}

.ambassador-interview__item::after {
  content: "";
  position: absolute;
  font-size: 4.375rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #F1FAFD;
  font-family: "Outfit", sans-serif;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .ambassador-interview__item::after {
    font-size: 9.625rem;
  }
}

.ambassador-interview__item:nth-child(1)::after {
  content: "01";
  right: 0;
  bottom: -2.8125rem;
}
@media screen and (min-width: 768px) {
  .ambassador-interview__item:nth-child(1)::after {
    right: -4.375rem;
    bottom: -3.75rem;
  }
}

.ambassador-interview__item:nth-child(2)::after {
  content: "02";
  right: 0;
  bottom: -2.8125rem;
}
@media screen and (min-width: 768px) {
  .ambassador-interview__item:nth-child(2)::after {
    left: -6.875rem;
    bottom: -4.375rem;
    right: initial;
  }
}

.ambassador-interview__item:nth-child(3)::after {
  content: "03";
  right: 0;
  bottom: -2.8125rem;
}
@media screen and (min-width: 768px) {
  .ambassador-interview__item:nth-child(3)::after {
    right: -3.75rem;
    bottom: -4.6875rem;
  }
}

.ambassador-interview__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .ambassador-interview__image {
    max-width: 28.5rem;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.ambassador-interview__image img {
  aspect-ratio: 456/300;
  border-radius: 0.625rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.ambassador-interview__content {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .ambassador-interview__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.ambassador-interview__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.ambassador-interview__label {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.17;
  color: #0AB1EB;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .ambassador-interview__label {
    margin-top: 0;
  }
}

.ambassador-interview__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 3.4375rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .ambassador-interview__title {
    font-size: 1.4rem;
  }
}

.ambassador-interview__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .ambassador-interview__text {
    line-height: 1.875rem;
  }
}

/* アンバサダーメッセージ
**********************************************/
.ambassador-message {
  margin-top: 2.125rem;
  padding-top: 2.5rem;
  padding-bottom: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ambassador-message {
    margin-top: 4.75rem;
    padding-top: 6rem;
    padding-bottom: 5.1875rem;
  }
}

.ambassador-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vi;
  height: calc(100% + 4.75rem);
  background: url(../img/ambassador-message-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  aspect-ratio: 1440/815;
}

.ambassador-message__inner.inner {
  max-width: 49.375rem;
  text-align: center;
}

.ambassador-message__image {
  max-width: 46.25rem;
  width: 100%;
  margin-inline: auto;
}

.ambassador-message__image img {
  aspect-ratio: 740/370;
  border-radius: 0.625rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.ambassador-message__content {
  margin-top: 1.125rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .ambassador-message__content {
    margin-top: 1.3125rem;
  }
}

.ambassador-message__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/ambassador-message-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ambassador-message__title {
  font-size: 1.5rem;
  color: #07B1EA;
  font-weight: bold;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.19em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ambassador-message__title {
    font-size: 2rem;
  }
}

.ambassador-message__title::before {
  content: "";
  position: absolute;
  bottom: -0.53125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.375rem;
  height: 1px;
  background-color: #07B1E9;
}

.ambassador-message__text {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  color: #222;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: left;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .ambassador-message__text {
    margin-top: 1.875rem;
    line-height: 2.1428571429;
  }
}

/* aboutページ page-about.php
**********************************************/
.about-page__movie {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .about-page__movie {
    margin-top: 3.75rem;
  }
}

/* aboutページ bout-page__philosophy
--------------------------------------------- */
.about-page__philosophy {
  position: relative;
}

.about-page__philosophy::before {
  content: "";
  position: absolute;
  top: 17.5rem;
  right: 0;
  width: 87.9166666667%;
  height: 82%;
  background-color: #F5FDFF;
  z-index: -1;
}

.about-page__philosophy {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.about-page__philosophy-inner.inner {
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy-inner.inner {
    max-width: 67.875rem;
  }
}

.about-page__philosophy-item {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy-item {
    margin-top: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow: visible;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-item--vision,
  .about-page__philosophy-item--value {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about-page__philosophy-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.about-page__philosophy-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.875rem;
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-image--mission {
    max-width: 39.0625rem;
    margin-right: 4.25rem;
    margin-left: -13.75rem;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-image--vision {
    max-width: 24.5rem;
    margin-right: 5.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-image--value {
    max-width: 22.375rem;
    margin-right: clamp(6.25rem, -6.393rem + 26.34vw, 17.313rem);
    margin-left: clamp(-10.125rem, 14.92rem - 27.83vw, 1.563rem);
  }
}

.about-page__philosophy-content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    max-width: 57%;
  }
}

.about-page__philosophy-label {
  font-size: 0.875rem;
  color: #07B1EA;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy-label {
    margin-top: initial;
  }
}

.about-page__philosophy-title-sub {
  font-family: Outfit, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #222;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy-title-sub {
    margin-top: 0.25rem;
    font-size: 2.125rem;
    line-height: 1.7058823529;
  }
}

.about-page__philosophy-text {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.8;
  color: #222;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy-text {
    font-size: 1rem;
    line-height: 2;
    font-size: clamp(1.5rem, 1.214rem + 0.6vw, 1.75rem);
  }
}

.about-page__philosophy-value-title {
  font-family: Zen Kaku Gothic Antique, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #204397;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy-value-title {
    font-size: 1.625rem;
    line-height: 1.8461538462;
  }
}

.about-page__philosophy-value-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #222;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy-value-text {
    font-size: 1.125rem;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-item--mission {
    margin-top: 7.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-image--mission {
    margin-top: -4.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-item--vision {
    margin-top: 6.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-content--vision {
    margin-top: clamp(-10rem, -0.357rem - 10.71vw, -5.5rem);
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-content--value {
    margin-top: clamp(-11.25rem, -0.536rem - 11.9vw, -6.25rem);
  }
}

.about-page__philosophy-value-block + .about-page__philosophy-value-block {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .about-page__philosophy-value-block + .about-page__philosophy-value-block {
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-image--mission img {
    aspect-ratio: 625/453;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-image--vision img {
    aspect-ratio: 392/284;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-item--value img {
    aspect-ratio: 358/293;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-text {
    position: relative;
    padding-bottom: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .about-page__philosophy-text::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #222;
  }
}

/* aboutページ about-page__message
--------------------------------------------- */
.about-page__message {
  margin-top: 3.125rem;
  padding-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-page__message {
    margin-top: 8.75rem;
    padding-bottom: 8rem;
  }
}

@media screen and (min-width: 768px) {
  .about-page__message::after {
    content: "";
    position: absolute;
    bottom: 7%;
    right: 10%;
    width: 87%;
    max-width: 52.4375rem;
    height: 18.25rem;
    background-color: #F1FAFC;
    z-index: -1;
  }
}

.about-page__message-container {
  display: -ms-grid;
  display: grid;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .about-page__message-container {
    margin-top: 3rem;
    -ms-grid-columns: 26.25rem 3.125rem auto;
    grid-template-columns: 26.25rem auto;
    gap: 3.125rem;
  }
}

.about-page__message-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-page__message-image {
    max-width: 26.25rem;
  }
}

.about-page__message-image img {
  aspect-ratio: 420/295;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about-page__message-image img {
    aspect-ratio: 420/295;
  }
}

.about-page__message-content {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .about-page__message-content {
    margin-top: initial;
  }
}

.about-page__message-title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4666666667;
  letter-spacing: 0.09em;
  max-width: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .about-page__message-title {
    font-size: 1.375rem;
    -webkit-font-feature-settings: initial;
            font-feature-settings: initial;
  }
}

.about-page__message-text {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .about-page__message-text {
    margin-top: 1.5rem;
    text-align: initial;
    line-height: 2;
  }
}

/* aboutページ about-page__point
--------------------------------------------- */
.about-page__point {
  margin-top: 2.125rem;
  padding-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .about-page__point {
    margin-top: 6.25rem;
    padding-bottom: 3.25rem;
  }
}

.about-page__point-intro {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #0AB1EB;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .about-page__point-intro {
    margin-top: 1.875rem;
    font-size: 1.625rem;
  }
}

.about-page__point-intro-text {
  color: #222;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .about-page__point-intro-text {
    margin-top: 1.875rem;
  }
}

.about-page__point-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .about-page__point-list {
    -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.about-page__point-item {
  text-align: center;
  padding: 0.625rem;
}

.about-page__point-icon {
  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.375rem;
}
@media screen and (min-width: 768px) {
  .about-page__point-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.9375rem;
  }
}

.about-page__point-number {
  aspect-ratio: 95/91;
  max-width: 5.9375rem;
  width: 100%;
}

.about-page__point-image {
  aspect-ratio: 82/70;
  max-width: 5.125rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-page__point-title {
  font-size: 0.875rem;
  font-weight: bold;
  color: #F589BF;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .about-page__point-title {
    font-size: 1rem;
  }
}

.about-page__point-text {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .about-page__point-text {
    width: 15rem;
    margin-inline: auto;
  }
}

.about-page__point-student-image {
  max-width: 9.375rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about-page__point-student-image {
    max-width: 13rem;
    margin-inline: initial;
    margin-left: auto;
  }
}

.about-page__point-student {
  aspect-ratio: 208/308;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-page__point-list {
  position: relative;
}

@media screen and (min-width: 768px) {
  .about-page__point-list::before {
    content: "";
    position: absolute;
    top: 44%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background-color: #07B1E9;
  }
}

.about-page__point-item {
  position: relative;
}

@media screen and (min-width: 768px) {
  .about-page__point-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 15.625rem;
    background-color: #07B1E9;
  }
}

.about-page__point-item:nth-child(3n)::after {
  display: none;
}

/* aboutページ about-page__shop
--------------------------------------------- */
@media screen and (min-width: 768px) {
  .abput-page__shop {
    margin-top: 7.5rem;
  }
}

/* aboutページ about-page__about
--------------------------------------------- */
.about-page__about .top-about {
  padding-bottom: initial;
}

/* コース詳細ページ page-course-a / b / c / d / e / sky
**********************************************/
/* course-detail__head
--------------------------------------------- */
@media screen and (min-width: 768px) {
  .course-detail__head.course-head.sub-head {
    padding-bottom: 5rem;
  }
}

.course-detail__head .course-head__about {
  margin-top: initial;
}
@media screen and (min-width: 768px) {
  .course-detail__head .course-head__about {
    margin-top: initial;
  }
}

/* course-detail__what-course
--------------------------------------------- */
.what-course {
  background-color: initial;
}

.course-detail__head .course-head__container {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .course-detail__head .course-head__container {
    margin-top: 2.375rem;
  }
}

.course-detail__what-course {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .course-detail__what-course {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }
}

.course-detail__what-course::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #F1FAFC;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .course-detail__what-course::before {
    width: 65.625rem;
  }
}

.course-detail__what-course .what-course__items {
  max-width: 31.25rem;
  margin-inline: auto;
  margin-top: initial;
}
@media screen and (min-width: 768px) {
  .course-detail__what-course .what-course__items {
    max-width: initial;
  }
}

.course-detail__what-course .what-course__item {
  display: -ms-grid;
  display: grid;
  place-content: center;
  line-height: 1.5;
  padding: 1rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .course-detail__what-course .what-course__item {
    padding: 1.5rem 0.5rem;
  }
}

/* course-detail__schedule
--------------------------------------------- */
.course-detail__schedule {
  margin-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .course-detail__schedule {
    margin-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.course-detail__schedule-title {
  width: 80%;
  margin-inline: auto;
  max-width: 23rem;
}
@media screen and (min-width: 768px) {
  .course-detail__schedule-title {
    width: 23rem;
  }
}

.course-detail__schedule-image {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .course-detail__schedule-image {
    margin-top: 2.5rem;
  }
}
/*# sourceMappingURL=styles-custom.css.map */