@charset "UTF-8";
@import url("grid.css");

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    /*display:block;*/
    color: #000;
    text-decoration-line: none;
}
a:hover { 
    color: #999;
}
a img:hover {
	opacity: 0.8;
}
.underline {
	border-bottom: 3px solid #000;
	padding-bottom: 0.5rem;
}

.center {
	text-align: center;
}
.left{
	text-align: left;
}

.right{
	text-align: right;
}

@media screen and (min-width: 769px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 768px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

@media (min-width: 769px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

.mb10{margin-bottom: 1rem;}
.mb20{margin-bottom: 2rem;}
.mb30{margin-bottom: 3rem;}
.mb40{margin-bottom: 4rem;}
.mb50{margin-bottom: 5rem;}
.mb60{margin-bottom: 6rem;}
.mb80{margin-bottom: 8rem;}
.mb100{margin-bottom: 10rem;}
.mb200{margin-bottom: 20rem;}

.mt10{margin-top: 1rem;}
.mt20{margin-top: 2rem;}
.mt30{margin-top: 3rem;}
.mt40{margin-top: 4rem;}
.mt50{margin-top: 5rem;}
.mt60{margin-top: 6rem;}
.mt80{margin-top: 8rem;}

.pl40{padding-left: 4rem;}
.plr10{padding: 1rem;}
.plr20{padding: 2rem;}
.pb100{padding-bottom: 10rem;}
.ptb100{padding: 10rem 0;}
.ptb50{padding: 5rem 0;}
.pl10{padding-left: 1rem;}

.plr0-20{padding: 0 2rem;}

.pt40{padding-top: 4rem;}
.pb40{padding-bottom: 4rem;}

.v-top{vertical-align: top;}
.v-middle{vertical-align: middle;}
.v-bottom{vertical-align: bottom;}

.item-center{align-items: center;}


.indent-1 {
	padding-left:1em;
	text-indent:-1em;
}

.inner {
    width: 1040px;
   max-width: 100%;
    margin: 0 auto;
	padding: 0 2rem;
}

.box300{
	width: 300px;
}

.box400{
	width: 400px;
}

.box475{
	width: 475px;
}

.box530{
	width: 530px;
}

.box560{
	width: 600px;
}

.box700{
	width: 740px;
}

.box760{
	width: 800px;
}

.box930{
	width: 970px;
}

.font15{font-size: calc(((100vw - 560px) / 453.3333) + 12px);}

/*ヘッダー
-------------------------------------*/
.head {
	display: flex;
    /*flex-direction: row;*/
	justify-content: space-between;
    padding: 1rem 0 0 0;
}

.head h1 { 
    padding: 3rem 0;
	font-weight: 600;
	letter-spacing: 3px;
	font-size: calc(((100vw - 560px) / 226.6667) + 20px);
}

.head h1{
	padding-left: 120px;
    background: url("../images/common/logo.jpg") no-repeat left center;
}


.snsbox {
	margin-left: auto;
	font-size: 3.0rem;
	padding: 1rem 0 0 0;
	display: flex;
}

.bt-box{
	display: flex;
	justify-content: flex-end;
}

.title-course {
   font-size: calc(((100vw - 560px) / 340) + 12px);
	padding: 2rem 1rem;
	}

.title-course::before {
  content: url("../images/common/course_icon.jpg");
  vertical-align: middle;
  padding-right: 5px;
}

.title-shop {
    font-size: calc(((100vw - 560px) / 340) + 12px);
	padding: 2rem 1rem;
	}

.title-shop::before {
  content: url("../images/common/shop_icon.jpg");
  vertical-align: middle;
  padding-right: 5px;
}


.navi-box{
	display: flex;
	justify-content:flex-end;
}

nav ul {
	display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
	margin-bottom: 0.5rem;
}
nav li {
    display: block;
    /*flex: 0 0 15%;*/
	padding: 1rem 0 1rem 4rem;
}
nav li a {
    text-decoration: none;
    text-align: center;
	position: relative;
  display: inline-block;
	}

nav li a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #6cb02d;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  }

nav a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

nav a:hover {
    /*text-decoration: underline;*/
	color:#6cb02d;
}
/*nav a {
    padding: 1rem 0 1rem 4rem;
}*/

@media screen and (min-width: 901px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 900px){
.head {
	flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}
.telbox {
	margin-left: 0;
	text-align: center;
}
	
.bt-box {
    justify-content: normal;
}	
	
.head #open,#close  {
    position: absolute;
    top: 28px;
    right: 12px;
    }
	
.navi-box {
    justify-content: center;
	display: block;
}
	
	
nav ul {
	display: block;
}

	
nav li {
    padding: 0;
    font-size: 14px;
	/*border-bottom: 1px solid #ccc;*/
	margin-bottom:0;
}	
	
nav a {
    padding: 2rem;
}	
	
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url("../images/common/button.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url("../images/common/button2.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
	
.title-course {
   	padding: 1rem;
	}

.title-shop {
   	padding: 1rem;
	}	
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
	
}
}

/*メイン画像
-------------------------------------*/
.mainimg img {
	width: 100%;
	padding: 4rem 8rem;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 5rem 0;
}

.text-18{font-size: 18px;}
.font-bold{font-weight:bold;}

.flex{
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}

.flex-center{
	display:flex;
    align-items: center;
}

.item20{
	width: 20%;
	}

.item25{
	width: 25%;
	}

.item30{
	width: 30%;
	}

.item40{
	width: 40%;
	}

.item50{
	width: 50%;
	}

.item60{
	width: 60%;
	}

.item70{
	width: 70%;
	}

.item80{
	width: 80%;
	}

.green-bg{
	background-color: #efffe6;
}

.area-ttl{
	font-size: calc(((100vw - 560px) / 226.6667) + 20px);
	font-weight: 600;
}

.main-con {
	text-align: center;
}

.main-con img{
	border-radius: 100%;
	text-align: center;
	margin-bottom: 1rem;
}

.main-con-ttl{
	color: #fff;
  background-color: #6cb02d;
  padding: 0.5em;
  border-radius: 5px;
  font-size: calc(((100vw - 560px) / 226.6667) + 12px);
  align-items: center;
}

.main-con-text{
	vertical-align: top;
	text-align: left;
}

.online-ttl{
  background-color: #2bb6f1;
  padding: 0.5em;
  border-radius: 5px;
  width: 124px;	
}

.online-ttl-pink{
  background-color: #da4869;
  padding: 0.5em;
  border-radius: 5px;
  width: 124px;	
}

.online-ttl p{
	color: #fff;
	font-size: calc(((100vw - 560px) / 340) + 11px);;
  text-align: center;
}

.online-ttl-pink p{
	color: #fff;
	font-size: calc(((100vw - 560px) / 340) + 11px);;
  text-align: center;
}

.online-text{
	font-size: calc(((100vw - 560px) / 453.3333) + 11px);
}

.online-link-bt1{
	color: #fff;
  background-color: #6cb02d;
  padding: 0.5em;
  border-radius: 5px;
  font-size: calc(((100vw - 560px) / 340) + 17px);
  align-items: center;
  font-weight:600;
 }

.online-link-bt2{
	color: #fff;
  background-color: #6cb02d;
  padding: 0.5em;
  border-radius: 5px;
  font-size: calc(((100vw - 560px) / 340) + 17px);
  align-items: center;
  font-weight:600;
 }

.sns-ttl{
	text-align: center;
}

.sns-ttl img{
	border-radius: 50px;
	margin-bottom: 2rem;
}

.sns-wrapper {
    max-width: 400px; /* Facebook Page Plugin の最大幅 */
    margin: 0 auto;
}
 
.sns-wrapper > .fb-page {
    width: 100%;
}
 
.sns-wrapper > .fb-page > span,
.sns-wrapper iframe {
    width: 100% !important;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 450px;
}

/*キャッチタイトル
-------------------------------------*/
h2.catch {
	text-align: center;
	color: #666;
	font-size: 4.0rem;
	margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: #efffe6;
    padding: 3rem 0;
}
footer h5 {
    border-bottom: 1px solid #ccc;
}

.foot-logo-sub{
	text-align: center;
	font-size: calc(((100vw - 560px) / 453.3333) + 12px);
	margin-bottom: 1rem;
}

.foot-logo{
	font-weight: 600;
	letter-spacing: 3px;
	font-size: calc(((100vw - 560px) / 226.6667) + 20px);
	text-align: center;
}

.foot-contact-ttl {
    color: #000;
    border: solid 1px #000;
    padding: 0.5em;
    border-radius: 30px;
    margin-bottom: 1rem;
    width: 380px;
    margin: 0 auto 1rem;
}

.foot-contact-ttl p{
	text-align: center;
	font-size: calc(((100vw - 560px) / 453.3333) + 16px);
	font-weight:600;
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #efffe6;
	font-size:9px;
}
.copyright a {
    color: #000;
    text-decoration: none;
	display: inline-block;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background: #666;
    color: #fff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background: #999;
}

/*html
-------------------------------------*/
.page-img{
	text-align: center;
	margin: 0 auto;
}

.business-list{
	list-style: none;
	padding-left:1em;
	}

.stripe-bg{
	background-size: auto auto;
background-color: rgba(246, 255, 237, 1);
background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(242, 253, 231, 1) 10px, rgba(242, 253, 231, 1) 20px );
}

