* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
:focus {
  outline: none;
}
a {
  text-decoration: none;
}
#container {
  width: 100%;
}

body {
  background-color: #000;
}
/*
  カメラ
*/
.container_camera {
  display: flex;
  height: 30vh;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
}
#container01 {
  top: 0;
}
#container02 {
  top: 30vh;
}
#container03 {
  top: 60vh;
}
.image_camera {
  background-color: #000;
  width: 34vw;
  text-align: center;
}
.image_camera img {
  width: auto;
  height: 100%;
  cursor: pointer;
}
/*
  注意報・警報
*/
.container_warning {
  display: flex;
  height: 10vh;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
}
#container04 {
  top: 90vh;
}
.wrap-warning {
  padding: 10px;
  border: 3px solid #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  width: 20%;
  max-width: 150px;
  margin: 10px;
  justify-content: center;
}
/* 大雨特別警報 */
.color_black {
  background-color: #000;
  color: #fff;
}
/* 特別警報 */
.color_purple {
  background-color: #a0a;
  color: #fff;
}
/* 警報 */
.color_red {
  background-color: #ff2800;
  color: #fff;
}
/* 注意報 */
.color_yellow {
  background-color: #f2e700;
  color: #000;
}

/*
  モーダル
*/
#fadeLayer {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
#clickArea {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#preview_camera {
  margin: 0 auto;
}
/* デバイスが縦向きの場合の記述 */
@media (orientation: portrait) {
  #preview_camera {
    width: 90%;
    height: auto;
  }
}
/* デバイスが横向きの場合の記述 */
@media (orientation: landscape) {
  #preview_camera {
    height: 90%;
    width: auto;
  }
}
#legendArea {
  position: absolute;
  left: 0;
  bottom: 0;
  border-collapse: collapse;
}
#legendArea td {
  padding: 4px;
}
#target_name {
  position: absolute;
  top: 0%;
  left: 0%;
  font-size: 23px;
}
#linkArea {
  position: absolute;
  right: 0%;
  bottom: 0%;
  z-index: 12;
  color: #fff;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
}
