@charset "UTF-8";

/*================================================
リセットCSS
================================================*/

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

* {
    margin: 0;
    padding: 0;
}

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

ul,
ol {
    list-style: none;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}

#special {
    flex: 1;
    display: flex;
    flex-direction: column;
}

img,
picture {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/*================================================
基本設定
================================================*/

#special {
    font-size: 14px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    color: #000000;
    line-height: 2;
    overflow-x: hidden;
    /* iOS 15以前のフォールバック */
    overflow-x: clip;
    /* sticky要素を壊さない（iOS 16+ / Safari 16+） */
}


/*================================================
SP/PC表示切り替え
================================================*/

.pc {
    display: none;
}

.sp {
    display: block;
}

@media screen and (min-width: 1000px) {
    .sp {
        display: none !important;
    }

    .pc {
        display: block !important;
    }
}


/*================================================
メインビジュアル（rp-mv）
※プロジェクト固有のスタイルは別途追加
================================================*/

.rp-mv {
    position: relative;
    width: 100%;
    contain: paint;
}

.rp-mv__logo {
    position: absolute;
    top: 2%;
    left: 5%;
    z-index: 10;
    width: 20%;
    max-width: 150px;
}

.rp-mv__model {
    width: 100%;
}

.rp-mv__model img {
    width: 100%;
    height: auto;
}

.attention {
    text-align: center;
    padding: 20px 0;
}

.attention img {
    margin: 0 auto;
    max-width: 90%;
}

/* メインビジュアル：テキストオーバーレイ */
.rp-mv__bg {
    position: relative;
    display: flex;
    width: 100%;
}

.rp-mv__bgLeft,
.rp-mv__bgRight {
    width: 50%;
}

.rp-mv__bgLeft img,
.rp-mv__bgRight img {
    width: 100%;
    height: auto;
    display: block;
}

.rp-mv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    /*gap: clamp(10px, 2.5vw, 25px);*/
    padding: 20px;
    z-index: 5;
}

.rp-mv__txt {
    max-width: 90%;
    height: auto;
}

.rp-mv__txt--for {
    width: clamp(35px, 5vw, 70px);
    margin-top: calc(100vw * 0.28);
}

.rp-mv__txt--spring {
    width: 39%;
    margin-top: calc(100vw * 0.02);
}

.rp-mv__txt--outerwear {
    width: 90%;
    margin-top: 7%;
}

.rp-mv__vol {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: calc(101vw * 0.07);
}

.rp-mv__txt--vol {
    width: 12%;
    margin-top: 3%;
}

.rp-mv__txt--num {
    width: 2.4%;
}

@media screen and (min-width: 1000px) {
    .rp-mv__overlay {
        gap: 28px;
    }

    .rp-mv__txt--for {
        width: 65px;
    }

    .rp-mv__txt--spring {
        width: 460px;
    }

    .rp-mv__txt--outerwear {
        width: 600px;
    }

    .rp-mv__vol {
        gap: 12px;
    }

    .rp-mv__txt--vol {
        width: 80px;
    }

    .rp-mv__txt--num {
        width: 42px;
    }
}


/*================================================
スマホ用フッターナビ
================================================*/

.spnavbox {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background: #f5f5f5;
    z-index: 90;
    opacity: 0;
    display: none;
    /* JavaScriptで制御 */
}

.spfootnav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.spfootnav li {
    flex: 1;
}

.spfootnav img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}


/*================================================
メインコンテナ（1カラムレイアウト）
================================================*/

.main-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    flex: 1;
    /* コンテンツを拡張してフッターを下に */
}

.main-content {
    width: 100%;
    padding: 0;
}


/*================================================
PC右サイドバー（Sticky）
================================================*/

