@charset "utf-8";
html{
	-webkit-text-size-adjust: 100%;
}
html.close {
	overflow:hidden;
	height:100%;
}
body {
	font-family: Avenir, 'Helvetica neue', Helvetica, "Noto Sans JP", sans-serif;
	font-size:15px;
	text-align:center;
	color:#222;
	line-height:2;
	font-feature-settings: "palt";
}

@media screen and (max-width:750px){
	body {
		font-size:3.4vw;
	}
}


a {
	color:#222;
	transition : opacity 0.4s;
	-webkit-transition : opacity 0.4s;
	opacity:1;
	outline:none;
}
a:hover {
	opacity: 0.7;
}

@media screen and (max-width:750px){
	a:hover {
		opacity: 1;
	}
}

img{
	max-width:100%;
	vertical-align:bottom;
}

.only_smart,
.only_smart_i,
.only_smart_f{
	display:none !important;
}

@media screen and (max-width:750px){
	.only_pc{
		display:none !important;
	}

	.only_smart{
		display:block !important;
	}
	.only_smart_i{
		display:inline-block !important;
	}
	.only_smart_f{
		display: -webkit-flex !important;
		display: flex !important;
	}
}

#wrapper{
	padding-top:94px;
}
@media screen and (max-width:750px){
	#wrapper{
		padding-top:60px;
	}
}
.inner{
	max-width:1200px;
	width:94%;
	margin:auto;
}
@media screen and (max-width:750px){
	.inner{
		width:90%;
	}
}



/* 色関係 */
.blue{
	color:#009aea;
}
.bg_blue{
	color:#fff;
	background-color:#009aea;
}
.bg_black{
	color:#fff;
	background-color:#222;
}
.bg_yellow{
	background-color:#fff45c;
}


/* 書式 */
.text_left{
	text-align:left !important;
}
.text_right{
	text-align:right !important;
}
.bold{
	font-weight:bold;
}
.black{
	font-weight:900;
}
.thin{
	font-weight:100;
}
.block{
	display:block;
}


/* ボタン */
.btn{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-direction: column;
	flex-direction: column;
	padding:0 2em;
	height:3.2em;
	line-height:1.3;
	font-weight:bold;
	letter-spacing:0.06em;
	text-indent:0.06em;
	border-radius:100px;
	box-shadow:0 0 15px #dedede;
}


/* 吹き出し */
.fuki{
	line-height:2.2;
	margin-bottom:1.2em;
	padding:0 1.5em;
	display:inline-block;
	font-size:14px;
	position:relative;
	border-radius:100px;
	letter-spacing:0.08em;
	text-indent:0.08em;
}
.fuki:after{
	content:'';
	width:0;
	height:0;
	border-style:solid;
	border-width: 0.6em 0.8em 0 0.8em;
	border-color: #222 transparent transparent transparent;
	position:absolute;
	top:calc(100% - 1px);
	left:50%;
	transform:translateX(-50%);
}

@media screen and (max-width:750px){
	.fuki{
		font-size:2.8vw;
	}
}


/* header */
header{
	width:100%;
	background-color:#fff;
	box-shadow:0 0 5px rgba(0,0,0,0.5);
	position:fixed;
	top:0;
	left:0;
	z-index:100;
}
header .inner{
	max-width:96%;
	width:96%;
	height:94px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
header .inner .head_logo{
	font-size:11px;
	font-weight:bold;
	text-align:left;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
header .inner .head_logo img{
	width:113px;
	margin-right:2em;
}
header .inner .head_logo span{
	line-height:1.8;
	display:inline-block;
	letter-spacing:0.04em;
}
header .inner .head_nav ul{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
header .inner .head_nav ul li{
	font-size:13px;
	font-weight:bold;
	letter-spacing:0.04em;
}
header .inner .head_nav ul li:nth-child(n+2){
	margin-left:2.5em;
	margin-left:2em;
}
header .inner .head_nav ul li:last-child{
	margin-left:1em;
}
header .inner .head_nav ul li .btn{
	width:11em;
	padding:0;
}

@media screen and (max-width:1280px){
	header .inner .head_logo{
		font-size:11px;
		font-weight:bold;
		text-align:left;
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
	}
	header .inner .head_logo img{
		width:113px;
		margin-right:1em;
	}
	header .inner .head_nav ul li:nth-child(n+2){
		margin-left:1.2em;
	}
}

@media screen and (max-width:1180px){
	header .inner .head_nav{
		width:100%;
		height:calc(100vh - 94px);
		padding-left:calc(100% - 240px);
		display: block;
		background-color:rgba(0,0,0,0.6);
		border-top:1px solid #ccc;
		position:fixed;
		top:94px;
		left:0;
		z-index:100;
		display:none;
	}
	header .inner .head_nav ul{
		width:240px;
		height:calc(100vh - 94px);
		display:block;
		background-color:#fff;
	}
	header .inner .head_nav ul li{
		font-size:16px;
		text-align:left;
		border-bottom:1px dotted #ccc;
	}
	header .inner .head_nav ul li:nth-child(n+2){
		margin-left:0;
	}
	header .inner .head_nav ul li:nth-last-child(-n+2){
		margin-top:1em;
		border-bottom:none;
		text-align:center;
	}
	header .inner .head_nav ul li a{
		display:block;
		line-height:2.5;
		padding-left:1em;
		text-align:left;
	}
	header .inner .head_nav ul li:nth-last-child(-n+2) a{
		width:200px;
		line-height:3;
		display:inline-block;
		text-align:center;
	}
}

@media screen and (max-width:750px){
	header{
		background-color:#fff;
		box-shadow:none;
		position:absolute;
	}
	header .inner{
		max-width:100%;
		width:100%;
		height:60px;
		padding:0 10px;
	}
	header .inner .head_logo{
		font-size:8px;
	}
	header .inner .head_logo img{
		width:80px;
		margin-right:1.5em;
	}
	header .inner .head_nav{
		width:100%;
		height:100vh;
		border-top:1px solid #ccc;
		position:absolute;
		top:60px;
	}
	header .inner .head_nav ul{
		height:100vh;
	}
}


/* #btnmenu */
#btnmenu{
	width:40px;
	height:40px;
	margin:0;
	padding:0;
	position:relative;
	z-index:101;
	cursor:pointer;
	display:none;
}
#btnmenu span{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 28px;
	height: 4px;
	border-radius:0px;
	margin: -1px 0 0 -20px;
	background: #222;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
#btnmenu span:before,
#btnmenu span:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 40px;
	height: 4px;
	background: #222;
	border-radius:0px;
	-webkit-transition: .3s;
	transition: .3s;
}

#btnmenu span:before{
	margin-top: -15px;
}

