@charset "UTF-8";

.sec .img-list-title {
  font-size: 24px;
  font-weight: bold;
  margin: 50px 0 10px;
  text-align: center;
}
.sec .img-list-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.sec .img-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.sec .img-list li {
  width: 25%;
}
.sec .flex-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
.sec .flex-content .text-area {
  width: 70%;
  margin-right: 4%;
}
.sec .flex-content .text-area p {
  line-height: 1.8;
  text-align: justify;
}
.sec .flex-content .img-area {
  max-width: 250px;
  width: 26%;
}

.sec2 .box-list {
  margin-bottom: 80px;
}
.sec2 .menu-box-title {
  font-size: 24px;
  font-weight: bold;
  margin: 50px 0 10px;
  text-align: center;
}
.sec2 .menu-box {
  max-width: 720px;
  display: flex;
  justify-content: space-between;
  border: solid 3px #63CDFD;
  border-radius: 35px;
  padding: 20px;
  margin: 0 auto;
}
.sec2 .menu-box .text-list {
  width: 69%;
  margin-right: 2%;
}
.sec2 .menu-box .text-list dt {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 7px;
}
.sec2 .menu-box .text-list dt:first-child {
  margin-top: 0;
}
.sec2 .menu-box .text-list dt::before {
  content: "●";
  color: #63CDFD;
  font-size: 12px;
  margin-right: 5px;
}
.sec2 .menu-box .text-list dd {
  line-height: 1.6;
}
.sec2 .menu-box .img-area {
  max-width: 193px;
  width: 29%;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .sec .img-list {
    gap: 10px 0;;
  }
  .sec .img-list li {
    width: 50%;
  }
  .sec .flex-content {
    flex-direction: column;
    gap: 20px 0;
    margin-bottom: 70px;
  }
  .sec .flex-content .text-area {
    width: 100%;
    margin-right: 0;
  }
  .sec .flex-content .img-area {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .sec2 .box-list {
    margin-bottom: 60px;
  }
  .sec2 .menu-box-title {
    font-size: 20px;
    margin: 40px 0 10px;
  }
  .sec2 .menu-box {
    flex-direction: column;
    border-radius: 25px;
    gap: 20px 0;
  }
  .sec2 .menu-box .text-list {
    width: 100%;
    margin-right: 0;
  }
  .sec2 .menu-box .img-area {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}