@charset "utf-8";
/* CSS Document */

#top_contents{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}


/* --------------------------------------------------------------------------------------
 メイン画像
--------------------------------------------------------------------------------------- */
#top_contents .main_pic{
	width: 100%;
	height: 0;
	padding-top: 38.16%;
	position: relative;
	background: url("../common/top/main_bg.jpg") no-repeat;
	background-size: 100% auto;
	overflow: hidden;
	line-height: 1.5;
}

#top_contents .main_pic .txt{
	position: absolute;
	right: 10%;
	top: 10%;
	font-size: 30px;
	color: #fff;
	text-shadow: 3px 3px 3px rgba(0,0,0,0.4);
}
#top_contents .main_pic .txt span{font-size: 22px;}

/* SP ///////////////////////////////////////////////////// */
@media screen and (max-width: 768px) {
#top_contents .main_pic .txt{
	position: absolute;
	right: 3%;
	top: 10%;
	font-size: 16px;
	line-height: 1.2;
}
#top_contents .main_pic .txt span{font-size: 12px;}
}

/* --------------------------------------------------------------------------------------
 新着情報
--------------------------------------------------------------------------------------- */
#top_contents .news_box{
	width: 95%;
	margin: 20px auto;
	border: 1px solid #888888;
	border-radius: 10px;
	padding: 20px;
	
}

#top_contents .news_box h3{
	color: #009844;
	font-size: 1.4rem;
}

/* SP ///////////////////////////////////////////////////// */
@media screen and (max-width: 768px) {

#top_contents .news_box dl{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#top_contents .news_box dt{
	font-weight: normal;
	padding: 10px 0 0 0;
	display: inline-block;
	width: 30%;
	}
#top_contents .news_box dd{
	width: 70%;
	padding: 10px 0 0 0;
	}
	
}

/* PC ///////////////////////////////////////////////////// */
@media screen and (min-width: 769px) {

#top_contents .news_box dl{
	display: -webkit-flex;
 display: flex;
	-webkit-flex-wrap: wrap;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
	
	align-self:center;
}
#top_contents .news_box dt{
	width: 90px;
	font-weight: normal;
	padding: 8px 0;
	}
#top_contents .news_box dd{
	width: 75%;
	width : -webkit-calc(100% - 90px) ;
 width : calc(100% - 90px) ;
	padding: 8px 0 8px 8px;
	}
}






