@charset "UTF-8";
/* PCのpxをvwに変換 */
/* 基準の色 */
/* 共通 */
html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  color: #333333;
  letter-spacing: 0.025rem;
  line-height: 1.75;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

div, p {
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  div, p {
    font-size: 1.6rem;
  }
}

a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  color: #2259AA;
  opacity: 0.7;
}

img {
  width: 100%;
}

section .inner {
  padding: 60px 4.267vw;
}

@media (min-width: 1024px) {
  section .inner {
    padding: 120px 0 120px 0;
    max-width: 1024px;
    margin: 0 auto;
  }
}

.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 5px;
  position: relative;
}

.section-title-en {
  font-family: 'Lato';
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-transform: uppercase;
  color: #2259AA;
  display: block;
  text-align: center;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 4rem;
  }
  .section-title-en {
    font-size: 1.8rem;
  }
}

header {
  background-color: #ffffff;
  border-top: 3px solid #2259AA;
  height: 60px;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  width: 100%;
  z-index: 10;
  -webkit-transition: .3s;
  transition: .3s;
  white-space: nowrap;
}

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

@media (min-width: 1024px) {
  header {
    height: 98px;
    padding: 24px 40px;
  }
}

.sp-none {
  display: none;
}

@media (min-width: 1024px) {
  .sp-none {
    display: block;
  }
}

.pc-none {
  display: block;
}

@media (min-width: 1024px) {
  .pc-none {
    display: none;
  }
}

.logo {
  width: 150px;
}

.logo .header-disc {
  display: none;
}

@media (min-width: 1024px) {
  .logo {
    width: 18.30161vw;
    max-width: 250px;
  }
}

.menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  right: -100%;
  top: 0;
}

.menu.open {
  right: 0;
  background-color: #ffffff;
  z-index: 1;
}

