@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /*16px*62.5%=10px8*/
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Lato','Noto Sans JP', sans-serif;
    font-weight: 300;
  color: #211604;
  background-color:#FFF9FB;
  font-size: 1.6rem;
  line-height: 1.7;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

h1 h2 h3 h4  {
  margin: 0;
  padding: 0;
}

#header {
	position: fixed;
	background-color:#FFF9FB;
	text-align: center;
	width: 100%;
	z-index: 100;
	margin: 0;
}

a{
	color:#211604;
	text-decoration: none;
}

li {
  list-style: none;
}

.sp_img{
	display: none;
}
.sp_only{
	display: none;
}
.pc_img{
	display: block;
}
#logo{
	margin: auto;
	text-align: center;
	width: 12%;
	padding: 10px 0;
}
#logo img{
	width: 100%;
}
#g-navi{
	font-family: 'Noto Serif JP', serif;
	font-size: 1.6rem;
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #B7A380;
	padding:10px 35px;
	transition:all .3s;
	font-size: 1.6rem;
}

nav ul li li a{
	padding:15px 19px;
}
@media screen and (max-width:1200px) {
nav ul li a{
	padding:20px;
}
nav ul li li a{
	padding:10px 20px;
}
}

nav ul li a:hover{
	color:#B7A380;	
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:17px;
	width:6px;
	height:6px;
	border-top: 2px solid #B7A380;
    border-right:2px solid #B7A380;
    transform: rotate(135deg);
}

@media screen and (max-width:1200px) {
nav ul li.has-child::before {
    left: 100px;
}
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:45px;
	z-index: 4;
    /*形状を指定*/
	background:rgba(255,255,255,0.8);
	width:180px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #584B35;
	border-bottom:solid 1px rgba(255,255,255,0.6);
	font-size: 1.4rem;
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:rgba(255,255,255,0.8);
}


/*==================================================
中心から外に線が伸びる（下部）
===================================*/

#g-navi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

#g-navi li.current a,
#g-navi li a:hover{
	color:#B7A380;
}

#g-navi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#bbb278;
    /*アニメーションの指定*/
    transition: all .2s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
#g-navi li.current a::after,
#g-navi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

#slider-area{
    width:100%;
	height:600px;
    position: relative;
    top: 156px;
    left:0;    
    z-index: -1;

}

#slider-area #slider{
    width:100%;
    height:600px;
}
#slider {
    width: 100%;
   
	
}
.mv_box{
	width: 100%;
}
.main_v{
	position: relative;
}
.main_v a img{
	position: absolute;
	top: 90%;
    left: 80%;
	width: 16%;
}


.main_v h1{
	position: absolute;
	top: 67%;
    left: 27%;
	font-size: 3.6rem;
	font-family: 'Noto Serif JP', serif;
	color: #fff;
	text-shadow: 1px 2px 3px rgba(122,105,75);
	text-align: center;
	letter-spacing: 0.12em;
}
.reserv img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
.reserv:hover img {
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}
.bg{
	background-image: url("../image/top/top_prof_bg@2x.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	margin-top: 140px;
}
.smallf{
	font-size: 2.4rem;
}
.lead_box{
	text-align: center;
	font-size: 1.8rem;
	font-family: 'Noto Serif JP',serif;
	line-height: 36px;
	letter-spacing: 0.16em;
	margin-top: 20px;
	position: relative;
}
.lead_box:before {
   content: '';
    position: absolute;
    top: -17%;
    left: 27%;
    display: inline-block;
    width: 10%;
    height: 51%;
    background-image: url(../image/top/kazari@2x.png);
    background-repeat: no-repeat;
    background-size: 30%;
	transform: rotate(-10deg);
}
.bigf{
	font-size: 2.2rem;
}
.section_inner{
	padding: 40px 0;
	margin: 0 12%;
	box-sizing: border-box;
}
.bg_pink{
		background-color:#FFF9FB;
}
.top_prof_box{
	padding: 60px 0;
}
.title{
	font-size: 3.2rem;
	font-family: 'Noto Serif JP',serif;
	color: #BBB278;
	text-align: center;
}
hr{
	width: 50px;
	border-style: solid;
	background-color: #bbb278;
	border-color: #bbb278;
	height: 2px;
	border-radius: 10px;
	margin: 20px auto;
	
}
.topprof_content{
	display: flex;
	padding: 20px 40px 0;
	align-items: center;
}
.prof_photo{
	width: 100%;
}
.prof_photo img{
	width: 100%;
}
.prof_txt{
	padding-left:40px;
}
.prof_txt p{
	font-size: 1.4rem;
}
.prof_txt h4{
	margin: 20px 0;
}
.more_btn{
	position: relative;
	text-align: center;
	margin: 20px 0 0;
}

.more_btn a{
	background-color: #B7A380;
    padding: 20px 60px;
    display: inline-block;
    margin: 10px auto;
    text-align: center;
	color: #fff;
	font-family: 'Noto Serif JP',serif;
	box-shadow: 1px 3px 5px #ccc;
	transition: all .2s;
}
/*hoverをしたらボックスに影がつく*/
.more_btn a:hover {
  box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.3);
  border-color: transparent;
  background:rgba(162,144,113);
}

