@charset "UTF-8";

/*******************************
 
概要・アクセスCss
 
*******************************/
/*-----------------------------
common
-----------------------------*/
.contents section{
	margin-bottom: 80px;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.contents section{
		margin-bottom: 40px;
	}
}


/*-----------------------------
overview
-----------------------------*/
.overview .img img{
	width: 100%;
}


/*-----------------------------
map
-----------------------------*/
.map {
    height: 0;
    overflow: hidden;
    margin: 40px 0;
    padding-bottom: 56.25%;
    position: relative;
}
.map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}


/*-----------------------------
table
-----------------------------*/
table{
	margin: 50px 0;
	width: 100%;
	border: solid 1px #99b752;
}
table tr{
	border-bottom: solid 1px #99b752;
}
table th,
table td{
	padding: 20px;
}
table th{
	width: 20%;
	color: #70941d;
	background: #f4f7ed;
	border-right: solid 1px #99b752;
}
table td{
	width: 80%;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	table{
		margin: 20px 0;
		border-bottom: none;
	}
	table tr,
	table th,
	table td{
		border: none;
	}
	table th,
	table td{
		display: block;
		width: 100%;
		padding: 10px;
		border: none;
		border-bottom: solid 1px #99b752;
	}
}
