@charset "UTF-8";
/*
*
* Copyright (c) 2016, AD Line Inc. All rights reserved.
* Data : 2016.04.20
*
*/
/* Googleフォント　Noto Sans,Robot,Open Sans */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700italic,700,900);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800);
@import url(https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap);
/* アイコンフォント　Google Material,Font Awesome */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css);
/*****************************************************

 SCSS用
 
*****************************************************/
/*****************************************************

 Common - Layout
 
*****************************************************/
html {
  font-size: 10px;
}

body {
  position: relative;
  width: auto;
  height: auto;
  background: #FFF;
  z-index: 0;
  color: #333333;
  font-size: 1.6rem;
  font-family: 'Noto Sans Japanese','Noto Sans', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif , serif;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: 0.5px;
}

.inner {
  width: 1008px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 896px) {
  body {
    font-size: 1.4rem;
  }

  .inner {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}
/*PCでは表示しない*/
@media screen and (min-width: 897px) {
  .pc_none {
    display: none !important;
  }
}
/*SPでは表示しない*/
@media screen and (max-width: 896px) {
  .sp_none {
    display: none !important;
  }
}
.kome {
  font-size: 1.4rem;
  margin: 6px 0 0 19px;
  text-indent: -17px;
}
.kome::before {
  content: '※';
  margin-right: 4px;
}

/*****************************************************

 Common - Parts
 
*****************************************************/
/*　画像
----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
}

/*　リンク
----------------------------------------------------*/
a {
  color: #f78f93;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 770px) {
  a:hover {
    opacity: 1.0;
  }
}
/*　リンクボタン
----------------------------------------------------*/
/* button */
.button {
  display: inline-block;
  width: auto;
  height: auto;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  outline: none;
}
.button::before, .button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button, .button::before, .button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button:hover {
  opacity: 1.0;
}

.button {
  width: auto;
  background-color: #004DA0;
  border: 2px solid #004DA0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 13px 64px 14px;
  border-radius: 10px;
}
.button:hover {
  color: #004DA0;
  background-color: #fff;
  border: 2px solid #004DA0;
}

@media screen and (max-width: 896px) {
  .button {
    width: auto;
    font-size: 1.4rem;
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
    padding: 13px 14px 14px;
    border-radius: 6px;
  }
  .button:hover {
    color: #004DA0;
    background-color: #fff;
    border: 2px solid #004DA0;
  }
}
/* link_btn */
.link_btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 896px) {
  .link_btn {
    width: 90%;
    margin: 40px auto 0;
  }
  .link_btn a {
    width: 100%;
  }
}
/*　テーブル
----------------------------------------------------*/
/* tbl_plan_shogakusei */
.tbl_plan_shogakusei {
  width: 100%;
  min-width: 1008px;
  height: auto;
  background: #fff;
}
.tbl_plan_shogakusei tr:first-of-type th, .tbl_plan_shogakusei tr:first-of-type td {
  border-top: solid 1px #3E9FDB;
}
.tbl_plan_shogakusei tr:first-of-type th:last-child {
  border-right: 1px #3E9FDB solid;
}
.tbl_plan_shogakusei tr:nth-child(2n) th {
  border-left: 1px #3E9FDB solid;
  background: #fff;
}
.tbl_plan_shogakusei tr:nth-child(2n) td {
  border-left: 1px #3E9FDB solid;
  border-right: 1px #3E9FDB solid;
  background: #fff;
}
.tbl_plan_shogakusei tr:last-of-type th {
  border-right: 1px #3E9FDB solid;
  border-bottom: 1px #3E9FDB solid;
}
.tbl_plan_shogakusei tr:last-of-type td {
  border-bottom: 1px #3E9FDB solid;
}
.tbl_plan_shogakusei th {
  width: 25%;
  height: auto;
  padding: 10px 16px;
  text-align: center;
  color: #333333;
  background: #D9EBF9;
  border-left: 1px #3E9FDB solid;
  vertical-align: middle;
  text-align: center;
}
.tbl_plan_shogakusei th span.time {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  background: #3E9FDB;
  border-radius: 15px;
}
.tbl_plan_shogakusei td {
  width: 25%;
  height: auto;
  background: #D9EBF9;
  padding: 10px 16px;
  border-left: 1px #3E9FDB solid;
  border-right: 1px #3E9FDB solid;
  text-align: center;
}
.tbl_plan_shogakusei td a {
  color: #333333;
}

/* tbl_plan_chugakusei */
.tbl_plan_chugakusei {
  width: 100%;
  min-width: 1008px;
  height: auto;
  background: #fff;
}
.tbl_plan_chugakusei tr:first-of-type th, .tbl_plan_chugakusei tr:first-of-type td {
  border-top: solid 1px #F2A427;
}
.tbl_plan_chugakusei tr:first-of-type th:last-child {
  border-right: 1px #F2A427 solid;
}
.tbl_plan_chugakusei tr:nth-child(2n) th {
  border-left: 1px #F2A427 solid;
  background: #fff;
}
.tbl_plan_chugakusei tr:nth-child(2n) td {
  border-left: 1px #F2A427 solid;
  border-right: 1px #F2A427 solid;
  background: #fff;
}
.tbl_plan_chugakusei tr:last-of-type th {
  border-right: 1px #F2A427 solid;
  border-bottom: 1px #F2A427 solid;
}
.tbl_plan_chugakusei tr:last-of-type td {
  border-bottom: 1px #F2A427 solid;
}
.tbl_plan_chugakusei th {
  width: 25%;
  height: auto;
  padding: 10px 16px;
  text-align: center;
  color: #333333;
  background: #FFF1E1;
  border-left: 1px #F2A427 solid;
  vertical-align: middle;
  text-align: center;
}
.tbl_plan_chugakusei th span.small {
  font-size: 1.3rem;
}
.tbl_plan_chugakusei th span.time {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  background: #FCA629;
  border-radius: 15px;
}
.tbl_plan_chugakusei td {
  width: 25%;
  height: auto;
  background: #FFF1E1;
  padding: 10px 16px;
  border-left: 1px #F2A427 solid;
  border-right: 1px #F2A427 solid;
  text-align: center;
}
.tbl_plan_chugakusei td a {
  color: #333333;
}

/* tbl_type01
---------------------------------------*/
.tbl_type01 {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
}
.tbl_type01 tr {
  border-bottom: solid 2px #3E9FDB;
}
.tbl_type01 tr:first-child th {
  padding: 0 0 16px 0;
}
.tbl_type01 tr:first-child td {
  padding: 0 8px 16px;
}
.tbl_type01 tr th {
  width: 24%;
  width: 217px;
  padding: 16px 0;
  color: #004DA0;
  font-weight: 700;
}
.tbl_type01 tr td {
  width: 76%;
  width: 700px;
  padding: 16px 8px;
  text-align: left;
  line-height: 1.3;
}

@media screen and (max-width: 896px) {
  .tbl_type01 {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    font-size: 1.4rem;
  }
  .tbl_type01 tr {
    border-bottom: solid 2px #3E9FDB;
  }
  .tbl_type01 tr:first-child th {
    padding: 0 12px 12px 0;
  }
  .tbl_type01 tr:first-child td {
    padding: 0 8px 12px;
  }
  .tbl_type01 tr:last-child {
    border-bottom: 0;
  }
  .tbl_type01 tr th {
    width: auto;
    padding: 12px 12px 12px 0;
    white-space: nowrap;
  }
  .tbl_type01 tr td {
    width: auto;
    padding: 12px 8px;
    text-align: left;
    line-height: 1.3;
  }
}
/* tbl_type02
---------------------------------------*/
.tbl_type02 {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
}
.tbl_type02 tr {
  border-bottom: dashed 2px #3E9FDB;
}
.tbl_type02 tr:first-child th {
  padding: 0 0 16px 0;
}
.tbl_type02 tr:first-child td {
  padding: 0 8px 16px;
}
.tbl_type02 tr th {
  width: 20%;
  width: 145px;
  padding: 16px 0;
  color: #333;
}
.tbl_type02 tr td {
  width: 80%;
  width: 795px;
  padding: 16px 8px;
  color: #666;
  text-align: left;
  line-height: 1.3;
}

@media screen and (max-width: 896px) {
  .tbl_type02 {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    font-size: 1.4rem;
  }
  .tbl_type02 tr {
    border-bottom: dashed 2px #3E9FDB;
  }
  .tbl_type02 tr:first-child th {
    padding: 0 12px 12px 0;
  }
  .tbl_type02 tr:first-child td {
    padding: 0 8px 12px;
  }
  .tbl_type02 tr:last-child {
    border-bottom: 0;
  }
  .tbl_type02 tr th {
    width: auto;
    padding: 12px 12px 12px 0;
    white-space: nowrap;
  }
  .tbl_type02 tr td {
    width: auto;
    padding: 12px 8px;
    text-align: left;
    line-height: 1.3;
  }
}
@media screen and (max-width: 896px) {
  /*scroll*/
  .scroll {
    width: 100%;
    margin: 0 auto;
    overflow: auto;
    white-space: nowrap;
  }

  /*.scroll::-webkit-scrollbar {
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }*/
}
/*　見出し
----------------------------------------------------*/
/*　section_title
--------------------------------*/
.section_title {
  margin: 80px auto 40px;
  color: #333333;
  font-size: 3.6rem;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  line-height: 1.4;
}

/* 黄色い下線 */
span.underline {
  text-decoration: none;
  background: linear-gradient(transparent 70%, rgba(252, 238, 33, 0.9) 40%);
}

@media screen and (max-width: 896px) {
  .section_title {
    margin: 64px auto 24px;
    color: #333333;
    font-size: 2.2rem;
    font-family: "Zen Maru Gothic", serif;
    text-align: center;
    line-height: 1.6;
  }
}
/*　section_sub_title
--------------------------------*/
.section_sub_title {
  margin: 56px auto 16px;
  width: 100%;
  color: #fff;
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", serif;
  background: #3E9FDB;
  padding: 16px;
  box-sizing: border-box;
  line-height: 1.1;
}

