* {
  box-sizing: border-box;
}

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

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 2.14286;
  color: #000000;
  background-color: #E5F3FE;
}
@media screen and (max-width: 640px) {
  body {
    font-size: 3.2vw;
  }
}

ul, ol, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.is-hidden-ld {
  display: block !important;
}
@media screen and (max-width: 1024px) {
  .is-hidden-ld {
    display: none !important;
  }
}

.is-visible-ld {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .is-visible-ld {
    display: block !important;
  }
}

.is-visible-sd {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .is-visible-sd {
    display: block !important;
  }
}

.is-hidden-sd {
  display: block !important;
}
@media screen and (max-width: 640px) {
  .is-hidden-sd {
    display: none !important;
  }
}

/*******************************************
common
*******************************************/
.contents-wrapper {
  max-width: 1110px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 640px) {
  .section {
    padding: 20vw 0;
  }
}

.section__head {
  position: relative;
  margin: 0 0 95px;
  font-family: "Gentium Book Plus", "Noto Sans JP", serif;
  color: #0064B9;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .section__head {
    margin: 0 0 12.2666666667vw;
    font-size: 9.6vw;
    letter-spacing: 3.6px;
  }
}
.section__head .ja {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  letter-spacing: normal;
}
@media screen and (max-width: 640px) {
  .section__head .ja {
    top: -15px;
    font-size: 3.2vw;
  }
}
.section__head .icon {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .section__head .icon {
    bottom: -20px;
  }
  .section__head .icon img {
    width: 11px;
  }
}

.section__head2 {
  margin-top: 50px;
  font-size: 40px;
  color: #0064B9;
  font-weight: 400;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .section__head2 {
    margin-top: 6.6666666667vw;
    font-size: 5.3333333333vw;
  }
}

.section__lead {
  max-width: 1110px;
  margin: 50px auto 0;
  font-size: 18px;
  line-height: 2.2222;
}
@media screen and (max-width: 1024px) {
  .section__lead {
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .section__lead {
    margin: 6.6666666667vw auto 0;
    font-size: 3.2vw;
  }
}

/*******************************************
load
*******************************************/
.load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #E5F3FE;
  display: flex;
  justify-content: center;
  align-items: center;
}
.load .load-img {
  text-align: center;
}
.load .load-img img {
  width: 500px;
  height: auto;
}
@media screen and (max-width: 640px) {
  .load .load-img img {
    width: 200px;
    height: auto;
  }
}

/*******************************************
nav
*******************************************/
.header {
  position: relative;
}

.header-fix {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .header-fix {
    padding: 16px 20px;
    grid-template-columns: 1fr;
  }
}

.nav__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .nav__list {
    order: 0;
    width: 100%;
    position: fixed;
    top: 10vh;
    z-index: 100000;
    display: grid;
    align-items: center;
    justify-content: center;
    gap: px2rem(10, xxsd) 0;
    padding-right: 0;
  }
}
.nav__list li {
  margin: 0 30px;
  font-size: 14px;
  padding: 12px 0;
  color: #0064B9;
  font-weight: 700;
}
@media screen and (max-width: 1500px) {
  .nav__list li {
    margin: 0 15px;
  }
}
@media screen and (max-width: 1024px) {
  .nav__list li {
    display: block;
    text-align: center;
    margin-left: 0;
    font-size: px2rem(18, xxsd);
  }
}
.nav__list li a {
  color: #0064B9;
  text-decoration: none;
  transition: 0.2s;
}
.nav__list li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1024px) {
  .nav {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    inset: 0;
    transition: 0.3s ease;
  }
  .nav.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.nav__logo {
  padding-left: 100px;
}
@media screen and (max-width: 1500px) {
  .nav__logo {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .nav__logo {
    position: relative;
    padding-left: 0;
  }
  .nav__logo img {
    width: 26.4vw;
  }
}

@media screen and (max-width: 1024px) {
  .overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    inset: 0;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
  }
  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 1024px) {
  .button--nav {
    position: absolute;
    z-index: 10001;
    min-height: 0;
    top: 16px;
    right: 16px;
    height: 24px;
    width: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .button--nav.is-active .button--nav-bar {
    height: 0;
  }
  .button--nav.is-active .button--nav-bar::before {
    opacity: 1;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    transition: 0.3s ease;
  }
  .button--nav.is-active .button--nav-bar::after {
    opacity: 1;
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
    transition: 0.3s ease;
  }
}

@media screen and (max-width: 1024px) {
  .button--nav-bar {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background: #0064B9;
  }
  .button--nav-bar::before, .button--nav-bar::after {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #0064B9;
    transition: 0.3s ease;
  }
  .button--nav-bar::before {
    top: 0;
  }
  .button--nav-bar::after {
    bottom: 0;
  }
}

/*******************************************
mv
*******************************************/
#top {
  position: relative;
}

.mv-pht__wrapper {
  position: relative;
  width: 100%;
  height: 750px;
}
@media screen and (max-width: 1500px) {
  .mv-pht__wrapper {
    height: 97dvh;
  }
}
@media screen and (max-width: 640px) {
  .mv-pht__wrapper {
    height: 515px;
  }
}

.mv-pht {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mv__head__wrapper {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 640px) {
  .mv__head__wrapper {
    bottom: -10px;
  }
}

.mv__head {
  text-align: center;
}
.mv__head img {
  width: 873px;
}

#top-intro {
  margin-top: 150px;
}
@media screen and (max-width: 640px) {
  #top-intro {
    margin-top: 0;
  }
}

