@charset "utf-8";

input[type="text"].input_name {
  font-size: 1.1em;
  width: 305px;
  height: 35px;
  padding: 3px;
  box-sizing: border-box;
}
/* マップコントロール */
#map_ctl {
  position: relative;
  display: inline-block;
  width: calc(100% - 22px);
  /* height: 70px; */
  height: auto;
  padding: 10px;
  background: #d6e8ff;
  border: 1px solid #8f8f8f;
}
#map_ctl .view_div {
  position: absolute;
  right: 10px;
  top: 10px;
}
#map_ctl .button_div {
  /* display: inline-block; */
  position: relative;
  margin-top: 5px;
  /* position: absolute;
  left: 10px;
  top: 10px; */
}
#map_ctl .mail_ctl_div {
  display: inline-block;
  /* margin-left: 10px; */
  font-size: 0.9em;
}
#map_ctl .view_div fieldset{
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.9em;
  height: 100%;
  /* width: 200px; */
}
#map_ctl .view_div #btn_showchange_control {
  position: relative;
  padding-right: 16px;
}
#map_ctl .view_div #btn_showchange_control::after {
  content: "";
  position: absolute;
  background-size: contain;
  width: 16px;
  height: 16px;
  right: 10px;
  top: 6px;
}
#map_ctl .view_div #btn_showchange_control.down::after {
  background-image: url("../../common/images/down_arrow.png");
}
#map_ctl .view_div #btn_showchange_control.up::after {
  background-image: url("../../common/images/up_arrow.png");
}
/* マップ */
#map {
  position: relative;
  display: inline-block;
  width: calc(100% - 2px);
  /* height: calc(100% - 96px); */
  height: calc(100% - 61px);
  border: 1px solid #8f8f8f;
  margin-top: 6px;
}

/*ポップアップ表示*/
#map .container {
  display: none;
  position: absolute;
  width: calc(100% - 120px);
  height: auto;
  right: 2px;
  top: 2px;
  background: rgba(214, 232, 255, 0.8);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #8f8f8f;
  z-index: 30;
  padding: 10px;
}
#map .container>*,
#map .container .input>*,
#map #facility_edit_form>* {
  margin: 3px 2px;
}
#map .container input[type="text"],
#map .container select {
  font-size: 0.9em;
  height: 30px;
}
#map .container button {
  /* float: right; */
  margin: 0px 3px;
}
#map .container fieldset{
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.9em;
  height: 100%;
  /* width: 200px; */
}
/* #map #route_edit_container div {
  display: table-cell;
  vertical-align: top;
  padding-left: 10px;
} */
#map #route_list {
  min-width: 150px;
}
#map #object_showchange_container {
  right: 2px;
  top: 2px;
  width: auto;
  height: auto;
  z-index: 50;
}
#map #object_showchange_container fieldset{
  display: block;
  height: auto;
}
#map #object_showchange_container fieldset.ben {
  margin-bottom: 5px;
}
#map #object_showchange_container fieldset.ben label {
  display: block;
}

#map .point_container {
  display: none;
  position: absolute;
  width: 350px;
  /* height: 370px; */
  height: auto;
  background: rgba(214, 232, 255, 0.8);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #8f8f8f;
  z-index: 31;
  padding: 10px;
}
#map .point_container fieldset{
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.9em;
  width: calc(100% - 30px);
  /* width: 200px; */
}
#map .point_container ul {
  justify-content: center;
  list-style-type: none;
  margin: 0px 0px;
  padding: 0px 0px;
  height: 200px;
  overflow: auto;
}
#map .point_container ul li {
  display: inline-block;
  padding-top: 2px;
  margin-left: 0px;
  padding-left: 3px;
  padding-right: 3px;
  cursor: pointer;
}
#map .point_container ul li label,
#map .point_container ul li input {
  cursor: pointer;
}
#map .point_container ul li.sel {
  background: #fff1d8;
}
#map .point_container ul li:hover {
  background: #fae3bb;
}
#map .point_container input[type="text"] {
  font-size: 0.9em;
  height: 25px;
}

#obj_container {
  display: none;  /* 初期は非表示にする */
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.15;
}
#popup {
  display: none;  /* 初期は非表示にする */
  position: absolute;
  left: 50%;
  top: 20%;
  width: 500px;
  height: 300px;
  margin-left: -250px; /* 幅の半分の数値を指定 */
  margin-top: -125px; /* 高さの半分の数値を指定 */
  background-color: white;
  text-align: center;
  font-size:12px;
}

