@charset "UTF-8";

/* Visumo が body.style.overflow='hidden' にするとブラウザが html(ビューポート)に伝播させ
   スクロールバーが消える問題を防ぐ。html に明示的な値を設定すると伝播が起きなくなる */
html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

/* header.css の is-scrollLock (ハンバーガーメニュー用) でサムが消えるのを抑制 */
html.is-scrollLock {
    overflow-y: scroll !important;
    scrollbar-gutter: stable !important;
}

/* Windows の「スクロールバーを自動的に非表示」設定（オーバーレイスクロールバー）を
   上書きして、サム（つまみ）を常時表示させる。
   ::-webkit-scrollbar を定義するとブラウザはカスタムスクロールバーモードになり、
   OS の auto-hide が無効化される */
html::-webkit-scrollbar {
    width: 14px;
}
html::-webkit-scrollbar-track {
    background: #f0f0f0;
}
html::-webkit-scrollbar-thumb {
    background: #b0b0b0;
    border-radius: 7px;
    border: 3px solid #f0f0f0;
}
html::-webkit-scrollbar-thumb:hover {
    background: #808080;
}

body{
    color: #000000;
    font-family: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
body .l-header {
    z-index: 500;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
@media (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}


/* #title, パンくずリスト
-------------------------------------------------------*/
#container {
    max-width: 1433px;
    width: initial!important;
    padding: 0 55px;
}
@media (max-width: 720px) {
    #container {
        padding: 0;
    }
}
#title {
    background: initial;
    border-bottom: initial;
}
#title > div {
    max-width: 1280px;
    width: calc(100% - 40px)!important;
    min-height: 50px;
    line-height: 50px;
}
.topicpath {
    width: initial!important;
    position: initial!important;
    margin: 0!important;
}
@media (max-width: 768px) {
    #title > div {
        min-height: 0;
        line-height: 35px;
    }
    .topicpath {
        display: inline-flex;
        margin: 0;
        list-style: none;
    }
    .topicpath li {
        display: inline-block;
    }
    .scrollable {
        overflow-x: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .scrollable::-webkit-scrollbar {
        display: none;
    }
}

/* メインタイトル
-------------------------------------------------------*/
.main_title h1 {
    width: 100%;

    & img {
        width: 100%;
    }
}

/* ご利用ガイド横並び・中央揃え
-------------------------------------------------------*/
.guide_box {
    max-width: 1533px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 70px auto 0;
    padding: 0 60px;
    box-sizing: border-box;
}
.guide_box .guide_icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    transition: opacity 0.2s;
}
.guide_box .guide_text {
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    transition: opacity 0.2s;
}
.guide_box.is-guide-hover .guide_text,
.guide_box.is-guide-hover .guide_icon {
    opacity: 0.7;
}
@media (max-width: 768px) {
    .guide_box {
        max-width: 100%;
        width: 100%;
        padding-right: 25px;
        box-sizing: border-box;
        margin: 15px auto 0;
    }
}

