@charset "UTF-8";

/* ===============================================
   1. リセット・基本スタイル
   =============================================== */
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clearfix {
    min-height: 1px;
}

* html .clearfix {
    height: 0px !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

#special {
    font-size: 14px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif !important;
    color: #000000 !important;
    list-style: none;
    line-height: 2.0em;
}

img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

a {
    transition: .2s;
    border: 0 !important;
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

a img {
    border: 0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc {
    display: none;
}

.sp {
    display: block;
}


/* ===============================================
   2. ヘッダー（special_head）
   =============================================== */
#special_head {
    margin: 0;
    padding: 0 !important;
    width: 100%;
    height: calc(100vw * 1.3);
    position: relative;
    background: #edeef2;
}

#special_head .logo {
    width: 40%;
    right: 5%;
    position: absolute;
    top: 2%;
    z-index: 100;
}

#special_head .main1 {
    width: 100%;
}

.attention {
    margin-top: 3%;
}


/* ===============================================
   4. Swiper
   =============================================== */
/* ===============================================
   無限スクロールスライダー
   =============================================== */
.slider-nav-wrap {
    width: 100%;
    margin: 0 0 10% 0;
    padding: 40px 0;
    background: #f2e88c;
    overflow: hidden;
}

.infinite-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.infinite-slider:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: infiniteScroll 30s linear infinite;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

/* ホバー時にアニメーションを一時停止 */
.slider-track:hover {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider-item {
    flex-shrink: 0;
    width: 180px;
    margin: 0 8px;
    pointer-events: auto;
}

.slider-card {
    display: block;
    text-decoration: none;
    color: #000;
    text-align: center;
    pointer-events: auto;
}

.slider-card__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.slider-card__txt {
    display: block;
    margin-top: 12px;
    font-family: "游明朝", "Yu Mincho", serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #333;
    pointer-events: none;
}


/* ===============================================
   5. Lineup Toggle Box（基本スタイル）
   =============================================== */
.lineup-toggle-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 100vh;
    overflow: hidden;
    padding: 10px 0;
    align-items: center;
}

.lineup-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ffffff;
    padding-left: 3%;
    padding-right: 3%;
}

.lineup-item:nth-child(even) {
    flex-direction: row-reverse;
}

.lineup-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lineup-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    width: 43%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lineup-header:hover {
    opacity: 1 !important;
    /*opacity: 0.7;*/
}

.lineup-number {
    width: 38%;
    color: #333;
    line-height: 1;
    font-family: 'Times New Roman', serif;
    margin-bottom: 8px;
}

.lineup-info {
    width: 100%;
}

.lineup-name-en {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-bottom: 4px;
}

.lineup-name-ja {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.3;
    font-family: "游明朝", "Yu Mincho", serif;
    font-feature-settings: "palt";
}

.lineup-content {
    flex: 0 1 auto;
}

.lineup-image-pair {
    display: flex;
    flex-direction: row;
    gap: 4px;
    width: 100%;
}

.lineup-image-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 150px;
    max-height: 100px;
    flex: 1;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lineup-image-item:hover img {
    opacity: 1 !important;
    /*opacity: 0.8;*/
}

.lineup-label {
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 10;
    width: calc(100vw*0.08) !important;
    height: calc(100vw*0.08) !important;
}

.lineup-image-item img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 2px;
    object-fit: cover;
    object-position: center 20%;
    aspect-ratio: 3 / 2;
    transition: opacity 0.4s ease-in-out;
}

/* ===============================================
   6. SPボトムナビ
   =============================================== */
.spnavbox {
    display: none;
}

ul.spfootnav {
    position: fixed;
    bottom: 0;
    width: 100%;
    list-style: none;
    margin: 0 0 -0.5% 0;
    padding: 0;
    z-index: 200 !important;
    background: #ffffff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-direction: row;
    box-shadow: 0px -5px 10px 0px rgba(197, 197, 197, 0.3);
}

ul.spfootnav li {
    margin: 0;
    padding: 0;
    width: 33.33333%;
}


/* ===============================================
   7. 3カラムレイアウト
   =============================================== */
.main-wrapper {
    position: relative;
}

.content-wrapper {
    background: #ffffff;
}


/* ===============================================
   8. lineup01/02/03
   =============================================== */

.lineup01 {}

.lineup02 {
    margin-top: 10%;
}

.lineup03 {
    margin-top: 10%;
}

.lineup04 {
    margin-top: 10%;
}

.lineup05 {
    margin-top: 10%;
}


.item_main .photo1 {
    width: 80%;
    margin: 10% 5% 0 15%;
    transition: opacity 0.3s ease;
}

.item_main .photo2 {
    width: 80%;
    margin: -3% 15% 0 5%;
    transition: opacity 0.3s ease;
}


/* 動画 */
.lineup03-movie {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 8% 0;
}

