@charset "UTF-8";
#container.mgt {
  margin-top: 160px; }

/*ヘッダー*/
#header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  padding-right: 250px; }
  #header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000; }
    #header.fixed #h_logo {
      left: 20px;
      top: 35px;
      width: 85px; }
  #header h1 {
    padding: 10px 20px;
    font-size: clamp(10px, 1vw, 12px); }
  #header #h_logo {
    position: absolute;
    left: 60px;
    top: 60px;
    width: 10%; }
  #header #gnav {
    float: right;
    width: 75%;
    margin: 10px 0 30px; }
    #header #gnav ul {
      flex-wrap: nowrap;
      justify-content: space-between;
      display: flex; }
      #header #gnav ul li {
        width: 16.666666%;
        text-align: center;
        border-left: 3px dotted #999; }
        #header #gnav ul li .image {
          display: inline-block;
          height: 35px;
          margin-bottom: 5px; }
          #header #gnav ul li .image img {
            width: 35px;
            height: 35px;
            object-fit: contain; }
        #header #gnav ul li.last {
          border-right: 3px dotted #999; }
        #header #gnav ul li a {
          display: inline-block;
          font-size: clamp(15px, 1vw, 18px);
          font-weight: 700; }
          #header #gnav ul li a:hover {
            opacity: .6; }
            #header #gnav ul li a:hover img {
              opacity: 1; }
        #header #gnav ul li.tel {
          position: absolute;
          top: 35px;
          right: 0;
          width: 235px;
          border-left: none;
          z-index: 10; }
          #header #gnav ul li.tel a {
            padding: 10px 0;
            display: block;
            background-color: #0d6fc2;
            color: #fff;
            text-align: center;
            font-size: 30px;
            font-size: 3rem;
            font-weight: 700;
            line-height: .8;
            height: 70px;
            border-radius: 35px 0 0 35px; }
            #header #gnav ul li.tel a span.no {
              padding-left: 25px;
              background: url("../img/common/tel_icon.svg") no-repeat left top 18px;
              font-weight: 700; }
            #header #gnav ul li.tel a:hover {
              opacity: 1;
              cursor: default; }
        #header #gnav ul li.mail {
          position: absolute;
          top: 120px;
          right: 0;
          width: 235px;
          border-left: none;
          z-index: 10; }
          #header #gnav ul li.mail a {
            display: block;
            background-color: #f95c5d;
            color: #fff;
            text-align: center;
            font-size: clamp(22px, 1vw, 25px);
            height: 60px;
            line-height: 60px;
            border-radius: 30px 0 0 30px; }
            #header #gnav ul li.mail a span {
              padding-left: 30px;
              background: url("../img/common/mail_icon.svg") no-repeat left center;
              font-weight: 700; }
  #header .sp_tel {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #0d6fc2;
    top: 0;
    right: 50px;
    z-index: 2;
    text-align: center;
    line-height: 50px; }
    #header .sp_tel img {
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      margin: 0 auto;
      transform: translateY(-50%); }
    #header .sp_tel a {
      display: block;
      width: 50px;
      height: 50px; }
  #header .sp_mail {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #f95c5d;
    top: 0;
    right: 100px;
    z-index: 2;
    text-align: center;
    line-height: 50px; }
    #header .sp_mail img {
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      margin: 0 auto;
      transform: translateY(-50%); }
    #header .sp_mail a {
      display: block;
      width: 50px;
      height: 50px; }
  #header #nav-toggle, #header #nav-toggle span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer; }
  #header #nav-toggle {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #444;
    top: 0;
    right: 0;
    z-index: 2; }
    #header #nav-toggle span {
      position: absolute;
      background: #fff;
      width: 30px;
      height: 2px;
      left: 0;
      right: 0;
      margin: auto; }
      #header #nav-toggle span:nth-of-type(1) {
        top: 15px; }
      #header #nav-toggle span:nth-of-type(2) {
        top: 0;
        bottom: 0; }
      #header #nav-toggle span:nth-of-type(3) {
        bottom: 15px; }
  #header.open #nav-toggle span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg); }
  #header.open #nav-toggle span:nth-of-type(2) {
    opacity: 0; }
  #header.open #nav-toggle span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg); }
  #header #sp_menu {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    background: #fff;
    height: 50px; }
    #header #sp_menu .sp_logo {
      padding: 2px 0 2px 10px; }
  #header #sp_nav {
    display: none;
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    overflow: scroll;
    padding-bottom: 50px; }
    #header #sp_nav .sp_navInner {
      padding: 20px 25px 30px;
      width: 100%;
      overflow: hidden;
      overflow-y: scroll; }
    #header #sp_nav .sp_gnav li a {
      background: url("../img/common/arrow_g.svg") no-repeat right 5px center;
      background-size: 6px;
      display: block;
      text-align: left;
      text-decoration: none;
      padding: 18px 10px;
      border-bottom: dotted 2px #ccc;
      font-size: 14px;
      font-size: 1.4rem; }
    #header #sp_nav .sp_gnav li.ga a {
      background: url("../img/common/arrow_b.svg") no-repeat right 5px center;
      background-size: 6px; }
    #header #sp_nav .sp_gnav li.af a {
      background: url("../img/common/arrow_o.svg") no-repeat right 5px center;
      background-size: 6px; }
    #header #sp_nav .sp_gnav li.sp_more a {
      background: url("../img/common/arrow_plus.svg") no-repeat right 5px center;
      background-size: 10px; }
    #header #sp_nav .sp_gnav li.sp_more > a.active {
      background: url("../img/common/arrow_minus.svg") no-repeat right 5px center;
      background-size: 10px; }
    #header #sp_nav .sp_gnav li .sub {
      display: none; }
      #header #sp_nav .sp_gnav li .sub li a {
        background: none;
        padding: 15px 10px; }
        #header #sp_nav .sp_gnav li .sub li a:before {
          content: '- '; }
    #header #sp_nav .sns_list {
      margin-top: 10px; }
      #header #sp_nav .sns_list li a {
        background: url("../img/common/insta_icon.svg") no-repeat left center;
        background-size: 16px;
        display: block;
        text-decoration: none;
        padding: 10px 10px 10px 20px;
        font-size: 14px;
        font-size: 1.4rem; }
      #header #sp_nav .sns_list li.ga a {
        color: #0d6fc2; }
      #header #sp_nav .sns_list li.af a {
        color: #f95c5d; }