@media screen and (min-width: 1000px) {
    .pc-sidebar {
        position: fixed;
        top: 20vh;
        right: 0;
        /*right: 20px;*/
        width: 100px;
        z-index: 100;
        opacity: 0;
        display: none;
        /* JavaScriptで制御 */
    }

    .pc-rightbox {
        width: 100%;
    }

    .pc-rightlist {
        margin-bottom: 20px;
    }

    .pc-rightlist li {
        margin-bottom: 15px;
    }

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

    .pc-rightbox-link {
        display: block;
        width: 100%;
        transition: opacity 0.3s ease;
    }

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

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


/*================================================
ラインナップセクション
================================================*/

.lineup-section {
    width: 100%;
    padding: 40px 0;
}

/* PC版：中央寄せ + 最大幅制限 */
@media screen and (min-width: 1000px) {
    .lineup-section {
        max-width: 1000px;
        margin: 0 auto;
    }
}

.lineup-item {
    width: 100%;
}

.item-main {
    width: 100%;
    position: relative;
}

.model-link {
    display: block;
    position: relative;
}

.model-image {
    width: 100%;
}

.model-image img {
    width: 100%;
    height: auto;
}


/*================================================
縦書きコピー
================================================*/

.vertical-copy {
    position: absolute;
    right: 7%;
    top: 15%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
    font-size: 1.2vw;
    /* 画像上絶対配置テキストのため vw 維持 */
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #000;
    z-index: 3;
}

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

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

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

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


/*================================================
クレジット（商品リスト）
================================================*/

.credit {
    width: 100%;
    margin-top: 0;
    padding: 0 20px;
}

.creditlist {
    width: 100%;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.creditlist li {
    padding: 1px 10px;
    border: none;
}

.creditlist a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.item_name {
    font-size: 10px;
    font-weight: normal;
    flex: 0 0 46px;
    /* min-width → flex固定幅に変更 */
}

.item_brand {
    font-size: 10px;
    flex: 0 0 70px;
    /* 固定幅を追加（J.PRESSなど最長に合わせる） */
}

.item_price {
    font-size: 10px;
    flex: 1 1 auto;
    /* margin-left:auto → 残りスペースを取る形に変更 */
    text-align: right;
    white-space: nowrap;
}

.item_price small {
    font-size: 8px;
    font-weight: normal;
}


@media (min-width: 1000px) {
    .item_name {
        font-size: 12px;
        flex: 0 0 70px;
    }

    .item_brand {
        font-size: 12px;
    }

    .item_price {
        font-size: 12px;
    }

    .item_price small {
        font-size: 10px;
    }
}



/*================================================
DETAILボタン
================================================*/

.buybtn {
    height: 2.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    /*background: #fff;*/
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.buybtnbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.5em;
    margin-left: 10px;
}

.buybtnText {
    color: #000;
    font-size: 10px;
    letter-spacing: 0;
    transform: translateX(1em);
    transition: transform 0.5s;
    text-align: center;
}

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

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

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

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

@media (min-width: 1000px) {
    .buybtnText {
        font-size: 12px;
    }
}


/*================================================
フッターエリア
================================================*/

.footer-area {
    padding-bottom: 5%;
}

#button-area {
    width: 100%;
    margin: 0 auto;
    padding: 10% 0 30px;
}

.btnarea {
    width: 90%;
    margin: 0 auto 20px;
    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;
    transition: background 0.3s ease;
    contain: paint;
}

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

.btnarea .button {
    border: none;
}

/* ショート丈アウター coming soon */
.button--disabled {
    color: #999999;
    cursor: default;
    pointer-events: none;
    flex-direction: column;
    gap: 4px;
    padding: 3% 0 4% 0;
}

.button--disabled .btnarrow {
    border-color: #999999;
}

.button__comingsoon {
    font-size: 0.75em;
    color: #999999;
    font-weight: 300;
    letter-spacing: 0.05em;
}



/*================================================
Vol.2 COMING SOON
================================================*/

.vol2-wrapper {
    margin: 0 auto 10%;
    text-align: center;
}

.vol2-label {
    margin-bottom: 10px;
    font-size: 1em;
}

.vol2 {
    width: 90%;
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid #000;
    text-align: center;
}

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


/*================================================
アコーディオン
================================================*/

.linkarea {
    margin-bottom: 10%;
    padding: 0 5%;
}

.accordion {
    width: 100%;
    text-align: center;
    margin-bottom: 5%;
}

.accordion-menu {
    width: 100%;
    font-size: 15px;
    text-align: center;
    border: 1px solid #000;
    background: #ffffff;
}

.accordion-menu ul li {
    background: #ffffff;
    color: #000000;
}

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

.accordion-menu ul li a:hover {
    background: #ffffff;
}

.accordion-menu>ul>li>ul {
    display: none;
}

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


/*================================================
サステナブル・Instagram
================================================*/

.rp-footer-flex {
    display: flex;
    flex-direction: column;
    gap: 10%;
}

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

.sustainablettl {
    max-width: 300px;
    margin: 0 auto;
}

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

.sustainable .btnarea {
    /*margin-bottom: 10%;*/
}

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

.instagram {
    background: #f5f5f5;
    text-align: center;
    padding: 10% 5% 1%;
    margin-top: 10%;
    /* SP用：sustainableとの間隔 */
    font-family: '游明朝', 'Yu Mincho', YuMincho, serif;
}

.instagram .instagramttl {
    width: 25%;
    max-width: 100px;
    margin: 0 auto 5% auto;
}

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


/*================================================
インフォエリア
================================================*/

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

.infoarea .ttl {
    max-width: 300px;
    margin: 0 auto 20px;
}

.infoarea .ttl img {
    width: 100%;
    height: auto;
}

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

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

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


/*================================================
ページトップボタン
================================================*/

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

.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-bottom: 10px;
    contain: paint;
}

