@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}
@media (max-width: 767px) {
  html {
    font-size: min(16px, 4.2666666667vw);
  }
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
main {
  overflow: hidden;
}

/* コンテンツ幅
------------------------------*/
.inner {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
    max-width: 100%;
    padding: 0 min(16px, 4.2666666667vw);
  }
}

.u-inner-1500 {
  width: 1500px;
}
/* セクションタイトル
------------------------------*/
.c-sec-title {
  position: relative;
}

.c-sec-title__ja img {
  display: block;
  height: min(60px, 3.125vw);
  width: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-sec-title__ja img {
    height: 30px;
  }
}

.c-sec-title__en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(21.875rem, 18.2291666667vw);
  font-weight: 700;
  line-height: 1.3;
  font-family: "Truculenta", sans-serif;
  color: rgba(45, 157, 211, 0.08);
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .c-sec-title__en {
    font-size: min(100px, 26.6666666667vw);
  }
}

.c-sec-title__en--wh {
  color: rgba(255, 255, 255, 0.08);
}

.c-sec-title__en--lg {
  font-size: min(25rem, 30vw);
}

/* リンク
------------------------------*/
.c-link {
  font-size: min(1.25rem, 1.5vw);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #002874;
  position: relative;
}
.c-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(100%, -50%);
  background: url(../img/icon_link.webp) no-repeat center center/contain;
  width: 0.9em;
  aspect-ratio: 37/37;
}
@media (max-width: 767px) {
  .c-link {
    font-size: 0.875rem;
  }
}

/* テキスト装飾
------------------------------*/
.u-bold {
  font-weight: 700;
}

/*------------------------------
header
------------------------------*/
header {
  padding-top: min(2%, 40px);
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 10;
  width: 100%;
}
@media (max-width: 767px) {
  header {
    padding-top: 4%;
  }
}

.header__inner {
  width: 100%;
  max-width: 100%;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 4%;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .header__content {
    justify-content: flex-start;
  }
}

.header__logo {
  width: min(580px, 30.2083333333vw);
}
@media (max-width: 767px) {
  .header__logo {
    width: min(580px, 77.3333333333vw);
  }
}

.header__buttons {
  display: flex;
  align-items: center;
  margin-top: 0;
}
@media (max-width: 767px) {
  .header__buttons {
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    justify-content: center;
    transition: all 0.3s;
  }
  .header__buttons.act {
    opacity: 0;
    pointer-events: none;
  }
}

.header__button a {
  display: inline-block;
  background: #1F9679;
  border-radius: 50px;
  border: 3px solid #fff;
  font-size: min(1.4375rem, 1.1979166667vw);
  font-weight: 500;
  color: #fff;
  padding: 1.3em 2.7em;
}
.header__button:nth-child(2) {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .header__button a {
    font-size: min(12px, 3.2vw);
    padding: 1.3em 1em;
    border-width: 1px;
  }
}

/*------------------------------
fv
------------------------------*/
.fv {
  aspect-ratio: 1920/1086;
  background: url(../img/fv_bg.webp) no-repeat center center/100%;
  position: relative;
  margin-bottom: min(8%, 155px);
}
.fv::before {
  content: "";
  position: absolute;
  background: url(../img/fv.webp) no-repeat center center/100%;
  aspect-ratio: 3754/1970;
  transform: translate(0%, 1%);
  width: 98%;
  right: 0;
  bottom: 0%;
}
@media (max-width: 767px) {
  .fv {
    aspect-ratio: 750/1389;
    background-size: cover;
  }
  .fv::before {
    background: url(../img/fv_sp.webp) no-repeat center center/100%;
    aspect-ratio: 1500/2524;
    width: 100%;
  }
}

/*------------------------------
cta
------------------------------*/
.cta__block {
  background: #1F9679;
  padding: 5.8333333333% 8.3333333333%;
  border-radius: 30px;
  position: relative;
}
.cta__block::before {
  content: "";
  position: absolute;
  background: url(../img/cta1.svg) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 466/437;
  width: 40%;
  left: 50%;
  top: 42%;
}
.cta__block > * {
  position: relative;
  z-index: 10;
}

