@charset "utf-8";

@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');

.font-noto {
  font-family: 'Noto Sans Japanese';
}

#private {
  color: #2d221d;
  background: #e8e2d9;
  font-family: "Noto Sans Japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Lucida Grande", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", sans-serif;
  overflow-x: hidden;
  font-size: 1.2rem;
  line-height: 1.8;
  padding-top:140px;

}

@media only screen and (max-width:860px) {
  #private {
    padding-top:100px;
  }
}

@media only screen and (max-width:768px) {
  #private {
    padding-top:60px;
  }
}

@media only screen and (max-width:400px) {
  #private {
    padding-top:46px;
  }
}
p {
  line-height: 1.8;
  letter-spacing: 0.05rem;
  text-align: center;
}
main {
  display: block;
  overflow:hidden;
  width:100%;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #fff;
}
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
sup, sub {
  font-size: 1.2rem;
}

#private h1{
  font-family: "Noto Sans Japanese";
  line-height:1;
}


/*-------------------
pagetop
-------------------*/
#pagetop {
  background:url(../images/head_bg3.jpg) no-repeat center center;
  background-color:#514646;
  background-size:cover;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height:calc(100vw / 1.4);
}


#pagetop img{
  max-width:100%;
  height:auto;
  vertical-align:middle;
}


#pagetop .mainhead {
  position: relative;
  margin: 0 auto;
  padding:2em 0 0 2em;
  text-align: center;
}

#pagetop .head_cp {
  text-align:left;
  padding:2em;
  max-width:600px;
  animation: fadeInRight 1s;
  animation-delay: 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInRight 1s;
  -webkit-animation-delay: 1s;
  -webkit-animation-fill-mode: backwards;
  background:rgba(213,207,198,.8);
}


#pagetop h1 {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  text-align:right;
  background:rgba(91,64,60,.7);
  animation: fadeInBottom 2s;
  animation-delay: 1.2s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInBottom 2s;
  -webkit-animation-delay: 1.2s;
  -webkit-animation-fill-mode: backwards;
  margin: auto;
  padding:1em 3em 1em 0;
}

#pagetop h1 .headtl{
  max-width:500px;
  margin:0 0 0 auto;
}



#pagetop .head_copy {
  position:absolute;
  bottom:5%;
  left:0;
  right:0;
  text-align: center;
   animation: fadeInBottom 1s;
  animation-delay: 3.4s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInBottom 1s;
  -webkit-animation-delay: 3.4s;
  -webkit-animation-fill-mode: backwards;
  width:85%;
  margin:0 auto;

}

@media only screen and (min-width:2001px) {
  #pagetop {
    min-height:1300px;
  }
}

@media only screen and (min-width:1500px) and (max-width:2000) {
  #pagetop {
    min-height:1000px;
  }
}

@media only screen and (max-width:1200px) {
  #pagetop .mainhead {
    padding:3vw 0 0 5vw;
  }
  #pagetop .head_cp {
    width:40%;
    padding:3%;
  }

  #pagetop h1 img{
    width:70%;
  }
  #pagetop h1 {
    padding:2% 5% 3% 0;
    line-height:1;
  }

}

@media only screen and (max-width:860px) {
  #pagetop {
    min-height:calc(100vw / 1.4);
  }

}

@media only screen and (max-width:600px) {

  #pagetop .head_cp {
    width:50%;
  }

  #pagetop h1 img{
    width:50%;
  }
}





/*-------------------
animation
-------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*features
--------------*/
#features {
  text-align: center;
  padding: 5%;
  position:relative;
  margin:0 auto;
}

#features img{
  max-width:100%;
  height:auto;
  vertical-align:bottom;
}

#features h1{
  text-align:left;
  animation: fadeInBottom 1s;
  animation-delay: 2s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInBottom 1s;
  -webkit-animation-delay: 2s;
  -webkit-animation-fill-mode: backwards;
  max-width:820px;
  width:90%;
  margin:0 auto;
}

#features h1 .tl{
  font-weight:400;
  font-size:0.5em;
  padding:0.5em 0 0.5em 0.2em;
  letter-spacing:0.2em;
  line-height:1;
}

#features h2{
  padding-top:1em;
  max-width:820px;
  margin:0 auto;
}

#features .ecm{
  padding:0.5em 0 1em 0;
  font-size:0.9em;
  max-width:820px;
  margin:0 auto;
}

#features .ecimg{
  padding:0.5em 0 1.5em 0;
}


#features .ecbm{
  padding-bottom:2vw;
}

#features .futb{
  padding-top:1em;
  color:#936464;
}

#features .futb a{
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color:#000000;
}

#features .futb a:hover{
  color:#936464;
}

#features .medical{
  background:#FFFFFF;
  padding:5vw;
  max-width:900px;
  margin:2vw auto;
  width:90%;
}