@media screen and (max-width: 767px) {
  #gnav ul li a {
    padding: 0 10px; }

  #header {
    height: 50px;
    line-height: 50px; }
    #header h1 {
      display: none; }
    #header #sp_menu {
      display: block;
      line-height: 1; }
    #header #pc_menu {
      display: none; } }
#container.open {
  position: fixed;
  width: 100%; }

/*----------------------------------------------------
	メインビジュアル
----------------------------------------------------*/
#main_visual {
  position: relative;
  width: 100%;
  padding-left: 50px;
  height: auto;
  z-index: 1; }
  #main_visual img {
    width: 100%; }
  #main_visual .session_news {
    width: 770px;
    height: 80px;
    border-radius: 40px;
    padding: 0 50px;
    position: absolute;
    right: 20px;
    bottom: 30px;
    background: url("../img/common/arrow_g.svg") no-repeat right 30px center;
    background-size: 10px;
    background-color: #fff;
    display: flex;
    font-size: 20px;
    font-size: 2rem;
    z-index: 2; }
    #main_visual .session_news p.title {
      margin: 29px 0;
      border-right: solid 1px #333;
      line-height: 1;
      display: inline-block;
      padding-right: 40px;
      margin-right: 40px; }
    #main_visual .session_news .ticker {
      margin: 15px 0;
      overflow: hidden;
      /* 必須 */
      height: 50px; }
      #main_visual .session_news .ticker .news {
        list-style-type: none;
        padding: 0;
        margin: 0;
        animation: newsticker infinite linear; }
        #main_visual .session_news .ticker .news li {
          height: 50px;
          line-height: 50px;
          background-color: #fff; }
          #main_visual .session_news .ticker .news li a {
            text-decoration: underline; }
            #main_visual .session_news .ticker .news li a:hover {
              text-decoration: none; }
        #main_visual .session_news .ticker .news .cram-school-session a {
          color: #0d6fc2; }
        #main_visual .session_news .ticker .news .after-school-session a {
          color: #f95c5d; }

#main_visual_sp {
  display: none; }

.session_bnr {
  margin-top: 50px;
  display: flex;
  justify-content: space-between; }
  .session_bnr li {
    width: 48%;
    text-align: center; }
    .session_bnr li .bnr_btn {
      display: block;
      color: #fff;
      padding: 30px 0 30px 50px;
      text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
      position: relative; }
      .session_bnr li .bnr_btn span {
        display: inline-block;
        position: relative;
        font-size: 25px;
        font-size: 2.5rem;
        z-index: 2;
        font-weight: 700;
        background: url("../img/common/arrow_w.svg") no-repeat right center;
        background-size: 15px;
        padding-right: 50px; }
    .session_bnr li.ga .bnr_btn {
      background: url("../img/common/cram_bg_sp.png");
      background-repeat: no-repeat, no-repeat;
      background-size: cover;
      background-position: center center;
      background-color: #0d6fc2; }
      .session_bnr li.ga .bnr_btn:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(13, 111, 194, 0.4);
        z-index: 1; }
    .session_bnr li.af .bnr_btn {
      background: url("../img/common/after_bg_sp.png");
      background-repeat: no-repeat, no-repeat;
      background-size: cover;
      background-position: center center;
      background-color: #f95c5d; }
      .session_bnr li.af .bnr_btn:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(249, 92, 93, 0.4);
        z-index: 1; }

@media screen and (max-width: 767px) {
  #main_visual {
    display: none;
    padding-left: 0; }
    #main_visual .session_news {
      position: inherit;
      width: 96%;
      margin: 20px auto 0;
      height: 54px;
      border-radius: 25px;
      padding: 0 10px 0 25px;
      right: inherit;
      bottom: inherit;
      background: url("../img/common/arrow_g.svg") no-repeat right 10px center;
      background-size: 5px;
      background-color: #fff;
      font-size: 14px;
      font-size: 1.4rem;
      border: solid 2px #ddd; }
      #main_visual .session_news p.title {
        margin: 10px 0;
        padding-right: 15px;
        margin-right: 15px;
        line-height: 30px; }
        #main_visual .session_news p.title .pc-onry {
          display: none; }
      #main_visual .session_news .ticker {
        margin: 0;
        height: 50px; }

  #main_visual_sp {
    display: block;
    padding-left: 15px; }
    #main_visual_sp li {
      position: relative; }
      #main_visual_sp li .link_btn {
        position: absolute;
        right: 0;
        bottom: 10px;
        display: block;
        color: #fff;
        line-height: 38px;
        border-radius: 19px 0 0 19px;
        padding: 0 25px 0 15px;
        background: url("../img/common/arrow_w.svg") no-repeat right 15px center;
        background-size: 6px;
        font-weight: 700; }
      #main_visual_sp li.ga .link_btn {
        background-color: #0d6fc2; }
      #main_visual_sp li.af .link_btn {
        background-color: #f95c5d; }

  .session_bnr {
    margin-top: 20px; }
    .session_bnr li .bnr_btn {
      padding: 19px 0; }
      .session_bnr li .bnr_btn span {
        font-size: 15px;
        font-size: 1.5rem;
        background-size: 7px;
        padding-right: 15px; } }
