@charset "UTF-8";
.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

/* ------------------
 main content Overwrite
 ------------------- */
/* contents area */
[id="mainContainer"] {
  width: 1200px;
}

/* ------------------
 map content base style
 ------------------- */
.dataBox {
  border-top: 3px solid #544cad;
  display: flex;
  justify-content: space-between;
}

.dataBox .sidePanel {
  background-color: #ffffff;
  box-shadow: 2px 0px 2px 0px rgba(0, 0, 0, 0.2);
  width: 190px;
  z-index: 10;
  padding: 5px 10px;
  vertical-align: bottom;
  display: block;
}

.dataBox .legendPanel {
  display: none;
}

.dataBox .mapBox {
  width: 990px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

/* ------------------
 side panel style
 ------------------- */
.sidePanel {
  height: 600px;
}

.sidePanel .panelName {
  font-size: 16px;
  line-height: 25px;
  border-bottom: 4px solid #d0e0f7;
}

.sidePanel .panelName + .dispLayer {
  border-top: none;
}

.sidePanel .dispLayer {
  padding: 5px 0;
  border-top: solid 1px #b4b3c6;
}

.sidePanel .dispLayer li {
  padding-top: 2px;
}

.sidePanel .dispLayer li.layerGroup {
  padding: 0;
  padding-left: 25px;
  background: url("../img/common/icon_arrow03.png") no-repeat left top;
}

.sidePanel .dispLayer li label {
  position: relative;
  line-height: 1.1rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 2px 0 3px 5px;
}

.sidePanel .dispLayer li label [type="radio"] {
  position: absolute;
  margin: 0 5px 0 -2px;
}

.sidePanel .dispLayer li label [type="radio"] + span {
  display: inline-block;
  padding-left: 20px;
  line-height: 18px;
}

.sidePanel .dispLayer li label [type='checkbox'] + .dummy {
  margin: 0 -8px 0 -1px;
}

.sidePanel .dispLayer li label [type='checkbox'] + .dummy + span {
  line-height: 18px;
  padding-left: 12px;
}

.sidePanel .dispLayer:last-child {
  padding-bottom: 0;
}

/* ------------------
 map header style
 ------------------- */
.mapHeader {
  background-color: #f6f6fb;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.mapHeader .headerL {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 26px;
  width: auto;
}

.mapHeader .headerL .nowTime {
  margin-right: 45px;
  line-height: 1.6rem;
}

.mapHeader .headerL .timeSlider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 5px;
}

.mapHeader .headerL .timeSlider .sliderBox {
  width: 250px;
  height: 46px;
  display: none;
  margin: -10px 20px;
  padding: 10px 0 0;
  position: relative;
}

.mapHeader .headerL .timeSlider .sliderBox .slider {
  position: absolute;
  width: 100%;
  vertical-align: middle;
  font-size: 1.4rem;
  background-color: transparent;
  border-color: transparent;
  cursor: pointer;
}

.mapHeader .headerL .timeSlider .sliderBox .slider .ui-slider-handle {
  text-decoration: none;
  text-align: center;
  background: transparent;
  border: solid 2px #544cad;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapHeader .headerL .timeSlider .sliderBox .slider .ui-slider-handle:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 70%;
  height: 70%;
  background: #544cad;
}

.mapHeader .headerL .timeSlider .sliderBox .sliderLabel {
  margin: 0 -25px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.mapHeader .headerL .timeSlider .sliderBox .sliderLabel li {
  width: 14%;
  text-align: center;
  font-size: 12px;
  margin-bottom: -3px;
}

.mapHeader .headerL .timeSlider .sliderBox .sliderBg {
  position: absolute;
  width: 100%;
  height: 20px;
  margin-top: -2px;
  background: url("../img/gis/bg_slider.png") no-repeat center;
  background-size: 100% auto;
}

.mapHeader .headerL .timeSlider .sliderBox[id="forecast_slider"] .sliderBg {
  background-image: url("../img/gis/bg_sliderF.png");
}

.mapHeader .headerL .timeSlider button {
  position: relative;
  min-width: 0;
  width: 26px;
  height: 26px;
}

.mapHeader .headerL .timeSlider button:before, .mapHeader .headerL .timeSlider button:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 5px;
  margin-left: 0;
}

.mapHeader .headerL .timeSlider button.play {
  /* 再生 */
}

.mapHeader .headerL .timeSlider button.play:before {
  left: 8px;
}

