/*****************************************************************************
CSS only for 20260123_01 page
*****************************************************************************/
/* .TblData
-----------------------------------------*/
.TblData {
  background-color: #fff;
  border: solid 1px #d6d6d6;
  border-bottom: none;
  margin-bottom: 6px;
  margin-top: 10px;
}
.TblData table {
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .TblData table {
    font-size: 14px;
    font-size: 1.3rem;
  }
}
.TblData th {
  width: 30%;
  padding: 10px;
  text-align: center;
  vertical-align:middle;
  font-weight: bold;
  background-color: #d6d6d6;
  border: solid 1px #fff;
}
@media screen and (max-width: 976px) {
  .TblData th {
    padding: 10px 6px;
  }
}
.TblData td {
  vertical-align:middle;
  width: 70%;
  padding: 16px 20px;
  border-bottom: solid 1px #d6d6d6;
  border-right: dashed 1px #999999;
}
@media screen and (max-width: 767px) {
  .TblData td {
    padding: 10px 8px;
  }
}
.TblData td:last-child {
  border-right: none;
}
.TblData .ContentList {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .TblData .ContentList li {
    font-size: 14px;
  }
}
/* FigList
-----------------------------------------*/
.FigList {
  display: grid;
  gap: 20px;
  margin: 35px 0 25px;
}
.FigList--col2 {
  grid-template-columns: repeat(2, calc((100% - 24px) / 2));
}
@media screen and (max-width: 767px) {
  .FigList--col2 {
    grid-template-columns: 1fr;
  }
}
.FigList__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 15px 0;
}
.FigList__text {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .FigList__text {
    font-size: 14px;
  }
}
.FigList__title {
  margin-bottom: 3px;
  font-size: 18px;
  font-weight: 600;
  color: #004ea2;
}
@media screen and (max-width: 767px) {
  .FigList__title {
    font-size: 15px;
  }
}
.FigList__detail:has(iframe) {
  aspect-ratio: 3 / 2;
}
.FigList__detail iframe {
  width: 100%;
  height: 100%;
}