#btnmenu span:after{
	width:18px;
	margin-top: 11px;
}
#btnmenu.close span{
	width:40px;
	height:40px;
	margin-top:-25px;
	margin-left:-25px;
	box-shadow:none;
	background-color:transparent;
	border-radius:0;
}

#btnmenu.close span:before,
#btnmenu.close span:after{
	margin-top: 0;
}

#btnmenu.close span:before{
	width: 40px;
	height: 4px;
	margin: -1px 0 0 5px;
	border-radius:0px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#btnmenu.close span:after{
	width: 40px;
	height: 4px;
	margin: -1px 0 0 5px;
	border-radius:0px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

@media screen and (max-width:1180px){
	#btnmenu{
		display:block;
	}
}

@media screen and (max-width:750px){
	#btnmenu{
		width:30px;
		height:30px;
	}
	#btnmenu span{
		width: 20px;
		height: 3px;
		border-radius:0px;
		margin: -1px 0 0 -15px;
	}
	#btnmenu span:before,
	#btnmenu span:after{
		width: 30px;
		height: 3px;
	}

	#btnmenu span:before{
		margin-top: -12px;
	}

	#btnmenu span:after{
		width:13px;
		margin-top: 8px;
	}
	#btnmenu.close span{
		width:30px;
		height:30px;
		margin-top:-17px;
		margin-left:-17px;
		box-shadow:none;
		background-color:transparent;
		border-radius:0;
	}

	#btnmenu.close span:before,
	#btnmenu.close span:after{
		margin-top: 0;
	}

	#btnmenu.close span:before{
		width: 30px;
		height: 3px;
		margin: -1px 0 0 5px;
		border-radius:0px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#btnmenu.close span:after{
		width: 30px;
		height: 3px;
		margin: -1px 0 0 5px;
		border-radius:0px;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}



/* article */
article{
	background:#fdfefe url(../img/bg.webp)repeat-y center top;
	background-size:100% auto;
}

@media screen and (max-width:750px){
	article{
		background:#fdfefe url(../img/bg_s.webp)repeat-y center top;
		background-size:100% auto;
	}
}



/* #mv */
#mv{
	padding:20px 0 50px;
}
#mv .inner{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
#mv .inner section{
	width:52%;
	text-align:left;
}
#mv .inner section h1{
	white-space:nowrap;
}
#mv .inner section h1 .fuki{
	font-size:16px;
}
#mv .inner section h1 .small{
	display:block;
	font-size:42px;
	letter-spacing:0.1em;
}
#mv .inner section h1 .large{
	margin:0 0.05em;
	line-height:1;
	font-size:76px;
	vertical-align:-0.05em;
}
#mv .inner section h1 .xlarge{
	line-height:1.3;
	font-size:58px;
	letter-spacing:0.1em;
}
#mv .inner section h1 .xlarge span{
	font-size:52px;
}
#mv .inner section h1 + p{
	letter-spacing:0.08em;
	font-size:25px;
	font-weight:bold;
}
#mv .inner section .point{
	margin-top:1.5em;
	display: -webkit-flex;
	display: flex;
}
#mv .inner section .point li{
	width:24%;
	margin-right:1%;
}
#mv .inner section .btn_list{
	display: -webkit-flex;
	display: flex;
}
#mv .inner section .btn_list .btn{
	width:16em;
	margin-top:2.5em;
	margin-right:1em;
	padding:0 1em 0 0;
	font-size:18px;
	text-align:center;
	position:relative;
}
#mv .inner section .btn_list .btn img{
	width:0.9em;
	position:absolute;
	right:1em;
	top:50%;
	transform:translateY(-50%);
}
#mv .inner section .btn_list .btn .small{
	display:block;
	font-size:10px;
}
#mv .inner figure{
	width:46%;
}

@media screen and (max-width:1240px){
	#mv .inner section h1 .fuki{
		font-size:1.3vw;
	}
	#mv .inner section h1 .small{
		font-size:3.4vw;
	}
	#mv .inner section h1 .large{
		font-size:6.1vw;
	}
	#mv .inner section h1 .xlarge{
		font-size:4.7vw;
	}
	#mv .inner section h1 .xlarge span{
		font-size:4.2vw;
	}
	#mv .inner section h1 + p{
		font-size:2.2vw;
	}
	#mv .inner section .btn_list .btn{
		font-size:1.4vw;
	}
	#mv .inner section .btn_list .btn .small{
		font-size:0.8vw;
	}
}