@keyframes newsticker {
  /* 0%から25%までは初期状態（元の位置）から変化しない */
  0%, 25% {
    transform: translateY(0); }
  /* 50%ではニュースを上にスライドさせる */
  50% {
    transform: translateY(calc(-100% - 1px)); }
  /* 75%から100%まではニュースを上にスライドしたまま変化しない */
  75%, 100% {
    transform: translateY(calc(-100% - 1px)); } }
/*----------------------------------------------------
	ページトップ
----------------------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 9998; }
  #pagetop a:hover {
    opacity: .9; }

@media screen and (max-width: 767px) {
  #pagetop {
    bottom: 30px;
    right: 10px;
    width: 60px; } }
/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer {
  padding-top: 50px;
  background-color: #fefce5; }
  #footer #foot_info {
    float: left;
    width: 30%; }
    #footer #foot_info .f_logo {
      margin-bottom: 20px; }
  #footer #foot_contact {
    float: right;
    width: 50%;
    max-width: 440px;
    margin-top: 20px; }
    #footer #foot_contact .contact_list {
      display: flex;
      justify-content: space-between; }
      #footer #foot_contact .contact_list .tel a {
        padding: 10px 0;
        display: block;
        text-align: center;
        font-size: 30px;
        font-size: 3rem;
        font-weight: 700;
        line-height: .6;
        height: 70px; }
        #footer #foot_contact .contact_list .tel a span.no {
          padding-left: 25px;
          background: url("../img/common/f_tel_icon.svg") no-repeat left top 18px;
          font-weight: 700; }
      #footer #foot_contact .contact_list .mail {
        margin-left: 20px; }
        #footer #foot_contact .contact_list .mail a {
          display: block;
          background-color: #f95c5d;
          color: #fff;
          text-align: center;
          font-size: 18px;
          font-size: 1.8rem;
          height: 45px;
          line-height: 45px;
          width: 200px;
          border-radius: 28px; }
          #footer #foot_contact .contact_list .mail a span {
            padding-left: 30px;
            background: url("../img/common/mail_icon.svg") no-repeat left center;
            font-weight: 700; }
    #footer #foot_contact .sns_list {
      display: flex;
      justify-content: space-between; }
      #footer #foot_contact .sns_list li a {
        padding-left: 30px;
        background: url("../img/common/insta_icon.svg") no-repeat left center;
        background-size: contain;
        text-decoration: underline; }
        #footer #foot_contact .sns_list li a:hover {
          text-decoration: none; }
      #footer #foot_contact .sns_list .ga a {
        color: #0d6fc2; }
      #footer #foot_contact .sns_list .af {
        margin-left: 20px; }
        #footer #foot_contact .sns_list .af a {
          color: #f95c5d; }
  #footer #foot_nav {
    margin-top: 20px;
    padding-top: 20px;
    border-top: solid 1px #ccc;
    display: flex;
    justify-content: space-between; }
    #footer #foot_nav ul li {
      margin-bottom: 10px; }
      #footer #foot_nav ul li a {
        padding: 0 30px 0 20px;
        background: url("../img/common/f_arrow_gray.svg") no-repeat left center;
        font-size: clamp(15px, 1vw, 18px); }
      #footer #foot_nav ul li.ga a {
        background: url("../img/common/f_arrow_blue.svg") no-repeat left center; }
      #footer #foot_nav ul li.af a {
        background: url("../img/common/f_arrow_orange.svg") no-repeat left center; }
      #footer #foot_nav ul li .sub li {
        margin-bottom: 2px; }
        #footer #foot_nav ul li .sub li a {
          background: none;
          font-size: clamp(12px, 1vw, 14px); }
          #footer #foot_nav ul li .sub li a:before {
            content: "- "; }
  #footer .copyright {
    margin-top: 50px;
    padding: 10px 0;
    background-color: #fff;
    color: #999;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center; }

@media screen and (max-width: 767px) {
  #footer {
    padding-top: 20px; }
    #footer .inner {
      padding: 0 40px; }
    #footer #foot_info {
      float: none;
      width: 100%;
      margin-bottom: 8px; }
      #footer #foot_info .f_logo {
        width: 75%;
        margin-bottom: 6px; }
    #footer #foot_nav {
      display: none; }
    #footer #foot_contact {
      float: none;
      width: 100%;
      margin-top: 0; }
      #footer #foot_contact .contact_list {
        justify-content: space-between; }
        #footer #foot_contact .contact_list .tel a {
          text-align: left;
          padding: 0;
          line-height: .35;
          height: auto; }
          #footer #foot_contact .contact_list .tel a span.no {
            font-size: 22px;
            font-size: 2.2rem;
            padding-left: 20px;
            background-size: 14px;
            background-position: left top 10px;
            line-height: .5; }
          #footer #foot_contact .contact_list .tel a .fs10 {
            font-size: 7px;
            font-size: .7rem; }
        #footer #foot_contact .contact_list .mail {
          margin-left: 0;
          margin-bottom: 20px; }
          #footer #foot_contact .contact_list .mail a {
            width: 140px;
            font-size: 14px;
            font-size: 1.4rem;
            height: 34px;
            line-height: 34px; }
            #footer #foot_contact .contact_list .mail a span {
              padding-left: 20px;
              background-size: 15px; }
      #footer #foot_contact .sns_list {
        display: none;
        margin-top: 10px;
        justify-content: space-between;
        text-align: left;
        font-size: 12px;
        font-size: 1.2rem; }
        #footer #foot_contact .sns_list .af {
          margin-left: 0; }
    #footer .copyright {
      margin-top: 15px;
      font-size: 10px;
      font-size: 1rem; } }
/*----------------------------------------------------
	iframe
----------------------------------------------------*/
.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative; }

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%; }

@media screen and (max-width: 767px) {
  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%; }

  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important; } }
/*----------------------------------------------------
	共通デザイン
----------------------------------------------------*/
.bold {
  font-weight: 700; }

.key {
  color: red; }

a.link_key {
  color: #999;
  text-decoration: underline; }

