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

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

/* ===========================================
共通部分
===========================================*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #082b48;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #082b48;
}

a:hover {
  opacity: .7;
}

.section {
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 80px 0;
  }
}

.container {
  max-width: 980px;
  width: 90%;
  margin: auto;
}

img {
  width: 100%;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
}

/*==================================
header
===================================*/
header {
  padding: 20px 0;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .header {
    display: block;
  }
}

.site-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .site-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.site-title a {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .site-title {
    text-align: center;
  }
}

.site-item {
  font-size: 15px;
  font-weight: bold;
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .site-item {
    margin-left: 0;
    line-height: 36px;
  }
}

.site-item a {
  font-weight: bold;
}

/*=========  ドロワーメニュー =========*/
#course {
  position: relative;
  cursor: pointer;
}

#toggle-list {
  display: none;
  position: absolute;
  top: 30px;
  width: 80px;
  background-color: #fafafa;
}

#toggle-list li {
  text-align: center;
  margin: 8px 0;
}

/*=============================
first view
=================================*/
.section-top {
  background-image: url(../img/main-vsual-nontitle.png);
  background-size: cover;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .section-top {
    padding: 120px 0;
  }
}

.fv-copy {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .fv-copy {
    font-size: 32px;
  }
}

.fv-text {
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fv-text {
    font-size: 14px;
  }
}

/*=============================
about
=================================*/
.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .about-wrapper {
    display: block;
  }
}

.about-wrapper .about-img, .about-wrapper .about-text {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .about-wrapper .about-img, .about-wrapper .about-text {
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
  }
}

/*=============================
course
=================================*/
.course-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.course-list .course-item {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .course-list .course-item {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .course-list .course-item .course-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .course-list {
    display: block;
  }
}

.course {
  background-color: #e3fcf4;
}

/*============ モーダルで画像拡大表示 ===============*/
#gray-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

#gray-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 50%;
  max-height: 50%;
}

@media screen and (max-width: 767px) {
  #gray-bg img {
    max-width: 90%;
    max-height: 90%;
  }
}

/*==========================
contact
=============================*/
.contact-text {
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .contact-text {
    font-size: 14px;
  }
}

input[type="email"] {
  display: block;
  width: 61.22449%;
  padding: 15px;
  margin: 0 auto 20px;
  border-radius: 999px;
  border: 3px solid #d8d8d8;
}

@media screen and (max-width: 767px) {
  input[type="email"] {
    width: 100%;
  }
}

.btn {
  display: inline-block;
  padding: 20px 60px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border-radius: 4px;
  border: none;
}

.btn:hover {
  opacity: .7;
}

.btn-register {
  display: block;
  margin: 0 auto;
  background-color: #ec6d64;
}

footer {
  background-color: #082b48;
  padding: 20px 0;
  color: #fff;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer small {
  margin-left: auto;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .footer small {
    font-size: 10px;
    margin: 0 auto;
  }
}

/*============ ページトップへ戻るボタン ==============*/
#page-top {
  display: inline-block;
  padding: 20px;
  background-color: #ec6d64;
  position: fixed;
  right: 20px;
  bottom: 80px;
}

@media screen and (max-width: 767px) {
  #page-top {
    bottom: 60px;
  }
}

#page-top a {
  color: #fff;
}

/* ===== ページトップ戻るボタン 上矢印 丸形 Font Awesome Ver ===== */
/* #page-top {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ec6d64;
}

#page-top a {
 position: relative;
 display: block;
 width: 50px;
 height: 50px;
text-align: center;
}

#page-top a::before {
  font-family: "Font Awesome 6 Free";
  content: '\2303';
  font-weight: 900;
  font-size: 25px;
  color: #fff;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 25px;
  height: 25px;
  margin: 0 auto;
} */