@media screen and (max-width:750px){
	#mv{
		padding:7% 0 16%;
	}
	#mv .inner{
		display: block;
	}
	#mv .inner section{
		width:auto;
		text-align:center;
	}
	#mv .inner section h1 .fuki{
		font-size:2.8vw;
	}
	#mv .inner section h1 .small{
		font-size:6.6vw;
		letter-spacing:0.1em;
		text-indent:0.1em;
	}
	#mv .inner section h1 .large{
		font-size:12.1vw;
		vertical-align:-0.05em;
	}
	#mv .inner section h1 .xlarge{
		font-size:10.1vw;
		letter-spacing:0.1em;
		text-indent:0.1em;
	}
	#mv .inner section h1 .xlarge span{
		display:block;
		font-size:9.1vw;
	}
	#mv .inner section h1 + p{
		margin:0.5em 0;
		font-size:4.1vw;
		letter-spacing:0.06em;
		text-indent:0.06em;
	}
	#mv .inner section .point{
		margin:-16% 0 1em;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#mv .inner section .point li{
		width:40%;
		margin:1% 0;
	}
	
	#mv .inner section .btn_list{
		display: block;
	}
	#mv .inner section .btn_list .btn{
		width:auto;
		margin:0.8em 1em 0;
		padding:0;
		font-size:4.4vw;
	}
	#mv .inner section .btn_list .btn .small{
		font-size:2.8vw;
	}
}


/* .cont */
.cont{
	padding:90px 0;
}
.cont .tit{
	line-height:1.3;
	font-size:38px;
	letter-spacing:0.08em;
	text-indent:0.08em;
}
.cont .tit + .lead{
	margin-top:50px;
	font-weight:bold;
}

@media screen and (max-width:750px){
	.cont{
		padding:12% 0;
	}
	.cont .tit{
		font-size:6.6vw;
	}
	.cont .tit + .lead{
		margin-top:3%;
	}
}

/* .cta */
.cta{
	max-width:1200px;
	width:94%;
	margin:auto;
	padding:50px 0 90px;
	color:#fff;
	background:#393939 url(../img/cta_logo.png)no-repeat left 50px bottom 30px;
	background-size:360px auto;
	border-radius:0.3em;
	position:relative;
}
.cta h2{
	line-height:1.5;
	font-size:27px;
}
.cta h2 .large{
	font-size:38px;
	color:#fff45c;
}
.cta dl{
	margin-top:1em;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.cta dl div{
	margin:0 1em;
}
.cta dl dd .btn{
	width:14em;
	margin-top:0.2em;
	padding-right:2.5em;
	font-size:18px;
	box-shadow:none;
	position:relative;
}
.cta dl dd .btn img{
	width:0.9em;
	position:absolute;
	right:1.5em;
	top:50%;
	transform:translateY(-50%);
}

@media screen and (max-width:980px){
	.cta{
		padding:5% 0 9%;
	}
	.cta h2 .smart_large{
		display:block;
	}
}

@media screen and (max-width:750px){
	.cta{
		width:90%;
		margin:5% auto;
		padding:9% 0 15%;
		background:#393939 url(../img/cta_logo.png)no-repeat center 35%;
		background-size:90% auto;
		border-radius:0.1em;
	}
	.cta h2{
		font-size:5.6vw;
	}
	.cta h2 .large{
		font-size:7.8vw;
	}
	.cta h2 .smart_large{
		font-size:7.6vw;
	}
	.cta dl{
		margin-top:5%;
	}
	.cta dl{
		display: block;
	}
	.cta dl div{
		margin:1em 5%;
	}
	.cta dl dd .btn{
		width:auto;
		padding:0;
		font-size:4.4vw;
	}
}


/* .scheduling */
.scheduling_wrap{
	margin-top:40px;
	background:#fff;
	border-radius:0.3em;
	box-shadow:0 0 20px rgba(192,204,213,0.4);
	overflow:hidden;
}
.scheduling_wrap iframe{
	display:block;
}

@media screen and (max-width:750px){
	.scheduling_wrap{
		margin-top:5%;
	}
	.scheduling_wrap iframe{
		height:800px;
	}
}


/* .cta2 */
.cta2{
	background:url(../img/cta2_bg.png)no-repeat center center;
	background-size:cover;
	border-radius:0.3em;
	box-shadow:0 0 20px rgba(192,204,213,0.4);
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
.cta2 > figure{
	width:280px;
	transform:translateY(-5%);
}
.cta2 section{
	width:450px;
	margin-left:50px;
}
.cta2 section h2{
	line-height:1.5;
	color:#fff;
	text-align:left;
	letter-spacing:0.08em;
}
.cta2 section h2 .small{
	display:block;
	font-size:30px;
}
.cta2 section h2 .large{
	font-size:38px;
}
.cta2 section h2 .middle{
	font-size:34px;
}
.cta2 section .btn{
	width:16em;
	margin-top:1.5em;
	padding:0 1em 0 0;
	font-size:18px;
	text-align:center;
	position:relative;
	box-shadow:none;
}
.cta2 section .btn img{
	width:0.9em;
	position:absolute;
	right:1em;
	top:50%;
	transform:translateY(-50%);
}

@media screen and (max-width:1024px){
	.cta2 > figure{
		width:28%;
	}
	.cta2 section{
		width:50%;
		margin-left:5%;
	}
	.cta2 section h2 .small{
		font-size:3vw;
	}
	.cta2 section h2 .large{
		font-size:3.8vw;
	}
	.cta2 section h2 .middle{
		font-size:3.4vw;
	}
}

@media screen and (max-width:750px){
	.cta2{
		padding:9% 0;
		background:url(../img/cta2_bg_s.png)no-repeat center center;
		background-size:cover;
		box-shadow:0 0 10px rgba(192,204,213,0.4);
		display: block;
	}
	.cta2 section{
		width:auto;
		margin-left:0;
	}
	.cta2 section h2{
		text-align:center;
		letter-spacing:0.08em;
		text-indent:0.08em;
	}
	.cta2 section h2 .small{
		font-size:5.2vw;
	}
	.cta2 section h2 .large{
		font-size:6.5vw;
	}
	.cta2 section h2 .middle{
		font-size:5.9vw;
	}
	.cta2 section figure{
		width:46%;
		margin:1em auto 0;
	}
	.cta2 section .btn{
		width:16em;
		margin:1em auto 0;
		padding:0;
		font-size:4.4vw;
	}
}


/* #cont10 */
#cont10 {
}
#cont10 h2 .small {
	font-size:25px;
	letter-spacing:0.08em;
	text-indent:0.08em;
}
#cont10 .example {
	max-width:1100px;
	margin-top:70px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#cont10 .example > div{
	width:48%;
	padding:0 3% 3%;
	background-color:#fff;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
	border-radius:0.3em;
}
#cont10 .example > div dt{
	width:20em;
	line-height:3;
	padding:0;
	font-size:19px;
	font-weight:bold;
	letter-spacing:0.06em;
	text-indent:0.06em;
	transform:translateY(-50%);
}
#cont10 .example > div dt.fuki:after{
	border-color: #009aea transparent transparent transparent;
}
#cont10 .example > div dd figure{
	max-width:380px;
	margin:auto;
}