#features .medical .med-lg{
  width:30%;
  margin:0 auto;
}

#features .medical h3{
  font-family:serif;
  font-size:1.4em;
  padding:2vw 0;
}

#features .medical p{
  padding:0.5em 0 1em 0;
  font-size:0.9em;
  max-width:820px;
  margin:0 auto;
}

#features .medical .med-lc{
  padding-top:3vw;
  width:80%;
  margin:0 auto;
}

@media only screen and (max-width:1000px) {

  #features h1 img{
    width:60%;
    height:auto;
  }

  #features h1 .tl{
    font-size:2.8vw;
  }

  #features h2.fst img{
    width:60%;
    height:auto;
  }

  #features h2.sec img{
    width:70%;
    height:auto;
  }

    #features h2.thir img{
    width:30%;
    height:auto;
  }



  #features .ecm{
    font-size:2vw;
  }

  #features .ecbm{
    font-size:2vw;
  }

  #features .futb{
    font-size:2vw;
  }


  #features .medical p{
    font-size:2vw;
  }
}

@media only screen and (max-width:600px) {
  #features{
    padding:5% 0;
  }

  #features h1{
    width:90%;
    margin:0 auto;
  }

  #features h1 img{
    width:80%;
    height:auto;
  }

  #features .ecm{
    font-size:2.8vw;
  }

  #features .ecbm{
    font-size:2.8vw;
    padding:0 5% 3% 5%;
  }

  #features .futb{
    font-size:2.8vw;
    padding:1em 5% 0 5%;
  }

  #features .medical h3{
    font-size:4vw;
  }

  #features .medical p{
    font-size:2.8vw;
  }
}

@media only screen and (max-width:480px) {

  #features h1 img{
    width:90%;
  }

   #features h1 .tl{
    font-size:3.8vw;
  }

  #features h2{
    padding-top:5%;
  }

  #features .ecimg{
    padding:0.5em 0 5% 0;
  }

  #features .ecm{
    width:85%;
    margin:0 auto;
    text-align:left;
    font-size:3.8vw;
    font-weight:200;
  }

  #features .ecbm{
    width:85%;
    text-align:left;
    margin:0 auto;
    padding:0 0 5% 0;
    font-size:3.8vw;
    font-weight:200;
  }

  #features .futb{
    width:85%;
    margin:0 auto;
    text-align:left;
    padding:0;
    font-size:3.5vw;
    font-weight:500;
  }

  #features .medical h3{
    font-size:5vw;
  }

  #features .medical p{
    font-size:3.5vw;
    text-align:left;
    font-weight:200;
  }
}


/*course
--------------*/
#course {
  text-align: center;
  padding: 5% 0;
  position:relative;
  margin:0 auto;
  background:#FFFFFF;
}

#course .cs-wp{
  max-width:1000px;
  width:80%;
  margin:0 auto;
}


#course img{
  max-width:100%;
  height:auto;
  vertical-align:bottom;
}

#course h1{
  text-align:left;
  max-width:820px;
  margin:0 auto;
}

#course h1 .tl{
  font-weight:400;
  font-size:0.5em;
  padding:0.5em 0 0.5em 0.2em;
  letter-spacing:0.2em;
  line-height:1;
}

#course h2{
  padding-top:0.5em;
  max-width:820px;
  margin:0 auto;
  text-align:left;
}

#course h2.nt{
  padding-top:3em;
}

#course .ecm{
  padding:1em 0 2em 0;
  font-size:0.9em;
  max-width:820px;
  margin:0 auto;
  text-align:left;
}

#course .ecimg-h{
  padding:1em 0 0.5em 0;
  max-width:820px;
  margin:0 auto;
  text-align:left;
}

#course .ecimg{
  padding:0.5em 0 1.5em 0;
}

#course .cssml{
  max-width:980px;
  width:50%;
  margin:1em auto;
  background:#e8e2d9;
  padding:1em;
  font-size:0.9em;
}

#course h3.tflow-tl{
  background:#e8e2d9;
  font-family:sans-serif;
  padding:0.5em 0;
  font-size:1.2em;
}

#course h3.tflow-tl span{
  font-size:80%;
  font-weight:normal;
}

#course .tflow{
  max-width:1000px;
  width:100%;
  margin:2vw auto;
}

#course .tflow li{
 display:flex;
 flex-direction: row-reverse;
 flex-wrap: wrap;
}

#course .tflow .tflow-img{
  width:48%;
  padding-right:2%;
  display:inline-blok;
}

#course .tflow li .tflow-tx{
  text-align:left;
  padding:0 2vw 2vw 2vw;
  width:48%;
  display:inline-blok;
}

#course .tflow li .tflow-tx dt{
  font-size:0.9em;
  font-weight:bold;
}

#course .tflow li .tflow-tx dd{
  font-size:0.9em;
}