.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, sans-serif;
}


/*================================================
PC版（1000px以上）
================================================*/

@media screen and (min-width: 1000px) {

    .attention img {
        max-width: 60%;
    }

    .sp-tokushu-btn {
        display: none;
    }

    .vertical-copy {
        font-size: 1.2vw;
        /* 画像上絶対配置テキストのため vw 維持 */
    }

    .vol2-wrapper {
        margin-bottom: 40px;
    }

    .vol2 {
        width: 60%;
        max-width: 520px;
        margin: 0 auto;
    }

    #button-area {
        padding-top: 160px;
        padding-bottom: 80px;
    }

    .btnarea {
        margin: 0 auto;
    }

    #button-area .btnarea .button {
        width: 80%;
        max-width: 450px;
    }

    .button {
        margin: 20px auto 0 auto;
        width: 90%;
        max-width: 550px;
        height: 50px;
        font-size: 16px;
        padding: 0;
    }

    .btnarrow {
        right: 20px;
        top: 16px;
        width: 40px;
        height: 8px;
        transform-origin: right;
    }

    .btnarrow.sustainablearrow {
        top: 28px;
    }

    .button:hover {
        background: #ffffff;
    }

    .button:hover .btnarrow {
        right: 10px;
    }

    .button:hover .btnarrow.sustainablearrow {
        top: 28px;
    }

    .linkarea {
        width: 100%;
        max-width: 1000px;
        margin: 40px auto;
        display: flex;
        justify-content: center;
        gap: 60px;
    }

    .linkarea .link1,
    .linkarea .link2 {
        width: 45%;
        max-width: 450px;
    }

    .accordion-menu {
        width: 100%;
        font-size: 14px;
        background: #ffffff;
    }

    .accordion-menu ul li {
        background: #ffffff;
    }

    .accordion-menu ul li a {
        line-height: 50px;
        font-size: 16px;
    }

    .rp-footer-flex {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 80px;
        max-width: 1180px;
        margin: 0 auto;
        padding: 40px 0;
    }

    .sustainable,
    .instagram {
        width: 48%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 0;
        margin-top: 0;
        text-align: center;
    }

    .sustainablettl {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .sustainable p {
        font-size: 15px;
        margin: 20px 0 0 0;
        padding: 0 20px;
    }

    .sustainable .btnarea {
        margin-top: auto;
        /* 自動的に下に配置 */
        padding-top: 20px;
    }

    .sustainable .button {
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

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

    .instagram p {
        font-size: 15px;
        margin: 20px 0 0 0;
    }

    .infoarea {
        width: 90%;
        max-width: 980px;
        margin: 0 auto;
    }

    .infoarea .ttl {
        width: 70%;
        max-width: 500px;
        margin: 0 auto;
    }

    .infoarea p {
        margin: 20px auto 0 auto;
        font-size: 16px;
    }

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

    .infoarea .btnarea .btnarrow {
        right: 20px;
        width: 40px;
    }

    .infoarea .btnarea:hover .btnarrow {
        right: 10px;
    }

    .sp-tokushu-btn {}

    .sp-tokushu-btn a {}

    .sp-tokushu-btn img {}

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

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

    .copyright {
        font-size: 10px;
    }
}

/* ===================================
   3カラムレイアウト（コメントアウト）
   必要に応じてコメントを外して使用
   ===================================

@media screen and (min-width: 1000px) {
    .main-container {
        display: flex;
        gap: 20px;
    }
    
    .lp-left {
        width: 200px;
        position: sticky;
        top: 20px;
        height: fit-content;
    }
    
    .main-content {
        flex: 1;
        min-width: 0;
    }
    
    .lp-right {
        width: 260px;
        position: sticky;
        top: 20px;
        height: fit-content;
    }
}

=================================== */



/*================================================
個別LPスタイル（ここから下に追記）
================================================*/


/* =================================================
   MV（左右分割 + テキスト重ね）
================================================= */

.rp-mv {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.rp-mv__bg {
    position: relative;
    display: flex;
    width: 100%;
    height: calc(100vw * 0.93);
}

.rp-mv__bg .mvbg {
    width: 100%;
    position: absolute;
    z-index: 1;
}

.rp-mv__bg .mvleft {
    position: absolute;
    z-index: 2;
    width: 39%;
    top: 2%;
    left: 5%;
}

.rp-mv__bg .mvright {
    position: absolute;
    z-index: 2;
    width: 41%;
    top: 2%;
    right: 4%;
}

@media (min-width: 600px) and (max-width: 999px) {
    .rp-mv__bg {
        height: calc(100vw*0.933333);
    }
}

@media (min-width: 1000px) {
    .rp-mv__bg {
        height: 55.46vw;
    }

    .rp-mv__bg .mvbg {
        width: 100%;
    }

    .rp-mv__bg .mvleft {
        position: absolute;
        z-index: 2;
        width: 23%;
        top: 2.5%;
        left: 12%;
    }

    .rp-mv__bg .mvright {
        position: absolute;
        z-index: 2;
        width: 26%;
        top: 2%;
        right: 9%;
    }

    .rp-mv__txt--for {
        width: 7%;
        margin-top: calc(100vw * 0.14);
    }

    .rp-mv__txt--spring {
        width: 28%;
        margin-top: 0;
    }

    .rp-mv__txt--outerwear {
        width: 65%;
        margin-top: 2.5%;
    }

    .rp-mv__vol {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: calc(100vw * 0.034);
        width: 7.5%;
        gap: 1%;
    }

    .rp-mv__txt--num {
        width: 14%;
    }

    .rp-mv__txt--vol {
        width: 100%;
        margin-top: 20%;
    }
}

.rp-mv__bgLeft,
.rp-mv__bgRight {
    flex: 1 1 50%;
    min-width: 0;
    overflow: hidden;
}

.rp-mv__bgLeft picture,
.rp-mv__bgRight picture,
.rp-mv__bgLeft img,
.rp-mv__bgRight img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.rp-mv__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.rp-mv__logo {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 31vw;
}

.rp-mv__txt--en1 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18%;
    transform: translate(-50%, -50%);
}

.rp-mv__txt--en2 {
    position: absolute;
    left: 50%;
    top: 61%;
    width: 42%;
    transform: translate(-50%, -50%);
}

.rp-mv__txt--en3 {
    position: absolute;
    left: 50%;
    top: 75%;
    width: 78%;
    transform: translate(-50%, -50%);
}

@media (min-width: 1000px) {
    .rp-mv__logo {
        top: 18px;
        width: 15%;
    }

    .rp-mv__txt--en1 {
        top: 46%;
        width: 16.8%;
    }

    .rp-mv__txt--en2 {
        top: 58%;
        width: 43.7%;
    }

    .rp-mv__txt--en3 {
        top: 74%;
        width: 72.3%;
    }
}


/* =================================================
   attention バナー
================================================= */

.attention {
    text-align: center;
    padding: 10px 0 16px 0;
    background: #fff;
}

.attention img {
    margin: 0 auto;
    max-width: 90%;
}

@media (min-width: 1000px) {
    .attention {
        padding: 20px 0;
    }

    .attention img {
        width: 680px;
    }
}


/* =================================================
   moviebox（動画 + リード）
================================================= */

.moviebox {
    width: 100%;
    padding: 40px 0 20px;
    background: #fff;
}

.moviebox__inner {
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.moviebox__media {
    width: 100%;
}

.moviebox__video {
    position: relative;
    width: 65%;
    overflow: hidden;
    margin: 0 auto;
}

.moviebox__video video {
    width: 100%;
    height: auto;
    display: block;
}

.video-mute-toggle {
    position: absolute;
    bottom: 20px;
    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;
        font-size: 12px;
        padding: 6px 16px;
    }
}

.moviebox__body {
    width: 100%;
    text-align: center;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
}

.moviebox__vol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5vw;
    margin: 5% auto 2% auto;
    width: 80%;
}

