@charset "utf-8";
/* ==============================
equipment
=============================== */
.topicEquipment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 108px;
    font-size: 1.6rem;
    color: var(--main-white);
    background-image: url(../images/sub-page-main_setubi.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 24px;
}

.topicEquipment::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--main-white);
    margin-top: 8px;
}
    
.equipment {
    padding: 0 var(--contentPadding);
    margin-top: 40px;
    margin-bottom: 56px;
}

.setsubiPic {
    display: block;
    margin: 0 auto;
}

.name {
    font-size: 2rem;
    text-align: center;
    margin: 16px 0 48px 0;
}

/* equipment pc */
@media screen and (min-width: 769px) {
    .topicEquipment {
        height: 300px;
        font-size: 3rem;
        padding: 0 64px;
    }
    
    .subMain {
        width: 100%;
    }

    .equipment {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 32px;
    }
}