.lineup03-movie .video-container {
    width: 80%;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.lineup03-movie video {
    width: 80% !important;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===== lineup03 movie side copy ===== */
.lineup03-movie .movie-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.lineup03-movie .video-container {
    position: relative;
    z-index: 1;
}

.movie-side-text {
    position: absolute;
    /*top:50%;*/
    /*transform:translateY(-50%);*/
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "Times New Roman", "Noto Serif JP", serif;
    font-size: 1.5vw;
    letter-spacing: .18em;
    color: #111;
    line-height: 1.15;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
}

.movie-side-left {
    left: 10%;
    bottom: 0;
}

.movie-side-right {
    right: 10%;
    top: 0;
}

/* SP adjustments */
@media (max-width: 999px) {
    .movie-side-text {
        font-size: 4vw;
        letter-spacing: .16em;
    }

    .movie-side-left {
        left: 5%;
        bottom: 0;
    }

    .movie-side-right {
        right: 5%;
        top: 0;
    }
}


/* ===============================================
   8. クレジット（商品リスト）
   =============================================== */
.creditlist {
    list-style: none;
    padding: 0 !important;
    width: 90%;
    margin: 5% auto 10% auto;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.creditlist ul {
    padding: 0 !important;
    margin: 0 !important;
}

.creditlist li {
    list-style: none !important;
    border: 1px solid #fffffff !important;
    background: #ffffff !important;
    color: #000000 !important;
    margin-bottom: 10px;
}

.creditlist a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    padding: 3px 0;
    line-height: 1;
    align-items: center;
    width: 100%;
    color: #000000;
}

.creditlist span {
    display: block;
}

.creditlist .item_name {
    width: 26%;
    text-align: left !important;
    font-size: 0.9em;
}

.creditlist .item_brand {
    width: 22%;
    text-align: left !important;
    font-size: 0.9em;
}

.creditlist .item_price {
    text-align: right;
    width: 29%;
    font-size: 0.9em;
}

.creditlist .item_price small {
    font-size: 0.7em;
}

.creditlist .buybtnbox {
    width: 20%;
}

.creditlist li.underline {
    border-bottom: 1px solid #d3d0cd;
    margin-bottom: 3%;
    padding-bottom: 3%;
}


.buybtn {
    height: 2.1em;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    cursor: pointer;
}

.creditlist li.underline .buybtn.on {
    color: #fff;
    background: #f1f2d6;
    border: 1px solid #f1f2d6;
}

.creditlist li.underline .buybtn.off {
    color: #000;
    background: #efeff6;
    border: 1px solid #efeff6;
}

/*.buybtn:hover {
    color: #000;
    background: #eee;
}

.buybtn:hover .buybtnText,
.buybtn:hover .buyarrow {
    filter: invert(1);
}*/

.buybtnbox {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 5.5em;
    margin-left: 2%;
}

.buybtnbox:hover {}

.buybtn:hover .buybtnText {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.buybtn:hover .buybtnArrow img {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.buybtnText {
    color: #000;
    font-size: 12px;
    letter-spacing: 0 !important;
    -webkit-transform: translateX(1em);
    transform: translateX(1em);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    text-align: center;
    margin: 0 auto !important;
}

.buybtnArrow {
    overflow: hidden;
    width: 20px;
    margin-left: 5px;
}

.buybtnArrow img {
    display: block;
    width: 100%;
    -webkit-transform: translateX(-2em);
    transform: translateX(-2em);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}


/* ===============================================
   9. bluebox・フッター関連
   =============================================== */
.bluebox {
    padding-bottom: 5%;
}

#otherarea {
    width: 100%;
    margin: 0 auto !important;
    padding-top: 10% !important;
    padding-bottom: 30px !important;
}

.btnarea {
    width: 90%;
    margin: 0 auto;
    margin: 0 5% 20% 5%;
    letter-spacing: 0.5px;
}

.button {
    margin: 0 auto 5% auto;
    width: 100%;
    padding: 3% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    color: #000000;
    cursor: pointer;
    position: relative;
    font-weight: 400;
    font-style: normal;
}

.btnarrow {
    position: absolute;
    right: 20px !important;
    top: 17px !important;
    width: 35px;
    height: 8px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: skew(45deg);
}

.btnarea .button {
    border: none !important;
}

.vol2 {
    width: 90%;
    margin: 0 5% 20% 5% !important;
    border: 1px solid #000;
    text-align: center;
}

/* アコーディオン */
.linkarea {
    margin-bottom: 10%;
}

.accordion {
    width: 100%;
    text-align: center !important;
}

.acmenu {
    margin-left: 5% !important;
    width: 90%;
    font-size: 15px;
    text-align: center;
    margin-bottom: 5%;
    border: 1px solid #000;
}

.acmenu ul {
    padding: 0 !important;
    margin: 0 !important;
}

.acmenu ul li {
    list-style: none !important;
    border: 1px solid #fffffff !important;
    background: #ffffff !important;
    color: #000000 !important;
}

.acmenu ul li:first-child,
.acmenu ul li:nth-child(2),
.acmenu ul li:nth-child(3),
.acmenu ul li:nth-child(4),
.acmenu ul li:nth-child(5),
.acmenu ul li:nth-child(6) {
    background: #bababa;
    border: none !important;
}

.acmenu ul li a {
    display: block;
    color: #000000 !important;
    cursor: pointer;
    line-height: 50px;
    font-size: 15px;
    text-align: center !important;
}

.acmenu ul li a:hover {
    background: #cccccc !important;
}

.acmenu>ul>li>ul {
    display: none;
}

.acsubmenu li {
    width: 100%;
    display: block;
    height: 50px;
    position: relative;
    line-height: 50px;
    font-size: 14px;
    margin-bottom: 1px;
    text-align: center !important;
}

.sustainable {
    background: #f5f5f5;
    text-align: center;
    padding: 10% 5% 1% 5%;
}

.sustainable p {
    font-size: 1.1em;
    margin: 5% 0;
    line-height: 1.8em;
}

.sustainable .btnarea {
    margin-bottom: 10% !important;
}

.sustainable .button {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif !important;
    padding: 3% 0 0 0 !important;
    border-bottom: 7px solid #c5e4c7 !important;
}

.instagram {
    background: #f5f5f5;
    text-align: center;
    padding: 10% 5% 1% 5%;
    margin-top: 10%;
    margin-bottom: 10%;
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif !important;
}

.instagram .instagramttl {
    width: 25%;
    margin: 0 auto 5% auto;
}

.instagram p {
    font-size: 1.2em;
    margin: 5% 0;
    line-height: 1.8em;
}

.infoarea {
    text-align: center;
    width: 100%;
    color: #000;
}

.infoarea p {
    margin: 5% auto 3% auto;
    text-align: center;
    width: 100%;
}

.infoarea .btnarea .button {
    color: #000;
    background-color: transparent !important;
    border: 1px solid #000 !important;
}

.infoarea .btnarea .btnarrow {
    right: 15px !important;
}

.page-top a {
    width: 60px;
    position: fixed;
    bottom: 40px;
    right: 15px;
    padding: 10px;
    display: block;
    z-index: 1000;
}

.page-top a img {
    width: 100%;
    height: auto;
}

.page-top a:hover {
    bottom: 50px;
}

/* スマホ版 特集商品一覧ボタン */
.sp-tokushu-btn {
    position: fixed;
    bottom: 90px;
    right: 15px;
    z-index: 1000;
    display: block;
}

.sp-tokushu-btn a {
    display: block;
    width: 60px;
    /*padding: 10px;*/
    padding-bottom: 10px;
}

.sp-tokushu-btn img {
    width: 100%;
    height: auto;
    display: block;
}

.copyright {
    text-align: center;
    font-size: 10px;
    padding-bottom: 50px;
    margin: 40px auto 0 auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}


/* ===============================================
   10. メディアクエリ - タブレット (768px 〜 999px)
   ※PCレイアウト（1000px〜）になる手前までの調整
   =============================================== */
@media screen and (min-width: 768px) {
    /* タブレット用のスタイルは削除されました */
}

/* スマホとタブレット共通 (PC 1000px未満) */
@media screen and (max-width: 999px) {
    .buybtnbox {
        width: 5.5em;
        margin-left: 2%;
    }

    .buybtn {
        height: 1.5em;
    }

    .buybtnText {
        font-size: 0.8em;
        line-height: 1.25;
        letter-spacing: 0em;
        -webkit-transform: translateX(1em);
        transform: translateX(1em);
    }

    .buybtnArrow {
        width: 20px;
        margin-left: 2px;
    }
}













/* ===============================================
   11. メディアクエリ - PC (1000px〜)
   ※3カラムレイアウト適用
   =============================================== */
@media screen and (min-width: 1000px) {

    /* スマホ用要素を非表示 */
    .sp {
        display: none !important;
    }

    /* スマホ用特集ボタンを非表示 */
    .sp-tokushu-btn {
        display: none;
    }

    /* PC要素を表示 */
    .pc {
        display: block !important;
    }

    #special {
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* ヘッダー */
    #special_head {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        height: calc(100vw * 0.585);
        position: relative;
    }

    #special_head .logo {
        width: 18%;
        position: absolute;
        z-index: 10 !important;
        top: 10px !important;
        left: 41%;
        margin: 0;
    }

    .attention {
        width: 600px;
        margin: 20px auto 0 auto !important;
    }


    /* Lineup Toggle Box */

    .lineup-header {
        width: 160px;
    }

    .lineup-content {}

    .lineup-item:last-child {
        border-bottom: 1px solid #ffffff;
        padding-bottom: 5px;
    }

    /* lineup */
    .lineup01 {}

    .lineup02 {
        margin-top: 10%;
    }

    .lineup03 {
        margin-top: 10%;
    }

    .lineup04 {
        margin-top: 10%;
    }

    .lineup05 {
        margin-top: 10%;
    }

    .item_main .photo1 {
        width: 84%;
        margin: 12% 7% 0 16%;
        transition: opacity 0.3s ease;
    }

    .item_main .photo2 {
        width: 68%;
        margin: -3% 25% 0 7%;
        transition: opacity 0.3s ease;
    }





    /* クレジット */
    .creditlist {
        width: 80% !important;
        font-size: 1.2vw;
        padding: 5px 0 !important;
        line-height: 1;
        align-items: center;
        margin: 2% auto 10% 18% !important;
    }

    .creditlist li {
        margin-bottom: 0;
        padding-top: 10px !important;
    }

    .creditlist li:last-child {
        border-bottom: none !important;
    }

    .creditlist,
    .creditlist a {
        padding: 0 !important;
    }

    .creditlist .item_name {
        width: 24%;
    }

    .creditlist .item_brand {
        width: 20%;
    }

    .creditlist .item_price {
        width: 30%;
    }

    .creditlist .buybtnbox {
        width: 24%;
    }

    .buybtnbox {
        width: 5.5em;
        margin-left: 2%;
    }

    .buybtn {
        height: 1.4em;
    }

    .buybtnText {
        font-size: 0.8em;
        line-height: 1.25;
        letter-spacing: 0em;
        -webkit-transform: translateX(1em);
        transform: translateX(1em);
    }

    .buybtnArrow {
        width: 20px;
        margin-left: 2px;
    }

    /* bluebox関連 */
    .vol2 {
        width: 520px;
        margin: 0 auto 40px auto !important;
    }

    #otherarea {
        width: 100%;
        margin: 0 auto !important;
        padding-top: 160px !important;
        padding-bottom: 80px !important;
    }

    .btnarea {
        margin: 0;
    }

    #otherarea .btnarea .button {
        width: 450px;
    }

    .button {
        margin: 20px auto 0 auto;
        width: 550px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        color: #000000;
        cursor: pointer;
        position: relative;
        padding: 0;
    }

    .btnarrow {
        position: absolute;
        right: 20px !important;
        top: 17px !important;
        width: 40px;
        height: 8px;
        border-bottom: 1px solid #000;
        border-right: 1px solid #000;
        transform: skew(45deg);
        transform-origin: right;
        transition: all 0.3s ease;
    }

    .btnarrow.sustainablearrow {
        top: 27px !important;
        color: #000;
        border-bottom: 1px solid #000 !important;
        border-right: 1px solid #000 !important;
    }
    .button:hover {
        background: #ffffff;
    }

    .button:hover .btnarrow {
        right: 0px !important;
        width: 60px;
    }
    .button:hover .btnarrow.sustainablearrow {
        top: 27px !important;
    }

    /* アコーディオン */
    .linkarea {
        width: 100%;
        height: 150px;
        position: relative;
        margin: 0 auto !important;
        max-width: 1000px;
    }

    .linkarea .link1 {
        position: absolute;
        left: 10%;
        width: 35%;
        max-width: 380px;
    }

    .linkarea .link2 {
        position: absolute;
        right: 10%;
        width: 35%;
        max-width: 380px;
    }

    .acmenu {
        margin-left: 0 !important;
        width: 100%;
        font-size: 14px;
        text-align: center;
    }

    .acmenu ul li a {
        display: block;
        color: #000000 !important;
        cursor: pointer;
        line-height: 50px;
        font-size: 16px;
        text-align: center !important;
    }

    .rp-footer-flex {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 0;
    }

    .sustainable,
    .instagram {
        width: 48%;
        height: 250px;
        margin: 0 auto 50px auto;
        padding: 40px 0 0 0;
    }

    .sustainable {}

    .sustainable img {
        width: 80%;
        margin: 0 50px;
    }

    .sustainable p {
        font-size: 18px;
        margin: 30px 0 0 0;
    }

    .sustainable .btnarea {
        margin: 0 auto !important;
    }

    .sustainable .button {
        padding-top: 1.5% !important;
        padding-bottom: 0;
        width: 25rem;
    }


    .instagram {}

    .instagram .instagramttl {
        width: 100px;
        margin: 0 150px;
    }

    .instagram p {
        font-size: 18px;
        margin: 30px 0 0 0;
    }

    .infoarea {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto !important;
    }

    .infoarea .ttl {
        width: 500px;
        margin: 0 auto !important;
    }

    .infoarea p {
        margin: 20px auto 0 auto;
        text-align: center;
        width: 100%;
        font-size: 16px;
    }

    .infoarea .btnarea {
        margin: 0 auto 80px auto !important;
    }

    .infoarea .btnarea .btnarrow {
        right: 20px !important;
        width: 50px !important;
        transition: all 0.3s ease !important;
        transform-origin: right !important;
    }

    .infoarea .btnarea:hover .btnarrow {
        right: 10px !important;
        width: 60px !important;
    }

    .page-top a {
        width: 50px;
        position: fixed;
        bottom: 15px;
        right: 15px;
        padding: 10px;
        display: block;
    }

    .page-top a:hover {
        bottom: 20px;
    }

    .copyright {
        padding-bottom: 20px;
    }


    /* main-wrapperをコンテナとして機能させる */
    .main-wrapper {
        position: relative;
        width: 100%;
        overflow: visible;
        min-height: 100vh;
    }

    .lp-shell {
        max-width: 1920px;
        margin: 0 auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 0;
        gap: 1.76%;
        min-height: 100vh;
    }

    /* カラム幅設定 - 直接パーセンテージ指定 */
    .lp-left {
        width: 46.88%;
        flex-shrink: 0;
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        align-self: flex-start;
        height: 100vh;
    }

    .lp-center {
        width: 41.02%;
        flex-shrink: 0;
        margin: 0;
    }

    .lp-right {
        width: 8.59%;
        flex-shrink: 0;
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }

    /* 中央コンテンツ */
    .content-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    /* 画像がはみ出さないように */
    .lp-center img,
    .content-wrapper img {
        max-width: 100%;
        height: auto;
    }

    /* サイドバー内の要素調整 */
    .sidenav,
    .pc-rightbox {
        width: 100%;
    }

    /* サイドバー内の画像調整 */
    .sidenav img,
    .pc-rightbox img {
        height: auto;
    }

    .sidenav ul {
        width: 100%;
        margin: 0;
    }

    .sidenav ul li {
        margin-bottom: 5%;
    }

    .page-top a {
        width: 50px;
        position: fixed;
        bottom: 15px;
        right: 15px;
        padding: 10px;
        display: block;
    }

    .page-top a:hover {
        bottom: 20px;
    }

    .copyright {
        padding-bottom: 20px;
    }


    /* main-wrapperをコンテナとして機能させる */
    .main-wrapper {
        position: relative;
        width: 100%;
        overflow: visible;
        min-height: 100vh;
    }

    .lp-shell {
        max-width: 1920px;
        margin: 0 auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 0;
        gap: 1.76%;
        min-height: 100vh;
    }

    /* カラム幅設定 - 直接パーセンテージ指定 */
    .lp-left {
        width: 46.88%;
        flex-shrink: 0;
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }

    .lp-center {
        width: 41.02%;
        flex-shrink: 0;
        margin: 0;
    }

    .lp-right {
        width: 8.59%;
        flex-shrink: 0;
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }

    /* 中央コンテンツ */
    .content-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    /* 画像がはみ出さないように */
    .lp-center img,
    .content-wrapper img {
        max-width: 100%;
        height: auto;
    }

    /* サイドバー内の要素調整 */
    .sidenav,
    .pc-rightbox {
        width: 100%;
    }

    /* サイドバー内の画像調整 */
    .sidenav img {
        height: auto;
    }

    .pc-rightbox img {
        width: 100%;
        height: auto;
    }

    .sidenav ul {
        width: 100%;
        margin: 0;
    }

    .sidenav ul li {
        margin-bottom: 5%;
    }

    /* PC右側ボックス */
    .pc-rightbox {
        padding-top: 5%;
    }

    .pc-rightlist {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .pc-rightlist li {
        margin-bottom: 5%;
    }

    /* PC右側ボックス - ボタンリンク */
    .pc-rightbox-link {
        display: block;
        width: 100%;
        margin: 5% 0;
        transition: opacity 0.3s ease;
    }

    .pc-rightbox-link:hover {
        opacity: 0.8;
    }

    .pc-rightbox-link img {
        width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .pc-rightnote {
        font-size: 0.75rem;
        color: #666;
        padding: 10px;
        margin-top: 10px;
    }
}




/* ===============================================
   SP：PCサイドナビ（.sidenav.pc）を slider-nav-wrap の下に表示
   ※HTML変更なしで「見え方だけ」対応
   =============================================== */

.lp-left {
    background: #efeff6;
}

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



    /* ここだけPCナビを表示（他の .pc は触らない） */
    .lp-col.lp-left.pc,
    .lp-col.lp-left.pc .sidenav.pc {
        display: block !important;
    }

    /* 右カラムはスマホでは不要なら非表示のまま */
    .lp-col.lp-right.pc {
        display: none !important;
    }

    /* スマホでは左カラム＝全幅にして通常配置 */
    .lp-col.lp-left.pc {
        width: 100% !important;
        position: static !important;
        top: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* ナビの箱：スマホ向けに余白だけ整える（必要なら調整） */
    .lp-col.lp-left.pc .sidenav.pc {
        width: 100% !important;
        margin: 0 !important;
        padding: 4% 5% !important;
        background: #efeff6;
    }

    /* サイドバー内の要素調整 */
    .sidenav {
        width: 100%;
    }

    .sidenav img {
        width: 100%;
        height: auto;
    }

    .sidenav ul {
        width: 100%;
        margin: 0;
    }

    .sidenav ul li {
        margin-bottom: 5%;
    }

}


/* =========================
  Reuse Park : MV + Lead（Full-bleed MV）

/* Logo overlay (MV top) */
#special .rp-mv__logo {
    position: absolute;
    top: 2.8vw;
    right: 5%;
    z-index: 6;
    width: 36vw;
    max-width: 240px;
}