#course .tflow li .tflow-tx2{
  text-align:left;
  width:48%;
  display:inline-blok;
}

#course .tflow li .tflow-tx2 .tfb{
  font-size:0.9em;
  background:#e4ded6;
  padding:2vw;
}

#course .tflow li .tflow-tx2 .tfw{
  font-size:0.9em;
  padding:2vw;
}

#course .cssml ol li{
  line-height:1.2;
}




#course .cssml ol li:after {
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: bold;
  padding-bottom:0.5em;
}

#course .cssml ol li:last-child:after {
  content: none
}

#course .cssmltm{
  padding-top:1em;
}

#course .cusv{
  max-width:820px;
  margin:0 auto;
  text-align:left;
  padding-bottom:2em;
}

.csbt .csbtcm{
  color:#936464;
  font-size:0.9em;
  padding:0.5em 0;
}



.bt a{
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

.bt a:hover{
  opacity: .7;
}

.asbt .bl-bt{
  display:block;
  margin-top:1em;
}

@media only screen and (min-width:1200px) {
  #course .tflow{
    margin:3em auto;
  }

  #course .tflow li .tflow-tx{
    padding:0 1em 1em 1em;
  }

  #course .tflow li .tflow-tx2 .tfb{
    padding:1em;
  }

  #course .tflow li .tflow-tx2 .tfw{
    padding:1em;
  }

}

@media only screen and (max-width:1000px) {

  #course h1 img{
    width:60%;
    height:auto;
  }

  #course h1 .tl{
    font-weight:400;
    font-size:2.5vw;
    padding:0.5em 0 0.5em 0.2em;
    letter-spacing:0.2em;
    line-height:1;
  }

  #course h2.fst img{
    width:70%;
    height:auto;
  }

  #course h2.nt img{
    width:60%;
    height:auto;
  }

  #course .ecimg-h img{
    width:80%;
    height:auto;
  }

  #course .ecm{
    font-size:2vw;
  }

  #course .cssml{
    font-size:2vw;
  }

  #course .cusv{
    font-size:2vw;
  }

  .csbt .csbtcm{
    font-size:1.8vw;
  }

  #course .tflow li .tflow-tx dt{
    font-size:2vw;
  }

  #course .tflow li .tflow-tx dd{
    font-size:2vw;
  }

  #course .tflow li .tflow-tx2 .tfb{
    font-size:2vw;
  }

  #course .tflow li .tflow-tx2 .tfw{
    font-size:2vw;
  }

}


@media only screen and (max-width:600px) {
  #course{
    padding:5% 0;
  }

  #course .cs-wp{
    width:90%;
    margin:0 auto;
  }

  #course h1{
    width:90%;
    margin:0 auto;
  }

  #course h1 img{
    width:80%;
    height:auto;
  }

  #course h2{
    width:80%;
  }

  #course h2.fst img{
    width:90%;
    height:auto;
  }

  #course h2.nt img{
    width:80%;
    height:auto;
  }

  #course .ecimg-h{
    width:80%;
  }

  #course .ecimg-h img{
    width:90%;
    height:auto;
  }

  #course .ecm{
    padding:0.5em 5% 1em 10%;
    font-size:2.8vw;
  }

  #course .cusv{
    font-size:2.8vw;
    width:80%;
    margin:0 auto;
  }

  .csbt .csbtcm{
    font-size:2.6vw;
  }

  #course .cssml{
    font-size:2.6vw;
    width:80%;
  }

  .bt{
   width:90%;
   margin:0 auto;
  }

  #course .tflow{
    max-width:1000px;
    width:90%;
    margin:2vw auto;
  }

  #course .tflow li{
   display:block;
   flex-direction: row-reverse;
   flex-wrap: wrap;
  }

  #course .tflow .tflow-img{
    width:100%;
    padding-right:0;
    display:inline-blok;
  }

  #course .tflow li .tflow-tx{
    text-align:left;
    padding:2vw 2vw 2vw 2vw;
    width:100%;
    display:inline-blok;
  }

  #course .tflow li .tflow-tx dt{
    font-size:2.8vw;
  }

  #course .tflow li .tflow-tx dd{
    font-size:2.8vw;
  }

  #course .tflow li .tflow-tx2{
    text-align:left;
    width:95%;
    margin:0 auto;
  }

  #course .tflow li .tflow-tx2 .tfb{
    font-size:2.8vw;
  }

  #course .tflow li .tflow-tx2 .tfw{
    font-size:2.8vw;
  }



}


