@charset "UTF-8";

.sec{
  position: relative;
  padding-block: 150px;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .sec{
    padding-block: 75px;
  }
}

/* tableBox
---------------------------------------------- */
.tableBox{
  max-width: 1000px;
  border: 1px solid #999;
  margin-top: 80px;
}
.tableItem{
  display: flex;
}
.tableItem + .tableItem{
  border-top: 1px solid #999;
}
.tableItem__ttl{
  width: 190px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 2;
  padding: 25px 25px 25px 50px;
}
.tableItem__date{
  width: 120px;
  background-color: #f9f9f9;
  border-left: 1px solid #999;
  font-size: 16px;
  letter-spacing: 0.15em;
  line-height: 2;
  padding: 25px 40px 25px 25px;
  text-align: right;
}
.tableItem__date.hasChild{
  display: flex;
  flex-direction: column;
  padding: 0;
}
.tableItem__date .child{
  width: 120px;
  font-size: 16px;
  letter-spacing: 0.15em;
  line-height: 2;
  padding: 25px 40px 25px 25px;
  text-align: right;
}
.tableItem__date .child._flex1{
  flex: 1;
}
.tableItem__txt{
  flex: 1;
  background-color: #fff;
  border-left: 1px solid #999;
  font-size: 16px;
  letter-spacing: 0.15em;
  line-height: 2;
  /* padding: 25px 50px; */
}
.tableItem__child{
  font-size: 16px;
  letter-spacing: 0.15em;
  line-height: 2;
  padding: 25px 50px;
}
.tableItem__child + .tableItem__child{
  border-top: 1px dotted #ccc;
}
.tableItem .borderT{
  border-top: 1px solid #999;
}

.tableItem__list > li::before{
  top: 1em;
}

@media screen and (max-width: 768px) {
  .tableBox{
    max-width: 560px;
    margin-top: 40px;
  }

  .tableItem__ttl{
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .tableItem__date{
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .tableItem__date .child{
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .tableItem__txt{
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .tableItem__child{
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}

/* outline
---------------------------------------------- */
.outline{}
.outlineBox .tableItem__ttl{
  background-color: #f8fbf6;
  color: rgb(var(--color-green));
}
.outlineBox .map{
  margin-left: 20px;
}
.outlineBox .map img{
  margin-right: 10px;
  vertical-align: -5px;
}
.tableItem__list > li + li{
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .outlineBox .tableItem{
    display: block;
  }
  .outlineBox .tableItem__ttl{
    width: 100%;
    padding: .5em 1em;
  }
  .outlineBox .tableItem__txt{
    width: 100%;
    border-left: none;
  }
  .tableItem__child{
    padding: .5em 1em;
  }
  .outlineBox .map{
    margin-left: 0;
  }
  .outlineBox .map img{
    width: 12px;
    margin-right: 5px;
    vertical-align: -3px;
  }
}

/* history
---------------------------------------------- */
.history{}
.history__ttl::after{
  transform: scale(1);
}
.historyBox .tableItem__ttl{
  background-color: #f6f8fc;
  color: rgb(var(--color-blue));
}

@media screen and (max-width: 768px) {
  .historyBox .tableItem{
    display: grid;
    grid-template-columns: 80px calc(100% - 80px);
    grid-template-rows: 40px 1fr;
  }
  .historyBox .tableItem__ttl{
    width: auto;
    grid-area: 1/1/2/2;
    padding: 7px .5em;
    text-align: center;
  }
  .historyBox .tableItem__date{
    width: auto;
    grid-area: 2/1/3/2;
    border-top: 1px solid #ccc;
    border-left: none;
    padding: 7px .4em;
  }
  .historyBox .tableItem__txt{
    grid-area: 1/2/3/3;
    display: flex;
    flex-direction: column;
  }
  .historyBox .tableItem__child{
    display: flex;
    align-items: center;
    flex: 1;
    padding: 6px 1em;
  }
  .historyBox .tableItem__date .child{
    width: auto;
    padding: 7px .4em;
  }
  .historyBox .tableItem__date.hasChild{
    padding: 0;
  }
}