.moviebox__vol-spring {
    position: relative;
}

.moviebox__vol-for {
    position: absolute;
    left: -6px;
    top: -16px;
    width: 4vw !important;
}

.moviebox__vol img {
    height: auto;
}

.moviebox__vol-spring img:nth-child(2) {
    width: 18vw;
}

.moviebox__vol>img:nth-child(2) {
    width: 33vw;
}

.moviebox__vol>img:nth-child(3) {
    width: 12vw;
}

.moviebox__vol>img:nth-child(4) {
    width: 2vw;
    margin-top: -3vw;
}

.moviebox__border {
    width: 85%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(to right, #C9A961, #E6C77E, #C9A961);
    margin: 0 auto 4%;
}

.moviebox__ttl {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
    font-size: 4.5vw;
    line-height: 1.4;
    color: #000;
    font-weight: 400;
    margin: 0 0 4%;
}

.moviebox__ttl-haru {
    color: #f4bf40;
    font-size: 1.6em;
}

.moviebox__ttl-yellow {
    color: #f4bf40;
}

.moviebox__ttl-brown {
    color: #ab7936;
}

.moviebox__ttl-line1,
.moviebox__ttl-line2 {
    display: block;
}

.moviebox__ttl-line1 {
    padding-right: 40%;
}

.moviebox__ttl-line2 {
    padding-left: 8%;
}


.moviebox__lead {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
    font-size: 11.5px;
    line-height: 2;
    margin: 0;
    max-width: 38em;
    margin: 0 auto;
}


.moviebox__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.moviebox__btn {
    width: min(360px, 100%);
    border: 1px solid #000;
    padding: 12px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: .06em;
}

@media (min-width: 1000px) {
    .moviebox {
        padding: 60px 0 30px;
    }

    .moviebox__inner {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 40px 0 80px;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .moviebox__media {
        width: 40%;
    }

    .moviebox__video {
        width: 100% !important;
    }

    .moviebox__body {
        width: 50%;
        text-align: left;
    }

    .moviebox__vol {
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 8px;
        padding-left: 20px;
    }

    .moviebox__vol-spring {
        position: relative;
    }

    .moviebox__vol-for {
        top: -20px !important;
        left: -8px !important;
        width: 22px !important;
    }

    .moviebox__vol-spring img:nth-child(2) {
        width: 120px !important;
        /* SPRING */
    }

    .moviebox__vol>img:nth-child(2) {
        width: 200px !important;
        /* OUTERWEAR */
    }

    .moviebox__vol>img:nth-child(3) {
        width: 70px !important;
        /* VOL. */
    }

    .moviebox__vol>img:nth-child(4) {
        width: 12px !important;
        /* 1 */
        margin-bottom: 2px;
    }

    /* 境界線 */
    .moviebox__border {
        width: 100%;
        margin: 0 0 20px 0;
        max-width: none;
    }

    .moviebox__ttl {
        font-size: 26px;
        line-height: 1.5;
        text-align: left;
        margin-bottom: 24px;
    }

    .moviebox__ttl-line1 {
        padding: 0 !important;
    }

    .moviebox__ttl-line2 {
        padding-left: 20px !important;
    }

    .moviebox__lead {
        font-size: 15px;
        line-height: 2.2;
    }



    .moviebox__btns {
        flex-direction: row;
        justify-content: flex-start;
    }

    .moviebox__btn {
        width: auto;
        min-width: 220px;
    }
}


/* =================================================
   ラインナップナビ（Swiper）
================================================= */

:root {
    --lp-cream: #F7F3D7;
}

.lineup-nav {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    background: var(--lp-cream);
    overflow: hidden;
    position: relative;
    margin-top: 70px;
}

.lineup-nav-container {
    position: relative;
    padding: 7vw 0;
}

.lineup-nav-slider {
    position: relative;
}

.lineup-nav__item {
    display: block;
    width: 100%;
    transition: opacity .4s ease, transform .4s ease;
}

.lineup-nav__item img {
    width: 100%;
    height: auto;
    display: block;
}

.lineup-nav-slider .slick-slide {
    opacity: 0.8;
    transform: scale(0.85);
    transition: opacity .4s ease, transform .4s ease;
}

.lineup-nav-slider .slick-center {
    opacity: 1;
    transform: scale(1.0);
    z-index: 10;
}

.lineup-nav__prev,
.lineup-nav__next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3vw;
    height: auto;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 100;
}

.lineup-nav__prev img,
.lineup-nav__next img {
    width: 100%;
    height: auto;
    display: block;
}

.lineup-nav__prev {
    left: 16vw;
}

.lineup-nav__next {
    right: 16vw;
}

/* Slick arrows非表示（カスタムボタン使用） */
.lineup-nav-slider .slick-arrow {
    display: none !important;
}

@media (min-width: 600px) and (max-width: 999px) {
    .lineup-nav-container {
        padding: 5vw 0;
    }

    .lineup-nav__prev {
        left: 20%;
    }

    .lineup-nav__next {
        right: 20%;
    }
}

@media (min-width: 1000px) {
    .lineup-nav-container {
        width: 100%;
        padding: 7vw 0;
    }

    .lineup-nav-container .slick-list {
        scale: 1.4;
    }

    .lineup-nav-slider .slick-slide {
        opacity: 0.65;
        transform: scale(0.80);
    }

    .lineup-nav-slider .slick-center {
        opacity: 1;
        transform: scale(1.0);
    }

    .lineup-nav__prev,
    .lineup-nav__next {
        width: 14px;
    }

    .lineup-nav__prev {
        left: 37%;
    }

    .lineup-nav__next {
        right: 37%;
    }
}


/* =================================================
   セクション共通（sec-head）
================================================= */

.sec-head {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
    padding: 0 20px 16px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
}

.sec-no {
    font-size: 24px;
    letter-spacing: .06em;
    line-height: 1;
}

.sec-cap {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 12px;
    letter-spacing: .08em;
    line-height: 1.6;
}

.sec-cap span {
    display: block !important;
}

.sec-head--onpic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 0;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", serif;
}