.cta__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .cta__wrapper {
    display: block;
  }
}

.cta__circle {
  width: 25%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #39B400;
  border-radius: 50%;
  font-size: min(1.75rem, 2.1vw);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
.cta__circle strong {
  display: block;
  font-size: min(2.5rem, 3vw);
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .cta__circle {
    width: 50%;
    max-width: 160px;
    margin: 0 auto;
    font-size: 1rem;
  }
  .cta__circle strong {
    font-size: 1.25rem;
  }
}

.cta__circle--sm {
  display: block;
  font-size: min(1.25rem, 1.5vw);
}
@media (max-width: 767px) {
  .cta__circle--sm {
    font-size: 0.875rem;
  }
}

.cta__content {
  width: 70%;
}
@media (max-width: 767px) {
  .cta__content {
    width: 100%;
    margin-top: 5%;
  }
}

.cta__heading {
  font-size: min(2.8125rem, 3.375vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 767px) {
  .cta__heading {
    font-size: 1.25rem;
  }
}

.cta__message {
  font-size: min(1.25rem, 1.5vw);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 1.5em;
}
@media (max-width: 767px) {
  .cta__message {
    font-size: 0.875rem;
  }
}

.cta__buttons {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  .cta__buttons {
    display: block;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta__button {
  width: 48%;
}
.cta__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #2D9DD3;
  border-radius: 61px;
  border: 3px solid #fff;
  font-size: min(1.5625rem, 1.875vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  padding: 0.9em 0;
  padding-left: 2em;
}
@media (max-width: 767px) {
  .cta__button {
    width: 100%;
  }
  .cta__button:nth-child(2) {
    margin-top: 5%;
  }
  .cta__button a {
    font-size: 1rem;
  }
}

.cta__button1 {
  position: relative;
}
.cta__button1::after {
  content: "";
  position: absolute;
  background: url(../img/icon1.svg) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 64/53;
  width: 13%;
  left: 17%;
  top: 50%;
}
@media (max-width: 767px) {
  .cta__button1::after {
    max-width: 40px;
  }
}

.cta__button2 {
  position: relative;
}
.cta__button2::after {
  content: "";
  position: absolute;
  background: url(../img/icon2.svg) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 64/57;
  width: 13%;
  left: 17%;
  top: 50%;
}
@media (max-width: 767px) {
  .cta__button2::after {
    max-width: 40px;
  }
}

.cta__access {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 6%;
  font-size: min(1.5rem, 1.8vw);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
  padding-left: 5.7em;
}
.cta__access::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/img_train.webp) no-repeat center center/contain;
  width: 4em;
  aspect-ratio: 193/122;
}
@media (max-width: 767px) {
  .cta__access {
    font-size: 0.75rem;
  }
}

/*------------------------------
concept
------------------------------*/
.concept {
  padding: min(15%, 220px) 0 19.4%;
  position: relative;
}
.concept::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/concpet_img.webp) no-repeat center center/contain;
  width: min(790px, 41.1458333333vw);
  aspect-ratio: 1578/1832;
  z-index: 10;
}
@media (max-width: 767px) {
  .concept {
    padding-bottom: 300px;
  }
  .concept::before {
    bottom: 0%;
    transform: translateY(0%);
    max-width: 225px;
    width: 60%;
  }
}

@media (min-width: 768px) {
  .concept__inner {
    width: 1490px;
    max-width: 77.6041666667%;
  }
}