.mapHeader .headerL .timeSlider button.pause {
  /* 一時停止 */
}

.mapHeader .headerL .timeSlider button.pause:before {
  left: 4px;
}

.mapHeader .headerL .timeSlider button.pause:after {
  right: 4px;
}

.mapHeader .headerL .timeSlider button.prev {
  /* 巻き戻し */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.mapHeader .headerL .timeSlider button.prev:before {
  top: 6px;
  left: 4px;
}

.mapHeader .headerL .timeSlider button.prev:after {
  top: 6px;
  right: 3px;
}

.mapHeader .headerL .timeSlider button.next {
  /* 早送り */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.mapHeader .headerL .timeSlider button.next:before {
  top: 6px;
  left: 3px;
}

.mapHeader .headerL .timeSlider button.next:after {
  top: 6px;
  right: 3px;
}

.mapHeader .headerL .timeSlider button.skip {
  /* 1番未来 */
}

.mapHeader .headerL .timeSlider button.skip:before {
  left: 5px;
}

.mapHeader .headerL .timeSlider button.skip:after {
  right: 5px;
}

.mapHeader .headerL .timeSlider button.old {
  /* 1番過去 */
}

.mapHeader .headerL .timeSlider button.old:before {
  left: 5px;
}

.mapHeader .headerL .timeSlider button.old:after {
  right: 5px;
}

.mapHeader .headerL .timeSlider button:hover:before, .mapHeader .headerL .timeSlider button:hover:after {
  border-color: #ffffff;
}

.mapHeader .headerL .timeSlider button:disabled:before, .mapHeader .headerL .timeSlider button:disabled:after {
  border-color: #898989;
}

.mapHeader .headerL .timeSlider .play:before {
  border: 7px solid transparent;
  border-left: 12px solid #35279B;
  margin-right: -10px;
}

.mapHeader .headerL .timeSlider .play:hover:before, .mapHeader .headerL .timeSlider .play:disabled:before {
  border-right-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.mapHeader .headerL .timeSlider .pause:before, .mapHeader .headerL .timeSlider .pause:after {
  border-right: 6px solid #35279B;
  height: 14px;
}

.mapHeader .headerL .timeSlider .prev:before, .mapHeader .headerL .timeSlider .prev:after {
  border: 6px solid transparent;
  border-right: 9.6px solid #35279B;
  margin-left: -7px;
}

.mapHeader .headerL .timeSlider .prev:hover:before, .mapHeader .headerL .timeSlider .prev:hover:after, .mapHeader .headerL .timeSlider .prev:disabled:before, .mapHeader .headerL .timeSlider .prev:disabled:after {
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.mapHeader .headerL .timeSlider .next:before, .mapHeader .headerL .timeSlider .next:after {
  border: 6px solid transparent;
  border-left: 9.6px solid #35279B;
  margin-right: -7px;
}

.mapHeader .headerL .timeSlider .next:hover:before, .mapHeader .headerL .timeSlider .next:hover:after, .mapHeader .headerL .timeSlider .next:disabled:before, .mapHeader .headerL .timeSlider .next:disabled:after {
  border-right-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.mapHeader .headerL .timeSlider .skip:before {
  border: 7px solid transparent;
  border-left: 12px solid #35279B;
  margin-right: -8px;
}

.mapHeader .headerL .timeSlider .skip:after {
  border-right: 3px solid #35279B;
  height: 14px;
}

.mapHeader .headerL .timeSlider .skip:hover:before, .mapHeader .headerL .timeSlider .skip:disabled:before {
  border-right-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.mapHeader .headerL .timeSlider .old:before {
  border-right: 3px solid #35279B;
  height: 14px;
}

.mapHeader .headerL .timeSlider .old:after {
  border: 7px solid transparent;
  border-right: 12px solid #35279B;
  margin-left: -8px;
}

.mapHeader .headerL .timeSlider .old:hover:after, .mapHeader .headerL .timeSlider .old:disabled:after {
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.mapHeader .headerL .timeSlider button {
  margin-right: 3px;
}

.mapHeader .headerL .timeSlider button.pause:disabled, .mapHeader .headerL .timeSlider button.play:disabled {
  display: none;
}

.mapHeader .headerL .timeSlider .switch {
  font-size: 0;
  margin-right: 5px;
}

.mapHeader .headerL .timeSlider .switch button {
  width: auto;
  display: inline-block;
  margin: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.mapHeader .headerL .timeSlider .switch button:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-right: -1px;
}

.mapHeader .headerL .timeSlider .switch button.is-selected {
  background: #544cad linear-gradient(#544cad 50%, #544cad);
  color: #ffffff;
  pointer-events: none;
}

.mapHeader .headerR {
  align-items: center;
  height: 26px;
  width: auto;
  justify-content: flex-end;
}

.mapHeader .headerR .searchLocation {
  display: inline-block;
}

.mapHeader .headerR .searchLocation input {
  height: 26px;
  width: 150px;
  margin: 0;
}

.mapHeader .headerR [type='button'] {
  background: #544cad linear-gradient(#544cad 50%, #544cad);
  border: none;
  color: #ffffff;
}

.mapHeader .headerR [type='button']:hover {
  cursor: pointer;
  background: rgba(84, 76, 173, 0.6) linear-gradient(rgba(84, 76, 173, 0.6) 50%, rgba(84, 76, 173, 0.6));
  color: #ffffff;
}

.mapHeader .headerR [type='button']:disabled {
  cursor: default;
  background: none;
  background-color: #c3c3c3;
  color: #232323;
}

.mapHeader .headerR [type='button'].search {
  position: relative;
  min-width: 0;
  transition: background .15s;
  vertical-align: middle;
  font-size: 0;
  height: 26px;
  width: 26px;
}

.mapHeader .headerR [type='button'].search:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 26px;
  width: 26px;
  background-repeat: no-repeat;
  background-image: url("../img/common/icon_search.png");
  background-position: center;
}

.mapHeader .headerR [type='button'].print {
  position: relative;
  min-width: 0;
  transition: background .15s;
  vertical-align: middle;
  font-size: 0;
  height: 26px;
  width: 26px;
  width: auto;
  background-position: 10px center;
  background-size: 14px 17px;
  padding: 3px 10px 0 35px;
  font-size: 14px;
  letter-spacing: 0.5rem;
}

.mapHeader .headerR [type='button'].print:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 26px;
  width: 26px;
  background-repeat: no-repeat;
  background-image: url("../img/common/icon_print.png");
  background-position: center;
}

.mapHeader .headerR [type='button'].print:hover {
  background-position: 10px center;
}

.mapHeader .headerR [type='button'].setting {
  position: relative;
  min-width: 0;
  transition: background .15s;
  vertical-align: middle;
  font-size: 0;
  height: 26px;
  width: 26px;
}

.mapHeader .headerR [type='button'].setting:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 26px;
  width: 26px;
  background-repeat: no-repeat;
  background-image: url("../img/common/icon_setting.png");
  background-position: center;
}

/* ------------------
 map contents style
 ------------------- */
#mapWrapper {
  border: solid 1px #b4b3c6;
  border-left: none;
  height: 555px;
  position: relative;
}

#mapWrapper #mapCanvas {
  width: 100%;
  height: 100%;
  border: none;
}

#mapWrapper .leaflet-container .opacity_slider_box {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  top: 5px;
  font-size: 14px;
  vertical-align: middle;
  padding: 0 10px;
}

#mapWrapper #opacity_slider {
  width: 120px;
  margin: 10px 15px;
  display: inline-block;
  vertical-align: middle;
  border: solid 1px #7d7d7d;
}

