@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alexandria&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");

@media screen and (min-width: 768px), print {
	.s-interview__controls {
		display: none;
	}
}

main.second {
	padding-top: 0 !important;
}

html.is-hidden {
  overflow: hidden;
}

.js-inview {
  opacity: 0;
  transform: translateY(min(5vw, 20px));
  transition: 1s transform, 1s opacity;
}
.js-inview.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .c-hover-opacity {
    transition: 0.3s opacity;
    cursor: pointer;
  }
  .c-hover-opacity:hover {
    opacity: 0.7;
  }
}
.c-inner {
  max-width: 1040px;
  width: 100%;
}

.c-ttl {
  text-align: center;
}
.c-ttl__header {
  position: relative;
  text-align: center;
}
.c-ttl__en {
  font-size: 170px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 0.7;
  color: #3D9AEB;
  opacity: 0.1;
}
@media screen and (max-width: 767px), print {
  .c-ttl__en {
    font-size: min(16.25vw, 65px);
  }
}
.c-ttl__ttl {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 767px), print {
  .c-ttl__ttl {
    position: static;
    transform: none;
    text-align: center;
    font-size: min(7.5vw, 30px);
    margin-top: min(-6.25vw, -25px);
  }
}

.c-sub-ttl {
  text-align: center;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #3D9AEB;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px), print {
  .c-sub-ttl {
    font-size: min(5vw, 20px);
  }
}
.c-sub-ttl h4 {
  position: relative;
  background: #fff;
  z-index: 1;
  padding: 0 40px;
}
@media screen and (max-width: 767px), print {
  .c-sub-ttl h4 {
    padding: 0 min(11vw, 44px);
  }
}
.c-sub-ttl h4::before, .c-sub-ttl h4::after {
  content: "";
  height: 2px;
  background: #3D9AEB;
  position: absolute;
  width: 24px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px), print {
  .c-sub-ttl h4::before, .c-sub-ttl h4::after {
    width: min(6vw, 24px);
  }
}
.c-sub-ttl h4::before {
  right: auto;
  left: 0;
}

.c-anchor {
  display: block;
}
@media screen and (max-width: 767px), print {
  .c-anchor {
    padding-top: 40px;
    margin-top: -40px;
  }
}

main {
  background: #EAF6FF;
  font-family: "Noto Sans JP", sans-serif;
  color: #2B3134;
}
@media screen and (min-width: 768px), print {
  main .sp {
    display: none;
  }
}
@media screen and (max-width: 767px), print {
  main .pc {
    display: none;
  }
}

.l-header {
  position: fixed;
  top: 94px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 30px;
  z-index: 19;
  height: 80px;
  transition: 0.3s height, 0.3s top, 0.3s background;
}
.is-scroll .l-header {
  top: 62px;
  height: 60px;
  background: #EAF6FF;
}