.more_btn img{
	width: 30%;
	transform: translate(20%,-100%);

}
.bg2{
	background-image: url("../image/top/bg2@2x.png");
	background-repeat: no-repeat;
	background-size: cover;
}
.info_list{
	display: flex;
	background-color: #ffffff;
	margin:  10px auto 5px;
	width: 60%;
	align-items: center;
	box-shadow: 2px 2px 5px #ccc;
}
.info_list img{
	width: 15%;
}
.info_list dt{
	font-size: 1.2rem;
}
.info_list dl{
	padding: 0 40px;
}

.info_box{
	margin:40px 0 80px;
}
#gentei{
	display: block;
	padding-top: 200px;
    margin-top:-200px;
}
.top_concept h3{
	font-size:2.0rem;
	line-height: 2.0;
	text-align: center;
	letter-spacing: 3.6px;
}
.concept_title{
	font-size: 2.0rem;
	line-height: 2.2;
	letter-spacing: 0.2em;
	padding: 80px 0 60px;
	margin-bottom: 60px;
	margin: 0 auto;
	text-align: center;
}
.concept_txt ul{
	display: flex;
	margin: 60px 0 80px;
	justify-content: space-around;
}

.concept_txt li{
	position:relative;
	width:200px;
	height: 200px;
	border-radius: 50%;
	background: #fff;
	border: thin solid #bbb278;
	box-shadow: 1px 3px 3px #ccc;
	text-align: center;
}
.concept_txt span{
	font-size: 1.4rem;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width:163px;
}
.concept_txt2{
    padding: 10% 10%;
    margin:inherit;
    background-image: url(../image/top/top_flame1@2x.png);
    background-size: 87%;
    background-repeat: no-repeat;
    background-position: center;
}

.concept_txt2 p{

	position: relative;
	font-size: 2.0rem;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.2em;
	text-align: center;
	padding:10px 0 20px;
	border-bottom: dotted 2px #bbb278;
	display: block;
}
.concept_txt2 ul{
	padding: 20px 12px;
}

.concept_txt2 li{
	line-height: 2.5em;
	letter-spacing: 1.8px;
	    display: inline-block;
}
.course_m{
	background-color: #fff;
	padding-bottom: 40px;
	margin: 80px auto 0px;
	background-image: url("../image/top/course_left@2x.png"),url("../image/top/course_right@2x.png");
	background-repeat: no-repeat;
	background-size:5%;
	background-position: 30% 8%,70% 8%;
}


.course_c{
	background-color: #fff;
	padding-bottom: 40px;
	margin: 40px auto 40px;
	background-image: url("../image/top/course_left@2x.png"),url("../image/top/course_right@2x.png");
	background-repeat: no-repeat;
	background-size:5%;
	background-position: 27% 9%,73% 9%;
}
.course_txt{
	text-align: center;
}
.course_txt dt{
	font-family: 'Noto Serif JP',serif;
	font-size: 2.4rem;
	padding-top: 40px;
	text-align: center;
}

