@charset "UTF-8";

/* 共通 */
.sectitlebox {
  margin-bottom: 40px;
}
.sectitlebox .sectitle {
  font-size: 35px;
  color: var(--color2);
}
@media screen and (max-width:768px) {
  .sectitlebox {
    margin-bottom: 30px;
  }
  .sectitlebox .sectitle {
    font-size: 22px;
  }
}

/* セクション1 */
.sec01 {
  background-color: var(--color6);
}
.sec01 .topbox {
  align-items: flex-start;
  justify-content: space-between;
}
.sec01 .childbox,
.sec01 .pict {
  width: 48%;
  box-sizing: border-box;
}
.sec01 .childtitle {
  font-size: 22px;
  border-bottom: dashed 1px var(--color3);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.sec01 .childtxt {
  line-height: 1.75;
  text-align: justify;
}
.sec01 .box {
  border-radius: 10px;
  background-color: #fff;
  padding: 30px;
  margin-top: 40px;
}
.sec01 .boxC {
  background-color: #fff;
}
.sec01 .boxtitle {
  font-size: 25px;
  margin-bottom: 30px;
}
.sec01 .boxC .boxtitle {
  color: var(--color1);
}
.sec01 .box .list {
  gap: 30px;
}
.sec01 .box .item {
  width: calc((100% - 60px)/3);
  border-radius: 10px;
  background-color: var(--color6);
  padding: 20px 10px;
  box-sizing: border-box;
}
.sec01 .box .item .item_title {
  font-size: 18px;
  text-align: center;
  color: var(--color2);
}
.sec01 .box .item .item_title::after {
  content: "";
  width: 30px;
  border-bottom: dotted 2px var(--color2);
  margin: 15px auto 20px;
  display: block;
}
.sec01 .box .item .item_txt {
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}
.sec01 .chiid_inn {
  align-items: flex-start;
  justify-content: space-between;
}
.sec01 .chiid_inn .pict {
  width: 55%;
  box-sizing: border-box;
}
.sec01 .chiid_inn .childlist {
  width: 40%;
  box-sizing: border-box;
}
.sec01 .chiid_inn .childitem {
  text-align: justify;
  padding-left:1em;
  text-indent:-1em;
  margin-bottom: 10px;
}
.sec01 .chiid_inn .childitem:last-child {
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  .sec01 .topbox {
    flex-wrap: wrap;
    gap: 30px;
  }
  .sec01 .childbox,
  .sec01 .pict {
    width: 100%;
  }
  .sec01 .childtxt {
    font-size: 14px;
  }
  .sec01 .box {
    padding: 30px 20px;
  }
  .sec01 .boxtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .sec01 .boxC .boxtitle {
    margin-bottom: 30px;
  }
  .sec01 .box .list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .sec01 .box .item {
    width: 100%;
    padding: 20px;
  }
  .sec01 .chiid_inn {
    flex-wrap: wrap;
    gap: 30px;
  }
  .sec01 .chiid_inn .pict,
  .sec01 .chiid_inn .childlist {
    width: 100%;
  }
  .sec01 .chiid_inn .childitem {
    font-size: 14px;
  }
}

/* セクション2 */
.sec02 .box {
  border-radius: 10px;
  background-color: var(--color6);
  padding: 30px;
}
.sec02 .list {
  flex-wrap: wrap;
  gap: 30px;
}
.sec02 .item {
  width: calc((100% - 60px) / 3);
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}
.sec02 .item .icon {
  font-size: 40px;
  color: var(--color2);
  margin-bottom: 10px;
}
.sec02 .item .sub {
  color: var(--color2);
}
.sec02 .item .sub::after {
  content: "";
  width: 30px;
  border-bottom: dotted 2px var(--color2);
  margin: 15px auto 20px;
  display: block;
}
.sec02 .item .txt {
  font-size: 14px;
  text-align: justify;
  line-height: 1.75;
}
@media screen and (max-width:768px) {
  .sec02 .box {
    padding: 30px 20px;
  }
  .sec02 .list {
    gap: 20px;
  }
  .sec02 .item {
    width: 100%;
  }
}

/* セクション3 */
.sec03 {
  background-color: var(--color6);
}
.sec03 .list {
  flex-wrap: wrap;
  gap: 30px;
}
.sec03 .item {
  width: calc((100% - 30px)/2);
  border-radius: 10px;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
}
.sec03 .item .sub {
  font-size: 18px;
  color: var(--color2);
}
.sec03 .item .sub::after {
  content: "";
  width: 30px;
  border-bottom: dotted 2px var(--color2);
  margin: 15px auto 20px;
  display: block;
}
.sec03 .item .txt {
  font-size: 14px;
  text-align: justify;
  line-height: 1.75;
}
.sec03 .comment {
  font-size: 18px;
  line-height: 2;
  margin-top: 30px;
}
.sec03 .comment span {
  font-size: 20px;
  color: var(--color2);
  text-decoration: underline;
}
@media screen and (max-width:768px) {
  .sec03 .list {
    gap: 20px;
  }
  .sec03 .item {
    width: 100%;
  }
  .sec03 .comment {
    font-size: 14px;
  }
  .sec03 .comment span {
    font-size: 16px;
  }
}

/* セクション4 */
.sec04 .inn {
  background-color: var(--color6);
  padding: 40px;
}
.sec04 .box {
  justify-content: center;
}
.sec04 .list {
  margin: 30px 0;
}
.sec04 .item {
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.sec04 .item:last-child {
  margin-bottom: 0;
}
.sec04 .item i {
  font-size: 20px;
  color: var(--color2);
  margin-right: .5em;
}
.sec04 .txt {
  line-height: 1.75;
}
.sec04 .comment {
  font-size: 18px;
  line-height: 2;
}
.sec04 .comment span {
  font-size: 20px;
  color: var(--color2);
  text-decoration: underline;
}
@media screen and (max-width:768px) {
  .sec04 .inn {
    padding: 30px 20px;
  }
  .sec04 .txt {
    font-size: 14px;
  }
  .sec04 .item {
    font-size: 16px;
    text-align: justify;
  }
  .sec04 .comment {
    font-size: 14px;
  }
  .sec04 .comment span {
    font-size: 16px;
  }
}