.ttl-line{
 border-bottom: 3px solid #e14869;
 width: 10%;
 margin: 0 auto;
}

.green-line-b{
border-bottom: 5px solid #6cb72d;
 width: 90%;
 margin: 0 auto;	
}

.green-line-s{
border-bottom: 1px solid #6cb72d;
 width: 90%;
 margin: 0 auto;	
}

.white-box{
	background-color: #fff;
	border-radius: 50px;
	margin: 2rem;
}

.greeting{
	padding: 8rem 10rem;
}

.recruit-box{
	padding: 1em;
    margin: 2em 0;
    border: solid 1px #000000;
	border-radius: 10px;
	font-size: 14px;
}

.seminar_ttl{
	text-align: center;
	font-size: calc(((100vw - 560px) / 226.6667) + 18px);
	margin-bottom: 4rem;
	line-height: 1.5em;
}

.seminar-list{
	list-style: none;
	text-align: left;
}

.seminar-text{
	text-align: center;
	margin-bottom: 6rem;
	font-size: calc(((100vw - 560px) / 226.6667) + 15px);
	line-height: 1.8em;
}

.area-sub-ttl{
	font-size: calc(((100vw - 560px) / 340) + 14px);
	text-align: center;
	margin-bottom: 1rem;
}

.group-text{
	text-align: center;
	font-size: calc(((100vw - 560px) / 272) + 16px);
	line-height: 1.5em;
}

