@charset "utf-8";

.box01,
.box02 {
    margin-bottom: 50px;
}

.box02>p {
    margin-top: 40px;
}

.box01 ul,
.box02 ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.box01 ul li {
    width: 310px;
}

.box02 ul li {
    width: 480px;
}

.box01 ul li p,
.box02 ul li p {
    text-align: center;
    margin-top: 10px;
}

.box01 ul li p.description,
.box02 ul li p.description {
    text-align: left;
}

.box01 ul li p.list-title,
.box02 ul li p.list-title,
.box03 p.list-title {
    font-weight: bold;
}

.box01 .img-wrap,
.box02 .img-wrap {
    margin: 0 auto;
    width: 90%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.box02 .img-wrap.head {
    height: 350px;
    padding: 0 0 40px;
}

.box01 .img-wrap img,
.box02 .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

p.annotation {
    margin-top: 30px;
    padding: 5px;
    border: 1px solid #b3b3b3;
    width: fit-content;
}

@media screen and (max-width: 768px) {

    .box01 ul,
    .box02 ul {
        display: block;
    }

    .box01 ul li,
    .box02 ul li {
        width: 100%;
        margin-bottom: 40px;
    }
}