@charset "UTF-8";

/*----------------------------------------------------
  #fv
----------------------------------------------------*/
.fv {
  width: 100%;
  height: calc(55vh + 80px);
  position: relative;
  padding: 0;
  margin-top: 80px;
}

.fv-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../img/common/fv-common.png');
  background-size: cover;
}

.fv-ttl {
  width: 85%;
  color: #fff;
  padding-left: 40px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
}

.fv-ttl::before {
  display: block;
  content: '';
  width: 6px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.fv-ttl>h2 {
  width: 100%;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 7rem;
  line-height: 1.4;
}

.fv-ttl>span {
  font-size: 2rem;
  margin-left: 5px;
}

/*----------------------------------------------------
  course
----------------------------------------------------*/
.course-linkWrap {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 40px 30px 40px;
  box-sizing: border-box;
  background: #EDF4F9;
}

.course-linkWrap>p {
  font-size: 2.4rem;
  margin-bottom: 10px;
}


.course-link {
  width: 75%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.course-link .link-btn {
  width: 49%;
  height: 80px;
  max-width: initial;
}

.course-link .link-btn>a {
  font-size: 2rem;
}

.course-link__inner {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem !important;
}

.course-link__inner>span {
  display: flex;
  font-size: 1.6rem !important;
  justify-content: center;
  align-items: center;
}

/*----------------------------------------------------
  #contact
----------------------------------------------------*/

.contact {
  width: 100%;
  padding: 200px 0;
  position: relative;
}

.contact::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: url('../img/common/bg-contact.png');
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  opacity: .7;
}

.contact::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.contact .container {
  width: 90%;
  max-width: 786px;
  position: relative;
  z-index: 1;
}

.contact-ttl {
  width: 50%;
  margin: 0 auto 40px auto;
}

.contact-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-link-btn {
  width: 49.5%;
  height: 80px;
  max-width: initial;
}

.contact-link-btn>a {
  font-size: 2.4rem;
}
@media screen and (max-width:896px) {
  /*---course---*/
  .course-link {
    width: 95%;
  }
}

@media screen and (max-width:480px) {
  #heading {
    top: 68px;
  }

  .fv {
    margin-top: 60px;
  }

  .fv {
    width: 100%;
    height: calc(50vh + 60px);
  }

  .fv-ttl {
    padding-left: 20px;
  }

  .fv-ttl>h2 {
    font-size: 4rem;
  }

  .fv-ttl>span {
    font-size: 1.6rem;
  }

  /*---course---*/

  .course-link {
    width: 100%;
    flex-direction: column;
  }

  .course-link .link-btn {
    width: 100%;
    height: 68px;
  }

  .course-link .link-btn>a,
  .course-link__inner {
    font-size: 1.8rem !important;
  }

  .course-link__inner>span {
    font-size: 1.5rem !important;
  }

  .course-link .link-btn:nth-of-type(n+2) {
    margin-top: 8px;
  }

  /*---contact---*/
  .contact {
    padding: 150px 0;
  }

  .contact-ttl {
    width: 60%;
  }

  .contact-link {
    width: 85%;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    margin: 0 auto;
  }

  .contact-link-btn {
    width: 100%;
  }

  .contact-link-btn:nth-of-type(n+2) {
    margin-top: 8px;
  }
}