@charset "UTF-8";
/* ######################################################################################

　display　表示・非表示

###################################################################################### */
@media print, screen and (min-width: 768px) {
  div.pc, ul.pc, ol.pc, li.pc, dl.pc, dt.pc, dd.pc {
    display: block;
  }
  div.sp, ul.sp, ol.sp, li.sp, dl.sp, dt.sp, dd.sp {
    display: none;
  }

  span.pc, img.pc, em.pc, br.pc {
    display: inline;
  }
  span.sp, img.sp, em.sp, br.sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  div.sp, ul.sp, ol.sp, li.sp, dl.sp, dt.sp, dd.sp {
    display: block;
  }
  div.pc, ul.pc, ol.pc, li.pc, dl.pc, dt.pc, dd.pc {
    display: none;
  }

  span.sp, img.sp, em.sp, br.sp {
    display: inline;
  }
  span.pc, img.pc, em.pc, br.pc {
    display: none;
  }
}

.wallBelt {
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media print, screen and (min-width: 768px) {
  .wallBelt {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}




.botderBottom{border-bottom: 1px solid #8ABC03;}


/* ######################################################################################

　アクセシビリティ対応　sr-only

###################################################################################### */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



/* ====================================================
　基本設定
==================================================== */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

caption {
  margin-bottom: 0.75em;
  text-align: left;
  font-size: 80%;
  font-weight: bold;
}

th, td {
  border-color: #cccccc;
  padding: 0.5em;
  text-align: left;
  font-weight: normal;
}

@media print, screen and (min-width: 768px) {
  th {
    background: #f7f7f7;
    padding: 0.5em;
    vertical-align: top;
    font-size: 14px;
  }

  td {
    padding: 0.5em;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  th {
    background: #f7f7f7;
    padding: 0.5em;
  }

  td {
    padding: 0.5em;
  }
}
/* ====================================================
　囲み
==================================================== */
.borderHorizon th, .borderHorizon td {
  border-width: 1px 0;
}
.borderHorizon tr + tr td, .borderHorizon tr + tr th {
  border-top-width: 0;
}

.borderBox th, .borderBox td {
  border-width: 1px;
}
.borderBox tr + tr td, .borderBox tr + tr th {
  border-top-width: 0;
}
.borderBox th + th,
.borderBox th + td,
.borderBox td + td,
.borderBox td + td {
  border-left-width: 0;
}

/* ====================================================
　線種
==================================================== */
.borderSolid th {
  border-style: solid;
}
.borderSolid td {
  border-style: solid;
}
.borderSolid td:before {
  border-style: solid;
}

.borderDotted th {
  border-style: dotted;
}
.borderDotted td {
  border-style: dotted;
}
.borderDotted td:before {
  border-style: dotted;
}

.borderDashed th {
  border-style: dashed;
}
.borderDashed td {
  border-style: dashed;
}
.borderDashed td:before {
  border-style: dashed;
}

