@charset "utf-8";

/*
 * ============================================================
 * 【引継ぎ】数値変更箇所一覧（style.css）
 * ============================================================
 * ■ ブレークポイント（PC/SP切替）
 *   768px  … SP表示（max-width: 768px）
 *   769px  … PC表示（min-width: 769px）
 *   1441px … MV大画面用（min-width: 1441px）
 *
 * ■ 商品リスト PC（@media min-width: 769px）
 *   1120px … リスト最大幅（5列時）
 *   216px  … --pc-column-min 1列の最小幅（幅が足りないと4列・3列…に折り返し）
 *   10px   … --list-gap 横の商品間隔
 *   35px   … 行間（row-gap）
 *   47px   … リスト上マージン
 *   216/240 … 商品画像 aspect-ratio
 *   ※SP行分割は index.php の items_per_row を script.js が参照
 *
 * ■ SPナビ（@media max-width: 768px）
 *   85px   … ナビ1件の幅
 *   22px   … 横間隔
 *   27px   … 行間（上3・下2）
 *   50px   … 上下padding
 *   #FCFCFC … 背景
 *
 * ■ PC追従ナビ（@media min-width: 769px）
 *   左固定・縦書きテキスト・背景なし
 *   24px   … 左余白
 *   65vh   … ナビリスト高さ（画面高さ基準）
 *   5%     … 項目間隔（リスト高さに対する％）
 *   0.8vh  … 番号とラベルの間隔
 *
 * ■ SP追従ナビ（@media max-width: 768px）
 *   55.92px … 固定ヘッダー分の top オフセット
 *   50px   … 追従バー高さ
 *   12px   … 左右padding
 *   6px    … 項目間gap
 *   #2bc1fc … 背景
 *   14px   … ラベル（Yu Mincho）
 *
 * ■ 商品リスト SP（@media max-width: 768px）
 *   20px   … 左余白（スライダー起点）
 *   148px  … アイテム幅
 *   165px  … 画像高さ
 *   11px   … 商品間 gap
 *   12px   … 画像下〜商品名の間隔 / 商品名フォントサイズ
 *   10px   … 商品名〜価格の間隔
 *   30px   … 行間（2行の間隔）
 *   40px   … リスト上マージン
 *
 * ■ 商品画像スライダー（PC）
 *   ホバー切替 … フェードなし（即時切替）
 *
 * ■ SP商品画像ドット
 *   8px    … ドットサイズ・右下位置（right/bottom）
 *   6px    … ドット間隔
 * ■ 全幅表示（モール共通CSS上書き）
 *   100vw / calc(50% - 50vw) … .main_wrap をコンテナ外まで広げる
 *   .container 等 … max-width:1200px 等を解除
 * ============================================================
 */

.lp_viewpc_block {
    display: block !important;
}
.lp_viewsmp_block {
    display: none !important;
}
@media (max-width: 768px) {
    .lp_viewpc_block {
        display: none !important;
    }
    .lp_viewsmp_block {
        display: block !important;
    }
}

/* MV出し分け：1920 / 1440 / SP */
.main_wrap .mv_img_1920,
.main_wrap .mv_img_1440,
.main_wrap .mv_img_sp {
    display: none;
    width: 100%;
    height: auto;
}
@media (min-width: 1441px) {
    .main_wrap .mv_img_1920 {
        display: block;
    }
}
@media (min-width: 769px) and (max-width: 1440px) {
    .main_wrap .mv_img_1440 {
        display: block;
    }
}
@media (max-width: 768px) {
    .main_wrap .mv_img_sp {
        display: block;
    }
}

.main_wrap {
    width: 100vw;
    max-width: none !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    font-family: "Yu Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    color: #000;
    background-color: #EDF9FC;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

p {
    margin: 0;
}
.p-footer {
    margin-top: 0 !important;
}

.main_wrap .mv_area {
    width: 100%;
    margin: 0 auto;
}
.main_wrap .mv_img {
    line-height: 0;
}
.main_wrap .lead_area {
    width: 100%;
    margin: 80px auto;
}
.main_wrap .lead_area .lead_text {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .main_wrap .lead_area {
        margin: 42px auto;
    }
    .main_wrap .lead_area .lead_text {
        font-size: 15px;
        line-height: 1.9;
        font-weight: 400;
    }
}
.main_wrap .nav_area {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
    background-color: #FCFCFC;
}
.main_wrap .nav_area .nav_list {
    display: flex;
    gap: 22px;
    max-width: 777px;
    margin: 0 auto;
    transform: translateX(-10px);
}
.main_wrap .nav_area .nav_item {
    width: 100%;
    text-align: center;
}
.main_wrap .nav_area .nav_item a {
    display: block;
    width: 100%;
    text-align: center;
}
.main_wrap .nav_area .nav_item a img {
    display: block;
    width: 100%;
}
@media (max-width: 768px) {
    .main_wrap .nav_area {
        padding: 47px 0;
    }
    .main_wrap .nav_area .nav_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 16px;
        row-gap: 25px;
        max-width: 375px;
        width: 100%;
        margin: 0 auto;
        transform: translateX(-10px);
    }
    .main_wrap .nav_area .nav_item {
        width: 91px;
        flex: 0 0 92px;
        text-align: center;
    }
    .main_wrap .nav_area .nav_item a {
        width: 100px;
    }
    .main_wrap .nav_area .nav_item a img {
        width: 100px;
        height: auto;
    }
}

