@charset "UTF-8";
/* Scss Document */
/* =========================================================
 general
========================================================= */
@media (max-width: 575px) {
  body {
    font-size: 1.4rem;
  }
}
@media (min-width: 576px) {
  body {
    font-size: 1.6rem;
  }
}

.cnt-shogaku * {
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", YuGothic, '游ゴシック', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.cnt-shogaku p, .cnt-shogaku th, .cnt-shogaku td, .cnt-shogaku ul, .cnt-shogaku li, .cnt-shogaku dl, .cnt-shogaku dt, .cnt-shogaku dd {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
}
.cnt-shogaku figure {
  position: relative;
  margin: 0;
  padding: 0;
  margin: 45px auto 0;
}
@media (min-width: 768px) {
  .cnt-shogaku figure {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .cnt-shogaku figure {
    max-width: 500px;
  }
}
.cnt-shogaku h2 + figure, .cnt-shogaku h3 + figure {
  margin-top: 0;
}
.cnt-shogaku img {
  max-width: 100%;
  vertical-align: bottom;
}
.cnt-shogaku a {
  -webkit-transition: all  0.3s;
  transition: all  0.3s;
}
.cnt-shogaku a img {
  -webkit-transition: all  0.3s;
  transition: all  0.3s;
}

/* diaplay propaty
--------------------------------------------------------- */
.d-none {
  display: none;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none;
  }
}

.d-block {
  display: block;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block;
  }
}

.d-inline-block {
  display: inline-block;
}

@media (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .d-lg-inline-block {
    display: inline-block;
  }
}