.sec-head--onpic .sec-no,
.sec-head--onpic .sec-line {
    line-height: 0;
}

.sec-head--onpic .sec-no img {
    width: 36px !important;
    height: auto;
    display: block;
}

.sec-head--onpic .sec-line {
    width: 33% !important;
    height: auto;
    display: block;
    height: 1px;
    background: #e9e29b;
}

.sec-head--onpic .sec-cap {
    font-size: 2.6vw;
    line-height: 1.6;
    color: #000;
    text-shadow: none;
}

@media (min-width: 1000px) {
    .sec-head {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 0 18px;
    }

    .sec-head--onpic .sec-no img {
        width: 50px !important;
    }

    .sec-head--onpic .sec-line {
        margin: 5px 0;
        width: 110% !important;
    }

    .sec-head--onpic .sec-line img {
        width: 52px !important;
    }

    .sec-head--onpic .sec-cap {
        font-size: 14px !important;
    }

    .sec-head--onpic .sec-cap span {
        display: block;
    }
}

@media screen and (max-width: 999px) {
    #lineup01 .sec-head--onpic .sec-cap {
        letter-spacing: .06em;
    }
}

@media (max-width: 393px) {
    .sec-head--onpic .sec-cap {
        font-size: 2.5vw;
    }

}


/* =================================================
   テンプレA（sec-a--v2）
================================================= */