#special .rp-mv__logo img {
    display: block;
    width: 100%;
    height: auto;
}

/* brandSub text is not used */
#special .rp-mv__brandSub {
    display: none !important;
}

@media (min-width: 1000px) {
    #special .rp-mv__logo {
        top: 2.0vw;
        left: auto;
        right: 3.0vw;
        transform: none;
        width: 16vw;
        max-width: 220px;
    }
}

=========================*/:root {
    --rp-ink: #111;
    --rp-ink2: #333;
    --rp-accent: #f06a6a;
    --rp-tagbg: #d8ebe6;
    --rp-max: 1080px;
}

/* MV wrapper */
#special .rp-mv {
    font-family: "游明朝", "Yu Mincho", serif;
    position: relative;
    overflow: hidden;
    color: var(--rp-ink);
    background: #fff;
    font-feature-settings: "palt";
    letter-spacing: -0.1rem;
}

/* Full-bleed model (SP: normal, PC: background) */
#special .rp-mv__model {
    margin: 0;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

#special .rp-mv__model picture,
#special .rp-mv__model img {
    display: block;
    width: 100%;
    height: auto;
}

/* Text container (centered, with padding; MV itself has no inner padding) */
#special .rp-mv__inner {
    width: 100%;
    max-width: var(--rp-max);
    margin: 0 auto;
    margin: 0 auto;
    padding: 0;
    /* ←MVフルブリード優先：paddingは text 側に持たせる */
    position: relative;
    z-index: 1;
}