.mv__slider__wrapper {
  margin: 100px auto;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .mv__slider__wrapper {
    margin: 50px auto;
  }
}
.mv__slider__wrapper .swiper {
  width: 1110px;
}
@media screen and (max-width: 1500px) {
  .mv__slider__wrapper .swiper {
    width: 90%;
  }
}
.mv__slider__wrapper .swiper-controller {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  margin-top: 15px;
}
@media screen and (max-width: 640px) {
  .mv__slider__wrapper .swiper-controller {
    gap: 0 6.6666666667vw;
  }
}
.mv__slider__wrapper .swiper_pause {
  width: 25px;
  height: 25px;
  background: url(../img/icon_pause.svg) no-repeat center;
  background-size: contain;
}
.mv__slider__wrapper .swiper_pause:hover {
  opacity: 0.6;
  cursor: pointer;
}
.mv__slider__wrapper .swiper_pause.paused {
  background: url(../img/icon_play.svg) no-repeat center;
  background-size: contain;
}
.mv__slider__wrapper .swiper-pagination {
  position: relative;
  bottom: auto;
  width: auto;
}
.mv__slider__wrapper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .mv__slider__wrapper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 18px;
}
@media screen and (max-width: 640px) {
  .mv__slider__wrapper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .mv__slider__wrapper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3.4666666667vw;
  }
}
.mv__slider__wrapper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid #0064B9;
  opacity: 1;
}
.mv__slider__wrapper .swiper-pagination-bullet-active {
  background: #0064B9;
  border: 1px solid #0064B9;
}
.mv__slider__wrapper .swiper-button-prev, .mv__slider__wrapper .swiper-button-next {
  position: relative;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .mv__slider__wrapper .swiper-button-prev img, .mv__slider__wrapper .swiper-button-next img {
    height: 6.6666666667vw;
    width: auto;
  }
}
.mv__slider__wrapper .swiper-button-prev::after, .mv__slider__wrapper .swiper-button-next::after {
  content: "";
}
.mv__slider__wrapper .swiper-slide {
  text-align: center;
}
.mv__slider__wrapper .swiper-slide img {
  width: 80%;
}
@media screen and (max-width: 640px) {
  .mv__slider__wrapper .swiper-slide img {
    width: 70%;
  }
}

/*******************************************
news
*******************************************/
.news__list {
  display: flex;
  font-size: 20px;
  padding: 16px;
  margin: 0;
  border-bottom: 1px solid #0064B9;
  transition: 0.3s;
}
@media screen and (max-width: 640px) {
  .news__list {
    display: block;
    font-size: 3.7333333333vw;
    padding: 2.6666666667vw;
  }
}
.news__list.is-hidden {
  opacity: 0;
  display: none;
}
.news__list dt {
  font-weight: 700;
}
.news__list dd a {
  color: #0064B9;
}
.news__list dd a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: url(../img/icon_blank.svg) no-repeat;
  background-size: contain;
}
.news__list dd a:hover {
  opacity: 0.6;
}

