@charset "UTF-8";

.hero_single {
    background: url(/img/equipment/bg-hero_single.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.equipment_tb {
    width: 100%;
}

.equipment_tb thead tr {
    background: #F7F7F7;
    mix-blend-mode: multiply;
    border-top: solid 1px #000;
}

.equipment_tb thead tr th,
.equipment_tb thead tr td {
    color: #0097BA;
}

.equipment_tb thead tr,
.equipment_tb tbody tr {
    border-bottom: solid 1px #000;
    height: 70px;
}

.equipment_tb thead tr th,
.equipment_tb tbody tr th {
    vertical-align: middle;
    padding: 10px 30px;
}

.equipment_tb thead tr td,
.equipment_tb tbody tr td {
    vertical-align: middle;
    padding: 10px 20px;
}

/* main */

.main_list_item {
    display: flex;
    align-items: start;
    gap: 60px;
    margin-bottom: 40px;
}

.main_list .main_list_item:last-child {
    margin-bottom: 0;
}

.main_list_item_img img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.main_list_item_cnt {
    flex: 1;
}

.main_list_item_cnt_ttl {
    font-size: 24px;
    font-weight: bold;
}


/* example */

.example_ttl {
    margin-bottom: 30px;
    font-size: 24px;
}

.example_cnt.-first {
    margin-bottom: 50px;
}

.example_cnt_img {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.example_cnt p {
    text-align: center;
}


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

    .hero_single {
        background: url(/img/equipment/bg-hero_single_sp.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    /* equipment */

    .equipment_list {
        overflow: scroll;
    }

    .equipment_tb {
        width: 270%;
    }

    .main_list_item_img {
        text-transform: center;
    }

    .main_list_item_cnt_ttl {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .equipment_list_comment {
        margin-bottom: 10px;
    }
    
    /* main */

    .main_list_item {
        flex-flow: column;
        gap: 20px;
    }

    /* example */

    .example_cnt_img {
        flex-flow: column;
        gap: 10px;
    }

    .example_ttl {
        font-size: 20px;
    }
}