/* ご利用ガイドモーダル
-------------------------------------------------------*/
.guide-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(51,51,51,0.96);
    z-index: 10000;
}
.guide-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 4px 32px rgba(0,0,0,0.22);
    z-index: 10001;
    width: 100%;
    max-width: 1200px;
    padding: 0;
    overflow: visible;
}
.guide-modal-inner {
    padding: 32px 50px 37px;
    box-sizing: border-box;
    position: relative;
}
.guide-modal-close {
    position: absolute;
    top: 41px;
    right: 58px;
    background: none;
    border: none;
    width: 22px;
    height: 22px;
    font-size: 22px;
    cursor: pointer;
    color: #9FA0A0;
    z-index: 10;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.guide-modal-close:hover { color: #333; }

/* タイトル・ステップナビ */
.guide-modal-header {
    text-align: center;
}
.guide-modal-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.guide-modal-steps-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 2rem;
}
.gsn-item {
    font-family: "Noto Sans JP", sans-serif;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #DCDDDD;
    cursor: pointer;
    transition: color 0.2s;
}
.gsn-item.active {
    color: #E9BE31;
}
.gsn-dots {
    color: #bbb;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* STEPラベル・区切り線 */
.guide-modal-step-row {
    margin: -5px 0 3px;
}
.guide-modal-step {
    color: #E9BE31;
    font-weight: bold;
    display: flex;
    align-items: baseline;
    gap: 0.1em;
}
.guide-modal-step-text {
    font-size: 2rem;
}
.guide-modal-step-num {
    font-size: 2.5rem;
}
.guide-modal-divider {
    border: none;
    border-top: 1px solid #E9BE31;
    margin: 0 0 20px;
}

/* スライド本体：2カラム */
.guide-modal-slider {
    overflow: hidden;
}
.guide-modal-body {
    display: flex;
    gap: 32px;
    align-items: center;
}
.guide-modal-img-col {
    /* flex: 0 0 45%; */
    max-width: 524px;
}
.guide-modal-img-col img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    display: block;
}
.guide-modal-text-col,
.guide-modal-text-col2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.guide-modal-text-col {
    max-width: 495px;
}
.guide-modal-text-col2 {
    max-width: 100%;
}
.guide-modal-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    /* margin-top: 13px; */
}
.guide-modal-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    background: #E9BE31;
    border-radius: 50%;
    color: #fff;
    font-weight: 400;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
}
.guide-modal-item-title {
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.guide-modal-item-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
}
.guide-modal-item-desc a {
    text-decoration: underline;
}
.guide-modal-item-desc a:hover {
    text-decoration: none;
}

.guide-modal-subnote {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 30px;
}
.guide-modal-subnote-image {
    max-width: 127px;
    width: 100%;
    border: 1px solid #eee;

    & img {
        width: 100%;
    }
}
.guide-modal-subnote-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* ご利用ガイドモーダル矢印 */
.guide-modal-btn-prev,
.guide-modal-btn-next {
    position: fixed;
    top: 50%;
    z-index: 99999;
    width: 22px;
    height: 38px;
    display: block;
    cursor: pointer;
    padding: 0;
    pointer-events: auto;
    font-size: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
}
.guide-modal-btn-prev {
    left: calc(50% - 660px);
    transform: translateY(-50%);
    background-image: url("/lib/image/catalog/wall/wc_lineup/sekou/base2026/guide-modal-btn-prev.svg");
}
.guide-modal-btn-next {
    right: calc(50% - 660px);
    transform: translateY(-50%);
    background-image: url("/lib/image/catalog/wall/wc_lineup/sekou/base2026/guide-modal-btn-next.svg");
}
.guide-modal-btn-prev:hover,
.guide-modal-btn-next:hover {
    background-color: transparent;
    box-shadow: none;
}