.news__list--date {
  color: #0064B9;
  margin-right: 50px;
}

.news__more-button {
  width: 100%;
  padding: 20px;
  font-size: 20px;
  background: transparent;
  border: none;
  text-align: right;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .news__more-button {
    padding: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.news__more-button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_plus.svg) no-repeat center;
  background-size: contain;
  margin-left: 10px;
}
.news__more-button.is-active::after {
  background: url(../img/icon_minus.svg) no-repeat center;
  background-size: contain;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
/*******************************************
route
*******************************************/
.route-map {
  position: relative;
  width: 1033px;
  margin: 50px auto 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .route-map {
    width: 100%;
  }
}

.route-map__btn {
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .route-map__btn {
    width: 100%;
  }
}
.route-map__btn:hover {
  opacity: 0.8;
}

.route-map__btn-1 {
  left: 475px;
  top: 259px;
}
@media screen and (max-width: 1024px) {
  .route-map__btn-1 {
    left: 45.9825750242%;
    top: 50%;
    width: 14.7144240077%;
  }
}

.route-map__btn-2 {
  left: 404px;
  top: 296px;
}
@media screen and (max-width: 1024px) {
  .route-map__btn-2 {
    left: 39.1093901258%;
    top: 57.1428571429%;
    width: 9.6805421104%;
  }
}

.route-map__btn-3 {
  left: 584px;
  top: 397px;
}
@media screen and (max-width: 1024px) {
  .route-map__btn-3 {
    left: 56.5343659245%;
    top: 76.6409266409%;
    width: 8.7124878993%;
  }
}

.route-map__btn-4 {
  left: 850px;
  top: 341px;
}
@media screen and (max-width: 1024px) {
  .route-map__btn-4 {
    left: 82.284607938%;
    top: 65.8301158301%;
    width: 9.6805421104%;
  }
}

.route-map-sp {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .route-map-sp {
    margin-top: 6.6666666667vw;
  }
}

.route-map__btn-zoom {
  text-align: center;
  margin-top: 6.6666666667vw;
}

.route-flow {
  max-width: 1238px;
  margin: 50px auto 0;
}
@media screen and (max-width: 1024px) {
  .route-flow {
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .route-flow {
    overflow-x: scroll;
  }
}

.route-flow__inner {
  display: flex;
  gap: 0 48px;
}
@media screen and (max-width: 640px) {
  .route-flow__inner {
    gap: 0 8vw;
    width: 800px;
  }
}

.route-flow__item {
  position: relative;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  text-align: center;
  background: #0064B9;
  border-radius: 10px;
}
@media screen and (max-width: 640px) {
  .route-flow__item {
    font-size: 3.2vw;
    letter-spacing: 1.2px;
  }
}
.route-flow__item::after {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #0064B9;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 640px) {
  .route-flow__item::after {
    right: -6.1333333333vw;
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.route-flow__item:last-of-type::after {
  display: none;
}
.route-flow__item.txt {
  padding: 10px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 640px) {
  .route-flow__item.txt {
    padding: 2.1333333333vw;
  }
}
.route-flow__item.pic {
  box-shadow: 10px 10px 0px 0px #003C78;
}
@media screen and (max-width: 640px) {
  .route-flow__item.pic {
    box-shadow: 1.3333333333vw 1.3333333333vw 0px 0px #003C78;
  }
}
.route-flow__item a {
  display: block;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  text-decoration: none;
}
.route-flow__item a:hover {
  opacity: 0.6;
}
.route-flow__item a .pic img {
  border-radius: 10px 10px 0 0;
}
.route-flow__item a .txt {
  padding: 20px 0;
}
.route-flow__item a .txt span {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .route-flow__item a .txt span {
    font-size: 2.1333333333vw;
  }
}

.modaal-container {
  background: transparent;
}

.modaal-content-container {
  padding: 0;
}

.modal__inner {
  display: flex;
  justify-content: space-between;
  color: #FFFFFF;
  background: #0064B9;
  padding: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 640px) {
  .modal__inner {
    display: block;
    padding: 6.6666666667vw;
    border-radius: 0;
  }
}

.modal__pic {
  flex: 0 1 46%;
}

.modal__detail {
  flex: 0 1 46%;
}

.modal__head {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}
@media screen and (max-width: 640px) {
  .modal__head {
    font-size: 6.4vw;
    letter-spacing: 2.4px;
  }
}
.modal__head span {
  font-size: 18px;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 640px) {
  .modal__head span {
    font-size: 4.2666666667vw;
    letter-spacing: 1.6px;
  }
}

.modal__txt {
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .modal__txt {
    font-size: 3.2vw;
  }
}

@media screen and (max-width: 640px) {
  .modal__img-map {
    width: 1033px;
  }
}

.route__accordion {
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  .route__accordion {
    margin-top: 8vw;
  }
}

.accordion-header {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: normal;
  background: #FFFFFF;
  border-radius: 10px;
}
@media screen and (max-width: 640px) {
  .accordion-header {
    font-size: 3.7333333333vw;
  }
}
.accordion-header .sub {
  font-family: "Gentium Book Plus", "Noto Sans JP", serif;
  color: #0064B9;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-right: 50px;
  margin-left: 45px;
}
@media screen and (max-width: 640px) {
  .accordion-header .sub {
    margin-right: 4.2666666667vw;
    margin-left: 4.2666666667vw;
  }
}
.accordion-header .sub .num {
  font-size: 40px;
  font-weight: normal;
  margin-left: 10px;
  line-height: 0;
}
@media screen and (max-width: 640px) {
  .accordion-header .sub .num {
    font-size: 6.4vw;
    margin-left: 2.1333333333vw;
  }
}
.accordion-header button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 0;
  text-align: left;
  color: #000;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .accordion-header button {
    padding: 2.6666666667vw 0;
    font-size: 3.7333333333vw;
  }
}
.accordion-header button:hover {
  opacity: 0.6;
}
.accordion-header button::after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_plus.svg) no-repeat center;
  background-size: contain;
}
.accordion-header button.is-open::after {
  background: url(../img/icon_minus.svg) no-repeat center;
  background-size: contain;
}

