@charset "utf-8";
body, body *{
	margin: 0;
	box-sizing: border-box;
	font-family: "Kosugi Maru", sans-serif;
}
header{
	padding: 10px 0;
}
footer{
	padding: 20px 10px;
	text-align: center;
	font-size: 0.8em;
	color: #fff;
	background-color: #0068B6;
}
header img{
	display: block;
	width: 100%;
	height: 80px;
	object-fit: contain;
	object-position: center;
}
.index_pc_main{
	display: flex;
	min-height: calc(100vh - 180px);
	padding: 20px 100px;
	background-color: #009FC9;
	justify-content: center;
}
.content_left{
	max-width: 450px;
	width: 60%;
}
.content_right{
	max-width: 450px;
	width: 45%;
	margin-left: 50px;
}
h1{
	margin: 0 0 20px 0;
	color: yellow;
	font-size: 32px;
	line-height: 1.4em;
}
h3{
	 font-size: 24px;
	 margin-top: 20px;
	 line-height: 1.4em;
	 font-weight: normal;
}
.situation div{
	display: flex;
	margin-bottom: 20px;
	padding: 10px 20px;
	align-items: center;
	background-color: yellow;
	border-radius: 20px;
	font-weight: bold;
}
.situation label{
	margin-right: 10px;
	color: #008fcd;
	font-size: 18px;
	line-height: 1.4em;
}
.situation p{
	width: 100%;
	margin: 0;
	font-size: 28px;
	text-align: right;
	color: #333;
	flex: 1;
}
.title_img{
	margin-bottom: 20px;
	object-fit: contain;
	object-position: center top;
}
#map{
	width: 100%;
	height: 300px;
	background-color: #aaa;
}
.overview{
	color: #fff;
}
.overview span{
	white-space: nowrap;
}
.overview p{
	margin: 0;
	line-height: 1.8em;
}
.mobile{
	display: flex;
	padding: 20px 0;
}
.mobile img{
	object-fit: contain;
	min-width: 0;
}
.pc_button{
	width: 100%;
	margin-top: 20px;
	text-align: center;
	border-radius: 20px;
	font-weight: bold;
	background-color: yellow;
}
.pc_button a{
	display: block;
	padding: 30px 10px;
	width: 100%;
	height: 100%;
	text-decoration: underline;
	color: #0068B6;
}
.nami_top, .nami_bottom{
	height: 10px;
	background-size: contain;
}
.nami_top{
	background-image: url("../img/nami_top.png");
}
.nami_bottom{
	background-image: url("../img/nami_bottom.png");
	background-color: #009FC9;
}
@media (max-width: 1000px) {
	.index_pc_main{
		display: block;
	}
	.content_left,
	.content_right{
		width: 100%;
		max-width: 600px;
		margin: auto;
	}
	.content_right{
		margin-top: 60px;
	}
}
@media (max-width: 600px) {
	header img{
		height: 50px;
	}
	.index_pc_main{
		padding: 20px 30px 30px 30px;
	}
	.content_left,
	.content_right{
		max-width: inherit;
	}
}
@media (max-width: 360px) {
	.overview span{
		white-space: normal;
	}
}