@charset "utf-8";

@media screen and (max-width:768px) {
  .apsd-overview-wrap{
    display: none;
  }
}

.apsd-overview{
  background-color: #fff;
  padding: 30px;
  display: flex;
  gap: 24px;
  border-radius: 8px;
  .apsd-overview-thumb{
    width: 140px;
    flex-shrink: 0;
    img{
      width: 100%;
      height: auto;
    }
  }
  .apsd-overview-body{
    h2{
      font-size: 22px;
      color: #005BAC;
      font-weight: bold;
      letter-spacing: 0;
      line-height: 1;
    }
    h3{
      margin-top: 16px;
      font-size: 18px;
      font-weight: bold;
      letter-spacing: 0;
      line-height: 1;
    }
    ul{
      margin-top: 4px;
      li{
        font-size: 18px;
        line-height: 1.6;
      }
    }
  }
  @media screen and (max-width:1000px) {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.apsd-gallery{
  margin-top: 24px;
  display: flex;
  gap: 24px;
  img{
    width: calc(calc(100% - 24px) / 2);
    height: auto;
  }
}

.apsd-note{
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
}