@media (min-width: 1024px) {
  .menu {
    position: relative;
    right: auto;
    top: auto;
    width: 80vw;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.menu-list {
  width: 100%;
  height: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  padding-top: 90px;
}

@media (min-width: 1024px) {
  .menu-list {
    height: auto;
    padding-top: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 85px;
    padding-right: 40px;
  }
}

@media (min-width: 680px) {
  .menu-list {
    padding: 0 10px;
    padding-left: 40px;
  }
}

.menu-list li {
  width: 100%;
  /* メニューテキスト位置をリスト内中心に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .menu-list li {
    width: auto;
    padding: 0 15px;
  }
}

@media (min-width: 680px) {
  .menu-list li {
    padding: 0 12px;
  }
}

.menu-list li a {
  color: #333333;
  display: block;
  padding: 16px 0;
  font-size: 1.8rem;
  font-weight: bold;
}

/* ボタンリセット */
button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.btn-menu {
  /* ボタンの配置位置  */
  top: 16px;
  right: 16px;
  /* ボタンの大きさ  */
  width: 30px;
  height: 34px;
  /* 最前面に */
  z-index: 10;
  padding-top: 8px;
}

@media (min-width: 1024px) {
  .btn-menu {
    display: none;
  }
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  position: relative;
  /* バーガー線の位置基準として設定 */
  width: 100%;
  /* 線の長さと高さ */
  height: 3px;
  background-color: #2259AA;
  /* バーガー線の色 */
  -webkit-transition: .2s;
  transition: .2s;
}

.btn-line::before, .btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2259AA;
  -webkit-transition: .5s;
  transition: .5s;
}

.btn-line::before {
  -webkit-transform: translateY(-9px);
          transform: translateY(-9px);
}

.btn-line::after {
  -webkit-transform: translateY(9px);
          transform: translateY(9px);
}

.btn-line.open {
  background-color: transparent;
}

.btn-line.open::before, .btn-line.open::after {
  -webkit-transition: .2s;
  transition: .2s;
}

.btn-line.open::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn-line.open::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.btn-text {
  font-size: 1rem;
  letter-spacing: 00.025em;
  display: block;
  text-align: center;
  padding-top: 8px;
}

/***** 電話問い合わせボタン *****/
.btn-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 12px;
}

.btn-tel .phone-number {
  font-size: 4rem;
  color: #2259AA;
  font-family: 'Lato';
  font-weight: bold;
  line-height: 1;
  position: relative;
  z-index: 0;
  white-space: nowrap;
  margin-right: 1rem;
}

@media (min-width: 1024px) {
  .btn-tel .phone-number {
    font-size: 5.8rem;
  }
}

.btn-tel .phone-number .material-icons {
  font-size: 3.8rem;
  display: inline-block;
  -webkit-transform: rotate(10deg) translate(8px, 4px);
          transform: rotate(10deg) translate(8px, 4px);
}

@media (min-width: 1024px) {
  .btn-tel .phone-number .material-icons {
    font-size: 50px;
    -webkit-transform: rotate(10deg) translate(10px, 4px);
            transform: rotate(10deg) translate(10px, 4px);
  }
}

.btn-tel .phone-number::after {
  content: '';
  position: absolute;
  width: 85%;
  height: 30%;
  background-color: #FFF263;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (min-width: 1024px) {
  .btn-tel .phone-number::after {
    height: 15px;
    bottom: 0px;
  }
}

.btn-tel small {
  font-size: 1.5rem;
  font-family: 'Lato';
  color: #747E93;
  margin-top: 10px;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .btn-tel small {
    font-size: 1.8rem;
  }
}

/* 注意書き */
.note li {
  font-size: 1.5rem;
  color: #555555;
  position: relative;
  padding-left: 1.6rem;
}

.note li:first-of-type {
  margin-top: 20px;
}

.note li::before {
  content: '※';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

/* お問い合わせボタン */
.btn-contact, .btn-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1024px) {
  .btn-contact, .btn-form {
    display: block;
  }
}

.btn-contact a, .btn-form a {
  height: 60px;
  width: 70vw;
  margin-top: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #2259AA;
  border-radius: 50px;
  padding: 8px 32px;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0px 3px #D9D9D9;
          box-shadow: 0px 3px #D9D9D9;
  color: #ffffff;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .btn-contact a, .btn-form a {
    width: auto;
    height: 40px;
    max-width: 180px;
    margin-top: 0;
    font-size: 1.6rem;
  }
}

.btn-contact a .material-icons, .btn-form a .material-icons {
  font-size: 20px;
  display: inline-block;
  -webkit-transform: rotate(10deg) translate(-4px, 2px);
          transform: rotate(10deg) translate(-4px, 2px);
}

.btn-form a {
  font-size: 1.6rem;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .btn-form a {
    font-size: 2rem;
    width: 340px;
    height: 64px;
    max-width: 100%;
  }
}

.btn-form a .material-icons-outlined {
  font-size: 1.6rem;
  position: absolute;
  right: 24px;
}

@media (min-width: 1024px) {
  .btn-form a .material-icons-outlined {
    font-size: 2rem;
  }
}

/* お問合せ */
.contact {
  background-color: #2259AA;
}

.contact .inner {
  padding: 60px 4.267vw;
}