@media screen and (max-width: 767px), print {
  .l-header {
    top: 66px !important;
    height: min(12.5vw, 50px) !important;
    padding-left: min(3.75vw, 15px);
  }
  .is-drawer .l-header {
    background: #EAF6FF;
  }
}
.l-header__logo {
  width: 414px;
}
@media screen and (max-width: 767px), print {
  .l-header__logo {
    width: min(65vw, 260px);
    display: flex;
    align-items: center;
  }
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1180px), print {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.l-header__nav-link {
  font-size: 15px;
  font-weight: bold;
  color: #2B3134;
}
.l-header__entry {
  height: 80px;
  background: #299BFF;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  padding-inline: 15px;
  gap: 16px;
  transition: 0.3s height;
  cursor: pointer;
}
.l-header__entry:hover + .is-hover {
  opacity: 1;
  pointer-events: auto;
}
.is-scroll .l-header__entry {
  height: 60px;
}

.l-header__entry-open {
  position: relative;
  width: 24px;
  height: 24px;
  background: #fff;
  flex-shrink: 0;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}
.l-header__entry-open::after, .l-header__entry-open::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #3D9AEB;
  height: 2px;
  width: 12px;
  transition: 0.3s transform;
}
.l-header__entry-open::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.is-h-open .l-header__entry-open::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.l-header__entry-btn {
  position: relative;
}
.l-header__entry-btn-fixed {
  padding-top: 7px;
  position: absolute;
  display: grid;
  gap: 7px;
  transform: translateY(100%);
  bottom: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.l-header__entry-btn-fixed:hover {
  opacity: 1;
  pointer-events: auto;
}
.l-header__entry-btn-fixed-btn {
  height: 37px;
  display: grid;
  grid-template-columns: auto 10px;
  align-items: center;
  background: #43B7F6;
  padding-left: 10px;
  padding-right: 14px;
  font-size: 15px;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none !important;
}
.l-header__menu {
  position: absolute;
  right: 0;
  top: 0;
  width: min(17.5vw, 70px);
  height: min(12.5vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #299BFF;
  color: #fff;
  font-size: min(3.75vw, 15px);
  font-weight: bold;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 1179px), print {
  .l-header__menu {
    display: none;
  }
}
@media screen and (max-width: 1178px) and (min-width: 768px), print {
  .l-header__menu {
    height: min(20vw, 80px);
  }
  .is-scroll .l-header__menu {
    height: 60px;
  }
}

.drawer {
  width: 100%;
  height: calc(100vh - min(29vw, 116px));
  background: #43B7F6;
  position: fixed;
  top: calc(min(12.5vw, 50px) + 66px);
  left: 0;
  z-index: 100;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity;
}
.is-drawer .drawer {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 1178px) and (min-width: 768px), print {
  .drawer {
    top: 174px;
    height: calc(100vh - 80px - 94px);
  }
  .is-scroll .drawer {
    top: 122px;
    height: calc(100vh - 122px);
  }
}
.drawer__nav {
  background: #EAF6FF;
}
.drawer__nav-item:nth-of-type(n + 2) {
  border-top: 1px solid #3D9AEB;
}
.drawer__nav-link {
  height: min(16.5vw, 66px);
  display: grid;
  grid-template-columns: auto min(2.75vw, 11px);
  align-items: center;
  padding-inline: min(10vw, 40px);
  font-size: min(3.75vw, 15px);
  color: #2B3134;
  font-weight: 500;
}
.drawer__entry-link {
  display: grid;
  grid-template-columns: auto min(9.25vw, 37px);
  align-items: center;
  text-decoration: none;
  padding: 0 min(10vw, 40px);
  height: min(25vw, 100px);
}
.drawer__entry-link:nth-of-type(n + 2) {
  border-top: 1px solid #fff;
}
.drawer__entry-link:nth-of-type(1) {
  background: linear-gradient(292deg, #43B7F6 47.57%, #71CDFF 117.74%);
  border-right: 1px solid #FFF;
}
.drawer__entry-link:nth-of-type(2) {
  background: linear-gradient(292deg, #43B7F6 47.57%, #71CDFF 117.74%);
  border-right: 1px solid #FFF;
}
.drawer__entry-link:nth-of-type(3) {
  background: linear-gradient(292deg, #299BFF 47.57%, #4FADFF 117.74%), #299BFF;
}
.drawer__entry-content h4 {
  font-size: min(6.5vw, 26px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.08em;
}
.drawer__entry-content h4 span {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #fff;
}
.drawer__entry-content p {
  font-size: min(3.75vw, 15px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.08em;
}
.drawer__info {
  background: #EAF6FF;
  padding: min(7.5vw, 30px) min(5vw, 20px);
}
.drawer__info-title {
  display: inline-flex;
  font-size: min(3.5vw, 14px);
  font-weight: 500;
  background: #fff;
  padding: min(0.5vw, 2px) min(1.25vw, 5px);
}
.drawer__info-address {
  margin-top: min(2vw, 8px);
  font-size: min(3.5vw, 14px);
  font-weight: 500;
}
.drawer__info-map {
  margin-top: min(1.25vw, 5px);
  display: inline-grid;
  align-items: center;
  grid-template-columns: min(3vw, 12px) auto;
  font-size: min(3.5vw, 14px);
  gap: min(0.75vw, 3px);
  color: #3D9AEB;
  text-decoration: underline !important;
  text-underline-offset: min(0.75vw, 3px);
}
.drawer__info-contact {
  margin-top: min(4vw, 16px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.drawer__info-contact-text {
  font-size: min(3.75vw, 15px);
  font-weight: 500;
}
.drawer__info-contact-link {
  display: inline-grid;
  grid-template-columns: auto min(7.25vw, 29px);
  gap: min(2.5vw, 10px);
  align-items: center;
  color: #3D9AEB;
  font-size: min(3.75vw, 15px);
  font-weight: bold;
}
.drawer__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding-top: min(3vw, 12px);
  padding-bottom: min(25vw, 100px);
}
.drawer__footer-link {
  display: inline-grid;
  align-items: center;
  grid-template-columns: auto min(3vw, 12px);
  font-size: min(3.5vw, 14px);
  color: #2B3134;
  gap: min(2.5vw, 10px);
}

.s-mv {
  position: relative;
  height: 575px;
  width: 100%;
  opacity: 0;
}
@media screen and (max-width: 767px), print {
  .s-mv {
    height: min(100vw, 400px);
  }
}
.s-mv__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  position: absolute;
  left: 62px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}
@media screen and (max-width: 767px), print {
  .s-mv__title {
    font-size: min(6.5vw, 26px);
    left: min(5vw, 20px);
    top: auto;
    bottom: min(5vw, 20px);
    transform: none;
  }
}
.s-mv__title h1 {
  background: linear-gradient(92deg, #3D9AEB -70.14%, #2B3134 95.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s-mv__title h1 b {
  display: inline-block;
}
.s-mv__title span {
  position: absolute;
  left: 0;
  top: 0;
  text-shadow: 0 0 4px #FFF, 0 0 4px #FFF;
  z-index: -1;
}
.s-mv__title span b {
  display: inline-block;
}
.s-mv__slider {
  position: absolute;
  width: 1020px;
  height: 606px;
  bottom: -100px;
  right: 0;
  width: calc(100% - 390px);
  z-index: 3;
}
@media screen and (max-width: 767px), print {
  .s-mv__slider {
    top: min(8.75vw, 35px);
    width: calc(100% - min(13.75vw, 55px));
    height: min(117.5vw, 470px);
  }
}
.s-mv__slider img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  -o-object-position: top;
     object-position: top;
}
.s-mv__slider-num {
  display: inline-flex;
  position: absolute;
  left: 60px !important;
  bottom: 38px !important;
  gap: 15px;
  opacity: 0;
}
@media screen and (max-width: 767px), print {
  .s-mv__slider-num {
    left: min(5vw, 20px) !important;
    bottom: auto !important;
    top: 0 !important;
    height: min(125vw, 500px);
    gap: min(2.5vw, 10px);
    z-index: 2;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.s-mv__slider-num .swiper-pagination-bullet {
  position: relative;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  outline: none;
  line-height: 1.5;
  opacity: 0.5;
  transition: 0.3s;
}
@media (hover: hover) {
  .s-mv__slider-num .swiper-pagination-bullet:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 767px), print {
  .s-mv__slider-num .swiper-pagination-bullet {
    white-space: nowrap;
    width: min(3.75vw, 15px) !important;
    font-size: min(3.25vw, 13px);
    color: #fff;
  }
}
.s-mv__slider-num .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3D9AEB;
  opacity: 0;
  transform: 0.3s opacity;
}
@media screen and (max-width: 767px), print {
  .s-mv__slider-num .swiper-pagination-bullet::before {
    background: #fff;
    height: 1px;
  }
}
.s-mv__slider-num .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.s-mv__slider-num .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}
.s-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
}

.s-message {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: linear-gradient(307deg, #3D9AEB 70.89%, #ECF5FD 141.25%);
  height: 840px;
  opacity: 0;
}
@media screen and (max-width: 767px), print {
  .s-message {
    position: relative;
    grid-template-columns: 1fr;
    background: linear-gradient(344deg, #3D9AEB 61.4%, #ECF5FD 175.76%);
    padding: min(42.5vw, 170px) min(5vw, 20px) 0;
    height: auto;
  }
  .s-message::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: min(15vw, 60px);
    background: #EAF6FF;
  }
}
.s-message__inner {
  display: grid;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
@media screen and (max-width: 767px), print {
  .s-message__inner {
    padding-top: 0;
    display: block;
  }
}
.s-message__label {
  font-size: 20px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px), print {
  .s-message__label {
    font-size: min(4.5vw, 18px);
  }
}
.s-message__label::before {
  content: "";
  height: 2px;
  width: 60px;
  background: #fff;
}
@media screen and (max-width: 767px), print {
  .s-message__label::before {
    width: min(15vw, 60px);
  }
}
.s-message__title {
  font-size: 36px;
  margin-top: 40px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px), print {
  .s-message__title {
    font-size: min(7.5vw, 30px);
    margin-top: min(5vw, 20px);
  }
}
.s-message__text {
  margin-top: 40px;
  display: grid;
  gap: 22px;
}
@media screen and (max-width: 767px), print {
  .s-message__text {
    margin-top: min(10vw, 40px);
    gap: 20px;
    margin-right: -20px;
  }
}
.s-message__text * {
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 767px), print {
  .s-message__text * {
    font-size: min(3.75vw, 15px);
  }
}
.s-message__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 767px), print {
  .s-message__images {
    grid-template-columns: 1fr;
    margin: 0 -20px;
    margin-top: min(15vw, 60px);
  }
}
.s-message__slider-container {
  overflow: hidden;
  height: 840px;
  position: relative;
}
@media screen and (max-width: 767px), print {
  .s-message__slider-container {
    height: auto;
  }
}
.s-message__swiper {
  height: 100%;
  width: 100%;
  transform: none !important;
}
.s-message__swiper .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear;
  will-change: transform;
}
.s-message__swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-message__swiper .s-message__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media screen and (min-width: 768px), print {
  .s-message__swiper .swiper-slide {
    margin-bottom: 16px;
  }
  .s-message__swiper .swiper-slide:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px), print {
  .s-message__swiper .swiper-slide {
    margin-right: 12px;
  }
  .s-message__swiper .swiper-slide:last-child {
    margin-right: 0;
  }
  .s-message__swiper .s-message__image {
    width: min(50vw, 200px);
    height: auto;
    flex-shrink: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}
.s-message__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

/* 縦方向のスライドアニメーション */
@keyframes slideDown {
  0% {
    transform: translateY(-50%); /* 半分上に移動 */
  }
  100% {
    transform: translateY(0%); /* 元の位置に戻る */
  }
}
/* 縦方向のスライドアニメーション */
@keyframes slideDownReverse {
  0% {
    transform: translateY(-50%); /* 半分上に移動 */
  }
  100% {
    transform: translateY(0%); /* 元の位置に戻る */
  }
}
.s-numbers {
  padding: 90px 0 97px;
  width: 82%;
  max-width: 1400px;
  margin-inline: auto;
}
@media screen and (max-width: 767px), print {
  .s-numbers {
    padding: min(12.5vw, 50px) min(5vw, 20px) min(15vw, 60px);
    width: 100%;
  }
}
.s-numbers .js-numbers {
  position: relative;
}
.s-numbers .js-numbers .originally {
  opacity: 0;
}
.s-numbers .js-numbers .add {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 0;
}
.s-numbers__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 17px;
}
@media screen and (max-width: 1325px), print {
  .s-numbers__items {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
    gap: 8px;
  }
}
.s-numbers__item {
  height: 264px;
  background: #fff;
  padding-block: 44px;
  position: relative;
  box-shadow: 0 2px 6px 0 rgba(27, 94, 152, 0.2);
}
@media screen and (max-width: 1325px), print {
  .s-numbers__item {
    height: auto;
    padding: min(7.5vw, 30px) 0 min(4vw, 16px);
  }
  .s-numbers__item:nth-of-type(1) {
    order: 1;
  }
  .s-numbers__item:nth-of-type(2) {
    order: 2;
  }
  .s-numbers__item:nth-of-type(3) {
    order: 3;
  }
  .s-numbers__item:nth-of-type(4) {
    order: 4;
  }
  .s-numbers__item:nth-of-type(5) {
    order: 5;
  }
  .s-numbers__item:nth-of-type(6) {
    order: 6;
  }
  .s-numbers__item:nth-of-type(7) {
    order: 7;
  }
  .s-numbers__item:nth-of-type(8) {
    order: 8;
  }
  .s-numbers__item:nth-of-type(9) {
    order: 9;
  }
  .s-numbers__item:nth-of-type(10) {
    order: 10;
  }
  .s-numbers__item:nth-of-type(11) {
    order: 11;
  }
}
@media screen and (min-width: 768px), print {
  .s-numbers__item--height {
    height: 300px;
  }
}
@media screen and (min-width: 768px), print {
  .s-numbers__item--benefits {
    padding-top: 65px;
  }
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--benefits {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 1325px), print {
  .s-numbers__item--benefits {
    order: 8 !important;
  }
}
.s-numbers__item--benefits .in-txt {
  line-height: 1.5;
  margin-top: 5px;
  font-size: 16px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--benefits .in-txt {
    font-size: min(2.25vw, 9px);
  }
}
.s-numbers__item--benefits .in-content {
  margin-top: 15px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--benefits .in-content {
    margin-top: 0;
  }
}
.s-numbers__item--enrollment {
  grid-column: span 2/span 2;
}
@media screen and (max-width: 1325px), print {
  .s-numbers__item--enrollment {
    order: 7 !important;
    height: 290px;
  }
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment {
    height: min(37.5vw, 150px);
  }
}
.s-numbers__item--enrollment .in-map {
  display: grid;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: calc(100% - 100px);
  height: 100%;
  left: 64px;
  top: 33px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment .in-map {
    top: min(6.75vw, 27px);
  }
}
.s-numbers__item--enrollment .in-txt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 600px;
  height: 100%;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment .in-txt {
    width: min(155vw, 620px);
  }
}
.s-numbers__item--enrollment .in-img {
  width: 246px;
  position: absolute;
  top: 10px;
  left: 80px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment .in-img {
    width: min(27.5vw, 110px);
    top: 0;
    left: min(49.25vw, 197px);
  }
}
.s-numbers__item--enrollment p {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment p {
    font-size: min(3vw, 12px);
  }
}
.s-numbers__item--enrollment p b {
  font-size: 40px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #3D9AEB;
  display: inline-block;
  margin-inline: 5px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment p b {
    font-size: min(5.5vw, 22px);
    margin-inline: min(0.25vw, 1px);
  }
}
.s-numbers__item--enrollment p.in-kinki {
  position: absolute;
  left: -25px;
  top: 60px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment p.in-kinki {
    left: min(33.75vw, 135px);
    top: min(6.5vw, 26px);
  }
}
.s-numbers__item--enrollment p.in-kyushu {
  position: absolute;
  left: -25px;
  top: 115px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment p.in-kyushu {
    left: min(33.5vw, 134px);
    top: min(13.75vw, 55px);
  }
}
.s-numbers__item--enrollment p.in-tyubu {
  position: absolute;
  left: 195px;
  top: 177px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment p.in-tyubu {
    left: min(61.5vw, 246px);
    top: min(19vw, 76px);
  }
}
.s-numbers__item--enrollment p.in-kanto {
  position: absolute;
  left: 334px;
  top: 132px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment p.in-kanto {
    left: min(76.75vw, 307px);
    top: min(13.25vw, 53px);
  }
}
.s-numbers__item--enrollment p.in-honsha {
  position: absolute;
  left: 334px;
  top: 86px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment p.in-honsha {
    left: min(77vw, 308px);
    top: min(7.75vw, 31px);
  }
}
.s-numbers__item--enrollment p.in-tohoku {
  position: absolute;
  left: 334px;
  top: 28px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment p.in-tohoku {
    left: min(77.5vw, 310px);
    top: min(1.5vw, 6px);
  }
}
.s-numbers__item--enrollment p.in-hokkaido {
  position: absolute;
  left: 334px;
  top: -24px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment p.in-hokkaido {
    left: min(77.25vw, 309px);
    top: min(-4.25vw, -17px);
  }
}
.s-numbers__item--enrollment p.in-overseas {
  background: #F4F4F4;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--enrollment p.in-overseas {
    padding: min(1.75vw, 7px) min(1.25vw, 5px);
    right: min(-5vw, -20px);
    top: min(-2.75vw, -11px);
  }
}
@media screen and (max-width: 1325px) and (min-width: 768px), print {
  .s-numbers__item--age {
    height: 300px;
  }
}
.s-numbers__item--age .in-icon {
  transform: translateY(10px);
}
.s-numbers__item--support .in-link {
  color: #3D9AEB;
  text-decoration: underline;
}
.s-numbers__item--support .in-icons {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 120px);
  justify-content: center;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--support .in-icons {
    grid-template-columns: repeat(2, min(17.5vw, 70px));
    padding-top: min(2.5vw, 10px);
  }
}
.s-numbers__item--support .in-icons img {
  width: 100%;
}
.s-numbers__item--support .in-content {
  margin-top: 30px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--support .in-content {
    margin-top: min(5vw, 20px);
  }
}
.s-numbers__item--training .in-img {
  transform: translateY(20px);
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--training .in-content {
    margin-top: min(7.5vw, 30px);
  }
}
.s-numbers__item--training .in-txt {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item--training .in-txt {
    font-size: min(2.25vw, 9px);
  }
}
.s-numbers__item-title {
  position: absolute;
  left: 25px;
  top: 20px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item-title {
    font-size: min(3.75vw, 15px);
    top: min(2vw, 8px);
    left: min(3.25vw, 13px);
    gap: min(1.25vw, 5px);
    text-align: left;
  }
  .s-numbers__item-title--leave {
    font-size: min(3.5vw, 14px);
    letter-spacing: 0;
  }
  .s-numbers__item-title--support {
    font-size: min(3.5vw, 14px);
    letter-spacing: 0;
  }
}
.s-numbers__item-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #3D9AEB;
  border-radius: 9999px;
}
.s-numbers__item-icon {
  width: 100px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item-icon {
    width: min(12.5vw, 50px);
  }
}
.s-numbers__item-content {
  margin-top: 40px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item-content {
    margin-top: min(4.5vw, 18px);
  }
}
.s-numbers__item-number {
  font-size: 70px;
  font-family: "Outfit", sans-serif;
  line-height: 0.4;
  font-weight: 600;
  color: #3D9AEB;
  display: inline-block;
  margin: 0 5px;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item-number {
    margin: 0 min(0.75vw, 3px);
    font-size: min(8vw, 32px);
  }
}
.s-numbers__item-unit {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px), print {
  .s-numbers__item-unit {
    font-size: min(3.5vw, 14px);
  }
}
.s-numbers__date {
  text-align: right;
  margin-top: min(3.75vw, 15px);
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px), print {
  .s-numbers__date {
    font-size: min(3.5vw, 14px);
  }
}

.bg-gradation-skyblue {
  background: linear-gradient(311deg, #3D9AEB 52.83%, #7CBAF1 96.63%);
}

@media screen and (min-width: 768px), print {
  #business {
    padding-top: 50px;
    margin-top: -50px;
  }
}

.s-business__content {
  padding-top: 40px;
}
@media screen and (max-width: 767px), print {
  .s-business__content {
    margin-top: 15px;
    padding-top: 30px;
  }
}
.s-business__content-text {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px), print {
  .s-business__content-text {
    font-size: min(6vw, 24px);
  }
}
.s-business__white {
  background: #fff;
  width: 88%;
  max-width: 1400px;
  margin-inline: auto;
  margin-top: 30px;
  padding: 50px 80px;
}
@media screen and (max-width: 767px), print {
  .s-business__white {
    width: 100%;
    width: calc(100% - 20px);
    padding: 30px 0;
  }
}
.s-business__section-ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-business__section-ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #3D9AEB;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.s-business__section-ttl h3 {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 25px;
}
@media screen and (max-width: 767px), print {
  .s-business__section-ttl {
    width: min(250vw, 1000px);
  }
}
@media screen and (max-width: 767px), print {
  .s-business__section-img {
    overflow: auto;
    padding: 0 min(5vw, 20px) min(7.5vw, 30px);
  }
  .s-business__section-img img {
    width: min(250vw, 1000px);
    max-width: none;
  }
}
.s-business-box {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 1325px), print {
  .s-business-box {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px), print {
  .s-business-box {
    grid-template-columns: 1fr;
    padding: 0 min(5vw, 20px);
    margin-top: min(7.5vw, 30px);
    gap: min(7.5vw, 30px);
  }
}
.s-business-box__image {
  position: relative;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px), print {
  .s-business-box__image {
    margin-bottom: min(2.5vw, 10px);
  }
}
.s-business-box__heading {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding-left: min(2.5vw, 10px);
  padding-top: min(1.25vw, 5px);
  padding-right: min(5.5vw, 22px);
}
.s-business-box__title {
  font-size: min(4.5vw, 18px);
  letter-spacing: 0.05em;
  font-weight: bold;
}
.s-business-box__subtitle {
  font-size: min(3vw, 12px);
  font-family: "Outfit", sans-serif;
  color: #3D9AEB;
  font-weight: 500;
}
.s-business-box__text {
  font-size: min(4vw, 16px);
  font-weight: 500;
  display: none;
  padding-bottom: min(3vw, 12px);
}
.s-business-box__viewMore {
  display: flex;
  justify-content: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: min(3.5vw, 14px);
  font-weight: bold;
  color: #3D9AEB;
  gap: min(3vw, 12px);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.s-business-box__viewMore-icon {
  width: min(6vw, 24px);
  height: min(6vw, 24px);
  position: relative;
  background: #3D9AEB;
  border-radius: 9999px;
  position: relative;
}
.s-business-box__viewMore-icon::after, .s-business-box__viewMore-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  height: min(0.5vw, 2px);
  width: min(3vw, 12px);
}
.s-business-box__viewMore-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.s-business-box__viewMore.is-open span::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.slider {
  overflow: hidden;
  width: 100%;
  background: transparent;
  margin-top: 60px;
}
@media screen and (max-width: 767px), print {
  .slider {
    margin-top: min(10vw, 40px);
  }
}
.slider__swiper {
  width: 100%;
  height: auto;
  transform: none !important;
}
.slider__swiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear;
  will-change: transform;
}
.slider__swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
}
.slider__swiper img {
  width: 340px;
  height: auto;
  flex-shrink: 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media screen and (max-width: 767px), print {
  .slider__swiper img {
    width: min(50vw, 200px);
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marqueeScrollReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.s-interview {
  margin-top: 80px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 767px), print {
  .s-interview {
    margin-top: min(17.5vw, 70px);
    padding-bottom: min(17.5vw, 70px);
  }
}
.s-interview__bg {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: color-burn;
}
.s-interview__header {
  color: #fff;
}
.s-interview__en {
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .s-interview__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 82%;
    max-width: 1300px;
    margin-inline: auto;
    gap: 20px;
  }
}
@media screen and (max-width: 1300px) and (min-width: 768px), print {
  .s-interview__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1300px), print {
  .s-interview__card {
    width: 45%;
  }
}
@media screen and (max-width: 767px), print {
  .s-interview__controls {
    display: flex;
    justify-content: space-between;
    padding: 0 min(5vw, 20px);
    margin-top: min(5vw, 20px);
  }
  .s-interview__pagination {
    font-size: min(4vw, 16px);
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .s-interview__pagination b {
    font-size: min(5.5vw, 22px);
    display: inline-block;
    margin-right: min(1.25vw, 5px);
  }
  .s-interview__nav {
    display: flex;
    align-items: center;
    gap: min(4vw, 16px);
  }
  .s-interview__nav .arrow {
    width: min(7.5vw, 30px);
    height: min(7.5vw, 30px);
    background: #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(4.5vw, 18px);
    color: #3D9AEB;
  }
  .s-interview__swiper {
    padding-left: min(5vw, 20px);
    padding-right: min(20vw, 80px);
    margin-top: min(5vw, 20px);
  }
}
.s-interview__card {
  position: relative;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
}
.s-interview__card-office {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  font-size: 16px;
  padding: 3px 10px;
  color: #3D9AEB;
}
@media screen and (max-width: 767px), print {
  .s-interview__card-office {
    font-size: min(3.5vw, 14px);
    padding: min(0.75vw, 3px) min(1.25vw, 5px);
  }
}
.s-interview__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  width: 100%;
}
@media screen and (max-width: 767px), print {
  .s-interview__card-content {
    padding: min(5vw, 20px);
  }
}
.s-interview__card-content * {
  color: #fff;
}
.s-interview__card-heading {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px), print {
  .s-interview__card-heading {
    font-size: min(4vw, 16px);
    line-height: 1.8;
  }
}
.s-interview__card-profile {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px), print {
  .s-interview__card-profile {
    font-size: min(3.25vw, 13px);
    margin-top: min(2.5vw, 10px);
    line-height: 1.8;
  }
}
.s-interview__card-name {
  font-size: 20px;
  font-weight: bold;
  margin-right: 7px;
}
@media screen and (max-width: 767px), print {
  .s-interview__card-name {
    font-size: min(4.125vw, 16.5px);
    white-space: nowrap;
  }
}
.s-interview__card-more {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 14px;
  border: 1px solid #fff;
  margin-top: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: 5px 10px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px), print {
  .s-interview__card-more {
    gap: min(4vw, 16px);
    font-size: min(3.5vw, 14px);
    margin-top: min(2.5vw, 10px);
    padding: min(0.75vw, 3px) min(2.5vw, 10px);
  }
}
.s-interview__card-more:hover {
  opacity: 0.7;
}
.s-interview__card-more-open {
  position: relative;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 9999px;
}
@media screen and (max-width: 767px), print {
  .s-interview__card-more-open {
    width: min(4.75vw, 19px);
    height: min(4.75vw, 19px);
  }
}
.s-interview__card-more-open::after, .s-interview__card-more-open::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #3D9AEB;
  height: 2px;
  width: 12px;
}
@media screen and (max-width: 767px), print {
  .s-interview__card-more-open::after, .s-interview__card-more-open::before {
    width: min(2.25vw, 9px);
  }
}
.s-interview__card-more-open::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.s-recruit {
  padding-top: 100px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px), print {
  .s-recruit {
    padding-block: min(15vw, 60px);
  }
}
.s-recruit__content {
  background: #fff;
  width: 88%;
  max-width: 1400px;
  margin-inline: auto;
  padding: 50px 80px;
}
@media screen and (max-width: 767px), print {
  .s-recruit__content {
    width: calc(100% - min(5vw, 20px));
    padding: min(7.5vw, 30px) min(2.5vw, 10px);
    margin-top: min(5vw, 20px);
  }
}
.s-recruit__content-ttl {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #3D9AEB;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px), print {
  .s-recruit__content-ttl {
    font-size: min(6vw, 24px);
  }
}
.s-recruit__content-ttl h4 {
  position: relative;
  background: #fff;
  z-index: 1;
  padding: 0 25px;
}
@media screen and (max-width: 767px), print {
  .s-recruit__content-ttl h4 {
    padding: 0 min(5vw, 20px);
  }
}
.s-recruit__content-ttl::before {
  content: "";
  width: 238px;
  height: 2px;
  background: #3D9AEB;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
}
@media screen and (max-width: 767px), print {
  .s-recruit__content-ttl::before {
    width: min(59.5vw, 238px);
  }
}
.s-recruit__content-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px), print {
  .s-recruit__content-list {
    margin-top: min(5vw, 20px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: min(2vw, 8px);
  }
}
.s-recruit__content-el {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  width: 320px;
  text-align: center;
  background: #43B7F6;
  color: #fff;
  padding-block: 15px;
}
@media screen and (max-width: 767px), print {
  .s-recruit__content-el {
    width: auto;
    padding-block: min(2.5vw, 10px);
    font-size: min(3.75vw, 15px);
  }
  .s-recruit__content-el:first-of-type {
    grid-column: span 2/span 2;
  }
}
.s-recruit__recruitments {
  margin-top: 60px;
}
@media screen and (max-width: 767px), print {
  .s-recruit__recruitments {
    margin-top: min(7.5vw, 30px);
  }
}
.s-recruit__recruitments-el {
  display: grid;
  grid-template-columns: 140px auto;
  padding: 20px 0;
  border-bottom: 1px solid rgba(61, 154, 235, 0.4);
}
@media screen and (max-width: 767px), print {
  .s-recruit__recruitments-el {
    padding: min(4.25vw, 17px) 0;
    grid-template-columns: 1fr;
  }
}
.s-recruit__recruitments-el dt, .s-recruit__recruitments-el dd {
  padding: 0 20px;
}
@media screen and (max-width: 767px), print {
  .s-recruit__recruitments-el dt, .s-recruit__recruitments-el dd {
    padding: 0 min(2.5vw, 10px);
  }
}
.s-recruit__recruitments-el dt {
  font-size: 16px;
  color: #3D9AEB;
}
@media screen and (max-width: 767px), print {
  .s-recruit__recruitments-el dt {
    font-size: min(3.75vw, 15px);
  }
}
.s-recruit__recruitments-el dd {
  font-size: 15px;
}
@media screen and (max-width: 767px), print {
  .s-recruit__recruitments-el dd {
    font-size: min(3.5vw, 14px);
    margin-top: 6px;
  }
}
.s-recruit__recruitments-el dd span {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

.s-flow {
  width: 88%;
  max-width: 1400px;
  margin-inline: auto;
}
@media screen and (max-width: 767px), print {
  .s-flow {
    width: 100%;
    padding-inline: min(5vw, 20px);
  }
}
.s-flow__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 767px), print {
  .s-flow__content {
    grid-template-columns: 1fr;
    margin-top: min(6vw, 24px);
  }
}
.s-flow__content-item {
  position: relative;
  text-align: center;
  background: #2E8DDD;
  padding-top: 16px;
  padding-bottom: 34px;
  position: relative;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-item {
    padding: 0;
    height: min(28vw, 112px);
    padding-left: min(10vw, 40px) !important;
    padding-bottom: min(5.75vw, 23px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: min(7.5vw, 30px);
  }
}
.s-flow__content-item::after {
  content: "";
  width: 40px;
  height: 100%;
  position: absolute;
  right: 0;
  transform: translateX(calc(100% - 1px));
  top: 0;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-item::after {
    width: 100%;
    height: min(5.75vw, 23px);
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    transform: none;
  }
}
.s-flow__content-item:nth-of-type(1) {
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-item:nth-of-type(1) {
    height: min(30vw, 120px);
  }
}
.s-flow__content-item:nth-of-type(1)::after {
  background: url(/-/media/image/mscs_recruit/img-flow-shape01.png) no-repeat center right/100% 100%;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-item:nth-of-type(1)::after {
    background: url(/-/media/image/mscs_recruit/img-flow-shape01-sp.png) no-repeat center right/100% 100%;
  }
}
.s-flow__content-item:nth-of-type(2) {
  position: relative;
  z-index: 3;
  background: #45A3EB;
  padding-left: 15px;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-item:nth-of-type(2) {
    padding-bottom: min(11.5vw, 46px) !important;
  }
}
.s-flow__content-item:nth-of-type(2)::after {
  background: url(/-/media/image/mscs_recruit/img-flow-shape02.png) no-repeat center right/100% 100%;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-item:nth-of-type(2)::after {
    background: url(/-/media/image/mscs_recruit/img-flow-shape02-sp.png) no-repeat center right/100% 100%;
  }
}
.s-flow__content-item:nth-of-type(3) {
  position: relative;
  z-index: 2;
  background: #4BAEF4;
  padding-left: 15px;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-item:nth-of-type(3) {
    padding-bottom: min(11.5vw, 46px) !important;
  }
}
.s-flow__content-item:nth-of-type(3)::after {
  background: url(/-/media/image/mscs_recruit/img-flow-shape03.png) no-repeat center right/100% 100%;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-item:nth-of-type(3)::after {
    background: url(/-/media/image/mscs_recruit/img-flow-shape03-sp.png) no-repeat center right/100% 100%;
  }
}
.s-flow__content-item:nth-of-type(4) {
  position: relative;
  z-index: 1;
  background: #59BEFF;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-item:nth-of-type(4) {
    height: min(20vw, 80px);
  }
}
@media screen and (max-width: 767px), print {
  .s-flow__content-img {
    width: min(13.75vw, 55px);
  }
}
@media screen and (min-width: 768px), print {
  .s-flow__content-hgroup {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px), print {
  .s-flow__content-hgroup {
    text-align: left;
    width: min(40vw, 160px);
  }
}
.s-flow__content-step {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-step {
    font-size: min(4vw, 16px);
  }
}
.s-flow__content-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767px), print {
  .s-flow__content-title {
    font-size: min(5vw, 20px);
  }
}

.s-faq {
  padding-top: 100px;
  width: 88%;
  max-width: 1400px;
  margin-inline: auto;
}
@media screen and (max-width: 767px), print {
  .s-faq {
    padding-top: min(15vw, 60px);
  }
}
.s-faq__content {
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 767px), print {
  .s-faq__content {
    gap: min(2.5vw, 10px);
    margin-top: min(6vw, 24px);
  }
}
.s-faq__content-el {
  box-shadow: 0 2px 6px 0 rgba(27, 94, 152, 0.2);
}
.s-faq-q {
  display: grid;
  grid-template-columns: 40px auto 24px;
  background: #fff;
  padding: 20px 28px 2px 20px;
  cursor: pointer;
}
@media screen and (max-width: 767px), print {
  .s-faq-q {
    align-items: center;
    grid-template-columns: min(6.25vw, 25px) auto min(6vw, 24px);
    box-shadow: 0 2px 6px 0 rgba(27, 94, 152, 0.2);
    padding: min(3.5vw, 14px) min(3.5vw, 14px) min(3.5vw, 14px) min(3.5vw, 14px);
  }
}
.s-faq-q__symbol {
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 22px;
  color: #3D9AEB;
  transform: translateY(-8px);
}
@media screen and (max-width: 767px), print {
  .s-faq-q__symbol {
    transform: none;
    font-size: min(4.5vw, 18px);
  }
}
.s-faq-q__inner {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  font-weight: 500;
}
@media screen and (max-width: 767px), print {
  .s-faq-q__inner {
    font-size: min(3.75vw, 15px);
  }
}
.s-faq-q__open {
  width: 100%;
  height: 24px;
  background: #3D9AEB;
  border-radius: 9999px;
  position: relative;
  border: 1px solid #3D9AEB;
}
.s-faq-q__open::after, .s-faq-q__open::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 12px;
  background: #fff;
}
@media screen and (max-width: 767px), print {
  .s-faq-q__open {
    height: min(6vw, 24px);
    width: min(6vw, 24px);
  }
  .s-faq-q__open::after, .s-faq-q__open::before {
    width: min(3vw, 12px);
  }
}
.s-faq-q__open::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.s-faq-q__open.is-open {
  background: #fff;
}
.s-faq-q__open.is-open::after, .s-faq-q__open.is-open::before {
  background: #3D9AEB;
  transform: translate(-50%, -50%) rotate(0deg);
}
.s-faq-a {
  padding: 0 20px 15px 20px;
  background: #fff;
  font-weight: 500;
  display: none;
}
@media screen and (max-width: 767px), print {
  .s-faq-a {
    padding: 0 min(3.5vw, 14px) min(3.5vw, 14px) min(3.5vw, 14px);
  }
}
.s-faq-a__symbol {
  font-family: "Alexandria", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 22px;
  color: #2B3134;
  transform: translateY(-8px);
}
@media screen and (max-width: 767px), print {
  .s-faq-a__symbol {
    font-size: min(4vw, 16px);
    transform: translateY(3px);
    text-align: right;
    padding-right: min(2vw, 8px);
  }
}
.s-faq-a__wrap {
  font-size: 14px;
  display: grid;
  grid-template-columns: 40px auto;
  width: 100%;
}
@media screen and (max-width: 767px), print {
  .s-faq-a__wrap {
    font-size: min(3.5vw, 14px);
    grid-template-columns: min(6.25vw, 25px) auto;
  }
}

.s-entry {
  padding-top: 100px;
  margin-bottom: -40px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px), print {
  .s-entry {
    padding-top: 60px;
    margin-bottom: 0;
  }
}
.s-entry__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 767px), print {
  .s-entry__content {
    grid-template-columns: 1fr;
    margin-top: min(6vw, 24px);
  }
}
@media screen and (min-width: 768px), print {
  .s-entry__content-el {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
  }
  .s-entry__content-el:nth-of-type(1) {
    background: linear-gradient(292deg, #43B7F6 47.57%, #71CDFF 117.74%);
    border-right: 1px solid #FFF;
  }
  .s-entry__content-el:nth-of-type(2) {
    background: linear-gradient(292deg, #43B7F6 47.57%, #71CDFF 117.74%);
    border-right: 1px solid #FFF;
  }
  .s-entry__content-el:nth-of-type(3) {
    background: linear-gradient(292deg, #299BFF 47.57%, #4FADFF 117.74%), #299BFF;
  }
  .s-entry__content-el h4 {
    font-size: 26px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.08em;
  }
  .s-entry__content-el h4 span {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    color: #fff;
  }
  .s-entry__content-el p {
    font-size: 16px;
    line-height: 1;
    margin-top: 5px;
    color: #fff;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px), print {
  .s-entry__content-el {
    display: grid;
    grid-template-columns: auto min(9.25vw, 37px);
    align-items: center;
    text-decoration: none;
    padding: 0 min(10vw, 40px);
    height: min(25vw, 100px);
  }
  .s-entry__content-el:nth-of-type(n + 2) {
    border-top: 1px solid #fff;
  }
  .s-entry__content-el:nth-of-type(1) {
    background: linear-gradient(292deg, #43B7F6 47.57%, #71CDFF 117.74%);
    border-right: 1px solid #FFF;
  }
  .s-entry__content-el:nth-of-type(2) {
    background: linear-gradient(292deg, #43B7F6 47.57%, #71CDFF 117.74%);
    border-right: 1px solid #FFF;
  }
  .s-entry__content-el:nth-of-type(3) {
    background: linear-gradient(292deg, #299BFF 47.57%, #4FADFF 117.74%), #299BFF;
  }
  .s-entry__content-el-content h4 {
    font-size: min(6.5vw, 26px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.08em;
  }
  .s-entry__content-el-content h4 span {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    color: #fff;
  }
  .s-entry__content-el-content p {
    font-size: min(3.75vw, 15px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.08em;
  }
}

.modal {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 60px 0;
  overflow-y: auto;
  display: none;
}
@media screen and (max-width: 767px), print {
  .modal {
    padding: 0;
  }
}
.modal__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(58, 90, 119, 0.5019607843);
}
.modal__close {
  width: min(6.75vw, 27px);
  height: min(6.75vw, 27px);
  position: absolute;
  bottom: calc(100svh - min(26vw, 104px) + min(8.75vw, 35px));
  right: min(3.75vw, 15px);
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 2px;
  width: 100%;
  background: #fff;
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__content {
  background: #fff;
  position: relative;
  z-index: 1;
  width: 80%;
  margin-inline: auto;
  padding-top: 80px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px), print {
  .modal__content {
    max-width: 1400px;
    min-width: 800px;
  }
}
@media screen and (max-width: 767px), print {
  .modal__content {
    padding-bottom: 40px;
    width: calc(100% - 30px);
    padding: 0;
    height: calc(100svh - min(26vw, 104px));
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    overflow-y: auto;
  }
}
.modal__content__inner {
  display: grid;
}
.modal__content-close {
  position: fixed;
  top: 80px;
  right: 12.5%;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  cursor: pointer;
}
@media screen and (min-width: 1750px), print {
  .modal__content-close {
    left: 50%;
    transform: translateX(-50%) translateX(650px);
  }
}
@media screen and (max-width: 1020px), print {
  .modal__content-close {
    left: 50%;
    transform: translateX(-50%) translateX(350px);
  }
}
.modal__content-close::before, .modal__content-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
  height: 2px;
  background: #3D9AEB;
}
.modal__content-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__inner {
  display: grid;
  grid-template-columns: 45% auto;
  padding-right: 50px;
  font-weight: 500;
}
@media screen and (max-width: 767px), print {
  .modal__inner {
    padding-right: 0;
    grid-template-columns: 1fr;
  }
}
.modal__inner-heading {
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px), print {
  .modal__inner-heading {
    font-size: min(4.75vw, 19px);
  }
}
.modal__inner-figure {
  height: clamp(270px, 19vw, 290px);
}
@media screen and (max-width: 767px), print {
  .modal__inner-figure {
    height: auto;
  }
}
.modal__inner-image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: 100%;
  width: 100%;
}
.modal__inner-right {
  padding-left: 50px;
}
@media screen and (max-width: 767px), print {
  .modal__inner-right {
    padding: min(4vw, 16px) min(3.5vw, 14px) min(8vw, 32px);
  }
}
.modal__inner-info {
  margin-top: 15px;
  font-size: 16px;
}
@media screen and (max-width: 767px), print {
  .modal__inner-info {
    margin-top: min(3.75vw, 15px);
    font-size: min(4vw, 16px);
  }
}
.modal__inner-name {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  margin-right: 7px;
}
@media screen and (max-width: 767px), print {
  .modal__inner-name {
    font-size: min(4.5vw, 18px);
  }
}
.modal__inner-details {
  margin-top: 5px;
  font-size: 16px;
}
@media screen and (max-width: 767px), print {
  .modal__inner-details {
    margin-top: min(1.25vw, 5px);
    font-size: min(4vw, 16px);
  }
}
.modal__inner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
@media screen and (max-width: 767px), print {
  .modal__inner-tags {
    margin-top: min(3.25vw, 13px);
    gap: min(2.5vw, 10px);
  }
}
.modal__inner-tag {
  background: #43B7F6;
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
}
@media screen and (max-width: 767px), print {
  .modal__inner-tag {
    font-size: min(3.25vw, 13px);
    padding: min(0.25vw, 1px) min(2vw, 8px);
  }
}
.modal__wrapper {
  padding: 60px 100px 0;
}
@media screen and (max-width: 767px), print {
  .modal__wrapper {
    padding: 0 min(3.5vw, 14px) min(10vw, 40px);
  }
}
.modal__wrapper-item-separate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 1325px), print {
  .modal__wrapper-item-separate {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px), print {
  .modal__wrapper-item-separate {
    gap: min(7.5vw, 30px);
  }
}
.modal__wrapper-schedule {
  width: min(85vw, 340px);
}
.modal__wrapper-ttl {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #3D9AEB;
  padding-left: 3.4rem;
  text-indent: -3.4rem;
}
@media screen and (max-width: 767px), print {
  .modal__wrapper-ttl {
    font-size: min(4vw, 16px);
    padding-left: 2.4rem;
    text-indent: -2.4rem;
  }
}
.modal__wrapper-txt {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 767px), print {
  .modal__wrapper-txt {
    margin-top: min(1.5vw, 6px);
    gap: min(2.5vw, 10px);
  }
}
.modal__wrapper-txt, .modal__wrapper-txt * {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px), print {
  .modal__wrapper-txt, .modal__wrapper-txt * {
    font-size: min(3.5vw, 14px);
  }
}
.modal__wrapper-section-separate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .modal__wrapper-section-separate {
    grid-template-columns: 1fr;
    gap: min(6vw, 24px);
  }
}
@media screen and (min-width: 768px), print {
  .modal__wrapper-section-img--reverse {
    order: 1;
  }
}
.modal__wrapper-section-txt {
  display: grid;
  gap: 10px;
}
.modal__wrapper-section-txt, .modal__wrapper-section-txt * {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px), print {
  .modal__wrapper-section-txt, .modal__wrapper-section-txt * {
    font-size: min(3.5vw, 14px);
  }
}
.modal__nav {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid #3D9AEB;
}
@media screen and (max-width: 767px), print {
  .modal__nav {
    margin-top: min(10vw, 40px);
    padding-top: min(10vw, 40px);
    gap: min(3.5vw, 14px);
    grid-template-columns: 1fr 1fr;
  }
}
.modal__nav-dept {
  color: #3D9AEB;
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
@media screen and (max-width: 767px), print {
  .modal__nav-dept {
    font-size: min(3.5vw, 14px);
  }
}
.modal__nav-info {
  display: flex;
  gap: 6px;
}
@media screen and (max-width: 767px), print {
  .modal__nav-info {
    gap: min(1.5vw, 6px);
    margin-top: min(1vw, 4px);
  }
}
.modal__nav-name {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 767px), print {
  .modal__nav-name {
    font-size: min(4.5vw, 18px);
  }
}
.modal__nav-year {
  font-size: 16px;
}
@media screen and (max-width: 767px), print {
  .modal__nav-year {
    font-size: min(4vw, 16px);
  }
}
.modal__nav-arrow {
  display: block;
  width: 37px;
  margin-left: auto;
  margin-top: -8px;
}
@media screen and (max-width: 767px), print {
  .modal__nav-arrow {
    width: min(7.5vw, 30px);
    margin-top: min(-2vw, -8px);
  }
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

.u-mt-60 {
  margin-top: 60px;
}

.u-mb-60 {
  margin-bottom: 60px;
}

.u-mt-70 {
  margin-top: 70px;
}

.u-mb-70 {
  margin-bottom: 70px;
}

.u-mt-80 {
  margin-top: 80px;
}

.u-mb-80 {
  margin-bottom: 80px;
}

.u-mt-90 {
  margin-top: 90px;
}

.u-mb-90 {
  margin-bottom: 90px;
}

.u-mt-100 {
  margin-top: 100px;
}

.u-mb-100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .u-mt-sp-10 {
    margin-top: min(10 / 400 * 100 * 1vw, 10px);
  }
  .u-mb-sp-10 {
    margin-bottom: min(10 / 400 * 100 * 1vw, 10px);
  }
  .u-mt-sp-20 {
    margin-top: min(20 / 400 * 100 * 1vw, 20px);
  }
  .u-mb-sp-20 {
    margin-bottom: min(20 / 400 * 100 * 1vw, 20px);
  }
  .u-mt-sp-30 {
    margin-top: min(30 / 400 * 100 * 1vw, 30px);
  }
  .u-mb-sp-30 {
    margin-bottom: min(30 / 400 * 100 * 1vw, 30px);
  }
  .u-mt-sp-40 {
    margin-top: min(40 / 400 * 100 * 1vw, 40px);
  }
  .u-mb-sp-40 {
    margin-bottom: min(40 / 400 * 100 * 1vw, 40px);
  }
  .u-mt-sp-50 {
    margin-top: min(50 / 400 * 100 * 1vw, 50px);
  }
  .u-mb-sp-50 {
    margin-bottom: min(50 / 400 * 100 * 1vw, 50px);
  }
  .u-mt-sp-60 {
    margin-top: min(60 / 400 * 100 * 1vw, 60px);
  }
  .u-mb-sp-60 {
    margin-bottom: min(60 / 400 * 100 * 1vw, 60px);
  }
  .u-mt-sp-70 {
    margin-top: min(70 / 400 * 100 * 1vw, 70px);
  }
  .u-mb-sp-70 {
    margin-bottom: min(70 / 400 * 100 * 1vw, 70px);
  }
  .u-mt-sp-80 {
    margin-top: min(80 / 400 * 100 * 1vw, 80px);
  }
  .u-mb-sp-80 {
    margin-bottom: min(80 / 400 * 100 * 1vw, 80px);
  }
  .u-mt-sp-90 {
    margin-top: min(90 / 400 * 100 * 1vw, 90px);
  }
  .u-mb-sp-90 {
    margin-bottom: min(90 / 400 * 100 * 1vw, 90px);
  }
  .u-mt-sp-100 {
    margin-top: min(100 / 400 * 100 * 1vw, 100px);
  }
  .u-mb-sp-100 {
    margin-bottom: min(100 / 400 * 100 * 1vw, 100px);
  }
}/*# sourceMappingURL=style.css.map */