@charset "utf-8";

section {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: auto;
    margin-bottom: 30px;
}

.grid_3columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
    margin: auto;
    margin-bottom: 30px;
}

.grid img {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1020px) {
    .grid {

        width: fit-content;
    }

    .grid img {
        width: 100%;
        height: auto;
    }
}

.box_cable_items {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    box-sizing: border-box;
}

.box_cable_thumb {
    position: relative;
}

.box_cable_bd01 {
    position: absolute;
    left: 0;
    top: 0;
}

.box_cable_bd01 .list_note {
    display: flex;
}

.box_cable_bd01 .list_note li {
    display: block;
    width: max-content;
    padding: 2px 5px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    box-sizing: border-box;
}

.box_cable_bd01 .list_note li.note_red {
    background: #b71c1c;
}

.box_cable_bd01 .list_note li.note_blue {
    background: #1a76d2;
}

.box_cable_bd01 .list_note li.note_oranges {
    background: #e65100;
}

.box_cable_bd01 .list_note li.note_green {
    background: #689e39;
}

.box_cable_bd01 .list_note li.note_gold {
    background: #d2ac09;
}

.box_cable_thumb img {
    border: 2px solid #eeeeee;
}

.cable_ttl {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    border-bottom: 2px solid #b71c1c;
    color: #000;
    padding: 8px 0;
    box-sizing: border-box;
    margin: 10px 0;
}

.cable_des {
    min-height: 75px;
}

.lb-data .lb-number {
    display: none!important;
}

.lb-nav a.lb-next,
.lb-nav a.lb-prev {
    pointer-events: none!important;
}

.lb-nav a.lb-next:hover,
.lb-nav a.lb-prev:hover {
    opacity: 0;
}