@media screen and (max-width:1024px){
	#cont10 .example > div dt{
		font-size:1.9vw;
	}
}

@media screen and (max-width:750px){
	#cont10 h2 .small {
		font-size:4.4vw;
	}
	#cont10 .example {
		margin-top:0;
		display: block;
	}
	#cont10 .example > div{
		width:auto;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
		margin-top:12%;
		padding-bottom:9%;
	}
	#cont10 .example > div dt{
		width:19em;
		font-size:3.3vw;
	}
	#cont10 .example > div dd figure{
		max-width:100%;
		width:75%;
	}
}


/* #cont11 */
#cont11 {
	padding:0;
}
#cont11 h2 .small {
	font-size:25px;
	letter-spacing:0.08em;
	text-indent:0.08em;
}
#cont11 .trouble {
	max-width:900px;
	margin-top:50px;
	padding:2.4% 5%;
	background-color:#fff;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
	border-radius:0.3em;
}
#cont11 .trouble li {
	line-height:1.6;
	margin:1.2em 0;
	padding-left:2em;
	font-size:17px;
	font-weight:bold;
	text-align:left;
	letter-spacing:0.04em;
	position:relative;
}
#cont11 .trouble li:before {
	content:'－';
	display:block;
	width:1.4em;
	height:1.4em;
	line-height:1.5;
	color:#fff;
	text-align:center;
	background-color:#e48383;
	border-radius:50%;
	position:absolute;
	left:0;
	letter-spacing:0;
}
#cont11 .bottom {
	font-size:28px;
	font-weight:bold;
	letter-spacing:0.04em;
	text-indent:0.04em;
}
#cont11 .bottom:before{
	content:'';
	display:block;
	width:0;
	height:0;
	margin:50px auto 30px;
	border-style:solid;
	border-width: 0.7em 0.7em 0 0.7em;
	border-color: #c0ccd5 transparent transparent transparent;
}

@media screen and (max-width:1024px){
	#cont11 .bottom .blue {
		display:block;
	}
}

@media screen and (max-width:750px){
	#cont11 h2 .small {
		font-size:4.4vw;
	}
	#cont11 .trouble {
		margin-top:5%;
		padding:2.4% 5%;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
	}
	#cont11 .trouble li {
		font-size:3.3vw;
	}
	#cont11 .bottom {
		line-height:1.6;
		font-size:4.8vw;
	}
	#cont11 .bottom:before{
		margin:7% auto 5%;
	}
}


/* #cont1 */
#cont1 {
}
#cont1 .problem{
	margin-top:50px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#cont1 .problem li{
	width:23%;
	margin:0.8% ;
	padding:0.8em 0.3em;
	aspect-ratio:285 / 200;
	background-color:#fff;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
}
#cont1 .problem li img{
	width:72px;
}
#cont1 .problem li p{
	flex:1;
	line-height:1.8;
	padding:0 1em;
	text-align:left;
	letter-spacing:0.04em;
}
#cont1 .bottom{
	font-size:28px;
	font-weight:bold;
}
#cont1 .bottom:before{
	content:'';
	display:block;
	width:0;
	height:0;
	margin:50px auto 30px;
	border-style:solid;
	border-width: 0.7em 0.7em 0 0.7em;
	border-color: #c0ccd5 transparent transparent transparent;
}
#cont1 .bottom .large{
	font-size:34px;
}
#cont1 .bottom .line{
	border-bottom:3px solid;
}

@media screen and (max-width:1240px){
	#cont1 .problem li img{
		width:25%;
	}
	#cont1 .problem li p{
		padding-right:0;
	}
}
@media screen and (max-width:980px){
	#cont1 .problem{
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	#cont1 .problem li{
		width:49%;
		aspect-ratio:auto;
		margin-left:0;
		margin-right:0;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: center;
		align-items: center;
	}
	#cont1 .problem li img{
		width:20%;
	}
	#cont1 .problem li p{
		flex:1;
	}
	#cont1 .bottom{
		line-height:1.8;
	}
	#cont1 .bottom .blue + .only_smart{
		display:block !important;
	}
}

@media screen and (max-width:750px){
	#cont1 .problem{
		margin-top:5%;
		display: block;
	}
	#cont1 .problem li{
		width:auto;
		margin-top:3%;
		padding:0 1em;
		aspect-ratio:670 / 145;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
	}
	#cont1 .problem li img{
		width:16%;
	}
	#cont1 .problem li p{
		line-height:1.5;
		padding:0 0 0 1em;
	}
	#cont1 .bottom{
		font-size:5vw;
	}
	#cont1 .bottom:before{
		margin:7% auto 5%;
	}
	#cont1 .bottom .blue{
		font-size:6vw;
		line-height:1.3;
	}
}


/* #cont2 */
#cont2{
}
#cont2 .tit .large{
	font-size:53px;
}
#cont2 .feature{
	max-width:1100px;
	margin-top:50px;
	padding:50px 90px;
	background-color:#fff;
	border-radius:1em;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
}
#cont2 .feature li{
	padding:20px 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