.accordion-panel {
  display: grid;
  transition: 0.5s;
  grid-template-rows: 0fr;
  margin-top: -10px;
  margin-bottom: 10px;
  border-radius: 0 0 10px 10px;
  background: #FFFFFF;
}
.accordion-panel.is-open {
  grid-template-rows: 1fr;
}

.accordion-inner {
  overflow: hidden;
}

.accordion-contents {
  display: flex;
  justify-content: space-between;
  padding: 20px 45px 55px;
}
@media screen and (max-width: 640px) {
  .accordion-contents {
    display: block;
    padding: 2.6666666667vw 5.3333333333vw 3.7333333333vw;
  }
}

.accordion-inner__pic {
  flex: 0 1 48%;
}

.accordion-inner__detail {
  flex: 0 1 48%;
}

/*******************************************
option
*******************************************/
.option__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .option__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
    margin-top: 6.6666666667vw;
  }
}
.option__list li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background: #FFFFFF;
  row-gap: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 640px) {
  .option__list li {
    row-gap: 2.6666666667vw;
    padding-bottom: 2.6666666667vw;
  }
}

.option__list__pht img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.option__list__detail, .option__list__info {
  padding: 0 20px;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .option__list__detail, .option__list__info {
    padding: 0 2.6666666667vw;
  }
}

.option__list__title {
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .option__list__title {
    font-size: 3.7333333333vw;
  }
}

.option__list__lead {
  margin-top: 20px;
}

/*******************************************
course
*******************************************/
.course-tab__list {
  display: flex;
  justify-content: space-around;
  max-width: 1110px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .course-tab__list {
    position: sticky;
    top: 0;
    z-index: 1000;
    max-width: 100%;
    justify-content: space-between;
  }
  .course-tab__list.is-active {
    z-index: 1002;
    background: rgba(255, 255, 255, 0.7);
  }
}