#special .rp-mv__text {
    width: 100%;
    padding: 4vw 3vw 6vw;
    /* SP余白 */
    font-family: "游明朝", "Yu Mincho", serif;
}

#special .rp-mv__brand {
    text-align: center;
    letter-spacing: .08em;
    margin: 0 0 2.4vw;
    color: #2b2b2b;
    font-size: 3.2vw;
}

#special .rp-mv__brandMark,
#special .rp-mv__brandSub {
    font-family: "Times New Roman", serif;
}

#special .rp-mv__brandMark {
    font-weight: 600;
}

#special .rp-mv__brandSub {
    opacity: .9;
    margin-left: 2.2vw;
}

#special .rp-mv__season {
    margin: 0 0 2.6vw;
    text-align: center;
    font-size: 9vw;
    line-height: 1.05;
    letter-spacing: .08em;
}

#special .rp-mv__seasonHl {
    position: relative;
    display: inline-block;
    padding: 0 .06em;
    color: var(--rp-accent);
}

#special .rp-mv__seasonHl::before {
    content: "";
    position: absolute;
    left: -.10em;
    right: -.10em;
    bottom: .10em;
    height: .55em;
    background: rgba(240, 106, 106, .20);
    z-index: -1;
}

#special .rp-mv__subcopy {
    margin: 0 0 4vw;
    text-align: center;
    font-size: 4.2vw;
    line-height: 1.35;
    letter-spacing: .06em;
}