#cont2 .feature li:nth-child(even){
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
#cont2 .feature li figure{
	width:43%;
}
#cont2 .feature li section{
	width:52%;
	text-align:left;
}
#cont2 .feature li section h3{
	line-height:1.5;
	font-size:24px;
	letter-spacing:0.08em;
}
#cont2 .feature li section h3 span{
	line-height:2;
	display:block;
	width:5em;
	margin-bottom:1em;
	font-size:15px;
	text-align:center;
	letter-spacing:0.04em;
	text-indent:0.04em;
	border-radius:100px;
}
#cont2 .feature li section p{
	margin-top:0.5em;
	font-size:16px;
	letter-spacing:0.04em;
}
#cont2 .bottom{
	font-size:28px;
	font-weight:bold;
}
#cont2 .bottom:before{
	content:'';
	display:block;
	width:0;
	height:0;
	margin:50px auto 30px;
	border-style:solid;
	border-width: 0.7em 0.7em 0 0.7em;
	border-color: #c0ccd5 transparent transparent transparent;
}
#cont2 .bottom .small{
	display:block;
	font-size:15px;
}

@media screen and (max-width:1140px){
	#cont2 .feature{
		padding:3% 7%;
	}
	#cont2 .feature li{
		padding:3% 0;
	}
	#cont2 .feature li section h3{
		font-size:2.1vw;
	}
	#cont2 .bottom{
		line-height:1.5;
	}
	#cont2 .bottom .small{
		line-height:1.8;
	}
	#cont2 .bottom .only_smart{
		display:block !important;
	}
}

@media screen and (max-width:750px){
	#cont2 .tit .large{
		font-size:6.6vw;
	}
	#cont2 .feature{
		margin-top:5%;
		padding:2% 3%;
		border-radius:0.3em;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
	}
	#cont2 .feature li{
		padding:4% 0;
		display: block;
	}
	#cont2 .feature li figure{
		width:auto;
	}
	#cont2 .feature li section{
		width:auto;
		margin-top:3%;
	}
	#cont2 .feature li section h3{
		font-size:4.6vw;
	}
	#cont2 .feature li section h3 span{
		font-size:3vw;
	}
	#cont2 .feature li section p{
		font-size:3.4vw;
	}
	#cont2 .bottom{
		font-size:5vw;
	}
	#cont2 .bottom:before{
		margin:7% auto 5%;
	}
	#cont2 .bottom .small{
		font-size:3.3vw;
	}
}


/* #cont3 */
#cont3{
}
#cont3 .course{
	margin-top:50px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#cont3 .course > div{
	width:31.5%;
	padding:30px 30px 90px;
	background-color:#fff;
	border-radius:0.3em;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
}
#cont3 .course > div dt{
	line-height:1;
	font-size:36px;
	font-weight:bold;
	letter-spacing:0.04em;
	text-indent:0.04em;
}
#cont3 .course > div dd{
	margin-top:2em;
	padding-left:0.6em;
	text-indent:-0.6em;
	text-align:left;
	letter-spacing:0.04em;
}


@media screen and (max-width:980px){
	#cont3 .course{
		max-width:600px;
		display: block;
	}
	#cont3 .course > div{
		width:auto;
		margin-top:5%;
		padding:3% 3% 5%;
	}
}

@media screen and (max-width:750px){
	#cont3 .course{
		margin-top:5%;
	}
	#cont3 .course > div{
		margin-top:7%;
		padding:9% 5%;
		border-radius:0.1em;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
	}
	#cont3 .course > div dt{
		font-size:6.6vw;
	}
	#cont3 .course > div dd{
		margin-top:1.5em;
		line-height:1.8;
	}
}


/* #cont4 */
#cont4{
}
#cont4 .month{
	max-width:1100px;
	margin-top:70px;
	display: -webkit-flex;
	display: flex;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
}
#cont4 .month > div{
	width:50%;
	padding:0 3% 3%;
}
#cont4 .month > div:first-child{
	background-color:#f4f6f8;
	border-radius:0.5em 0 0 0.5em;
}
#cont4 .month > div:last-child{
	background-color:#d9e6ee;
	border-radius: 0 0.5em 0.5em 0;
}
#cont4 .month > div dt{
	width:9em;
	line-height:2.8;
	margin-bottom:0;
	padding:0;
	font-size:17px;
	font-weight:bold;
	transform:translateY(-50%);
}
#cont4 .month > div dt.fuki:after{
	border-color: #009aea transparent transparent transparent;
}
#cont4 .month > div dd{
	margin-top:1em;
	font-size:16px;
	text-align:left;
}
#cont4 .month > div dd p{
	line-height:1.5;
	padding:0.8em 2em;
	background-color:#fff;
	font-weight:bold;
	border-radius:0.3em;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
}
#cont4 .month > div dd ul{
	padding:1em 2em 0;
	font-weight:500;
}
#cont4 .month > div dd ul li{
	line-height:1.5;
	margin:0.15em 0;
	padding-left:0.5em;
	text-indent:-0.5em;
}
#cont4 .month > div dd img{
	display:block;
	width:80%;
	margin:1em auto 0;
}
#cont4 .option{
	max-width:1100px;
	margin-top:50px;
	padding:40px 50px 50px;
	background-color:#fff;
	border-radius:0.5em;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
}
#cont4 .option h3{
	font-size:28px;
}
#cont4 .option .option_list{
	padding:0 40px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#cont4 .option .option_list > li{
	width:46%;
	margin-top:4%;
}
#cont4 .option .option_list > li h4{
	line-height:2.8;
	font-size:16px;
	background-color:#eee;
	border-radius:0.3em;
}
#cont4 .option .option_list > li ul{
	margin-top:1em;
}
#cont4 .option .option_list > li ul li{
	padding-left:1em;
	text-indent:-0.5em;
	font-weight:bold;
	text-align:left;
}