.course_txt dd{
	padding: 20px 40px;
	display: inline-block;
	text-align: center;
}
.course_flex{
	display: flex;
}
.course_mt{
	    width: 100%;
    padding: 60px 40px;
	background-image: url("../image/top/taimen@2x.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	margin: 20px 10px 20px 20px;
}
.course_mo{
	    width: 100%;
    padding: 55px 40px;
	background-image: url("../image/top/online@2x.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	margin: 20px 20px 20px 10px;
}
.bgw{
	background-color: rgba(255,255,255,0.85);
	padding: 20px 0;
	box-shadow: 1px 2px 5px #ccc;
}
.bgw:hover{
	background-color: #FAEDF1;
	box-shadow: 3px 4px 8px #ccc;
}

.course_list dt{
	padding: 5px 20px;
	font-size: 1.8rem;
	text-align: center;
	background-color: #b7A380;
	margin: 10px 40px;
	color: #fff;
}

.course_list dd{
	padding: 0 40px 20px;
}
.course_syousai img{
	width: 5%;
	padding-left: 10px;
	padding-bottom: 3px;
}
.course_syousai{
	text-align: center;
}
.course_c img{
	width: 25%;
	padding-bottom: 5px;
}
.course_c_img{
	width: 100%;
	text-align: center;
}
.btn_txt{
text-align: center;
	margin-top: 80px;
}
.btn_txt1{
	position: relative;
	display: inline-block;
	padding: 0 60px;
	font-size: 2.4rem;
}
.btn_txt1 p{
	text-align: center;

}
.btn_txt1:before{
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 1px;
  background-color: #211604;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.btn_txt1:before {
  left:0;
}
.btn_txt1:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 1px;
  background-color:#211604;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.btn_txt1:after {
  right: 0;
}

.btn_txt2{
	text-align: center;
	padding: 0 12%;
	margin: 20px 0;
}
.btn_2{
	text-align: center;
}
.btn_contact {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 15px 100px;
  border: 0.5px solid #211604;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: .2s ease-in-out;
  font-size: 1.8rem;
	letter-spacing: 4.0px;
	font-family: 'Noto Serif JP',serif;

}
.btn_contact span {
  position: relative;
  z-index: 2;
}
.btn_contact::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: '';
  width: 100%;
  height: 100%;
  border: 0.5px solid #333;
}
.btn_contact::after {
  position: absolute;
  top: 3px;
  left: 3px;
  content: '';
  width: 101%;
  height: 105%;
  background-color: #b7A380;
  transition: .2s ease-in-out;
}
.btn_contact:hover {
  color: #211604;
}
.btn_contact:hover::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#modal_window ul {
	padding-top: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#modal_window li {
    margin: 3px 3px;
    width: 19%;
}
#modal_window img{
	width: 100%;
}
.gallery img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
.gallery:hover img {
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
} 
.top_sns{
	background-color: #f8f6ec;
}
.sns_flex{
	display: flex;
	padding: 60px 0;
    justify-content: space-around;
}
.insta{
	padding-right: 30px;
	width: 51%;
}

.facebook{
	padding-left: 30px;
	justify-content: center;
}
.sns_icon{
	padding: 20px 0 60px;
	margin: 0 auto;
}
.sns_flex2{
	display: flex;
	width: 40%;
	margin: 20px auto;
    align-items: center;
    justify-content: space-around;
	background-color: #fff;
	box-shadow: 1px 3px 6px #ccc;
	border-radius: 20px;
	padding: 10px;
}

.icon1{
	width: 12%;
	padding: 10px 0;
}
.icon2{
	width: 16%;
}
.icon3{
	width: 16%;
}
.icon4{
	    width: 33%;
    padding: 10px 0;
}
.icon5{
	    width: 32%;
    padding: 10px 0;
}
.top_contact2{
	text-align: center;
	padding: 40px 0;
}

.footer_inner{
	padding: 10px 0;
	background-color: #F8EAF2;
	text-align: center;
	width: 100%;
}
.footer_inner p{
	color: #bbb278;
	font-size: 1.2rem;
	padding: 20px 0 5px;
	font-family: 'Noto Serif JP',serif;
}
.footer_inner img{
	width: 15%;
}
.pagetop{
	position: fixed;
	bottom:20px;
	right: 10px;
}
.pagetop img{
	width: 80%;
}
.pagetop a{
	display: block;
	text-decoration: none;
}
.pagetop:hover{
	opacity: 0.85;
}

/*-------------lessonpage---------*/

.hero2{
	position: relative;
	width: 100%;
	z-index: 10;
	padding-top: 155px;
}

.hero_icon2{
	position: absolute;
	top:50%;
	left:75%;
	z-index: 50;
	width: 18%;
}
.hero_icon2 a img{
	width: 100%;
}
.hero2 img{
	width: 100%;
}
.hero_icon2 img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
.hero_icon2:hover img {
  -webkit-transform: scale(0.96);
  transform: scale(0.96);
}
.pagetitle {
	font-size: 4.2rem;
	font-family: 'Noto Serif JP',serif;
	font-weight: 500;
	letter-spacing: 0.15em;
	color:#BBB278;
	text-align: center;
}
.pagetitle_sub{
	font-family: 'Noto Serif JP',serif;
	font-weight: 500;
	letter-spacing: 0.15em;
	color:#BBB278;
	text-align: center;
	font-size: 1.8rem;
}
.course_ttl h3{
	text-align: center;
	padding: 40px 0;
	font-size: 2.8rem;
	font-family: 'Noto Serif JP',serif;
	background-image: url("../image/top/course_left@2x.png"),url("../image/top/course_right@2x.png");
	background-repeat: no-repeat;
	background-size:5%;
	background-position: 25% 50%,75% 50%;
}
.course_ttl p{
	text-align: center;
	padding-bottom: 60px;
}

.lesson_feature{
	position: relative;
	width: 80%;
	background-color: #fff;
	border-radius: 20px;
	border: 1px solid #bbb278;
	box-shadow: 1px 1px 3px #ccc;
	padding: 30px 20px;
	margin: auto;
}
.lesson_feature:before {
      content: '';
    position: absolute;
    top: -38%;
    left: -7%;
    display: inline-block;
    width: 28%;
    height: 51%;
    background-image: url(../image/lesson/point@2x.png);
    background-repeat: no-repeat;
    background-size: 30%;
	transform: rotate(-20deg);
}

