@charset "UTF-8";
/* CSS Document */
/*テーブルタイトル----------------------------*/
.tbl_title {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
}
.tbl_title span {
  display: inline-block;
}
/* ==============================================
ボタン小（テーブル内）　幅固定（td内に１つ）
=============================================== */
table .btn_s {
  margin: 0px auto 0 auto;
  width: 80px;
  text-align: center;
  padding: 3px 0;
  /*cursor: pointer;*/
  border-radius: 4px;
  /*background-color: #94F2A4;*/
  border: solid 1px #54BF66;
  transition: 0.5s; /*hover処理の時間*/
}
table .btn_s:hover {
  background-color: #5AB4BD;
  color: #ffffff;
}
/*テーブル内のボタン----------------------------*/
table a {
  text-decoration: none;
  color: #44A01B;
}
@media only screen and (max-width: 749px) {
  table .btn_s {
    width: 60px;
    text-align: center;
    padding: 0px 0;
  }
}
/* ==============================================
ボタン小　幅フリー  <span class="btn_s_free">スポーツ振興課</span>
=============================================== */
/*発注見通し工事で使用*/
/*テーブル内のボタン----------------------------*/
table .btn_s_free {
  margin: 2px 2px 2px 0; /*複数点の場合必須*/
  text-align: center;
  padding: 3px 6px;
  /*cursor: pointer;*/
  border-radius: 4px;
  /*background-color: #94F2A4;*/
  border: solid 1px #54BF66;
  transition: 0.5s; /*hover処理の時間*/
}
table .btn_s_free:hover {
  background-color: #5AB4BD;
  color: #ffffff;
}
/* =============================================

テーブル基本レイアウト

============================================== */
table.tbl_bace {
  width: 100%;
  /*max-width: 800px;*/ /*各テーブルで指定*/
  margin: 0px auto 0px 0;
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
}
.tbl_bace th {
  border-bottom: solid 2px #8CDAA8;
  padding: 6px 8px;
  background-color: #C6F1D6;
}
.tbl_bace tr {
  border-top: solid 1px #8CDAA8;
}
.tbl_bace tr:last-child {
  border-bottom: solid 1px #8CDAA8;
}
.tbl_bace th, .tbl_bace td {
  vertical-align: middle;
  padding: 6px 8px;
  box-sizing: border-box;
  border-right: solid 1px #8CDAA8
}
.tbl_bace th:last-child, .tbl_bace td:last-child {
  border-right: solid 0px;
}
@media (max-width: 749px) {
  .tbl_bace td {
    padding: 6px 3px;
  }
}




/*******************************************************
ディバイスサイズ設定
============================================= */
/*@media  (max-width: 749px) {
}*/
/* タブレット用 */
@media (min-width: 750px) and (max-width: 1023px) {}
/* Desktop View------------------------------- */
@media (min-width: 1024px) {}