@charset "UTF-8";
@import url("grid.css");
img {
  width: 100%;
  height: auto;
  /*高さ自動*/
  vertical-align: bottom;
}

a {
  display: block;
  -webkit-text-decoration-line: none;
     -moz-text-decoration-line: none;
          text-decoration-line: none;
}

a:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  scroll-behavior: smooth;
}

/*表示・非表示切り替え
-------------------------------------*/
.pc_mode {
  display: block;
}

.sp_mode {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_mode {
    display: none;
  }
  .sp_mode {
    display: block;
  }
}

/*ヘッダー
-------------------------------------*/
header {
  position: fixed;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99999;
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0 1px 1px 2px rgba(0, 0, 1, 0.055);
          box-shadow: 0 1px 1px 2px rgba(0, 0, 1, 0.055);
}

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

.header_wrap h1 {
  width: 20%;
  margin: 10px;
}

.header_wrap nav {
  width: 80%;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

ul.gnav {
  width: 100%;
  max-width: 1024px;
  display: inline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

ul.gnav li {
  margin-right: 10px;
  margin-bottom: 0;
}

ul.gnav li:last-child {
  margin-right: 0;
}

nav li a {
  text-decoration: none;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  display: block;
  color: #282771;
  font-weight: bolder;
  padding: 0.5em 1em;
}

nav a:hover {
  -webkit-text-decoration: under_line;
          text-decoration: under_line;
}

#navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cv_head_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 80%;
  margin-left: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.navi ul {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 779px) {
  /* PC時はMENUボタンを非表示 */
  #open,
  #close {
    display: none !important;
  }
  #navi {
    display: block !important;
  }
}

@media screen and (max-width: 779px) {
  header {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  header .container {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  header .row {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0;
  }
  .header_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header_wrap h1 {
    width: 60%;
    margin: 0;
    margin: 10px;
  }
  .header_wrap nav {
    width: 100%;
  }
  .header_wrap #open,
  #close {
    position: absolute;
    top: 5px;
    right: 10px;
  }
  nav {
    background: #282771;
  }
  nav ul {
    max-width: 90%;
    margin: auto;
    padding: 0 2em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav ul li:last-child {
    margin-bottom: 2em;
  }
  #navi a {
    color: #fff;
  }
  .header_wrap li {
    padding-top: 0;
  }
  .cv_head_area {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 700px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2em;
  }
  .cv_head_area img {
    margin-bottom: 10px;
  }
  /* スマホ時はMENUボタンを表示 */
  #open,
  #close {
    display: block;
    width: 50px;
    border: none;
    position: absolute;
    top: 5px;
    right: 10px;
  }
  /* スマホ時はメニューを非表示 */
  #navi {
    display: none;
  }
}

/*メインコンテンツ
-------------------------------------*/
.contnt_wrap {
  max-width: 780px;
  margin: auto;
}

main {
  margin: auto;
  padding-top: 125px;
}

@media screen and (max-width: 769px) {
  main {
    margin: auto;
    padding-top: 65px;
  }
}

.gray-back {
  background-color: #f4f4f4;
}

/*スライドボタン
-------------------------------------*/
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  -moz-border-radius: 0;
       border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 9999;
  min-height: 30px;
}

.slide-arrow {
  position: absolute;
  top: 20%;
  height: 100%;
}

.prev-arrow {
  left: 0;
  top: 50%;
  width: 15%;
  height: 15%;
  background: none;
}

.next-arrow {
  right: 0;
  top: 50%;
  width: 15%;
  height: 15%;
  background: none;
}

.slider_1 .prev-arrow {
  top: 35%;
}

.slider_1 .next-arrow {
  top: 35%;
}

.slider_2 .prev-arrow {
  top: 455px;
  height: 5%;
  min-height: 100px;
}

.slider_2 .next-arrow {
  top: 455px;
  height: 5%;
  min-height: 100px;
}

.slider_3 {
  margin-top: 2em;
  margin-bottom: 2em;
}

.slider_3 .prev-arrow {
  top: 45%;
  height: 12%;
}

.slider_3 .next-arrow {
  top: 45%;
  height: 12%;
}

.slider_4-voice1 {
  margin-bottom: 1em;
}

.slider_4-voice1 .prev-arrow {
  top: 0;
  height: 100%;
}

.slider_4-voice1 .next-arrow {
  top: 0;
  height: 100%;
}

.slider_4-voice2 .prev-arrow {
  top: 0;
  height: 100%;
}

.slider_4-voice2 .next-arrow {
  top: 0;
  height: 100%;
}

.part01 .contnt_wrap .wrapper {
  width: 100%;
}

.part01 .contnt_wrap .wrapper .tab {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}

.part01 .contnt_wrap .wrapper .tab li {
  list-style: none;
  width: 33.33%;
  margin: 0;
}

.part01 .contnt_wrap .wrapper .tab li a {
  display: block;
}

.part01 .contnt_wrap .wrapper .area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  background: #fff;
}