.step_ttl{
	font-family: 'Dancing Script', cursive;
	font-size: 3.2rem;
	color:#bbb278;
}
.stepflow{
	font-family: 'Noto Serif JP',serif;
	padding: 10px 0;
	font-size: 2.4rem;
	margin-bottom: 20px;
}
.stepbox{
	display: flex;
	padding-bottom: 60px;
	align-items: center;
	margin-bottom: 40px;
}
.stepbox:nth-child(odd){
	flex-direction: row-reverse;
}
.stepbox:last-child{
	padding-bottom: 0;
}
.step_img img{
	width: 100%;
}

.step_txt{
	width: 90%;
	padding: 0 30px;
}
.stepcontent{
	margin: 80px 0 60px;
}
.step_txt dt{
	border-bottom: dotted 2px #bbb278;
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 36px;
	letter-spacing: 0.13em;
}
.step_txt dd{
	padding: 10px 5px;
}
.ttl{
	padding-top: 10px;
}
.lesson_point{
	position: relative;
	width: 100%;
	padding: 40px 0;
	border-radius: 20px;
	box-shadow: 2px 2px 3px #ccc;
}
.lesson_point dt{
	display: inline-block;
	width: 60%;
	padding:10px 0 20px 40px;
	font-size: 2.0rem;
	letter-spacing: 0.18em;
}
.lesson_point dd{
	width: 48%;
	padding:0 30px;
}
.green{
	background-color: #F1F8EB;
	width: 80%;
    margin: 40px auto 100px;
}
.green:before{
	        content: '';
    position: absolute;
    top: 0%;
    left: 58%;
    display: inline-block;
    width: 60%;
    height: 130%;
    background-image: url(../image/lesson/topic1@2x.png);
    background-repeat: no-repeat;
    background-size: 67%;
}
.purple{
	background-color: #F0EBF8;
	width: 80%;
    margin: 40px auto 100px;
}
.purple:before{
	content: '';
    position: absolute;
    top: 6%;
    left: 57%;
    display: inline-block;
    width: 62%;
    height: 115%;
    background-image: url("../image/lesson/topic2@2x.png");
    background-repeat: no-repeat;
    background-size: 67%;
}
.yellow{
	background-color: #F9FBD6;
	width: 80%;
   margin: 40px auto 100px;
}
.yellow:before{
	content: '';
    position: absolute;
    top: 7%;
    left: 57%;
    display: inline-block;
    width: 62%;
    height: 115%;
    background-image: url("../image/lesson/topic3@2x.png");
    background-repeat: no-repeat;
    background-size: 67%;
}
.steptopic{
	background-color: #fff;
	padding: 10px ;
	margin: 10px 0;
	box-shadow: 0 3px 6px #ccc;
	font-size: 1.4rem;
}
.steptopic_o{
	background-color: #F8F6EC;
	font-size: 1.4rem;
	border-left: 2px solid #bbb278;
}
.lesson_contents h2{
	font-size: 1.8rem;
}
.lesson_o{
	background-image: url("../image/lesson/online@2x.png");
	    background-position: 90% 20%;
    background-repeat: no-repeat;
    background-size: 25%;
}
.lesson_txt ul{
	padding: 0 10px;
	border-left:2px solid #bbb278; 
	margin: 10px 0 40px 10px;
}

.lesson_txt li{
	font-size: 1.6rem;
	line-height: 36px;
}
.lesson_txt dl{
	padding: 0 10px;
	border-left:2px solid #bbb278; 
	margin: 10px 0 10px 10px;
}
.lesson_txt dd{
	padding-bottom: 10px;
}
.lesson_txt dt dd{
	font-size: 1.6rem;
	line-height: 36px;
}
.indent{
	display: block;
	text-indent: 1em;
}
.lesson_txt dd{
	text-indent: 1em;
	font-size: 1.3rem;
}
.limited{
	padding: 20px  40px;
	background-color: #fff;
	box-shadow: 0 3px 6px #ccc;
	margin: 30px auto 40px;
	width: 80%;
}
.limited h3{
	padding-bottom: 10px;
	font-size: 1.8rem;
	display: inline-block;
	border-bottom: 1px dotted #bbb278;

}
.limited p{
	padding: 10px 0;
}
.limited1 p{
	width: 50%;
}
.limited1 h3{
	padding: 10px 0;
	font-size: 1.8rem;
}
.limited1{
	padding: 60px 40px;
	background-image: url("../image/lesson/gentei_photo@2x.png");
	background-repeat: no-repeat;
	    background-size: 30%;
    background-position: 90% 55%;
	width: 80%;
	margin: 0 auto;
}
.limited1_bg{
	background-color: #FFF9FB;
	box-shadow: 0 3px 6px #ccc;
	border-radius: 30px;
	z-index: -1;
	position: relative;
}
.limited1_bg:before {
   content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    display: inline-block;
    width: 10%;
    height: 51%;
    background-image: url(../image/top/kazari@2x.png);
    background-repeat: no-repeat;
    background-size: 30%;
	transform: rotate(-10deg);
}

