@charset "utf-8";

/* ========================================================
	index.css => index用CSS
======================================================== */

/* main
============================================================================================================ */
#main {
	position: relative;
	height: 400px;
	padding-top: 125px;
	background: #6eb92b url(../images/main_bg.png) 50% 0;
	text-align: center;
	z-index: 2;
}
#main::after {
	background-color: #fff;
}

@media screen and (min-width: 769px), print {
	#main {
	}
	#main h1 {
		margin-top: 40px;
		color: #ffffff;
		font-size: 5rem;
	}
}
@media screen and (max-width: 768px) {
	#main {
		height: auto;
		padding:30px 0 40px 0;
		background-repeat: no-repeat;
		background-position: 50% 20%;
		-webkit-background-size: 140%;
		background-size: 140%;
	}
	#main h1 {
		color: #ffffff;
		font-size: 1.8rem;
	}
}





/* after_skew
============================================================================================================ */
.after_skew {
	position: relative;
	overflow: hidden;
}
.after_skew::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	right: -100px;
	height: 50px;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: skewX(-45deg);
	-ms-transform: skewX(-45deg);
	-o-transform: skewX(-45deg);
	transform: skewX(-45deg);
}
@media screen and (max-width: 768px) {
	.after_skew::after {
		height: 25px;
	}
}




/* information_contents
============================================================================================================ */
.information_contents {
	position: relative;
	padding: 60px 0 120px;
}
.information_contents::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 50%;
	z-index: -1;
}

.information_contents::after {
	background-color: #6eb92b;
}
.information_contents .box {
	padding: 10px 40px;
}
.information_contents h2{
	text-align: center;
	font-size: 3.5rem;
	line-height: 1;
}
.information_contents h2 span{
	font-size: 2rem;
}



@media screen and (min-width: 769px), print {
	.information_contents div.widh{
		width: 50%;
		vertical-align: top;
	}
	.information_contents div.widhh{
		width: 45%;
		vertical-align: top;
	}

	.information_contents ul.keibajo li {
		width: 12%;
		display: inline-block;
		color: #ffffff;
		text-align: center;
		font-size: 3rem;
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 768px) {
	.information_contents {
		padding: 30px 0 60px;
	}
	.information_contents .box {
		padding: 5px 20px;
	}
	
	.information_contents ul.keibajo li {
		width: 49%;
		display: inline-block;
		color: #ffffff;
		text-align: center;
		font-size: 3rem;
		margin-bottom: 10px;
	}
	.information_contents div p.rurubu {
		width: 70%;
		margin:0px auto 15px auto;
	}
}