a.link_key:hover {
  text-decoration: none; }

.title_style01 {
  margin-bottom: 40px;
  font-size: 38px;
  font-size: 3.8rem;
  text-align: center;
  font-weight: 700; }

.title_style02 {
  margin-bottom: 30px;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700; }

.title_style03 {
  margin-bottom: 30px;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center; }

.line_title {
  color: #333;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 60px;
  align-items: center;
  display: flex;
  justify-content: center; }

.line_title::before,
.line_title::after {
  background-color: #f46893;
  content: "";
  height: 2px;
  width: 50px; }

.line_title::before {
  margin-right: 15px; }

.line_title::after {
  margin-left: 15px; }

.line_title.blue {
  margin-bottom: 10px; }

.line_title.blue::before,
.line_title.blue::after {
  background-color: #0d6fc2; }

@media screen and (max-width: 767px) {
  .title_style01 {
    margin-bottom: 20px;
    font-size: 28px;
    font-size: 2.8rem; }

  .title_style02 {
    margin-bottom: 15px;
    font-size: 20px;
    font-size: 2rem; }

  .title_style03, .line_title {
    margin-bottom: 20px;
    font-size: 22px;
    font-size: 2.2rem; } }
/*----------------------------------------------------
	TOPレイアウト
----------------------------------------------------*/
#news {
  background: url("../img/top/gb_blue.png") no-repeat left top; }
  #news .news_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; }
    #news .news_wrap > div {
      width: 48%; }
      #news .news_wrap > div h2 {
        margin-bottom: 30px;
        font-size: 30px;
        font-size: 3rem;
        font-weight: 700;
        text-align: center; }
        #news .news_wrap > div h2 span {
          font-weight: 700;
          font-size: 40px;
          font-size: 4rem; }
      #news .news_wrap > div .top_news_list {
        background-color: #f7f7f7;
        padding: 20px;
        border-radius: 15px; }
        #news .news_wrap > div .top_news_list li {
          padding: 10px;
          border-bottom: dotted 1px #ccc; }
          #news .news_wrap > div .top_news_list li .date {
            float: left;
            margin-right: 10px; }
          #news .news_wrap > div .top_news_list li .category {
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 12px;
            font-size: 1.2rem;
            background-color: #fff;
            padding: 0 5px;
            margin-bottom: 5px; }
          #news .news_wrap > div .top_news_list li a {
            display: block;
            text-decoration: underline; }
            #news .news_wrap > div .top_news_list li a:hover {
              text-decoration: none; }
          #news .news_wrap > div .top_news_list li.post_none {
            background: none !important; }
      #news .news_wrap > div .more_btn {
        display: block;
        margin: 20px auto;
        width: 200px;
        line-height: 40px;
        color: #fff;
        text-align: center;
        border-radius: 20px;
        background: url("../img/common/arrow_w.svg") no-repeat right 20px center;
        background-size: 6px;
        font-weight: 700; }
      #news .news_wrap > div.ga_news h2 span {
        color: #0d6fc2; }
      #news .news_wrap > div.ga_news .top_news_list li {
        background: url("../img/common/arrow_b.svg") no-repeat right 10px center;
        background-size: 6px; }
        #news .news_wrap > div.ga_news .top_news_list li .category {
          color: #0d6fc2;
          border: solid 1px #0d6fc2; }
        #news .news_wrap > div.ga_news .top_news_list li a {
          color: #0d6fc2; }
      #news .news_wrap > div.ga_news .more_btn {
        background-color: #0d6fc2; }
      #news .news_wrap > div.af_news h2 span {
        color: #f95c5d; }
      #news .news_wrap > div.af_news .top_news_list li {
        background: url("../img/common/arrow_o.svg") no-repeat right 10px center;
        background-size: 6px; }
        #news .news_wrap > div.af_news .top_news_list li .category {
          color: #f95c5d;
          border: solid 1px #f95c5d; }
        #news .news_wrap > div.af_news .top_news_list li a {
          color: #f95c5d; }
      #news .news_wrap > div.af_news .more_btn {
        background-color: #f95c5d; }

@media screen and (max-width: 767px) {
  #news {
    background-size: 50%; }
    #news .news_wrap {
      display: block; }
      #news .news_wrap > div {
        width: 100%; }
        #news .news_wrap > div h2 {
          margin-bottom: 20px;
          font-size: 20px;
          font-size: 2rem; }
          #news .news_wrap > div h2 span {
            font-size: 28px;
            font-size: 2.8rem; } }
#passing {
  background: url("../img/top/gb_goukaku.png") no-repeat right top 20px; }
  #passing h2 {
    display: block;
    width: 200px;
    margin: 0 auto;
    position: relative;
    line-height: 1.2;
    padding-top: 42px;
    background: url("../img/common/nav003.svg") no-repeat center top;
    background-size: 40px;
    margin-bottom: 5px; }
    #passing h2:before {
      display: block;
      content: "";
      background: url("../img/top/goukaku_h2_left.png") no-repeat center;
      width: 105px;
      height: 92px;
      position: absolute;
      bottom: 0;
      left: -100px; }
    #passing h2:after {
      display: block;
      content: "";
      background: url("../img/top/goukaku_h2_right.png") no-repeat center;
      width: 105px;
      height: 92px;
      position: absolute;
      bottom: 0;
      right: -100px; }
  #passing .more_btn {
    display: block;
    margin: 20px auto;
    width: 200px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    background: url("../img/common/arrow_w.svg") no-repeat right 20px center;
    background-color: #f46893;
    background-size: 6px;
    font-weight: 700; }

#passing-page .passing_title {
  background: url("../img/common/nav003.svg") no-repeat top center;
  background-size: 40px;
  padding-top: 50px; }

