/* ------------------------------------------------------------------------------
	Template Name: Minifolio
	Author: Designstub
	Author URI: http://www.designstub.com
	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	Version: 1.0

/* ------------------------------------------------------------------------------
	Typography
-------------------------------------------------------------------------------*/

@import url(http://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700);
@import url(http://fonts.googleapis.com/css?family=Roboto%20Slab:300,400,500,600,700);

p {
	font-size: 14px;
	line-height: 22.4px;
	color: #6c7279;
}
h1 {
	font-size: 65px;
	color: #2d3033;
}
h2 {
	font-size: 40px;
	color: #2d3033;
}
h3 {
	font-size: 28px;
	color: #2d3033;
	font-weight: 300;
}
h4 {
	font-size: 22px;
	color: #2d3033;
	font-weight: 400;
}
h5 {
	font-size: 14px;
	color: #2d3033;
	text-transform: uppercase;
	font-weight: 700;
}
.btn {
	background-color: #3bc492;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 5px;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
}
.btn:hover, .btn:focus {
	background-color: #3d3d3d;
	color: #fff;
}
.btn-large {
	padding: 15px 40px;
}
/* ------------------------------------------------------------------------------
	Global Styles
-------------------------------------------------------------------------------*/
a {
	color: #e84545;
}
a:hover, a:focus {
	text-decoration: none;
	-moz-transition: background-color, color, 0.3s;
	-o-transition: background-color, color, 0.3s;
	-webkit-transition: background-color, color, 0.3s;
	transition: background-color, color, 0.3s;
}
body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	color: #6c7279;
}
ul, ol {
	margin: 0;
	padding: 0;
}
ul li {
	list-style: none;
}
.section {
	padding: 0px;
}
.no-padding {
	padding: 0;
}
.no-gutter [class*=col-] {
	padding-right: 0;
	padding-left: 0;
}
.space
{
	margin-top:60px;	
}
/* ------------------------------------------------------------------------------
	Header
-------------------------------------------------------------------------------*/
#header {
	position: fixed;
	width: 100%;
	z-index: 999;
}
#header .header-content {
	margin: 0 auto;
	max-width: 1170px;
	padding: 60px 0;
	width: 100%;
	-moz-transition: padding 0.3s;
	-o-transition: padding 0.3s;
	-webkit-transition: padding 0.3s;
	transition: padding 0.3s;
}
#header .logo {
	float: left;
}
#header.fixed {
	background-color: rgba(253,205,208, 0.6);
}
#header.fixed .header-content {
	border-bottom: 0;
	padding: 10px 0;
}
#header.fixed .nav-toggle {
	top: 8px;
}
.navigation.open {
	opacity: 0.9;
	visibility: visible;
	-moz-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.navigation {
	float: right;
}
.navigation li {
	display: inline-block;
}
.navigation a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	font-weight: 400;
	margin-left: 40px;
	letter-spacing: 3px;
	text-transform: uppercase;
}
.navigation a:hover, .navigation a.active {
	color: #fff;
}
.nav-toggle {
	display: none;
	height: 44px;
	overflow: hidden;
	position: fixed;
	right: 5%;
	text-indent: 100%;
	top: 32px;
	white-space: nowrap;
	width: 44px;
	z-index: 99999;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.nav-toggle:before, .nav-toggle:after {
	border-radius: 50%;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
}
.nav-toggle:before {
	background-color: #FDCDD0;
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.nav-toggle:after {
	background-color: #FDCDD0;
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	-moz-transition-duration: 0s;
	-o-transition-duration: 0s;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}
.nav-toggle span {
	background-color: #fff;
	bottom: auto;
	display: inline-block;
	height: 3px;
	left: 50%;
	position: absolute;
	right: auto;
	top: 50%;
	width: 18px;
	z-index: 10;
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.nav-toggle span:before, .nav-toggle span:after {
	background-color: #fff;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.nav-toggle span:before {
	-moz-transform: translateY(-6px) rotate(0deg);
	-ms-transform: translateY(-6px) rotate(0deg);
	-webkit-transform: translateY(-6px) rotate(0deg);
	transform: translateY(-6px) rotate(0deg);
}
.nav-toggle span:after {
	-moz-transform: translateY(6px) rotate(0deg);
	-ms-transform: translateY(6px) rotate(0deg);
	-webkit-transform: translateY(6px) rotate(0deg);
	transform: translateY(6px) rotate(0deg);
}
.nav-toggle.close-nav:before {
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
}
.nav-toggle.close-nav:after {
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.nav-toggle.close-nav span {
	background-color: rgba(255, 255, 255, 0);
}
.nav-toggle.close-nav span:before, .nav-toggle.close-nav span:after {
	background-color: #fff;
}
.nav-toggle.close-nav span:before {
	-moz-transform: translateY(0) rotate(45deg);
	-ms-transform: translateY(0) rotate(45deg);
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.nav-toggle.close-nav span:after {
	-moz-transform: translateY(0) rotate(-45deg);
	-ms-transform: translateY(0) rotate(-45deg);
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}
/* ------------------------------------------------------------------------------
	Banner
-------------------------------------------------------------------------------*/

.banner {
	background-color: #FECDD0;
	min-height: 750px;
}
.banner-text {
	padding-top: 28%;
}
.banner-text h1 {
	color: #fff;
	font-family: "Roboto Slab", sans-serif;
	font-size: 80px;
	font-weight: 700;
}
.banner-text p {
	color: #fff;
	font-size: 19px;
	font-weight: 400;
	letter-spacing: 3px;
	line-height: 24px;
	margin-top: 30px;
	margin-bottom: 80px;
}
/* ------------------------------------------------------------------------------
	Description Text
-------------------------------------------------------------------------------*/

.descripton p {
	color: #3d3d3d;
	font-size: 18px;
	line-height: 33px;
	font-weight: 400;
}
/* ------------------------------------------------------------------------------
	Works
-------------------------------------------------------------------------------*/
.work {
  -moz-box-shadow: 0 0 0 1px #fff;
  -webkit-box-shadow: 0 0 0 1px #fff;
  box-shadow: 0 0 0 1px #fff;

  overflow: hidden;
  position: relative;
  visibility: hidden; }
  .work img
  {
	width:100%;
	height:100%;  
  }
  .work .overlay {
    background: rgba(64, 35, 97, 0.9);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    -moz-transition: opacity, 0.3s;
    -o-transition: opacity, 0.3s;
    -webkit-transition: opacity, 0.3s;
    transition: opacity, 0.3s; }
  .work .overlay-caption {
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .work h5, .work p, .work img {
    -moz-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    -webkit-transition: all, 0.5s;
    transition: all, 0.5s; }
  .work h5, .work p {
    color: #fff;
    margin: 0;
    opacity: 0; }
  .work h5 {
    margin-bottom: 5px;
    -moz-transform: translate3d(0, -200%, 0);
    -ms-transform: translate3d(0, -200%, 0);
    -webkit-transform: translate3d(0, -200%, 0);
    transform: translate3d(0, -200%, 0); }
  .work p {
    -moz-transform: translate3d(0, 200%, 0);
    -ms-transform: translate3d(0, 200%, 0);
    -webkit-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0); }

.work-box:hover img {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2); }
.work-box:hover .overlay {
  opacity: 1; }
  .work-box:hover .overlay h5, .work-box:hover .overlay p {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
	
	/* ------------------------------------------------------------------------------
	Work animation
-------------------------------------------------------------------------------*/
.work:nth-child(1) {
  -moz-animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }
.work:nth-child(2) {
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }
.work:nth-child(3) {
  -moz-animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }
.work:nth-child(4) {
  -moz-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }
.work:nth-child(5) {
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s; }
.work:nth-child(6) {
  -moz-animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s; }
.work:nth-child(7) {
  -moz-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }
.work:nth-child(8) {
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.animated {
  visibility: visible; }
  
/* ------------------------------------------------------------------------------
	Hire me
-------------------------------------------------------------------------------*/
.hireme {
	background-color: #fafafa;
}
.hireme h3 {
	font-family: "Roboto", sans-serif;
	font-size: 30px;
	font-weight: 400;
	margin-top: 0;
}
.hireme p {
	color: #2d3033;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 400;
}
.hireme .btn {
	margin-top: 30px;
}
/* ------------------------------------------------------------------------------
	Footer
-------------------------------------------------------------------------------*/
.footer {
	text-align: center;
	padding-bottom: 150px;
}
.footer p {
	font-family: "Roboto", sans-serif;
	font-size: 11px;
	color: #7f7f7f;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.footer a {
	color: #7f7f7f;
}
.footer a:hover {
	color: #e84545;
}
.footer .footer-share {
	margin-top: 0;
}
.footer .footer-share li {
	background: #3d3d3d none repeat scroll 0 0;
	border-radius: 50%;
	color: #ffffff;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	padding: 4px 0;
	margin: 0 5px;
	display: inline-block;
	float: none;
}
.footer .footer-share a {
	color: #fff;
}
.footer .fa-heart {
	color: #e84545;
	font-size: 11px;
	margin: 0 2px;
}
  
/* ------------------------------------------------------------------------------
	Inner Page Banner
-------------------------------------------------------------------------------*/

.innerbanner {
	background-color: #65349c;
	min-height: 100%;
}
.innerbanner-text {
	padding-top: 20%;
	padding-bottom: 5%;
}

.innerbanner-text p {
	color: #fff;
	font-family: "Roboto Slab", sans-serif;
	font-size: 36px;
	font-weight: 400;
	letter-spacing: 3px;
	line-height: 24px;
	margin-top: 30px;
	margin-bottom: 80px;
}
/* ------------------------------------------------------------------------------
	Inner description
-------------------------------------------------------------------------------*/
.inner-description h1 {
	color: #3d3d3d;
	font-size: 23px;
	font-weight: 700;
	margin-top:55px;
}
.inner-description p {
	color: #3d3d3d;
	font-size: 18px;
	line-height: 33px;
	font-weight: 400;
}
.inner-description img
{
width:150px;
height:150px;
border-radius:50%;	
}


/* ------------------------------------------------------------------------------
	Contact form
-------------------------------------------------------------------------------*/
.conForm
{
margin-top:50px;	
}
.conForm input {
	background:#fafafa;
	color:#797979;
	padding:15px 30px;
	border:none;
	margin-right:3%;
	margin-bottom:30px;
	outline:none;
	font-style:normal;
	border:#f4f3f3 1px solid;
	font-size:15px;
}
.conForm input.noMarr {
	margin-right:0px;
}
.conForm textarea {
	background:#fafafa;
	color:#797979;
	padding:15px 30px;
	margin-bottom:18px;
	outline:none;
	height:300px;
	font-style:normal;
	resize:none;
	font-size:15px;
	border:#f4f3f3 1px solid;
}


.conForm .submitBnt {
	background:#3bc492;
	color: #fff;
		padding: 15px 40px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 5px;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
}
.conForm .submitBnt:hover {
	background:#3d3d3d;
	color:#fff;
}
.error_message {
    color: #ff675f;
    font-weight: 500;
    padding-bottom: 15px;
}
#success_page h3 {
    color: #5ed07b;
    font-size: 17px;
    font-weight: 700;
}

.slick-slide{
	margin: 0px!important;
}

/**Add****************/

.container{
	max-width:800px;
}

.top_catch01{
	position:relative;
	background:url("../images/top_catch01_bg.jpg");
	background-color:#CAE2DE;
	background-size:100%;
	background-repeat:no-repeat;
	background-position: center left;
}


.top_catch01 p{
	color:#804F21;
	font-family: 'Noto Serif JP', serif;
	margin:0;
	line-height: 2em;

}
.catch_data{
	padding-left:10px;
}
.top_catch01 h2{
	position:relative;
	top:-80px;
	margin-bottom: -80px;
}


.large01{
	font-size: 32px;
}

@media screen and (min-width: 769px) {
	.top_catch01 h2{
		max-width:800px;
		margin:0 auto;
		position:relative;
		top:-150px;
		margin-bottom: -150px;
	}
	.top_catch01 h2 img{
		width:100%;
		max-width:600px;
	}
	.top_catch01 p{
		font-size: 18px;
	}
	.top_catch01 p.large01{
		font-size: 48px;
	}
	.top_catch01{
		position:relative;
		background:url("../images/top_catch01_bg.jpg");
		background-color:#CAE2DE;
		background-size:50%;
		background-repeat:no-repeat;
		background-position: center left;
	}
}

.top_engage_btn{
	margin-top: 20px;
	margin-bottom: 30px;

}

.top_engage_btn h3{
	color:#804F21;
	font-family: 'Noto Serif JP', serif;
	margin:0;
	line-height: 2em;
	padding-bottom: 0;
	text-align: center;
}

@media screen and (min-width: 769px) {
	.top_engage_btn h3, .top_engage_btn{
		max-width:800px;
		margin:0 auto;
	}
	.top_engage_btn h3 img{
		padding-top:50px;
		width: 100%;
		max-width:600px;
	}

	.engage_btn{
		width: 100%;
		max-width:600px;
		margin:0 auto;
		margin-bottom: 100px;
	}
}

.movie01{
	background-color:#CAE2DE;
	padding: 20px 0;
}

@media screen and (min-width: 769px) {
	.movie01 iframe{
		max-width:800px;
		margin:0 auto;

	}
}


.reason{
	background:url("../images/reason_bg.jpg");
	background-size:contain;
	background-repeat:no-repeat;
	background-position: bottom left;
	background-repeat:no-repeat;
	background-position: top left;
	padding-top:100px;
	padding-bottom:20px;
	background-color:#FDCDD0;
}



.reason .logo_bg{
	position: relative;
	top:-130px;
	margin-bottom: -130px
}

.reason .logo_bg{
	display: block;
	float:right;
	max-width:100px;
}

.reason_box::before{
	content: "";
	display: block;
	position:relative;
	top:-50px;
	margin-bottom:-50px;
	left:-30px;
	width:80px;
	height:80px;
	background:url("../images/reason_box_bg.png");
	background-size:cover;
	background-repeat:no-repeat;
	background-repeat:no-repeat;
	background-position: top left;
}


.reason_box{
	position:relative;
	background:url("../images/reason_box_bgbtm.png");
	background-size:96%;
	background-repeat:no-repeat;
	background-position: bottom right;
	background-repeat:no-repeat;
	background-color:#fff;
	padding-bottom:10px;
}

.reason_box02::before{
	content: "";
	display: block;
	position:relative;
	top:-50px;
	margin-bottom:-50px;
	left:calc(100% - 60px);
	width:80px;
	height:80px;
	background:url("../images/reason_box_bg.png");
	background-size:cover;
	background-repeat:no-repeat;
	background-repeat:no-repeat;
	background-position: top left;
}



.reason_box02{
	margin-top:50px;
	margin-bottom:50px;
	position:relative;
	background:url("../images/reason_box_bgbtm2.png");
	background-size:96%;
	background-repeat:no-repeat;
	background-position: bottom left;
	background-repeat:no-repeat;
	background-color:#fff;
	padding-bottom:10px;
}

@media screen and (min-width: 769px) {
	.reason_box{
		margin-right:10px;
		width:calc(50% - 15px);
	}
	.reason_box, .reason_box02{
		min-height:200px;
	}

}


.reason_box h3, .reason_box02 h3{
	font-size:22px;
	width: 100%;
	text-align: center!important;
	margin:0;
	padding:0;
	color: #804F21;
	font-family: 'Noto Serif JP', serif
}

.reason_box .reason_box_data, .reason_box02 .reason_box_data{
	margin-top:30px;
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
}

.reason_box .reason_box_data p, .reason_box02 .reason_box_data p{
	color: #804F21;
	font-family: 'Noto Serif JP', serif;

}

.fadeIn{
/*	animation-delay: 0.5s; */
}

.animated {
	opacity: 0;
  }

.box {
	animation: poyon 2.5s;
  }
  
  @keyframes poyon {
	0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
	15%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
	30%  { transform: scale(1.1, 0.8) translate(0%, 10%); }
	50%  { transform: scale(0.8, 1.1) translate(0%, -10%); }
	100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
  }

  .box02 {
	animation: poyon02 2.5s;
  }
  
  @keyframes poyon02 {
	0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
	15%  { transform: scale(1.1, 0.8) translate(0%, 5%); }
	30%  { transform: scale(0.9, 0.9) translate(0%, 10%); }
	50%  { transform: scale(1.1, 0.8) translate(0%, -10%); }
	100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
  }

.recom{
	background-color:#FFF4C7;
	position:relative;
}

.recom_inner{
	position:relative;
}

.recom h2{
	position: relative;
	top:-50px;
	margin-bottom:-50px;
	width:50%;
}



.recom_cer{
	display:flex;
	justify-content: center;
	background:url("../images/recom_cer_bg.png");
	background-size:contain;
	background-position: center;
	background-repeat:no-repeat;
	border-radius: 50%;
}

.recom_cer p{
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
	display:flex;
	justify-content: center;
	align-items: center;
	margin:0;
}

.cer01{
	width: 200px;
    height: 200px; 	
	position:relative;
	top:-100px;
	left:calc(100vw - 200px);
	font-size:18px;
	line-height:1.2em;
}


.cer02{
	width: 160px;
    height: 160px; 	
	position:relative;
	top:-200px;
	left:0;
	font-size:18px;
	line-height:1.2em;
}

.cer03{
	width: 200px;
    height: 200px; 	
	position:relative;
	top:-250px;
	left:calc(100vw - 230px);
	font-size:22px;
	line-height:1.2em;
}

.cer04{
	width: 180px;
    height: 180px; 	
	position:relative;
	top:-350px;
	left:0px;
	font-size:22px;
	line-height:1.2em;
}

@media screen and (min-width: 769px) {
	.recom h2{
		width:30%;
		position: relative;
		top:-50px;
		margin-bottom:-50px;
	}

	.cer01{
		width: 300px;
		height: 300px; 	
		position:relative;
		top:0px;
		left:0px;
		font-size:18px;
		line-height:1.2em;
	}
	.cer02{
		width: 200px;
		height: 200px; 	
		position:relative;
		top:100px;
		left:0px;
		font-size:18px;
		line-height:1.2em;
	}
	
	.cer03{
		width: 250px;
		height: 250px; 	
		position:relative;
		top:-50px;
		left:0px;
		margin-bottom: -50px;
		font-size:18px;
		line-height:1.2em;
	}
	
	.cer04{
		width: 180px;
		height: 180px; 	
		position:relative;
		top:180px;
		right:0px;
		font-size:18px;
		line-height:1.2em;
	}
	
}


h2.width100{
	width:100%;
}

.begginer_box{
	position:relative;
	top:-300px;
	margin-bottom:-300px;
	padding:0px;
}



.begg_sec{
	padding:0;
}

.begg_box{
	display:flex;
	justify-content: center;
	align-items: center;
	background:url("../images/begg_box_bg.png");
	background-size:contain;
	background-position: center;
	background-repeat:no-repeat;
	width:100vw;
	min-height:200px;
	margin:0px;
	padding-left:0px;
}

@media screen and (min-width: 769px) {
	h2.width100{
		width:100%;
		max-width:800px;
		margin: 100px auto 0 auto;
		text-align:left;
	}
	h2.width100 img{
		max-width:600px;
	
	}
	.begginer_box{
		position:relative;
		top:0px;
		margin-bottom:0px;
		padding:0px;
	}
	
	.begg_box{
		width:50%;
		margin:0px;
		padding-left:0px;
	}
}



.begg_box p{
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
	font-size:18px;
	line-height:1.8em;

}

.autoplay img{
	margin:	0px;/*画像の周りに余白*/
	width:95%;/*横幅に制限*/
	border:0.5px solid #eee;/*周囲に薄いボーダー*/}

.autoplay{
  display: none;
}
.autoplay.slick-initialized{
  display: block; /*slick-initializedが付与されたら表示*/
}

.sliderArea02{
	position: relative;
}

.sliderArea02 .slider{
	max-width:800px;
	margin:0 auto;
}



.lesson_bg_logo{
	width:100px;
	display:block;
	margin-left:5px;
	margin-bottom: 50px;
}

.inst{
	background-color:#FDCDD0;
}

.inst .container{
	padding:0;
}

.inst h2{
	position: relative;
	top:-50px;
	margin-bottom:-50px;
	width:80%;
}

.inst_top{
	background:url("../images/inst/inst_mirey.png");
	background-size:100%;
	background-position: top right;
	background-repeat:no-repeat;
	display:flex;
	flex-direction: row-reverse; 
	align-items: flex-end;
	flex-wrap:wrap;
}



.inst_child{
	background-size:100%;
	background-position: top right;
	background-repeat:no-repeat;
	display:flex;
	flex-direction: row-reverse; 
	align-items: flex-end;
	flex-wrap:wrap;
	margin-bottom:10px;
	
}
.inst_data_name{
	width:90%;
	padding:0 0 0 auto;
	margin-top:120px;
	background-color:transparent;
}
.inst_data{
	width:90%;
	background-color:rgba(2555,255,255,0.6);
	padding-top:10px;
}


.inst_data_name h3{
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
	font-size:22px;
	background-color:transparent!important;
	line-height:1.8em;
	text-shadow: 0 0 2px #ffffff,
    0 0 5px #ffffff,
    0 0 10px #ffffff,
    0 0 15px #ffffff,
    0 0 20px #ffffff,
    0 0 25px #ffffff,
    0 0 30px #ffffff;

}

.inst_data_name h3 span{
	display:inline-block;
	font-size:0.8em;
	margin-left:10px;
}

.inst_data p{
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
	font-size:12px;
	line-height:1.2em;
	text-align:left;
	text-shadow: 0 0 2px #ffffff,
    0 0 5px #ffffff,
    0 0 10px #ffffff,
    0 0 15px #ffffff,
    0 0 20px #ffffff,
    0 0 25px #ffffff,
    0 0 30px #ffffff;
}

@media screen and (min-width: 769px) {
	.inst h2{
		width:100%;
		max-width:50%;
	}
	.inst_top{
		max-width:800px;
		display:block!important;
		margin:0 auto;
		flex-direction: row-reverse; 
		align-items: normal;
		justify-content:flex-end;
	}
	.inst_data{
		position:relative;
		width:50%;
		top:0;
		left:50%;
	}
	.inst_data p{
		color: #804F21;
		font-family: 'Noto Serif JP', serif;
		font-size:14px;
		line-height:1.5em;
	}
	.min-height3{
		min-height: 90px;
	}

	.inst_child{
		width:49%;
		margin-right:1%;
		min-height:380px;
	}
	.inst_child .inst_data{
		position:relative;
		width:80%;
		top:0;
		left:0%;

	}

}


.inst_sche{
	width:100%;
	padding:5px;
	background-color:rgba(2555,255,255,0.9)
}

ul.sche01{
	width:100%;
	margin:0;
	padding:0;
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
	font-size:12px;
	line-height:1.2em;
	text-align:left;
}

ul.sche01 li{
	margin:0;
	padding:0;
	padding-left:50px;
	margin-bottom:5px;
}


.west_lp{
	background:url("../images/inst/west_lp.png");
	background-size:40px;
	background-position: top left;
	background-repeat:no-repeat;
}

.center_lp{
	background:url("../images/inst/center_lp.png");
	background-size:40px;
	background-position: top left;
	background-repeat:no-repeat;

}
.east_lp{
	background:url("../images/inst/east_lp.png");
	background-size:40px;
	background-position: top left;
	background-repeat:no-repeat;
}

.hakata_lp{
	background:url("../images/inst/hakata_lp.png");
	background-size:40px;
	background-position: top left;
	background-repeat:no-repeat;
}

.hakata02_lp{
	background:url("../images/inst/hakata02_lp.png");
	background-size:40px;
	background-position: top left;
	background-repeat:no-repeat;
}

.shiraki_lp{
	background:url("../images/inst/shirakibaru_lp.png");
	background-size:40px;
	background-position: top left;
	background-repeat:no-repeat;
}


.tenjin_lp{
	background:url("../images/inst/tenjin_lp.png");
	background-size:40px;
	background-position: top left;
	background-repeat:no-repeat;
}


section.cale01{
	padding-top:20px;
	background-color:#FFF4C7;
	background-color:#FFF1F1;
}
.scroll_tb{
	overflow: scroll;
	padding:0;
	margin-bottom:30px;
}
table.week_sche{
	width:auto;
}



table.week_sche caption{
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
	font-size:24px;
	text-shadow:
	0 0 10px #fff,
	0 0 15px #fff;
	padding-left:10px;
}

table.week_sche, table.week_sche th, table.week_sche td{
	border:solid 1px #ccc;
	font-size:12px;
}



table.week_sche th{
	text-align:center;
	white-space: nowrap;
	background-color:#CF9BBD;
	color:#fff;
	padding:0;
}

table.week_sche td{
	text-align:center;
	white-space: nowrap;
	background-color:#FFF1F1;
	color:#fff;
}


table.week_sche td.west_td{
	background-color:#F59E01;
}
table.week_sche td.center_td{
	background-color:#F48AB9;
}

table.week_sche td.tenjin_td{
	background-color:#ECB9BD;
}



table.week_sche td.east_td{
	background-color:#5FC6F3;
}
table.week_sche td.hakata_td{
	background-color:#6AC58B;
}
table.week_sche td.hakata02_td{
	background-color:#98D982;
}
table.week_sche td.shiraki_td{
	background-color:#8674B2;
}


table.week_sche td.trialask{
	border:solid 4px #4285F4;
}

table.week_sche td.trialok{
	border:solid 4px #8B008C;
}

table.week_sche td.mark_td{
	padding-top:0;
	margin:0!important;
	font-size:10px;
	line-height:12px;
}

table.week_sche td.bordernone{
	border:none;
}

table.week_sche td.bordernone02{
	border:none;
	height:3px!important;
	padding:0!important;
	background-color:none!important;
}

table.week_sche td.trialdata{
	white-space: normal;
	color:#000;
	font-size:10px;
	line-height:12px;
	text-align: center;
}

@media screen and (min-width: 769px) {
	table.week_sche{
		width:100%;
	}
	table.week_sche td.trialdata{
		
	}
	table.week_sche td.trialdata{
		font-size:14px;
		line-height:1.5em;
	}
	.scroll_tb{
		overflow: hidden;
	}
}

.engage01{
	background-color:#FFF1F1;
}

.fee01{
	background-color: #FFF1F1;
	padding-bottom:70px;
}


.trial_data{
	text-align:left;
	padding:5px;
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
	font-size:12px;
}

table.fee01tbl{
	width:100%;
}

table.fee01tbl a{
	text-decoration: underline;
}


table.fee01tbl th{
	border:solid 4px #8B008C;
}

table.fee01tbl caption{
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
	font-size:24px;
	text-shadow:
	0 0 10px #fff,
	0 0 15px #fff;
	padding-left:10px;
}

table.fee01tbl th{
	text-align:center;
	white-space: wrap;
	background-color:#CF9BBD;
	color:#fff;
	padding-top:0;
	vertical-align: middle;
	width:45%;
}

table.fee01tbl td{
	text-align:center;
	white-space: wrap;
	background-color:#FFF1F1;
	color:#804F21;
}

table.fee01tbl, table.fee01tbl th, table.fee01tbl td{
	border:solid 1px #ccc;
	font-size:12px;
}


ul.engage_btn{
	display: flex;
}

ul.engage_btn li{
	width:50%;
}

.engage_studio{
	margin:10px;
	border:solid 2px #D29DBE;
	padding:5px;
	line-height:16px;
	background-color: #efefef;;
}
ul.engage_list{
	display: block;
	margin:10px auto;
	width:95%;
}
ul.engage_list li{
	margin-top:2px;
}

.trial_need{
	width:100%;
}

.engage_list a{
	color: #333;
	text-decoration: underline;
}

@media screen and (min-width: 769px) {
	.fee01 h2{
		width: 100%;
		max-width:600px;
	}
	.trial_data{
		font-size: 14px;
		text-align: center;
	}
	.engage_studio{
		display: block;
		max-width:600px;
		margin: 0 auto;
	}
	.trial_need, table.fee01tbl{
		max-width:600px;
		margin:0 auto;q
	}
}


.voice01{
	background-color:#fff;
	background:url("../images/voice_bg01.jpg");
	background-size:contain;
	background-position: top center;
	background-repeat:repeat;
}

.voice01 .container{
	padding:0;
}

.voice01 h2{
	position: relative;
	top:-50px;
	margin-bottom:-50px;
	width:80%;
}

.voice_box01 h3{
	background:url("../images/voice_h3_tit.png");
	background-size:40px;
	background-position: bottom center;
	background-repeat:no-repeat;
	background-size:contain;
	text-align:center;
	position: relative;
	top:-30px;
	margin-bottom: -20px;
	font-family: 'Noto Serif JP', serif;
}

.voice_data{
	width:100%;
	padding: 30px;
	background-color:rgba(2555,255,255,0.8);
	text-align:left;
	margin-bottom:30px;
}


.voice_data p{
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
	font-size:12px;

}

@media screen and (min-width: 769px) {
	.voice01 h2{
		position: relative;
		top:-60px;
		margin-bottom:-60px;
		width:80%;
		max-width: 600px;
	}	
	.voice_data{
		max-width:600px;
		display: block!important;
		margin-left:auto;
		margin-right:auto;

	}

	.voice_box01{
		display: flexs!important;
		margin:0 auto;
		align-items: center;
		justify-content: center;
	}
	.voice_box01 h3{
		padding-bottom:50px;
	}
	
	.voice_data p{
		font-size:14px;
	}
}


.voice_logo_bg{
	display:block;
	position: relative;
	top:-20px;
	left:-20px;
	margin-bottom: -20px;
	width: 150px;
}

.voice_logo_bg02{
	display:block;
	position: relative;
	top:-20px;
	left: calc(100% - 150px);
	margin-bottom: -20px;
	width: 150px;
}

.voice_logo_bg img{
	width:100%;
}

.back-to-top {
    position: fixed;
    right: 10px;
    bottom: 30px;
    color: #fff;
    width: 40px;
    height: 40px;
    z-index: 5;
    display: none;
}
.back-to-top:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: -100px;
    background-color: #F89D4A;
}
.back-to-top:after {
    content: "TOP";
    display: block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    left: 0;
    top: -100px;
}

.foot_menu01 {
    position: fixed;
    right: 0px;
    bottom: 0px;
    color: #fff;
    width: 100%;
    height: 150px;
    z-index: 2;
    display: none;
	background:url("../images/foot_menu01_bg.png");
	background-size:40px;
	background-position: bottom center;
	background-repeat:no-repeat;
	background-size:100%;
	display:flex;
}





.foot_menu01 ul{
	display:flex;
	flex-direction: row;
	margin-top: auto;
	width:80%;
	justify-content:space-around;
}

.foot_menu01 ul li{
	width:48%;
}

@media screen and (min-width: 769px) {
	.foot_menu01 {
		/*height: 300px;*/
		position: fixed;
		bottom: 0px;
		left: 50%;
		transform: translate(-50%,0%);	
		max-width:100%;
		margin:0 auto;
		background:none;
		background-color: rgba(253,205,208,0.8);
	}

	.foot_menu01 ul{
		position: relative;
		display: block;
		max-width:600px;
		margin:0 auto;
	}

	.foot_menu01bg{
		background-color:#FDCDD0;
	}

	.foot_menu01 ul{
		display: flex;
		flex-wrap: wrap;
	}
	.foot_menu01 ul li{
		padding:0;
	}

	.foot_menu01 ul li.foot_menu_tit {
		width:100%;
		position:relative;
		top:-30px;
		margin-bottom:-40px;
	}
	.foot_menu01 ul li.foot_menu_tit img{
		max-width:400px;
	}

}

.qa01{
	background-color: #FFF1F1;
	padding-top:50px;
}

.qa01 .su-spoiler-title{
	background-color:#CF9BBD!important;
}


.qa01 .su-spoiler.my-custom-spoiler .su-spoiler-title .su-spoiler-icon, .qa01 .su-spoiler.su-spoiler-closed.my-custom-spoiler .su-spoiler-title .su-spoiler-icon {
    left: 3px;
    background-color:#CF9BBD!important;
    color: #ffffff;
}

.su-spoiler-icon-plus.su-spoiler-closed .su-spoiler-icon:before {
}

.qa01.su-spoiler.my-custom-spoiler .su-spoiler-title {
	font-family: 'Noto Serif JP', serif!important;
	background-color: #33BFDB;
    color: #ffffff;
    padding-left: 0px;
    font-size: 14px;
}

.qa01 .su-spoiler-content{
	color: #804F21;
	font-family: 'Noto Serif JP', serif;
	font-size:12px;
	text-align:left;
}

.footer{
	background-color:#fff;
	background:url("../images/voice_bg01.jpg");
	background-size:cover;
	background-position: top center;
	background-repeat:no-repeat;
}

@media screen and (min-width: 481px) {
	#header .header-content {
		 padding: 45px 0;
	}
}