@charset "UTF-8";

.sec .box-solid-blue {
  border: solid 3px #63CDFD;
  border-radius: 35px;
  padding: 30px 7%;
  margin: -10px auto 120px;
}
.sec .box-solid-blue dt {
  background-color: #63CDFD;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  padding: 1px 10px 2px;
  margin: 20px 0 7px;
}
.sec .box-solid-blue dt:first-child {
  margin-top: 0;
}
.sec .box-solid-blue dd {
  line-height: 1.6;
}
.sec .flex-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
.sec .flex-content .text-area {
  width: 68%;
  margin-right: 4%;
}
.sec .flex-content .text-area .content-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}
.sec .flex-content .text-area .content-title::before {
  content: "●";
  color: #63CDFD;
  font-size: 14px;
  margin-right: 5px;
}
.sec .flex-content .text-area .content-text {
  line-height: 1.8;
  text-align: justify;
}
.sec .flex-content .img-area {
  max-width: 280px;
  width: 28%;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .sec .box-solid-blue {
    border-radius: 25px;
    padding: 20px;
    margin: 0 auto 60px;
  }
  .sec .flex-content {
    flex-direction: column;
    gap: 20px 0;
    margin-bottom: 50px;
  }
  .sec .flex-content .text-area {
    width: 100%;
    margin-right: 0;
  }
  .sec .flex-content .text-area .content-title {
    font-size: 20px;
  }
  .sec .flex-content .img-area {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}