@charset "UTF-8";
/*ヘッダー*/
#header .header-lft {
  max-width: 230px;
}

@media screen and (max-width: 350px) {
  #header .header-lft {
    max-width: 200px;
  }
}
body {
  font-family: "Zen Old Mincho", serif;
}

.gothic {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.ernie {
  font-family: adobe-handwriting-ernie, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-mincho {
  font-family: "Zen Old Mincho", serif;
}

.zen-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.eng {
  font-family: "Crimson Text", serif;
}

.wrap {
  padding: 0 20px;
}

a {
  text-decoration: none;
}

.pcv {
  display: none;
}

@media screen and (min-width: 1200px) {
  .wrap {
    padding: 0 80px;
  }
}
@media screen and (min-width: 1600px) {
  .wrap {
    max-width: 1450px;
    width: 100%;
    margin: auto;
    padding: 0;
  }
}
/* =====================
ボタン
===================== */
.btn {
  display: block;
  border-bottom: 1px solid #8b1128;
  border-right: 1px solid #8b1128;
  position: relative;
  color: #8b1128;
}

.btn-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  text-align: center;
  font-size: 16px;
  border: 1px solid #8b1128;
  margin: 0 5px 5px 0;
  height: 60px;
  color: #8b1128;
  background-image: url(../img/academy-base/arrow.png);
  background-repeat: no-repeat;
  background-size: 6px 11px;
  background-position: center right 15px;
}

.btn-span:before {
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.btn-span:after {
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
  position: absolute;
  top: 0;
  right: -1px;
}

.btn-white {
  display: block;
  border-bottom: 1px solid #f6f3ee;
  border-right: 1px solid #f6f3ee;
  position: relative;
}

.btn-span-white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 16px;
  border: 1px solid #f6f3ee;
  margin: 0 4px 4px 0;
  color: #f6f3ee;
}

.btn-span-white:before {
  content: "";
  width: 4px;
  height: 4px;
  background: #8b1128;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.btn-span-white:after {
  content: "";
  width: 4px;
  height: 4px;
  background: #8b1128;
  position: absolute;
  top: 0;
  right: -1px;
}

@media screen and (min-width: 767px) {
  .btn:hover {
    text-decoration: underline;
  }
  .btn-white:hover {
    text-decoration: underline;
  }
  .pcv {
    display: block;
  }
  .spv {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .btn:hover {
    text-decoration: underline;
  }
  .btn-white:hover {
    text-decoration: underline;
  }
}
/*パンくず*/
.breadcrumbs-area {
  max-width: 1400px;
  margin: auto;
  padding: 10px 20px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #ceba91;
}

.breadcrumbs-area.breadcrumbs-area-top {
  padding: 0;
  height: 1px;
  opacity: 0;
}

.breadcrumbs-area span {
  font-size: 10px;
  color: #666666;
}

.breadcrumbs-area a {
  font-size: 12px;
}

@media screen and (min-width: 767px) {
  .breadcrumbs-area {
    padding: 15px 60px 0;
  }
}
@media screen and (min-width: 1000px) {
  .breadcrumbs-area {
    padding: 15px 150px 0;
  }
}
@media screen and (min-width: 1420px) {
  .breadcrumbs-area {
    padding: 15px 0 0;
  }
  .breadcrumbs-area span {
    font-size: 12px;
  }
  .breadcrumbs-area a {
    font-size: 12px;
  }
}
.fadeUp {
  opacity: 0;
}

body.hidden {
  overflow: hidden;
}

.fadeUp.active {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}