/* --------------------------------------------------

    2025　パークウインズ 指定席

-------------------------------------------------- */

/* - レイアウト
-------------------------------------------------- */

.section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--mt14_24);
}

.section .heading-leftline {
    margin-top: clamp(0.4rem, -13.7873rem + 18.4971vw, 3.6rem);
}

.heading-underline + .heading-simple.green,
.heading-underline + .heading-leftline {
    margin-top: 0;
}

/* - アコーディオン
-------------------------------------------------- */
.accordion-content .inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--mt14_24);
    justify-items: start;
    padding-bottom: var(--mt14_24);
}

/* --- 表 --- */
.accordion_block th span {
    display: block;
}

table.basic tbody > tr > td {
    padding-inline: var(--mt8_16);
}
.accordion_block tr td:first-child,
.accordion_block tr td:last-child {
    text-align: left;
}


/* - 画像切り替え
-------------------------------------------------- */


.section .img.pc {
    display: block;
}

.section .img.sp {
    display: none;
}


/* ------------------------------------------------------------

	767px以下

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

    /* - 画像切り替え
    -------------------------------------------------- */
    .section .img.pc {
        display: none;
    }

    .section .img.sp {
        display: block;
    }
}