.passing_news {
  display: flex;
  justify-content: center; }
  .passing_news .passing_box {
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 20px;
    overflow: hidden;
    min-width: 23%; }
    .passing_news .passing_box + .passing_box {
      margin-left: 2.666666%; }
    .passing_news .passing_box .title {
      padding: 10px 0;
      background-color: #f46893;
      color: #fff;
      font-weight: 700;
      line-height: 1.3; }
    .passing_news .passing_box .pass-rate {
      font-size: 50px;
      font-size: 5rem;
      font-weight: 700;
      padding: 10px 15px;
      line-height: 1; }
      .passing_news .passing_box .pass-rate span {
        color: #fb3152;
        font-size: 70px;
        font-size: 7rem;
        font-weight: 700; }
    .passing_news .passing_box .txt {
      font-weight: 700;
      margin-bottom: 15px; }
    .passing_news .passing_box .supplement {
      margin: 0 20px 15px 20px;
      border-top: dotted 4px #ccc;
      padding-top: 10px; }
      .passing_news .passing_box .supplement p {
        font-weight: 700; }

@media screen and (max-width: 767px) {
  #passing {
    background-size: 50%;
    background-position: right -40px top; }
    #passing h2 {
      width: 140px; }
      #passing h2:before, #passing h2:after {
        display: none; }

  .passing_news {
    flex-wrap: wrap; }
    .passing_news .passing_box {
      min-width: 48%;
      width: 48%;
      margin-bottom: 15px; }
      .passing_news .passing_box + .passing_box {
        margin-left: 0; }
      .passing_news .passing_box:nth-child(even) {
        margin-left: 4%; }
      .passing_news .passing_box .pass-rate {
        font-size: 40px;
        font-size: 4rem; }
        .passing_news .passing_box .pass-rate span {
          font-size: 50px;
          font-size: 5rem; } }
#ga_top_service {
  position: relative;
  padding: 140px 0 80px; }
  #ga_top_service:after {
    position: absolute;
    content: '';
    display: block;
    background: url("../img/top/gakushusha.svg") no-repeat left top 20px;
    background-color: #cfe6f6;
    width: 97%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 0 60px 60px 0; }
  #ga_top_service:before {
    position: absolute;
    content: '';
    display: block;
    background: url("../img/top/ngb_blue.png") no-repeat center;
    width: 189px;
    height: 211px;
    top: -180px;
    right: left;
    z-index: 2; }
  #ga_top_service .service_wrap {
    padding: 40px 10px 30px 30px; }
    #ga_top_service .service_wrap .txt_box {
      background: url("../img/top/ga_parts.png") no-repeat right bottom;
      background-size: 35%; }
    #ga_top_service .service_wrap .more_btn {
      background-color: #0d6fc2; }

#af_top_service {
  position: relative;
  padding: 140px 0 80px; }
  #af_top_service:after {
    position: absolute;
    content: '';
    display: block;
    background: url("../img/top/after-school.svg") no-repeat right top 20px;
    background-color: #ffe9d7;
    width: 97%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 60px 0 0 60px; }
  #af_top_service:before {
    position: absolute;
    content: '';
    display: block;
    background: url("../img/top/afb_orange.png") no-repeat center;
    width: 189px;
    height: 211px;
    bottom: -180px;
    right: left;
    z-index: 2; }
  #af_top_service .service_wrap {
    padding: 40px 30px 30px 10px; }
    #af_top_service .service_wrap .txt_box {
      background: url("../img/top/af_parts.png") no-repeat right bottom;
      background-size: 35%;
      order: 2; }
    #af_top_service .service_wrap .more_btn {
      background-color: #f95c5d; }

.service_wrap {
  position: relative;
  background-color: #fff;
  z-index: 3;
  border-radius: 30px;
  display: flex;
  justify-content: space-between; }
  .service_wrap .txt_box {
    width: 48%;
    line-height: 1.6;
    padding-right: 20px; }
    .service_wrap .txt_box .more_btn {
      display: inline-block;
      width: 200px;
      line-height: 40px;
      margin-left: 15px;
      color: #fff;
      text-align: center;
      border-radius: 20px;
      background: url("../img/common/arrow_w.svg") no-repeat right 20px center;
      background-size: 6px;
      font-weight: 700; }
  .service_wrap .image_box {
    width: 50%;
    margin-top: -120px; }

@media screen and (max-width: 767px) {
  #ga_top_service, #af_top_service {
    padding: 120px 0 50px; }
    #ga_top_service:after, #af_top_service:after {
      width: 100%;
      border-radius: 0;
      background-image: none; }
    #ga_top_service .service_wrap, #af_top_service .service_wrap {
      padding: 20px; }
      #ga_top_service .service_wrap .txt_box, #af_top_service .service_wrap .txt_box {
        padding: 0; }

  #af_top_service:before {
    background-size: contain;
    width: 100px;
    height: 100px;
    top: -40px;
    left: inherit;
    right: 0; }

  #ga_top_service:before {
    background-size: contain;
    width: 100px;
    height: 100px;
    top: -40px; }
  #ga_top_service h2 {
    width: 65%;
    margin: 0 auto 15px; }

  .service_wrap {
    flex-wrap: wrap; }
    .service_wrap .txt_box {
      width: 100%;
      order: 2;
      background: none !important; }
    .service_wrap .image_box {
      width: 100%;
      margin-top: -120px;
      order: 1;
      margin-bottom: 10px; } }
#about {
  background: url("../img/top/gb_orange.png") no-repeat left bottom; }
  #about h2 {
    padding-top: 42px;
    background: url("../img/common/nav005.svg") no-repeat center top;
    background-size: 40px; }
  #about .about_wrap {
    display: flex;
    justify-content: space-between; }
    #about .about_wrap .about_box {
      width: 48%; }
      #about .about_wrap .about_box h3 {
        font-weight: 700; }
        #about .about_wrap .about_box h3 .ga {
          color: #0d6fc2; }
        #about .about_wrap .about_box h3 .af {
          color: #f95c5d; }
      #about .about_wrap .about_box .add {
        float: left; }
      #about .about_wrap .about_box .map_link {
        float: right; }
        #about .about_wrap .about_box .map_link a {
          color: #0d6fc2;
          text-decoration: underline;
          background: url("../img/common/map_link_icon.png") no-repeat right center;
          background-size: contain;
          padding-right: 25px; }
          #about .about_wrap .about_box .map_link a:hover {
            text-decoration: none; }

