@charset "utf-8";

/* 基本 letter-spacingは0.5rem
font-familyなど全体にかかる設定はcommonに入ってる
レスポンシブにかかわるものはこっち */


/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #021728;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* PCver/SPver only */
.pc {
  display: none;
}

@media (min-width:1060px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}





/* top */
.section-top {
  margin-top: 68px;
}

.section-top__mainvisual {
  width: 100%;
}

@media (min-width:1060px) {
  .section-top {
    margin-top: 0px;
  }

  .section-top__mainvisual {
    position: relative;
  }

  .globalMenuTop {
    position: absolute;
    top: 0;
    right: 0;
    padding: 13vw 277px 0 0;
  }

  .globalMenuTop--contents a {
    position: relative;
    display: inline-grid;
    grid-template-columns: 1fr 75%;
    gap: 30px 0;
    margin-bottom: 25px;
    align-items: center;
  }

  .globalMenuTop--contents a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #021728;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .7s;
    will-change: transform;
  }

  .globalMenuTop--contents a:hover::after {
    transform: scale(1, 1);
  }



  .globalMenuTop--contents-eg {
    font-size: 2.4rem;
    width: 85px;
  }

  .globalMenuTop--contents-jp {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
  }
}

/* スクロールしてほしい線 */
.scroll--wrapper {
  position: relative;
  height: 150px;
  margin: -30px 0 150px;
}

.scroll {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100px;
  width: 1px;
  background-color: transparent;
}

.scroll::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 100px;
  background-color: #021728;
  /*線の動き4秒かけて動く。永遠にループ*/
  animation: pathmove 4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  50% {
    height: 100px;
    top: 0px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}

@media (min-width:1060px) {
  .scroll--wrapper {
    height: 200px;
    margin: -100px 0 186px;
  }

  .scroll {
    position: absolute;
    top: 0;
    left: 50%;
    height: 200px;
    width: 1px;
    background-color: transparent;
  }

  .scroll::after {
    height: 200px;
    animation: pathmove 6s ease-in-out infinite;
    opacity: 0;
  }

  @keyframes pathmove {
    0% {
      height: 0;
      top: 0;
      opacity: 0;
    }

    50% {
      height: 200px;
      top: 0px;
      opacity: 1;
    }

    100% {
      height: 0;
      top: 150px;
      opacity: 0;
    }
  }
}

.section-about {
  background-color: #FFFAF3;
  padding: 60px 30px 80px;
}

