/* ------------------------------
    表示切り替え（PC / SP）
------------------------------ */
.forPc {
    display: block;
}

.forSp {
    display: none;
}

@media screen and (max-width: 750px) {
    .forPc {
        display: none;
    }

    .forSp {
        display: block;
    }
}

/* ------------------------------
    グローバル修正系
------------------------------ */
.header {
    height: 12rem;
}

.subpage .main {
    padding-top: 0;
}

@media screen and (max-width: 750px) {
    .header {
        height: 16rem;
    }
}

/* ------------------------------
    KVセクション
------------------------------ */
.lineUpKv {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.lineUpKv_movie {
    width: 100%;
    height: calc(100svh - 25rem);
    position: relative;
    overflow: hidden;
}

.lineUpKv_movie video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lineUpKv_catch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7.2rem;
    color: #fff;
}

/* ------------------------------
    商品セクション（LINE UP）
------------------------------ */
.lineUpSection {
    padding: 12rem 0;
    position: relative;
}

.lineUpSection:last-of-type {
    padding-bottom: 0;
}

.lineUpSection::after {
    content: "";
    display: inline-block;
    width: 100vw;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.lineUpSection:last-of-type::after {
    display: none;
}

.lineUpSection_ttl {
    font-size: 6rem;
    text-align: center;
    font-weight: 500;
    margin-bottom: 12rem;
}

.lineUpSection_desc {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 150rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.lineUpSection_desc img {
    width: 60%;
}

.lineUpSection_desc p {
    width: 40%;
    font-size: 2rem;
    line-height: 1.8;
}

.lineUpSection_client {
    margin-top: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 5rem;
}

.lineUpSection_client .slickTtl {
    padding-bottom: 5rem;
    color: #000;
}

.lineUpSection_bottomCatch {
    font-size: 6rem;
    text-align: center;
    line-height: 1.8;
    color: #0086ac;
    margin: 10rem 0;
}

/* ------------------------------
    テーブル
------------------------------ */
.lineUpTableOuter {
    margin: 12rem 0;
}

table,
td,
th {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ccc;
    border-collapse: collapse;
}

td,
th {
    padding: 2rem;
}
.lineUpTable {
    width: 100%;
}
.tableHead th {
    width: 28rem;
}

.tableHead * {
    text-align: center;
}

.oshiboriTable .tableHead * {
    width: 20%;
}

.oshiboriTable .wideSmall {
    width: 10%;
}

td ul {
    padding-left: 1em;
    text-align: left;
    line-height: 1.6;
}

.taoruTable .tableHead td {
    width: 54rem;
}

.small {
    font-size: 0.7em;
}

.vertical {
    writing-mode: vertical-rl;
}

/* ------------------------------
    ボタン
------------------------------ */
.lineUpBtnWrapper {
    text-align: center;
}

.lineUpBtn img {
    width: 80rem;
}

/* ------------------------------
    SP（スマホ）スタイル
------------------------------ */
@media screen and (max-width: 750px) {
    .header_logo {
        position: relative;
        z-index: 1;
    }

    .subpage .main {
        padding-top: calc(100svh - 12rem);
    }

    .page .pageHead {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 4rem;
    }

    .lineUpKv {
        position: absolute;
        top: 0;
    }

    .lineUpKv_movie {
        height: 100svh;
    }

    .lineUpKv_movie video {
        width: auto;
        height: 110%;
    }

    .lineUpKv_catch {
        font-size: 4.8rem;
        width: 100%;
        text-align: center;
    }

    .lineUpSection {
        padding: 10rem 0;
    }

    .lineUpSection_ttl {
        margin-bottom: 6rem;
    }

    .lineUpSection_desc {
        flex-direction: column-reverse;
        padding: 0;
    }

    .lineUpSection_desc img,
    .lineUpSection_desc p {
        width: 100%;
    }

    .lineUpSection_desc p {
        font-size: 2.4rem;
        padding: 0 5rem;
    }

    .lineUpSection_spBlock {
        margin-top: -6rem;
    }

    .lineUpSection_spBlock h2 {
        font-size: 6rem;
        font-weight: 500;
        text-align: center;
        margin: 4rem 0;
    }

    .lineUpSection_spBlock p {
        font-size: 2.4rem;
        padding: 0 5rem;
        line-height: 1.8;
    }

    .lineUpSection_spBlock img {
        width: 100%;
    }

    .lineUpTableOuter {
        overflow-x: scroll;
        margin: 8rem 0;
    }

    .lineUpTable {
        width: 120rem;
    }

    table,
    td,
    th {
        font-size: 2.4rem;
    }

    .lineUpTable tbody {
        width: 100%;
    }

    .lineUpBtn img {
        width: 60rem;
    }

    .lineUpSection_bottomCatch {
        font-size: 4rem;
    }
}