.part01 .contnt_wrap .wrapper .area.is-active {
  display: block;
  /*表示*/
  -webkit-animation-name: displayAnime;
     -moz-animation-name: displayAnime;
          animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
     -moz-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
     -moz-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cv_area_03 .contnt_wrap {
  background: url(../img/part03_21.png);
  background-position: top right;
  padding-top: 100px;
  padding-bottom: 100px;
}

.cv_area_04 .contnt_wrap {
  position: relative;
}

.cv_area_04 .contnt_wrap a {
  position: absolute;
  width: 86%;
  left: 7.5%;
}

.cv_area_04 .contnt_wrap a img {
  width: 100%;
}

.cv_area_04 .contnt_wrap .bnfb_45 {
  top: 36%;
}

.cv_area_04 .contnt_wrap .bnfb_3 {
  top: 50%;
}

.cv_area_04 .contnt_wrap .anc_6_link2 {
  top: 55%;
}

.cv_area_04 .contnt_wrap_link {
  width: 90%;
  height: 18%;
  bottom: 18%;
  left: 5%;
}

.cv_area_06 .contnt_wrap {
  padding: 10px 0px;
}

@media screen and (max-width: 720px) {
  .slider_4 .prev-arrow {
    top: 0;
    height: 30%;
    max-height: 350px;
  }
  .slider_4 .next-arrow {
    top: 0;
    height: 30%;
    max-height: 350px;
  }
}

@media screen and (max-width: 620px) {
  .slider_4 .prev-arrow {
    top: 0;
    height: 30%;
    max-height: 250px;
  }
  .slider_4 .next-arrow {
    top: 0;
    height: 30%;
    max-height: 250px;
  }
}

.slider_5 {
  background: url(../img/part03_11.png);
  background-position: bottom right;
}

.slider_5 .prev-arrow {
  top: 0;
  height: 5%;
  min-height: 80px;
}

.slider_5 .next-arrow {
  top: 0;
  height: 5%;
  min-height: 80px;
}

@media screen and (max-width: 779px) {
  .slider_5 .prev-arrow {
    top: 5px;
    height: 12%;
    max-height: 60px;
    min-height: 15px;
  }
  .slider_5 .next-arrow {
    top: 5px;
    height: 12%;
    max-height: 60px;
    min-height: 15px;
  }
  .slider_2 .prev-arrow {
    top: 17%;
    height: 5%;
    min-height: 50px;
  }
  .slider_2 .next-arrow {
    top: 17%;
    height: 5%;
    min-height: 50px;
  }
}

/*MVエリア
-------------------------------------*/
.mv_wrap {
  max-width: 780px;
  margin: auto;
}

/*合格の道はここから始まる
-------------------------------------*/
ul.school {
  list-style: none;
  margin-bottom: 20px;
}

ul.school li {
  margin: 0;
  padding: 0;
}

ul.school {
  margin: auto;
  margin-top: 1em;
  margin-bottom: 2em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: bolder;
  text-align: center;
  color: #fff;
}

ul.school .school_col {
  width: -webkit-calc(100% / 3 - 10px);
  width: -moz-calc(100% / 3 - 10px);
  width: calc(100% / 3 - 10px);
  margin-right: 10px;
  background: #282771;
  -moz-border-radius: 10px;
       border-radius: 10px;
  overflow-wrap: normal;
  margin-bottom: 1em;
  line-height: 1.4;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

ul.school .school_col:nth-child(3n) {
  margin-right: 0;
}

ul.school .school_col a {
  width: 100%;
  padding: 1em;
  display: block;
  color: #fff;
}

/*message
-------------------------------------*/
.message {
  background: #282771;
  margin: auto;
  text-align: center;
  padding: 4em;
}

.message img {
  display: block;
  margin: auto;
}

.message img.message_logo {
  max-width: 200px;
  margin-bottom: 2em;
}

.message img.message_txt {
  max-width: 662px;
}

/*フッター
-------------------------------------*/
footer {
  background: #0d1268;
  padding: 40px;
}

/*logo+電話番号*/
.footer_info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

.footer_info .footer_logo {
  max-width: 315px;
  margin-bottom: 40px;
}

.footer_info .footer_tel {
  max-width: 702px;
  margin: 30px 0;
}

@media screen and (max-width: 779px) {
  .footer_info {
    text-align: center;
  }
  .footer_info .footer_tel {
    margin: 20px auto;
  }
  .footer_info figure {
    max-width: 70%;
    margin-bottom: 20px;
  }
  .copyright {
    font-size: 10px;
  }
}

/*コピーライト*/
.copyright {
  text-align: center;
  display: block;
  padding: 1rem 0;
  color: white;
}

/*個人情報保護*/
.privacy {
  text-align: center;
}

.privacy a {
  text-decoration: underline;
  color: #282771;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
}

#pagetop a {
  display: block;
  background: #282771;
  color: #fff;
  width: 50px;
  padding: 10px 5px;
  text-align: center;
}

#pagetop a:hover {
  background: #666;
}

/* 幅779px以下の表示
-------------------------------------*/
@media screen and (max-width: 779px) {
  /*ヘッダー
-------------------------------------*/
  .header_wrap-box {
    display: none;
  }
  /*お問い合わせ
-------------------------------------*/
  .table th {
    width: 100%;
    display: block;
  }
  .table td {
    display: block;
  }
}