.movie {
  display: inline-block;
  position: relative; }

.movie_video {
  max-width: 100%;
  height: auto; }

.videowrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto; }
  .videowrap video {
    width: 100%; }

.movie .play-btn {
  display: block;
  width: 20%;
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%); }

.movie .play-btn.playActive {
  display: none; }

@media screen and (max-width: 767px) {
  #about {
    background-size: 50%;
    background-position: left top -120px; }
    #about .about_wrap {
      display: block; }
      #about .about_wrap .about_box {
        width: 100%; }
        #about .about_wrap .about_box + .about_box {
          margin-top: 10px; }

  .movie .play-btn {
    width: 40px;
    height: 40px; } }
#course .course_table th.row-title {
  width: 20%;
  text-align: center;
  padding: 20px 0; }
#course .course_table td {
  text-align: center; }
  #course .course_table td .week {
    background-color: #fcae26;
    color: #fff;
    font-weight: 700;
    padding: 0 10px;
    line-height: 20px;
    border-radius: 10px; }
    #course .course_table td .week span {
      font-weight: 700; }

#page_title {
  position: relative;
  margin-left: 50px; }
  #page_title img {
    width: 100%;
    height: auto; }
  #page_title h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    color: #fff;
    font-size: 44px;
    font-size: 4.4rem;
    font-weight: 700;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4); }
    #page_title h2 span {
      font-weight: 700; }

.breadcrumbs {
  padding: 10px 0; }
  .breadcrumbs a {
    color: #0d6fc2;
    text-decoration: underline; }
    .breadcrumbs a:hover {
      text-decoration: none; }

@media screen and (max-width: 767px) {
  #page_title {
    margin-left: 0; }
    #page_title h2 {
      width: 100%;
      font-size: 24px;
      font-size: 2.4rem; }

  .breadcrumbs {
    margin-bottom: 20px; } }
#archive .news_list {
  max-width: 800px;
  margin: 0 auto; }
  #archive .news_list li {
    border-bottom: dotted 2px #999;
    padding: 20px 25px 20px 0;
    display: flex; }
    #archive .news_list li .date {
      width: 12%; }
    #archive .news_list li .title {
      width: 70%; }
    #archive .news_list li a {
      text-decoration: underline;
      display: block; }
      #archive .news_list li a:hover {
        text-decoration: none; }
    #archive .news_list li .cat {
      width: 15%;
      margin-right: 40px; }
      #archive .news_list li .cat a.category {
        width: 100%;
        text-decoration: none;
        display: block;
        display: inline-block;
        text-align: center;
        font-size: 12px;
        font-size: 1.2rem; }
    #archive .news_list li.after-school-session, #archive .news_list li.after-school-news {
      background: url(../img/common/arrow_o.svg) no-repeat right 10px center;
      background-size: 6px; }
      #archive .news_list li.after-school-session a, #archive .news_list li.after-school-news a {
        color: #f95c5d; }
      #archive .news_list li.after-school-session a.category, #archive .news_list li.after-school-news a.category {
        border: solid 1px #f95c5d; }
        #archive .news_list li.after-school-session a.category:hover, #archive .news_list li.after-school-news a.category:hover {
          background-color: #f95c5d;
          color: #fff; }
    #archive .news_list li.cram-school-session, #archive .news_list li.cram-school-news {
      background: url(../img/common/arrow_b.svg) no-repeat right 10px center;
      background-size: 6px; }
      #archive .news_list li.cram-school-session a, #archive .news_list li.cram-school-news a {
        color: #0d6fc2; }
      #archive .news_list li.cram-school-session a.category, #archive .news_list li.cram-school-news a.category {
        border: solid 1px #0d6fc2; }
        #archive .news_list li.cram-school-session a.category:hover, #archive .news_list li.cram-school-news a.category:hover {
          background-color: #0d6fc2;
          color: #fff; }

@media screen and (max-width: 767px) {
  #archive .news_list li {
    padding: 10px 20px 10px 0;
    flex-wrap: wrap; }
    #archive .news_list li .date {
      width: 22%; }
    #archive .news_list li .title {
      width: 100%;
      margin-top: 5px; }
    #archive .news_list li .cat {
      width: auto;
      margin-right: 0; }
      #archive .news_list li .cat a {
        padding: 0 10px;
        font-size: 10px !important;
        font-size: 1rem !important; } }
.wp-pagenavi {
  text-align: center;
  margin: 50px auto; }

.wp-pagenavi a, .wp-pagenavi span {
  border: 1px solid #BFBFBF !important;
  padding: 4px 10px !important; }

.wp-pagenavi a:hover {
  border: 1px solid #f95c5d !important;
  color: #f95c5d !important; }

.wp-pagenavi span.current {
  color: #fff;
  background-color: #f95c5d;
  border: 1px solid #f95c5d !important; }

#contact .required {
  color: #f95c5d; }
#contact #form_table {
  max-width: 800px;
  margin: 0 auto; }
  #contact #form_table th {
    width: 30%; }
  #contact #form_table .text_link {
    text-decoration: underline;
    color: #0d6fc2; }
    #contact #form_table .text_link:hover {
      text-decoration: none; }
  #contact #form_table td .select_wrap {
    display: inline-flex;
    align-items: center;
    position: relative; }
    #contact #form_table td .select_wrap:after {
      position: absolute;
      right: 15px;
      width: 10px;
      height: 7px;
      background-color: #535353;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      content: '';
      pointer-events: none; }
    #contact #form_table td .select_wrap .wpcf7-select {
      appearance: none;
      min-width: 200px;
      height: 2.8em;
      padding: 0.4em calc(.8em + 30px) 0.4em 0.8em;
      border: 1px solid #d0d0d0;
      border-radius: 3px;
      background-color: #fff;
      color: #333333;
      font-size: 1em;
      cursor: pointer; }

