@charset "UTF-8";
/**
 *
 * 全ページ共通部分（font、header、footer、etc）
 *
 */

/**
 * fonts
 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');
.roboto{
  font-family: 'Roboto', sans-serif;
}
.noto{
  font-family: 'Noto Sans JP', sans-serif;
}

.grecaptcha-badge { visibility: hidden; }

/**
 * common
 */
html {
}
body{
  font-family: "Roboto", "Noto Sans JP", "Apple TP", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-weight: 500;
  color: #1a1a1a;
  font-size: 15px;
  letter-spacing: .07em;
  width: 100%;
}
main{
  display: block;
}

.wrapper{
  width: 90vw;
  max-width: 1120px;
  margin: 0 auto;
}
.wrapper2{
  width: 85vw;
  max-width: 1370px;
  margin: 0 auto;
}
.container{
  width: 90vw;
  max-width: 920px;
  margin: 0 auto;
}
body.home .container,
header .container{
  max-width: 980px;
}

.wrapper .container{
  width: 80vw;
}

img{
  max-width: 100%;
  height: auto;
}

a{
  color: #1a1a1a;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
a:hover{
  color: #007c86;
}


@media all and (max-width: 768px) {
  .wrapper2{
    width: 90vw;
  }
}


/* IE11の場合表示 */
.ie11{
  display: none;
}
_:lang(x)::-ms-backdrop, .ie11 {
  display: block;
}
/* IE11の場合非表示 */
_:lang(x)::-ms-backdrop, .not_ie11{
  display: none !important;
}

/* Edgeの場合表示 */
.edge{
  display: none;
}
_:-ms-lang(x)::backdrop, .edge {
  display: block;
}
/* Edgeの場合非表示 */
_:-ms-lang(x)::backdrop, .not_edge{
  display: none !important;
}



/**
 * responsive
 */
@media all and (min-width: 769px) {
  .sp{
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .pc{
    display: none !important;
  }
}


/**
 * header
 */
@media all and (min-width: 769px) {
  header nav menu.sub{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .logo{
    width: 300px;
  }
  header .logo a,
  header .logo img{
    display: block;
  }
  header .sub_menu,
  header .sub_menu .menu{
    display: flex;
    align-items: center;
  }
  header .sub_menu #sub_menu01 .menu-item{
    margin-right: 22px;
  }
  header .sub_menu #sub_menu01 a{
    text-decoration: none;
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
  }
  header .sub_menu #sub_menu01 a:hover{
    color: #1a1a1a;
  }
  header .sub_menu #sub_menu02 a{
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    min-width: 137px;
    height: 67px;
    padding: 0 10px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
  }
  header .sub_menu #sub_menu02 #menu-item-83{
  }
  header .sub_menu #sub_menu02 #menu-item-83 a{
    color: #1a1a1a;
    background-color: #ff0;
  }
  header .sub_menu #sub_menu02 #menu-item-83 a:hover{
    background-color: #d2d200;
  }
  header .sub_menu #sub_menu02 #menu-item-84 a{
    color: #fff;
    background-color: #1a1a1a;
  }
  header .sub_menu #sub_menu02 #menu-item-84 a:hover{
    background-color: #4d4d4d;
  }

  header #menu-global_menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.3%;
  }
  header #menu-global_menu > .menu-item{
    padding: 15px 0 18px;
  }
  header #menu-global_menu > .menu-item > a{
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #1a1a1a;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    padding: 10px 0;
    white-space: nowrap;
    display: block;
    position: relative;
  }
  header #menu-global_menu > .menu-item > a:hover{
    color: #666;
  }
  header #menu-global_menu > .menu-item.menu-item-has-children{
    position: relative;
  }
  header #menu-global_menu > .menu-item.menu-item-has-children > a{
    position: relative;
    margin-right: 18px;
  }
  header #menu-global_menu > .menu-item.menu-item-has-children > a::after{
    content: "";
    background: url('../images/keyboard_arrow_down.svg') no-repeat center center/contain;
    width: 12px;
    height: 8px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -18px;
    margin: auto 0;
  }
  header #menu-global_menu > .menu-item > a::before{
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background-color: #000;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
  header #menu-global_menu > .menu-item > a:hover::before,
  header #menu-global_menu > .menu-item.current-menu-item > a::before{
    width: 100%;
    opacity: 1;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu{
    display: none;
    position: absolute;
    top: 90%;
    left: 50%;
    z-index: 99;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #007c86;
    padding: 18px 0;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 12px 7px;
    border-color: transparent transparent #007c86;
    position: absolute;
    bottom: calc(100% - 1px);
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu .menu-item:first-child{/* 子メニューの1つ目。「〜トップ」。SP用 */
    display: none;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu a{
    display: block;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    padding: 11px 37px 11px 22px;
    white-space: nowrap;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
    position: relative;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu .current-menu-item a{
    cursor: default;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu a:hover,
  header #menu-global_menu .menu-item-has-children .sub-menu .current-menu-item a{
    background-color: #289199;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu a::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
    width: 16px;
    height: 8px;
    background: url('../images/arrow_right_alt_white.svg') no-repeat center center/contain;
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu .menu-item:not(.current-menu-item) a:hover::after{
    opacity: 1;
  }

  header .sub_menu .menu .menu-item.menu-item-privacy-policy{
    display: none;
  }
}



@media all and (max-width: 896px) and (min-width: 769px) {
  header .logo{
    width: 220px;
  }
  header .sub_menu #sub_menu01 .menu-item{
    margin-right: 16px;
  }
  header .sub_menu #sub_menu01 a{
    font-size: 12px;
  }
  header .sub_menu #sub_menu02 a{
    font-size: 13px;
    min-width: 110px;
    height: 60px;
  }
  header #menu-global_menu{
    padding: 0;
  }
  header #menu-global_menu > .menu-item {
    padding: 10px 0 13px;
  }
  header #menu-global_menu > .menu-item > a{
    font-size: 14px;
    padding: 8px 0;
  }
  header #menu-global_menu > .menu-item.menu-item-has-children > a{
    margin-right: 15px;
  }
  header #menu-global_menu > .menu-item.menu-item-has-children > a::after{
    width: 10px;
    height: 6px;
    right: -15px;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu{
    padding: 7px 0;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu::before{
    border-width: 0 5px 10px 5px;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu a{
    font-size: 14px;
    padding: 9px 25px 9px 15px;
  }
  header #menu-global_menu .menu-item-has-children .sub-menu a::after{
    right: 10px;
    width: 12px;
    height: 6px;
  }
}