@media screen and (max-width: 896px) {
  .section_sub_title {
    margin: 24px auto 16px;
    width: 100%;
    color: #fff;
    font-size: 1.8rem;
    font-family: "Zen Maru Gothic", serif;
    background: #3E9FDB;
    padding: 16px;
    box-sizing: border-box;
    line-height: 1.1;
  }
}
.section_sub_title02 {
  margin: 24px auto 14px;
  color: #004DA0;
  font-size: 1.8rem;
  font-weight: 700;
}
.section_sub_title02 span.small {
  margin: 0 0 0 16px;
  font-size: 1.6rem;
  font-weight: 400;
}
.section_sub_title02::before {
  margin-right: 6px;
  content: '';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@media screen and (max-width: 896px) {
  .section_sub_title02 span.small {
    display: block;
    margin: 4px auto 0;
    font-size: 1.4rem;
    font-weight: 400;
  }
}
/*　カラム
----------------------------------------------------*/
/*　col_box
----------------------------------------------------*/
@media screen and (min-width: 897px) {
  .col_box {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .col_box img {
    width: 100%;
  }
  .col_box .col1 {
    width: 100%;
    height: auto;
    margin: 2% auto 0;
  }
  .col_box .col1:first-child {
    margin-top: 0;
  }
  .col_box .col2 {
    width: 48%;
    height: auto;
    margin: 2% 0 0 4%;
  }
  .col_box .col2:nth-child(2n+1) {
    margin-left: 0;
  }
  .col_box .col2:nth-child(-n+2) {
    margin-top: 0;
  }
  .col_box .col3 {
    width: 32%;
    height: auto;
    margin: 2% 0 0 2%;
  }
  .col_box .col3:nth-child(3n+1) {
    margin-left: 0;
  }
  .col_box .col3:nth-child(-n+3) {
    margin-top: 0;
  }
  .col_box .col4 {
    width: 23.5%;
    height: auto;
    margin: 2% 0 0 2%;
  }
  .col_box .col4:nth-child(4n+1) {
    margin-left: 0;
  }
  .col_box .col4:nth-child(-n+4) {
    margin-top: 0;
  }
  .col_box .col5 {
    width: 18.4%;
    height: auto;
    margin: 2% 0 0 2%;
  }
  .col_box .col5:nth-child(5n+1) {
    margin-left: 0;
  }
  .col_box .col5:nth-child(-n+5) {
    margin-top: 0;
  }
  .col_box .col6 {
    width: 15.4%;
    height: auto;
    margin: 2% 0 0 1.5%;
  }
  .col_box .col6:nth-child(6n+1) {
    margin-left: 0;
  }
  .col_box .col6:nth-child(-n+6) {
    margin-top: 0;
  }
}
@media screen and (max-width: 896px) {
  .col_box {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .col_box img {
    width: 100%;
  }
  .col_box .sp_col1 {
    width: 100%;
    height: auto;
    margin: 2% auto 0;
  }
  .col_box .sp_col1:first-child {
    margin-top: 0;
  }
  .col_box .sp_col2 {
    width: 48%;
    height: auto;
    margin: 2% 0 0 4%;
  }
  .col_box .sp_col2:nth-child(2n+1) {
    margin-left: 0;
  }
  .col_box .sp_col2:nth-child(-n+2) {
    margin-top: 0;
  }
  .col_box .sp_col3 {
    width: 32%;
    height: auto;
    margin: 2% 0 0 2%;
  }
  .col_box .sp_col3:nth-child(3n+1) {
    margin-left: 0;
  }
  .col_box .sp_col3:nth-child(-n+3) {
    margin-top: 0;
  }
  .col_box .sp_col4 {
    width: 23.5%;
    height: auto;
    margin: 2% 0 0 2%;
  }
  .col_box .sp_col4:nth-child(4n+1) {
    margin-left: 0;
  }
  .col_box .sp_col4:nth-child(-n+4) {
    margin-top: 0;
  }
  .col_box .sp_col5 {
    width: 18.4%;
    height: auto;
    margin: 2% 0 0 2%;
  }
  .col_box .sp_col5:nth-child(5n+1) {
    margin-left: 0;
  }
  .col_box .sp_col5:nth-child(-n+5) {
    margin-top: 0;
  }
  .col_box .sp_col6 {
    width: 15.4%;
    height: auto;
    margin: 2% 0 0 1.5%;
  }
  .col_box .sp_col6:nth-child(6n+1) {
    margin-left: 0;
  }
  .col_box .sp_col6:nth-child(-n+6) {
    margin-top: 0;
  }
}
/* col2 */
/*.col2 {
    position: relative;
    width: 100%; height: auto;
    
    .col_1 {
        float: left;
        width: 48%; height: auto;
        margin: 2.5% 0 0 4%;
        
        &:nth-child(2n+1) {
            margin-left: 0;
        }
        
        &:nth-child(-n+2) {
            margin-top: 0;
        }
    }
}*/
/* col3 */
/*.col3 {
    position: relative;
    width: 100%; height: auto;
    
    .col_1 {
        float: left;
        width: 31%; height: auto;
        margin: 3% 0 0 3.5%;
        
        &:nth-child(3n+1) {
            margin-left: 0;
        }
        
        &:nth-child(-n+3) {
            margin-top: 0;
        }
    }
}*/
/* col4 */
/*.col4 {
    position: relative;
    width: 100%; height: auto;
    
    .col_1 {
        float: left;
        width: 23.5%; height: auto;
        margin: 3% 0 0 2%;
        
        &:nth-child(4n+1) {
            margin-left: 0;
        }
        
        &:nth-child(-n+4) {
            margin-top: 0;
        }
    }
}*/
/* col5 */
/*.col5 {
    position: relative;
    width: 100%; height: auto;
    
    .col_1 {
        float: left;
        width: 19%; height: auto;
        margin: 3% 0 0 1.2%;
        
        &:nth-child(5n+1) {
            margin-left: 0;
        }
        
        &:nth-child(-n+5) {
            margin-top: 0;
        }
    }
}*/
/* col6 */
/*.col6 {
    position: relative;
    width: 100%; height: auto;
    
    .col_1 {
        float: left;
        width: 16%;
        height: auto;
        margin: 3% 0 0 0.8%;
        
        &:nth-child(6n+1) {
            margin-left: 0;
        }
        
        &:nth-child(-n+6) {
            margin-top: 0;
        }
    }
}*/
/*　リスト
----------------------------------------------------*/
.news_list {
  position: relative;
  width: 100%;
  height: auto;
}
.news_list li {
  float: left;
  width: 312px;
  height: auto;
  margin: 40px 0 0 36px;
}
.news_list li:nth-child(3n+1) {
  margin-left: 0;
}
.news_list li:nth-child(-n+3) {
  margin-top: 0;
}
.news_list li a .date {
  margin-top: 16px;
  display: block;
  color: #3E9FDB;
  line-height: 1;
}
.news_list li a .post_title {
  margin-top: 8px;
  color: #4D4D4D;
}

@media screen and (max-width: 896px) {
  .news_list {
    margin-top: 40px;
    position: relative;
    width: 100%;
    height: auto;
  }
  .news_list li {
    float: left;
    width: 48%;
    height: auto;
    margin: 2.5% 0 0 4%;
  }
  .news_list li:nth-child(3n+1) {
    margin-left: 4%;
  }
  .news_list li:nth-child(-n+3) {
    margin-top: 2.5%;
  }
  .news_list li:nth-child(2n+1) {
    margin-left: 0;
  }
  .news_list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .news_list li a img {
    width: 100%;
  }
  .news_list li a .date {
    margin-top: 16px;
    display: block;
    color: #3E9FDB;
    line-height: 1;
  }
  .news_list li a .post_title {
    margin-top: 8px;
    color: #4D4D4D;
  }
}
/*　Pager
-----------------------------------*/
.pager {
  margin-top: 80px;
  text-align: center;
  line-height: 1;
}
.pager .page-numbers {
  display: inline-block;
  margin: 0 8px;
  padding: 13px 16px;
  border: solid 2px #004DA0;
  border-radius: 50%;
  color: #fff;
  background: #004DA0;
}
.pager a.page-numbers {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.pager a.page-numbers:hover {
  background: #dceafb;
  border: solid 2px #004DA0;
  color: #004DA0;
  opacity: 1;
}
.pager .current {
  background: #fff;
  border: solid 2px #004DA0;
  color: #004DA0;
}

/* ページトップ
----------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  font-size: 3.2rem;
  line-height: 0;
  z-index: 999;
}

#page-top a {
  border-radius: 50%;
  background: #004DA0;
  border: 3px solid #fff;
  color: #fff;
  text-decoration: none;
  width: 50px;
  padding: 10px 0;
  text-align: center;
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#page-top a:hover {
  text-decoration: none;
  background: #fff;
  border: 3px solid #004DA0;
  color: #004DA0;
  opacity: 1.0;
}

@media screen and (max-width: 896px) {
  #page-top {
    right: 10px;
  }
}
/* トピックパス
----------------------------------------------------*/
/* アンカー
----------------------------------------------------*/
.bg_grid {
  background: url("../images/common/bg_grid.gif") repeat center;
}

/*****************************************************

 Template - Header
 
*****************************************************/
/* global_header
----------------------------------------------------*/
/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .global_header {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
  }
}
/* header_contents
----------------------------------------------------*/
.header_contents {
  width: 100%;
  height: 80px;
  background: #004DA0;
  padding: 10px 0;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.header_contents .header_title {
  display: flex;
  align-items: center;
}
.header_contents .header_title .header_logo {
  margin-left: 24px;
  width: 245px;
  height: 43px;
}
.header_contents .header_title .header_logo a {
  display: block;
  width: 245px;
  height: 43px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/common/header_logo.svg) no-repeat center;
  background-size: contain;
  transition: 0.3s;
}
.header_contents .header_title .header_logo a:hover {
  opacity: 0.7;
}
.header_contents .header_title .catchcopy {
  margin-left: 24px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1;
}
.header_contents .header_contents_pc {
  margin-left: auto;
  min-width: 595px;
  display: flex;
}
.header_contents .header_contents_sp {
  display: none;
}
.header_contents .header_info {
  color: #fff;
}
.header_contents .header_info .address {
  font-weight: 500;
}
.header_contents .header_info .access_link_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  float: right;
}
.header_contents .header_info .access_link_list li {
  margin-left: 32px;
}
.header_contents .header_info .access_link_list li:last-child {
  margin-right: 8px;
}
.header_contents .header_info .access_link_list li a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
}
.header_contents .header_contact {
  margin-left: 20px;
  margin-right: 10px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  line-height: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.header_contents .header_contact i {
  color: #004DA0;
  font-size: 3.0rem;
}
.header_contents .header_contact .text_area {
  margin-left: 12px;
  text-align: center;
}
.header_contents .header_contact .text_area .tel_num {
  color: #004DA0;
  font-size: 2.0rem;
  font-weight: 700;
}
.header_contents .header_contact .text_area .reception_time {
  margin-top: 8px;
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
}

@media screen and (max-width: 1520px) {
  .header_contents {
    min-width: 1260px;
  }

  .header_contents .header_title .catchcopy {
    min-width: 270px;
    margin: auto 24px;
    color: #fff;
    font-size: 1.4rem;
    font-family: "Zen Maru Gothic", serif;
    line-height: 1.2;
  }

  .header_contents .header_contents_pc {
    margin-left: auto;
    min-width: 555px;
    display: flex;
  }

  .header_contents .header_info {
    color: #fff;
    font-size: 1.4rem;
  }
}
/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .header_contents {
    width: 100%;
    min-width: 0;
    height: 64px;
  }
  .header_contents .header_title {
    display: flex;
    align-items: center;
  }
  .header_contents .header_title .header_logo {
    margin-left: 16px;
    width: 160px;
    height: 30px;
  }
  .header_contents .header_title .header_logo a {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    overflow: hidden;
    background: url(../images/common/header_logo.svg) no-repeat center;
    background-size: contain;
    transition: 0.3s;
  }
  .header_contents .header_title .header_logo a:hover {
    opacity: 0.7;
  }
  .header_contents .header_title .catchcopy {
    margin-left: 24px;
    min-width: 0;
    color: #fff;
    font-family: "Zen Maru Gothic", serif;
    font-size: 1.4rem;
  }
  .header_contents .header_contents_pc {
    display: none;
  }
  .header_contents .header_contents_sp {
    display: block;
    margin-left: auto;
  }
  .header_contents .header_contents_sp p.menu {
    margin-right: 16px;
  }
  .header_contents .header_contents_sp p.menu a {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
  }
}
@media screen and (max-width: 660px) {
  .header_contents .header_title .catchcopy {
    display: none;
  }
}
/* global_nav
----------------------------------------------------*/
.global_nav .global_nav_pc ul {
  width: 100%;
  max-width: 1200px;
  margin: 24px auto;
  display: flex;
  align-items: center;
}
.global_nav .global_nav_pc ul li {
  width: 200px;
  border-left: solid 3px #FCEE21;
}
.global_nav .global_nav_pc ul li a {
  color: #004DA0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  display: block;
  line-height: 1;
  padding: 3px 0 3px;
  box-sizing: border-box;
}
.global_nav .global_nav_pc ul li.menu01 a::before {
  display: block;
  content: '';
  width: 57px;
  height: 46px;
  margin: 0 auto 8px;
  background: url("../images/common/icon_gnavi_about.png") no-repeat center;
  background-size: contain;
}
.global_nav .global_nav_pc ul li.menu02 a::before {
  display: block;
  content: '';
  width: 73px;
  height: 46px;
  margin: 0 auto 8px;
  background: url("../images/common/icon_gnavi_course01.png") no-repeat center;
  background-size: contain;
}
.global_nav .global_nav_pc ul li.menu03 a::before {
  display: block;
  content: '';
  width: 76px;
  height: 46px;
  margin: 0 auto 8px;
  background: url("../images/common/icon_gnavi_course02.png") no-repeat center;
  background-size: contain;
}
.global_nav .global_nav_pc ul li.menu04 a::before {
  display: block;
  content: '';
  width: 80px;
  height: 46px;
  margin: 0 auto 8px;
  background: url("../images/common/icon_gnavi_training.png") no-repeat center;
  background-size: contain;
}
.global_nav .global_nav_pc ul li.menu05 a::before {
  display: block;
  content: '';
  width: 48px;
  height: 46px;
  margin: 0 auto 8px;
  background: url("../images/common/icon_gnavi_news.png") no-repeat center;
  background-size: contain;
}
.global_nav .global_nav_pc ul li.menu06 a {
  font-size: 1.5rem;
}
.global_nav .global_nav_pc ul li.menu06 a::before {
  display: block;
  content: '';
  width: 47px;
  height: 46px;
  margin: 0 auto 8px;
  background: url("../images/common/icon_gnavi_contact.png") no-repeat center;
  background-size: contain;
}
.global_nav .global_nav_pc ul li:last-child {
  border-right: solid 3px #FCEE21;
}

@media screen and (max-width: 1200px) {
  .global_nav .global_nav_pc ul {
    width: 90%;
    min-width: 930px;
  }

  .global_nav .global_nav_pc ul li a {
    font-size: 1.2rem;
  }
  .global_nav .global_nav_pc ul li.menu01 a::before {
    display: block;
    content: '';
    width: 57px;
    height: 46px;
    background: url("../images/common/icon_gnavi_about.png") no-repeat center;
    background-size: contain;
  }
  .global_nav .global_nav_pc ul li.menu02 a::before {
    display: block;
    content: '';
    width: 73px;
    height: 46px;
    background: url("../images/common/icon_gnavi_course01.png") no-repeat center;
    background-size: contain;
  }
  .global_nav .global_nav_pc ul li.menu03 a::before {
    display: block;
    content: '';
    width: 76px;
    height: 46px;
    background: url("../images/common/icon_gnavi_course02.png") no-repeat center;
    background-size: contain;
  }
  .global_nav .global_nav_pc ul li.menu04 a::before {
    display: block;
    content: '';
    width: 80px;
    height: 46px;
    background: url("../images/common/icon_gnavi_training.png") no-repeat center;
    background-size: contain;
  }
  .global_nav .global_nav_pc ul li.menu05 a::before {
    display: block;
    content: '';
    width: 48px;
    height: 46px;
    background: url("../images/common/icon_gnavi_news.png") no-repeat center;
    background-size: contain;
  }
  .global_nav .global_nav_pc ul li.menu06 a {
    font-size: 1.2rem;
  }
  .global_nav .global_nav_pc ul li.menu06 a::before {
    display: block;
    content: '';
    width: 47px;
    height: 46px;
    background: url("../images/common/icon_gnavi_contact.png") no-repeat center;
    background-size: contain;
  }
}
@media screen and (max-width: 1030px) {
  .global_nav_pc {
    display: none;
  }
}
.mm-menu {
  background: #fff !important;
  border-color: rgba(0, 77, 160, 0.5) !important;
}
.mm-menu .top_cover_contents {
  padding: 16px;
}

/*　右側固定バナー
----------------------------------------------------*/
.fiexd_bunner {
  width: 69px;
  height: 277px;
  position: fixed;
  top: 25%;
  right: 0;
  z-index: 99;
}
.fiexd_bunner a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 2.0rem;
  font-weight: 900;
  writing-mode: vertical-rl;
  padding: 16px;
  box-sizing: border-box;
  background: #ED6E8C;
  line-height: 1.8;
  border-radius: 12px 0 0 12px / 12px 0 0 12px;
  border: solid 2px #ED6E8C;
  border-right: 0;
}
.fiexd_bunner a img {
  margin-bottom: 10px;
}
.fiexd_bunner a:hover {
  opacity: 1.0;
  color: #fff;
  background: #ff89a6;
  border: solid 2px #ff89a6;
  border-right: 0;
}

