@charset "UTF-8";

/*************************************************
	全体
**************************************************/
body {
  min-width: 1024px;
  color: #000;
  font-family: Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.mob {
  display: none;
}
.overlay {
  display: none;
  z-index: 10;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.8);
  content: "";
}
.overlay.is-open {
  display: block;
}

@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
  .pc {
    display: none;
  }
  .mob {
    display: block;
  }
  main {
    padding: 0 3%;
  }
}


/*************************************************
	ヘッダー
**************************************************/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 20;
  width: 100%;
  height: 60px;
  padding-left: 3%;
  background: #fff;
}
#g1p .header {
  border-bottom: 2px solid #94ce54;
}
#g2 .header {
  border-bottom: 2px solid #6a8cd8;
}
#g2p .header {
  border-bottom: 2px solid #1ba2e6;
}
#g3 .header {
  border-bottom: 2px solid #fba74d;
}
.hd_logo {
  width: 40px;
}
.hd_ttl {
  margin: 0 1em;
  font-size: 1.8rem;
    line-height: 1.3;
}

.hd_ttl a, .hd_ttl a:visited, .hd_ttl:hover {color: #000000;}

.hd_ttl a, .hd_ttl:visited, .hd_ttl:hover {
    color: #000000;
}
.hd_ttl_number {
  font-size: 2.4rem;
}
.hd_nav {
  margin: 0 3% 0 auto;
}
.hd_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
}
.hd_nav_item {
  display: block;
  position: relative;
  padding: 1.6em 3em;
  color: #000;
  white-space: nowrap;
}
.hd_nav_item::after {
  position: relative;
  top: -.1em;
  right: -.5em;
  font-size: 1rem;
  content: "▼";
}
.hd_nav_item.is-active,
.hd_nav_item:hover {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}
#g1p .hd_nav_item.is-active,
#g1p .hd_nav_item:hover {
  background: #94ce54;
}
#g2 .hd_nav_item.is-active,
#g2 .hd_nav_item:hover {
  background: #6a8cd8;
}
#g2p .hd_nav_item.is-active,
#g2p .hd_nav_item:hover {
  background: #1ba2e6;
}
#g3 .hd_nav_item.is-active,
#g3 .hd_nav_item:hover {
  background: #fba74d;
}

/* サブメニュー */
.hd_subnav_list {
  display: none;
  z-index: 10;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 2px;
  background: #fff;
  -webkit-box-shadow: 0 0 8px rgba(0,0,0,.05);
          box-shadow: 0 0 8px rgba(0,0,0,.05);
}
.hd_subnav_item + .hd_subnav_item {
  border-top: 1px solid #eee;
}
.hd_subnav_link {
  display: block;
  padding: .75em .5em;
  color: #000;
  text-align: center;
}
.hd_subnav_link.is-active,
.hd_subnav_link:hover {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}
#g1p .hd_subnav_link.is-active,
#g1p .hd_subnav_link:hover {
  background: #94ce54;
}
#g2 .hd_subnav_link.is-active,
#g2 .hd_subnav_link:hover {
  background: #6a8cd8;
}
#g2p .hd_subnav_link.is-active,
#g2p .hd_subnav_link:hover {
  background: #1ba2e6;
}
#g3 .hd_subnav_link.is-active,
#g3 .hd_subnav_link:hover {
  background: #fba74d;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 0 3%;
  }
  .hd_nav {
    display: none;
    z-index: 10;
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    width: 96%;
    margin: auto;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,.25);
            box-shadow: 0 0 8px rgba(0,0,0,.25);
  }
  .hd_logo {
    width: 30px;
  }
  .hd_ttl {
    font-size: 1.4rem;
    line-height: 1.3;
  }

    @media screen and (max-width: 374px){
     .hd_ttl {
    font-size: 1.2rem;
    line-height: 1.3;
  }
    }


  .hd_ttl_number {
    font-size: 2rem;
    vertical-align: baseline;
  }
  .hd_nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
  }
  .hd_nav_item {
    padding: 1em;
    text-align: center;
  }
  .hd_nav_item.is-open {
    padding: 1em 0 0;
  }
  .hd_nav_item + .hd_nav_item {
    border-top: 1px solid #eee;
  }
  .hd_nav_item::after {
    position: absolute;
    top: 1.5em;
    right: 1em;
    font-size: 1rem;
    content: "▼";
  }
  .hd_nav_item.is-open::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .hd_subnav_link {
    padding: 1em .5em;
  }

  /* サブメニュー */
  .hd_subnav_list {
    position: static;
    margin-top: 1em;
    border-top: 1px solid #fff;
  }
  .hd_subnav_list {
    background: #eee;
  }
  .hd_subnav_item + .hd_subnav_item {
    border-top: 1px solid #fff;
  }


  /* ハンバーガー */
  .menu_trigger,
  .menu_trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .menu_trigger {
    position: relative;
    width: 34px;
    height: 28px;
    margin-left: auto;
  }

.menu_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ff0000;
    border-radius: 4px;
  }

  .menu_trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu_trigger span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
  }
  .menu_trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu_trigger.is-open span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-315deg) scale(.8);
    transform: translateY(12px) rotate(-315deg) scale(.8);
  }
  .menu_trigger.is-open span:nth-of-type(2) {
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: 3px solid #f00;
    border-radius: 50%;
  }
  .menu_trigger.is-open span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(315deg) scale(.8);
    transform: translateY(-12px) rotate(315deg) scale(.8);
  }