@media all and (max-width: 768px) {
  header{
    height: 55px;
  }
  header .sp_header{
    height: 55px;
    display: flex;
    align-items: center;
    padding-left: 7px;
    background-color: #fff;
  }
  header .sp_header.fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  header .sp_header a.logo{
    width: 230px;
    display: block;
  }
  header .sp_header a.logo img{
    display: block;
  }
  header .sp_header .menu_btn{
    border: none;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    z-index: 999;
    cursor: pointer;
  }
  header .sp_header .menu_btn i{
    width: 30px;
    height: 30px;
    background: url('../images/menu.svg') no-repeat center center/contain;
  }
  header .sp_header .menu_btn.clear i{
    background-image: url('../images/clear.svg');
  }
  header .sp_header .menu_btn span{
    color: #fff;
    font-size: 10px;
    line-height: 1.2;
  }
  header nav{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    display: flex;
    flex-direction: column;
    max-width: 330px;
    width: 88%;
    height: 100%;
    background-color: #fff;
    padding: 72px 22px 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all .3s cubic-bezier(0, 0, 0, 1);
    -o-transition: all .3s cubic-bezier(0, 0, 0, 1);
    transition: all .3s cubic-bezier(0, 0, 0, 1);
    -webkit-transform: translate(-100%, -1px);
    -ms-transform: translate(-100%, -1px);
    transform: translate(-100%, -1px);
    opacity: 0;
  }
  header nav.active{
    -webkit-transform: translate(0, -1px);
    -ms-transform: translate(0, -1px);
    transform: translate(0, -1px);
    opacity: 1;
  }
  header nav menu.sub{
    order: 2;
    padding-bottom: 32px;
  }
  header nav menu.main{
    order: 1;
  }
  header .container{
    width: 100%;
  }
  header .menu > .menu-item{
    border-bottom: 1px solid #d6d6d6;
  }
  header .menu-item > a{
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    white-space: nowrap;
    display: block;
    padding: 20px 0;
    position: relative;
  }
  header .menu-item > a::after{
    content: "";
    width: 14px;
    height: 14px;
    background: url('../images/keyboard_arrow_right.svg') no-repeat center center/contain;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4px;
    margin: auto 0;
  }
  header .menu-item.menu-item-has-children > a::after{
    background-image: url('../images/add.svg');
  }
  header .menu-item.menu-item-has-children > a.remove::after{
    background-image: url('../images/remove.svg');
  }
  header .menu-item.menu-item-has-children .sub-menu{
    display: none;
    padding-left: 15px;
    padding-bottom: 15px;
  }
  header .menu-item.menu-item-has-children .sub-menu .menu-item > a{
    padding: 13px 0;
  }
  header .sp_nav_cover{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    z-index: 997;
    display: none;
  }

  header #sub_menu02 .menu-item{
    border: none;
  }
  header #sub_menu02 .menu-item:nth-child(n+2){
    margin-top: 13px;
  }
  header #sub_menu02 .menu-item > a{
    font-weight: bold;
    color: #fff;
    background-color: #007c86;
    text-align: center;
    padding: 17px 0;
  }
  header #sub_menu02 .menu-item > a::after{
    background-image: url('../images/arrow_right_alt_white.svg');
    right: 14px;
  }
  header .sub_menu .tel{
    margin: 25px 0 15px;
  }
  header .sub_menu .tel a{
    display: block;
    text-decoration: none;
    color: #000;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    background-color: #ff0;
    padding: 15px 0;
  }
  header .sub_menu .tel b,
  header .sub_menu .tel small{
    display: block;
    font-weight: 500;
    margin-top: 5px;
  }
  header .sub_menu .tel b{
    font-size: 31px;
    margin-top: 10px;
  }
  header .sub_menu .tel small{
    font-size: 11px;
  }
}