@media (min-width: 1024px) {
  .contact .inner {
    padding: 120px 0 120px 0;
    max-width: 1024px;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact .section-title {
  font-size: 3rem;
  color: #fff;
}

.contact .section-title-en {
  color: #fff;
}

@media (min-width: 1024px) {
  .contact .section-title {
    font-size: 3.2rem;
  }
}

.contact .contact-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 36px;
}

@media (min-width: 1024px) {
  .contact .contact-unit {
    width: 50%;
  }
}

.contact .contact-unit:first-child {
  position: relative;
}

.contact .contact-unit:first-child::after {
  content: '';
  display: block;
  position: absolute;
  background-color: #eeeeee;
  height: 2px;
  width: 90%;
  bottom: 0;
}

@media (min-width: 1024px) {
  .contact .contact-unit:first-child::after {
    height: 80%;
    width: 2px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.contact .contact-unit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px #1C4B90;
          box-shadow: 0px 3px #1C4B90;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .contact .contact-unit-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.contact .contact-unit .unit-title {
  font-size: 2rem;
  font-weight: bold;
  color: #525A66;
}

.contact .contact-unit .note li {
  margin-top: 15px;
  color: #525A66;
}

/* フッター概要 */
.summary .inner {
  padding: 60px 4.267vw;
}

.summary .logo-footer {
  width: 60vw;
}

.summary-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 40px;
}

.summary-list-title {
  font-weight: bold;
  width: 30%;
  margin-top: 20px;
}

.summary-list-title:first-of-type {
  margin-top: 0;
}

.summary-list-detail {
  width: 70%;
  line-height: 1.57;
  margin-top: 20px;
}

.summary-list-detail:first-of-type {
  margin-top: 0;
}

.summary-map {
  margin-top: 30px;
}

.summary-map-iframe iframe {
  width: 100%;
  height: 400px;
}

.summary-map .text-link .material-icons-outlined {
  font-size: 1.6rem;
  -webkit-transform: translate(0px, 3px);
          transform: translate(0px, 3px);
}

.summary-map .text-link a {
  color: #525A66;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .summary .inner {
    padding: 120px 0;
    max-width: 1024px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .summary .col {
    width: 50%;
  }
  .summary .logo-footer {
    width: 250px;
  }
  .summary-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 1.4rem;
  }
  .summary-list-title {
    width: 120px;
  }
  .summary-list-detail {
    font-size: 1.4rem;
  }
  .summary-map {
    margin-top: 0;
  }
  .summary-map-iframe iframe {
    height: 312px;
  }
}

/* コピーライト */
.copyright {
  background-color: #D6E0E6;
}

.copyright .inner {
  padding: 30px 0;
  margin: 0 auto;
}

.copyright small {
  font-size: 1rem;
  display: block;
  font-family: 'Lato';
  color: #909090;
  text-align: center;
}

@media (min-width: 1024px) {
  .copyright .inner {
    max-width: 1024px;
  }
  .copyright small {
    font-size: 1.2rem;
  }
}

/* ページ上部に戻るボタン */
.up_to_top {
  position: fixed;
  right: 0;
  bottom: 10px;
}

.up_to_top a {
  display: block;
}

.up_to_top a img {
  width: 100%;
}

@media (min-width: 1024px) {
  .up_to_top {
    right: 5vw;
    bottom: 90px;
  }
}

/* メインビジュアル */
.mv .inner {
  padding: 0 32px;
  padding-top: 95px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .mv .inner {
    overflow: auto;
    height: calc(100vw * 0.473);
    padding-top: 98px;
    max-width: 100%;
    padding-bottom: 0;
  }
}

.mv .mv-title {
  width: 80vw;
  position: relative;
}

.mv .mv-title::before, .mv .mv-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.mv .mv-title::before {
  background-image: url(../images/icon_mv_01.png);
  display: block;
  right: -6vw;
  top: 90px;
}

.mv .mv-title::after {
  background-image: url(../images/icon_mv_02.png);
  display: block;
  right: 0;
  top: 150px;
}

.mv .mv-lead {
  margin-top: 32px;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.29;
  white-space: nowrap;
}

.mv .mv-image {
  width: 100vw;
  -webkit-transform: translate(-32px, 0);
          transform: translate(-32px, 0);
  padding-left: 32px;
}