@media (max-width: 768px) {
    .guide-modal-header {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #fff;
        margin: 0 -25px;
        padding: 0;
    }
    .guide-modal-header::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        transform: none;
        border-bottom: 1px solid #D9D9D9;
        pointer-events: none;
    }
    .guide-modal-title {
        font-size: 1.6rem;
        height: 50px;
        line-height: 50px;
        margin-bottom: 0;
    }
    .guide-modal {
        width: calc(100% - 50px);
        position: fixed;
        top: 57px;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        box-shadow: 0 4px 32px rgba(0,0,0,0.22);
        z-index: 10001;
        max-width: 1200px;
        padding: 0;
        overflow: visible;
    }
    .guide-modal-inner {
        position: static;
        height: 100%;
        overflow-y: auto;
        padding: 0 25px 50px;
    }
    .guide-modal-title {
        font-size: 1.6rem;
    }
    .guide-modal-close {
        position: absolute;
        top: -32px;
        right: 0;
        z-index: 10002;
    }
    .guide-modal-btn-prev,
    .guide-modal-btn-next {
        display: none !important;
    }

    .guide-modal.is-stack .guide-modal-steps-nav,
    .guide-modal.is-stack .guide-modal-step-row,
    .guide-modal.is-stack .guide-modal-divider {
        display: none;
    }
    .guide-modal.is-stack .guide-modal-slider {
        overflow: visible;
    }
    .guide-modal.is-stack .swiper-wrapper {
        display: block;
        transform: none !important;
    }
    .guide-modal.is-stack .swiper-slide {
        width: 100% !important;
        margin: 20px 0 26px;
    }
    .guide-modal.is-stack .swiper-slide:last-child {
        margin-bottom: 0;
    }
    .guide-modal.is-stack .swiper-slide + .swiper-slide {
        border-top: initial;
        padding-top: 20px;
    }
    .guide-modal.is-stack .swiper-slide .guide-step-label {
        display: block;
        color: #E9BE31;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 20px;
        padding-bottom: 8px;
        border-bottom: 1px solid #E9BE31;
    }
    .guide-modal.is-stack .swiper-slide .guide-step-label .step-label {
        font-size: 1.8rem;
        vertical-align: middle;
        letter-spacing: 0.05em;
    }
    .guide-modal.is-stack .swiper-slide .guide-step-label .step-num {
        font-size: 2.3rem;
        margin-left: 0.2em;
        vertical-align: middle;
    }
    .guide-modal.is-stack .guide-modal-body {
        display: block;
    }
    .guide-modal.is-stack .guide-modal-img-col {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .guide-modal.is-stack .guide-modal-text-col,
    .guide-modal.is-stack .guide-modal-text-col2 {
        max-width: 100%;
        gap: 16px;
    }
    .guide-modal.is-stack .guide-modal-subnote {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .guide-modal-img-col img {
        width: 64%;
        margin: 0 auto;
        border: initial;
    }
    .guide-modal-item-title {
        font-size: 1.4rem;
    }
    .guide-modal-item-desc {
        font-size: 1.2rem;
    }
    .guide-modal-subnote {
        display: initial;
        gap: initial;
    }
    .guide-modal-subnote-image {
        max-width: initial;
        width: 73%;
        margin: 20px auto;
    }
    .guide-modal.is-stack .guide-modal-subnote-image {
        margin-left: calc(50% - 32% - 34px);
        margin-right: 0;
    }
    .guide-modal.is-stack .guide-modal-subnote-image img {
        width: 100%;
    }
    .guide-modal-subnote-text {
        font-size: 1rem;
    }
}

/* 追従ボタン
-------------------------------------------------------*/
.js-fix-area {
    position: relative;
}
.js-fix-wrapper {
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 500;
}
.js-fix {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}
.js-fix a {
    padding: 20px 10px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    color: #fff;
    transition: 0.3s;
}
.js-fix a.web_catalog {
    background: #E9BE31;
    margin-bottom: 5px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    font-size: 1.4rem;
}
.js-fix.is-fixed {
    position: fixed;
    top: 10px;
    right: 0;
    z-index: 500;
}
.js-fix a:hover {
    cursor: pointer;
    opacity: 0.8;
    text-decoration: none;
    transition: 0.3s;
}
@media (max-width: 768px) {
    .js-fix-wrapper {
        z-index: 500;
        width: 100%;
    }
    .js-fix {
        display: flex;
        flex-direction: initial;
        width: 100%;
        opacity: 1;
        pointer-events: initial;
        transition: 0.3s;
        position: fixed;
        top: initial;
        bottom: 0;
        right: 0;
        transform: translateY(-0%);
        -webkit-transform: translateY(-0%);
        -ms-transform: translateY(-0%);
    }
    .js-fix a {
        width: 50%;
        padding: 10px 0;
        text-align: center;
        writing-mode: horizontal-tb;
        color: #fff;
        border-radius: initial !important;
    }
    .js-fix a.web_catalog {
        margin-bottom: 0;
    }
    .js-fix.is-fixed {
        opacity: 1;
        pointer-events: initial;
        top: initial;
        bottom: 0;
        right: 0;
    }
    .like .fb-like {
        display: inline-block;
    }
}
@media (max-width: 450px) {
    .js-fix a {
        font-size: 1.3rem;
        padding: 5px 0;
    }
}

.wc_lineup_link {
    display: block;
    width: fit-content;
    margin: 0 auto 50px;
}

.wc_lineup_link img {
    display: block;
}

/* ページ下部 SNSリンク
-------------------------------------------------------*/
.entryInfo.catalog {
    margin: 0 auto;
    max-width: 1280px;
    padding: 20px;
}
.entryInfo.catalog .sns_share {
    float: initial;
}