.limited2 p{
	width: 50%;
}
.limited2 h3{
	padding: 10px 0;
	font-size: 1.8rem;
}

.limited2{
	padding: 60px 40px;
	background-image: url("../image/lesson/gentei_photo_o@2x.png");
	background-repeat: no-repeat;
	    background-size: 30%;
    background-position: 90% 55%;
	width: 80%;
	margin: 0 auto;
}
.limited2_bg{
	background-color: #FEFBF0;
	box-shadow: 0 3px 6px #ccc;
	border-radius: 30px;
	z-index: 100;
	position: relative;
}
.limited2_bg:before {
   content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    display: inline-block;
    width: 10%;
    height: 51%;
    background-image: url(../image/top/kazari@2x.png);
    background-repeat: no-repeat;
    background-size: 30%;
	transform: rotate(-10deg);
}
.course2_photo{
	display: flex;
	width: 100%;
	margin-bottom: 60px;
}
.course2_photo img{
	width: 19%;
	margin: auto;
}
.btn_txt2c{
	text-align: center;
}
.link_btn img {
    width: 15%;
    transform: translate(20%,-111%);
}

.link_btn{
	text-align: center;
	margin: 20px 0 0;
}
.link_btn a{
	background-color: #7A694B;
    padding: 20px 30px;
    display: inline-block;
    margin: 10px auto;
    text-align: center;
	color: #fff;
	font-family: 'Noto Serif JP',serif;
	box-shadow: 1px 3px 5px #ccc;
	width: 240px;
	transition: all .2s;
}
/*hoverをしたらボックスに影がつく*/
.link_btn a:hover {
  box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.3);
  border-color: transparent;
  background:#BEB096;
}

.voice{
	display: flex;
	padding: 20px 0px 0px;
	margin: 60px 0;
	align-items: center;
	position: relative;
}
.voice:nth-child(even){
	flex-direction: row-reverse;
}
.voice_coment{
	width: 45%;
	margin: auto;
}
.voice_photo{
	width: 40%;
}
.voice_photo img{
	width: 100%;
}
.voice_title{
	line-height: 36px;
	font-size: 1.8rem;
}
.qa{
	width: 80%;
	padding: 20px 0;
	margin: auto;
}

.qestion{
	line-height: 36px;
	border-bottom: 1px dotted #bbb278;	
}
.bold_qa{
	font-family: 'Dancing Script', cursive;
	font-size: 3.2rem;
	color: #bbb278;	
}
.mark {
  background: linear-gradient(transparent 10%, rgba(248,186,207,0.6) 0%);
  font-weight: bold;
}
.mark2 {
  background: linear-gradient(transparent 0%, rgba(255,255,255,0.8) 0%);
  font-weight: bold;
 padding: 5px 2px;
	border-bottom: 1px dotted #bbb278;
	border-left: 1px dotted #bbb278;
}