#mapWrapper #opacity_slider .ui-slider-handle {
  text-decoration: none;
  text-align: center;
  background: #7d7d7d;
  border: solid 1px #7d7d7d;
}

#mapWrapper #opacity_slider .ui-slider-handle .cur-value {
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
  position: relative;
  top: -14px;
  width: auto;
}

#mapWrapper .leaflet-marker-icon.meshNo {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  color: #636363;
  pointer-events: none;
}

#mapWrapper .leaflet-marker-icon.meshNo div {
  text-align: center;
}

#mapWrapper .leaflet-marker-icon.meshNo-lv13 {
  font-size: 14px;
  width: 80px !important;
  height: 20px !important;
  margin-left: -40px !important;
  margin-top: -10px !important;
}

#mapWrapper .leaflet-marker-icon.meshNo-lv14 {
  font-size: 28px;
  width: 160px !important;
  height: 40px !important;
  margin-left: -80px !important;
  margin-top: -20px !important;
}

#mapWrapper .leaflet-marker-icon.meshNo-lv15 {
  font-size: 56px;
  width: 320px !important;
  height: 80px !important;
  margin-left: -160px !important;
  margin-top: -40px !important;
}

#mapWrapper .leaflet-marker-icon.meshNo-lv16 {
  font-size: 112px;
  width: 640px !important;
  height: 160px !important;
  margin-left: -320px !important;
  margin-top: -80px !important;
}