@media (min-width: 1024px) {
  .mv {
    position: relative;
  }
  .mv .mv-text-wrap {
    width: 31.479vw;
    position: absolute;
    top: 208px;
    left: 7.321vw;
  }
  .mv .mv-text-wrap .mv-title {
    width: 100%;
    max-width: 31.47877vw;
  }
  .mv .mv-text-wrap .mv-title::before, .mv .mv-text-wrap .mv-title::after {
    width: 5.85652vw;
    height: 5.85652vw;
  }
  .mv .mv-text-wrap .mv-title::before {
    top: auto;
    bottom: -19.03367vw;
    right: 0.73206vw;
  }
  .mv .mv-text-wrap .mv-title::after {
    top: auto;
    bottom: -21.96193vw;
    right: 8.78477vw;
  }
  .mv .mv-text-wrap .mv-lead {
    font-size: 1.31772vw;
    line-height: 2.11;
  }
  .mv .mv-image {
    position: absolute;
    right: 0;
    width: 56.442vw;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

/* お知らせ */
.info {
  background-image: url(../images/bg_grid_01.png);
}

.info-twitter {
  margin-top: 20px;
  padding: 0 4vw;
}

@media (min-width: 1024px) {
  .info-twitter {
    width: 570px;
    margin-top: 0;
    padding: 0;
  }
}

.info-twitter .twitter-timeline {
  border: 2px solid #D6E0E6 !important;
  border-radius: 12px;
  height: 400px !important;
}

@media (min-width: 1024px) {
  .info-twitter .twitter-timeline {
    height: 300px !important;
  }
}

@media (min-width: 1024px) {
  .info .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0;
  }
  .info .section-title-wrap {
    width: calc(100% - 570px);
  }
  .info .section-title-wrap .section-title {
    text-align: left;
  }
  .info .section-title-wrap .section-title-en {
    text-align: left;
  }
}

/* 特徴 */
.feature {
  background-color: #DFEEF7;
}

.feature .feature-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
  padding: 5.333vw 6.4vw 10.667vw;
  border: 2px solid #eeeeee;
  border-radius: 12px;
  background-color: #fff;
}

.feature .feature-list-item-image {
  width: 100%;
}

.feature .feature-list-item-text .title {
  color: #2259AA;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.feature .feature-list-item-text p {
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .feature .feature-list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 37px 60px;
  }
  .feature .feature-list-item-image {
    width: 54%;
    max-width: 480px;
  }
  .feature .feature-list-item-text {
    width: calc(46% - 20px);
  }
  .feature .feature-list-item-text .title {
    font-size: 3.6rem;
    text-align: left;
    margin-top: 0;
  }
  .feature .feature-list-item-text p {
    font-size: 1.6rem;
  }
  .feature .feature-list-item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .feature .feature-list-item:nth-child(3) .title {
    letter-spacing: -0.05rem;
  }
}

/* コース */
.course .course-list-item {
  position: relative;
  margin-top: 30px;
}

.course .course-list-item:hover {
  opacity: 0.7;
}

.course .course-list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  border: 2px solid #eeeeee;
  -webkit-box-shadow: 0 3px #D9D9D9;
          box-shadow: 0 3px #D9D9D9;
  overflow: hidden;
}

.course .course-list-item a:hover {
  opacity: 1;
}

.course .course-list-item-image {
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.course .course-list-item-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
  color: #333333;
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
  z-index: 1;
}

@media (min-width: 1024px) {
  .course .course-list-item-title {
    font-size: 2.4rem;
  }
}

.course .course-list-item-title .en {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #2259AA;
  text-transform: uppercase;
}