@media screen and (max-width:1140px){
	#cont4 .month > div:last-child{
		background-color:#d9e6ee;
	}
	#cont4 .month > div dd p{
		padding:0.8em 1em;
	}
	#cont4 .month > div dd ul{
		padding:1em 1em 0;
	}
	#cont4 .option{
		padding:4% 1.5% 5%;
	}
	#cont4 .option .option_list{
		padding:0;
	}
	#cont4 .option .option_list > li{
		width:48%;
	}
}

@media screen and (max-width:750px){
	#cont4 .month{
		margin-top:9%;
		display: block;
		box-shadow:none;
	}
	#cont4 .month > div{
		width:auto;
		margin-top:9%;
		padding:0 5% 9%;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
	}
	#cont4 .month > div:first-child,
	#cont4 .month > div:last-child{
		border-radius:0.3em;
	}
	#cont4 .month > div dt{
		font-size:3.2vw;
	}
	#cont4 .month > div dd{
		font-size:3.1vw;
	}
	#cont4 .month > div dd p{
		padding:0.8em 1.5em;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
	}
	#cont4 .month > div dd ul{
		padding:1em 1.5em 0;
	}
	
	#cont4 .option{
		margin-top:9%;
		padding:4% 5% 12%;
		border-radius:0.3em;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
	}
	#cont4 .option h3{
		font-size:5.3vw;
	}
	#cont4 .option .option_list{
		padding:0;
		display: block;
	}
	#cont4 .option .option_list > li{
		width:auto;
		margin-top:5%;
	}
	#cont4 .option .option_list > li h4{
		line-height:2.8;
		font-size:3.2vw;
		background-color:#eee;
		border-radius:0.3em;
	}
	#cont4 .option .option_list > li ul{
		margin-top:1em;
	}
	#cont4 .option .option_list > li ul li{
		font-size:3.1vw;
	}
}


/* .scroll-hint-icon */
.scroll-hint-icon{
	padding-bottom:70px !important;
}

/* #cont5 */
#cont5{
	overflow:hidden;
}
#cont5 .tbl_wrapper{
	max-width:900px;
	margin-top:50px;
	overflow:visible !important;
}
#cont5 .tbl_wrapper .scroll-hint-icon-wrap{
	display:none;
}
#cont5 .tbl_wrapper table{
	width:100%;
	border-collapse: separate;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
}
#cont5 .tbl_wrapper table tr th,
#cont5 .tbl_wrapper table tr td{
	line-height:1.5;
	padding:1.5em;
	border-right:1px solid #ddd;
	border-bottom:1px solid #ddd;
	text-align:left;
	letter-spacing:0.04em;
	white-space:nowrap;
}
#cont5 .tbl_wrapper table tr th:last-child,
#cont5 .tbl_wrapper table tr td:last-of-type{
	border-right:none;
}
#cont5 .tbl_wrapper table tr:last-child th,
#cont5 .tbl_wrapper table tr:last-child td{
	border-bottom:none;
}
#cont5 .tbl_wrapper table tr th{
	background-color:#ebf2f5;
}
#cont5 .tbl_wrapper table tr:first-child th{
	padding:0;
	line-height:3.5;
	background-color:#009aea;
	text-align:center;
	text-indent:0.04em;
}
#cont5 .tbl_wrapper table tr:first-child th:first-child{
	width:35%;
	border-radius:0.3em 0 0 0;
}
#cont5 .tbl_wrapper table tr:first-child th:last-child{
	width:36%;
	border-radius:0 0.3em 0 0;
}
#cont5 .tbl_wrapper table tr:last-child th:first-child{
	border-radius:0 0 0 0.3em ;
}
#cont5 .tbl_wrapper table tr:last-child td:last-of-type{
	border-radius:0 0 0.6em 0;
}

#cont5 .tbl_wrapper table td {
	background-color:#fff;
	position:relative;
}
#cont5 .tbl_wrapper table td .large{
	display:inline-block;
	padding-left:1em;
	font-size:20px;
	letter-spacing:0.04em;
	transform-origin:right center;
	transform:scaleX(1.2);
}
#cont5 .tbl_wrapper table td.small{
	font-size:13px;
}
#cont5 .tbl_wrapper table td .s_small{
	font-size:11px;
	font-weight:normal;
}
#cont5 .tbl_wrapper table td img{
	width:215px;
	position:absolute;
	left:100%;
	top:50%;
	transform:translate(-30%,-50%);
	z-index:1;
}

#cont5 .tbl_wrapper .tbl2 tr:first-child th{
	line-height:2.6;
}
#cont5 .tbl_wrapper .tbl2 tr:first-child th:first-child{
	width:30%;
}
#cont5 .tbl_wrapper .tbl2 tr th.bg_blue2{
	line-height:3;
	padding:0;
	text-align:center;
	color:#fff;
	background-color:#45b4ed;
}

#cont5 .caution{
	max-width:900px;
	margin-top:1em;
}
#cont5 .caution li{
	padding-left:1.8em;
	text-indent:-1.8em;
	font-size:11px;
	text-align:left;
}

#cont5 section{
	margin-top:90px;
}
#cont5 section h3 .fuki{
	font-size:21px;
}
#cont5 section h3 .blue{
	font-size:25px;
}
#cont5 section h3 .blue .large{
	line-height:1;
	font-size:35px;
}
#cont5 section .caution{
	max-width:900px;
}
#cont5 section .caution li{
	padding-left:1em;
	text-indent:-1em;
}

@media screen and (max-width:1240px){
	#cont5 .tbl_wrapper table td img{
		width:150px;
		left:auto;
		right:0;
		transform:translate(0,-50%);
	}
}