@media screen and (max-width: 896px) {
  .fiexd_bunner {
    width: 100%;
    height: 56px;
    position: fixed;
    top: auto;
    bottom: 0;
    right: auto;
    z-index: 99;
  }
  .fiexd_bunner a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    writing-mode: horizontal-tb;
    padding: 8px 0;
    box-sizing: border-box;
    background: #ED6E8C;
    line-height: 1.8;
    border-radius: 0;
    border: solid 2px #ED6E8C;
    border-right: 0;
    text-align: center;
  }
  .fiexd_bunner a img {
    margin-top: -2px;
    margin-bottom: 0;
    margin-right: 16px;
    vertical-align: middle;
  }
  .fiexd_bunner a:hover {
    opacity: 1.0;
    color: #fff;
    background: #ff89a6;
    border: solid 2px #ff89a6;
    border-right: 0;
  }
}
/* mainvisual
----------------------------------------------------*/
.mainvisual {
  margin-top: 45px;
  width: 100%;
  height: 500px;
}
.mainvisual .inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  height: 500px;
  background: url("../images/home/bg_top_mainvisual.png") no-repeat right center;
  background-size: auto;
  display: flex;
}
.mainvisual .title_area {
  width: 640px;
  height: 70px;
}
.mainvisual .title_area .maintitle {
  color: #E63462;
  font-size: 5.4rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
}

/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .mainvisual {
    margin-top: 80px;
    width: 100%;
    height: 280px;
  }
  .mainvisual .inner {
    display: flex;
    align-items: center;
    width: 95%;
    height: 100%;
    background: transparent;
    background-size: auto;
    display: flex;
  }
  .mainvisual .title_area {
    width: 100%;
    height: 24px;
  }
  .mainvisual .title_area .maintitle {
    color: #E63462;
    font-size: 2.8rem;
    font-weight: 900;
    text-align: left;
    line-height: 1.2;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual {
    margin-top: 80px;
    width: 100%;
    height: 165px;
  }
  .mainvisual .inner {
    display: flex;
    align-items: center;
    width: 95%;
    height: 100%;
    background: transparent;
    background-size: auto;
    display: flex;
  }
  .mainvisual .title_area {
    width: 100%;
    height: 24px;
  }
  .mainvisual .title_area .maintitle {
    color: #E63462;
    font-size: 2.0rem;
    font-weight: 900;
    text-align: left;
    line-height: 1.2;
  }
}
/*****************************************************

 Template - Footer
 
*****************************************************/
.global_footer {
  background: #004DA0;
  padding: 56px 0;
}

.footer_contents {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 896px) {
  .footer_contents {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
  }
}
.footer_info {
  width: 470px;
}
.footer_info .footer_title .footer_logo {
  display: block;
  width: 245px;
  height: 43px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/common/header_logo.svg) no-repeat center;
  background-size: contain;
}
.footer_info .footer_title .footer_logo a {
  display: block;
  width: 245px;
  height: 43px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/common/header_logo.svg) no-repeat center;
  background-size: contain;
  transition: 0.3s;
}
.footer_info .footer_title .footer_logo a:hover {
  opacity: 0.7;
}
.footer_info .footer_title .comment {
  margin-top: 12px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1;
}
.footer_info .address {
  margin-top: 48px;
  color: #fff;
  font-weight: 500;
}
.footer_info .footer_nav {
  margin-top: 12px;
  display: flex;
}
.footer_info .footer_nav li {
  border-left: solid 1px #fff;
  padding: 0 6px;
  line-height: 1;
}
.footer_info .footer_nav li:first-child {
  border-left: 0;
  padding-left: 0;
}
.footer_info .footer_nav li:last-child {
  padding-right: 0;
}
.footer_info .footer_nav li a {
  display: block;
  color: #fff;
  font-weight: 700;
}
.footer_info .map_link {
  margin-top: 12px;
}
.footer_info .map_link a {
  display: block;
  color: #fff;
  font-weight: 700;
}
.footer_info .copyright {
  margin-top: 24px;
  color: #FCEE21;
}

