@charset"utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/* "*"
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
}

/* "html"
-------------------------------------------------- */
html{
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 62.5%;
  box-sizing: border-box;
}

/* "body"
-------------------------------------------------- */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  letter-spacing: -0.01rem;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 1.6rem;
  color: #000;
}
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}

/* "p"tag
-------------------------------------------------- */
p{
  font-size: 1.6rem;
  margin-bottom: 0;
}
p.p-txt{
  line-height: 2.0;
}
@media print, screen and (max-width: 767px) {
  p{
    font-size: 1.5rem;
  }
  p.p-txt{
    line-height: 2.0;
  }
}

/* "a"tag
-------------------------------------------------- */
a{
  color: #000;
  text-decoration: none;
}

/* "li/ol/ul" Tag
-------------------------------------------------- */
ol li{
  font-size: 1.6rem;
  line-height: 2.0;
  margin-left: 2.0rem;
}
ul li{
  font-size: 1.6rem;
  list-style-type: none;
  line-height: 2.0;
}
@media print, screen and (max-width: 767px) {
  ol li,
  ul li{
    font-size: 1.5rem;
  }
}

/* "dt dd" Tag
-------------------------------------------------- */
dl dt,
dl dd{
  font-size: 1.6rem;
  line-height: 2.0;
}
@media print, screen and (max-width: 767px) {
  dl dt,
  dl dd{
    font-size: 1.5rem;
  }
}

/* decoration
-------------------------------------------------- */
.bold{
  font-weight: bold;
}
.left{
  text-align: left;
}
.center{
  text-align: center;
}
.right{
  text-align: right;
}

/* color
-------------------------------------------------- */
.white {
  color: #FFFFFF;
}
.red {
  color: #DE4830;
}
.blue {
  color: #156CA3;
}
.orange {
  color: #E9872E;
}
.green {
  color: #26AE90;
}
.brown {
  color: #AD8141;
}

/* margin
-------------------------------------------------- */
.mb0 {
  margin-bottom: 0;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}

/* forPC,forSP
-------------------------------------------------- */
.forPC{
  display: inline;
}
.forPCTB{
  display: inline;
}
.forSP{
  display: none;
}
@media screen and (max-width: 767px) {
  .forPC{
    display: none;
  }
  .forPCTB{
    display: inline;
  }
  .forSP{
    display: inline;
  }
}
@media screen and (max-width: 560px) {
  .forPCTB{
    display: none;
  }
}

/* wrapper
-------------------------------------------------- */
#wrapper{
  width: 100%;
  display: none;
}

/* inner
-------------------------------------------------- */
div.inner{
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .inner{
    width: 95%;
    margin: 0 auto;
  }
}

/* content
-------------------------------------------------- */
div.content{
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  div.content{
    width: 92%;
  } 
}

/* img
-------------------------------------------------- */
img{
  width: 100%;
  height: auto;
}