/**
 * try_demo
 */
#try_demo{
  padding: 77px 0 27px;
  position: relative;
}
#try_demo::before{
  content: "";
  width: 100%;
  height: 358px;
  background: #d8d9da url('../images/try_demo_bg.jpg') no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#try_demo .wrapper{
  padding: 70px 0 60px;
  background-color: #fff;
  border-radius: 10px;
}
#try_demo h3{
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
#try_demo .container{
  margin-top: 60px;
}
#try_demo ul{
  margin-top: 30px;
  counter-reset: item;
}
#try_demo ul li{
  font-weight: 700;
  padding-left: 15px;
  position: relative;
  line-height: 1.7;
}
#try_demo ul li::before{
	counter-increment: item;
  content: counter(item)'.';
  position: absolute;
  top: 0;
  left: 0;
}

@media all and (max-width: 768px) {
  #try_demo{
    padding: 38px 0 20px;
  }
  #try_demo::before{
    height: 70px;
  }
  #try_demo .wrapper{
    padding: 30px 0 40px;
    border-radius: 6px;
  }
  #try_demo h3{
    font-size: 22px;
  }
  #try_demo .container{
    margin-top: 37px;
  }
  #try_demo ul{
    margin-top: 25px;
  }
  #try_demo ul li{
    line-height: 1.65;
  }
}



/**
 * contact
 */
#contact{
  padding: 110px 0 146px;
  background: #2f2e29 url('../images/contact_bg.jpg') no-repeat center center/cover;
}
#contact h3{
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
#contact ul{
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
#contact ul li{
  width: 31.786%;
  height: 143px;
  text-align: center;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  line-height: 1;
}
#contact ul li dl{
  width: 100%;
}
#contact ul li dl dt{
  font-size: 16px;
  font-weight: 700;
}
#contact ul li dl dd{
  margin-top: 15px;
  line-height: 1;
}
#contact ul li dl dd b{
  font-size: 33px;
  font-weight: 500;
  display: block;
  letter-spacing: 0;
}
#contact ul li dl dd small{
  font-size: 12px;
  display: block;
  margin-top: 5px;
}
#contact a.btn.yellow{
  margin-top: 0;
}