.online_bg{
	background-color: #FEFBF0;
}
#voice_box{
	display: block;
	padding-top: 200px;
    margin-top:-200px;
}
#qa_box{
	display: block;
	padding-top: 200px;
    margin-top:-200px;
}
.voice1{
	background-image: url("../image/lesson/fukidashi1@2x.png");
	background-size: 90% 100%;
    background-repeat: no-repeat;
	background-position: 10px;
    padding: 20px 65px;
}
.voice2{
	background-image: url("../image/lesson/fukidashi2@2x.png");
	background-size: 90% 100%;
	background-repeat: no-repeat;
	padding: 20px 65px;
	background-position: 40px;
}
.voice3{
	background-image: url("../image/lesson/fukidashi3@2x.png");
	background-size: 90% 100%;
	background-repeat: no-repeat;
	padding: 20px 65px;
	background-position: 10px;
}
.btn_margin{
	margin-bottom: 80px;
}
/*-------------aboutpage---------*/
.aboutpage{
	padding-top: 40px;
}
.about_bg{
	background-image: url("../image/about/about_bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 60px;
	margin-top: -40px;
}
.about_bgw{
	width: 70%;
	background-color: #fff;
	padding: 40px;
	margin: auto;
}
.space{
	padding-right: 10px;
}
.about_bgw h2{
	line-height: 42px;
	padding-bottom: 15px;
	font-size: 1.8rem;
	letter-spacing: 0.18em;
}
.about_bgw p{
	line-height: 36px;
	letter-spacing: 0.15em;
}

.prof_txt h3{
	color: #bbb278;
	font-size: 2.4rem;
	letter-spacing: 0.15em;
	text-align: left;
	font-family:  'Noto Serif JP', serif;
}
.worksbtn{
	padding: 40px 0;
}

.sns_flex2 {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
.sns_flex2:hover  {
  -webkit-transform: scale(0.96);
  transform: scale(0.96);
}

.sns{
	font-size: 4.8rem;
	text-align: center;
	color: #bbb278;
}
.sns i{
	padding: 0 40px;
	color: #bbb278;
}
/*-----------workspage--------*/
.age{
	font-size: 3.6rem;
	font-family: 'Dancing Script', cursive;
	color: #bbb278;
	border-bottom: 1px solid #bbb278;

}
.works_content{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-around;
	text-align: left;
}
.works_content::after{
  content:"";
  display: block;
  width: 64%;
}
.works_box{
	width: 30%;
	padding: 20px 0px 40px;
}
.works_box img{
	width: 100%;
}
.works_box dt{
	padding-top: 10px;
}
.works_box dd{
	font-size: 1.2rem;
	padding-top: 7px;
}
.works_outline{
	padding: 60px 0 0;
}
.works_content2017::after{
	content:"";
	display: block;
	width: 30%;
}
/*--------contact--------------*/
.contact_read{
	text-align: center;
	padding: 30px 0;
}
.form{
	margin: auto;
	text-align: center;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*アニメーション要素のスタイル*/
.animation{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/*==================================================
機能編 　5-1-11 クリックしたらナビが上から下に出現
===================================*/

@media screen and (max-width:960px) {
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#FFF9FB;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    width: 90%;
    margin:100px auto 0 auto;
}
    
#g-nav ul ul{
    width: 100%;
    margin: 0;
}
 
/*プルダウンナビのCSS*/
#g-nav ul li.has-child ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
    transform: none;
}

	
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #bbb278;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
	#g-navi li a::after {
		background: none;
}
}

/*==================================================
　機能編 5-2-7 3本線が奥行きを持って回転して×に
===================================*/

.g-nav-openbtn{
    display: none;
}
 
@media screen and (max-width:960px) {
.g-nav-openbtn{
    display: block;
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 30px;
	cursor: pointer;
    width: 50px;
    height:50px;
}

/*ボタン内側*/

.g-nav-openbtn .openbtn-area{
    transition: all .4s;
}

.g-nav-openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #bbb278;
  	width: 45%;
  }


.g-nav-openbtn span:nth-of-type(1) {
	top:15px;	
}

.g-nav-openbtn span:nth-of-type(2) {
	top:23px;
}

.g-nav-openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.g-nav-openbtn.active .openbtn-area{
	transform: rotateY(-360deg);
}

.g-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}

.g-nav-openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.g-nav-openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}
	nav ul{
		display: block;
	}
}
/*===========================SP=======================================*/

@media screen and (max-width:768px){
	.pc_img{
		display:none; 
	}
	.pc_only{
		display: none;
	}
	.sp_img{
		display: block;
	}
	.sp_only{
		display: block;
	}
	.img{
		width: 100%;
		height: auto;
	}
	#logo{
		width: 20%;
	}
	#slider-area {
    top: 68px;
    left: 0;
	height: 550px;
}
	#slider-area #slider{
    width:100%;
    height:550px;
}
	.main_v h1{
	top: 51%;
    left: 3%;
	font-size: 2.4rem;
	text-align: left;
	}
	
	.main_v a img {
    top: 80%;
    left: 55%;
    width: 45%;
	}
	.bg{
		margin-top: 68px;
		background-size: 180%;
    background-repeat: repeat;
}
	.section_inner {
    padding: 40px 0px 10px;
    margin: 0 5% 20px;
	}
	.lead_box{
		font-size: 1.6rem;
		line-height: 28px;
		letter-spacing: 0.12em;
		text-align: left;
		padding: 0 20px;
	}

	.lead_box:before {
    top: -16%;
    left: 4%;
    background-size: 70%;
	}
.bigf {
    font-size: 1.8rem;
}
	
.title{
	font-size: 2.4rem;
}
.topprof_content{
	flex-wrap: wrap;
	padding: 20px 20px 0;
}
.top_prof_box {
    padding: 60px 0 0;
}
.prof_txt{
	padding-left: 0;
}	
.prof_txt h4{
	letter-spacing: 0.0em;
}
.more_btn a{
	padding: 15px 40px;
}
	.bg2{
		background-image: none;
	}