/* PC追従ナビ */
.main_wrap .nav_sticky_pc {
    display: none;
}
@media (min-width: 769px) {
    .main_wrap .nav_sticky_pc {
        display: block;
        position: fixed;
        top: 50%;
        left: 24px;
        z-index: 2;
        width: auto;
        margin: 0;
        padding: 0;
        background: none;
        transform: translateY(-50%);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .main_wrap .nav_sticky_pc.is-visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    .main_wrap .nav_sticky_pc_list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 65vh;
        gap: 5%;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .main_wrap .nav_sticky_pc_item {
        margin: 0;
        padding: 0;
    }
    .main_wrap .nav_sticky_pc_link,
    .main_wrap .nav_sticky_pc_link:link,
    .main_wrap .nav_sticky_pc_link:visited,
    .main_wrap .nav_sticky_pc_link:hover,
    .main_wrap .nav_sticky_pc_link:active,
    .main_wrap .nav_sticky_pc_link:focus {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8vh;
        color: #333;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }
    .main_wrap .nav_sticky_pc_link:hover {
        opacity: 0.7;
    }
    .main_wrap .nav_sticky_pc_num {
        display: block;
        font-family: "Times New Roman", Times, serif;
        font-style: italic;
        font-size: 13px;
        line-height: 1;
        letter-spacing: 0.05em;
        color: #25c1f5;
    }
    .main_wrap .nav_sticky_pc_label {
        display: block;
        writing-mode: vertical-rl;
        font-family: "Yu Mincho", serif;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.4;
        letter-spacing: 0.18em;
        color: #333;
        white-space: nowrap;
    }
    .main_wrap .nav_sticky_pc_link.is-active .nav_sticky_pc_label {
        font-weight: 900;
        color: #000;
    }
    .main_wrap .nav_sticky_pc_link.is-active .nav_sticky_pc_num {
        font-weight: 700;
        color: #1aa8db;
    }
    .main_wrap .nav_sticky_pc_link.is-active:hover {
        opacity: 1;
    }
}

/* SP追従ナビ（動的可変対応版） */
.main_wrap .nav_sticky {
    display: none;
}
@media (max-width: 768px) {
    .main_wrap .nav_sticky {
        display: block;
        position: fixed;
        top: 0; /* JS（style.top）で .page-header の直下にリアルタイム配置されるため初期値は0 */
        left: 0;
        z-index: 2;
        width: 100%;
        height: auto; /* 【修正】50pxから固定解除、中身の可変に対応 */
        min-height: 50px; /* 最低限の高さは維持 */
        margin: 0;
        padding: 10px 12px; /* 上下にゆとりをもたせ、2行化時の文字切れをガード */
        box-sizing: border-box;
        background-color: #2bc1fc;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }
    .main_wrap .nav_sticky.is-visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    .main_wrap .nav_sticky_inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        width: 100%;
        max-width: 375px;
        height: auto; /* 【修正】100%から自動計算へ変更 */
        margin: 0 auto;
        flex-wrap: wrap; /* 万が一、言語設定や端末フォントサイズで溢れた場合に折り返せるように */
    }
    .main_wrap .nav_sticky_link,
    .main_wrap .nav_sticky_link:link,
    .main_wrap .nav_sticky_link:visited,
    .main_wrap .nav_sticky_link:hover,
    .main_wrap .nav_sticky_link:active,
    .main_wrap .nav_sticky_link:focus {
        display: flex;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: auto;
        height: 100%;
        color: #fff;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
    }
    .main_wrap .nav_sticky_label {
        display: block;
        width: auto;
        color: #fff;
        font-family: "Yu Mincho", serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 15px;
        letter-spacing: -1.4px;
        text-align: center;
        white-space: nowrap;
    }
    .main_wrap .nav_sticky_arrow {
        display: block;
        width: 6px;
        height: 6px;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
        transform: rotate(45deg);
        box-sizing: border-box;
    }
    .main_wrap .nav_sticky_divider {
        flex: 0 0 auto;
        width: 1px;
        height: 20px;
        background-color: #fff;
        opacity: 0.9;
    }
}

.main_wrap .content_area {
    width: 100%;
    margin: 0 auto;
    padding: 120px 0 0;
}
.main_wrap .content_area .content_title {
    text-align: center;
}
.main_wrap .content_area .content_title img {
    display: block;
    width: 100%;
    max-width: 576px;
    margin: 0 auto;
}
.main_wrap .content_area .content_text {
    text-align: center;
    font-size: 16px;
    line-height: 1.66;
    margin-top: 23px;
    font-weight: 400;
    letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .main_wrap .content_area {
        padding: 70px 0 0;
    }
    .main_wrap .content_area .content_title img {
        max-width: 337px;
    }
    .main_wrap .content_area .content_text {
        font-size: 15px;
        margin-top: 24px;
    }
}

/* 商品スライダー共通 */
.main_wrap .p-item-list__img {
    position: relative;
}
.main_wrap .p-item-list__slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.main_wrap .p-item-list__slider-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_wrap .p-item-list__slider .p-item-list__slider-img {
    position: absolute;
    top: 0;
    left: 0;
    display: block !important;
    opacity: 0;
    transition: none;
}
.main_wrap .p-item-list__slider .p-item-list__slider-img.is-active {
    opacity: 1;
    z-index: 1;
}
.main_wrap .p-item-list__img:not(.p-item-list__slider) .p-item-list__slider-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main_wrap .p-item-list__dots {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}
.main_wrap .p-item-list__dots li {
    display: block;
    list-style: none;
    line-height: 0;
    margin: 0;
    padding: 0;
}

/* 商品リスト：親サイトのホバー不透明度低下を無効化 */
.main_wrap .p-item-lists-outer a:hover,
.main_wrap .p-item-list:hover,
.main_wrap .p-item-list a:hover,
.main_wrap .p-item-list__img:hover,
.main_wrap .p-item-list__img a:hover {
    opacity: 1 !important;
}

/* 商品リスト（PC） */
@media (min-width: 769px) {
    .main_wrap .p-item-lists-outer {
        width: 100%;
        overflow: visible;
        margin-top: 0;
        padding-left: 0;
    }
    .main_wrap .p-item-lists-track {
        width: 100%;
        overflow: visible;
        touch-action: auto;
    }
    .main_wrap .p-item-lists-rows {
        --list-gap: 10px; 
        --pc-column-min: 216px; 
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(var(--pc-column-min), 1fr));
        column-gap: var(--list-gap);
        row-gap: 35px; 
        width: 100%;
        max-width: 1120px; 
        margin: 47px auto 0; 
        padding: 0;
        transform: none !important;
        transition: none !important;
        will-change: auto;
    }
    .main_wrap .p-item-lists__row {
        display: contents;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .main_wrap .p-item-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        min-width: 0;
    }
    .main_wrap .p-item-list__img {
        width: 100%;
        aspect-ratio: 216 / 240; 
        height: auto;
        margin: 0;
    }
    .main_wrap .p-item-list__img a {
        display: block;
        width: 100%;
        height: 100%;
    }
    .main_wrap .p-item-list__txt {
        display: flex;
        flex-direction: column;
        align-items: left;
        gap: 0;
        width: 100%;
        max-width: 200px;
        padding-bottom: 10px;
    }
    .main_wrap .p-item-list__name {
        width: 100%;
        font-family: "Yu Gothic", "YuGothic", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.35;
        text-align: left;
        word-break: break-word;
        margin-bottom: 3px;
    }
    .main_wrap .p-item-list__price {
        display: flex;
        align-items: center;
        justify-content: left;
        gap: 6px;
        width: 100%;
        margin: 0;
        color: #f00;
        font-family: "Yu Gothic", "YuGothic", sans-serif;
        font-weight: 500;
        white-space: nowrap;
    }
    .main_wrap .p-item-list__price-value {
        font-size: 14px;
        line-height: 1.5;
    }
    .main_wrap .p-item-list__price-discount {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        flex-shrink: 0;
        padding: 4px 8px;
        border: 1px solid #f00;
        border-radius: 30px;
        font-size: 12px;
        line-height: 1;
        color: #f00;
    }
    .main_wrap .p-item-list__slider .p-item-list__slider-inner {
        display: block;
        width: 100%;
        height: 100%;
        transform: none !important;
        transition: none;
    }
    .main_wrap .p-item-list__slider .p-item-list__slider-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        flex: none;
        width: 100% !important;
        max-width: none !important;
        height: 100%;
        opacity: 0;
        visibility: visible !important;
        transition: none;
    }
    .main_wrap .p-item-list__slider .p-item-list__slider-img.is-active {
        opacity: 1;
        z-index: 1;
    }
}

