/* CSS Document */
@charset "utf-8";
.googlemap {
	position: relative; /* 子要素の基準とする */
	padding-bottom: 75%; /* 表示するパディング領域の縦横比（4：3） */
	height: 0;
	overflow: hidden;
}
.googlemap iframe {
	position: absolute; /* 親要素のパディング領域に配置するために絶対配置を指定 */
	top: 0; /* 垂直方向トップに配置 */
	left: 0; /*  水平方向左に配置 */
	width: 100%; /* 親コンテナの幅いっぱいに表示 */
	height: 100%; /* 親コンテナの高さいっぱいに表示 */
}