.sec-a__grid {
    width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.sec-a__main img,
.sec-a__sub img {
    width: 100%;
    height: auto;
}

.sec-a__subcol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.sec-a--v2 .sec-a__grid--v2 {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sec-a--v2 .sec-a__block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sec-a--v2 .sec-a__sub {
    position: relative;
    overflow: visible;
}

.sec-a--v2 .sec-a__sub img {
    display: block;
    width: 100%;
    height: auto;
}

.sec-a--v2 .sec-a__sub--left {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: static;
    overflow: visible;
    margin: 0;
    height: calc(100vw * 0.84);
}

.sec-a--v2 .sec-a__sub--left>a {
    flex: 0 0 72%;
    width: 72%;
    min-width: 0;
    display: block;
    margin-top: 12%;
}

.sec-a--v2 .sec-a__sub--left img {
    width: 94.5%;
    margin: 0 auto;
}

.sec-a--v2 .sec-a__sub--right {
    width: 70%;
    margin-left: auto;
    margin-right: 2%;
}

.sec-a--v2 .sec-a__sub--right img {
    margin-top: 0;
}

.sec-a--v2 .sec-head--onpic {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8px;
    margin: 0;
    transform: none;
    z-index: auto;
    pointer-events: auto;
    gap: 4%;
}

.sec-a--v2 .sec-head--onpic .sec-cap {
    flex: 1;
    min-height: 0;
    overflow: visible;
    margin-top: 0;
    font-family: "BIZ UDMincho", serif;
    font-weight: 400;
    font-style: normal;
}

.sec-a--v2 .sec-a__main img {
    width: 100%;
    height: auto;
    display: block;
}

.sec-a--v2 .sec-a__block--main {
    padding: 0 20px;
    margin-top: 40px;
}

.sec-a--v2 .credit {
    padding: 0;
}

@media (min-width: 1000px) {
    .sec-a__grid {
        max-width: 1190px;
        margin: 0 auto;
        padding: 0;
        grid-template-columns: 1.1fr .9fr;
        gap: 18px;
        align-items: start;
    }

    .sec-a__subcol {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sec-a--v2 .sec-a__grid--v2 {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0px;
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
    }

    .sec-a--v2 .credit {
        padding: 0;
    }

    .sec-a--v2 .credit ul {
        width: 90%;
        margin: 0 auto;
    }

    .sec-a--v2 .sec-a__block--main {
        order: 1;
        flex: 1 1 30%;
        padding: 0;
        margin-top: 100px;
    }

    .sec-a--v2 .sec-a__block--sub {
        order: 2;
        flex: 1 1 35%;
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 18px 0;
    }

    .sec-a--v2 .sec-a__sub--left {
        grid-column: 1;
        grid-row: 1;
        display: block;
        position: relative;
        width: 100%;
        margin: 0;
        height: 390px;
    }

    .sec-a--v2 .sec-a__sub--left a {
        margin-top: 10px;
    }

    .sec-a--v2 .sec-a__sub--left img {
        flex: none;
        width: 100%;
    }

    .sec-a--v2 .sec-a__sub--right {
        grid-column: 1;
        grid-row: 2;
        width: 66%;
        margin-left: auto;
        margin-right: 0;
    }

    .sec-a--v2 .sec-a__sub--right img {
        margin-top: 10px;
    }

    .sec-a--v2 .sec-head--onpic {
        position: absolute;
        top: -54px;
        right: 0;
        width: auto;
        left: auto;
        margin: 0;
        transform: none;
        gap: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /*max-height: calc(100% + 54px);*/
        overflow: visible;
    }

    .sec-a--v2 .sec-head--onpic .sec-cap {
        flex: none;
        min-height: auto;
        overflow: visible;
        font-size: 14px !important;
    }

    .sec-a--v2 .sec-head--onpic .sec-cap span {
        display: block;
    }
}

/* =================================================
   テンプレB（sec-b）
================================================= */

.lineup-section.sec-b {
    padding-top: 50px;
    padding-bottom: 0;
    overflow: visible;
}

.sec-b .sec-b__thumbs {
    width: 100%;
    overflow: hidden;
}

.sec-b .sec-b-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sec-b .sec-b-swiper .swiper-wrapper {
    display: flex !important;
}

.sec-b .sec-b__thumb {
    width: 50%;
    flex-shrink: 0;
}

.sec-b .sec-b__thumbFig {
    margin: 0;
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.sec-b .sec-b__thumbFig img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.sec-b .sec-b__main {
    position: relative;
    z-index: 2;
    margin: 15vw 0 0;
    padding: 0;
}

.sec-b .sec-b__mainRow {
    display: flex;
    align-items: stretch;
}

.sec-b .sec-b__mainFig {
    margin: 0;
    flex: 0 0 85%;
    overflow: hidden;
    background: #fff;
}

.sec-b .sec-b__mainFig img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 15%;
}

.sec-b .sec-head--onpic {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 4%;
    margin-top: 0;
}

.sec-b .sec-head--onpic .sec-cap {
    color: #000;
    writing-mode: vertical-rl;
    letter-spacing: .08em;
    font-size: 2.6vw;
    flex: 1;
    min-height: 0;
    overflow: visible;
    margin-top: 0;
}

.sec-b .sec-head--onpic .sec-line {
    width: 56% !important;
}

.sec-b .sec-b__cream {
    --overlap: 22vw;
    position: relative;
    z-index: 1;
    background: var(--lp-cream, #F7F3D7);
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: calc(-1 * var(--overlap));
    padding-top: calc(var(--overlap) + 2vw);
    padding-bottom: 10vw;
}

.lineup-section.sec-b .sec-b__band {
    background: #F4F1D8;
    padding: 6.5vw 0;
}

.lineup-section.sec-b .sec-b__band img {
    width: min(88vw, 560px);
    margin: 0 auto;
    display: block;
}

@media (min-width: 1000px) {
    .lineup-section.sec-b {
        padding-top: 70px;
        margin-bottom: 50px;
    }

    .sec-b .sec-b__thumbs {
        width: 100vw;
        margin-left: 50%;
        transform: translateX(-50%);
        overflow: hidden;
    }

    .sec-b .sec-b__thumb {
        width: 33.333% !important;
    }
    
    .sec-b .sec-b-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap;
        transform: none !important;
    }

    .sec-b .sec-b__main {
        max-width: 1000px;
        margin: 40px auto 0;
        padding: 0 40px;
        position: relative;
    }

    .sec-b .sec-b__mainFig img {
        margin-top: 60px;
    }

    .sec-b .sec-b__mainRow {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        position: relative;
    }

    .sec-b .sec-b__mainFig {
        flex: 0 0 min(56vw, 450px);
        max-width: 450px;
    }

    .sec-b .sec-head--onpic {
        position: absolute;
        left: calc(50% + min(28vw, 225px) + 20px);
        top: 0;
        bottom: 0;
        min-width: 100px;
        gap: 8px;
    }

    .sec-b .sec-head--onpic .sec-cap {
        font-size: 14px !important;
    }

    .sec-b .sec-head--onpic .sec-cap span {
        display: block;
    }

    .sec-b .sec-b__cream {
        --overlap: 170px;
        padding-top: calc(var(--overlap) + 12px);
        padding-bottom: 90px;
    }

    .lineup-section.sec-b .sec-b__band {
        max-width: 1000px;
        margin: 24px auto 0;
        padding: 56px 0;
    }

    .lineup-section.sec-b .sec-b__band img {
        width: 520px;
    }
}

@media (min-width: 390px) {
    .sec-b .sec-head--onpic .sec-cap {
        font-size: 2.5vw;
    }
}

/* =================================================
   クレジット sec-b 型
================================================= */

.sec-b .sec-b__cream .credit {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 6vw;
}

.sec-b .sec-b__cream .creditlist li {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 1px 10px;
    margin-bottom: 0;
    justify-content: center;
}

.creditCate {
    font-size: 10px;
    font-family: "游明朝", YuMincho, serif;
    letter-spacing: .06em;
    flex: 0 0 46px;
    text-transform: lowercase;
}

.creditBrand {
    font-size: 10px;
    font-family: "游明朝", YuMincho, serif;
    flex: 0 0 70px;
}

.creditPrice {
    font-size: 10px;
    font-family: "游明朝", YuMincho, serif;
    flex: 1 1 auto;
    text-align: right;
    white-space: nowrap;
}

.creditPrice small {
    font-size: 10px;
    font-weight: normal;
}

.creditLink {
    font-size: 10px;
    letter-spacing: .08em;
    padding: 4px 10px;
    border: 1px solid #333;
    white-space: nowrap;
    flex: 0 0 auto;
    transition: background .25s ease, color .25s ease;
    font-family: "游ゴシック体", YuGothic, sans-serif;
}

.creditLink:hover {
    background: #333;
    color: #fff;
}

@media (min-width: 1000px) {
    .sec-b .sec-b__cream .credit {
        padding: 0 300px;
    }

    .sec-b .sec-b__cream .creditlist li {
        padding: 1px 10px;
    }

    .creditCate {
        font-size: 13px;
        min-width: 66px;
    }

    .creditBrand {
        font-size: 13px;
    }

    .creditPrice {
        font-size: 14px;
    }

    .creditLink {
        font-size: 12px;
        padding: 6px 18px;
    }
}


/* =================================================
   テンプレC（sec-c）
================================================= */

.sec-c__grid {
    width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.sec-c__note {
    padding: 16px 20px 0;
    font-size: 13px;
    line-height: 1.9;
    text-align: center;
}

@media (min-width: 1000px) {
    .sec-c__grid {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}


/* =================================================
   ラインナップセクション 共通
================================================= */

.lineup-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (min-width: 1000px) {
    .lineup-section {
        padding-top: 60px;
        padding-bottom: 60px;
        max-width: 1000px;
        margin: 0 auto;
    }

    #lineup01.lineup-section {
        padding-top: 120px;
    }
}

@media screen and (max-width: 375px) {}
/* ===================================
   Slick lineup-nav: センタースライドのみリンク有効
   =================================== */
.lineup-nav-slider .slick-slide:not(.slick-center) a {
    pointer-events: none;
    cursor: default;
}
.lineup-nav-slider .slick-slide.slick-center a {
    pointer-events: auto;
    cursor: pointer;
}
