#mixer {
    position: relative;
    width: 90%;
    margin: 100px auto;
}

.kv-section {
    margin: 0 auto;
    position: relative;
    max-width: 1400px;
}

.mixer-section {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    flex: 1 1 auto;
}

article {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
}


table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    empty-cells: hide;
}


/*--サイドメニュー--*/
.mixer-sidemenu {
    position: relative;
    flex: 0 0 35rem;
    margin-top: 80px;
}


@media(max-width: 1024px) {
    article {
        flex-direction: column-reverse;
    }

    .sm-sidemenu {
        margin: 0px auto;
        align-content: center;
        width: 80%;
    }
}


/*--KV--*/

.kv {
    position: relative;
    margin: 30px 0;
    display: flex;
    flex-direction: row;
}

.kv img {
    width: 45%;
    height: 420px;
    object-fit: cover;
    overflow: hidden;
}

.kv_text {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kv_text h2 {
    margin: 0;
    background-image: linear-gradient(to right,
            rgb(57, 185, 121) 60%, transparent);
    color: var(--color-white);
    padding: 10px;
    width: 60%;
}

.kv_text>p {
    font-size: 2.4rem;
    margin: 15px 0;
}

.kv_text>ul {
    list-style: none;
    font-size: 2.8rem;
    padding: 10px;
    background-color: var(--color-palegray);
    margin: 0;
}

.kv_text>ul>li {
    margin: 10px;
    padding: 8px;
    background-color: var(--color-white);
}

.kv_text>ul>li::before {
    position: relative;
    font-family: FontAwesome;
    content: "\f00c";
    color: var(--color-skyblue);
    font-size: 1.8rem;
    margin-right: 10px;
    padding: 0 1.5px;
    border: solid 2px var(--color-skyblue);
    border-radius: 3px;
    top: -4px;
}

@media(max-width: 1024px) {
    .kv {
        flex-direction: column;
    }

    .kv img {
        width: 80%;
        margin: 0 auto 30px;
    }
}


/*--ラインナップ--*/

.text1 {
    margin: 10px 0;
    font-size: 1.7rem;
}

.lineup-label {
    display: inline-block;
    background-image: linear-gradient(to right,
            rgb(107, 197, 167) 60%, transparent);
    padding: 10px;
    margin: 20px 0 10px;
    color: var(--color-white);
}

.lineup-label::before {
    content: "●";
}

.lineup-label::after {
    content: "";
    margin: 0 60px;
}

.lineup-box {
    display: flex;
    margin: 10px auto 20px;
    padding: 18px;
    width: 95%;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-palegray);
}

.item_box {
    box-sizing: border-box;
}

.item_box {
    position: relative;
    width: 45%;
}

.item_link {
    display: block;
}

.item_content {
    position: relative;
    overflow: hidden;
    height: 280px;
    background-color: var(--color-white);
}

.item_image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item_image img {
    height: 100%;
    width: 100%;
}

.item_mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
}

.item_mask-text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    font-size: 2rem;
    text-align: center;
    color: var(--color-white);
    transform: translateY(-50%);
}

.item_text {
    margin-top: 10px;
    text-align: center;
}

.item_box .item_link:hover .item_mask {
    opacity: 1;
}

/* -mask-from-left */
.item_box.-mask-from-left .item_mask {
    left: -100%;
    transition: left 0.4s ease, opacity 0.4s ease;
}

.item_box.-mask-from-left .item_link:hover .item_mask {
    left: 0;
}


.lineup-box table {
    border-collapse: collapse;
    height: 280px;
    width: 56%;
    text-align: center;
}

.lineup-box th {
    padding: 0 5%;
}

.lineup_title>th:nth-child(2) {
    text-align: right;
}

.lineup_title {
    background-color: var(--color-mosgreen);
    color: var(--color-white);
}

.lineup_sub>th {
    background-color: var(--color-white);
}

.lineup_sub2 td {
    height: 35px;
    background-color: var(--color-palegreen);
    border-left: solid 1px var(--color-white);
    text-align: center;
}

.lineup_data td {
    height: 55px;
    background-color: var(--color-white);
    border-left: solid 1px var(--color-whiteline);
}

.lineup_data td:nth-of-type(1),
.lineup_sub2 td:nth-of-type(1) {
    border: none;
}

.lineup_sub,
.lineup_sub2,
.lineup_data {
    border-right: 1px solid var(--color-whiteline);
}

.lineup_title>th,
.lineup_sub>th {
    font-size: 2.6rem;
}

.lineup_sub2>td,
.lineup_data>td {
    font-size: 2.2rem;
}

@media(max-width: 1024px) {
    .lineup-box {
        flex-direction: column-reverse;
        width: 80%;
    }

    .lineup-box>table {
        width: 100%;
    }

    .item_box {
        width: 100%;
    }

    .item_content {
        height: 370px;
    }

}