.course-tab__btn {
  width: 300px;
  text-align: center;
  padding: 18px;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  border: none;
  background: #0064B9;
  border-radius: 10px 10px 0px 0px;
}
@media screen and (max-width: 1200px) {
  .course-tab__btn {
    width: 27.2727272727%;
  }
}
@media screen and (max-width: 640px) {
  .course-tab__btn {
    width: 32%;
    padding: 5.3333333333vw 2.6666666667vw;
    font-size: 3.2vw;
  }
}
.course-tab__btn[aria-selected=true] {
  color: #0064B9;
  background: #FFFFFF;
}
.course-tab__btn[aria-selected=false]:hover {
  opacity: 0.6;
  cursor: pointer;
}

.course-tabpanel {
  padding: 50px 0;
  background: #FFFFFF;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .course-tabpanel {
    padding: 6.6666666667vw 0;
  }
}

.course-tabpanel__lead, .course-tabpanel__abst {
  font-size: 22px;
  line-height: 2.2222;
}
@media screen and (max-width: 640px) {
  .course-tabpanel__lead, .course-tabpanel__abst {
    font-size: 3.2vw;
    letter-spacing: normal;
  }
}

.course-tabpanel__lead {
  color: #0064B9;
}

.course-tabpanel__abst {
  max-width: 1110px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .course-tabpanel__abst {
    max-width: 100%;
  }
}