/* 商品リスト（SP） */
@media (max-width: 768px) {
    .main_wrap .p-item-lists-outer {
        overflow-x: hidden;
        margin-top: 40px;
        padding-left: 20px;
        padding-bottom: 4px;
    }
    .main_wrap .p-item-lists-track {
        overflow: visible;
    }
    .main_wrap .p-item-lists-rows {
        --list-gap: 11px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .main_wrap .p-item-lists__row-track {
        overflow-x: hidden;
        width: 100%;
        touch-action: pan-y pinch-zoom;
        padding-bottom: 4px;
    }
    .main_wrap .p-item-lists__row {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: var(--list-gap);
        width: max-content;
        margin: 0;
        padding: 0;
        list-style: none;
        will-change: transform;
        transition: transform 0.35s ease;
    }
    .main_wrap .p-item-lists__row.is-dragging {
        transition: none;
    }
    .main_wrap .p-item-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        flex: 0 0 148px;
        width: 148px;
        overflow: visible;
        touch-action: pan-y pinch-zoom;
    }
    .main_wrap .p-item-list__img {
        width: 148px;
        height: 165px;
        aspect-ratio: 148 / 165;
        margin: 0;
        touch-action: pan-y pinch-zoom;
    }
    .main_wrap .p-item-list__slider > a {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .main_wrap .p-item-list__slider .p-item-list__slider-inner {
        display: flex;
        flex-wrap: nowrap;
        width: auto;
        height: 100%;
        transition: transform 0.45s ease;
        will-change: transform;
    }
    .main_wrap .p-item-list__slider .p-item-list__slider-inner.is-instant {
        transition: none !important;
    }
    .main_wrap .p-item-list__slider {
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
    }
    .main_wrap .p-item-list__slider .p-item-list__slider-img {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        flex: 0 0 auto;
        height: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transition: none;
        z-index: auto;
        object-fit: cover;
    }
    .main_wrap .p-item-list__txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        flex-shrink: 0;
        overflow: visible;
        padding-bottom: 4px;
    }
    .main_wrap .p-item-list__name {
        width: 100%;
        font-family: "Yu Gothic", "YuGothic", sans-serif;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.35;
        text-align: left;
        word-break: break-word;
    }
    .main_wrap .p-item-list__price {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
        width: 100%;
        margin: 0;
        color: #f00;
        font-family: "Yu Gothic", "YuGothic", sans-serif;
        font-weight: 500;
        white-space: nowrap;
        overflow: visible;
        margin-top: 3px;
    }
    .main_wrap .p-item-list__price-value {
        font-size: 12px;
        line-height: 1.5;
    }
    .main_wrap .p-item-list__price-discount {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        flex-shrink: 0;
        padding: 3px 5px 2px;
        border: 1px solid #f00;
        border-radius: 30px;
        font-size: 12px;
        line-height: 1;
        color: #f00;
    }
    .main_wrap .p-item-list__dots {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        position: absolute;
        right: 8px;
        bottom: 8px;
        gap: 3px;
        z-index: 2;
    }
    .main_wrap .p-item-list__dot {
        width: 6px;
        height: 6px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background-color: #fff;
        pointer-events: none; 
        cursor: default;
    }
    .main_wrap .p-item-list__dot.is-active {
        background-color: rgb(203, 203, 203);
    }
}

/* Button section */
.main_wrap .footer_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
    margin-top: 120px;
    padding: 120px 0 120px;
    background-color: #beeaf7;
}
.main_wrap .footer_btn {
    margin: 0;
}
.main_wrap .footer_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 600px;
    max-width: calc(100% - 40px);
    height: 70px;
    background-color: #333;
    color: #fff;
    font-family: "Yu Gothic", "YuGothic", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
}
.main_wrap .footer_btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
}
.main_wrap .footer_note_text {
    font-family: "Yu Gothic", "YuGothic", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: -0.42px;
    color: #333;
    text-align: center;
}
@media (max-width: 768px) {
    .main_wrap .footer_area {
        padding: 70px 0;
        margin-top: 70px;
    }
    .main_wrap .footer_btn a {
        width: 315px;
        max-width: unset;
        height: 60px;
        font-size: 17px;
        letter-spacing: 0.68px;
    }
    .main_wrap .footer_btn a::after {
        right: 16px;
        width: 6px;
        height: 6px;
    }
    .main_wrap .footer_note_text {
        width: 100%;
        max-width: 499px;
        padding: 0 20px;
        box-sizing: border-box;
        font-size: 13px;
        letter-spacing: -0.39px;
    }
}