@media screen and (max-width: 767px) {
  #contact #form_table th {
    width: 100%;
    border-right: 1px solid #ccc; } }
#policy .policy_list dt {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: solid 2px #ccc; }
  #policy .policy_list dt:after {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    bottom: -2px;
    width: 100px;
    height: 2px;
    background-color: #0d6fc2; }
#policy .policy_list dd {
  margin-bottom: 30px; }

#course h2 {
  padding-top: 42px;
  background: url("../img/common/nav002.svg") no-repeat center top;
  background-size: 40px; }
#course .hosoku_list {
  background-color: #f4f4f4;
  padding: 20px; }
  #course .hosoku_list li {
    padding-left: 1em;
    text-indent: -1em; }
#course .sp-onry-txt {
  display: none; }

@media screen and (max-width: 767px) {
  #course .sp-onry-txt {
    display: block;
    margin-top: 10px; }
  #course .text-right {
    text-align: left !important; } }
#access .access_list li {
  margin-bottom: 50px; }
  #access .access_list li h3 {
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 20px; }
    #access .access_list li h3 span {
      font-weight: 700; }
    #access .access_list li h3 .ga:before {
      content: "● ";
      color: #0d6fc2; }
    #access .access_list li h3 .af:before {
      content: "● ";
      color: #f95c5d; }
    #access .access_list li h3 .honbu:before {
      content: "● ";
      color: #999; }
  #access .access_list li .flex {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
    #access .access_list li .flex .txt {
      position: absolute;
      left: 0;
      top: 0; }
    #access .access_list li .flex .map {
      width: 45%; }
      #access .access_list li .flex .map iframe {
        border-radius: 20px !important; }
    #access .access_list li .flex .image {
      width: 52%; }
      #access .access_list li .flex .image img {
        width: 100%;
        height: auto; }

@media screen and (max-width: 767px) {
  #access .access_list li {
    margin-bottom: 20px; }
    #access .access_list li h3 {
      font-size: 18px;
      font-size: 1.8rem;
      margin-bottom: 10px; }
    #access .access_list li .flex {
      display: block; }
      #access .access_list li .flex .txt {
        position: inherit;
        width: 100%; }
      #access .access_list li .flex .map, #access .access_list li .flex .image {
        width: 100%; }
      #access .access_list li .flex .image {
        margin-top: 15px; } }
#cram-school h2 {
  padding-top: 42px;
  background: url("../img/common/nav001.svg") no-repeat center top;
  background-size: 40px; }
#cram-school .features_list {
  background: url("../img/cram-school/line.svg") no-repeat bottom center;
  background-size: contain; }
  #cram-school .features_list li {
    padding: 50px 0;
    background: url("../img/cram-school/line.svg") no-repeat top center;
    background-size: contain; }
    #cram-school .features_list li h3 {
      font-size: 26px;
      font-size: 2.6rem;
      margin-bottom: 20px;
      font-weight: 700;
      color: #0d6fc2; }
    #cram-school .features_list li .flex {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      #cram-school .features_list li .flex .txt {
        width: 45%; }
        #cram-school .features_list li .flex .txt p {
          line-height: 2; }
      #cram-school .features_list li .flex .image {
        width: 52%; }
        #cram-school .features_list li .flex .image img {
          width: 100%;
          height: auto; }
    #cram-school .features_list li:nth-child(even) .flex .txt {
      order: 2; }
    #cram-school .features_list li:nth-child(even) .flex .image {
      order: 1; }

@media screen and (max-width: 767px) {
  #cram-school .features_list li {
    padding: 30px 0; }
    #cram-school .features_list li h3 {
      font-size: 18px;
      font-size: 1.8rem;
      margin-bottom: 10px; }
    #cram-school .features_list li .flex {
      display: block; }
      #cram-school .features_list li .flex .txt, #cram-school .features_list li .flex .image {
        width: 100%; }
      #cram-school .features_list li .flex .image {
        margin-top: 15px; } }
#after-school h2 {
  padding-top: 48px;
  background: url("../img/common/nav004.svg") no-repeat center top;
  background-size: 40px; }
#after-school .after-policy {
  display: flex;
  justify-content: space-between; }
  #after-school .after-policy li {
    width: 25%;
    padding: 10px 20px;
    border-right: 3px dotted #999; }
    #after-school .after-policy li:last-child {
      border-right: none; }
    #after-school .after-policy li dt {
      color: #f95c5d;
      font-weight: 700;
      margin-bottom: 10px; }
#after-school .step_wrap {
  background-color: #fff1e5;
  padding: 30px 0 80px;
  margin-top: 80px;
  margin-bottom: 30px; }
  #after-school .step_wrap .after-step-wrap {
    background: url("../img/after-school/step_bg.jpg") repeat center center;
    padding: 50px;
    text-align: center;
    border-radius: 60px; }
    #after-school .step_wrap .after-step-wrap ol {
      background: url("../img/after-school/left_bg.png"), url("../img/after-school/right_bg.png");
      background-position: left center,right center;
      background-repeat: no-repeat,no-repeat;
      background-size: contain; }
      #after-school .step_wrap .after-step-wrap ol li {
        position: relative;
        padding: 30px 0; }
        #after-school .step_wrap .after-step-wrap ol li:after {
          content: "";
          position: absolute;
          display: block;
          width: 0;
          height: 0;
          border-style: solid;
          border-right: 15px solid transparent;
          border-left: 15px solid transparent;
          border-top: 16px solid #cccccc;
          border-bottom: 0;
          bottom: -15px;
          left: 0;
          right: 0;
          margin: 0 auto; }
        #after-school .step_wrap .after-step-wrap ol li:last-child:after {
          display: none; }