.info_list{
	width: 100%;
	padding: 3px 0;
}
.info_list dl{
	padding: 0 20px;
}
.info_list dt{
	padding-top: 5px;
}
.info_list dd{
	font-size: 1.4rem;
	padding: 5px 0;
}
.info_list img {
    width: 20%;
    padding-left: 10px;
}
.concept_txt2 p {
   letter-spacing: 0.16em;
}
.concept_txt ul {	
	flex-wrap: wrap;
	margin: 60px 0 40px;
}
.concept_txt li {
    width: 160px;
    height: 160px;
	margin: 10px 0;
	}
.concept_txt span {
    font-size: 1.4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 157px;
}
.concept_txt2 ul {
    padding: 40px 10px 0px;	
	}
.concept_txt2 li {
	font-size: 1.4rem;
}
.concept_txt2 {
    padding: 0; 
    background-image: none;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0px 65px;
}	
	.course_m{
	    background-size: 12%;
    background-position: 5% 6%,95% 6%;
		margin-top: 60px;
}

	.course_txt dt {
    font-size: 1.8rem;
	}
	.course_txt dd {
    padding: 20px 20px;
    font-size: 1.4rem;
}
	.course_list dd {
    padding: 0 10px 10px;
	font-size: 1.4rem;
}
	.course_syousai img {
    padding-bottom: 7px;
}
	.course_mo{
		margin: 0;
	}
	.course_flex{
		flex-wrap: wrap;
	}
	.course_mt{
		margin:10px 0;
    padding: 20px 20px;
	}
	.course_mo{
	padding: 20px 20px;	
	}
	.course_list dd{
		
	}
	.sns_flex{
		flex-wrap: wrap;
	}
	.bgw{
		padding:5px 0 20px;
	}
	.course_c {
    background-size: 12%;
    background-position: 1% 13%,99% 13%;
	}
	.course_c img {
    width: 30%;
	}
	.btn_txt1{
		font-size: 1.8rem;
	}
	.btn_txt2 {
    padding: 0;
	font-size: 1.4rem;
	}
	.btn_contact{
		padding: 15px 65px;
	}
	#modal_window ul{
		padding-top: 40px;
	}
	#modal_window li{
		width: 31%;
	}
	.facebook {
 position: relative;
    width: 100%;
    padding-top: 100%;
    margin: 40px auto 0;
}
	
	.facebook iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
	.insta{
		width: 100%;
		margin: auto;
		padding-right: 0;
	}
	.sns_flex2{
		width: 80%;
		font-size: 1.4rem;
		border-radius: 10px;
		margin: 20px auto;
	}
	.sns_icon{
		padding: 0 0 20px;
	}
	.top_contact2{
		padding-top: 20px;
	}
	.footer_inner{
		padding: 10px 0 80px;
	}
	.footer_inner img{
		width: 30%;
	}
	.footer_inner p{
		padding: 10px 0;
	}
	.conver_btn {
    position: fixed;
    background-color: #F9EAEF;
	box-shadow: 1px 1px 2px #ccc;
    padding: 20px;
    bottom: 10px;
    left: 0;
    width: 90%;
	text-align: center;
	margin: auto;
	z-index: 100;
}
	.conver_btn p{
		display: inline;
		color: #211604;
		border-bottom: 2px dotted #bbb278;
		font-family: 'Lato','Noto Sans JP', sans-serif;
	}
	.conver_btn img {
    width: 5%;
    padding-bottom: 5px;
    padding-left: 10px;
}
	.top_sns{
		padding-bottom: 40px;
	}
	.copyright {
		font-size: 1.2rem;
		padding: 0;
	}
	.pagetop img{
		width: 50%;
	}
	.pagetop {
    right: -12px;
	bottom:85px;
}
	.hero2{
		padding-top: 66px;
	}
	
	.pagetitle{
		font-size: 3.2rem;
	}
	.course_ttl h3{
		font-size: 1.8rem;
		background-size: 12%;
    background-position: 0% 15%,100% 15%;
		margin-top: 60px;
		margin-top: 0;
	}

	.course_ttl p{
		text-align: center;
		padding:0 10px 40px;
	}
	.lesson_feature {
		margin: 20px auto 0;
	}
	.lesson_feature:before {
    top: -12%;
    left: 4%;
    background-size: 60%;
}
	.step_ttl {
    font-family: 'Dancing Script', cursive;
    font-size: 3.2rem;
    color: #bbb278;
}
	.stepflow{
		font-size: 1.6rem;
	}
	.stepbox{
		flex-wrap: wrap;
		flex-direction: column-reverse;
		margin-top: -80%;
	}
	.step_txt{
		padding: 0;
		width: 100%;
	}	
	.stepbox:nth-child(odd) {
    flex-direction: column-reverse;
}
	.step_txt dd {
    margin-top: 80%;
}
	
	.step_img{
		transform: translateY(142%);
	}

	.lesson_point dt {
    width: 100%;
    padding: 10px 0;
    text-align: center;
}
	.lesson_point dd {
    width: 80%;
    padding: 0;
    margin: auto;
}
	.green {
    width: 100%;
    margin: 0 auto 100px;
	padding: 20px 0 250px;
}
	.purple {
    width: 100%;
    margin: -20px auto 80px;
	padding: 20px 0 280px;
}
	.green:before {
    top: 52%;
    left: 10%;
    width: 80%;
    height: 50%;
	background-size: 100%;
}
	.purple:before {
    top: 54%;
    left: 10%;
    width: 80%;
    height: 42%;
	background-size: 100%;
}
	.yellow {
    width: 100%;
    margin: -10px auto 100px;
	padding: 20px 0 270px;
	
}	
	.yellow:before {
    top: 57%;
    left: 10%;
    width: 80%;
    height: 42%;
	background-size: 100%;
}	
	.lesson_contents{
		margin-top: -40px;
	}
	.limited1 {
       padding: 30px 30px 210px;
    background-size: 77%;
    background-position: 45% 95%;
    width: 80%;
    margin: 0 auto;
}
	.limited1 p{
		width: 100%;
	}
	.limited{
		padding: 20px 30px;
		background-image: url("../image/top/diproma.png");
		background-size: cover;
	}
	.limited1_bg:before {
    top: 5%;
    left: 5%;
    width: 22%;
    height: 3%;
}
	.lesson_txt p{
		padding: 0px;
	}
