/*交通アクセス
---------------------------------------------------------------------------*/
#googlemapArea {
	width: 100%;
	height: 500px;
	text-align: center;
	font-size: 12px;
	font-weight: normal;
	color: #000000;
	margin: 0 auto;
	padding: 0px;
	border-radius: 0 0 10px 10px / 0 0 10px 10px;
}
.bold {
	font-weight: bold;
}
a.tel_number {
	display: none;
}

/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){
	#googlemapArea {
		height: 350px;
	}
	a.tel_number {
		display: initial;
		text-decoration: none;
	}
	a.tel_number:hover {

	}
	.pc_number{
		display: none;
	}
}

/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){
	#googlemapArea {
		height: 250px;
	}
	a.tel_number {
		display: initial;
		text-decoration: none;
	}
	a.tel_number:hover {

	}
	.pc_number{
		display: none;
	}
}