@charset "utf-8";

/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font: 12px/1.0 "Hiragino Kaku Gothic Pro", "メイリオ", Verdana, Arial, sans-serif;
  color: #313131;
}

body {
  height: 99%;
}

header,
main,
footer {
  max-width: 1280px;
  width: 100%;
  font-size: 0.9rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  overflow: hidden;
}

header h1 {
  color: #313131;
  font-size: 1.2rem;
  margin: 8px;
  padding: 8px;
  border: 1px solid #313131;
  border-radius: 5px;
  letter-spacing: 5px;
  font-weight: 400;
  float: left;
}

.wrap {
  font-size: 0.9rem;
  line-height: 1.5rem;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}

.formR {
  text-align: right;
}

.formL {
  text-align: left;
}

.map {
  width: 99%;
  height: 65vh;
  border: solid 1px #313131;
  font-size: 0.9rem;
}

.chart {
  width: 99%;
  height: 120px;
}

.list {
  margin-bottom: 20px;
}

.list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin: 3px;
  padding: 3px;
}

.list ul li {
  margin: 2px;
  padding: 2px;
}

.contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  height: 100%;
  width: 100%;
}

.item {
  height: 100%;
  width: 33%;
  text-align: center;
  border: none;
}

@media only screen and (max-device-width: 500px) {
  img,
  iframe {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/***** leaflet.js *****/

.latlon {
  font-size: 0.5rem;
  font-style: italic;
  color: #777;
}

.info {
  padding: 5px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(133, 104, 104, 0.3);
  border-radius: 5px;
}

.info h2 {
  font-size: 100%;
  line-height: 1.2rem;
  margin: auto;
  color: #777;
  text-align: center;
}

.legend {
  line-height: 16px;
  color: #777;
}

.legend i {
  width: 14px;
  height: 14px;
  float: left;
  margin-right: 8px;
}

.leaflet-tooltip {
  text-align: center;
  padding: 1px;
  opacity: 0.9;
}

.leaflet-popup {
  text-align: center;
}

.leaflet-popup-close-button {
  display: none;
}

.leaflet-popup-content {
  margin: 5px 5px;
  text-align: center;
  line-height: 1.2;
  font-size: 100%;
}

.leaflet-pulsing-icon {
  border-radius: 100%;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.75);
}

.leaflet-pulsing-icon:after {
  content: "";
  border-radius: 100%;
  height: 300%;
  width: 300%;
  position: absolute;
  margin: -100% 0 0 -100%;
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }

  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}

/***** chart.js *****/
.chart-container {
  width: 210px;
  height: 250px;
  overflow: hidden;
}