* {
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
	margin: 0;
	padding: 0;
}
#map {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index:0;
	margin:0;
}
.wrapperLocation {
	position: absolute;
	bottom: 5px;
	width: 100%;
	z-index: 9999;
	text-align: center;
}
.locationBar {
	margin: 0 auto;
	width: 300px;
	padding:5px;
	background-color:#5b8cb5;
	border:1px solid #ccc;
	border-radius:6px;
	opacity:0.9;
}
.locationBar:hover {
	opacity:1.0;
}
.locationBar button {
	font-size: 12pt;
	float: left;
}
.locationBar .locationBarselect select {
	font-size: 12pt;
}

/* ol.cssを上書き */
.ol-zoom {
	top: 60px;
	left: 5px;
}
.ol-zoom .ol-zoom-in { /* ol.cssを上書き */
	width: 46px;
	height: 46px;
	font-size: 18pt;
    background-color:#5b8cb5;
}
.ol-zoom .ol-zoom-out { /* ol.cssを上書き */
	width: 46px;
	height: 46px;
	font-size: 18pt;
}
.ol-rotate {
    font-size: 18pt;
	top: 160px;
    left: 5px;
	width: 46px;
	height: 46px;
}
.ol-rotate.ol-hidden{
    top: 160px;
    left: 5px;
	width: 46px;
	height: 46px;
}
.ol-compass {
	font-size: 18pt;
	width: 46px;
	height: 46px;
}

/* レイヤースイッチ*/
.layer-switcher {
    position: absolute;
    top: 10px;
    right: 5px;
    text-align: left;
	font-size: 14pt;
}

.layer-switcher .panel {
    padding-right: 50px;
    border: 1px solid #ccc;
    background-color: white;
    display: none;
}

.layer-switcher.shown .panel {
    display: block;
}

.layer-switcher button {
    float: right;
    background-image: url('ol-logo.png') ;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: white;
    border: none;
}

.layer-switcher button:focus, .layer-switcher button:hover {
    background-color: white;
}

.layer-switcher ul {
    padding-left: 1em;
    list-style: none;
}

.layer-switcher li.group {
    padding-top: 5px;
}

.layer-switcher li.group > label_lay {
    font-weight: bold;
}
/* ドローメニュー：「設定」ボタン */
/* :::::: contents :::::: */
 
#wrapper {
  overflow: hidden;
  min-width: 320px;
  height: auto;
  padding: 0;
}
 
.contents {
  -webkit-transition: -webkit-transform .6s;
  transition: transform .6s;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
 
#navTgl:checked ~ .contents {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}

/* :::::: toggle button :::::: */
 #navTgl {
  display: none;
  overflow: hidden;
}
 
label {
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
}
 
.open {
  z-index: 2;
  width: 50px;
  height: 50px;
  color: white;
  background-color: rgb(91, 140, 181);
  font-size: 2em;
  line-height: 60px;
  text-align: center;
  -webkit-transition: background-color .6s, -webkit-transform .6s;
  transition: background-color .6s, transform .6s;
}
 
#navTgl:checked + .open {
  background-color: indianRed;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}
 
.close {
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
  transition: background-color .6s;
}
 
#navTgl:checked ~ .close {
  pointer-events: auto;
  background-color: rgba(0,0,0,0.2); 
	z-index: 1;
}

/* :::::: drawer menu :::::: */
 .menu {
  z-index: 1;
  position: fixed;
  overflow: auto;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  padding: 0px;
	 font-size: 12pt;
	 line-height: 0.9em;
  background-color: rgba(91, 140, 181,0.9);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .6s;
  transition: transform .6s;
	 -moz-box-sizing: border-box;
  box-sizing: border-box;
}
 #navTgl:checked ~ .menu {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.menu h1 {
  color: white;
  line-height: 1.4em;
  font-size: 14pt;
  text-align: center;
}
.menu h2 {
	color: white;
	text-align: center;
	margin: 12px;
	font-size: 1.0em;
}
.menu input {
	font-size: 12pt;
}
.menu button {
	font-size: 12pt;
}
.menu p {
  line-height: 1.2em;
  font-size: 0.9em;
}