section {
    margin-bottom: 6%;
}
.scroll-adjust { /*ページ内スクロール位置調整用*/
	display: block;
   margin-top:-200px;
   padding-top:200px;
}
.overray::after {
	content: "";
	display: inline-block;
	width: 100%;
	background-color:rgba(65,31,19,0.4);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.overray2::after {
	content: "";
	display: inline-block;
	width: 100%;
	background-color:rgba(65,31,19,0.7);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.commonNumber {
    background-color: #353535;
    color: #FFFFFF;
    text-align: center;
    border-radius: 50%;
	width: 100px;
    height: 100px;
}
.commonNumber em {
    font-size: 4.6rem;
    line-height: 100%;
}
.commonNumber span {
    font-size: 1.3rem;
}
main {
    padding-bottom: 6%;
}
.mainV {
    position: relative;
	margin-bottom: 0;
}
.mainV_picWrp {
    position: relative;
	height: 90vh;
}
.mainV_picWrp .pic {
    height: 100%;
}
.mainV_picWrp .pic_img {
	/*height: fit-content;*/
}

@keyframes zoomUp {  /*メインビジュアル 画像のzoomアニメーション（swiper併用）*/
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoomUp 10s linear 0s 1 normal both;  
}
.slide-img img{ /*imgタグだと下に隙間ができるのでblockに。*/
  display: block;
}

.slide-animation{  /*メインビジュアル テキストのzoomアニメーション*/
    animation: fadezoom 8s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.mainV_catch {
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
	position: absolute;
	top: 59%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	z-index: 3;
}
.mainV_catch .txt1 {
	font-size: 3rem;
}
.mainV_catch .txtWrp {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
	margin: -1.5em 0;
}
.animation-zoom { 
	animation: anime-zoom 6s infinite;
	animation-delay: 1.5s;
}
@keyframes anime-zoom {
	0%{
		transform: scale(1);
	}
	10%{
		transform: scale(1.2);
	}
	20%{
		transform: scale(1);
	}
	100%{
		transform: scale(1);
	}
}
.mainV_catch .txt2 {
    font-size: 5.5rem;
    letter-spacing: 12px;
    line-height: 7rem;
}
.mainV_catch .txt3 {
    font-size: 11rem;
	vertical-align: middle;
}
.mainV_catch .txt3 em {
    font-size: 20.6rem;
}
.mainV_catch .txt4 {
    font-size: 3rem;
    height: auto;
}
.mainV_catch .txt5 {
    font-size: 1.9rem;
    background-color: #FFFFFF;
    color: #411F13;
    padding: .5em 1.5em;
    border-radius: 8px;
    display: inline-block;
	margin: .5em 0;
}
.mainV_catch .txt6 {
    font-size: 2.4rem;
    letter-spacing: 4px;
    white-space: nowrap;
}
.mainV_catch .txt6 em {
	font-size: 6.6rem;
}

.decoBar {            /*飾り線のアニメーション*/
    width: 218px;
    height: 243px;
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	opacity: 0;
	position: absolute;
	z-index: 2;
}
.decoBar-01 {
    background-image: url("img/bar_top_01.png");
    top: 100px;
    right: 0;
}
.decoBar-02 {
    background-image: url("img/bar_top_02.png");
    top: -40%;
    left: -20%;
}
.decoBar-03 {
    background-image: url("img/bar_point.png");
    top: -2%;
    right: 28%;
}
.decoBar-04 {
    background-image: url("img/bar_voice.png");
    top: -4%;
    left: 20%;
}
.decoBar-05 {
    background-image: url("img/bar_step.png");
    top: 0%;
    left: 45%;
}
.decoBar-06 {
    background-image: url("img/bar_teacher.png");
    top: -10%;
    left: 0%;
}
.decoBar-07 {
    background-image: url("img/bar_voice.png");
    top: -5%;
    left: 20%;
}
.decoBar.active{
	animation: kurukuru .5s ease-out;
	opacity: 1;
}
.decoBar-02.active{
	animation: kurukuru 1.5s ease-out;
}
@keyframes kurukuru {
  0%{
	transform:  /*rotate3d(1,1,1,0deg) */translateY(-140px) translateX(300px);
    opacity: 0;
  }
  90%{
  	opacity: 0.5;
  }
  100%{
   	transform:  /*rotate3d(1,1,1,720deg) */translateY(0) translateX(0);
    opacity: 1;
  }
}


.textAnimation{  /*テキストアニメーション用*/
	opacity:0;
}
.textAnimation span{
	opacity:0;
}

.textAnimation_bg { /*テキストアニメーション 背景の帯*/
    overflow: hidden;
    position: relative;
    text-align: center;
    display: inline-block;
}

/*.textAnimation_bg::after {
  background-color: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}*/
.textAnimation_bg::before {
  background-color: #353535;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
/*.textAnimation_bg.active::after {
  animation: textAnime 1s cubic-bezier(.4, 0, .2, 1) forwards;
}*/
.textAnimation_bg.active::before {
  animation: textAnime .9s cubic-bezier(.4, 0, .2, 1) forwards;
  animation-delay: .1s; 
}
@keyframes textAnime { 
  	100% {
    	transform: translateX(102%);
	}
}


.subV {
    padding: 6% 0;
    background-color: #F6F6F6;
	margin: 0;
}
.subV_inner {
    position: relative;
}
.subV_cont {
}
.subV_cont .picbox {
    width: 50%;
}
.subV_cont .textbox {
    flex: 1;
    padding-left: 4%;
	position: relative;
}
.subV_cont .textbox2{
	flex: 1;
    padding-right: 4%;
/*	padding-left: 4%;*/
	position: relative;
}
.subV_cont .textbox_tit {
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.subV_cont .textbox_subtit {
    margin: 1.3em 0;
    font-weight: bold;
}
.subV_cont .textbox_text {
}
.subV_cont .textbox_deco {
    display: inline-block;
    position: absolute;
    right: -21%;
    top: -3em;
    z-index: 0;
    width: 35%;
}
.subV_cont:nth-last-child(even){
	flex-direction: row-reverse;
	margin-top: 40px;
}
.subV_cont .textbox {
/*
    flex: 1;
    padding-right: 4%;
    position: relative;
*/
}
.point {
    position: relative;
	padding-top: 6%;
	overflow: hidden;
}
.point .commonTitleJP {
    font-size: 3rem;
	margin-bottom: 0;
}
.point .commonTitleJP em {
    font-size: 7.8rem;
}
.point_list {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    /*counter-reset: number 0;*/
    padding-left: 5%;
	z-index: 2;
}
.point_list_item {
    width: 20%;
	padding-left: 5%;
	padding-right: 5%;
    padding-top: 25%;
}
.point_list_item .pic {
    position: relative;
}
.point_list_item .pic img {
    width: 100%;
}
.point_list_item .commonNumber {
    position: absolute;
    left: 5%;
    top: -3.5em;
    z-index: 2;
}
.point_list_item .tit {
    font-size: 1.8rem;
    padding: 1em 0;
    font-weight: bold;
}
.point_list_item .text {
}
.pointSlider .slick-list { /*slick設定*/
	/*overflow: visible;*/
	padding: 0 15% 0 0!important;/*slickセンターモードを右側だけにする為、centerPaddingを!importantにより上書き*/
	padding-top: 100px;
}

.wet{
	background-image: url("img/feature_wet.jpg");
	text-align:  center;
	background-position: center;
}
.feature_list_item_bgcolor_wet{
	background-color: rgba(91,44,27,.8);
	width: 100%;
}
.feature_list_item_bgcolor_dry{
	background-color: rgba(160,143,137,.5);
}
.feature_list_item_bg{
	
}
/*
.wet::after {
  content: '';
  background-color: rgba(91,44,27,.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
*/
.dry{
	background-image: url("img/feature_dry.jpg");
	text-align:  center;
	background-position: center;
}
.feature{
	margin-bottom: 0;
}
.feature_title{
	font-family:  -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Helvetica, "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "メイリオ", Meiryo, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.feature_list{
	
}
.feature_list_item{
	font-weight: bold;
	color: #fff;
	width: 50%;
	background-size: cover;
}
.feature_wet_img{
	
}
.feature_list_item_title{
	display:  inline-block; 
	padding: 100px 0;
}
.feature_text_border{
	font-size: 18px;
/*
	border-bottom: .5px solid;
	display: inline-block;
*/
}
.spa_ja{
	font-size: 30px;
	margin-bottom: 10px
}
.spa_en{
	line-height: 2;
}
.icon{
	width: 15px;
	height: 15px;
	object-fit: contain;
	margin-bottom: 7px;
}
.icon_bg{
	width: 25px;
	height: 25px;
	object-fit: contain;
	margin-bottom: 7px;
}
.wet_text, .dry_text{
	font-size: 14px;
	line-height: 2;
	z-index: 1;
}
.feature_list_item_text{
	padding: 30px 15px;
	height: 220px;
}
.feature_text{
	margin: 0 auto;
	width: 80%;
}
.wet_text{
	background-color: #411f13;
}
.dry_text{
	background-color: #a08f89;
}
/*
.feature {
    color: #FFFFFF;
	margin-bottom: 0;
}
.feature_inner {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
*/
.course{
	margin-bottom: 0;
}
.course_inner{
	background-color: #f6f6f6;
/*	margin-bottom: 60px;*/
	padding-top: 6%;
}
.course_list{
}
.course_list_item{
	width: 49.7%;
	background-color: #fff;
	padding-bottom: 30px;
}
.course_cicle{
	position: relative;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin: -70px auto 15px;
    text-align: center;
}
.course_cicle_title{
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.course_cicle_title{
	font-weight: bold;
	color: #fff;
	width: 100%;
	font-size: 18px;
}
.course_cicle_titlesub{
	font-size: 12px;
	font-weight: normal;
}
.course_cicle_text{
	text-align: center;
	font-size: 14px;
	width: 70%;
    margin: 20px auto 60px auto;
}
.course_cicle_text_about_bold{
	font-weight: bold;
/*	font-size: 18px;*/
}
.course_cicle_text_about{
	text-align: left;
    margin-bottom: 5px;
	text-indent: -1em;
    padding-left: 1em;
}
.course_group{
	
}
.course_group_cont{
	text-align: center;
	display: block;
	margin-bottom: 10px;
}
.course_group_text{
	text-align: left;
	display: inline-block;
	width: 80%;
	margin-bottom: 15px
}
.flex{
	align-items: normal;
}
.course_group_title{
	text-align: center;
	font-weight: bold;
	font-size: 23px;
	border-bottom: 1px solid;
    width: 80%;
    margin: 15px auto;
	padding-bottom: 15px;
}
.course_group_titlesub{
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 5px;
}
.course_group_textbold{
	font-weight: bold;
	margin: 5px 10px 0 0;
}
.course_group_textnormal{
	font-weight: normal;
	margin-top: 5px;
}
.course_more{
	background-color: #411f13;
    width: 200px;
    margin: 30px auto;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
}
.course_note{
	margin-top: 10px;
	text-align: left;
    width: 80%;
    margin: 0 auto;
}
.course_wet{
	background-color: #411f13;
}
.course_dry{
	background-color: #a08f89;
}
.bg_color{
	background-color: #f6f6f6;
}
.course_heigt{
	margin-top: 60px;
}
.course_heigt01{
	margin-top: 250px;
}
.more_a{
	display: block;
	padding: 10px 0;
}
.course_adjust{
	z-index: 0;
    position: absolute;
}
.course_group_wrap{
	justify-content: space-between;
	border-bottom: 1px dotted;;
}
.voice {
	background-color: #f6f6f6;
    padding-top: 10%;
	margin-bottom: 0;
    padding-bottom: 6%;
/*
    background-color: #F6F6F6;
    margin-bottom: 0px;
    padding-bottom: 8%;
*/
}
.voice_list  {
}
.voice_list_item {
    width: 47%;
}
.voice_list_item .pic {
}
.voice_list_item .palce {
    padding: 1em 0;
    font-weight: bold;
}
.voice_list_item .txt {
    font-size: 14px;
}
.contact {
    background-color: #543B32;
    padding: 6% 0;
    color: #FFFFFF;
	margin-bottom: 0;
}
.contact_inner {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.contact .textbox {
    width: 50%;
}
.contact .textbox .tit {
    letter-spacing: 5px;
    margin-bottom: 0.5em;
    font-weight: bold;
}
.contact .textbox .text {
}
.contact .bnrbox  {
	width: 47%;
}
.contact .bnrbox_list {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.contact .bnrbox_list_item {
    width: 48%;
}
.contact .bnrbox_list_item a {
	text-align: center;
    color: #FFFFFF;
    padding: 5% 14% 5% 10%;
    border-radius: 70px;
    font-weight: bold;
    white-space: nowrap;
    margin-right: 0px;
    width: 100%;
    display: block;
}
.contact .bnrbox_list_item a span::before {
	margin-right: 8px;
	position: relative;
	top: 3px;
}
.contact .bnrbox_list_item .tel {
    background-color: #CEAA00;
}
.contact .bnrbox_list_item .tel span::before {
	content: url('assets/img/icon/other/mail.png');
}
.contact .bnrbox_list_item .mail {
    background-color: #BF1212;
}
.contact .bnrbox_list_item .mail span::before {
	content: url('assets/img/icon/other/mail.png');
}
.step {
	margin-bottom: 0;
	padding-top: 6%;
	overflow-y: hidden;
}
.step_cont {
    margin-bottom: 6%;
}
.step_cont .commonTitleJP {
	margin-bottom: 0.5em;
}
.step_cont_subtit {
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
}
.step_cont .list {
	counter-reset: number 0;
}
.step_cont .list_item {
	border-bottom: 1px solid #818181;
	padding: 2em 3%;
	position: relative;
    z-index: 1;
}
.step_cont .list_item:nth-child(even) {
	background-color: #f6f6f6;
}
.step_cont .list_item_inner {
}
.step_cont .list_item .titlebox {
    width: 45%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-right: 3%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.step_cont .list_item .commonNumber  {
    width: 80px;
    height: 80px;
}
.step_cont .list_item .commonNumber em {
    font-size: 3rem;
}
.step_cont .list_item .commonNumber em:after {
	counter-increment: number 1;
	content: counter(number,decimal-leading-zero);	
}
.step_cont .list_item .titlebox .title {
    font-weight: bold;
    margin-left: 1em;
	align-items: center;
    display: grid;
}
.step_cont .list_item .titlebox .title_txt {
    font-size: 2.4rem;
}
.step_cont .list_item .titlebox .title_note {
    font-size: 1.2rem;
}
.step_cont .list_item .commentbox {
	flex: 1;
}
.step_inquiry{
	padding: 2em 3% 6em 3%!important;
}
.step_inquiry_text_a{
	font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    background-color: #353535;
    width: 50%;
    margin: 0 auto;
    color: #fff;
    border-radius: 10px;
	position: relative;
	z-index: 10;
}
.step_inquiry_text_a:hover{
	opacity: .7;
}
.step_inquiry_text_a{
	display: block;
    padding: 20px;
}
.step_inquiry_text_a::before{
/*	content: url("../school/img/icon_inquiry.png");*/
}
.media {
    background-color: #F6F6F6;
    padding: 6% 0;
	z-index: 3;
	margin-bottom: 0;
}
.media .list {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.media .list_item {
    width: 18%;
}
.media .list_item .name {
    text-align: center;
    margin-top: 0.5em;
}
.teacher {
	padding-top: 6%;
}
.teacher_inner  {
    position: relative;
}
.teacher_title {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 100%;
	position: relative;
	margin-bottom: 6%;
	padding-left: 60px;
	z-index: 3;
}
.teacher_title::before {
	content: "";
	display: inline-block;
	width: 50px;
	height: 1px;
	background-color: #818181;
	position: absolute;
    left: 0;
    top: .5em;
}
.teacher_title span {
    font-size: 1.2rem;
    color: #666666;
}
.teacher_cont {
    margin-bottom: 4em;
}
.teacher_cont > div {
    width: 48%;
}
.teacher_cont .txtbox {
	z-index: 2;
}
.teacher_cont .txtbox .tit {
    font-weight: bold;
    margin-bottom: 1em;
}
.teacher_cont .txtbox .tit_note {
    font-size: 1.2rem;
}
.teacher_cont .txtbox .tit_name {
    margin: .5em 0;
    font-size: 3rem;
	letter-spacing: 3px;
}
.teacher_cont .txtbox .tit_txt {
}
.teacher_cont .txtbox .text {
}
.teacher_cont .picbox {
	text-align: center;
}
.text_01{
	text-align: center;
    margin-top: 40px;
}
.text_btn{
	background-color: #353535;
	padding: 12px 40px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}
.faq {
    padding: 6% 0;
    background-color: #F6F6F6;
	margin-bottom: 0;
}
.faq .list {
}
.faq .list_item {
    margin-bottom: 1.5em;
}
.faq .list_item .question {
	font-size: 1.8rem;
	font-weight: bold;
	background-color: #fff;
	position: relative;
	padding: 3%;
	padding-left: 8rem;
}
.faq .list_item .question_txt {
    width: 92%;
}
.faq .list_item .answer {
    position: relative;
    padding: 3%;
    padding-left: 8rem;
    margin-top: 1em;
	background-color: #e8e8e8;
    display: none;
}
.faq .list_item .question::before,
.faq .list_item .answer::before {
	font-family: Didot ,serif;
	font-size: 3.5rem;
	margin-right: .2em;
	position: absolute;
	top: .5em;
	left: 1em;
}
.faq .list_item .question::before {
	content: "Q";	
}
.faq .list_item .answer::before {
	content: "A";	
}
.accordion_icon,           /*アコーディオンの＋、−*/
.accordion_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.accordion_icon {
	position: relative;
	width: 20px;
	height: 20px;
}
.accordion_icon span {
    width: 100%;
	height: 1px;
    background-color: #272727;	
	position: absolute;
}
.accordion_icon span:nth-of-type(1) {
    top: 45%;
	transform: rotate(0deg);
}
.accordion_icon span:nth-of-type(2) {
    top: 45%;
	transform: rotate(90deg);
}
/*＋、－切り替え*/
.accordion_icon.active span:nth-of-type(1) {
	display:none;
}
.accordion_icon.active span:nth-of-type(2) {
	top: 50%;
	transform: rotate(180deg);
}

.bnrboxFoot{
    width: 98%;
    margin-left: auto;
    margin-right: auto;
	position: fixed;
	bottom: .5em;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 4;
}
.bnrboxFoot .list {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.bnrboxFoot .list_item {
    width: 49%;
}
.bnrboxFoot .list_item a {
	text-align: center;
    color: #FFFFFF;
    padding: 15px 14% 15px 10%;
    border-radius: 70px;
    font-weight: bold;
    white-space: nowrap;
    margin-right: 0px;
    width: 100%;
    display: block;
}
.bnrboxFoot .list_item a span::before {
	margin-right: 8px;
	position: relative;
	top: 3px;
}
.bnrboxFoot .list_item .tel {
    background-color: #CEAA00;
}
.bnrboxFoot .list_item .tel span::before {
	content: url('assets/img/icon/other/mail.png');
}
.bnrboxFoot .list_item .mail {
    background-color: #BF1212;
}
.bnrboxFoot .list_item .mail span::before {
	content: url('assets/img/icon/other/mail.png');
}



@media screen and (max-width:1024px){
	.mainV_picWrp {
		position: relative;
		height: 90vh;
	}
	.subV_cont .textbox_deco {
		right: -7%;
		width: 30%;
	}
	.feature .picbox_item .txt {
		font-size: 1.2vw;
	}
	.step_cont .list_item .titlebox .title_txt {
		font-size: 2vw;
	}
	.feature_list_item_text {
		height: 260px;
	}
}
@media screen and (max-width:780px){
	.scroll-adjust { /*ページ内スクロール位置調整用*/
	   margin-top:-60px;
	   padding-top:60px;
	}
	.decoBar-02 {
		top: -22%;
		left: -6%;
	}
	.subV_cont .picbox {
		width: 100%;
		text-align: center;
		margin-bottom: 2em;
	}
	.subV_cont .textbox_deco {
		right: 0%;
	}
	.subV_cont .textbox {
		margin-right: 4%;
	}
	.subV_cont .textbox2 {
		margin-left: 4%;
	}
	.commonNumber {
		width: 80px;
		height: 80px;
	}
	.feature_list{
		flex-direction: column;
	}
	.feature_list_item{
		width: 100%;
	}
	.feature_list_item_text{
		height: auto;
	}
	.course_list {
    	flex-direction: column;
		width: 90%;
    	margin: 0 auto;
	}
	.course_title{
		margin-bottom: 0.5em;
    	margin-top: 1em;
	}
	.course_list_item {
    	width: 100%;
		margin-top: 100px;
	}
	.course_titlesub{
		margin-bottom: 0;
	}
	.course_heigt {
		 margin-top: 30px; 
	}
	.contact .textbox {
		width: 100%;
		margin-bottom: 2em;
	}
	.contact .textbox .tit {
    	letter-spacing: 3px;
	}
	.contact .bnrbox {
		width: 80%;
    	margin: auto;
	}
	.step_cont .list_item .titlebox {
		width: 100%;
		margin-bottom: 1em;
	}
	.step_cont .list_item .titlebox .title_txt {
		font-size: 2.4rem;
	}
	.media .list {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.media .list_item {
		width: 33%;
		padding: 2%;
	}
	.teacher_cont {
		-webkit-box-orient: vertical!important;
		-webkit-box-direction: reverse!important;
		-ms-flex-direction: column-reverse!important;
		flex-direction: column-reverse!important;
	}
	.teacher_cont > div {
		width: 100%;
	}
	.teacher_cont .txtbox {
		margin-top: 2em;
	}
	.commonTitleJP {
/*		margin-bottom: 0;*/
	}
	.course_heigt01, .course_heigt {
		margin-top: 60px;
	}
}
@media screen and (max-width:560px){	
	.feature_title{
		font-size: 2.7rem;
	}
	.wetja {
		font-size: 25px;
	}
	.course_group_title{
		font-size: 20px;
	}
}
@media screen and (max-width:480px){	
	.decoBar {
    	width: 145px;
	}
	.decoBar-06 {
    	top: -4%;
	}
	.decoBar-07 {
    	top: -2%;
	}
	section{
		margin-bottom: 14%;
	}
	/*.mainV_catch .txt1 {
		font-size: 2.5rem;
	}*/
	.mainV_catch {
    	/*top: 25%;*/
	}
	.mainV_catch .txt2 {
		font-size: 3.5rem;
		letter-spacing: 4px;
		line-height: 4rem;
	}
	.mainV_catch .txt3 {
    	font-size: 5rem;
	}
	.mainV_catch .txt3 em {
		font-size: 16.6rem;
	}
	.mainV_catch .txt4 {
		font-size: 2.4rem;
	}
	/*.mainV_catch .txt6 em {
		font-size: 4.6rem;
	}*/
	.decoBar-04 {
		top: -2%;
		left: 15%;
	}
	.subV_cont .textbox_deco {
		top: -25%;
	}
	.point .commonTitle {
    	font-size: 2.2rem;
	}
	.point .commonTitle::before,
	.point .commonTitle::after {
		width: 25px;
	}
	.point_list_item .commonNumber {
    	top: -12%;
	}
	.feature_inner {
		display: block;
	}
	.feature_text {
		width: 100%;
	}
	.voice_list_item {
		width: 100%;
		margin-bottom: 8%;
	}
	.contact .bnrbox_list_item {
		width: 100%;
		margin-bottom: 2em;
	}
	.header_bnr_item {
    width: 100%;
    margin-bottom: 2em;
     margin-right: 0!important; 
}
	.step_cont {
		margin-bottom: 16%;
	}
	.step_cont .list_item .commonNumber {
		width: 60px;
		height: 60px;
	}
	.faq .list_item .answer {
    	padding: 6%;
		padding-top: 10%;
	}
	.faq .list_item .question::before, 
	.faq .list_item .answer::before {
		font-size: 3rem;
    	top: 0.2em;
	}
	.accordion_icon {
		width: 13px;
		height: 13px;
	}
	.step_inquiry_text_a  {
		width: 70%;
	}
}