@media screen and (max-width:900px){
	#cont5 .tbl_wrapper{
		overflow:auto !important;
		padding-bottom:3%;
	}

	#cont5 .tbl_wrapper .scroll-hint-icon-wrap{
		display:block;
	}
}

@media screen and (max-width:750px){
	#cont5 .tbl_wrapper{
		width:100%;
		margin-top:5%;
		padding:0 9% 3% 5%;
	}
	#cont5 .tbl_wrapper table{
		width:auto;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
	}
	#cont5 .tbl_wrapper table th,
	#cont5 .tbl_wrapper table td{
		white-space:nowrap;
	}
	#cont5 .tbl_wrapper table tr:first-child th{
		width:auto;
	}
	#cont5 .tbl_wrapper table tr:first-child th:first-child{
		width:auto;
	}
	#cont5 .tbl_wrapper table tr:first-child th:last-child{
		width:auto;
	}
	#cont5 .tbl_wrapper table td .large{
		font-size:4vw;
	}
	#cont5 .tbl_wrapper table td.small{
		font-size:3vw;
	}
	#cont5 .tbl_wrapper table td .s_small{
		font-size:2.7vw;
	}
	#cont5 .tbl_wrapper table td img{
		width:32vw;
	}
	#cont5 .caution li{
		font-size:2.6vw;
	}
	
	#cont5 section{
		margin-top:12%;
	}
	#cont5 section h3 .fuki{
		font-size:4vw;
	}
	#cont5 section h3 .blue{
		line-height:1.5;
		font-size:4.6vw;
	}
	#cont5 section h3 .blue .large{
		font-size:6.4vw;
	}
}


/* #cont6 */
#cont6{
	margin-top:-80px;
	padding-top:180px;
}
#cont6 figure{
	margin-top:70px;
}
#cont6 figure figcaption{
	width:285px;
	height:2.4em;
	line-height:2.5;
	margin:50px auto 0;
	font-size:17px;
	font-weight:bold;
	letter-spacing:0.04em;
	text-indent:0.04em;
	background-color:#fff;
	border-radius:100px;
}
#cont6 .profile{
	max-width:900px;
	margin-top:50px;
}
#cont6 .profile li{
	padding-left:0.7em;
	text-indent:-0.7em;
	text-align:left;
	letter-spacing:0.04em;
}

@media screen and (max-width:750px){
	#cont6{
		margin-top:-20%;
		padding-top:30%;
	}
	#cont6 figure{
		margin-top:7%;
	}
	#cont6 figure img{
		width:42%;
	}
	#cont6 figure figcaption{
		width:50%;
	height:2em;
	line-height:2.1;
		margin:5% auto 0;
		font-size:4vw;
	}
	#cont6 .profile{
		margin-top:5%;
	}
}


/* #cont7 */
#cont7{
}
#cont7 .tbl_wrapper{
	max-width:920px;
	margin-top:30px;
	padding-top:50px;
}
#cont7 .tbl_wrapper table{
	width:100%;
	border-collapse: separate;
	border-spacing:8px 0;
}
#cont7 .tbl_wrapper table th,
#cont7 .tbl_wrapper table td{
	width:18.5%;
	height:3.2em;
	padding:0 1em;
	line-height:1.3;
	font-size:14px;
	font-weight:bold;
	border-radius:0.5em;
	white-space:nowrap;
}
#cont7 .tbl_wrapper table th:first-child{
	text-align:left;
}
#cont7 .tbl_wrapper table tr:first-child th:nth-child(2){
	width:26%;
	padding:0;
}
#cont7 .tbl_wrapper table tr:nth-child(even) th,
#cont7 .tbl_wrapper table tr:nth-child(even) td{
	background-color:#fff;
}
#cont7 .tbl_wrapper table th{
	position:relative;
}
#cont7 .tbl_wrapper table tr:last-child th,
#cont7 .tbl_wrapper table tr:last-child td{
	height:4em;
}

#cont7 .tbl_wrapper table th dl{
	width:100%;
	position:absolute;
	bottom:0;
	background-color:#fafafa;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
	border-radius:0.5em;
	overflow:hidden;
}
#cont7 .tbl_wrapper table th dl dt{
	padding:5% 1em 3%;
	border-top:7px solid #009aea;
}
#cont7 .tbl_wrapper table th dl dt img{
	width:45%;
}
#cont7 .tbl_wrapper table th dl dd{
	width:100%;
	line-height:3.2em;
	padding:0 1em;
	font-size:14px;
}
#cont7 .tbl_wrapper table th dl dd:nth-of-type(odd){
	background-color:#fff;
}
#cont7 .tbl_wrapper table th dl dd:last-of-type{
	line-height:4em;
}

@media screen and (max-width:900px){
	#cont7 .tbl_wrapper{
		padding-top:5%;
		padding-bottom:3%;
		overflow:auto !important;
	}
	#cont7 .tbl_wrapper table{
		width:120%;
		table-layout: fixed;
	}
}

@media screen and (max-width:750px){
	#cont7 .tbl_wrapper{
		width:100%;
		padding-left:5%;
		padding-right:5%;
	}
	#cont7 .tbl_wrapper table{
		width:220%;
	}
	#cont7 .tbl_wrapper table th,
	#cont7 .tbl_wrapper table td,
	#cont7 .tbl_wrapper table th dl dd{
		width:auto;
		font-size:3.2vw;
	}
}


/* #cont8 */
#cont8{
}
#cont8 .example{
	margin-top:70px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#cont8 .example li{
	width:31.5%;
	padding-bottom:100px;
	background-color:#fff;
	border-radius:0.5em;
	box-shadow:0 0 20px rgba(192,204,214,0.5);
	position:relative;
	overflow:hidden;
}
#cont8 .example li section{
	padding:5% 9% 0;
}
#cont8 .example li section h3{
	min-height:3em;
	line-height:1.5;
	font-size:18px;
	text-align:left;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