#after-school .adter_table th {
  background-color: #f95c5d;
  color: #fff; }
#after-school .adter_table td dt {
  float: left; }
#after-school .adter_table td dd {
  padding-left: 200px; }
#after-school .hosoku_list {
  background-color: #f4f4f4;
  padding: 20px; }
  #after-school .hosoku_list li {
    padding-left: 1em;
    text-indent: -1em; }
  #after-school .hosoku_list .key_line {
    font-weight: 700;
    text-decoration: underline; }
#after-school .text_link {
  color: #0d6fc2;
  text-decoration: underline; }
  #after-school .text_link:hover {
    text-decoration: none; }
#after-school .about_wrap {
  display: flex;
  justify-content: space-between; }
  #after-school .about_wrap .about_box {
    width: 48%; }
    #after-school .about_wrap .about_box h3 {
      font-weight: 700; }
      #after-school .about_wrap .about_box h3 .af {
        color: #f95c5d; }
    #after-school .about_wrap .about_box .add {
      float: left; }
    #after-school .about_wrap .about_box .map_link {
      float: right; }
      #after-school .about_wrap .about_box .map_link a {
        color: #0d6fc2;
        text-decoration: underline;
        background: url("../img/common/map_link_icon.png") no-repeat right center;
        background-size: contain;
        padding-right: 25px; }
        #after-school .about_wrap .about_box .map_link a:hover {
          text-decoration: none; }

#to_contact {
  margin-top: 50px;
  background-color: #f4f4f4;
  padding: 50px;
  display: flex;
  border-radius: 30px; }
  #to_contact h3 {
    width: 30%;
    font-weight: 700;
    text-align: center;
    border-right: 3px dotted #999; }
  #to_contact .contact_list {
    width: 70%;
    display: flex;
    justify-content: space-between; }
    #to_contact .contact_list .tel {
      width: 50%; }
      #to_contact .contact_list .tel a {
        padding: 10px 0;
        display: block;
        text-align: center;
        font-size: 40px;
        font-size: 4rem;
        font-weight: 700;
        line-height: .6;
        height: 70px; }
        #to_contact .contact_list .tel a span.no {
          padding-left: 25px;
          background: url("../img/common/f_tel_icon.svg") no-repeat left top 18px;
          font-weight: 700; }
    #to_contact .contact_list .mail {
      width: 50%; }
      #to_contact .contact_list .mail a {
        display: block;
        background-color: #f95c5d;
        color: #fff;
        text-align: center;
        font-size: 28px;
        font-size: 2.8rem;
        height: 70px;
        line-height: 70px;
        width: 270px;
        border-radius: 35px; }
        #to_contact .contact_list .mail a span {
          padding-left: 30px;
          background: url("../img/common/mail_icon.svg") no-repeat left center;
          font-weight: 700; }

@media screen and (max-width: 767px) {
  #after-school .after-policy {
    display: flex;
    flex-wrap: wrap; }
    #after-school .after-policy li {
      width: 50%;
      padding: 20px; }
      #after-school .after-policy li dt {
        margin-bottom: 5px;
        text-align: center; }
      #after-school .after-policy li:nth-child(1) {
        border-bottom: 3px dotted #999; }
      #after-school .after-policy li:nth-child(2) {
        border-right: none;
        border-bottom: 3px dotted #999; }
      #after-school .after-policy li:nth-child(3) {
        border-right: 3px dotted #999; }
      #after-school .after-policy li:nth-child(4) {
        border-right: none; }
  #after-school .step_wrap {
    padding: 10px 0 50px;
    margin-top: 50px;
    margin-bottom: 10px; }
    #after-school .step_wrap .after-step-wrap {
      padding: 20px;
      border-radius: 30px; }
      #after-school .step_wrap .after-step-wrap ol {
        padding: 70px 0;
        background: url("../img/after-school/top_bg.png"), url("../img/after-school/bottom_bg.png");
        background-position: top center, bottom center;
        background-repeat: no-repeat,no-repeat;
        background-size: contain; }
        #after-school .step_wrap .after-step-wrap ol li {
          padding: 20px 0; }
          #after-school .step_wrap .after-step-wrap ol li:after {
            border-right: 10px solid transparent;
            border-left: 10px solid transparent;
            border-top: 11px solid #cccccc;
            bottom: -5px; }
  #after-school .about_wrap {
    flex-wrap: wrap; }
    #after-school .about_wrap .about_box {
      width: 100%; }
    #after-school .about_wrap .about_box + .about_box {
      margin-top: 20px; }

  #to_contact {
    margin-top: 30px;
    padding: 20px;
    display: flex;
    border-radius: 20px;
    flex-wrap: wrap; }
    #to_contact h3 {
      width: 100%;
      border-right: none;
      margin-bottom: 10px; }
    #to_contact .contact_list {
      width: 100%; }
      #to_contact .contact_list .tel {
        width: 50%; }
        #to_contact .contact_list .tel a {
          padding: 0;
          font-size: 22px;
          font-size: 2.2rem;
          height: auto; }
          #to_contact .contact_list .tel a .fs18 {
            font-size: 10px;
            font-size: 1rem; }
          #to_contact .contact_list .tel a span.no {
            font-size: 22px;
            font-size: 2.2rem;
            padding-left: 20px;
            background-size: 14px;
            background-position: left top 10px;
            line-height: .5; }
      #to_contact .contact_list .mail {
        width: 50%; }
        #to_contact .contact_list .mail a {
          width: 140px;
          font-size: 14px;
          font-size: 1.4rem;
          height: 34px;
          line-height: 34px; }
          #to_contact .contact_list .mail a span {
            padding-left: 20px;
            background-size: 15px; } }
