@charset "UTF-8";

body {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	color: #333333;
}

h3 {
	font-size: 20px;
	font-weight: 700;	
	padding: 0;
	margin: 40px 0 20px;
}

.mapList {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	overflow: hidden;
	display: grid;
	align-items: start;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 24px;
	line-height: calc(34 / 18);
}

.mapList li {
	cursor: pointer;
	padding: 15px;
	list-style: none;
	border: solid 1px #696969;
	border-radius: 2px;
	text-align: center;
}

.mapList li.current {
	color: #FFF;
	background: #003282;
}

.mapList li:hover {
	color: #FFF;
	background: #003282;
}

.tokyo.mapList {
	margin: 40px 0 0 0;
}

.only-sp {
	display: none;
}

/*グーグルマップ*/
#gmap1 {
	width: 100%;
	overflow: hidden;
}

.tokyo #gmap1 {
	height: 600px;
}

.kantou #gmap1 {	
	height: 673px;
}

.kansai #gmap1 {
	height: 505px;
}

@media screen and (max-width: 969px) {
	h3 {
		font-size: 16px;
		margin: 20px 0 10px;
	}

	.mapList {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px 13px;
		font-size: 12px;
		line-height: calc(18 / 12);
	}

	.mapList li {
		padding: 6px 13px;
	}

	.tokyo.mapList {
		margin: 20px 0 0 0;
	}

	.only-sp {
		display: block;
	}

	.tokyo #gmap1 {
		height: 300px;
	}

	.kantou #gmap1 {	
		height: 300px;
	}
	
	.kansai #gmap1 {
		height: 300px;
	}
}
/*1024px以下*/
