@charset "utf-8";
/* top.css */

/*プロパティ順番
////////////////////////////////////////////////////*//*


	Mozillaが採用している「ボックスモデルによる記述順番」

	01 display
	02 list-style
	03 position
	04 float
	05 clear
	06 width
	07 height
	08 margin
	09 padding
	10 border
	11 background
	12 color
	13 font
	14 text-decoration
	15 text-align
	16 vertical-align
	17 white-space
	18 other text
	19 content


///////////////////////////////////////////////////////*/


/*　トップページ 共通設定
////////////////////////////////////////////////////*/
.main-visual {
	background: url(../img/bg_main.jpg) center;
	background-size: cover;
	width: 100%;
	height: 460px;	
}
.main-visual__inr {
	position: relative;
	max-width: 940px;
	height: 100%;
	box-sizing: border-box;
	margin: 0 auto;
}
.main-visual__inr h2 {
	position: absolute;
	bottom: 40px;
}
.top-description {
	text-align: center;
	font-size: 2.2rem;
	padding: 60px 0;
	line-height: 2.0;	
}
.top-concept {
	text-align: center;
	padding: 0 0 40px;	
}
.top-concept h3 {
	color: #024f28;
	font-size: 3.0rem;	
}
.top-concept p {
	line-height: 2.0;
	padding: 20px 0;
		
}

.top-content__inr {
	max-width: 980px;
	margin: 0 auto;
	padding: 60px 0;
	overflow: hidden;	
}
.detail-box {
	max-width: 460px;
}
.ttl-box {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	position: relative;	
	height: 90px;
	margin: 0 0 1em;
}
.ttl-box h3,
.ttl-box p {
	top: 50%;
	padding: 0 2%;
	position: absolute;
	transform: translate(0,-50%)	
	
}
.ttl-box h3 {
	font-size: 3.0rem;
	left: 0;
	width: 60%;
}
.ttl-box p {
	right: 0;
	text-align: right;
	width: 40%;
	font-size: 1.4rem;
}
.top-content__info {
	text-align: center;
	padding: 50px 0;
	font-size: 1.8rem;
	font-weight: 600;	
}
/*　新着情報設定
////////////////////////////////////////////////////*/
@media screen and (max-width: 768px) {
	.main-visual {
		height: 230px;	
	}
	.main-visual__inr h2 {
		width: 90%;
		
		left: 5%;
	}
	.main-visual__inr h2 img{
		width: 100%;
	}
	.top-description {
		text-align: left;
		font-size: 1.8rem;
		padding: 30px 20px;
		line-height: 2.0;	
	}
	.top-concept {
		text-align: center;
		padding: 0 0 40px;	
	}
	.top-concept h3 {
		color: #024f28;
		font-size: 2.6rem;	
	}
	.top-concept p {
		line-height: 2.0;
		padding: 20px;
		text-align: left;
			
	}
	
	.top-content__inr {
		width: 100%;
		margin: 0 auto;
		padding: 30px 20px;
		box-sizing: border-box;
		overflow: hidden;	
	}
	.top-content__inr img {
		width: 100%;	
	}
	.detail-box {
		max-width: 460px;
	}
	.ttl-box {
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		position: relative;	
		height: 70px;
		margin: 1em 0;
	}
	.ttl-box h3,
	.ttl-box p {
		top: 35%;
		padding: 0 2%;
		position: relative;
		transform: translate(0,-50%)	
		
	}
	.ttl-box h3 {
		font-size: 2.4rem;
		left: 0;
		width: 100%;
	}
	.ttl-box p {
		top: 25%;
		right: 0;
		text-align: left;
		width: 100%;
		font-size: 1.2rem;
	}
	.top-content__info {
		text-align: left;
		padding: 25px 20px;
		font-size: 1.8rem;
		font-weight: 600;	
	}
}