@charset "UTF-8";
.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

/* ------------------
 reset style
 ------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* form */
[type="button"], [type="submit"], button, textarea, select {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
}

select::-ms-expand {
  display: none;
}

a {
  color: #0033cc;
  text-decoration: underline;
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

/* ------------------
 base setting
 ------------------- */
body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  width: 100%;
}

.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

/* ------------------
 header style
 ------------------- */
.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

/* ---------------
 Breadcram
 ---------------- */
/* ヘッダの基本レイアウト */
.header {
  width: 1680px;
  margin: 0 auto;
  height: 40px;
}

.header_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.header_item {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.header_item:not(.title) {
  margin-left: auto;
}

.login_info {
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.login_info_item {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.login_info_caption {
  text-align: right;
  margin-right: 8px;
}

.login_info_detail {
  position: relative;
  min-width: 200px;
  cursor: pointer;
}

.login_info_detail:after {
  content: '▼';
  display: inline;
  position: absolute;
  top: 10px;
  right: 8px;
  color: #232323;
  pointer-events: none;
}

.login_info_detail:hover {
  transition: background-color .2s;
  background-color: #d1c0af;
}

.login_info_detail:hover:after {
  color: #582c00;
}

.login_info .details {
  padding: 0 8px;
  display: inline-block;
}

.login_info .adminMenu {
  position: absolute;
  width: 200px;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  display: none;
  z-index: 10;
  border: 1px solid #b3a698;
  box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.3);
}

.login_info .adminMenu .menu_item {
  width: 184px;
  height: 32px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.login_info .adminMenu .menu_item:not(:last-child) {
  border-bottom: 1px solid #ccb0a5;
}

.login_info .adminMenu .menu_item > .item_label {
  padding: 0 8px;
  text-decoration: none;
  color: #232323;
  width: 100%;
}

.login_info .adminMenu .menu_item > .item_label:hover {
  transition: background-color .2s;
  background-color: #ede4da;
}

.login_info .account_name {
  margin-left: 4px;
  padding-right: 16px;
}

.naviLink {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.naviLink_item {
  margin-left: 24px;
  padding-left: 28px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: no-repeat 0 50%;
}

.naviLink_item a {
  color: inherit;
  text-decoration: none;
}

.naviLink_item a:hover {
  border-bottom: 1px solid #232323;
}

.naviLink [id="landslide"] {
  background-image: url("../img/common/icon_link_kasen.png");
}

.naviLink [id="cautionMenu"] {
  background-image: url("../img/common/icon_link_info.png");
}

/* Global Navigation */
.globalNav {
  position: relative;
  min-width: 1680px;
  height: 24px;
  font-size: 14px;
  border-top: 3px solid #733900;
  background-color: #e6e0da;
  box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.3);
}

.globalNav_items {
  position: relative;
  height: 100%;
  width: 1680px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.globalNav_item {
  position: relative;
  width: 340px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  color: #232323;
}

.globalNav_item > .item_label {
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  color: inherit;
  border: none;
  background: linear-gradient(to bottom, #733900 0%, #733900 33.33333%, transparent 33.33333%, transparent 100%);
  background-repeat: repeat-y;
  background-size: 1px 3px;
  background-position: left 1px;
}

.globalNav_item:last-child {
  border: none;
  background: linear-gradient(to bottom, #733900 0%, #733900 33.33333%, transparent 33.33333%, transparent 100%);
  background-repeat: repeat-y;
  background-size: 1px 3px;
  background-position: right 1px;
}

.globalNav_item.is_current {
  background-color: #582c00;
  color: #ffffff;
}

.globalNav_item:hover {
  transition: background-color .2s;
  background-color: #d1c0af;
  cursor: pointer;
}

.globalNav_item:hover.is_current {
  color: #232323;
}

.globalNav_item.has_subnav > .item_label:after {
  content: '▼';
  display: inline;
  position: relative;
  left: 8px;
  color: inherit;
  pointer-events: none;
}

.globalNav_item.has_subnav:not(.is_current) > .item_label:after {
  color: #582c00;
}

.globalNav_subnav {
  position: absolute;
  top: 21px;
  left: 0;
  width: 100%;
  border: 1px solid #b3a698;
  background-color: #ffffff;
  box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: none;
}

.globalNav .subnav-item {
  height: 32px;
  width: 260px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.globalNav .subnav-item:not(:last-child) {
  border-bottom: 1px solid #ccb0a5;
}

.globalNav .subnav-item > .item_label {
  width: 100%;
  text-decoration: none;
  padding: 0 8px;
  color: #232323;
}

.globalNav .subnav-item > .item_label:hover {
  transition: background-color .2s;
  background-color: #ede4da;
}

/* ------------------
 main content base style
 ------------------- */
/* contents area */
[id="mainContainer"] {
  position: relative;
  width: 1680px;
  margin: 0 auto;
  padding: 0 0 8px 0;
}

.pageInfo {
  position: relative;
}

/* observation time */
.dataTime {
  position: absolute;
  right: 0;
  top: 4px;
  height: 28px;
  line-height: 28px;
}

.dataTime [type='button'].update {
  background: none;
  min-width: 0;
  border: none;
  height: 28px;
  width: 28px;
  vertical-align: middle;
  color: transparent;
  background-repeat: no-repeat;
  transition: background .15s;
  background-image: url("../img/common/btn_update_nomal.png");
}

.dataTime [type='button'].update:hover {
  background-image: url("../img/common/btn_update_over.png");
}

.dataTime [type='button'].update:active {
  background-image: url("../img/common/btn_update_press.png");
}

[type='button'].delete .icon-delete {
  margin-right: 2px;
  background: url("../img/common/icon_delete.png") 0 1px no-repeat;
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  width: 20px;
}

/* bread cramb */
.breadcramb {
  position: relative;
  height: 36px;
}

.breadcramb_items {
  list-style: none;
  margin: 0 auto;
  font-size: 12px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.breadcramb_item {
  margin: -3px 0 0;
}

.breadcramb_item:not(:first-child):before {
  content: "＞";
  padding: 0 5px;
}

.breadcramb_item.top {
  background: url("../img/common/icon_top.png") no-repeat 0 2px;
  padding: 0 0 0 16px;
}

/* each page contents */
.pageContents {
  position: relative;
}

/* ------------------
 footer style
 ------------------- */
.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

/* footer */
.footer {
  width: 1680px;
  margin: 0 auto;
  position: relative;
  border-top: 2px solid #733900;
}

.footer.admin {
  border-top: 1px solid #ccb8a3;
}

.footer_items {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.footer_item {
  padding: 0 16px;
  line-height: 1;
}

.footer_item:not(:first-child) {
  border-left: 1px solid #ccb8a3;
}

.footer.register {
  border: none;
}

.footer.register .footer_control {
  width: 1680px;
  margin: 0 auto;
  border-top: 1px solid #ccb8a3;
  background-color: #ffffff;
  height: 64px;
  position: fixed;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

@media print {
  .footer.register {
    display: none;
  }
}

/* author */
.authorBox {
  width: 1680px;
  margin: 0 auto;
  height: 64px;
  position: relative;
  border-top: 1px solid #ccb8a3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.authorBox_name {
  font-size: 14px;
  font-weight: bold;
  padding-right: 20px;
}

.authorBox_contact {
  border-left: 1px solid #ccb8a3;
  padding-left: 20px;
}

/* copyright */
.copyright {
  width: 1680px;
  margin: 0 auto;
  height: 24px;
  position: relative;
  background-color: #f2ece6;
  text-align: center;
  line-height: 1.9;
}

/* form element style */
.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

[type='text'], [type='password'], textarea, select {
  margin: 0 4px;
  background-color: #ffffff;
  border: 1px solid #ccb9a5;
  box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  padding: 2px;
  color: #232323;
  border-radius: 2px;
}

[type='text']:disabled, [type='password']:disabled, textarea:disabled, select:disabled {
  background: none;
  background-color: #f0f0f0;
  border-color: #c9c9c9;
  color: #898989;
}

[type='text'][readonly], [type='password'][readonly], textarea[readonly], select[readonly] {
  background: none;
  background-color: #f0f0f0;
  border-color: #c9c9c9;
  color: #898989;
}

[type='text'].year, [type='password'].year, textarea.year, select.year {
  width: 80px;
}

[type='text'].mdhm, [type='password'].mdhm, textarea.mdhm, select.mdhm {
  width: 60px;
}

textarea {
  resize: vertical;
}

[type='text'], [type='password'] {
  padding: 2px 4px;
}

select {
  background-image: url("../img/common/icon_select_triangle.png");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  padding-right: 16px;
}

[type="radio"] {
  background-color: #ffffff;
  border: 1px solid #ccb9a5;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  vertical-align: middle;
  margin: 4px;
}

[type="radio"]:checked:after {
  content: "";
  background-color: #582c00;
  display: block;
  height: 10px;
  width: 10px;
  margin: 3px;
  /* ボーダー分引く */
  border-radius: 50%;
}

[type="checkbox"] {
  background-color: #ffffff;
  border: 1px solid #ccb9a5;
  border-radius: 4px;
  vertical-align: middle;
  margin: 4px;
}

button, [type='button'], [type='submit'] {
  padding: 0 4px;
  height: 22px;
  background: #ffffff linear-gradient(#ffffff, #f2f1f0);
  border: 1px solid #b2a698;
  color: #232323;
  text-align: center;
  border-radius: 5px;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 12px;
  transition: all .2s;
  line-height: 1.6;
  vertical-align: middle;
  min-width: 100px;
}

button:hover, [type='button']:hover, [type='submit']:hover {
  cursor: pointer;
  background: #e5d3c0 linear-gradient(#e5d3c0, #d1c0af);
  color: #582c00;
}

button:disabled, [type='button']:disabled, [type='submit']:disabled {
  background: none;
  background-color: #f0f0f0;
  border-color: #c9c9c9;
  color: #898989;
}

button.strong, [type='button'].strong, [type='submit'].strong {
  background: #582c00 linear-gradient(#794b1d, #582c00);
  border: 1px solid #b2a698;
  color: #ffffff;
}

button.strong:hover, [type='button'].strong:hover, [type='submit'].strong:hover {
  cursor: pointer;
  background: #d1c0af linear-gradient(#e5d3c0, #d1c0af);
  color: #582c00;
}

button.bigger, [type='button'].bigger, [type='submit'].bigger {
  height: 64px;
  font-size: 15px;
  width: 288px;
}

button.button_action, [type='button'].button_action, [type='submit'].button_action {
  height: 32px;
  width: 100px;
  line-height: 2;
  margin: 0 8px;
}

.link_d {
  color: #898989;
}

.pageSelector {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.pageSelector:before {
  margin: 8px 4px;
  content: "";
  display: block;
  width: 288px;
  -ms-flex-order: 1;
      order: 1;
}

.pageSelector:after {
  margin: 8px 4px;
  content: "";
  display: block;
  width: 288px;
}

.pageSelector [type="button"] {
  margin: 8px 4px;
}

.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

.pageTitle {
  margin-top: 4px;
  font-size: 15px;
  background: url("../img/common/icon_title.png") no-repeat 0 5px;
  padding-left: 20px;
}

.contentsTitle1:not(:first-child) {
  margin-top: 16px;
}

.contentsTitle1 h2 {
  margin-top: 8px;
  margin-bottom: 8px;
  height: 32px;
  font-size: 17px;
  padding-left: 8px;
  color: #232323;
  line-height: 1.8;
  background-color: #f2ece6;
  border-bottom: 3px solid #f27900;
}

.contentsTitle1 h3 {
  margin: 8px 0 0;
  font-size: 15px;
  background: url("../img/common/icon_subtitle.png") no-repeat 0 0;
  padding-left: 16px;
}

.contentsTitle1 h4:before {
  margin: 0 4px;
  vertical-align: middle;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #f27900;
}

.lblCap {
  color: #582c00;
  font-weight: bold;
}

[id="contentsLeft"] {
  width: 49%;
  display: inline-block;
  vertical-align: top;
}

.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

[id="contentsRight"] {
  width: 49%;
  padding-left: 8px;
  display: inline-block;
  vertical-align: top;
}

[id="contentsRight"] table.tmpFileTbl {
  margin: 0 0 16px 16px;
  border-collapse: separate;
  border-spacing: 8px;
  width: 100%;
  margin-left: 0;
}

[id="contentsRight"] table.tmpFileTbl td {
  vertical-align: top;
  width: 270px;
}

[id="contentsRight"] table.tmpFileTbl .tmpHyouji {
  border-collapse: collapse;
  width: auto;
  background: #F4F3DD;
  text-align: center;
}

[id="contentsRight"] table.tmpFileTbl .tmpHyouji .title {
  vertical-align: middle;
  height: 35px;
  color: #582c00;
  font-weight: bold;
}

[id="contentsRight"] table.tmpFileTbl .tmpHyouji .image {
  height: 110px;
  vertical-align: middle;
}

[id="contentsRight"] table.tmpFileTbl .tmpHyouji .image img {
  cursor: pointer;
}

[id="contentsRight"] table.tmpFileTbl .tmpHyouji .imagesize {
  width: 200px;
  height: 153px;
  margin-bottom: 15px;
}

.risk_lv0 {
  background-color: transparent;
  color: #232323;
}

.risk_lv1 {
  background-color: #F2E700;
  color: #232323;
}

.risk_lv2 {
  background-color: #FF2800;
  color: #ffffff;
}

.risk_lv3 {
  background-color: #AA00AA;
  color: #ffffff;
}

.risk_lv4 {
  background-color: #0C000C;
  color: #ffffff;
}

.rain_lv0 {
  background-color: transparent;
}

.rain_lv1 {
  background-color: #CCFFFF;
}

.rain_lv2 {
  background-color: #00CCFF;
}

.rain_lv3 {
  background-color: #00FF00;
}

.rain_lv4 {
  background-color: #FFFF00;
}

.rain_lv5 {
  background-color: #FF9900;
}

.rain_lv6 {
  background-color: #FF00FF;
}

.rain_lv7 {
  background-color: #FF0000;
}

[id="loadingSpinner"] {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 10010;
}

[id="loadingSpinner"] div {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  border: 16px solid rgba(255, 255, 255, 0.2);
  border-right-color: #ffffff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  animation: load 1.0s infinite linear;
}

@keyframes load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