.course-tabpanel__head {
  position: relative;
  text-align: center;
  color: #0064B9;
  font-family: "Gentium Book Plus", "Noto Sans JP", serif;
  font-size: 40px;
  letter-spacing: 4px;
}
@media screen and (max-width: 640px) {
  .course-tabpanel__head {
    font-size: 5.3333333333vw;
    letter-spacing: 2px;
  }
}
.course-tabpanel__head::before {
  margin-right: 15px;
  content: "";
  display: inline-block;
  width: 21px;
  height: 25px;
  background: url(../img/icon_bus.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .course-tabpanel__head::before {
    margin-right: 2.6666666667vw;
    width: 3.2vw;
    height: 4vw;
  }
}

.course-tabpanel__item {
  position: relative;
  display: grid;
  grid-template-columns: 35% 1fr;
  background: #E5F3FE;
  border-radius: 10px;
  margin-bottom: 70px;
}
@media screen and (max-width: 640px) {
  .course-tabpanel__item {
    display: block;
    margin-bottom: 11.7333333333vw;
  }
}
.course-tabpanel__item::after {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #0064B9;
}
@media screen and (max-width: 640px) {
  .course-tabpanel__item::after {
    bottom: -8vw;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.course-tabpanel__item:last-of-type {
  margin-bottom: 0;
}
.course-tabpanel__item:last-of-type::after {
  display: none;
}

.course-tabpanel__item__pic {
  position: relative;
}
.course-tabpanel__item__pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 640px) {
  .course-tabpanel__item__pic img {
    height: auto;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
  }
}

.course-tabpanel__item__detail {
  position: relative;
  padding: 50px;
}
@media screen and (max-width: 640px) {
  .course-tabpanel__item__detail {
    padding: 5.3333333333vw;
  }
}

.course-tabpanel__item__time {
  position: absolute;
  left: 0;
  bottom: 20px;
  font-size: 32px;
  padding: 0 10px;
  font-family: "Gentium Book Plus", "Noto Sans JP", serif;
  letter-spacing: 3.2px;
  line-height: normal;
  color: #0064B9;
  background: #FFFFFF;
}
@media screen and (max-width: 640px) {
  .course-tabpanel__item__time {
    left: 0;
    bottom: 4.2666666667vw;
    font-size: 4.8vw;
    letter-spacing: 1.8px;
  }
}

.course-tabpanel__item__head {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #0064B9;
}
@media screen and (max-width: 640px) {
  .course-tabpanel__item__head {
    margin-top: 0;
    text-align: center;
    font-size: 3.7333333333vw;
    letter-spacing: 1.4px;
  }
}

.course-tabpanel__item__txt {
  font-size: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .course-tabpanel__item__txt {
    margin-top: 5.3333333333vw;
    font-size: 3.2vw;
  }
}

/*******************************************
bg-fixed
*******************************************/
.bg-fixed__img {
  height: 430px;
  position: relative;
  clip-path: inset(0);
}
@media screen and (max-width: 640px) {
  .bg-fixed__img {
    height: 174px;
  }
}
.bg-fixed__img img {
  object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*******************************************
overview
*******************************************/
.overview__list__wrapper:nth-of-type(2n-1) {
  background: #FFFFFF;
}

.overview__list {
  max-width: 1110px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 25% 74%;
  gap: 1%;
  justify-content: center;
  padding: 50px 0;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .overview__list {
    max-width: 100%;
    padding: 50px 20px;
  }
}
@media screen and (max-width: 640px) {
  .overview__list {
    display: block;
    padding: 6.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.overview__list dt {
  text-align: right;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .overview__list dt {
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  .overview__list dd {
    margin: 10px 0 0 0;
  }
}

.overview__list__txt {
  margin-bottom: 15px;
}
@media screen and (max-width: 640px) {
  .overview__list__txt {
    margin-bottom: 1.3333333333vw;
  }
}

.overview__list__note {
  font-size: 14px;
  line-height: 2.14286;
}
@media screen and (max-width: 640px) {
  .overview__list__note {
    font-size: 3.2vw;
  }
}

.overview__list__img img {
  max-width: 567px;
}
@media screen and (max-width: 1024px) {
  .overview__list__img img {
    max-width: 100%;
  }
}

/*******************************************
link
*******************************************/
.link__list {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .link__list {
    width: 100%;
  }
}
.link__list li {
  padding: 20px 10%;
  border-bottom: 1px solid #0064B9;
}
@media screen and (max-width: 640px) {
  .link__list li {
    padding: 2.6666666667vw;
  }
}
.link__list li a {
  position: relative;
  display: block;
  font-size: 20px;
  color: #000000;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .link__list li a {
    font-size: 3.2vw;
  }
}
.link__list li a::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  transform: translate(10px, 30%);
  background: url(../img/icon_blank.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .link__list li a::after {
    width: 20px;
    height: 20px;
  }
}
.link__list li a:hover {
  opacity: 0.6;
}

.cv {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  .cv {
    bottom: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
.cv.is-active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}

.cv__btn img {
  max-height: 60px;
}

.banner__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .banner__list {
    gap: 8vw;
  }
}
.banner__list li {
  flex: 0 1 30%;
}
@media screen and (max-width: 640px) {
  .banner__list li {
    flex: 0 1 100%;
  }
}
.banner__list li a:hover {
  opacity: 0.6;
}

/*******************************************
footer
*******************************************/
.footer {
  position: relative;
  padding: 40px 0 35px;
  background: #0064B9;
}
@media screen and (max-width: 640px) {
  .footer {
    padding: 5.3333333333vw 0 10.6666666667vw;
    background: #0064B9;
  }
}

.footer__nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 640px) {
  .footer__nav {
    flex-wrap: wrap;
    gap: 6.6666666667vw 0;
  }
}
@media screen and (max-width: 640px) {
  .footer__nav li {
    flex: 0 1 100%;
    text-align: center;
  }
}
.footer__nav li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .footer__nav li a {
    font-size: 3.2vw;
  }
}
.footer__nav li a:hover {
  opacity: 0.6;
}

.footer-company {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  text-align: center;
  color: #FFFFFF;
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .footer-company {
    margin-top: 8vw;
    font-size: 3.2vw;
  }
}

.footer__link {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .footer__link {
    flex-wrap: wrap;
    gap: 2.6666666667vw 0;
    font-size: 3.2vw;
  }
}
.footer__link li {
  padding: 0 20px;
  border-right: 1px solid #FFFFFF;
}
@media screen and (max-width: 640px) {
  .footer__link li {
    padding: 0 2.6666666667vw;
  }
  .footer__link li:nth-child(3) {
    border-right: none;
  }
}
.footer__link li:last-child {
  border: none;
}
.footer__link a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer__link a:hover {
  opacity: 0.6;
}

.footer-copyright {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
  color: #FFFFFF;
}
@media screen and (max-width: 640px) {
  .footer-copyright {
    margin-top: 2.6666666667vw;
    font-size: 2.6666666667vw;
  }
}

.fadein, .slidein-left, .slidein-right {
  opacity: 0;
}

.fadein.is-animated {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.slidein-right.is-animated {
  animation: slideInRight 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.slidein-left.is-animated {
  animation: slideInLeft 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */