@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 .box li + li {
	border-top: 1px solid #f5f5f5;
}
.information_contents .box li a {
	display: block;
	padding: 20px 0;
	line-height: 1.5;
	text-decoration: none;
}
.information_contents .box li a > * {
	display: block;
}
.information_contents .box li a .time {
	font-weight: bold;
}
.information_contents .more {
	margin-top: 50px;
}
.information_contents .more a {
	margin-left: auto;
}
.information_contents h1 {
	font-size: 2rem;
	color: #6eb92b;
}
.information_contents p.date {
	font-size: 1.5rem;
}

@media screen and (min-width: 769px), print {
	.information_contents .box li a .time {
		float: left;
	}
	.information_contents .box li a .title {
		margin-left: 8em;
	}
	.information_contents .box li a[href]:hover .title {
		text-decoration: underline;
	}
}
@media screen and (max-width: 768px) {
	.information_contents {
		padding: 30px 0 60px;
	}
	.information_contents .box {
		padding: 5px 20px;
	}
	.information_contents .box li a {
		padding: 10px 0;
	}

	.information_contents .more {
		margin-top: 25px;
	}
}