#route_container {
  display: none;  /* 初期は非表示にする */
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.15;
}
#route_popup {
  display: none;  /* 初期は非表示にする */
  position: absolute;
  left: 50%;
  top: 20%;
  width: 500px;
  height: 250px;
  margin-left: -250px; /* 幅の半分の数値を指定 */
  margin-top: -125px; /* 高さの半分の数値を指定 */
  background-color: white;
  text-align: center;
  font-size:12px;
}

#route_edit_container #route_input div {
  display: inline-block;
  vertical-align: top;
}

#line_edit_container #line_input {
  float: left;
}
#line_edit_container #line_setting {
  float: right;
}
.container .ctrl {
  display: table;
  width: 100%;
}
.container .ctrl div {
  display: inline-block;
  width: 50%;
}
#line_edit_container #line_setting fieldset {
  text-align: left;
  padding: 5px 10px;
}
#line_edit_container #line_setting fieldset input {
  margin-bottom: 5px;
}

/*マーカー吹き出し用のスタイル*/
.ol-popup {
  display: none; position: absolute; background-color: white;
  -moz-box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  -webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
  padding: 5px; border-radius: 10px; border: 1px solid #929292; bottom: 24px; left: -51px;
}
.ol-popup #wp_desc {
  font-size:11px;
  width:auto;
  min-width: 100px;
}
.ol-popup #wp_desc h2 {
  height: 13px;
  white-space: nowrap;
  line-height:12px;
  margin: 0;
  padding: 0;
}
.ol-popup #wp_desc pre {
  font-size: 11px;
}
.ol-popup:after, .ol-popup:before { top: 100%; border: solid transparent; content: " ";
                                    height: 0; width: 0; position: absolute; pointer-events: none; }
.ol-popup:after  { border-top-color: white;   border-width: 10px; left: 48px; margin-left: -10px; }
.ol-popup:before { border-top-color: #cccccc; border-width: 11px; left: 48px; margin-left: -11px; }
.ol-popup-closer { text-decoration: none; position: absolute; top: 2px; right: 8px; }
.ol-popup-closer:after {content: "X";}

#map {
  position: relative;
}
#zm_view {
  background: rgba(255,255,255,0.8);
  position: absolute;
  font-size: 14px;
  color: #000000;
  padding: 0px 5px;
  bottom: 20px;
  width: auto;
  height: auto;
  left: 0px;
  z-index: 10;
}
#ll_view {
  background: rgba(255,255,255,0.8);
  position: absolute;
  font-size: 14px;
  color: #000000;
  padding: 0px 5px;
  bottom: 0px;
  left: 0px;
  z-index: 10;
}
#ll_view #lonlat_change {
  width: 30px;
  height: 20px;
  cursor: pointer;
}
#ll_view #lonlat_change,
#ll_view #lonlat {
  display: inline-block;
  vertical-align: middle;
}

#center_mark {
  background-image: url("../../common/images/center_mark.png");
  background-repeat: no-repeat;
  position: absolute;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  transform: translateX(calc(-50% + 12px)) translateY(calc(-50% + 12px));
  z-index: 11;
}

.ol-scale-line {
  left: 3px !important;
  bottom: 24px !important;
  background: rgba(255,255,255,0.8) !important;
}
.ol-scale-line .ol-scale-line-inner {
  border: 2px solid #3b3b3b;
  border-top: none;
  color: #000000;
  font-size: 0.7em;
}

/*距離測定用のスタイル*/
.dist-popup {
  display: none;
  position: absolute;
  background-color: white;
  -moz-box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  -webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
  padding: 5px;
  border-radius: 10px;
  width: 100px;
  border: 1px solid #929292;
  bottom: 12px;
  left: -40px;
  font-size: 0.7em;
}
.dist-popup:after, .dist-popup:before { top: 100%; border: solid transparent; content: " ";
  height: 0; width: 0; position: absolute; pointer-events: none; }
.dist-popup:after  { border-top-color: white;   border-width: 10px; left: 38px; margin-left: -10px; }
.dist-popup:before { border-top-color: #cccccc; border-width: 11px; left: 38px; margin-left: -11px; }