#special .rp-mv__subcopyText {
    display: inline-block;
    padding: 0 0 0.8vw;
    font-size: 1.18rem;
}

#special .rp-mv__subcopyTail {
    display: block;
    width: 80%;
    margin: 0 auto;
}

#special .rp-mv__title {
    margin: 0 0 3vw;
    text-align: center;
    font-size: 7.2vw;
    line-height: 1.35;
    letter-spacing: .06em;
    font-weight: 400;
}

#special .rp-mv__titleRow {
    display: block;
    margin-right: 10%;
}

#special .rp-mv__titleRow.text2 {
    display: block;
    margin-right: 0;
}

#special .rp-mv__titleRow img.kichinto {
    width: 50%;
    margin-right: 2%;
    margin-top: -1%;
}

#special .rp-mv__titleAccent {
    position: relative;
    display: inline-block;
    padding: 0 .12em;
    color: var(--rp-accent);
    width: 40%;
}

#special .rp-mv__titleAccent img.text {
    width: 100%;
    margin-top: 5%;
}

#special .rp-mv__titleAccent::before {
    content: "";
    position: absolute;
    left: -.12em;
    right: -.12em;
    bottom: -.06em;
    height: 1.5em;
    border: 1px solid rgba(0, 0, 0, .35);
    background: #fff;
    z-index: -1;
}