@media screen and (max-width: 896px) {
  .footer_info {
    width: 100%;
    margin: 40px auto 24px;
  }

  .footer_contents .footer_info .footer_title .footer_logo {
    margin: 0 auto;
    display: block;
    width: 200px;
    height: 43px;
  }
  .footer_contents .footer_info .footer_title .comment {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .footer_contents .footer_info .address {
    text-align: center;
  }
  .footer_contents .footer_info .copyright {
    margin-top: 40px;
    text-align: center;
  }
  .footer_contents .footer_info .footer_nav {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
  }
  .footer_contents .footer_info .footer_nav li {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: solid 1px #fff;
    padding: 12px 6px;
    line-height: 1;
    text-align: center;
  }
  .footer_contents .footer_info .footer_nav li:first-child {
    border-top: solid 1px #fff;
  }
  .footer_contents .footer_info .footer_nav li a {
    display: block;
    color: #fff;
    font-weight: 700;
  }
  .footer_contents .footer_info .map_link {
    margin-top: 12px;
    text-align: center;
  }
}
.footer_contact {
  margin-left: auto;
  width: 470px;
  background: #fff;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 10px;
}
.footer_contact .section_sub_title {
  margin: 40px auto 32px;
}
.footer_contact .contact_detail {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.footer_contact .contact_detail i {
  color: #004DA0;
  font-size: 5.6rem;
}
.footer_contact .contact_detail .text_area {
  margin-left: 12px;
  width: 320px;
  text-align: center;
}
.footer_contact .contact_detail .text_area .tel_num {
  color: #004DA0;
  font-size: 4.0rem;
  font-weight: 700;
}
.footer_contact .contact_detail .text_area .reception_time {
  color: #333;
  font-size: 2.0rem;
  font-weight: 700;
}
.footer_contact .contact_detail .text_area .reception_time span {
  margin-top: 12px;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
.footer_contact .contact_detail .text_area .tel_num + .reception_time {
  margin-top: 12px;
}
.footer_contact .link_btn {
  margin-top: 32px;
}

@media screen and (max-width: 896px) {
  .footer_contact {
    width: 100%;
    padding: 24px;
  }
  .footer_contact .contact_detail .text_area {
    margin-left: 12px;
    width: 80%;
    text-align: center;
  }
  .footer_contact .contact_detail .text_area .tel_num {
    color: #004DA0;
    font-size: 3rem;
    font-weight: 700;
  }
  .footer_contact .contact_detail .text_area .reception_time {
    font-size: 1.6rem;
  }
  .footer_contact .contact_detail .text_area .reception_time span {
    font-size: 1.4rem;
  }
  .footer_contact .link_btn {
    margin-top: 24px;
  }
}
/* main_content
----------------------------------------------------*/
.main_content {
  padding-bottom: 80px;
}

@media screen and (max-width: 896px) {
  .main_content {
    padding-bottom: 64px;
  }
}
/*****************************************************

 Page - Home
 
*****************************************************/
/* top_mainvisual
----------------------------------------------------*/
.top_mainvisual {
  margin-top: 24px;
  width: 100%;
  height: 740px;
  position: relative;
}
.top_mainvisual .inner.cover {
  display: flex;
  align-items: center;
  width: 1400px;
  height: 740px;
  background: url("../images/home/bg_top_mainvisual.png") no-repeat right center;
  background-size: auto;
}
.top_mainvisual .title_area {
  margin-top: -140px;
  width: 640px;
  height: 220px;
}
.top_mainvisual .title_area .top_maintitle {
  color: #E63462;
  font-size: 5.4rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
}
.top_mainvisual .title_area .text {
  margin-top: 32px;
  color: #333;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.5;
}
.top_mainvisual .contents_area {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
}
.top_mainvisual .contents_area .inner.contents {
  width: 1400px;
}
.top_mainvisual .contents_area .top_illust {
  position: absolute;
  left: 75px;
  bottom: 0;
}
.top_mainvisual .contents_area .top_achievement_bnr_pc {
  position: absolute;
  right: 250px;
  bottom: 10px;
}
.top_mainvisual .contents_area .top_achievement_bnr_sp {
  display: none;
}
.top_mainvisual .contents_area .top_20th_anniv {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

@media screen and (max-width: 1030px) {
  .top_mainvisual {
    margin-top: 80px;
  }
  .top_mainvisual .inner.cover {
    width: 100%;
    height: 740px;
  }
  .top_mainvisual .contents_area {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
  }
  .top_mainvisual .contents_area .inner.contents {
    width: 100%;
  }
  .top_mainvisual .contents_area .top_illust {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .top_mainvisual .contents_area .top_achievement_bnr_pc {
    display: none;
  }
  .top_mainvisual .contents_area .top_achievement_bnr_sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 60%;
    margin: auto;
  }
  .top_mainvisual .contents_area .top_achievement_bnr_sp img {
    width: auto;
  }
  .top_mainvisual .contents_area .top_20th_anniv {
    position: absolute;
    right: 24px;
    bottom: 24px;
  }
}
@media screen and (max-width: 896px) {
  .top_mainvisual {
    margin-top: 80px;
    width: 100%;
    height: auto;
  }
  .top_mainvisual .inner.cover {
    display: block;
    width: 95%;
    height: auto;
    background: transparent;
  }
  .top_mainvisual .title_area {
    margin: 40px auto 0;
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .top_mainvisual .title_area .top_maintitle {
    color: #E63462;
    font-size: 3.2rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
  }
  .top_mainvisual .title_area .text {
    margin-top: 32px;
    color: #333;
    font-family: "Zen Maru Gothic", serif;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.5;
  }
  .top_mainvisual .contents_area {
    /*position: absolute;
    width: 100%;
    height: 180px;
    bottom: -90px;*/
    margin-top: 24px;
    position: relative;
    width: 100%;
    height: auto;
    bottom: auto;
  }
  .top_mainvisual .contents_area .inner.contents {
    width: 95%;
  }
  .top_mainvisual .contents_area .top_illust {
    float: left;
    width: 50%;
    position: relative;
    top: auto;
    left: 24px;
    right: auto;
    bottom: auto;
  }
  .top_mainvisual .contents_area .top_achievement_bnr_sp {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 95%;
    margin: 0 auto;
  }
  .top_mainvisual .contents_area .top_achievement_bnr_sp img {
    width: 100%;
  }
  .top_mainvisual .contents_area .top_20th_anniv {
    float: right;
    width: 30%;
    position: relative;
    top: auto;
    left: auto;
    right: 24px;
    bottom: auto;
  }
}
/* top_introduction
----------------------------------------------------*/
.top_introduction .section_sub_title {
  margin-bottom: 0;
}

@media screen and (max-width: 1030px) {
  .top_introduction {
    margin-top: 220px;
  }
}
@media screen and (max-width: 896px) {
  .top_introduction {
    margin-top: 0;
  }
}
/* point_list
---------------------------------*/
.point_list {
  margin-top: 16px;
}
.point_list.col4 .col_1 {
  float: left;
  width: 240px;
  height: auto;
  margin: 3% 0 0 16px;
}
.point_list.col4 .col_1:nth-child(4n+1) {
  margin-left: 0;
}
.point_list.col4 .col_1:nth-child(-n+4) {
  margin-top: 0;
}
.point_list.col4 .col_1 p.feature {
  min-height: 160px;
}
.point_list.col2 .col_1 {
  float: left;
  width: 495px;
  height: auto;
  margin: 3% 0 0 16px;
}
.point_list.col2 .col_1:nth-child(2n+1) {
  margin-left: 0;
}
.point_list.col2 .col_1:nth-child(-n+2) {
  margin-top: 0;
}
.point_list.col2 .col_1 .text_area {
  display: flex;
}
.point_list article {
  /*min-height: 230px;*/
  background: #D9EBF9;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
}
.point_list article h4.point_title {
  width: 163px;
  margin: 0 auto;
  color: #004DA0;
  font-size: 2.0rem;
  font-weight: 900;
  text-align: center;
  background: #fff;
  padding: 10px 0;
  border-radius: 20.5px;
  line-height: 1;
  position: relative;
}
.point_list article p.feature {
  margin-top: 16px;
  width: 100%;
  /*min-height: 160px;*/
  text-align: center;
  position: relative;
}
.point_list article p.feature strong {
  margin: 4px auto;
  display: block;
  color: #E63462;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0;
  line-height: 1.2;
}
.point_list article p.text {
  margin-top: 16px;
  font-size: 1.4rem;
  letter-spacing: 0px;
}
.point_list article.point01 .feature::before {
  content: '';
  /*width: 64px;
  height: 45px;*/
  width: 80px;
  height: 52px;
  background: url(../images/about/icon_about_point01.png) no-repeat center;
  background-size: contain;
  position: absolute;
  /*right: -16px;
  bottom: 0;*/
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.point_list article.point02 .feature::before {
  content: '';
  width: 60px;
  height: 48px;
  background: url(../images/about/icon_about_point02.png) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -10px;
  bottom: 18px;
}
.point_list article.point03 .feature::before {
  content: '';
  width: 136px;
  height: 80px;
  background: url(../images/about/icon_about_point03.png) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -8px;
  bottom: 4px;
}
.point_list article.point04 .feature::before {
  content: '';
  width: 190px;
  height: 90px;
  background: url(../images/about/icon_about_point04.png) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  margin: auto;
}
.point_list article.point05 .point_title::before {
  content: '';
  width: 90px;
  height: 50px;
  background: url(../images/about/icon_about_point05.png) no-repeat center;
  background-size: contain;
  position: absolute;
  left: auto;
  right: -140px;
  bottom: -5px;
  margin: auto;
}
.point_list article.point06 .point_title::before {
  content: '';
  width: 60px;
  height: 60px;
  background: url(../images/about/icon_about_point06.png) no-repeat center;
  background-size: contain;
  position: absolute;
  left: auto;
  right: -140px;
  bottom: -10px;
  margin: auto;
}

@media screen and (max-width: 896px) {
  .point_list.col4 .col_1 {
    width: 48.5%;
    height: auto;
    margin: 3% 0 0 3%;
  }
  .point_list.col4 .col_1:nth-child(2n+1) {
    margin-left: 0;
  }
  .point_list.col4 .col_1:nth-child(-n+2) {
    margin-top: 0;
  }
  .point_list.col4 .col_1:nth-child(3), .point_list.col4 .col_1:nth-child(4) {
    margin-top: 2.5%;
  }

  .point_list.col2 {
    margin-top: 0;
  }

  .point_list.col2 .col_1 {
    width: 100%;
    height: auto;
    margin: 3% auto 0;
  }
  .point_list.col2 .col_1:nth-child(2n+1) {
    margin-left: auto;
  }
  .point_list.col2 .col_1:first-child {
    margin-top: 0;
  }
  .point_list.col2 .col_1:nth-child(-n+2) {
    margin-top: 3%;
  }
  .point_list.col2 .col_1:nth-child(3), .point_list.col2 .col_1:nth-child(4) {
    margin-top: 2.5%;
  }

  .point_list article {
    padding: 12px;
  }

  .point_list article h4.point_title {
    width: 90%;
    max-width: 240px;
    font-size: 1.6rem;
  }

  .point_list article p.feature strong {
    font-size: 1.6rem;
  }

  .point_list article.point01 .feature::before {
    right: 0;
  }

  .point_list article.point02 .feature::before {
    right: 0;
  }

  .point_list article.point04 .feature::before {
    width: 140px;
    height: 60px;
  }

  .point_list article.point05 .point_title::before {
    display: none;
  }

  .point_list article.point05 .feature::before {
    content: '';
    width: 90px;
    height: 50px;
    background: url(../images/about/icon_about_point05.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    margin: auto;
  }

  .point_list article.point06 p.feature {
    min-height: 125px;
  }

  .point_list article.point06 .point_title::before {
    display: none;
  }

  .point_list article.point06 .feature::before {
    content: '';
    width: 50px;
    height: 50px;
    background: url(../images/about/icon_about_point06.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    margin: auto;
  }
}
/* top_course
----------------------------------------------------*/
.top_course {
  margin-top: 80px;
  padding: 0 0 80px;
}
.top_course .text {
  margin-top: 40px;
}

.course_contents {
  width: 95%;
  max-width: 1760px;
  margin: 40px auto 0;
  display: flex;
}
.course_contents .course_details {
  width: 50%;
  background: #fff;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 16px;
}
.course_contents .course_details:nth-child(2) {
  margin-left: 40px;
}
.course_contents .course_details .section_sub_title {
  margin: 0 auto;
}
.course_contents .course_details figure {
  margin-top: 24px;
}
.course_contents .course_details p {
  margin-top: 24px;
}

@media screen and (max-width: 896px) {
  .top_course {
    margin-top: 64px;
    padding: 0 0 64px;
  }
  .top_course .course_contents {
    width: 90%;
    flex-direction: column;
  }
  .top_course .course_contents .course_details {
    width: 100%;
    padding: 24px 16px;
    box-sizing: border-box;
    border-radius: 16px;
  }
  .top_course .course_contents .course_details:nth-child(2) {
    margin-top: 40px;
    margin-left: auto;
  }
}
/* top_training
----------------------------------------------------*/
.top_training .training_contents {
  width: 95%;
  max-width: 1760px;
  margin: 40px auto 0;
  display: flex;
}
.top_training .training_contents figure {
  width: 50%;
  max-width: 860px;
}
.top_training .training_contents .text_area {
  width: 48%;
  max-width: 860px;
  margin-left: auto;
}
.top_training .training_contents .text_area .catch {
  margin: 0 auto 18px;
  color: #004DA0;
  font-size: 2.0rem;
  font-weight: 700;
}
.top_training .training_contents .text_area p {
  margin-top: 32px;
}
.top_training .training_contents .text_area p:first-of-type {
  margin-top: 0;
}
.top_training .training_contents .text_area p.kome {
  margin-top: 24px;
}
.top_training .training_contents .text_area .btn_list {
  margin-top: 32px;
}
.top_training .training_contents .text_area .btn_list li {
  margin-top: 10px;
}
.top_training .training_contents .text_area .btn_list li:first-child {
  margin-top: 0;
}
.top_training .training_contents .text_area .btn_list li a.button {
  width: 270px;
  padding: 13px 0 14px;
}

@media screen and (max-width: 896px) {
  .top_training .training_contents {
    width: 90%;
    flex-direction: column;
  }
  .top_training .training_contents figure {
    width: 100%;
  }
  .top_training .training_contents .text_area {
    width: 100%;
    margin: 0 auto;
  }
  .top_training .training_contents .text_area .catch {
    margin: 24px auto 16px;
    color: #004DA0;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .top_training .training_contents .text_area .btn_list {
    width: 90%;
    margin: 40px auto 0;
  }
  .top_training .training_contents .text_area .btn_list li a.button {
    width: 100%;
    padding: 13px 64px 14px;
  }
}
/* top_news
----------------------------------------------------*/
.top_news {
  margin-top: 80px;
  padding: 0 0 80px;
}
.top_news .text {
  margin-top: 40px;
}

@media screen and (max-width: 896px) {
  .top_news {
    margin-top: 64px;
    padding: 0 0 64px;
  }
}
/* top_voice
----------------------------------------------------*/
.top_voice {
  background: #FFF8B3;
  padding: 0 0 80px;
}
.top_voice .voice_slider {
  margin-top: 80px;
}
.top_voice .voice_slider .voice_list li .slide_inner {
  width: 780px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.top_voice .voice_slider .voice_list li .slide_inner figure {
  width: 155px;
}
.top_voice .voice_slider .voice_list li .slide_inner .text_area {
  width: 592px;
  min-height: 260px;
  margin-left: auto;
}
.top_voice .voice_slider .voice_list li .slide_inner .text_area h3 {
  color: #333;
  font-size: 2.0rem;
  font-weight: 900;
  padding-bottom: 12px;
  border-bottom: solid 1px #3E9FDB;
}
.top_voice .voice_slider .voice_list li .slide_inner .text_area p {
  margin-top: 24px;
}

@media screen and (max-width: 896px) {
  .top_voice {
    padding: 0 0 64px;
  }

  .top_voice .voice_slider {
    margin-top: 40px;
  }

  .top_voice .voice_slider .voice_list li .slide_inner {
    width: 100%;
    flex-direction: column;
  }
  .top_voice .voice_slider .voice_list li .slide_inner .text_area {
    width: 100%;
    margin-bottom: 40px;
  }
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: '' !important;
  color: #3E9FDB !important;
  font-family: "Font Awesome 5 Free" !important;
  font-size: 4.8rem !important;
  font-weight: 900;
  display: inline-block;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: '' !important;
  color: #3E9FDB !important;
  font-family: "Font Awesome 5 Free" !important;
  font-size: 4.8rem !important;
  font-weight: 900;
  display: inline-block;
}

@media screen and (max-width: 896px) {
  /*.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  	bottom: 0 !important;
  }*/
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    top: 15% !important;
    right: 0 !important;
    left: auto;
  }

  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    top: 15% !important;
    left: 0 !important;
    right: auto;
  }
}
/* top_contact
----------------------------------------------------*/
.top_contact {
  margin-top: 80px;
  background: #fff;
  padding: 0 0 0;
}
.top_contact .text {
  margin-top: 40px;
}

@media screen and (max-width: 896px) {
  .top_contact {
    margin-top: 64px;
  }
}
/* contact_info
--------------------------------*/
.contact_info {
  position: relative;
  width: 100%;
  height: auto;
}
.contact_info .box_contact_info {
  float: left;
  width: 48%;
  height: auto;
  margin: 2.5% 0 0 4%;
}
.contact_info .box_contact_info:nth-child(2n+1) {
  margin-left: 0;
}
.contact_info .box_contact_info:nth-child(-n+2) {
  margin-top: 0;
}
.contact_info .section_sub_title {
  margin: 40px auto 32px;
}
.contact_info .contact_detail {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.contact_info .contact_detail i {
  color: #004DA0;
  font-size: 5.6rem;
}
.contact_info .contact_detail .text_area {
  margin-left: 12px;
  width: 320px;
  text-align: center;
}
.contact_info .contact_detail .text_area .tel_num {
  color: #004DA0;
  font-size: 4.0rem;
  font-weight: 700;
}
.contact_info .contact_detail .text_area .reception_time {
  color: #333;
  font-size: 2.0rem;
  font-weight: 700;
}
.contact_info .contact_detail .text_area .reception_time span {
  margin-top: 12px;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
.contact_info .contact_detail .text_area .tel_num + .reception_time {
  margin-top: 12px;
}
.contact_info .link_btn {
  margin-top: 0;
}

@media screen and (max-width: 896px) {
  .contact_info {
    position: relative;
    width: 100%;
    height: auto;
  }
  .contact_info .box_contact_info {
    float: none;
    width: 100%;
    height: auto;
    margin: 2.5% auto 0;
  }
  .contact_info .box_contact_info:nth-child(2n+1) {
    margin-left: auto;
  }
  .contact_info .box_contact_info:nth-child(-n+2) {
    margin-top: 2.5%;
  }
  .contact_info .box_contact_info .contact_detail {
    width: 90%;
    margin: 0 auto;
  }
  .contact_info .box_contact_info .contact_detail .text_area {
    margin-left: 12px;
    width: 80%;
    text-align: center;
  }
  .contact_info .box_contact_info .contact_detail .text_area .tel_num {
    color: #004DA0;
    font-size: 3rem;
    font-weight: 700;
  }
  .contact_info .box_contact_info .contact_detail .text_area .reception_time {
    font-size: 1.6rem;
  }
  .contact_info .box_contact_info .contact_detail .text_area .reception_time span {
    font-size: 1.4rem;
  }
  .contact_info .link_btn {
    margin-top: 24px;
  }
}
/*****************************************************

 Page - about
 
*****************************************************/
/* about
----------------------------------------------------*/
.about.mainvisual .inner {
  background: url("../images/about/bg_about_mainvisual.png") no-repeat right center;
  background-size: auto;
}
.about.main_content {
  padding-bottom: 0;
}
.about .lead p {
  margin-top: 40px;
}

/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .about.mainvisual .inner {
    background-size: contain;
  }
  .about.main_content {
    padding-bottom: 0;
  }
  .about .lead p {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .about.mainvisual .inner {
    background-size: 90%;
  }
}
/* about_intro
----------------------------------------------------*/
/* about_overview
----------------------------------------------------*/
.about_overview {
  margin-top: 80px;
  padding: 0 0 80px;
}
.about_overview .overview_inner {
  background: #fff;
  padding: 48px 48px;
  box-sizing: border-box;
  border-radius: 10px;
}

@media screen and (max-width: 896px) {
  .about_overview {
    margin-top: 64px;
    padding: 0 0 64px;
  }
  .about_overview .overview_inner {
    background: #fff;
    padding: 24px 16px;
    box-sizing: border-box;
    border-radius: 10px;
  }
}
/* googlemap
----------------------------------------------------*/
.googlemap {
  margin-top: 30px;
  line-height: 0;
}
.googlemap iframe {
  border: 0;
  width: 100%;
  line-height: 0;
}

@media screen and (max-width: 896px) {
  .googlemap {
    position: relative;
    padding-bottom: 25.12%;
    padding-top: 80px;
    height: 0;
    overflow: hidden;
  }

  .googlemap iframe,
  .googlemap object,
  .googlemap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 98%;
    height: 95%;
  }
}
/*****************************************************

 Page - course
 
*****************************************************/
/* course
----------------------------------------------------*/
.course.mainvisual .inner {
  background: url("../images/course/bg_course_mainvisual.png") no-repeat right center;
  background-size: auto;
}
.course.main_content {
  padding-bottom: 0;
}

/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .course.mainvisual .inner {
    background-size: contain;
  }
}
@media screen and (max-width: 480px) {
  .course.mainvisual .inner {
    background-size: 90%;
  }
}
/* course_shogakusei
----------------------------------------------------*/
@media screen and (max-width: 896px) {
  .course_shogakusei .align_center {
    text-align: left;
  }
}
/* course_chugakusei
----------------------------------------------------*/
.course_chugakusei {
  margin-top: 80px;
  padding: 0 0 80px;
}
.course_chugakusei .comment {
  margin-top: 56px;
}

@media screen and (max-width: 896px) {
  .course_chugakusei {
    margin-top: 64px;
    padding: 0 0 64px;
  }
  .course_chugakusei .align_center {
    text-align: left;
  }
}
/* curriculum_point
----------------------------------------------------*/
.curriculum_point {
  margin-top: 56px;
  width: 90%;
  max-width: 1760px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}
.curriculum_point .box_curriculum {
  width: 30%;
  max-width: 560px;
  margin-left: 40px;
}
.curriculum_point .box_curriculum:first-child {
  margin-left: 0;
}
.curriculum_point .box_curriculum .curriculum_title {
  padding: 16px;
  background-color: #ccc;
  color: #fff;
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0;
  line-height: 1.1;
}
.curriculum_point .box_curriculum .curriculum_title.japanese {
  background-color: #F7931E;
}
.curriculum_point .box_curriculum .curriculum_title.math {
  background-color: #8CC63F;
}
.curriculum_point .box_curriculum .curriculum_title.english {
  background-color: #F973A3;
}
.curriculum_point .box_curriculum .curriculum_title.social {
  background-color: #41BEC4;
}
.curriculum_point .box_curriculum .curriculum_title.science {
  background-color: #938CD1;
}
.curriculum_point .box_curriculum .catch {
  margin: 20px auto 20px;
  color: #004DA0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 896px) {
  .curriculum_point {
    flex-direction: column;
  }
  .curriculum_point .box_curriculum {
    width: 100%;
    max-width: none;
    margin: 40px auto 0;
  }
  .curriculum_point .box_curriculum:first-child {
    margin-top: 0;
    margin-left: auto;
  }
  .curriculum_point .box_curriculum .curriculum_title {
    padding: 12px;
    font-size: 1.8rem;
  }
  .curriculum_point .box_curriculum .catch {
    font-size: 1.6rem;
  }
}
/* step_gakushu
----------------------------------------------------*/
.step_gakushu .title {
  margin: 56px auto 0;
  display: block;
  width: 355px;
  height: 102px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/course/title_stepgakushu.png) no-repeat center;
  background-size: contain;
}
.step_gakushu .step_point {
  margin-top: 40px;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
}
.step_gakushu .step_point .point_box {
  width: 23.5%;
  height: auto;
  margin: 3% 0 0 2%;
  background: #D9EBF9;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 10px;
}
.step_gakushu .step_point .point_box:nth-child(4n+1) {
  margin-left: 0;
}
.step_gakushu .step_point .point_box:nth-child(-n+4) {
  margin-top: 0;
}
.step_gakushu .step_point .point_box figure {
  width: 64px;
  margin: 0 auto;
}
.step_gakushu .step_point .point_box p {
  margin: 24px auto 0;
}
.step_gakushu .step_point .point_box.point08 {
  background: #fff;
  padding: 0 16px 16px;
}
.step_gakushu .step_point .point_box.point08 figure {
  width: 150px;
  height: 91px;
  margin: 0 auto;
}
.step_gakushu .step_point .point_box.point08 p {
  margin: 16px auto 0;
}

@media screen and (max-width: 896px) {
  .step_gakushu .title {
    margin: 40px auto 16px;
    width: 230px;
    height: 65px;
  }
  .step_gakushu .step_point {
    margin-top: 0;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .step_gakushu .step_point .point_box {
    width: 48%;
    height: auto;
    margin: 2% auto 0;
    border-radius: 10px;
  }
  .step_gakushu .step_point .point_box:nth-child(4n+1) {
    margin-left: auto;
  }
  .step_gakushu .step_point .point_box:nth-child(-n+4) {
    margin-top: 2%;
  }
  .step_gakushu .step_point .point_box:first-child {
    margin-top: 2%;
  }
  .step_gakushu .step_point .point_box p {
    margin: 16px auto 0;
  }
  .step_gakushu .step_point .point_box.point08 {
    background: #fff;
    padding: 10px 16px 16px;
  }
  .step_gakushu .step_point .point_box.point08 figure {
    width: 150px;
    height: 91px;
    margin: 0 auto;
  }
  .step_gakushu .step_point .point_box.point08 p {
    margin: 16px auto 0;
  }
}
/* lead_sub_title
----------------------------------------------------*/
.lead_sub_title {
  display: block;
  margin: 40px auto 24px;
  color: #4D4D4D;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 3px;
}
.lead_sub_title strong {
  display: block;
  margin-bottom: 6px;
  color: #E63462;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 2px;
}

@media screen and (max-width: 896px) {
  .lead_sub_title {
    margin: 24px auto 16px;
    font-size: 1.8rem;
  }
  .lead_sub_title strong {
    margin-bottom: 6px;
    font-size: 2.4rem;
  }
}
.red {
  color: #E63462;
}

/* course_initiatives
----------------------------------------------------*/
@media screen and (max-width: 896px) {
  .course_initiatives .align_center {
    text-align: left;
  }
}
/* initiatives_details
----------------------------------------------------*/
.initiatives_details {
  margin-top: 56px;
  width: 95%;
  max-width: 1760px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}
.initiatives_details .box_detail {
  max-width: 560px;
  margin-left: 40px;
  background: #D9EBF9;
  padding: 32px;
  box-sizing: border-box;
  border-radius: 10px;
}
.initiatives_details .box_detail:first-child {
  margin-left: 0;
}
.initiatives_details .box_detail .section_sub_title {
  margin: 0 auto 16px;
  line-height: 1.8;
  padding: 8px;
}
.initiatives_details .box_detail p {
  letter-spacing: 1.3px;
}

@media screen and (max-width: 896px) {
  .initiatives_details {
    margin-top: 40px;
    width: 90%;
    max-width: 1760px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .initiatives_details .box_detail {
    width: 100%;
    max-width: none;
    margin: 24px auto 0;
    background: #D9EBF9;
    padding: 24px 16px;
    box-sizing: border-box;
    border-radius: 10px;
  }
  .initiatives_details .box_detail:first-child {
    margin-top: 0;
    margin-left: auto;
  }
  .initiatives_details .box_detail .section_sub_title {
    margin: 0 auto 16px;
    line-height: 1.8;
    padding: 8px;
  }
  .initiatives_details .box_detail p {
    letter-spacing: 1.3px;
  }
}
/* course_plan_details
----------------------------------------------------*/
.course_plan_details {
  margin-top: 80px;
  /*background:#FFF8B3;*/
  padding: 0 0 80px;
}

/* course_plan
------------------------------------*/
.course_plan {
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}
.course_plan .box_plan {
  margin-left: 40px;
  width: 50%;
  background: #fff;
  padding: 32px;
  box-sizing: border-box;
  border-radius: 10px;
}
.course_plan .box_plan:first-child {
  margin-left: 0;
}
.course_plan .box_plan.chugaku .title_area .section_sub_title {
  background: #FCA629;
}
.course_plan .box_plan.chugaku .title_area .title_text {
  color: #F25100;
}
.course_plan .box_plan.chugaku .text_area .class_time {
  color: #F25100;
}
.course_plan .box_plan .title_area .section_sub_title {
  margin: 0 auto 16px;
  line-height: 1.4;
  padding: 8px;
}
.course_plan .box_plan .title_area .section_sub_title span {
  display: block;
  font-size: 2.0rem;
}
.course_plan .box_plan .title_area .step_title {
  margin: 20px auto;
  display: block;
  width: 265px;
  height: 80px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/course/title_stepgakushu.png) no-repeat center;
  background-size: contain;
}
.course_plan .box_plan .title_area .title_text {
  margin: 20px auto;
  color: #004DA0;
  font-size: 4.0rem;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  line-height: 2;
}
.course_plan .box_plan .text_area {
  border-top: dashed 2px #3E9FDB;
}
.course_plan .box_plan .text_area .class_time {
  margin-top: 16px;
  color: #004DA0;
  font-size: 2.8rem;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}
.course_plan .box_plan .text_area .curriculum_list {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.course_plan .box_plan .text_area .curriculum_list li {
  margin-left: 16px;
  width: 50px;
  height: 50px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
  padding: 11px;
  box-sizing: border-box;
}
.course_plan .box_plan .text_area .curriculum_list li:first-child {
  margin-left: 0;
}
.course_plan .box_plan .text_area .curriculum_list li.japanese {
  background-color: #F7931E;
}
.course_plan .box_plan .text_area .curriculum_list li.math {
  background-color: #8CC63F;
}
.course_plan .box_plan .text_area .curriculum_list li.english {
  background-color: #F973A3;
}
.course_plan .box_plan .text_area .curriculum_list li.social {
  background-color: #41BEC4;
}
.course_plan .box_plan .text_area .curriculum_list li.science {
  background-color: #938CD1;
}
.course_plan .box_plan .text_area .point_list {
  margin-top: 30px;
}
.course_plan .box_plan .text_area .point_list li {
  text-indent: -1.4rem;
  margin-left: 1.4rem;
}
.course_plan .box_plan .text_area .point_list li::before {
  content: '・';
}

@media screen and (max-width: 896px) {
  .course_plan {
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .course_plan:first-child {
    margin-top: 0;
  }
  .course_plan .box_plan {
    margin: 24px auto 0;
    width: 100%;
    background: #fff;
    padding: 32px 16px;
    box-sizing: border-box;
    border-radius: 10px;
  }
  .course_plan .box_plan:first-child {
    margin-top: 0;
    margin-left: auto;
  }
  .course_plan .box_plan.chugaku .title_area .section_sub_title {
    background: #FCA629;
  }
  .course_plan .box_plan.chugaku .title_area .title_text {
    color: #F25100;
  }
  .course_plan .box_plan.chugaku .text_area .class_time {
    color: #F25100;
  }
  .course_plan .box_plan .title_area .section_sub_title {
    margin: 0 auto 16px;
    line-height: 1.4;
    padding: 8px;
  }
  .course_plan .box_plan .title_area .section_sub_title span {
    display: block;
    font-size: 2.0rem;
  }
  .course_plan .box_plan .title_area .step_title {
    margin: 20px auto;
    display: block;
    width: 265px;
    height: 80px;
    text-indent: -9999px;
    overflow: hidden;
    background: url(../images/course/title_stepgakushu.png) no-repeat center;
    background-size: contain;
  }
  .course_plan .box_plan .title_area .title_text {
    margin: 20px auto;
    color: #004DA0;
    font-size: 2.4rem;
    font-family: "Zen Maru Gothic", serif;
    text-align: center;
    line-height: 2;
  }
  .course_plan .box_plan .text_area {
    border-top: dashed 2px #3E9FDB;
  }
  .course_plan .box_plan .text_area .class_time {
    margin-top: 16px;
    color: #004DA0;
    font-size: 1.8rem;
    font-family: "Zen Maru Gothic", serif;
    text-align: center;
  }
  .course_plan .box_plan .text_area .curriculum_list {
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }
  .course_plan .box_plan .text_area .curriculum_list li {
    margin-left: 16px;
    width: 40px;
    height: 40px;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    padding: 10px;
    box-sizing: border-box;
  }
  .course_plan .box_plan .text_area .curriculum_list li:first-child {
    margin-left: 0;
  }
  .course_plan .box_plan .text_area .curriculum_list li.japanese {
    background-color: #F7931E;
  }
  .course_plan .box_plan .text_area .curriculum_list li.math {
    background-color: #8CC63F;
  }
  .course_plan .box_plan .text_area .curriculum_list li.english {
    background-color: #F973A3;
  }
  .course_plan .box_plan .text_area .curriculum_list li.social {
    background-color: #41BEC4;
  }
  .course_plan .box_plan .text_area .curriculum_list li.science {
    background-color: #938CD1;
  }
  .course_plan .box_plan .text_area .point_list {
    margin-top: 30px;
  }
  .course_plan .box_plan .text_area .point_list li {
    text-indent: -1.4rem;
    margin-left: 1.4rem;
  }
  .course_plan .box_plan .text_area .point_list li::before {
    content: '・';
  }
}
/* shogakusei_plan
------------------------------------*/
.shogakusei_plan .scroll figure img {
  min-width: 1008px;
}

/* chugakusei_plan
------------------------------------*/
.chugakusei_plan .section_sub_title {
  background: #FCA629;
}
.chugakusei_plan .scroll figure img {
  min-width: 1008px;
}

/*****************************************************

 Page - training
 
*****************************************************/
/* training
----------------------------------------------------*/
.training.mainvisual .inner {
  background: url("../images/training/bg_training_mainvisual.png") no-repeat right center;
  background-size: auto;
}
.training.main_content {
  padding-bottom: 0;
}
.training .lead p {
  margin-top: 40px;
}
.training .training_course_inner {
  margin-top: 40px;
  background: #fff;
  padding: 48px 48px;
  box-sizing: border-box;
  border-radius: 10px;
}

/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .training.mainvisual .inner {
    background-size: contain;
  }
  .training.main_content {
    padding-bottom: 0;
  }
  .training .lead p {
    margin-top: 40px;
  }
  .training .training_course_inner {
    margin-top: 40px;
    background: #fff;
    padding: 24px 16px;
    box-sizing: border-box;
    border-radius: 10px;
  }
}
@media screen and (max-width: 480px) {
  .training.mainvisual .inner {
    background-size: 90%;
  }
}
/* training_intro
----------------------------------------------------*/
@media screen and (max-width: 896px) {
  .training_intro .align_center {
    text-align: left;
  }
}
/* training_bnr_season
----------------------------------------------------*/
.training_bnr_season {
  margin: 56px 0 0;
  text-align: center;
}

@media screen and (max-width: 896px) {
  .training_bnr_season {
    margin: 24px 0 0;
    text-align: center;
  }
}
/* training_shogakusei
----------------------------------------------------*/
.training_shogakusei {
  margin-top: 80px;
  padding: 0 0 80px;
  position: relative;
}
.training_shogakusei .inner::after {
  content: '';
  width: 375px;
  height: 180px;
  background: url(../images/training/figure_training_shogakusei.png) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -210px;
  bottom: -80px;
}

/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .training_shogakusei {
    margin-top: 64px;
    padding: 0 0 80px;
    position: relative;
  }
  .training_shogakusei .inner::after {
    content: '';
    width: 180px;
    height: 90px;
    background: url(../images/training/figure_training_shogakusei.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: auto;
    right: 0;
    bottom: -80px;
    margin: auto;
  }
  .training_shogakusei .inner .align_center {
    text-align: left;
  }
}
/* training_chu1chu2
----------------------------------------------------*/
.training_chu1chu2 {
  padding: 0 0 80px;
  position: relative;
}
.training_chu1chu2 .inner .training_course_inner {
  border: solid 1px #3E9FDB;
}
.training_chu1chu2 .inner::after {
  content: '';
  width: 375px;
  height: 240px;
  background: url(../images/training/figure_training_chu1chu2.png) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -210px;
  bottom: -80px;
}

/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .training_chu1chu2 {
    padding: 0 0 80px;
    position: relative;
  }
  .training_chu1chu2 .inner .training_course_inner {
    border: solid 1px #3E9FDB;
  }
  .training_chu1chu2 .inner::after {
    content: '';
    width: 195px;
    height: 120px;
    background: url(../images/training/figure_training_chu1chu2.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: auto;
    right: 0;
    bottom: -80px;
    margin: auto;
  }
  .training_chu1chu2 .inner .align_center {
    text-align: left;
  }
}
/* training_chu3
----------------------------------------------------*/
.training_chu3 {
  padding: 0 0 80px;
  background: #FFF8B3;
  position: relative;
}
.training_chu3 .inner::after {
  content: '';
  width: 375px;
  height: 240px;
  background: url(../images/training/figure_training_chu3.png) no-repeat center;
  background-size: contain;
  position: absolute;
  right: -210px;
  bottom: -80px;
}

/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .training_chu3 {
    padding: 0 0 80px;
    background: #FFF8B3;
    position: relative;
  }
  .training_chu3 .inner::after {
    content: '';
    width: 195px;
    height: 120px;
    background: url(../images/training/figure_training_chu3.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: auto;
    right: 0;
    bottom: -80px;
    margin: auto;
  }
  .training_chu3 .inner .align_center {
    text-align: left;
  }
}
/*****************************************************

 Page - contact
 
*****************************************************/
/* contact
----------------------------------------------------*/
.contact.mainvisual .inner {
  background: url("../images/contact/bg_contact_mainvisual.png") no-repeat right center;
  background-size: auto;
}
.contact.mainvisual .inner .title_area {
  width: 880px;
  height: 70px;
}
.contact.main_content {
  padding-bottom: 0;
}
.contact .lead p {
  margin-top: 40px;
}

/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .contact.mainvisual .inner {
    background-size: contain;
  }
  .contact.mainvisual .inner .title_area {
    width: 100%;
    height: 24px;
  }
  .contact.main_content {
    padding-bottom: 0;
  }
  .contact .lead p {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .contact.mainvisual .inner {
    background-size: 90%;
  }
}
/* box_contact
----------------------------------------------------*/
.box_contact {
  margin: 0 auto;
  width: 470px;
  background: #fff;
  padding: 0 40px;
  box-sizing: border-box;
  border-radius: 10px;
}
.box_contact .section_sub_title {
  margin: 40px auto 32px;
}
.box_contact .contact_detail {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  line-height: 1;
}
.box_contact .contact_detail i {
  margin-top: 10px;
  color: #004DA0;
  font-size: 5.6rem;
}
.box_contact .contact_detail .text_area {
  margin-left: 12px;
  width: 320px;
  text-align: center;
}
.box_contact .contact_detail .text_area .tel_num {
  margin-top: 0;
  color: #004DA0;
  font-size: 4.0rem;
  font-weight: 700;
}
.box_contact .contact_detail .text_area .reception_time {
  color: #333;
  font-size: 2.0rem;
  font-weight: 700;
}
.box_contact .contact_detail .text_area .reception_time span {
  margin-top: 12px;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
.box_contact .contact_detail .text_area .tel_num + .reception_time {
  margin-top: 12px;
}
.box_contact .link_btn {
  margin-top: 32px;
}

@media screen and (max-width: 896px) {
  .box_contact {
    width: 90%;
    max-width: 470px;
    padding: 0 0;
  }
  .box_contact .contact_detail .text_area {
    margin-left: 12px;
    width: 80%;
    text-align: center;
  }
  .box_contact .contact_detail .text_area .tel_num {
    color: #004DA0;
    font-size: 3rem;
    font-weight: 700;
  }
  .box_contact .contact_detail .text_area .reception_time {
    font-size: 1.6rem;
  }
  .box_contact .contact_detail .text_area .reception_time span {
    font-size: 1.4rem;
  }
}
/* contact_mailform
----------------------------------------------------*/
.contact_mailform {
  margin-top: 80px;
  padding: 0 0 80px;
}
.contact_mailform .mailform_inner {
  margin-top: 40px;
  background: #fff;
  padding: 48px 48px;
  box-sizing: border-box;
  border-radius: 10px;
}

@media screen and (max-width: 896px) {
  .contact_mailform {
    margin-top: 64px;
    padding: 0 0 64px;
  }
  .contact_mailform .mailform_inner {
    margin-top: 40px;
    background: #fff;
    padding: 0 16px 24px;
    box-sizing: border-box;
    border-radius: 10px;
  }
}
/* poricy_scroll_box
-----------------------------------*/
.poricy_scroll_box {
  margin-top: 40px;
  width: auto;
  height: 290px;
  padding: 24px;
  box-sizing: border-box;
  border: 1px #fff solid;
  background: #fff;
  overflow-y: scroll;
}
.poricy_scroll_box h4 {
  margin: 32px auto 16px;
  font-weight: 700;
}
.poricy_scroll_box ul {
  margin: 8px 8px;
}
.poricy_scroll_box ul li {
  text-indent: -1.4rem;
  margin-left: 1.4rem;
}

@media screen and (max-width: 896px) {
  .poricy_scroll_box {
    margin-top: 24px;
    width: auto;
    height: 290px;
    padding: 16px;
  }
}
/* form_tbl
-----------------------------------*/
table.form_tbl {
  width: 100%;
  font-weight: 400;
  line-height: 1;
}
table.form_tbl tr {
  border-bottom: dashed 2px #3E9FDB;
}
table.form_tbl tr th {
  /*width:284px;*/
  width: 240px;
  padding: 24px 20px 24px 0;
  color: #333333;
  text-align: left;
  vertical-align: top;
}
table.form_tbl tr th span.notice {
  display: block;
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.6;
}
table.form_tbl tr td {
  padding: 16px 20px 16px 20px;
  font-size: 1.4rem;
  color: #666666;
}

@media screen and (max-width: 820px) {
  table.form_tbl {
    width: 100%;
    font-weight: 400;
    line-height: 1;
  }
  table.form_tbl tr {
    border-bottom: dashed 2px #3E9FDB;
  }
  table.form_tbl tr th {
    display: block;
    width: 100%;
    padding: 24px 8px 16px;
    box-sizing: border-box;
    color: #333333;
    text-align: left;
  }
  table.form_tbl tr th span.notice {
    margin-top: 20px;
    font-size: 1.4rem;
  }
  table.form_tbl tr td {
    display: block;
    width: 100%;
    padding: 0 8px 16px;
    box-sizing: border-box;
    color: #666666;
  }
}
/* フォーム関係リセット
----------------------------------------------------*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  appearance: auto;
}

/* フォーム関係装飾
----------------------------------------------------*/
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], textarea, select {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #c4c4c4;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-family: 'Noto Sans Japanese', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
}
input[type="text"].w90, input[type="tel"].w90, input[type="email"].w90, input[type="date"].w90, textarea.w90, select.w90 {
  width: 90%;
}
input[type="text"].w80, input[type="tel"].w80, input[type="email"].w80, input[type="date"].w80, textarea.w80, select.w80 {
  width: 80%;
}
input[type="text"].w70, input[type="tel"].w70, input[type="email"].w70, input[type="date"].w70, textarea.w70, select.w70 {
  width: 70%;
}
input[type="text"].w60, input[type="tel"].w60, input[type="email"].w60, input[type="date"].w60, textarea.w60, select.w60 {
  width: 60%;
}
input[type="text"].w50, input[type="tel"].w50, input[type="email"].w50, input[type="date"].w50, textarea.w50, select.w50 {
  width: 50%;
}
input[type="text"].w40, input[type="tel"].w40, input[type="email"].w40, input[type="date"].w40, textarea.w40, select.w40 {
  width: 40%;
}
input[type="text"].grade, input[type="tel"].grade, input[type="email"].grade, input[type="date"].grade, textarea.grade, select.grade {
  width: 20%;
  margin: 0 0 0 16px;
}
input[type="text"].zip, input[type="tel"].zip, input[type="email"].zip, input[type="date"].zip, textarea.zip, select.zip {
  width: 40%;
}
input[type="text"].addr, input[type="tel"].addr, input[type="email"].addr, input[type="date"].addr, textarea.addr, select.addr {
  width: 100%;
}

select {
  padding: 6px 12px 8px;
}

input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  box-shadow: 0 0 4px #8bd2f5;
  border: 1px solid #8bd2f5;
}

textarea {
  height: 180px;
}

.wpcf7-form-control-wrap.course {
  display: block;
}
.wpcf7-form-control-wrap.course span.wpcf7-list-item {
  width: 50%;
  height: auto;
  margin: 16px 0 0 0 !important;
}
.wpcf7-form-control-wrap.course span.wpcf7-list-item:nth-child(2n+1) {
  margin-left: 0 !important;
}

.coursekome {
  display: block;
  margin: 0 0 16px 0;
}

.zip_btn {
  margin-left: 24px;
  color: #fff;
  background: #666;
  padding: 8px 24px;
  border-radius: 4px;
  cursor: pointer;
  cursor: hand;
}

@media screen and (max-width: 820px) {
  input[type="text"].w90, input[type="text"].w80, input[type="text"].w70, input[type="text"].w60, input[type="text"].w50, input[type="text"].w40, input[type="tel"].w90, input[type="tel"].w80, input[type="tel"].w70, input[type="tel"].w60, input[type="tel"].w50, input[type="tel"].w40, input[type="email"].w90, input[type="email"].w80, input[type="email"].w70, input[type="email"].w60, input[type="email"].w50, input[type="email"].w40, textarea.w90, textarea.w80, textarea.w70, textarea.w60, textarea.w50, textarea.w40, select.w90, select.w80, select.w70, select.w60, select.w50, select.w40 {
    width: 100%;
  }
  input[type="text"].grade, input[type="tel"].grade, input[type="email"].grade, textarea.grade, select.grade {
    margin: 10px 0 0 0;
    width: 40%;
  }
  input[type="text"].zip, input[type="tel"].zip, input[type="email"].zip, textarea.zip, select.zip {
    width: 50%;
  }
  input[type="text"].addr, input[type="tel"].addr, input[type="email"].addr, textarea.addr, select.addr {
    width: 100%;
    margin-top: 16px;
  }

  .zip_btn {
    margin-left: 20px;
    color: #fff;
    background: #666;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    cursor: hand;
    width: 40%;
    font-size: 1.2rem;
  }

  .wpcf7-form-control-wrap.course {
    display: block;
  }
  .wpcf7-form-control-wrap.course span.wpcf7-list-item {
    width: 100%;
    height: auto;
    margin: 0px 22px 16px 0 !important;
  }
  .wpcf7-form-control-wrap.course span.wpcf7-list-item:nth-child(2n+1) {
    margin-left: 0 !important;
  }
}
/* Chrome */
::-webkit-input-placeholder {
  color: #cccccc;
}

/* Firefox */
::-moz-placeholder {
  color: #cccccc;
}

/* IE */
:-ms-input-placeholder {
  color: #cccccc;
}

.wpcf7-select {
  overflow: hidden;
  width: 50%;
  text-align: center;
}

.wpcf7-select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7-select select::-ms-expand {
  display: none;
}

.select_btn {
  position: relative;
  border-radius: 2px;
  background: transparent;
}

.select_btn::before {
  position: absolute;
  top: 0.6em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  pointer-events: none;
  z-index: 1;
}

.select_btn:after {
  position: absolute;
  top: -9px;
  right: 0;
  bottom: 0;
  width: 41px;
  height: 41px;
  content: '';
  background: #ccc;
  pointer-events: none;
  border-top-right-radius: 4px;
}

.select_btn select {
  padding: 8px 38px 8px 12px;
  color: #666666;
}

.wpcf7-custom-item-error .naiyou::before, .wpcf7-custom-item-error .naiyou::after {
  display: none;
}

span.wpcf7-list-item {
  width: 100%;
  display: inline-block;
  margin: 0px 24px 10px 0 !important;
}
span.wpcf7-list-item:first-of-type {
  margin-left: 0 !important;
}

@media screen and (max-width: 820px) {
  span.wpcf7-list-item {
    width: 100%;
    display: inline-block;
    margin: 10px 0 0 0 !important;
  }
  span.wpcf7-list-item:first-of-type {
    margin-top: 0 !important;
    margin-left: 0 !important;
  }
}
input[type="checkbox"], input[type="radio"] {
  display: none;
}

label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 22px;
  cursor: pointer;
}

label::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
}

input[type="radio"] label {
  padding: 3px 3px 3px 0;
}

input[type="checkbox"]:checked + span.wpcf7-list-item-label::after {
  position: absolute;
  content: '';
  top: 7px;
  left: 3px;
  width: 15px;
  height: 6px;
  border-left: 2px solid #206a97;
  border-bottom: 2px solid #206a97;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  position: absolute;
  content: '';
  top: 7px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #206a97;
}

@media screen and (max-width: 896px) {
  input[type="checkbox"]:checked + span.wpcf7-list-item-label::after {
    top: 6px;
  }

  input[type="radio"]:checked + span.wpcf7-list-item-label::after {
    top: 7px;
  }

  .wpcf7 input[type="date"] {
    appearance: auto;
    height: 40px;
  }
}
/*来店／引き取り*/
@media screen and (max-width: 896px) {
  .reserve_leave span.wpcf7-list-item {
    display: inline-block;
    margin: 6px 0 0 1em !important;
  }
  .reserve_leave span.wpcf7-list-item:first-of-type {
    margin: 0 0 0 0 !important;
  }
}
@media screen and (max-width: 585px) {
  .reserve_leave span.wpcf7-list-item {
    display: inline-block;
    margin: 6px 0 0 0 !important;
  }
  .reserve_leave span.wpcf7-list-item:first-of-type {
    margin: 0 0 0 0 !important;
  }
}
@media screen and (max-width: 420px) {
  .reserve_leave .last input[type="radio"]:checked + span.wpcf7-list-item-label::after {
    top: 13px;
  }
}
.radio-label label::before {
  border-radius: 50%;
}

/*contactform7 エラーメッセージ*/
span.wpcf7-not-valid-tip {
  margin-top: 12px;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

/* agree_checkbox
-----------------------------------*/
.agree_checkbox {
  margin-top: 32px;
  width: 100%;
  display: block;
  font-size: 1.4rem;
  text-align: center;
  background: #D9EBF9;
  padding: 16px;
  box-sizing: border-box;
}

@media screen and (max-width: 896px) {
  .agree_checkbox {
    font-size: 1.3rem;
  }
}
/* btn_base
-----------------------------------*/
.btn_base {
  width: 300px;
  background-color: #004DA0;
  border: 2px solid #004DA0;
  color: #fff;
  transition: all .3s;
  font-size: 1.6rem;
  font-weight: 700;
  background: #004DA0;
  padding: 13px 64px 14px;
  border-radius: 10px;
}
.btn_base:hover {
  color: #004DA0;
  background-color: #fff;
  border: 2px solid #004DA0;
}

/*****************************************************

 Page - news
 
*****************************************************/
/* news
----------------------------------------------------*/
.news.mainvisual .inner {
  background: url("../images/news/bg_news_mainvisual.png") no-repeat right center;
  background-size: auto;
}
.news.main_content {
  padding-bottom: 80px;
}
.news .lead p {
  margin-top: 40px;
}

/*@media screen and (max-width:896px) {*/
@media screen and (max-width: 1030px) {
  .news.mainvisual .inner {
    background-size: contain;
  }
  .news.main_content {
    padding-bottom: 80px;
  }
  .news .lead p {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .news.mainvisual .inner {
    background-size: 90%;
  }
}
/* news_post_title
-----------------------------------*/
.news_post_title {
  margin-top: 80px;
  display: block;
}
.news_post_title .date {
  color: #3E9FDB;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-align: center;
}
.news_post_title .section_title {
  margin: 80px auto 20px;
}

/*　editor_area エディター装飾
----------------------------------------------------*/
.editor_area {
  margin: 40px auto 0;
  width: 100%;
  max-width: 800px;
  height: auto;
  /*h3 + p{
  	margin-top: -24px;
  }*/
  /*h4 + p{
  	margin-top: -16px;
  }*/
}
.editor_area img:first-child, .editor_area p:first-child, .editor_area ul:first-child, .editor_area ol:first-child, .editor_area h3:first-child, .editor_area h4:first-child {
  margin-top: 0;
}
.editor_area img {
  max-width: 100%;
  height: auto;
  margin-top: 32px;
  border: none !important;
  vertical-align: bottom;
}
.editor_area .gallery {
  margin-top: 14px !important;
}
.editor_area p {
  margin-top: 16px;
  line-height: 1.9;
}
.editor_area a {
  color: #f78f93;
  border-bottom: solid 1px #f78f93;
}
.editor_area strong {
  font-weight: 700;
}
.editor_area em {
  font-style: italic;
}
.editor_area blockquote {
  font-style: italic;
}
.editor_area ul {
  margin-top: 16px;
  list-style: disc;
  padding-left: 2.2rem;
}
.editor_area ul li {
  margin-top: 8px;
}
.editor_area ul li:first-child {
  margin-top: 0;
}
.editor_area ol {
  margin-top: 16px;
  list-style: decimal;
  padding-left: 2.2rem;
}
.editor_area ol li {
  margin-top: 8px;
}
.editor_area ol li:first-child {
  margin-top: 0;
}
.editor_area hr {
  border: 0;
  border-top: 1px #cccccc dotted;
  margin-top: 40px;
  margin-bottom: 40px;
}
.editor_area hr + img, .editor_area hr + p, .editor_area hr + ul, .editor_area hr + ol, .editor_area hr + h3, .editor_area hr + h4 {
  margin-top: 0;
}
.editor_area h3 {
  display: block;
  /*margin:40px auto 32px;*/
  margin: 56px auto -8px;
  color: #3E9FDB;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 6px 0;
  border-bottom: solid 1px #3E9FDB;
  position: relative;
}
.editor_area h3:first-child {
  margin-top: 0;
}
.editor_area h4 {
  /*margin: 32px auto 24px;*/
  margin: 32px auto -4px;
  color: #4D4D4D;
  font-size: 1.6rem;
  font-weight: 700;
}
.editor_area h4:first-child {
  margin-top: 0;
}

/*----------------------------------------------------

2024.01.24 追加CSS

----------------------------------------------------*/
/* top_course
----------------------------------------------------*/
.course_contents .course_details .catch {
  margin: 16px auto 24px;
  color: #E63462;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  line-height: 1.4;
}
.course_contents .course_details article + article {
  margin-top: 80px;
}

@media screen and (max-width: 896px) {
  .top_course .course_contents .course_details .section_sub_title {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
  }
  .top_course .course_contents .course_details .catch {
    margin: 16px auto 16px;
    font-size: 1.6rem;
  }
  .top_course .course_contents .course_details .catch + figure {
    margin-top: 16px;
  }
  .top_course .course_contents .course_details article + article {
    margin-top: 48px;
  }
}
/* 小学生スモールクラス・中学生スモールクラス
----------------------------------------------------*/
/* course_small_class
----------------------------------------------------*/
.course_small_class {
  background: #FFF8B3;
  padding: 0 0 80px;
  /*概要*/
  /*時間と料金*/
}
.course_small_class dl.outline {
  margin-top: 24px;
  display: flex;
  align-items: center;
}
.course_small_class dl.outline dt {
  color: #E63462;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4;
}
.course_small_class dl.outline dd {
  margin-left: 16px;
}
.course_small_class dl.schedule_charge {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
}
.course_small_class dl.schedule_charge dt {
  width: 50%;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  background: #3E9FDB;
  border-radius: 15px;
}
.course_small_class dl.schedule_charge dd {
  width: 50%;
  margin-left: 24px;
}
.course_small_class dl.schedule_charge dd span.small {
  display: block;
  margin-top: 6px;
  font-size: 1.4rem;
  line-height: 1.5;
}

dl.outline + .details_wrap .course_plan {
  margin-top: 24px;
}

@media screen and (max-width: 896px) {
  .course_small_class {
    /*概要*/
    /*時間と料金*/
  }
  .course_small_class .course_plan .box_plan {
    padding: 16px 16px 24px;
  }
  .course_small_class dl.outline {
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .course_small_class dl.outline dt {
    font-size: 1.8rem;
  }
  .course_small_class dl.outline dd {
    margin: 6px auto 0;
  }
  .course_small_class dl.schedule_charge {
    margin-top: 16px;
    align-items: flex-start;
  }
  .course_small_class dl.schedule_charge dt {
    width: 40%;
    font-size: 1.4rem;
  }
  .course_small_class dl.schedule_charge dd {
    width: 60%;
    margin-left: 16px;
  }
  .course_small_class dl.schedule_charge dd span.small {
    display: block;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
/* shogakusei_smallclass
------------------------------------*/
/* chugakusei_smallclass
------------------------------------*/
.chugakusei_smallclass {
  /*時間と料金*/
}
.chugakusei_smallclass .section_sub_title {
  background: #FCA629;
}
.chugakusei_smallclass dl.schedule_charge dt {
  background: #FCA629;
}

/* course_plan
------------------------------------*/
.course_plan .box_plan > .section_sub_title02 {
  margin-top: 0;
}

.course_plan02 .box_plan.col1 {
  margin: 40px auto 0;
  width: 100%;
  background: #fff;
  padding: 32px;
  box-sizing: border-box;
  border-radius: 10px;
}
.course_plan02 .box_plan.col1 > .section_sub_title02 {
  margin-top: 0;
}
.course_plan02 .ttl_sc_course {
  margin: 0 auto 24px;
  text-align: center;
  color: #E63462;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4;
}
.course_plan02 .ttl_sc_course span.small {
  display: block;
  color: #333333;
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-family: "Noto Sans Japanese";
}

@media screen and (max-width: 896px) {
  .course_plan02 .box_plan.col1 {
    margin: 40px auto 0;
    width: 100%;
    background: #fff;
    padding: 16px 16px 24px;
    box-sizing: border-box;
    border-radius: 10px;
  }
  .course_plan02 .box_plan.col1 > .section_sub_title02 {
    margin-top: 0;
  }
  .course_plan02 .ttl_sc_course {
    font-size: clamp(2rem, 2vw, 2.4rem);
  }
  .course_plan02 .ttl_sc_course span.small {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    margin-bottom: 6px;
  }
}
.ttl_sc_course02 {
  margin: 0 auto 16px;
  text-align: left;
  color: #F25100;
  font-size: 2.0rem;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4;
}

@media screen and (max-width: 896px) {
  .ttl_sc_course02 {
    margin: 24px auto 0;
    text-align: left;
    color: #F25100;
    font-size: 1.6rem;
    font-family: "Zen Maru Gothic", serif;
    line-height: 1.4;
  }
}
/*目標に合わせてコースも選択！*/
.box_orange {
  background: #FFF1E1;
  padding: 24px 24px;
  box-sizing: border-box;
}

@media screen and (min-width: 897px) {
  .col_box + .box_orange {
    margin-top: 40px;
  }
  .col_box + .box_orange .col_box .col2:first-child {
    padding-right: 24px;
    box-sizing: border-box;
  }
  .col_box + .box_orange .col_box .col2:nth-child(2) {
    padding-left: 24px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 896px) {
  .box_orange {
    margin-top: 24px;
    background: #FFF1E1;
    padding: 24px 16px;
    box-sizing: border-box;
  }
  .box_orange.sp_col1 {
    margin-top: 24px;
  }
}
/*自学年の学習を希望したいけどスピード・正確性も身に付けたい…*/
.point_txt {
  /*margin-left:24px;*/
  position: relative;
}
.point_txt p {
  width: calc(100% - 170px);
  font-size: 1.4rem;
}
.point_txt figure {
  width: 180px;
  position: absolute;
  bottom: -24px;
  right: -24px;
}

@media screen and (max-width: 896px) {
  .point_txt {
    margin: 12px auto 0;
    position: relative;
  }
  .point_txt p {
    width: 100%;
    font-size: 1.4rem;
  }
  .point_txt figure {
    width: 120px;
    position: relative;
    bottom: -24px;
    right: 0;
    left: 0;
    margin: auto;
  }
}
/*----------------------------------------------------

2024.07.03 追加CSS

----------------------------------------------------*/
/* top_training_summer
----------------------------------------------------*/
.top_training_summer {
  margin: 80px auto;
}
.top_training_summer figure img {
  /*border:solid 1px #ccc;*/
  box-sizing: border-box;
}
.top_training_summer .btn_list .button {
  width: 100%;
  height: 69px;
  padding: 11px 64px 14px;
  border: 4px solid #004DA0;
}
.top_training_summer .btn_list .tel_num .button {
  color: #004DA0;
  background: #fff;
  font-size: 2.4rem;
}
.top_training_summer .btn_list .tel_num .button a {
  color: #004DA0;
}
.top_training_summer .btn_list .tel_num .sp_none {
  font-size: 4.0rem;
  vertical-align: text-bottom;
}
.top_training_summer .btn_list .tel_num .pc_none {
  font-size: 4.0rem;
  vertical-align: text-bottom;
}
.top_training_summer .btn_list .contact a {
  font-size: 2.4rem;
  line-height: 1.6;
}

@media screen and (max-width: 896px) {
  .top_training_summer {
    margin: 64px auto;
  }
  .top_training_summer .btn_list .button {
    height: auto;
    padding: 11px 0 11px;
    border: 3px solid #004DA0;
  }
  .top_training_summer .btn_list .tel_num .button {
    font-size: 1.4rem;
  }
  .top_training_summer .btn_list .tel_num .pc_none {
    font-size: 2.2rem;
  }
  .top_training_summer .btn_list .contact a {
    font-size: 1.8rem;
  }
}
/* smallclass_natsu
------------------------------------*/
.smallclass_natsu {
  /*時間と料金*/
}
.smallclass_natsu .section_sub_title.natsu {
  background: #0b318f;
}
.smallclass_natsu .section_sub_title.natsu .small {
  font-size: 85%;
}
.smallclass_natsu .course_plan .box_plan {
  background: #fff;
}
.smallclass_natsu dl.schedule_charge dt {
  background: #0b318f;
}
.smallclass_natsu dl.schedule_charge dd {
  font-size: 1.4rem;
}
.smallclass_natsu dl.schedule_charge dd strong {
  display: block;
  color: #E63462;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4;
  letter-spacing: 0;
}
.smallclass_natsu dl.schedule_charge dd .tax {
  font-size: 75%;
}

@media screen and (max-width: 896px) {
  .smallclass_natsu dl.schedule_charge dt {
    border-radius: 30px;
    line-height: 1.2;
    padding: 4px 0;
  }
}