@media only screen and (max-width:480px) {

  #course h1 img{
    width:90%;
  }

   #course h1 .tl{
    font-size:3.8vw;
  }

  #course h2{
    line-height:1;
  }

  #course h2.nt{
    padding-top:10%;
  }

  #course h3.tflow-tl{
    font-size:5vw;
    line-height:1.4;
  }

  #course .ecimg-h{
    padding:5% 0 0.5em 0;
  }

  #course .ecimg{
    padding:0.5em 0 5% 0;
  }

  #course .ecm{
    width:85%;
    padding:0.5em 0 1em 0;
    font-size:3.8vw;
    font-weight:200;
  }

  #course .cssml{
    width:90%;
    margin:5% auto;
    font-size:3.5vw;
    font-weight:400;
  }

  #course .cusv{
    width:85%;
    font-size:3.8vw;
    font-weight:200;
  }

  .csbt .csbtcm{
    font-size:3.5vw;
  }

  .bt{
   width:95%;
   margin:0 auto;
  }


  #course .tflow li .tflow-tx dt{
    font-size:3.5vw;
  }

  #course .tflow li .tflow-tx dd{
    font-size:3.5vw;
    font-weight:200;
  }


  #course .tflow li .tflow-tx2 .tfb{
    font-size:3.5vw;
    padding:5vw;
    font-weight:200;
  }

  #course .tflow li .tflow-tx2 .tfw{
    font-size:3.5vw;
    font-weight:200;
  }

  #course .tflow li .tflow-tx2{
    width:100%;
  }


}



/*faq
--------------*/
#faq {
  text-align: left;
  padding: 5%;
  position:relative;
  margin:0 auto;
  max-width:920px;
}

#faq h1{
  font-size:1.3em;
  font-weight:400;
  line-height:1;
  padding:0;
  margin:0;
}

#faq dl{
  background:#FFFFFF;
  margin:2em 0;
  padding:1.5em;
}

#faq dl dt{
  padding-bottom:2em;
}

@media only screen and (max-width:1000px) {

  #faq h1{
    font-size:2.5vw;
  }

  #faq dl{
    font-size:2vw;
  }

}

@media only screen and (max-width:600px) {
  #faq h1{
    font-size:3.2vw;
  }

  #faq dl{
    font-size:2.8vw;
  }
}

@media only screen and (max-width:480px) {
  #faq h1{
    font-size:5.5vw;
  }

  #faq dl{
    font-size:3.8vw;
  }

  #faq dl dd{
    font-weight:200;
  }
}


/*access
--------------*/
#access {
  text-align: left;
  padding: 5%;
  position:relative;
  margin:0 auto;
  background:#FFFFFF;
}

#access .ac-in{
  max-width:820px;
  margin:0 auto;
}

#access img{
  max-width:100%;
  height:auto;
  vertical-align:bottom;
}

#access h1{
  text-align:left;
  margin:0 auto;
}

#access h1 .tl{
  font-weight:400;
  font-size:0.5em;
  padding:0.5em 0 0.5em 0.2em;
  letter-spacing:0.2em;
  line-height:1;
}

#access .kmmap2{
width:100%;
  height:400px;
  margin:0 auto;
}

#access p{
  text-align:left;
  padding:2em 0;
}

#access .ecimg{
  padding-bottom:2em;
}

@media only screen and (max-width:1000px) {

  #access h1 img{
    width:20%;
    height:auto;
  }

  #access h1 .tl{
    font-weight:400;
    font-size:2.5vw;
    padding:0.5em 0 0.5em 0.2em;
    letter-spacing:0.2em;
    line-height:1;
  }

  #access p{
    font-size:2vw;
  }
}

@media only screen and (max-width:600px) {
  #access p{
    font-size:2.8vw;
  }
}

@media only screen and (max-width:480px) {
  #access h1 img{
    width:30%;
  }

   #access h1 .tl{
    font-size:3.2vw;
  }

  #access p{
    font-size:3.5vw;
    font-weight:200;
  }

  #access .bt{
    width:100%;
  }

}


/*-----------------
#private-footer
-----------------*/

#private-footer {
  padding: 2em 0 1em 0;
  text-align: center;
  position: relative;
  background:#FFFFFF;
}

#private-footer .copyright {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

@media only screen and (max-width:1000px) {
  #private-footer .copyright {
    font-size:2vw;
  }
}


@media only screen and (max-width:480px) {
  #private-footer .copyright {
    font-size:3vw;
  }
}

/*------------
animetion
------------*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  -webkit-transform: translate(0, 50px);
  -moz-transform: translate(0, 50px);
  transition: all 1000ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}

.fadeinp {
  opacity: 0;
  transform: scale(1.1);
  -webkit-transform: scale(1.21);
  -moz-transform: scale(1.1);
  transition: all 1000ms;
}
.fadeinp.scrollin {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
}

.brc {
  display:none;
}
@media only screen and (max-width:480px) {
  .brc {
    display: block;
  }
}

.brb {
  display:block;
}
@media only screen and (max-width:480px) {
  .brb {
    display: none;
  }
}