#special .mv1 {
    position: relative;
    width: 32%;
    height: calc(100vw * 0.15);
    margin: 0 auto 3% 10%;
}

#special .mv1 .mv1_1 {
    position: absolute;
    width: 42%;
    z-index: 2;
    bottom: calc(100vw * 0.01);
}

#special .mv1 .mv1_2 {
    position: absolute;
    width: 53%;
    right: 2%;
    bottom: calc(100vw * 0.01);
    z-index: 2;
}

#special .mv1 .mv1_3 {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

#special .mv2 {
    position: relative;
    width: 85%;
    margin: 3% 0 0 10%;
    height: calc(100vw*0.12);
}

#special .mv2 .mv2_1 {
    position: absolute;
    width: 18%;
    left: 5%;
}

#special .mv2 .mv2_2 {
    position: absolute;
    width: 39%;
    right: 36%;
}

#special .mv2 .mv2_3 {
    position: absolute;
    width: 35%;
    right: 0;
}

#special .mv2 .mv2_pink {
    position: absolute;
    width: 35%;
    left: 27%;
    z-index: 3;
}

special .mv2 .mv2_pink.line {
    position: absolute;
    width: 43% !important;
    left: 20% !important;
    z-index: 3 !important;
    bottom: 0;
}

#special .tagbox {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

#special .tagbox .mvtagbg {
    position: absolute;
}

#special .rp-mv__tags {
    margin: 0 auto;
    padding: 0 0 0 4vw;
    list-style: none;
    text-align: center;
    position: absolute;
}

#special .rp-mv__tag {
    display: inline;
    font-size: 3.3vw;
    letter-spacing: .12em;
    color: #1c1c1c;
    text-align: center;
}

#special .rp-mv__tag+.rp-mv__tag::before {
    content: " / ";
    color: #fff;
}

#special .rp-mv__vol {
    margin: calc(100vw * 0.14) 20% 0 2.8vw;
    text-align: right;
    font-family: "Times New Roman", serif;
    font-size: 4.6vw;
    letter-spacing: .06em;
}

#special .rp-mv__vol .vol1_one {
    font-size: 10vw;
}

/* Lead */
#special .rp-lead {
    background: #fff;
    padding: 5vw 0 8vw;
}

#special .rp-lead__text {
    margin: 0;
    text-align: center;
    font-size: 3.6vw;
    line-height: 2.25;
    letter-spacing: .08em;
    color: var(--rp-ink2);
}

.rp-lead__block {
    display: block;
    margin-bottom: 0.4em;
}

.rp-lead__block:last-child {
    margin-bottom: 0;
}

/* Note (outside text now) */
#special .rp-mv__note {
    margin: 0;
    padding: 2.6vw 3vw 4.2vw;
    text-align: center;
    font-size: 2.8vw;
    line-height: 1.6;
    color: rgba(0, 0, 0, .60);
    letter-spacing: .03em;
    max-width: var(--rp-max);
    margin-left: auto;
    margin-right: auto;
}

