@charset "utf-8";

/* ===============
titleスタイル
=============== */
.business-bg-img {
    background-image: url(../images/business/business-bg-img3.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    max-width: 100%;
    opacity: 0.7;
    height: 310px;
}

.main img {
    width: 100%;
    height: 310px;
}

.title {
    text-align: center;
    margin-top: 60px;
}

.title::after{
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.title h1 {
    font-size: 32px;
    font-weight: bold;
}

/* ===============
item-listスタイル
=============== */
.item-list {
    width: 930px;
    max-width: 90%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 240px);
    column-gap: 95px;
    row-gap: 70px;
    justify-content: center;
}

.item-list dd {
    margin-top: 10px;
}
/* ===============
footerスタイル
=============== */
.footer {
    margin-top: 100px;
}

@media (max-width: 800px) {
    .item-list {
        margin-top: 45px;
        row-gap: 40px;
        justify-content: center;
    }
}