.section__title {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.section__title-eg {
  font-size: 2.3rem;
  margin: 20px 0 8px;

}

.section__title-jp {
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.section__title::before,
.section__title::after {
  content: "";
  background-color: #021728;
  height: 1px;
  width: 100px;
  display: block;
  will-change: transform;
  margin: 0 auto;
}

.section__title.white::before,
.section__title.white::after {
  background-color: #ffffff;
}

@media (min-width:1060px) {
  .section-about {
    padding: 80px 0 120px;
  }

  .section__title {
    margin-bottom: 60px;
  }

  .section__title-eg {
    font-size: 2.8rem;
    margin: 25px 0 10px;

  }

  .section__title-jp {
    font-size: 1.6rem;
    margin-bottom: 28px;
  }

  .section__title::before,
  .section__title::after {
    width: 120px;
  }
}

.section-about__content-wrapper {
  max-width: 500px;
  margin: 0 auto;
}


.section-about__content1,
.section-about__content2 {
  display: flex;
  flex-direction: column;
}

.section-about__content1 {
  margin-bottom: 60px;
}

.section-about__content2 {
  margin-bottom: 120px;
}

.section-about__content1--text h3,
.section-about__content3--title {
  font-size: 2.0rem;
  line-height: 3.2rem;
  margin-bottom: 20px;
}

.section-about__content1--text p,
.section-about__content2--text,
.section-about__content3--p {
  font-size: 1.6rem;
  line-height: 3.0rem;
  margin-bottom: 30px;
}

.section-about__content3--image {
  margin: 0 auto 30px;
  display: block;
  width: 430px;
}

.section-about__content3--name p {
  font-size: 1.7rem;
  text-align: right;
}

.section-about__content3--nameimg {
  width: 186px;
  margin-left: 15px;
}

@media (min-width:1060px) {
  .section-about__content-wrapper {
    max-width: 1440px;
  }

  .section-about__content1 {
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 0;
  }

  .section-about__content2 {
    flex-direction: row;
    align-items: center;
    margin-bottom: 120px;
  }

  .section-about__content1--text,
  .section-about__content2--text,
  .section-about__content--image {
    width: 50%;
  }

  .section-about__content1--text,
  .section-about__content2--text {
    margin: 0 65px;
  }

  .section-about__content1--text h3,
  .section-about__content2--text,
  .section-about__content3--title {
    font-size: 2.0rem;
  }

  .section-about__content1--text h3 {
    line-height: 3.5rem;
  }

  .section-about__content2--text {
    line-height: 4.3rem;
  }

  .section-about__content1--text p,
  .section-about__content3--p {
    font-size: 1.4rem;
    line-height: 3.2rem;
  }

  .section-about__content3 {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 0 65px;
    max-width: 1150px;
  }

  .section-about__content3--image {
    margin-bottom: 0;
  }

  .section-about__content3--text {
    margin-left: 60px;
  }

  .section-about__content3--nameimg {
    width: 186px;
    margin-left: 15px;
  }

}



.section-menu {
  padding: 60px 30px 60px;
  background-color: #021728;
  text-align: center;
}

.section-menu__wrapper {
  background-color: #ffffff;
  max-width: 500px;
  margin: 0 auto;
  padding: 30px 0 35px;
}

.section-menu__wrapper1 {
  margin-bottom: 40px;
}

.section-menu__title {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.section-menu__comment {
  font-size: 1.3rem;
  letter-spacing: 0px;
  margin-bottom: 35px;
}

.section-menu__1 {
  display: flex;
  flex-direction: column;
}

.section-menu__img {
  margin-bottom: 20px;
}

.section-menu__text1,
.section-menu__text2 {
  border: #021728 solid 1px;
  margin: 0 10px;
  padding: 35px 40px 20px;
}

.section-menu__text1 {
  margin-bottom: 40px;
}

.section-menu__p {
  font-size: 1.3rem;
  letter-spacing: 0px;
  margin-bottom: 10px;
}

.section-menu__name {
  font-size: 1.8rem;
}

.menu__name1 {
  margin-bottom: 25px;
}

.menu__name2 {
  margin-bottom: 20px;
}

.section-menu__detail {
  font-size: 1.3rem;
  letter-spacing: 0px;
  line-height: 3.0rem;
}

.menu__title2 {
  margin-bottom: 35px;
}

.section-menu__button {
  position: relative;
  border: #021728 solid 1px;
  background-color: #ffffff;
  width: 200px;
  height: 50px;
  font-size: 1.4rem;
  font-family: inherit;
  padding-left: 6%;
  transition: 0.6s;
}

.section-menu__button::before {
  content: "";
  position: absolute;
  top: 55%;
  left: -21px;
  width: 50px;
  height: 1px;
  background: #021728;
  will-change: transform;
  transition: 0.3s;
}

.section-menu__button::after {
  content: "";
  position: absolute;
  top: 23%;
  left: 22px;
  width: 1px;
  height: 16px;
  background: #021728;
  transform: skewX(45deg);
  transition: 0.3s;
}

/* ホバー時の動き */
.section-menu__button:hover {
  background-color: #021728;
  color: #ffffff;
  transition: 0.6s;
}

.section-menu__button:hover::before {
  left: -20px;
  transition: 0.3s;
}

.section-menu__button:hover::after {
  left: 38px;
  transition: 0.3s;
}



@media (min-width:1060px) {
  .section-menu {
    padding: 80px 65px 80px;
  }

  .section-menu__wrapper {
    max-width: 1052px;
    padding: 60px 0;
  }

  .section-menu__wrapper1 {
    margin-bottom: 50px;
  }

  .section-menu__title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .section-menu__comment {
    margin-bottom: 47px;
    letter-spacing: 0.5px;
  }

  .section-menu__1 {
    align-items: center;
  }

  .section-menu__1.course-1 {
    flex-direction: row;
  }

  .section-menu__1.course-2 {
    flex-direction: row-reverse;
  }

  .section-menu__img {
    width: 60%;
    margin-bottom: 0;
  }

  .section-menu__img.course-1 {
    margin-left: -10%;
  }

  .section-menu__img.course-2 {
    margin-right: -10%;
  }

  .section-menu__text1,
  .section-menu__text2 {
    width: 50%;
    margin: 0 40px;
    text-align: left;
  }

  .section-menu__text1 {
    padding: 52px 60px 36px;
  }

  .section-menu__text2 {
    padding: 50px 45px 30px;
  }

  .section-menu__p {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .section-menu__name {
    font-size: 2.0rem;
  }

  .menu__name1,
  .menu__name2 {
    margin-bottom: 25px;
  }

  .section-menu__detail {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 2.6rem;
  }

  .section-menu__detail.menu__detail1,
  .section-menu__detail.menu__detail2 {
    margin-bottom: 30px;
  }

  .menu__title2 {
    margin-bottom: 45px;
  }

  .section-menu__button {
    width: 250px;
    height: 60px;
    font-size: 1.5rem;
    padding-left: 3%;
  }

  .section-menu__button::before {
    top: 54%;
    left: -35px;
    width: 66px;
  }

  .section-menu__button::after {
    top: 26%;
    left: 23px;
  }
}

.section-news {
  padding: 60px 30px;
  text-align: center;
}

@media (min-width:1060px) {
  .section-news {
    padding: 80px 65px;
  }
}


.section-info {
  background-color: #FFFAF3;
  padding: 60px 30px;
}

.section-info__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.section-info__picture {
  margin-bottom: 30px;
  display: block;
}

.section-info__text-wrapper h3 {
  font-size: 1.7rem;
  margin-bottom: 30px;
}

.section-info__text {
  display: grid;
  grid-template-columns: 1fr 75%;
  gap: 30px 15px;
  margin-bottom: 25px;
}

.section-info__text dt,
.section-info__text dd {
  font-size: 1.4rem;
  line-height: 3.0rem;
}

.section-info__text-tel {
  text-decoration: solid;
}

.section-info__text-tel:hover {
  color: #206BA8;
}

.section-info__map {
  height: 170px;
}

@media (min-width:1060px) {
  .section-info {
    padding: 80px 65px;
  }

  .section-info__picture {
    margin-bottom: 0;
    display: inline;
    width: 578.7px;
  }

  .section-info__wrapper {
    flex-direction: row;
    align-items: initial;
    justify-content: center;
    max-width: 1440px;
    margin-bottom: 81px;
  }

  .section-info__text-wrapper {
    margin: 0 65px 0 90px;
    min-width: 412px;
  }

  .section-info__text-wrapper h3 {
    font-size: 2.0rem;
    margin-bottom: 35px;
  }

  .section-info__text {
    grid-template-columns: 70px 412px;
    gap: 28px 20px;
    margin-bottom: 0;
  }

  .section-info__text dt,
  .section-info__text dd {
    font-size: 1.5rem;
  }


  .section-info__map {
    height: 632px;
  }

}