@media all and (max-width: 896px) {
  #contact ul li dl dt{
    font-size: 15px;
  }
  #contact ul li dl dd b{
    font-size: 31px;
  }
  #contact ul li dl dd small{
    font-size: 11px;
  }
}

@media all and (max-width: 768px) {
  #contact{
    padding: 50px 0 70px;
    background-image: url('../images/contact_bg_sp.jpg');
  }
  #contact h3{
    font-size: 22px;
  }
  #contact ul{
    margin-top: 30px;
    flex-direction: column;
  }
  #contact ul li{
    width: 100%;
    height: 135px;
  }
  #contact ul li:nth-child(n+2){
    margin-top: 19px;
  }
}


/**
 * footer
 */
footer{
  padding-top: 50px;
}
footer > i{
  position: fixed;
  bottom: 11vh;
  right: 0;
  width: 50px;
  height: 50px;
  background: #007c86 url('../images/arrow_right_alt_white.svg') no-repeat center center/16px 16px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  z-index: 995;
  cursor: pointer;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}
footer > i:hover{
  background-color: #baced3;
  background-image: url('../images/arrow_right_alt_green.svg');
}
footer .wrapper{
  display: flex;
}
footer .co_info{
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.7;
}
footer nav{
  width: 100%;
  display: flex;
  justify-content: space-around;
}
footer nav .menu .menu-item{
  font-size: 14px;
  line-height: 1.15;
}
footer nav .menu > .menu-item:nth-child(n+2){
  margin-top: 35px;
}
footer nav .menu .sub-menu{
  margin-left: 10px;
}
footer nav .menu .sub-menu .menu-item{
  margin-top: 12px;
}
footer nav a{
  text-decoration: none;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}
footer nav a:hover{
  text-decoration: underline;
}
footer nav .menu .sub-menu .menu-item a{
  padding-left: 10px;
  display: inline-block;
  position: relative;
}
footer nav .menu .sub-menu .menu-item a::before{
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
footer .copyright{
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0;
  border-top: 1px solid #ddd;
  padding: 28px 0;
  margin-top: 70px;
}

@media all and (max-width: 896px) {
  footer .wrapper{
    font-size: 13px;
  }
}

@media all and (max-width: 768px) {
  footer{
    padding-top: 35px;
  }
  footer > i{
    bottom: 0;
  }
  footer .wrapper{
    font-size: 15px;
  }
  footer nav{
    margin-top: 20px;
  }
  footer .wrapper,
  footer nav{
    flex-direction: column;
  }
  footer nav .menu > .menu-item{
    border-bottom: 1px solid #d6d6d6;
  }
  footer nav .menu > .menu-item:nth-child(n+2){
    margin-top: 0;
  }
  footer nav .menu .sub-menu{
    display: none;
  }
  footer nav a{
    display: block;
    padding: 20px 0;
    position: relative;
  }
  footer nav a::after{
    content: "";
    width: 15px;
    height: 15px;
    background: url('../images/keyboard_arrow_right.svg') no-repeat center center/contain;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
  }
  footer .copyright{
    font-size: 14px;
    padding: 40px 0 25px;
    margin-top: 0;
    border: none;
  }
}


/* 講座サイドメニュー */
.academy_side{
    position:fixed;
    bottom: 0;
    right: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    background: rgba(0,0,0,0.8);
    transform: translateX(92.5%);
    transform: translateX(calc(100% - 28px));
    transition: .4s ease-out;
}
.academy_side a {
  text-decoration: none;
}
.academy_side.is-open{
    transform: translateX(0%);
}
.academy_side .btn{
    color:#e5e5e5;
    padding: 10px;
    line-height: 100px;
}
.academy_side a{
    padding: 16px 20px 16px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    color: #e5e5e5;
}
.academy_side:hover{
    background: #ff0;
}
.academy_side:hover .btn,
.academy_side:hover a{
    color: #1a1a1a;
}
.academy_side:hover a h3{
    color: #1a1a1a;
}
.academy_side .academy_summary h3{
    margin: 0 0 10px 10px;
    color: #ff0;
    letter-spacing: px;
    font-size: 1.3rem;
}
.academy_side .academy_summary p{
    margin: 0 0 0 10px;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.4;
}
.btn {
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .academy_side {
        display: none;
    }
}
