@charset "utf-8";

/* ****************************************************************************

　目次

-------------------------------------------------------------------------------

　00. 
　01. 基本
　02. モジュール

******************************************************************************* */
html { height: 100% }
body { height: 100% }
#map { height: 480px; width: 950px; margin: 10px auto 20px;}
.main {
	width: 950px;
	margin: 50px auto 100px;
}
h1 {
	font-size: 30px;
}
h1 span {
	font-size: 20px;
}

.map_tit{
	display: flex;
	align-items: flex-end;
	gap: 0 10px;
}
.map_tit p{
	font-size: 20px;
}




table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
}
table th,
table td {
	line-height: 1.75;
	padding: 7px 20px;
	border: 1px solid #ccc;
	font-weight: normal;
}
table th {
	width: 10em;
	background-color: #ededed;
	color: #333;
	text-align: left;
	vertical-align: middle;
}
table td {
	background-color: #fff;
	color: #333;
	text-align: left;
	vertical-align: middle;
}

a.fBtn01 {
	position: relative;
	display: block;
	width: 300px;
	background-color: #ededed;
	border-radius: 5px;
	color: #000;
	text-decoration: none;
	font-size: 16px;
	margin: 50px auto 15px;
	padding: 15px 20px;
	transition: opacity .2s linear;
	text-align: center;
}
a.fBtn01:hover {
	text-decoration: underline;
}
a.fBtn01::before {
	content: "";
	background: url(/common/images/rn04/svg/arw_ico02.svg) no-repeat center center;
	width: 20px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: rotateY(180deg);
	margin: -5px 20px 0 0;
}