@charset "UTF-8";

.container .section {
  padding-top: 0;
}
.container .box {
  margin-bottom: 60px;
}
.container .box:last-child {
  margin-bottom: 0;
}
.container .box .title {
  font-size: 18px;
  margin-bottom: 10px;
}
.container .box .item {
  text-align: justify;
  line-height: 1.75;
  margin-bottom: 10px;
}
.container .box .item:last-child {
  margin-bottom: 0;
}
.container .box .item .txt {
  padding-left:1em;
	text-indent:-1em;
}
.container .box .item .txt::before {
  content: "●";
  color: var(--color2);
}
.container .box .item table {
  margin-bottom: 20px;
}
.container .childlist {
  padding-left: 1em;
}
.container .box table tr th,
.container .box table tr td {
  white-space: nowrap;
  border-bottom: solid 1px var(--color1);
  padding: 10px 40px;
}
@media screen and (max-width:768px) {
  .container .box {
    margin-bottom: 40px;
  }
  .container .box .title {
    font-size: 16px;
  }
  .container .box .item {
    font-size: 14px;
  }
  .container .box table {
    width: 100%;
    box-sizing: border-box;
  }
  .container .box table tr th,
  .container .box table tr td {
    padding: 10px 20px;
  }
}