@charset "utf-8";

.title {
    height: 310px;
    background-image: url(../images/DAYS/bg-main.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
    margin-right: 700px;
    margin-top: 50px;
}

.title p {
    margin-right: 700px;
    margin-top: 10px;
}

.item-list {
    width: 930px;
    max-width: 90%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 240px);
    column-gap: 70px;
    row-gap: 60px;
    justify-content: center;
}

.item-list img {
    border-radius: 2%;
}

.item-list dl {
    margin-top: 10px;
}

.item-list dt {
    font-weight: bold;
    text-align: center;
}

.item-list dd {
    line-height: 20px;
    margin-top: 10px;
    text-align: center;

}

.footer {
    margin-top: 70px;
}

@media (max-width: 800px) {

    .title h1 {
        margin-right: 200px;
    }

    .title p {
        margin-right: 200px;
        margin-bottom: 200px;
    }

    .item-list {
        row-gap: 30px;
    }

}