/* flex
--------------------------------------------------------- */
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 767px) {
  .d-md-flex .cnt-right {
    margin: 20px 0;
  }
}
@media (min-width: 768px) {
  .d-md-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .d-md-flex.list-img {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .d-md-flex.list-img figure {
    margin-top: 30px;
  }
  .d-md-flex figure {
    width: calc(50% - 30px);
    margin: 0;
  }
  .d-md-flex .cnt-right {
    margin: 30px 0 0 auto;
  }
  .d-md-flex .txt {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .d-lg-flex figure {
    width: 50%;
    margin-top: 0;
    padding-left: 30px;
  }
  .d-lg-flex .txt {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .item-flex:not(:nth-of-type(1)) {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .item-flex {
    width: calc(50% - 15px);
  }
  .item-flex:nth-of-type(n + 3) {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .item-flex {
    width: calc(50% - 25px);
  }
  .item-flex.flex-txt {
    width: calc(60% - 25px);
  }
  .item-flex.flex-img {
    width: calc(40% - 25px);
  }
}

/* text
--------------------------------------------------------- */
.cnt-shogaku strong {
  font-weight: 600;
}
.cnt-shogaku .emphasis {
  color: #ee7700;
}
.cnt-shogaku .list li {
  position: relative;
  padding-left: 10px;
}
.cnt-shogaku .list li:before {
  position: absolute;
  display: block;
  content: '';
  top: 0.6em;
  left: 0;
  width: 4px;
  height: 4px;
  background: rgba(51, 51, 51, 0.5);
  border-radius: 100%;
}
.cnt-shogaku .attention {
  margin: 5px 0;
}
.cnt-shogaku .attention li {
  margin-left: 1em;
  text-indent: -1em;
  letter-spacing: 0;
  font-size: 0.8em;
}
.cnt-shogaku .caution {
  font-size: 0.8em;
}
.cnt-shogaku article p {
  margin-bottom: 1em;
}
.cnt-shogaku article p:last-child {
  margin-bottom: 0;
}

/* btn
--------------------------------------------------------- */
.cnt-shogaku .btn {
  position: relative;
  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;
  height: 48px;
  border-radius: 6px;
  background: #1bb8ce;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: 0px 3px 0px 0px #1590a1;
          box-shadow: 0px 3px 0px 0px #1590a1;
}
@media (min-width: 768px) {
  .cnt-shogaku .btn {
    max-width: 400px;
    margin: auto;
    font-size: 1.6rem;
    font-weight: 600;
  }
}
.cnt-shogaku .btn * {
  color: #fff;
}
.cnt-shogaku .btn:hover {
  background: #37cfe5;
}
.cnt-shogaku .btn:hover * {
  color: #fff;
}
.cnt-shogaku .btn.year-new01 {
  background: #77caf5;
  -webkit-box-shadow: 0px 3px 0px 0px #30aef0;
          box-shadow: 0px 3px 0px 0px #30aef0;
}
.cnt-shogaku .btn.year-new01:hover {
  background: #8fd3f7;
}
.cnt-shogaku .btn.year01 {
  background: #f05096;
  -webkit-box-shadow: 0px 3px 0px 0px #e0136d;
          box-shadow: 0px 3px 0px 0px #e0136d;
}
.cnt-shogaku .btn.year01:hover {
  background: #f267a4;
}
.cnt-shogaku .btn.year02 {
  background: #f06e00;
  -webkit-box-shadow: 0px 3px 0px 0px #bd5700;
          box-shadow: 0px 3px 0px 0px #bd5700;
}
.cnt-shogaku .btn.year02:hover {
  background: #ff8824;
}
.cnt-shogaku .btn.year03 {
  background: #faaf05;
  -webkit-box-shadow: 0px 3px 0px 0px #c88c04;
          box-shadow: 0px 3px 0px 0px #c88c04;
}
.cnt-shogaku .btn.year03:hover {
  background: #fbc241;
}
.cnt-shogaku .btn.year04 {
  background: #14aa32;
  -webkit-box-shadow: 0px 3px 0px 0px #0f7c25;
          box-shadow: 0px 3px 0px 0px #0f7c25;
}
.cnt-shogaku .btn.year04:hover {
  background: #17c139;
}
.cnt-shogaku .btn.year05 {
  background: #a53c96;
  -webkit-box-shadow: 0px 3px 0px 0px #802e74;
          box-shadow: 0px 3px 0px 0px #802e74;
}
.cnt-shogaku .btn.year05:hover {
  background: #c153b1;
}
.cnt-shogaku .btn.year06 {
  background: #0082c8;
  -webkit-box-shadow: 0px 3px 0px 0px #006195;
          box-shadow: 0px 3px 0px 0px #006195;
}
.cnt-shogaku .btn.year06:hover {
  background: #00a3fb;
}

/* spacing
--------------------------------------------------------- */
.cnt-shogaku .m0 {
  margin: 0 !important;
}
.cnt-shogaku .mb0 {
  margin-bottom: 0 !important;
}
.cnt-shogaku .mb-1em {
  margin-bottom: 1em !important;
}
.cnt-shogaku .mb-2em {
  margin-bottom: 2em !important;
}
.cnt-shogaku .mt0 {
  margin-top: 0 !important;
}
.cnt-shogaku .mt-1em {
  margin-top: 1em !important;
}
@media (min-width: 768px) {
  .cnt-shogaku .m-dm-0 {
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .cnt-shogaku .m-md-0 {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .cnt-shogaku .m-lg-0 {
    margin: 0 !important;
  }
}

/* box
--------------------------------------------------------- */
section {
  padding: 0;
}

.cnt-shogaku .cnt-wrap {
  margin: auto;
  padding: 0 0 80px;
}
@media (min-width: 768px) {
  .cnt-shogaku .cnt-wrap {
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .cnt-shogaku .cnt-wrap {
    padding-bottom: 120px;
  }
}
.cnt-shogaku .cnt-wrap > section {
  padding: 60px 0 0;
}
@media (min-width: 768px) {
  .cnt-shogaku .cnt-wrap > section {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .cnt-shogaku .cnt-wrap > section {
    padding-top: 100px;
  }
}
.cnt-shogaku h2 + section, .cnt-shogaku h3 + section, .cnt-shogaku .hgroup + section {
  padding-top: 0;
}
.cnt-shogaku .cnt-inner {
  width: calc(100% - 40px);
  margin: auto;
}
@media (min-width: 768px) {
  .cnt-shogaku .cnt-inner {
    width: calc(100% - 60px);
  }
}
@media (min-width: 992px) {
  .cnt-shogaku .cnt-inner {
    width: 90%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cnt-shogaku .w100 {
  position: relative;
}
@media (max-width: 991px) {
  .cnt-shogaku .w100 {
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.cnt-shogaku hr {
  display: block;
  width: 100%;
  height: 1px;
  margin: 60px 0 0;
  padding: 0;
  border: none;
  background: #eee;
}
@media (min-width: 768px) {
  .cnt-shogaku hr {
    margin-top: 80px;
  }
}
@media (min-width: 992px) {
  .cnt-shogaku hr {
    margin-top: 100px;
  }
}

/* title
--------------------------------------------------------- */
.cnt-shogaku h2, .cnt-shogaku h3, .cnt-shogaku h4 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.cnt-shogaku h2.def, .cnt-shogaku h3.def, .cnt-shogaku h4.def {
  padding: 0;
  border: none;
  background: none;
}
.cnt-shogaku h2 {
  font-size: 1.953em;
}
@media (min-width: 992px) {
  .cnt-shogaku h2 {
    line-height: 1.2;
  }
}
.cnt-shogaku h2 small {
  display: block;
  margin-bottom: 15px;
  font-size: 1.563em;
  font-weight: 400;
  line-height: 1;
}
.cnt-shogaku h3 {
  margin-bottom: 25px;
  font-size: 1.563em;
}
@media (min-width: 768px) {
  .cnt-shogaku h3 {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cnt-shogaku h3 {
    margin-bottom: 35px;
  }
}
.cnt-shogaku h4 {
  margin-bottom: 25px;
  padding-left: 10px;
  border-left: 6px solid #1bb8ce;
  font-size: 1.25em;
}
@media (min-width: 768px) {
  .cnt-shogaku h4 {
    padding-left: 15px;
  }
}

/* hgroup
--------------------------------------------------------- */
.cnt-shogaku .hgroup {
  position: relative;
  margin-bottom: 60px;
  padding: 30px;
  background: #1bb8ce;
  text-align: center;
}
@media (max-width: 575px) {
  .cnt-shogaku .hgroup {
    padding: 30px 20px;
  }
}
@media (min-width: 576px) {
  .cnt-shogaku .hgroup {
    padding: 40px 30px;
  }
}
.cnt-shogaku .hgroup.has-icon {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cnt-shogaku .hgroup.has-icon {
    padding-top: 45px;
  }
}
@media (min-width: 576px) {
  .cnt-shogaku .hgroup.has-icon {
    padding-top: 55px;
  }
}
.cnt-shogaku .hgroup * {
  color: #fff;
}
.cnt-shogaku .hgroup i.icon {
  display: block;
  position: absolute;
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
}
.cnt-shogaku .hgroup .subj {
  display: inline-block;
  margin: 0 auto;
  padding: 0 1.5em;
  background: #fff;
  font-size: 1em;
  font-weight: 600;
  vertical-align: middle;
}
@media (max-width: 575px) {
  .cnt-shogaku .hgroup .subj {
    margin-bottom: 10px;
    border-radius: 11px;
    line-height: 22px;
  }
}
@media (min-width: 576px) {
  .cnt-shogaku .hgroup .subj {
    margin-bottom: 15px;
    border-radius: 15px;
    line-height: 30px;
  }
}
.cnt-shogaku .hgroup h2 {
  margin: 0;
  color: #fff;
  font-size: inherit;
  text-align: center;
  line-height: 1.5;
}
.cnt-shogaku .hgroup h2 span {
  display: block;
  font-size: 1.953em;
}
.cnt-shogaku .hgroup h2 small {
  font-size: 1.563em;
}
.cnt-shogaku .hgroup h2 small.cap {
  font-size: 1.25em;
}

/* bnr
--------------------------------------------------------- */
.bnr-wrap {
  max-width: 500px;
  margin: auto;
}

/* more
--------------------------------------------------------- */
.cnt-shogaku .box-more {
  margin-top: 10px;
  text-align: left;
  opacity: .7;
}
.cnt-shogaku .box-more label {
  cursor: pointer;
  display: table-cell;
  height: 22px;
  margin: 0;
  padding: 0 10px;
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.1);
  font-size: 11.20px;
  vertical-align: middle;
  line-height: 1;
  -webkit-transition: all  0.3s;
  transition: all  0.3s;
}
.cnt-shogaku .box-more label:hover {
  background: rgba(0, 0, 0, 0.15);
}
.cnt-shogaku .box-more input {
  display: none;
}
.cnt-shogaku .box-more i {
  display: inline-block;
  position: relative;
  width: 9px;
  height: 9px;
  margin-left: 3px;
}
.cnt-shogaku .box-more i:before, .cnt-shogaku .box-more i:after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
}
.cnt-shogaku .box-more i:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all  0.3s;
  transition: all  0.3s;
}
.cnt-shogaku .box-more .cnt-more {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all  0.3s;
  transition: all  0.3s;
}
.cnt-shogaku .box-more .cnt-more * {
  font-size: 11.20px;
}
.cnt-shogaku .box-more input:checked + label i:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.cnt-shogaku .box-more input:checked ~ .cnt-more {
  height: auto;
  padding-top: 10px;
  opacity: 1;
}

/* aword
--------------------------------------------------------- */
.cnt-shogaku .aword {
  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;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .cnt-shogaku .aword {
    width: 500px;
    margin: 30px auto 0;
  }
}
@media (min-width: 992px) {
  .cnt-shogaku .aword {
    max-width: 600px;
    margin: 50px auto 0;
  }
}
.cnt-shogaku .aword figure {
  width: 36%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}
.cnt-shogaku .aword dl {
  width: 64%;
  padding-left: 5px;
}
@media (min-width: 768px) {
  .cnt-shogaku .aword dl {
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .cnt-shogaku .aword dl {
    padding-left: 20px;
  }
}
.cnt-shogaku .aword dt, .cnt-shogaku .aword dd {
  letter-spacing: 0;
}
.cnt-shogaku .aword dt {
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px dotted #eee;
  line-height: 1;
}
.cnt-shogaku .aword dd {
  font-size: 2.986vw;
}
@media (min-width: 768px) {
  .cnt-shogaku .aword dd {
    font-size: 1.3rem;
  }
}
@media (min-width: 992px) {
  .cnt-shogaku .aword dd {
    font-size: 1.4rem;
  }
}

/* baloon
--------------------------------------------------------- */
.cnt-shogaku .baloon {
  position: relative;
}
.cnt-shogaku .baloon:before {
  content: "";
  position: absolute;
  left: 50%;
  border: 10px solid transparent;
}
.cnt-shogaku .baloon-top:before {
  top: 0;
  border-bottom: 15px solid #1bb8ce;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
.cnt-shogaku .baloon-btm:before {
  bottom: 0;
  border-top: 15px solid #1bb8ce;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
.cnt-shogaku .baloon-left:before {
  left: 0;
  top: 50%;
  border-right: 15px solid #1bb8ce;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}

/* list category
--------------------------------------------------------- */
.cnt-shogaku .list-cat {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 0;
}
.cnt-shogaku .list-cat li {
  display: inline-block;
  margin-right: 5px;
  padding: 5px 10px;
  background: #1bb8ce;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
}
.cnt-shogaku .list-cat li i {
  display: inline-block;
  margin-right: 5px;
}
.cnt-shogaku .list-cat li i img {
  width: 100%;
}
.cnt-shogaku .list-cat li.cat-eng {
  background: #ef9800;
}
.cnt-shogaku .list-cat li.cat-kokugo {
  background: #d95246;
}
.cnt-shogaku .list-cat li.cat-sansu {
  background: #417ad7;
}
.cnt-shogaku .list-cat li.cat-rika {
  background: #4aae7b;
}
.cnt-shogaku .list-cat li.cat-shakai {
  background: #8a74d9;
}
.cnt-shogaku .list-cat li.cat-kanken {
  border: 1px solid #c38b3c;
  background: #c38b3c;
}
.cnt-shogaku .list-cat li.cat-doril {
  background: #41b9d7;
}
.cnt-shogaku .list-cat li.cat-prg {
  background: #3f5eac;
}
.cnt-shogaku .list-cat li.cat-op {
  background: #ee7700;
}
.cnt-shogaku .list-cat li.cat-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
  padding: 0 15px;
  border-radius: 18px;
  border: none;
  font-weight: bold;
  line-height: 1;
}
.cnt-shogaku .list-cat li.cat-dokusho {
  background: #f7656f;
}
.cnt-shogaku .list-cat li.cat-dokusho i {
  width: 31px;
}
.cnt-shogaku .list-cat li.cat-jiyu {
  background: #7cc451;
}
.cnt-shogaku .list-cat li.cat-jiyu i {
  width: 24px;
}

/* list type
--------------------------------------------------------- */
.cnt-shogaku .list-type {
  margin-top: 1em;
  text-align: right;
  letter-spacing: -1em;
}
.cnt-shogaku .list-type li {
  display: inline-block;
  margin-left: 5px;
  padding: 5px 1.5em;
  color: #fff;
  line-height: 1;
}
.cnt-shogaku .list-type li.type-programming {
  background-color: #3f5eac;
}
.cnt-shogaku .list-type li.type-eng {
  background-color: #ef9800;
}

/* subject bg
--------------------------------------------------------- */
.cnt-shogaku .bg-kokugo {
  background-color: #d95246;
}
.cnt-shogaku .bg-sansu {
  background-color: #417ad7;
}
.cnt-shogaku .bg-eigo {
  background-color: #ef9800;
}
.cnt-shogaku .bg-rika {
  background-color: #4aae7b;
}
.cnt-shogaku .bg-shakai {
  background-color: #8a74d9;
}
.cnt-shogaku .bg-programming {
  background-color: #3f5eac;
}
.cnt-shogaku .bg-test {
  background-color: #00aab0;
}
.cnt-shogaku .bg-hatten {
  background-color: #0b308e;
}

/* embed
--------------------------------------------------------- */
.cnt-shogaku .sz-lazy-wrapper > .sz-lazy.sz-lazy-embed > iframe {
  border: none;
}

/* voice
--------------------------------------------------------- */
.cnt-shogaku .img-voice .icon-on {
  cursor: pointer;
  position: absolute;
  right: 5.5%;
  bottom: 3%;
  width: 18.5%;
  -webkit-transition: opacity  0.5s;
  transition: opacity  0.5s;
}
.cnt-shogaku .img-voice .icon-on:hover {
  opacity: .8;
}
.cnt-shogaku .img-voice .sz-lazy-wrapper-loaded + .icon-baloon + .icon-on {
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.cnt-shogaku .img-voice .icon-baloon {
  opacity: 0;
  position: absolute;
  right: 2%;
  bottom: 27%;
  display: block;
  width: 26.93333%;
  -webkit-transition: opacity  0.5s;
  transition: opacity  0.5s;
  z-index: 1;
}
.cnt-shogaku .img-voice .sz-lazy-wrapper-loaded + .icon-baloon {
  opacity: 1;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

/* =========================================================
 keyframe
========================================================= */
@-webkit-keyframes bounce {
  from, 10%, 27%, 40%, 50% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  20%, 22% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -16px, 0);
            transform: translate3d(0, -16px, 0);
  }
  35% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -8px, 0);
            transform: translate3d(0, -8px, 0);
  }
  45% {
    -webkit-transform: translate3d(0, -2px, 0);
            transform: translate3d(0, -2px, 0);
  }
}
@keyframes bounce {
  from, 10%, 27%, 40%, 50% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  20%, 22% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -16px, 0);
            transform: translate3d(0, -16px, 0);
  }
  35% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -8px, 0);
            transform: translate3d(0, -8px, 0);
  }
  45% {
    -webkit-transform: translate3d(0, -2px, 0);
            transform: translate3d(0, -2px, 0);
  }
}
/* =========================================================
 cnt-sub
========================================================= */
.cnt-shogaku .cnt-sub {
  padding: 35px 20px 20px;
  background: #f5f7fa;
}
@media (min-width: 768px) {
  .cnt-shogaku .cnt-sub {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .cnt-shogaku .cnt-sub {
    padding: 40px;
  }
}
.cnt-shogaku .cnt-sub h3 {
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 7px solid #dddfe3;
}
@media (min-width: 768px) {
  .cnt-shogaku .cnt-sub h3 {
    margin-bottom: 30px;
  }
}
.cnt-shogaku .cnt-sub figure {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .cnt-shogaku .cnt-sub figure {
    margin-top: 0;
  }
}
