.access_area {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: var( --content-max-width );
	padding: 20px;
	text-align: left;
}
.access_title {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
	padding-left: 20px;
	border-left: 20px solid #0000ff;
}
.access_point {
	margin-left: 10px;
}
.access_point_title {
	display: inline-block;
	position: relative;
	font-size: 25px;
	font-weight: bold;
}
.access_point_title::after {
	content: "";
	position: absolute;
	top: 100%;
	left: -5px;
	width: calc( 100% + 10px );
	height: 4px;
	background-color: #0000ff;
	border-radius: 2px;
}
.access_point_address {
	margin-top: 10px;
	margin-left: 20px;
	font-size: 16px;
}
.access_point_route {
	margin-left: 30px;
	margin-top: 20px;
	font-size: 14px;
}
.access_point_route > div:not(:last-child) {
	margin-bottom: 5px;
}
.access_map {
	position: relative;
	margin-top: 30px;
	overflow: hidden;
	height: 500px;
	width: 100%;
}
.access_map > iframe {
	position: absolute;
	top: -150px;
	left: 0;
	width: 100%;
	height: calc( 100% + 150px + 150px );
	border: 0;
}
/*==================================================================*/
/* タブレット用設定                                                 */
/*==================================================================*/
@media screen and (max-width: 960px ) {
	.access_map {
		display: block;
	}
}