#mapWrapper .leaflet-marker-icon.meshNo-lv17 {
  font-size: 224px;
  width: 1280px !important;
  height: 320px !important;
  margin-left: -640px !important;
  margin-top: -160px !important;
}

#mapWrapper .mapPanel {
  position: absolute;
  height: auto;
  z-index: 1000;
}

#mapWrapper .mapPanel .panel-back {
  display: none;
}

#mapWrapper .mapPanel .panel-label {
  height: 20px;
  background-color: #ffffff;
}

#mapWrapper .mapPanel .panel-label span {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  background: #7d7d7d url("../img/common/panel_open.png") no-repeat right 10px center;
}

#mapWrapper .mapPanel .panel-label span:hover {
  cursor: pointer;
  background-color: rgba(125, 125, 125, 0.6);
}

#mapWrapper .mapPanel .panel-label.is-open span {
  background-image: url("../img/common/panel_close.png");
}

#mapWrapper .mapPanel.open .panel-label span {
  background-image: url("../img/common/panel_close.png");
}

#mapWrapper .mapPanel .panel-box {
  display: none;
  padding: 0 10px;
  border: solid 1px #7d7d7d;
  color: #232323;
  background-color: #ffffff;
}

#mapWrapper .mapPanel .dataTbl {
  margin: 10px 0;
}

#mapWrapper .mapPanel .dataTbl caption {
  text-align: left;
}

#mapWrapper .mapPanel .dataTbl th, #mapWrapper .mapPanel .dataTbl td {
  height: auto;
  line-height: 1.2rem;
  font-size: 12px;
}

#mapWrapper .mapPanel[id="dataPanel"] {
  top: 15px;
  right: 15px;
  width: 230px;
}

#mapWrapper .mapPanel[id="dataPanel"] .panel-label span:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 20px;
  margin-right: 10px;
  background: url("../img/common/icon_info03.png") no-repeat left center;
  vertical-align: text-top;
}

#mapWrapper .mapPanel[id="dataPanel"].open .panel-box {
  display: block;
}

#mapWrapper .mapPanel[id="examplePanel"] {
  bottom: 15px;
  left: 15px;
  width: auto;
}

#mapWrapper .mapPanel[id="examplePanel"] .panel-label {
  width: 100px;
}

#mapWrapper .mapPanel[id="examplePanel"].open .panel-box {
  display: flex;
}

#mapWrapper .mapPanel[id="examplePanel"] .dataTbl + .dataTbl {
  margin-left: 10px;
}

#mapWrapper .mapPanel[id="examplePanel"] .dataTbl {
  width: auto;
}

/* ------------------
 凡例cssの上書き
 ------------------- */
.mapExample {
  position: relative;
  right: auto;
  bottom: auto;
}

.mapExample .legend-caption {
  line-height: 0.8rem;
}

.mapExample .legend-box.detail {
  position: absolute;
  top: -120px;
  width: 235px;
  border: solid 1px #b4b3c6;
}

.mapExample .legend-box.detail [type="button"] {
  min-width: 0;
}

.horizontal .label {
  margin: 0px 0 -5px -10px;
  line-height: 1.2rem;
}

.horizontal .caption {
  margin-bottom: -5px;
}

/* ------------------
 土砂警戒区域の凡例
 ------------------- */
.mapExample_Dosya tr:nth-child(even) {
  background-color: #ffffff;
}

.mapExample_Dosya .sample {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 4px;
  vertical-align: middle;
  position: relative;
}

.mapExample_Dosya .sample:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
}

.mapExample_Dosya .sample.YZONE {
  border: solid 3px rgba(251, 202, 6, 0.7);
}

.mapExample_Dosya .sample.YZONE:after {
  border-left: solid 17px rgba(251, 202, 6, 0.3);
}

.mapExample_Dosya .sample.RZONE {
  border: solid 3px rgba(255, 18, 18, 0.7);
}

.mapExample_Dosya .sample.RZONE:after {
  border-left: solid 17px rgba(255, 18, 18, 0.3);
}