#cont8 .example li section p{
	margin-top:1em;
	text-align:left;
}
#cont8 .example li .btn{
	width:80%;
	position:absolute;
	bottom:2em;
	left:50%;
	transform:translateX(-50%);
	box-shadow:none;
}

@media screen and (max-width:750px){
	#cont8 .example{
		margin-top:9%;
		display: block;
	}
	#cont8 .example li{
		width:auto;
		margin-top:7%;
		padding-bottom:9%;
		border-radius:0.3em;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
		position:static;
	}
	#cont8 .example li section{
		padding:5% 5% 0;
	}
	#cont8 .example li section h3{
		min-height:auto;
		font-size:4.6vw;
		display: block;
	}
	#cont8 .example li .btn{
		width:80%;
		position:static;
		bottom:auto;
		left:auto;
		transform:none;
		margin-top:1em;
	}
}


/* #cont9 */
#cont9{
}
#cont9 .faq{
	max-width:1100px;
	margin-top:50px;
	padding:70px 100px;
	background-color:rgba(255,255,255,0.6);
	box-shadow:0 0 20px rgba(192,204,214,0.5);
}
#cont9 .faq div{
	padding:2em 0;
	text-align:left;
	border-bottom:1px solid #ddd;
}
#cont9 .faq div:first-child{
	border-top:1px solid #ddd;
}
#cont9 .faq div dt{
	padding:0 4em;
	font-size:16px;
	font-weight:bold;
	position:relative;
	cursor:pointer;
}
#cont9 .faq div dt:before{
	content:'Q.';
	line-height:0.8;
	font-size:37px;
	color:#009aea;
	position:absolute;
	left:0;
	top:0;
}
#cont9 .faq div dt:after{
	content:'＋';
	line-height:0.8;
	font-size:37px;
	color:#b5b5b5;
	position:absolute;
	right:0;
	top:0;
}
#cont9 .faq div dt.close:after{
	content:'－';
}
#cont9 .faq div dd{
	margin-top:1em;
	padding:0 4.3em;
	display:none;
}

@media screen and (max-width:1140px){
	#cont9 .faq{
		padding:7% 9%;
	}
}

@media screen and (max-width:750px){
	#cont9 .faq{
		margin-top:5%;
		padding:7% 5%;
		box-shadow:0 0 10px rgba(192,204,214,0.5);
	}
	#cont9 .faq div{
		padding:1em 0;
	}
	#cont9 .faq div dt{
		padding:0 2.5em;
		font-size:3.4vw;
	}
	#cont9 .faq div dt:before{
		font-size:5.3vw;
		line-height:1;
	}
	#cont9 .faq div dt:after{
		font-size:5.3vw;
		line-height:1;
	}
	#cont9 .faq div dd{
		padding:0;
		font-size:3.2vw;
	}
}


/* #contact */
#contact{
	background-color:#fff;
}
#contact .inner{
	margin-top:70px;
	max-width:1100px;
}

@media screen and (max-width:750px){
	#contact .inner{
		margin-top:9%;
	}
}




/* footer */
footer{
	padding:30px 0;
}
footer .link{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
footer .link li{
	margin:0 1em;
}
footer .link li a{
	color:#fff;
	letter-spacing:0.04em;
	text-indent:0.04em;
}
footer .copy{
	margin-top:1em;
	font-size:13px;
	letter-spacing:0.04em;
	text-indent:0.04em;
}

@media screen and (max-width:750px){
	footer{
		padding:5% 0;
	}
	footer .link li{
		margin:0 0.5em;
	}
	footer .copy{
		font-size:3vw;
	}
}


/* #topbtn */
#topbtn{
	width:50px;
	line-height:50px;
	font-size:21px;
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	border-radius:50%;
	color:#fff;
	background-color:#009aea;
	box-shadow:0 0 3px rgba(0,0,0,0.3);
	position:fixed;
	z-index:99;
	right:20px;
	bottom:-150px;
	-webkit-transition: bottom 0.8s;
	transition: bottom 0.8s;
}
@media screen and (max-width:750px){
	#topbtn{
		width:40px;
		line-height:40px;
		font-size:18px;
		right:15px;
	}
}


/* #bottom_nav */
#bottom_nav{
	width:100%;
	display: -webkit-flex;
	display: flex;
	box-shadow:0 0 5px rgba(0,0,0,0.5);
	position:fixed;
	bottom:-300px;
	z-index:99;
	-webkit-transition: bottom 0.8s;
	transition: bottom 0.8s;
}
#bottom_nav li{
	width:50%;
}
#bottom_nav li a{
	line-height:4;
	padding-right:1em;
	display:block;
	font-size:4.4vw;
	font-weight:bold;
	position:relative;
}
#bottom_nav img{
	width:1.2em;
	position:absolute;
	right:0.6em;
	top:50%;
	transform:translateY(-50%);
}


/* fadein */
.fadein {
	opacity : 0;
	-webkit-transform : translate(0, 70px);
	transform : translate(0, 70px);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.fadein_0 {
	opacity : 0;
	-webkit-transform : translate(0, 0);
	transform : translate(0, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 2s;
	transition-duration : 2s;
}

.delay1 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.2s;
	transition-delay : 0.2s;
}
.delay2 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.4s;
	transition-delay : 0.4s;
}
.delay3 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.6s;
	transition-delay : 0.6s;
}
.delay4 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.8s;
	transition-delay : 0.8s;
}
.delay5 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 1.0s;
	transition-delay : 1.0s;
}
.delay6 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 1.2s;
	transition-delay : 1.2s;
}

.fadein.scrollin,
.fadein_0.scrollin{
	opacity : 1;
	-webkit-transform : translate(0, 0);
	transform : translate(0, 0);
}