.link_btn a {
    padding: 18px 0px;
    width: 70%;
}
	.course_ttl h3{
		padding-top:0;
	}
	.course2_photo{
		flex-wrap: wrap;
		width: 90%;
		margin: auto;
	}
	.course2_photo img{
		width: 50%;
	}
	.voice{
		flex-wrap: wrap;
		padding: 0;
	}
	.voice_photo{
		width: 80%;
		margin: auto;
	}
	.voice1{
		background-image: none;
		padding: 0;
	}
	.voice_coment{
		width: 80%;
	}
	.voice_coment p{
		padding-top: 10px;
		font-size: 1.6rem;
	}
	.voice2{
		background-image: none;
		padding: 0;
	}
	.voice3{
		background-image: none;
		padding: 0;
	}
	
	#qa_box{
		padding-top: 80px;
		margin-top: -80px;
	}
	.lesson_faq{
		margin-top: -80px;
		margin-bottom: 60px;
	}
	.qa{
		width: 100%;
		padding: 20px 0 0;
	}
	.step6_txt dd{
		margin-top: 100%;
	}
	.step6_img{
		margin-top: -80px;
	}
	.lesson_o{
	    padding-bottom: 300px;
    background-position: 50% 99%;
		background-size: 60%;
	}
	.limited2 p{
		width: 100%;
	}
	.limited2 {
    padding: 30px 30px 210px;
    background-size: 77%;
    background-position: 45% 95%;
    width: 80%;
    margin: 0 auto;
	z-index: 0;
}
	.limited2_bg:before {
    top: 5%;
    left: 5%;
    width: 22%;
    height: 3%;
}
	.space{
		padding-right: 0;
	}
	.about_bgw{
		width: 75%;
		padding: 40px 20px;
	}
	.about_bg{
		background-repeat: repeat;
    background-size: 160%;
	}
	.about_bgw h2 {
    line-height: 36px;
    padding-bottom: 15px;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
}
	.about_bgw p {
    line-height: 30px;
    letter-spacing: 0.1em;
	font-size: 1.4rem;
}
	.space2{
		padding-bottom: 15px;
	}
	.prof_txt h3{
		padding-top: 20px;
	}
	.worksbtn{
		padding: 20px 0;
	}
	.sns i{
		padding: 0 20px;
		font-size: 4.0rem;
	}
	.age{
		font-size: 2.4rem;
	}
	
	
	.works_content {
    justify-content: space-between;
	width: 100%;
}
	.works_box{
		width: 45%;
		padding: 20px 8px 20px;
	}
	
	.works_outline {
    padding: 60px 0 0px;
}
	.contact_read {
    text-align: center;
    padding: 30px 25px;
}
	.form_txt input {
    width: 70%;
    height: 30px;
    margin: 10px 0 10px 25px;
}
	.form_messa {
    width: 70%;
    height: 200px;
    margin: 10px 0 10px 25px;
}
.form_box {
    width: 100%;
}
	.form_box li{
		margin-bottom: 0;
	}
	.radio{
		display: grid;
	}
	.steptopic_o {
    font-size: 1.2rem;
}
	.stepbox {
    margin-bottom: 20px;
}
	.voice_title{
		line-height: 32px;
		font-size: 1.6rem;
	}
	.qa_section{
		width: 85%;
		margin: auto;
	}
	.lesson_txt li{
		line-height: 28px;
	}
	.indent{
		font-size: 1.3rem;
	}
	.concept_txt2 li {
    line-height: 2.0em;
	padding-bottom: 10px;
	}
}