/* "h" tag
-------------------------------------------------- */
h3.h3-cmn{
  font-size: 3.2rem;
  line-height: 1.3;
  margin-bottom: 5rem;
  text-align: center;
  position: relative;
}
h4.h4-top-cmn{
  font-size: 2.0rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 767px) {
  h3.h3-cmn{
    font-size: 2.6rem;
  }
  h4.h4-top-cmn{
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

/* header
-------------------------------------------------- */
header.top-head{
  position: relative;
  width: 100%;
  height: 9rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: auto;
  background: #fff;
  z-index: 10;
}
header div.logo-area{
  width: 20rem;
}
header div.logo-area h1{
  width: 20rem;
}
header div.logo-area h1 a:hover{
  opacity: 0.6;
  transition: 0.6s;
}
/* nav */
header div.nav-area{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header div.nav-area div.nav-logo{
  display: none;
}
header div.nav-area nav.nav-wrap a.nav-button {
  display: none;
}
header div.nav-area nav.nav-wrap div.nav-screen{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
  margin-right: 3.5rem;
  line-height: 2.4;
  font-weight: normal;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a{
  font-size: 1.5rem;
  color: #000;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li a:hover{
  opacity: 0.4;
  transition: 0.6s;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li:last-child{
  margin-right: 0;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.reservation{
  text-align: center;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.reservation a{
  border: 1px solid #000;
  background: #000;
  color: #fff;
  width: 14rem;
  border-radius: 5rem;
  display: inline-block;
  line-height: 2.0;
  padding: 0.35rem 0 0.4rem;
}
header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.reservation a:hover{
  background: #fff;
  color: #000;
  transition: 0.6s;
  opacity: inherit;
}
header div.nav-area nav.nav-wrap.open{
  display: block;
}
header div.nav-area nav.nav-wrap.close{
  display: none;
  margin-top: 0.3rem;
  opacity: 1;
  cursor: auto;
}
header div.nav-area nav.nav-wrap div.nav-screen div.sns{
  display: none;
}
/* Fixed */
header.top-head.fixed{
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header.top-head.fixed div.nav-area ul.nav li{
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}
header.top-head.fixed {
  width: 100%;
  top: 0;
  position: fixed;
  height: 9rem;
  -webkit-box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.15);
}
header.top-head.fixed div.logo-area{
  width: 20rem;
}
@media print, screen and (min-width: 961px){
  header div.nav-area nav.nav-wrap {
    display: block !important;
  }
}
@media print, screen and (max-width: 960px){
  /* clicked hamburger button screen */
  header div.nav-area{
    display: block;
    -webkit-box-align: none;
    -ms-flex-align: none;
    align-items: none;
  }
  header.top-head{
    padding: 0 1rem;
    height: 9rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header div.nav-area nav.nav-wrap{
    left: 0;
    top: 0;
    display: none;
    z-index: -1;
    background: rgba(255,255,255,1);
    width: 100%;
    height: 100%;
    position: fixed;
  }
  header div.nav-area div.nav-logo{
    display: block;
    margin: 6rem auto 0;
    width: 20rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen{
    display: block;
    margin: 10rem auto 0;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav{
    position: relative;
    margin: 0 auto;
    width: 94%;
    display: block;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li{
    margin-right: 0;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    display: block;
    width: 100%;
    border-bottom: 1px solid #DDD;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.reservation{
    margin-top: 5rem;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
  header div.nav-area nav.nav-wrap div.nav-screen ul.nav li.reservation a{
    width: 18rem;
    padding: 0.8rem 0 1rem;
  }
  /* hamburger button */
  header div.nav-area a.nav_button{
    height: 22px;
    position: absolute;
    right: 1.8rem;
    top: 31px;
    width: 27px;
    z-index: 101;
  }
  header div.nav-area a.nav_button:hover{
    opacity: 0.6;
    transition: 0.6s;
    cursor: pointer;
  }
  header div.nav-area span.nav_line{
    background: #000;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
  }
  header div.nav-area span.line_center{
    top: 10px;
  }
  header div.nav-area span.line_bottom{
    bottom: 0;
  }
  header div.nav-area span.line_top.active{
    top: 10px;
    transform: rotate(45deg);
    background: #000;
  }
  header div.nav-area span.line_center.active{
    transform:scaleX(0);
  }
  header div.nav-area span.line_bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
    background: #000;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns ul li:first-child{
    margin-right: 1.2rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns ul li i{
    font-size: 3.6rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns ul li a:hover{
    opacity: 0.6;
    transition: 0.6s;
  }
  /* Fixed */
  header.top-head.fixed div.nav-area a.nav_button{
    right: 1.8rem;
  }
  header div.nav-area nav.nav-wrap div.nav-screen div.sns{
    display: block;
    margin: 5rem auto 0;
  }
}

/* mainvisualSec
-------------------------------------------------- */
section.mainvisualSec{
  width: 100%;
  position: relative;
}
section.mainvisualSec div.img-area{
  width: 70%;
  margin: 3.5% auto 0;
}
section.mainvisualSec div.name-area{
  margin-top: 5%;
}
section.mainvisualSec div.name-area h2.name{
  font-size: 9.2vw;
  line-height: 0.8;
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (max-width: 1500px) {
  section.mainvisualSec div.img-area{
    width: 90%;
    margin: 5% auto 0;
  }
  section.mainvisualSec div.name-area{
    margin-top: 7%;
  }
  section.mainvisualSec div.name-area h2.name{
    font-size: 11vw;
  }
}
@media print, screen and (max-width: 1280px) {
  section.mainvisualSec div.img-area{
    width: 95%;
    margin: 5% auto 0;
  }
  section.mainvisualSec div.name-area{
    margin-top: 8%;
  }
  section.mainvisualSec div.name-area h2.name{
    font-size: 12vw;
  }
  
}
@media print, screen and (max-width: 767px) {
  section.mainvisualSec div.img-area{
    width: 46rem;
    margin: 3rem auto 0;
  }
  section.mainvisualSec div.name-area{
    margin-top: 5rem;
  }
  section.mainvisualSec div.name-area h2.name{
    font-size: 6.4rem;
    line-height: 1.05;
  }
  section.mainvisualSec div.name-area h2.name span.first{
    display: block;
  }
  section.mainvisualSec div.name-area h2.name span.second{
    display: block;
  }
  section.mainvisualSec div.name-area h2.name span.third{
    display: block;
  }
}
@media print, screen and (max-width: 560px) {
  section.mainvisualSec div.img-area{
    width: 90%;
  }
  section.mainvisualSec div.name-area{
    margin-top: 6rem;
  }
  section.mainvisualSec div.name-area h2.name{
    font-size: 6.4rem;
    line-height: 1.0;
  }
}

/* button
-------------------------------------------------- */
div.button-area{
  width: 20rem;
  margin: 5rem auto 0;
}
a.button,
input[type="submit"] {
  display: inline-block;
  text-align: center;
  outline: none;
  font-size: 1.5rem;
  background: #000;
  border-radius: 5rem;
  border: 1px solid #000;
  width: 20rem;  
  height: 5.0rem;
  line-height: 4.8rem;
  color: #fff;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
}
a.button:hover,
input[type="submit"]:hover{
  background: #fff;
  color: #000;
  transition: .6s;
}

/* aboutTopSec
-------------------------------------------------- */
section.aboutTopSec{
  margin: 12rem 0 0;
}
section.aboutTopSec div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
section.aboutTopSec div.txt-area{
  width: 47.5%;
}
section.aboutTopSec div.txt-area h3.h3-prof{
  text-align: left;
  font-size: 2.8rem;
  letter-spacing: -0.2rem;
  line-height: 1.3;
  margin-bottom: 3rem;
}
section.aboutTopSec div.txt-area p.p-txt{
  font-size: 1.6rem;
}
section.aboutTopSec div.img-area{
  width: 47.5%;
}
section.aboutTopSec div.img-area img{
  border-radius: 1rem;
}
@media print, screen and (max-width: 960px) {
  section.aboutTopSec div.wrap{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  section.aboutTopSec div.wrap{
    display: block;
  }
  section.aboutTopSec div.txt-area{
    width: 100%;
  }
  section.aboutTopSec div.img-area{
    width: 100%;
    margin-top: 3rem;
  }
}
@media print, screen and (max-width: 767px) {
  section.aboutTopSec{
    margin-top: 10rem;
  }
  section.aboutTopSec div.txt-area h3.h3-prof{
    font-size: 2.6rem;
  }
  section.aboutTopSec div.txt-area p.p-txt{
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

/* contentTopSec
-------------------------------------------------- */
section.contentTopSec{
  margin: 10rem 0 0;
  padding: 10rem 0;
  background: url(../img/top/contentTopSec_bg.jpg) center center / cover no-repeat;
}
section.contentTopSec h3.h3-cmn{
  margin-bottom: 3.5rem;
  color: #fff;
}
section.contentTopSec p.lead{
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: bold;
  color: #fff;
}
section.contentTopSec div.contentwrap{
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.contentTopSec div.contentwrap div.box{
  width: 32.5%;
  background: rgba(255, 255, 255, 0.9);
  padding: 6% 2%;
  border-radius: 1.5rem;
}
section.contentTopSec div.contentwrap div.box.b01,
section.contentTopSec div.contentwrap div.box.b02,
section.contentTopSec div.contentwrap div.box.b03{
  margin-bottom: 1.5rem;
}
section.contentTopSec div.contentwrap div.box.blank{
  background: inherit;
  box-shadow: none;
}
section.contentTopSec div.contentwrap div.box div.img{
  width: 14rem;
  margin: 0 auto 3rem;
}
section.contentTopSec div.contentwrap div.box h4{
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.3;
}
section.contentTopSec div.contentwrap div.box h4.single{
  padding-top: 1.5rem;
}
section.contentTopSec div.contentwrap div.box p.txt{
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8;
}
section.contentTopSec div.button-area{
  margin: 7rem auto 0;
}
section.contentTopSec div.button-area a.button{
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
section.contentTopSec div.button-area a.button:hover{
  background: #000;
  color: #fff;
}
@media print, screen and (max-width: 1024px) {
  section.contentTopSec div.contentwrap div.box{
    width: 48.5%;
    padding: 10% 5% 10%;
  }
  section.contentTopSec div.contentwrap div.box.b01,
  section.contentTopSec div.contentwrap div.box.b02,
  section.contentTopSec div.contentwrap div.box.b03,
  section.contentTopSec div.contentwrap div.box.b04{
    margin-bottom: 2.5%;
  }
}
@media print, screen and (max-width: 767px) {
  section.contentTopSec p.lead{
    font-size: 1.5rem;
    line-height: 1.8;
  }
  section.contentTopSec div.contentwrap div.box{
    padding: 8% 2.5% 8%;
  }
  section.contentTopSec div.contentwrap div.box div.img{
    width: 12rem;
  }
  section.contentTopSec div.contentwrap div.box h4{
    font-size: 2.0rem;
  }
  section.contentTopSec div.contentwrap div.box p.txt{
    font-size: 1.5rem;
  }
  section.contentTopSec div.button-area{
    margin: 5rem auto 0;
  }
}
@media print, screen and (max-width: 560px) {
  section.contentTopSec div.contentwrap{
    display: block;
  }
  section.contentTopSec div.contentwrap div.box{
    width: 90%;
    padding: 15% 5% 12%;
    margin-right: auto;
    margin-left: auto;
  }
  section.contentTopSec div.contentwrap div.box.b01,
  section.contentTopSec div.contentwrap div.box.b02,
  section.contentTopSec div.contentwrap div.box.b03,
  section.contentTopSec div.contentwrap div.box.b04,
  section.contentTopSec div.contentwrap div.box.b05{
    margin-bottom: 5%;
  }
  section.contentTopSec div.contentwrap div.box h4.single{
    padding-top: 0;
  }
}

/* academyTopSec
-------------------------------------------------- */
section.academyTopSec{
  margin: 10rem 0 0;
}
section.academyTopSec h4.h4-cmn{
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  text-align: center;
}
section.academyTopSec p.lead{
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
}
/* academy.a01 */
section.academyTopSec div.academy.a01{
  margin-top: 7rem;
  padding: 7rem 0;
  background: #F9F9F9;
}
section.academyTopSec div.academy.a01 div.inner,
section.academyTopSec div.academy.a02 div.inner{
  max-width: 900px;
}
section.academyTopSec div.academy.a01 div.img-area{
  width: 100%;
  margin: 0 auto 5rem;
}
section.academyTopSec div.academy.a01 ul li{
  list-style-type: disc;
  margin-left: 2.1rem;
}
section.academyTopSec div.academy.a01 div.box{
  margin-top: 5rem;
  background: #fff;
  border: 1px solid #949494;
  border-radius: 0.5rem;
  padding: 3rem;
}
section.academyTopSec div.academy.a02{
  margin-top: 7rem;
}
section.academyTopSec div.academy.a02 h4.h4-cmn{
  color: #003462;
  position: relative;
}
section.academyTopSec div.academy.a02 h4.h4-cmn::before {
    font-size: 1.6rem;
    display: block;
}
section.academyTopSec div.academy.a02 h4.h4-cmn.mission::before{
  content: 'MISSION';
}
section.academyTopSec div.academy.a02 h4.h4-cmn.vision::before{
  content: 'VISION';
}
section.academyTopSec div.academy.a02 h4.h4-cmn.value::before{
  content: 'VALUE';
}
section.academyTopSec div.academy.a02 div.box{
  background: #F5F5F5;
  border-radius: 0.5rem;
  padding: 5rem;
  display: flex;
  justify-content: center;
}
section.academyTopSec div.academy.a02 div.box.b01,
section.academyTopSec div.academy.a02 div.box.b02{
  margin-bottom: 5rem;
}
section.academyTopSec div.academy.a02 div.box p.ttl{
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 2.0;
  color: #003462;
}
section.academyTopSec div.academy.a02 div.box p.p-txt{
  color: #003462;
  font-weight: bold;
  text-align: center;
}
section.academyTopSec div.academy.a02 div.box p.arrow{
  color: #FFD02F;
  font-weight: bold;
  margin: 0.5rem 0 0.8rem;
  font-size: 2.2rem;
  text-align: center;
}
@media print, screen and (max-width: 767px) {
  section.academyTopSec{
    margin: 5rem 0 0;
  }
  section.academyTopSec h4.h4-cmn{
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  section.academyTopSec p.lead{
    font-size: 1.6rem;
    text-align: left;
  }
  /* academy.a01 */
  section.academyTopSec div.academy.a01{
    margin-top: 5rem;
  }
  section.academyTopSec div.academy.a01 div.img-area{
    margin: 0 auto 3rem;
  }
  section.academyTopSec div.academy.a01 div.box{
    margin-top: 3rem;
    padding: 2rem;
  }
  section.academyTopSec div.academy.a02 h3.h3-cmn{
    margin-bottom: 4.5rem;
  }
  section.academyTopSec div.academy.a02 h4.h4-cmn{
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 2.5rem;
  }
  section.academyTopSec div.academy.a02 h4.h4-cmn::before {
      font-size: 1.4rem;
  }
  section.academyTopSec div.academy.a02 div.box{
    padding: 2.5rem 1.5rem;
  }
  section.academyTopSec div.academy.a02 div.box.b01,
  section.academyTopSec div.academy.a02 div.box.b02{
    margin-bottom: 5rem;
  }
  section.academyTopSec div.academy.a02 div.box.b01 p.ttl{
    text-align: center;
  }
  section.academyTopSec div.academy.a02 div.box p.ttl{
    font-size: 2.0rem;
    line-height: 1.8;
  }
  section.academyTopSec div.academy.a02 div.box p.p-txt{
    font-size: 1.4rem;
    line-height: 1.8;
  }
  section.academyTopSec div.academy.a02 div.box p.arrow{
    font-size: 2.0rem;
  }
}

/* courseTopSec
-------------------------------------------------- */
section.courseTopSec{
  margin-top: 10rem;
  padding: 10rem 0;
  background: #F5F5F5;
}
section.courseTopSec h3.h3-cmn{
  margin-bottom: 3.5rem;
}
section.courseTopSec p.lead{
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
}
section.courseTopSec div.contentwrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 70%;
  margin: 5rem auto 0;
}
section.courseTopSec div.contentwrap div.box{
  width: 48%;
  padding-bottom: 3.5rem;
  position: relative;
  border-radius: 2rem;
  background: #fff;
}
section.courseTopSec div.contentwrap div.box.b01,
section.courseTopSec div.contentwrap div.box.b02{
  margin-bottom: 2.5rem;
}
/*section.courseTopSec div.contentwrap div.box a.link{
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 9;
}*/
section.courseTopSec div.contentwrap div.box div.img,
section.courseTopSec div.contentwrap div.box div.img img{
  border-radius: 1rem 1rem 0px 0px;
}
section.courseTopSec div.contentwrap div.box div.txt {
  width: 90%;
  margin: 3rem auto 0px;
}
section.courseTopSec div.contentwrap div.box div.txt h4{
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 2rem;
}
section.courseTopSec div.contentwrap div.box div.txt p.p-txt{
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
}
section.courseTopSec div.contentwrap div.box div.txt div.btn{
  width: 14rem;
  margin: 3.5rem auto 0;
}
section.courseTopSec div.contentwrap div.box div.txt div.btn a.btn{
  width: 14rem;
  font-size: 1.4rem;
  line-height: 1.4;
  display: inline-block;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 0.8rem 0;
  border-radius: 5rem;
  border: 1px solid #000;
}
section.courseTopSec div.contentwrap div.box div.txt div.btn a.btn:hover{
  background: #fff;
  color: #000;
  transition: 0.6s;
}
@media print, screen and (max-width: 960px) {
  section.courseTopSec div.contentwrap{
    width: 90%;
  }
}
@media print, screen and (max-width: 767px) {
  section.courseTopSec div.contentwrap{
    width: 100%;
  }
  section.courseTopSec div.contentwrap div.box.b01,
  section.courseTopSec div.contentwrap div.box.b02{
    margin-bottom: 3%;
  }
  section.courseTopSec div.contentwrap div.box div.txt h4{
    font-size: 2.0rem;
  }
  section.courseTopSec p.lead{
    font-size: 1.5rem;
    text-align: left;
  }
  section.courseTopSec div.contentwrap div.box{
    width: 48.5%;
  }
  section.courseTopSec div.contentwrap div.box div.txt div.btn a.btn{
    padding: 0.6rem 0;
  }
}

@media print, screen and (max-width: 560px) {
  section.courseTopSec p.lead{
    text-align: left: 
  }
  section.courseTopSec div.contentwrap{
    display: block;
  }
  section.courseTopSec div.contentwrap div.box{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  section.courseTopSec div.contentwrap div.box.b01,
  section.courseTopSec div.contentwrap div.box.b02{
    margin-bottom:5%;
  }
  section.courseTopSec div.contentwrap div.box.b03{
    margin-bottom: 5%;
  }
}

/* voiceTopSec
-------------------------------------------------- */
section.voiceTopSec{
  margin: 10rem 0 0;
}
section.voiceTopSec div.voicewrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.voiceTopSec div.voicewrap div.box{
  width: 48.5%;
  border-radius: 1.5rem;
  border: 1px solid #02033B;
  padding: 2rem;
  margin-bottom: 2.5%;
  position: relative;
  background: #fff;
}
section.voiceTopSec div.voicewrap div.box p.comment{
  line-height: 2.0;
}
section.voiceTopSec div.voicewrap div.box p.name{
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  color: #02033B;
}
section.voiceTopSec div.voicewrap div.box p.occupation{
  font-size: 1.5rem;
  line-height: 1.4;
}
section.voiceTopSec div.voicewrap div.box div.img{
  position: absolute;
  width: 5.5rem;
  right: 2rem;
  bottom: 2rem;
}
section.voiceTopSec div.voicewrap div.box div.img img{
  border-radius: 50%;
}
@media print, screen and (max-width: 767px) {
  section.voiceTopSec div.voicewrap div.box{
    width: 100%;
    margin-bottom: 5%;
  }
  section.voiceTopSec div.voicewrap div.box p.comment{
    line-height: 2.0;
  }
  section.voiceTopSec div.voicewrap div.box p.name{
    margin-top: 3rem;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
  }
  section.voiceTopSec div.voicewrap div.box div.img{
    width: 5rem;
  }
}

/* newsSec
-------------------------------------------------- */
section.newsSec{
  margin: 10rem auto 0;
  background: rgba(0, 52, 98, 0.2);
  padding: 10rem 0;
}
section.newsSec div.newslist{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section.newsSec div.newslist div.box{
  width: 32%;
  background: #fff;
  position: relative;
  padding-bottom: 5rem;
  border-radius: 1rem;
  margin-bottom: 2.5%;
}
section.newsSec div.newslist div.box a{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 9;
}
section.newsSec div.newslist div.box:hover{
  opacity: 0.6;
  transition: 0.6s;
}
section.newsSec div.newslist div.box.blank{
  background: inherit;
  padding-bottom: 0;
  margin-bottom: 0;
}
section.newsSec div.newslist div.box div.img{
  width: 100%;
}
section.newsSec div.newslist div.box div.img img{
  border-radius: 1rem 1rem 0 0;
}
section.newsSec div.newslist div.box div.txt{
  padding: 3rem 1.5rem;
}
section.newsSec div.newslist div.box div.txt dl{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
section.newsSec div.newslist div.box div.txt dl dd.tag{
  border-radius: 5rem;
  line-height: 1.4;
  background: #000;
}
section.newsSec div.newslist div.box div.txt dl dd.tag a{
  position: relative;
  width: inherit;
  display: inline-block;
  text-align: center;
  pointer-events: none;
  font-size: 1.4rem;
  padding: 0.4rem 2rem 0.5rem;
  color: #fff;
}
section.newsSec div.newslist div.box div.txt dl dt.date{
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
}
section.newsSec div.newslist div.box div.txt p.title{
  padding-top: 2rem;
  font-size: 1.5rem;
  line-height: 1.8;
}
section.newsSec div.button-area{
  margin: 5rem auto 0;
}
@media print, screen and (max-width: 1024px) {
  section.newsSec div.newslist div.box{
    width: 48.5%;
  }
}
@media print, screen and (max-width: 960px) {
  section.newsSec div.newslist div.box div.txt p.title{
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
@media print, screen and (max-width: 767px) {
  section.newsSec{
    margin: 10rem auto 0;
  }
  section.newsSec div.newslist{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  section.newsSec div.newslist div.box{
    width: 48.5%;
  }
  section.newsSec div.newslist div.box div.txt{
    padding: 2rem 1.5rem;
  }
  /*section.newsSec div.newslist div.box div.txt dl{
    display: block;
  }
  section.newsSec div.newslist div.box div.txt dl dt.tag{
    display: inline-block;
    margin-bottom: 1rem;
  }*/
  section.newsSec div.newslist div.box div.txt dl dt.tag a{
/*    display: inline;*/
    font-size: 1.3rem;
    padding: 0.3rem 1.5rem 0.35rem;
  }
  section.newsSec div.newslist div.box div.txt dl dd.date{
    font-size: 1.4rem;
    margin-left: 0.2rem;
  }
  section.newsSec div.newslist div.box div.txt p.title{
    padding-top: 1rem;
    font-size: 1.4rem;
  }
}
@media print, screen and (max-width: 560px) {
  section.newsSec div.newslist div.box{
    width: 90%;
    margin-bottom: 5%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* contactCmnSec
-------------------------------------------------- */
section.contactCmnSec{
  margin: 12rem 0 0;  
}
section.contactCmnSec div.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
section.contactCmnSec div.wrap div.contact{
  width: 50%;
  background: #E3E3E3;
  padding: 15rem 0;
}
section.contactCmnSec div.wrap div.request{
  width: 50%;
  background: #1E1E1E;
  padding: 15rem 0;
  color: #fff;
}
section.contactCmnSec div.wrap div.request div.button-area a.button{
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}
section.contactCmnSec div.wrap div.request div.button-area a.button:hover{
  background: #000;
  color: #fff;
}
section.contactCmnSec p.lead{
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.0;
  width: 90%;
  margin: 0 auto;
}
section.contactCmnSec div.button-area{
  margin: 7rem auto 0;
}
@media print, screen and (max-width: 960px) {
  section.contactCmnSec div.wrap{
    display: block;
  }
  section.contactCmnSec div.wrap div.contact{
    width: 100%;
  }
  section.contactCmnSec div.wrap div.request{
    width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  section.contactCmnSec{
    margin: 10rem 0 0;
  }
  section.contactCmnSec div.wrap div.contact{
    padding: 10rem 0;
  }
  section.contactCmnSec div.wrap div.request{
    padding: 10rem 0;
    color: #fff;
  }
  section.contactCmnSec p.lead{
    font-size: 1.5rem;
    line-height: 1.8;
  }
  section.contactCmnSec div.button-area{
    margin: 5rem auto 0;
  }
}

/* footer
-------------------------------------------------- */
footer{
  margin: 0 auto;
  padding: 12rem 0 10rem;
}
footer div.footer-upper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 7rem;
}
footer div.footer-upper div.footer-menu ul.footernav li{
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}
footer div.footer-upper div.footer-menu ul.footernav li:last-child{
  margin-bottom: 0;
}
footer div.footer-upper div.footer-menu ul.footernav li a{
  color: #000;
}
footer div.footer-upper div.footer-menu ul.footernav li a:hover{
  opacity: 0.6;
  transition: 0.6s;
}
footer div.footer-upper div.footer-contact h4{
  font-size: 3rem;
  color: #000;
  margin-bottom: 1rem;
}
footer div.footer-upper div.footer-contact ul.mailaddress {
  color: #000;
}
footer div.footer-upper div.footer-contact ul.mailaddress li{
  font-size: 1.8rem;
}
footer div.footer-upper div.footer-contact ul.mailaddress li a {
  color: #000;
  text-decoration: underline;
}
footer div.footer-upper div.footer-contact ul.mailaddress li a:hover{
  opacity: 0.6;
  transition: 0.6s;
}
footer div.footer-upper div.footer-logo{
  width: 22rem;
}
footer div.footer-upper div.footer-logo div.logo-area{
  width: 22rem;
}
footer div.footer-upper div.footer-logo div.logo-area img:hover{
  opacity: 0.6;
  transition: 0.6s;
}
footer div.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
}
footer div.footer-bottom div.sns ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}
footer div.footer-bottom div.sns ul li{
  margin-right: 2.5rem;
  text-align: center;
  font-size: 1.4rem;
}
footer div.footer-bottom div.sns ul li:nth-child(2){
  margin-right: 4.5rem;
}
footer div.footer-bottom div.sns ul li i{
  color: #000;
  font-size: 2.5rem;
}
footer div.footer-bottom div.sns ul li.instagram i{
  font-size: 2.8rem;
}
footer div.footer-bottom div.sns ul li.facebook i{
  font-size: 2.6rem;
}
footer div.footer-bottom div.sns ul li.note img{
  width: 2.2rem;
}
footer div.footer-bottom div.sns ul li a:hover{
  opacity: 0.6;
  transition: 0.6s;
}
footer div.footer-bottom div.sns ul li:last-child{
  margin-right: 0;
}
footer div.footer-bottom div.copyright{
  margin-left: 21%;
}
footer div.footer-bottom div.copyright p.p-txt{
  color: #000;
}

@media print, screen and (max-width: 767px) {
  footer{
    padding: 10rem 0 8rem;
  }
  footer div.footer-upper{
    display: block;
    padding-bottom: 2rem;
  }
  footer div.footer-upper div.footer-menu ul.footernav li{
    font-size: 1.5rem;
  }
  footer div.footer-upper div.footer-contact{
    margin-top: 5rem;
  }
  footer div.footer-upper div.footer-logo{
    margin-top: 7rem;
  }
  footer div.footer-upper div.footer-logo div.logo-area {
    width: 22rem;
  }
  footer div.footer-bottom {
    display: block;
  }
  footer div.footer-bottom div.sns{
    margin-left: 0.5rem;
  }
  footer div.footer-bottom div.sns ul{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
  }
  footer div.footer-bottom div.sns ul li{
    margin-right: 2.5rem;
  }
  footer div.footer-bottom div.sns ul li i{
    font-size: 2.2rem;
  }
  footer div.footer-bottom div.sns ul li.instagram i{
    font-size: 2.5rem;
  }
  footer div.footer-bottom div.sns ul li.facebook i{
    font-size: 2.4rem;
  }
  footer div.footer-bottom div.sns ul li.x img{
    width: 2.2rem;
    color: #fff;
  }
  footer div.footer-bottom div.copyright{
    margin-left: 0;
    margin-top: 5rem;
  }
}
@media print, screen and (max-width: 560px) {
  footer div.footer-upper div.footer-menu ul.footernav li{
    width: 50%;
  }
}

/* fadein */
.fadein {
  opacity : 0;
  transition: 1.2s;
  transform : translate(0, 30px);
}
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}