@charset 'UTF-8';

/*----------------------------------------*/
#map_canvas div > img { position: absolute; }
.gm-style div > img { position: absolute; }

/*----------------------------------------*/
body {
	font-family: "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "Meiryo UI", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}
/*----------------------------------------*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/*----------------------------------------*/
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
/*----------------------------------------*/
#gmap {
	width: 100%;
	height: 100%;
}
/*----------------------------------------*/
.mov_568 {
	width: 568px;
	height: 426px;
	border: 2px #0000ff solid;
	margin: 4px 0;
}
/*----------------------------------------*/
.img_568 {
	width: 568px;
	height: 426px;
	border: 2px #0000ff solid;
	margin: 4px 0;
}


/*----------------------------------------*/
.scroll_bar{
	overflow-y: scroll;
}
.scroll_bar::-webkit-scrollbar{
	width: 10px;
}
.scroll_bar::-webkit-scrollbar-track{
	background-color: #ccc;
}
.scroll_bar::-webkit-scrollbar-thumb{
	background-color: #17585d;
}
/*----------------------------------------*/


/* ドロワーメニュー ------------------------------------------------- */
/*========================================*/
.wrapper {
	height: 100%;
	overflow-x: hidden;
	position: relative;
}
/*========================================*/


/*========================================*/
.overlay {
	content: "";
	display: block;
	width: 0;
	height: 0;
	background-color: rgba(0, 0, 0, 0.3);	/* 黒 透過0.5 */
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	opacity: 0;
	transition: opacity .5s;
}
/*----------------------------------------*/
.overlay.open {
	width: 100%;
	height: 100%;
	opacity: 1;
}
/*========================================*/


/*========================================*/
main {
	height: 100%;
	min-height: 100vh;
	padding: 0;
	background-color: #eee;
	transition: all .5s;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
/*========================================*/


/*========================================*/
.title-window {
	background-color: rgb(255, 255, 255, 1);
	border-radius: 8px;
	display: inline-block;
	width: 392px;
	height: 48px;
	vertical-align: middle;
/*	cursor: pointer;	*/
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9;
	box-shadow: 0px 2px 4px #cdcdcd;
}
/*========================================*/


/*========================================*/
.menu-open {
	background-color: rgb(255, 0, 0, 0);
/*	border-radius: 8px;	*/
	display: inline-block;
	width: 56px;
	height: 48px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 10;
/*	box-shadow: 0px 2px 4px #cdcdcd;	*/
}
/*----------------------------------------*/
.menu-open span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	width: 18px;
	height: 2px;
	background-color: #323232;
}
/*----------------------------------------*/
.menu-open span:nth-of-type(1) {
	top: 18px;
	left: 19px;
}
/*----------------------------------------*/
.menu-open span:nth-of-type(2) {
	top: 23px;
	left: 19px;
}
/*----------------------------------------*/
.menu-open span:nth-of-type(3) {
	top: 28px;
	left: 19px;
}
/*========================================*/


/*========================================*/
.tooltip {
	position: fixed;
	top: 60px;
	left: 8px;
	width: 73px;
	height: 24px;
	padding: 0;
	margin: 0;
	background-color: #202124;
	border-radius: 5px;
	font-family: "メイリオ", sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	line-height: 24px;
	text-align: center;
	display: none;
}
/*========================================*/


/*========================================*/
.menu-close {
	background-color: rgb(255, 255, 255, 1);
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 14px;
	right: 24px;
}
/*----------------------------------------*/
.menu-close span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	width: 18px;
	height: 2px;
	background-color: #606060;
}
/*----------------------------------------*/
.menu-close span:nth-of-type(1) {
	top: 3px;
	left: 3px;
	transform: translateY(8px) rotate(-45deg);
}
/*----------------------------------------*/
.menu-close span:nth-of-type(2) {
	bottom: 3px;
	left: 3px;
	transform: translateY(-8px) rotate(45deg);
}
/*========================================*/


/*========================================*/
.menu-line {
	background-color: rgb(218, 220, 224, 1);
	display: inline-block;
	width: 100%;
	height: 1px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 52px;
}
/*========================================*/


/*========================================*/
nav {
	width: 320px;
	height: 100%;
	padding-top: 64px;
	background-color: rgb(255, 255, 255, 1);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	transform: translate(-320px);
	transition: all .5s;
	overflow: auto;
}
/*----------------------------------------*/
nav.open {
	transform: translateZ(0);
}
/*----------------------------------------*/
nav li {
	margin-left: 20px;
	padding: 8px 0;
}
/*----------------------------------------*/
nav li div {
	cursor: pointer;
}
/*----------------------------------------*/
nav li div span {
	font-family: "メイリオ", sans-serif;
/*	font-variant-numeric: slashed-zero;	*/	/* ゼロ斜線 */
	color: #202124;
	font-size: 10pt;
	font-weight: bold;
	line-height: 10pt;
}
/*----------------------------------------*/
nav img {
	vertical-align: middle;
	height: 22px;
	padding: 0 8px 0 0;	/* 上 右 下 左 */
}
/*========================================*/


/*========================================*/
@media print {
	.no-print {
		display: none;
	}
}
/*----------------------------------------*/
/*	@page { size:landscape; }	用紙横向き印刷*/
/*========================================*/