/* =========================
  PC（min-width:1000）
  pcmv.jpg をMV全面に敷き、右側にテキストを重ねる
========================= */
@media (min-width: 1000px) {
    #special .rp-mv {
        font-family: "游明朝", "Yu Mincho", serif;
        height: calc(100vw*0.678);
    }

    /* model as background */
    #special .rp-mv__model {
        position: absolute;
        inset: 0;
        width: 100vw;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }

    #special .rp-mv__model picture,
    #special .rp-mv__model img {
        width: 100%;
        height: 100%;
    }

    #special .rp-mv__model img {
        object-fit: cover;
        object-position: center left;
    }

    /* inner covers height */
    #special .rp-mv__inner {
        height: 100%;
        max-width: var(--rp-max);
    }

    /* right text overlay (no grid, no gap) */
    #special .rp-mv__text {
        width: 43%;
        margin-left: 53%;
        padding: 1vw 2vw 3vw 0;
    }

    #special .rp-mv__brand {
        text-align: left;
        font-size: 1.2vw;
        margin-bottom: 1.4vw;
    }

    #special .rp-mv__brandSub {
        margin-left: .9vw;
    }

    #special .rp-mv__season {
        text-align: left;
        font-size: 4.6vw;
        margin-bottom: 1.2vw;
    }

    #special .rp-mv__subcopy {
        text-align: left;
        font-size: 1.7vw;
        margin-bottom: 2.4vw;
    }

    #special .rp-mv__subcopyText {
        display: inline-block;
        padding: 0 0 0.8vw;
        font-size: 2.35vw;
        padding-bottom: .05vw;
    }

    #special .rp-mv__subcopyTail {
        width: 96%;
        margin: 0 auto 0 0;
    }

    #special .rp-mv__title {
        text-align: left;
        font-size: 3.5vw;
        margin-bottom: 1.6vw;
    }

    #special .rp-mv__tags {
        text-align: left;
        margin-left: 0;
        padding: 1.1vw 1.1vw;
        margin-bottom: 1.2vw;
    }

    #special .rp-mv__tag {
        font-size: 1.05vw;
    }

    #special .rp-mv__vol {
        font-size: 1.4vw;
        margin-bottom: 1.2vw;
    }

    #special .rp-lead {
        background: transparent;
        padding: 0;
        margin-top: 0;
    }

    #special .rp-lead__text {
        text-align: left;
        font-size: 1.4vw;
        line-height: 1.9;
    }

    /* note aligned under MV like reference */
    #special .rp-mv__note {
        padding: 10px 24px 18px;
        font-size: 11px;
    }

    #special .rp-mv__titleRow img.kichinto {
        margin-top: -1%;
    }

    #special .mv1 {
        position: relative;
        width: 35%;
        height: calc(100vw * 0.09);
        margin: 0 auto 3% 0%;
    }

    #special .mv1 .mv1_1 {
        position: absolute;
        width: 33%;
        z-index: 2;
        bottom: calc(100vw * 0.005);
    }

    #special .mv1 .mv1_2 {
        position: absolute;
        width: 60%;
        right: 2%;
        bottom: calc(100vw * 0.005);
        z-index: 2;
    }

    #special .mv2 {
        position: relative;
        width: 88%;
        margin: 2% 0 0 7%;
        height: calc(100vw * 0.05);
    }

    #special .tagbox {
        position: relative;
        width: 96%;
        margin: 0 auto 0 0;
    }

    #special .rp-mv__tag {
        font-size: 1.55vw;
    }

    #special .rp-mv__tags {
        text-align: left;
        margin-left: 0;
        padding: 0.4vw 1.1vw 0 1.8vw;
        margin-bottom: 1.2vw;
    }

    #special .rp-mv__vol {
        margin: calc(100vw * 0.075) 20% 0 2.8vw;
        text-align: right;
        font-family: "Times New Roman", serif;
        font-size: 4.6vw;
        letter-spacing: .06em;
    }

    #special .rp-mv__vol {
        font-size: 2vw;
        margin-bottom: 0;
    }

    #special .rp-mv__vol .vol1_one {
        font-size: 4vw;
    }
}

@media (max-width: 376px) {
    .rp-mv__subcopyTail {
        width: 92% !important;
    }
}

/* =========================================================
   ITEM TITLE (01-05) — TEXT CODING + CSS ARC + ITEM IMAGE
   ---------------------------------------------------------
   - Replaces image-based title parts inside .itemttlbox
   - Uses: .itemttlbox.itemttlbox-titleitem
   - Title: 01 + EN + JA (text)
   - Arc: CSS border semicircle
   - Item image: img/item_01.png ... img/item_05.png
   ========================================================= */

.itemttlbox.itemttlbox-titleitem {
    position: relative;
    width: 100%;
    height: auto !important;
    background: #fff !important;
    margin-bottom: 10%;
    padding: 7vw 0 6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.itemttlbox.itemttlbox-titleitem .itemttl-text {
    width: min(92vw, 720px);
    text-align: center;
}

.itemttlbox.itemttlbox-titleitem .itemttl-arc {
    width: min(40vw, 560px);
    aspect-ratio: 2 / 1;
    border: 1px solid #111;
    border-bottom: none;
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    margin: 0 auto -14%;
    box-sizing: border-box;
}

.itemttlbox.itemttlbox-titleitem .itemttl-no {
    width: 15%;
    margin: 0;
}

.itemttlbox.itemttlbox-titleitem .itemttl-en {
    width: 48%;
    margin: 5% 0 0;

}

.itemttlbox.itemttlbox-titleitem .itemttl-ja {
    font-family: "Times New Roman", Times, serif;
    font-weight: 400;
    font-size: 3.6vw;
    line-height: 1.2;
    letter-spacing: 0.06em;
    margin: 4% 0 0;
    font-feature-settings: "palt";
}

.itemttlbox.itemttlbox-titleitem .itemttl-itemimg {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5vw;
}

.itemttlbox.itemttlbox-titleitem .itemttl-itemimg img {
    width: min(80vw, 760px);
    height: auto;
    display: block;
}

#lineup02 .itemttlbox.itemttlbox-titleitem .itemttl-itemimg img {
    width: min(70vw, 760px);
    height: auto;
    display: block;
}

#lineup03 .itemttlbox.itemttlbox-titleitem .itemttl-itemimg img {
    width: min(65vw, 760px);
    height: auto;
    display: block;
}

#lineup04 .itemttlbox.itemttlbox-titleitem .itemttl-itemimg img {
    width: min(65vw, 760px);
    height: auto;
    display: block;
}

#lineup05 .itemttlbox.itemttlbox-titleitem .itemttl-itemimg img {
    width: min(60vw, 760px);
    height: auto;
    display: block;
}