#g1p .menu_trigger span {
    background-color: #94ce54;
}

#g2 .menu_trigger span {
    background-color: #6a8cd8;
}

#g2p .menu_trigger span {
    background-color: #1ba2e6;
}

#g3 .menu_trigger span {
    background-color: #fba74d;
}

#g1p .menu_trigger.is-open span:nth-of-type(2) {
    background-color: transparent;
    border: 3px solid #94ce54;
  }

#g2 .menu_trigger.is-open span:nth-of-type(2) {
    background-color: transparent;
    border: 3px solid #6a8cd8;
  }

#g2p .menu_trigger.is-open span:nth-of-type(2) {
    background-color: transparent;
    border: 3px solid #1ba2e6;
  }


#g3 .menu_trigger.is-open span:nth-of-type(2) {
    background-color: transparent;
    border: 3px solid #fba74d;
  }



}



/*************************************************
	フッター
**************************************************/
.footer {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-top: 6em;
  padding: 3em 0;
}
#g1p .footer {
  background: #94ce54;
}
#g2 .footer {
  background: #6a8cd8;
}
#g2p .footer {
  background: #1ba2e6;
}
#g3 .footer {
  background: #fba74d;
}

@media screen and (max-width: 768px) {
  .footer {
    height: auto;
  }
  .ft_training_nav {
    height: auto;
  }
}

/* ホバー/アクティブ時 白アイコン */
.training_nav_link.read.is-active::before,
.training_nav_link.read:hover::before {
  background-image: url(../img/ico_read_white.png) !important;
}
.training_nav_link.listen.is-active::before,
.training_nav_link.listen:hover::before {
  background-image: url(../img/ico_listen_white.png) !important;
}
.training_nav_link.aloud.is-active::before,
.training_nav_link.aloud:hover::before {
  background-image: url(../img/ico_aloud_white.png) !important;
}
.training_nav_link.typing.is-active::before,
.training_nav_link.typing:hover::before {
  background-image: url(../img/ico_typing_white.png) !important;
}

/* 2級 アイコン */
#g2 .training_nav_link {
  border-color: #6a8cd8;
  color: #6a8cd8;
}
#g2 .training_nav_link.is-active,
#g2 .training_nav_link:hover {
  background: #8ba3d7;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.1);
}
#g2 .training_nav_link.read::before {
  background-image: url(../img/ico_read_2q.png);
}
#g2 .training_nav_link.listen::before {
  background-image: url(../img/ico_listen_2q.png);
}
#g2 .training_nav_link.aloud::before {
  background-image: url(../img/ico_aloud_2q.png);
}
#g2 .training_nav_link.typing::before {
  width: 30px;
  background-image: url(../img/ico_typing_2q.png);
}

/* 準2級 アイコン */
#g2p .training_nav_link {
  border-color: #1ba2e6;
  color: #1ba2e6;
}
#g2p .training_nav_link.is-active,
#g2p .training_nav_link:hover {
  background: #72c4ed;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.1);
}
#g2p .training_nav_link.read::before {
  background-image: url(../img/ico_read_p2q.png);
}
#g2p .training_nav_link.listen::before {
  background-image: url(../img/ico_listen_p2q.png);
}
#g2p .training_nav_link.aloud::before {
  background-image: url(../img/ico_aloud_p2q.png);
}
#g2p .training_nav_link.typing::before {
  width: 30px;
  background-image: url(../img/ico_typing_p2q.png);
}

/* 3級 アイコン */
#g3 .training_nav_link {
  border-color: #fba74d;
  color: #fba74d;
}
#g3 .training_nav_link.is-active,
#g3 .training_nav_link:hover {
  background: #fac58b;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.1);
}
#g3 .training_nav_link.read::before {
  background-image: url(../img/ico_read_3q.png);
}
#g3 .training_nav_link.listen::before {
  background-image: url(../img/ico_listen_3q.png);
}
#g3 .training_nav_link.aloud::before {
  background-image: url(../img/ico_aloud_3q.png);
}
#g3 .training_nav_link.typing::before {
  width: 30px;
  background-image: url(../img/ico_typing_3q.png);
}

/* 級選択・次の日へ */
.day_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 2px;
  height: 100%;
}
.day_nav_item + .day_nav_item {
  margin-left: 2px;
}
.day_nav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 2em;
  background: rgba(0,0,0,.2);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}
.day_nav_link:hover {
  background: rgba(0,0,0,.25);
}
.day_nav_img {
  width: 16px;
  margin-bottom: .5em;
}
@media screen and (max-width: 768px) {
  .ft_training_nav {
    width: 100%;
  }
  .day_nav_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: static;
    width: 100%;
    height: auto;
  }
  .day_nav_item {
    width: 50%;
  }
  .day_nav_item + .day_nav_item {
    margin-right: 2px;
  }
  .day_nav_link {
    height: 100%;
  }
}

/* コピーライト */
.ft_copyright {
  color: #fff;
  font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
  .ft_copyright {
    padding: 1em 0;
  }
}

/*************************************************
	ローディング
**************************************************/
.loading {
  display: none;
  z-index: -10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.9);
}
body > .loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
}
.loading.is-loading {
  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;
  z-index: 20;
}
.loading_img {
  width: 60px;
}