.concept__content {
  margin-left: auto;
  width: 64%;
  position: relative;
}
.concept__content::after {
  content: "";
  position: absolute;
  background: url(../img/dec1.webp) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 823/878;
  width: 43%;
  left: -18%;
  top: 22%;
}
.concept__content::before {
  content: "";
  position: absolute;
  background: url(../img/dec2.webp) no-repeat center center/100%;
  transform: translate(-50%, 50%);
  aspect-ratio: 410/368;
  width: 21%;
  left: 88%;
  bottom: -25%;
}
@media screen and (max-width: 999px) {
  .concept__content::before {
    bottom: -10%;
  }
}
@media (max-width: 767px) {
  .concept__content {
    width: 100%;
  }
  .concept__content::after {
    width: 24%;
    left: 8%;
    top: 4%;
  }
  .concept__content::before {
    width: 31%;
    left: 89%;
    bottom: -25%;
  }
}

.concept__heading {
  width: 96.5%;
}

.concept__description {
  margin-top: 3.7em;
  font-size: clamp(12px, 1.0416666667vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.concept__description strong {
  font-size: min(1.5rem, 1.25vw);
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(71, 236, 0, 0.2) 60%);
  padding: 0 0.1em;
}
@media (max-width: 767px) {
  .concept__description {
    font-size: 0.8125rem;
  }
  .concept__description strong {
    font-size: 1.0625rem;
  }
}

/*------------------------------
movie
------------------------------*/
.movie {
  position: relative;
  background: #2D9DD3;
  padding-bottom: min(3%, 60px);
}
.movie::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
  background: url(../img/movie_bg-top.webp) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 3761/548;
  z-index: 100;
}
.movie::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  transform: translateY(100%);
  background: url(../img/movie_bg-bottom.webp) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 1920/377;
}
@media (max-width: 767px) {
  .movie {
    padding: 40px 0;
  }
}

.movie__title {
  position: relative;
  padding-top: 8%;
}

.movie__title-en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  font-size: min(25rem, 30vw);
  font-weight: 700;
  line-height: 1.3;
  font-family: "Truculenta", sans-serif;
  color: rgba(241, 241, 241, 0.15);
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .movie__title-en {
    font-size: min(112px, 29.8666666667vw);
  }
}

.movie__content {
  margin-top: 8%;
}
.movie__content iframe {
  width: 100%;
  aspect-ratio: 560/315;
  height: auto;
}

/*------------------------------
features
------------------------------*/
.features {
  padding: min(80px, 4.1666666667vw) 0 min(10%, 192px);
  margin-top: 19%;
}

.features__title {
  width: min(578px, 38.5333333333vw);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .features__title {
    width: 80%;
    max-width: 400px;
  }
}

.features__container {
  margin-top: 6.6666666667%;
}

.features__section:nth-child(2) {
  margin-top: 10%;
}

.features__section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(3.4375rem, 3.3013205282vw);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}
.features__section-title span {
  display: inline-block;
  background: linear-gradient(transparent 60%, rgba(45, 157, 211, 0.2) 60%);
}
@media (max-width: 767px) {
  .features__section-title {
    font-size: 1.25rem;
  }
}

.features__items {
  margin-top: 4%;
}
@media (max-width: 767px) {
  .features__items {
    margin-top: 10%;
  }
}