@media (min-width: 1000px) {

    /*.itemttlbox.itemttlbox-titleitem{
        width: 55%;
        margin-bottom: -80px;
		padding: 5vw 0 4vw;
    }*/
    .itemttlbox.itemttlbox-titleitem {
        padding: 5% 0;
    }

    .itemttlbox.itemttlbox-titleitem .itemttl-text {
        width: 80%;
    }

    .itemttlbox.itemttlbox-titleitem .itemttl-no {
        width: 20%;
        margin: 0;
    }

    .itemttlbox.itemttlbox-titleitem .itemttl-en {
        width: 58%;
        margin: 5% 0 0;
    }

    .itemttlbox.itemttlbox-titleitem .itemttl-arc {
        width: min(520px, 55%);
        margin-bottom: -17%;
    }

    .itemttlbox.itemttlbox-titleitem .itemttl-itemimg {
        width: 90%;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .itemttlbox.itemttlbox-titleitem .itemttl-itemimg img {
        width: 85%;
        margin: 0 auto;
    }

    #lineup02 .itemttlbox.itemttlbox-titleitem .itemttl-itemimg img {
        width: 55%;
        margin: 0 auto;
    }

    #lineup03 .itemttlbox.itemttlbox-titleitem .itemttl-itemimg img {
        width: 70%;
        margin: 0 auto;
    }

    #lineup04 .itemttlbox.itemttlbox-titleitem .itemttl-itemimg img {
        width: 60%;
        margin: 0 20%;
    }

    #lineup05 .itemttlbox.itemttlbox-titleitem .itemttl-itemimg img {
        width: 60%;
        margin: 0 18% 0 22%;
    }

    .itemttlbox.itemttlbox-titleitem .itemttl-ja {
        font-size: 17px;
    }

    .lineup01 .itemttlbox {
        position: relative;
        width: 100%;
        height: calc(100vw * 0.1);
        margin-bottom: 0;
    }

    .lineup01 .itemttlbox .itemttl1 {
        position: absolute;
        left: 18%;
        top: 21%;
        width: 60%;
    }

    .lineup02 .itemttlbox {
        position: relative;
        width: 100%;
        height: calc(100vw * 0.1);
        margin-bottom: 0;
    }

    .lineup02 .itemttlbox .itemttl1 {
        position: absolute;
        left: 24%;
        top: 21%;
        width: 60%;
    }

    .lineup03 .itemttlbox {
        position: relative;
        width: 100%;
        height: calc(100vw * 0.1);
        margin-bottom: 0;
    }

    .lineup04 .itemttlbox .itemttl1 {
        position: absolute;
        left: 24%;
        top: 21%;
        width: 60%;
    }

    .lineup03 .itemttlbox {
        position: relative;
        width: 100%;
        height: calc(100vw * 0.1);
        margin-bottom: 0;
    }

    .lineup04 .itemttlbox .itemttl1 {
        position: absolute;
        left: 24%;
        top: 21%;
        width: 60%;
    }

    .lineup05 .itemttlbox {
        position: relative;
        width: 100%;
        height: calc(100vw * 0.1);
        margin-bottom: 0;
    }

    .lineup05 .itemttlbox .itemttl1 {
        position: absolute;
        left: 24%;
        top: 21%;
        width: 60%;
    }
}

.pointbox {
    width: 25%;
    position: relative;
    margin-left: 3%;
}

.pointbox .pointbg {
    position: absolute;
    z-index: 1;
}

.pointbox .point {
    position: absolute;
    width: 50%;
    z-index: 2;
    left: 1%;
}

.pointbox .pointttl {
    position: absolute;
    width: 65%;
    /*width: 68%;*/
    z-index: 2;
    left: 16%;
    /*left: 16%;*/
    top: calc(100vw * 0.065);
}

.pointbox p {
    position: absolute;
    z-index: 2;
    top: calc(100vw * 0.136);
    line-height: 1.1;
    font-size: 0.65rem;
    text-align: center;
    width: 100%;
    font-family: "游明朝", "Yu Mincho", serif;
}

@media (min-width: 1000px) {
    .pointbox {
        width: 25%;
    }

    .pointbox .pointttl {
        position: absolute;
        width: 60%;
        z-index: 2;
        left: 20%;
        top: calc(100vw * 0.025);
    }

    .pointbox p {
        position: absolute;
        z-index: 2;
        top: calc(100vw * 0.055);
        line-height: 1.1;
        font-size: 1vw;
        text-align: center;
        width: 100%;
        font-family: "游明朝", "Yu Mincho", serif;
    }
}

.model-photo {
    position: relative;
    width: 100%;
}

@media (max-width: 376px) {
    .vertical-copy {
        font-size: 0.8rem;
    }
}

.vertical-copy {
    position: absolute;
    right: 7%;
    top: 15%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 1.2vw;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #000;
    z-index: 3;
    white-space: nowrap;
}

.vertical-copy .hl,
.vertical-copy .hloff {
    display: inline-block;
    padding: 0.2em 0.3em;
    line-height: 1;
    white-space: nowrap;
    margin-top: -0.1em;
}

.vertical-copy .hl {
    background: #f1f2d6;
}

.vertical-copy .hloff {
    background: #efeff6;
}

@media screen and (max-width: 999px) {
    .vertical-copy {
        font-size: 0.9rem;
        right: 10%;
        bottom: 10%;
    }

    .vertical-copy .hloff.lineup05text {
        font-size: 0.8rem !important;
    }
}

/* ===============================================
   Video Mute Toggle Button
   =============================================== */
.video-container {
    position: relative;
    width: 100%;
}

.video-mute-toggle {
    position: absolute;
    bottom: 20px;
    /* ⭐ top → bottom に変更 */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    white-space: nowrap;
}

.video-mute-toggle:hover {
    background-color: rgba(0, 172, 237, 0.9);
    /* 青色 */
}

.video-mute-toggle:focus {
    outline: 2px solid rgba(0, 172, 237, 0.5);
    outline-offset: 2px;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .video-mute-toggle {
        bottom: 15px;
        /* ⭐ top → bottom に変更 */
        font-size: 12px;
        padding: 6px 16px;
    }
}