@charset "UTF-8";
@import url("../../css/reset.css");

/* 各年度毎の施工実績一覧用CSS */

html {
  font-size: 14px;
  line-height: 1.8;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}
:root {
  --main-color: #007D43;
  --main-color-rgb: 0, 125, 67;
  --sub-color: #88C892;
  --sub-color-rgb: 136, 200, 146;
  --head-high: 4em
}
.wrap {
  width:100%;
  max-width: 1180px;
  margin: 0 auto;
  /* padding: 0 0.5rem; */
  text-align: center;
}

/* タイトル */
h1 {
  font-size: 1.1rem;
}

/* 一覧 */
table.workslist {
/* table { */
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
  /* border-collapse: separate; */
  border-spacing: 0rem;
}
/* .workslist tr { */
tr {
  border-bottom: 1px solid #333;
  /* inline-block使用時に出来る空白を削除 */
  font-size: 0;
  line-height: 0;
}
td {
  text-align: left;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8;
}
td:nth-child(1) {
  width: 100%;
  font-weight: 600;
  padding-top: 1.5rem;
}
td:nth-child(2) {
  width: 30%;
}
td:nth-child(4) {
  width: 70%;
  text-align: right;
}
td:nth-child(3) {
  display: none;
}
@media (min-width: 521px) {
}
@media (min-width: 852px) {
  table.workslist td:nth-child(1) {
    width: 40%;
  }
  table.workslist td:nth-child(2) {
    width: 10%;
  }
  table.workslist td:nth-child(3) {
    display: inline-block;
    width: 23%;
    /* font-size: 13px; */
  }
  table.workslist td:nth-child(4) {
    width: 27%;
  }
}