.course .course-list-item::before, .course .course-list-item::after {
  content: '';
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.course .course-list-item::before {
  background-image: url(../images/icon_arrow.png);
  background-size: contain;
  width: 30px;
  height: 30px;
  bottom: 6px;
  right: 0;
}

.course .course-list-item::after {
  width: 184px;
  height: 88px;
  border-radius: 24px;
  background-color: #fff;
  left: 50%;
  bottom: -40px;
}

@media (min-width: 1024px) {
  .course .course-list-item::after {
    width: 226px;
  }
}

@media (min-width: 1024px) {
  .course .course-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/* 割引制度について */
.discount {
  background-image: url(../images/bg_gird_02.png);
}

.discount .section-title-en {
  color: #EF5951;
}

.discount-text {
  margin-top: 30px;
  text-align: center;
}

.discount-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

.discount-list li {
  width: calc((100% - 15px) / 2);
}

.discount-list li:last-child {
  margin-top: 8px;
  width: 100%;
}

@media (min-width: 1024px) {
  .discount .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: center;
            flex-direction: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .discount .col {
    width: 50%;
  }
  .discount .section-title {
    text-align: left;
  }
  .discount .section-title-en {
    text-align: left;
  }
  .discount-text {
    text-align: left;
    margin-top: 60px;
  }
  .discount-list {
    margin-top: 0;
  }
}

/* 入塾までの流れ */
.flow {
  background-color: #F3F5F8;
}

.flow-list-item {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 12px;
  border: 2px solid #eeeeee;
  padding: 5.333vw 6.4vw;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-top: 30px;
}

.flow-list-item-number {
  color: #2259AA;
  font-family: 'Lato';
  display: inline-block;
  width: 56px;
  margin-right: 20px;
  text-align: center;
}

.flow-list-item-number small {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.flow-list-item-number span {
  font-size: 4.2rem;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1;
}

.flow-list-item-text {
  width: calc(100% - 76px);
}

.flow-list-item-text .title {
  color: #2259AA;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.flow-list-item-text p {
  margin-top: 1rem;
}

.flow-list-item::after {
  content: '';
  position: absolute;
  width: 38px;
  height: 62px;
  background-image: url(../images/image_flow_arrow.png);
  background-position: center;
  background-size: contain;
  -webkit-transform: translate(7px, 116px);
          transform: translate(7px, 116px);
  bottom: 80px;
}

.flow-list-item:last-of-type::after {
  display: none;
}

@media (min-width: 1024px) {
  .flow-list-item {
    padding: 36px 60px;
    margin-top: 50px;
  }
  .flow-list-item-number {
    width: 65px;
    margin-right: 56px;
  }
  .flow-list-item-number small {
    font-size: 2.2rem;
    line-height: 22px;
  }
  .flow-list-item-number span {
    font-size: 5.6rem;
    line-height: 56px;
  }
  .flow-list-item-text {
    width: calc(100% - (65px + 56px));
  }
  .flow-list-item-text .title {
    font-size: 2.4rem;
  }
  .flow-list-item-text p {
    line-height: 1.88;
    margin-top: 12px;
  }
  .flow-list-item::after {
    bottom: 70px;
  }
}

.elementary .main {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  position: relative;
  z-index: -1;
}

.page-header {
  position: relative;
}

.page-header .inner {
  padding: 0 32px;
  padding-top: 95px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-header .inner {
    overflow: auto;
    height: calc(100vw * 0.317);
    padding-top: 98px;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .page-header-text-wrap {
    width: 31.479vw;
    position: absolute;
    top: 15.08053vw;
    left: 7.321vw;
  }
}

.page-header .page-title {
  font-size: 3.2rem;
  font-weight: bold;
  position: relative;
  line-height: 1;
  z-index: 0;
  display: inline-block;
}

@media (min-width: 1024px) {
  .page-header .page-title {
    font-size: 4.8rem;
  }
}

.page-header .page-title::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: #FFED21;
  bottom: -5px;
  z-index: -1;
}

.page-header .page-lead {
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .page-header .page-lead {
    font-size: 1.1713vw;
    letter-spacing: 0.05em;
    margin-top: 40px;
  }
}

.page-header-image {
  width: 100vw;
  -webkit-transform: translate(-32px, 0);
          transform: translate(-32px, 0);
  padding-left: 32px;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .page-header-image {
    position: absolute;
    right: 0;
    width: 57.32064vw;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-top: 30px;
  }
}

.section-bg-lightBlue {
  background-color: #DFEEF7;
}

.section-bg-lightBlue .inner {
  padding-top: 90px;
}

.section-title-02 {
  font-size: 2.8rem;
  line-height: 1;
  padding-bottom: 24px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

@media (min-width: 1024px) {
  .section-title-02 {
    font-size: 3.6rem;
    padding-bottom: 30px;
  }
}

.section-title-02::after {
  content: '';
  position: absolute;
  width: 36px;
  background-color: #2259AA;
  height: 3px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.border-box {
  background-color: #fff;
  border: 2px solid #eeeeee;
  border-radius: 12px;
  padding: 30px 24px 40px;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .border-box {
    padding: 56px 60px;
    border-radius: 24px;
  }
  .border-box:first-of-type {
    margin-top: 60px;
  }
}

.border-box .box-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.border-box .box-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  color: #2259AA;
}

@media (min-width: 1024px) {
  .border-box .box-title {
    font-size: 3.6rem;
  }
}

.border-box .list-subject {
  margin-left: 12px;
}

.border-box .list-subject li {
  background-color: #2259AA;
  border-radius: 12px;
  padding: 7px 8px;
  display: inline-block;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  font-size: 1.4rem;
}

@media (min-width: 1024px) {
  .border-box .list-subject li {
    font-size: 1.6rem;
    padding: 10px;
    margin-top: 3px;
    margin-left: 8px;
  }
}

.border-box .box-description {
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .border-box .box-description {
    font-weight: bold;
    margin-top: 28px;
  }
}

.point-box {
  padding: 20px 24px 30px;
  background-color: #EBF4F5;
  border-radius: 12px;
  position: relative;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .point-box {
    margin-top: 45px;
    padding: 30px;
  }
}

.point-box .point-heading {
  position: absolute;
  top: -18px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #3C909F;
  font-size: 2.2rem;
  font-family: 'Lato';
  font-weight: 800;
  letter-spacing: 0.1em;
}

@media (min-width: 1024px) {
  .point-box .point-heading {
    font-size: 2.4rem;
    top: -22px;
  }
}

.point-box .point-description {
  font-size: 1.4rem;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .point-box .point-description {
    font-size: 1.6rem;
    margin-top: 0;
  }
}

.point-box .note {
  display: block;
  font-size: 1.2rem;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .point-box .note {
    font-size: 1.4rem;
  }
}

.bg-list-wrap .bg-list-heading {
  font-size: 1.6rem;
  padding-left: 1.4rem;
  font-weight: bold;
  position: relative;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .bg-list-wrap .bg-list-heading {
    font-size: 1.8rem;
  }
}

.bg-list-wrap .bg-list-heading::before {
  content: '●';
  position: absolute;
  font-size: 1.2rem;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #3C909F;
}

.bg-list-wrap .bg-list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  font-size: 1.4rem;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .bg-list-wrap .bg-list-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.bg-list-wrap .bg-list-content-title {
  padding: 10px 16px;
  background-color: #C8E0E4;
  color: #3C909F;
  font-weight: bold;
}

@media (min-width: 1024px) {
  .bg-list-wrap .bg-list-content-title {
    width: 138px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 2px;
  }
}

.bg-list-wrap .bg-list-content-detail {
  padding: 12px 16px;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .bg-list-wrap .bg-list-content-detail {
    padding: 20px;
    width: calc(100% - 138px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 2px;
  }
}

/* 英語Eコース */
.course-E .box-title {
  color: #3C909F;
}

.course-E .list-subject li {
  background-color: #3C909F;
}

.table-price {
  width: 100%;
  border: 2px solid #CCCCCC;
}

.table-price-wrap {
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .table-price-wrap {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .table-price-wrap .note {
    font-size: 1.4rem;
  }
}

.table-price th, .table-price td {
  border: 1px solid #CCCCCC;
  text-align: center;
  vertical-align: middle;
  padding: 18px;
  position: relative;
  font-size: 1.6rem;
}

@media (min-width: 1024px) {
  .table-price th, .table-price td {
    border-width: 2px;
  }
}

.table-price th {
  color: #fff;
  padding: 15px;
  font-weight: bold;
  border-right: 1px solid #fff;
}

.table-price th:first-child {
  position: relative;
}

.table-price th:first-child::before {
  content: "";
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, right top, left bottom, color-stop(49%, transparent), color-stop(50%, #ccc), color-stop(51%, transparent));
  background-image: linear-gradient(to left bottom, transparent 49%, #ccc 50%, transparent 51%);
}

.table-price th:last-of-type, .table-price th:first-of-type {
  border-right: 1px solid #CCCCCC;
}

@media (min-width: 1024px) {
  .table-price th {
    font-size: 2rem;
    line-height: 1.35;
    border-width: 2px;
  }
}

.table-price .bg-couseT {
  background-color: #3769B2;
}

.table-price .bg-couseE {
  background-color: #3C909F;
}

.table-price .color-couseT {
  color: #2259AA;
}

.table-price .color-couseE {
  color: #3C909F;
}

.table-price .td-grade {
  font-weight: bold;
  padding: 12px;
  background-color: #EEEEEE;
}

@media (min-width: 1024px) {
  .table-price .td-grade {
    width: 155px;
    font-size: 2.2rem;
  }
}

.table-price .price-number {
  font-size: 2.3rem;
  font-family: 'Lato';
  font-weight: bold;
}

.table-price .price-yen {
  font-size: 2.1rem;
  font-weight: bold;
}

.table-price .lesson-interval {
  font-size: 1.8rem;
}

/* 中学生の部 ページヘッダー */
.juniorhigh .page-header .page-lead::before {
  background-image: url(../images/icon_student.png);
}

.juniorhigh .page-header .page-lead::after {
  background-image: url(../images/icon_mv_02.png);
}

.juniorhigh .main {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  z-index: -1;
  position: relative;
}

/* ポイントボックス フレックス調整 */
.point-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1024px) {
  .point-box-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.point-box .point-heading-number {
  font-size: 2.8rem;
  font-weight: 800;
  padding-left: 5px;
}

.point-box .point-heading.numbering {
  top: -24px;
}

/* ポイント2カラム */
@media (min-width: 1024px) {
  .col2 .point-box {
    width: calc((100% - 25px)/ 2);
    margin-left: 25px;
  }
  .col2 .point-box:first-of-type {
    margin-left: 0;
  }
}

/* ポイント3カラム */
@media (min-width: 1024px) {
  .col3 .point-box {
    width: calc((100% - 50px)/ 3);
    margin-left: 25px;
  }
  .col3 .point-box:first-of-type {
    margin-left: 0;
  }
}

/* 進学Mコース */
.course-M .point-heading {
  -webkit-text-stroke: 1px #2259AA;
}

.course-M .point-box {
  background-color: #EBF7FD;
}

.bg-courseM {
  background-color: #3769B2;
}

.color-courseM {
  color: #2259AA;
}

/* 選抜Vコース */
.course-V .box-title {
  color: #2B4C7E;
}

.course-V .point-heading {
  -webkit-text-stroke: 1px #2B4C7E;
}

.course-V .point-box {
  background-color: #F3F5F8;
}

.course-V .list-subject li {
  background-color: #2B4C7E;
}

.course-V .bg-list-heading::before {
  color: #2B4C7E;
}

.course-V .bg-list-content-title {
  color: #2B4C7E;
  background-color: #C7CFDD;
}

.bg-courseV {
  background-color: #2B4C7E;
}

.color-courseV {
  color: #2B4C7E;
}

/* 公立理社Fコース */
.course-F .box-title {
  color: #289567;
}

.course-F .point-heading {
  -webkit-text-stroke: 1px #289567;
}

.course-F .point-box {
  background-color: #E9F4EF;
}

.course-F .list-subject li {
  background-color: #289567;
}

.bg-courseF {
  background-color: #289567;
}

.color-courseF {
  color: #289567;
}

/* 選抜理社VFコース */
.course-VF .box-title {
  color: #2B7B7E;
}

.course-VF .point-heading {
  -webkit-text-stroke: 1px #2B7B7E;
}

.course-VF .point-box {
  background-color: #E9F2F2;
}

.course-VF .list-subject li {
  background-color: #2B7B7E;
}

.bg-courseVF {
  background-color: #2B7B7E;
}

.color-courseVF {
  color: #2B7B7E;
}

.table-price-wrap.pc-none .table-price {
  margin-top: 30px;
}

.table-price-wrap.pc-none .table-price .td-grade {
  width: 12vw;
}
/*# sourceMappingURL=style.css.map */