.features__item {
  box-shadow: 0 0 25px #8ECCEA;
  border-radius: 30px;
  padding: 6.6666666667%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.features__item:nth-child(n+2) {
  margin-top: 5.3333333333%;
}
@media (max-width: 767px) {
  .features__item {
    display: block;
  }
}

.features__number {
  position: absolute;
  top: 2.6666666667%;
  left: 3.3333333333%;
  font-size: min(12.5rem, 12.0048019208vw);
  font-family: "Edu QLD Beginner", cursive;
  font-weight: 400;
  color: rgba(45, 157, 211, 0.15);
}
@media (max-width: 767px) {
  .features__number {
    font-size: 6.25rem;
    top: 0;
  }
}

.features__content {
  width: 40%;
}
@media (max-width: 767px) {
  .features__content {
    width: 100%;
  }
}

.features__heading {
  font-size: min(2.1875rem, 2.1008403361vw);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .features__heading {
    font-size: 1.25rem;
    transform: translateY(0.5lh);
  }
}

.features__list {
  margin-top: 3em;
  font-size: clamp(12px, 0.9603841537vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.features__list li:nth-child(2) {
  margin-top: 20px;
}
.features__list li span {
  display: block;
  font-size: clamp(13.5px, 1.35vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .features__list {
    font-size: 0.875rem;
    margin-top: 2em;
  }
  .features__list li span {
    font-size: 1rem;
  }
}

.features__text {
  margin-top: 20px;
  font-size: clamp(12px, 0.9603841537vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .features__text {
    font-size: 0.875rem;
  }
}

.features__description {
  font-size: clamp(12px, 0.9603841537vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-top: 2.5em;
}
.features__link {
  margin-top: 8%;
}

.features__image {
  width: 55.3846153846%;
}
@media (max-width: 767px) {
  .features__image {
    width: 100%;
    margin-top: 5%;
  }
}

/*------------------------------
gallery
------------------------------*/
.gallery {
  padding: min(80px, 4.1666666667vw) 0 min(18%, 345px);
  margin-top: min(13%, 250px);
}

@media (min-width: 768px) {
  .gallery__inner {
    width: 1430px;
    max-width: 89.375%;
    padding: 0 6%;
  }
}
@media (max-width: 767px) {
  .gallery__inner {
    padding: 0 min(10%, 40px);
    padding: 0 10%;
  }
}

.gallery__header {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .gallery__header {
    display: block;
  }
}

.gallery__title-ja {
  display: block;
  width: min(390px, 29.25vw);
}
@media (max-width: 767px) {
  .gallery__title-ja {
    width: min(200px, 53.3333333333vw);
  }
}

.gallery__title-en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -60%);
  font-size: min(21.875rem, 18.2291666667vw);
  font-weight: 700;
  line-height: 1.3;
  font-family: "Truculenta", sans-serif;
  color: rgba(45, 157, 211, 0.08);
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .gallery__title-en {
    transform: translate(-40%, -80%);
  }
}

.gallery__lead {
  font-size: min(1.25rem, 1.5vw);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .gallery__lead {
    margin-left: 2.3em;
  }
}
@media (max-width: 767px) {
  .gallery__lead {
    font-size: 0.75rem;
    margin-top: 5%;
  }
}

.gallery__link {
  margin-top: 3.75%;
}

.gallery__items {
  margin-top: 7%;
  position: relative;
}
.gallery__items .swiper-button-next, .gallery__items .swiper-button-prev {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  height: auto;
  width: auto;
  content: "";
  position: absolute;
  background: url(../img/icon_arrow.webp) no-repeat center center/100%;
  aspect-ratio: 1/1;
  width: 6.7%;
  top: 41%;
}
.gallery__items .swiper-button-next::after, .gallery__items .swiper-button-prev::after {
  display: none;
}
.gallery__items .swiper-button-next {
  transform: translate(-50%, -50%) scale(-1, 1);
  left: 105.8%;
}
.gallery__items .swiper-button-prev {
  transform: translate(-50%, -50%);
  left: -5.8%;
}
@media (max-width: 767px) {
  .gallery__items .swiper-button-next, .gallery__items .swiper-button-prev {
    width: 9%;
  }
}

.gallerySwiper {
  position: relative;
  overflow: hidden;
}
.gallerySwiper .swiper-slide {
  position: relative;
}
.gallerySwiper .swiper-slide span {
  position: absolute;
  bottom: 2.0833333333%;
  right: 2.0833333333%;
  font-size: min(1.25rem, 1.5vw);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding: 0.5em 2em;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 1.35em;
  color: #fff;
}
.gallerySwiper .swiper-slide img {
  aspect-ratio: 1200/690;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .gallerySwiper .swiper-slide span {
    font-size: min(12px, 3.2vw);
  }
}

.gallerySwiper .swiper-slide img,
.slider-thumbnail .swiper-slide img {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .gallerySwiper .swiper-slide img,
.slider-thumbnail .swiper-slide img {
    border-radius: 5px;
  }
}

.slider-thumbnail {
  margin-top: 2%;
  overflow: hidden;
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.5 !important;
}
@media (min-width: 768px) {
  .slider-thumbnail .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
  .slider-thumbnail .swiper-slide:not(:nth-child(6n)) {
    margin-right: 1.5833333333%;
  }
  .slider-thumbnail .swiper-slide img {
    aspect-ratio: 225/129;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slider-thumbnail .swiper-slide {
    width: 15.3472222222% !important; /* 3列にするための計算 */
  }
}
/*------------------------------
message
------------------------------*/
.message {
  padding-bottom: min(26%, 500px);
  position: relative;
}
.message::before {
  content: "";
  position: absolute;
  background: url(../img/dec3.webp) no-repeat center center/100%;
  aspect-ratio: 838/916;
  transform: translate(0%, -50%);
  width: 22%;
  right: 0;
  top: 12%;
}
.message::after {
  content: "";
  position: absolute;
  background: url(../img/dec4.webp) no-repeat center center/100%;
  aspect-ratio: 838/916;
  transform: translate(0%, -50%);
  width: 22%;
  left: 0;
  top: 84%;
}
@media (max-width: 767px) {
  .message::before {
    top: 8%;
  }
  .message::after {
    top: 94%;
  }
}

@media (min-width: 768px) {
  .message__title {
    transform: translateX(-13%);
  }
}

.message__wrapper {
  margin-top: 20.3%;
  position: relative;
}

@media (min-width: 768px) {
  .message__image {
    position: absolute;
    transform: translateY(-50%);
    top: 38%;
    left: -4.866667%;
    width: 48.5%;
  }
}
@media (max-width: 767px) {
  .message__image {
    position: unset;
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (min-width: 768px) {
  .message__content {
    width: 42.75%;
    margin-left: 46.5%;
  }
}
@media (max-width: 767px) {
  .message__content {
    width: 100%;
    margin-top: 5%;
  }
}

.message__name {
  font-size: min(2.5rem, 3vw);
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}
@media (max-width: 767px) {
  .message__name {
    font-size: 1.25rem;
  }
}

.message__text {
  font-size: min(1.25rem, 1.5vw);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-top: 2em;
}
@media (max-width: 767px) {
  .message__text {
    font-size: 0.875rem;
  }
}

/*------------------------------
faq
------------------------------*/
.faq {
  background: #2D9DD3;
  padding-bottom: min(4%, 78px);
  position: relative;
  padding-top: min(1.6%, 30px);
}
.faq::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
  background: url(../img/faq_bg.webp) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 3840/459;
}
.faq::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  transform: translateY(100%) rotate(180deg);
  background: url(../img/faq_bg.webp) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 3840/459;
}
@media (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
}

.faq__list {
  margin-top: 8%;
}

.faq__item {
  background: #fff;
  border-radius: 30px;
  padding: 4.75% 3.75%;
}
.faq__item:nth-child(n+2) {
  margin-top: 3%;
}
@media (max-width: 767px) {
  .faq__item {
    border-radius: 15px;
  }
}

.faq__q {
  font-size: min(1.25rem, 1.5vw);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-left: min(48px, 2.5vw);
}
.faq__q::before {
  display: inline-block;
  content: "Q";
  position: absolute;
  top: -20%;
  left: 0;
  font-size: min(3.125rem, 3.75vw);
  line-height: 1;
  font-weight: 700;
  font-family: "Truculenta", sans-serif;
  color: #2D9DD3;
}
@media (max-width: 767px) {
  .faq__q {
    font-size: 0.875rem;
    padding-left: 25px;
  }
  .faq__q::before {
    font-size: 2.1875rem;
    top: -10%;
  }
}

.faq__a {
  font-size: min(1.125rem, 1.35vw);
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  padding-left: min(48px, 2.5vw);
  margin-top: 2em;
}
.faq__a::before {
  display: inline-block;
  content: "A";
  position: absolute;
  top: -5%;
  left: 0;
  font-size: min(3.125rem, 3.75vw);
  line-height: 1;
  font-weight: 700;
  font-family: "Truculenta", sans-serif;
  color: #1F9679;
}
@media (max-width: 767px) {
  .faq__a {
    font-size: 0.875rem;
    padding-left: 25px;
  }
  .faq__a::before {
    font-size: 2.1875rem;
    top: 0;
  }
}

/*------------------------------
access
------------------------------*/
.access {
  padding-top: min(26%, 500px);
  margin-bottom: min(8%, 154px);
}

.access__description {
  margin-top: 7%;
  font-size: min(1.25rem, 1.5vw);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 767px) {
  .access__description {
    font-size: 0.75rem;
  }
}

.access__route-map {
  margin-top: 6.6666666667%;
}

.access__route {
  margin-top: 6.6666666667%;
  display: flex;
  flex-wrap: wrap;
}

.access__route-item {
  width: 23.4375%;
}
.access__route-item:first-child .access__route-label {
  background: #F85D1C;
}
.access__route-item:nth-child(2) .access__route-label {
  background: #E63082;
}
.access__route-item:nth-child(3) .access__route-label {
  background: #009944;
}
.access__route-item:nth-child(4) .access__route-label {
  background: #9E1B32;
}
.access__route-item:nth-child(5) .access__route-label {
  background: #E63082;
}
.access__route-item:nth-child(6) .access__route-label {
  background: #D50032;
}
.access__route-item:nth-child(7) .access__route-label {
  background: #0066B3;
}
@media (min-width: 768px) {
  .access__route-item:not(:nth-child(4n)) {
    margin-right: 2.0833333333%;
  }
  .access__route-item:nth-child(n+5) {
    margin-top: 4.1666666667%;
  }
}
@media (max-width: 767px) {
  .access__route-item {
    width: 47.5%;
  }
  .access__route-item:nth-child(2n) {
    margin-left: 5%;
  }
  .access__route-item:nth-child(n+3) {
    margin-top: 5%;
  }
}

.access__route-label {
  font-size: min(1.25rem, 1.5vw);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  border-radius: 28px;
  padding: 0.75em 0;
}
@media (max-width: 767px) {
  .access__route-label {
    font-size: 0.875rem;
  }
}

.access__route-list {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 0% auto;
}
.access__route-list dt, .access__route-list dd {
  font-size: min(1rem, 1.2vw);
  font-weight: 700;
  line-height: 1.3;
  padding: 1em;
  border-bottom: 1px solid #D8D8D8;
}
.access__route-list dt {
  width: 60%;
}
.access__route-list dd {
  width: 40%;
  text-align: right;
}
@media (max-width: 999px) {
  .access__route-list dt, .access__route-list dd {
    font-size: 0.625rem;
  }
}
@media (max-width: 767px) {
  .access__route-list dt, .access__route-list dd {
    font-size: 0.75rem;
    padding: 0.5em;
  }
}

/*------------------------------
banner
------------------------------*/
.banner {
  padding: min(100px, 5.2083333333vw) 0;
}

.banner__images {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .banner__images {
    display: block;
  }
}

.banner__image {
  width: 48%;
}
@media (max-width: 767px) {
  .banner__image {
    width: 100%;
  }
  .banner__image:nth-child(2) {
    margin-top: 5%;
  }
}

/*------------------------------
footer
------------------------------*/
.footer__content {
  background: #F1F1F1;
  padding: min(70px, 3.6458333333vw) 0;
}

.footer__logo {
  width: 27.0833333333%;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 50%;
  }
}

.footer__info {
  margin-top: 3.3333333333%;
  font-size: min(1rem, 1.2vw);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media (max-width: 999px) {
  .footer__info {
    font-size: 0.625rem;
  }
}

.footer__bottom {
  padding: 10px 0;
}

.footer__copyright {
  font-size: min(1rem, 1.2vw);
  font-family: "Truculenta", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 0.625rem;
  }
}
/*# sourceMappingURL=style.css.map */