.column3{
  width: calc(100% / 3); /* 33.3333333…％ */
  /*display: flex;*/
}

.column3 img{
	text-align: center;
	margin: 1rem auto;
}

.theme-flex{
	display: flex;
}

.red-text{
	color: #ef2258;
	font-size: calc(((100vw - 560px) / 340) + 12px);
	text-align: right;
}


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

.mainimg img {
	padding: 2rem 0;
}
	
.ptb100{padding: 5rem 2rem;}
.ptb50{padding: 3rem 2rem;}	
.mb100{margin-bottom: 5rem;}
.mb200{margin-bottom: 10rem;}
	
.greeting {
    padding: 4rem;
}	
	
.theme-flex{
	display: block;
}
	
.column3{
  width: 100%;
  /*display: block;*/
}	
	
}


@media screen and (max-width: 568px){
.head h1 { 
    font-size: 0;
}
	
	
	
.pl40{padding-left: 0;}	
.plr20 {
    padding: 1rem;
}	
	
.flex-center{
	display:block;
   }
	
.item20{
	width: 100%;
	}

.item30{
	width: 100%;
	}

.item40{
	width: 100%;
	}

.item50{
	width: 100%;
	}

.item60{
	width: 100%;
	}

.item70{
	width: 100%;
	}

.item80{
	width: 100%;
	}	
	
.item25{
	width: 50%;
	}	

.online-ttl {
    width: 70px;
}	
	
.online-ttl-pink {
    width: 70px;
}
	
.foot-contact-ttl {
    width: 100%;
    }
	
	
	
}

/*contact*/
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {

  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: calc(((100vw - 560px) / 170) + 16px);
  font-weight: 600;	
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {

}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: calc(((100vw - 560px) / 170) + 16px);
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    /*font-size: 15px;*/
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
    /* border-radius: 6px; */
    margin-right: 8px;
    /* padding-top: 8px; */
    /* padding-bottom: 8px; */
    /* width: 48px; */
    /* display: inline-block; */
    text-align: center;
    /* background: #545454; */
    color: #ef2258;
    font-size: calc(((100vw - 560px) / 340) + 12px);
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    /*font-size: 10px;*/
  }
}
.Form-Item-Input {
  border: 1px solid #b5ed66;
  border-radius: 12px;
  /*margin-left: 40px;*/
  padding-left: 1em;
  padding-right: 1em;
  height: 55px;
  flex: 1;
  width: 100%;
  /*max-width: 410px;*/
  /*background: #eaedf2;*/
  font-size: 18px;
}

.Form-Item-radio {
  border: 1px solid #b5ed66;
  font-size: calc(((100vw - 560px) / 170) + 16px);	
  }

@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
    border: 1px solid #b5ed66;
    border-radius: 12px;
   /* margin-left: 40px;*/
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    /* max-width: 410px; */
    background: #fff;
    font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #545454;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

.green-text{
	font-size: calc(((100vw - 560px) / 340) + 12px);
	font-weight:600;
	color: #6cb72d;
	text-align: center;
	margin-bottom: 10%;
}