﻿.container {
    max-width: var(--responsive-sys-container-width);
    margin: 0 auto;
}

h1.block-category-list--header{
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 175%;
    letter-spacing: 0.72px;
    margin-bottom: 0;
}
h1.block-genre-page--header{
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 175%;
    letter-spacing: 0.72px;
    margin-bottom: 0;
}
.product-free-space__text-area{
    padding: 0 16px;
}
.product-free-space__image{
    width: 100%;
    display: block;
    margin-bottom: 30px;
}
.product-free-space__text{
    font-size: 16px;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.64px;
}
.product-free-space__text--bold{
    font-weight: 600;
}
.product-free-space__text-link{
    text-decoration: underline;
}
.product-free-space__text-link{
    display: inline-block;
}
@media (min-width: 769px){
    h1.block-category-list--header{
        font-size: 20px;
        letter-spacing: 0.8px;
        margin: 40px 67px 40px 67px;
    }
    h1.block-genre-page--header{
        font-size: 20px;
        letter-spacing: 0.8px;
        margin: 40px 67px 40px 67px;
    }
    .container {
        max-width: var(--responsive-sys-container-width);
        margin: 0 auto;
    }

    .product-free-space__area{
        display: flex;
    }
    .product-free-space__text-area{
        padding: 0;
        flex-grow: 1;
    }
    .product-free-space__image{
        width: 360px;
        margin-bottom: 0;
        flex-shrink: 0;
        margin-right: 60px;
    }
    .product-free-space__area--pattern-c{
        display: block;
    }
    .product-free-space__image--pattern-c{
        width: 100%;
        margin-bottom: 40px;
    }
    .product-free-space__text--pattern-c{
        text-align: center;
    }
}

/* 商品詳細 */
/* ページ上部エリア */
.product-details{
    margin-bottom: 60px;
}
.product-details-summary__area{
    display: grid;
    grid-template-columns: auto; /* 1カラム */
    grid-template-areas:
        "nav"
        "img"
        "info";
    gap: 0;
}
.product-details-summary-image__area{
    grid-area: img;
    width: 100%;
    min-width: 0;
    margin-bottom: 50px;
}
.product-details-summary-image__thumbnail-area{
    height: fit-content;
    position: relative;
    margin-bottom: 20px;
}
.product-details-summary-image__thumbnail-area .product-details-summary-image__thumbnail-slider-area{
    width: 100%;
}
.product-details-summary-image__area .product-details-summary-image__slider-area{
    padding: 0 16px;
}
.product-details-summary-image__area .product-details-summary-image__slider-item{
    width: 80px;
    opacity: 0.5;
}
.product-details-summary-image__area .product-details-summary-image__slider-item.swiper-slide-thumb-active{
    opacity: 1;
}
.product-details-summary-image__thumbnail-favorite-button{
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;

    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    z-index: 1;
    background-image: url("../../img/theme/base/favorite_btn.png");
    background-size: contain;
    background-repeat: no-repeat;
}
.product-details-summary-image__thumbnail-favorite-button--active{
    background-image: url("../../img/theme/base/favorite_btn_active.png");
}
.product-details-summary-navigation__area{
    grid-area: nav;
    width: 100%;
    padding: 20px 16px;
    display: flex;
    justify-content: space-between;
}
.product-details-summary-navigation__link{
    padding: 6.5px 8px;
    border-radius: 6px;
    border: 1px solid #000;
    background-color: #000;
    width: 100px;
    display: block;
}
.product-details-summary-navigation__text{
    font-size: 12px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.48px;
    color: #FFF;
    position: relative;
    padding-left: 18px;
    display: flex;
    justify-content: center;
}
.product-details-summary-navigation__text::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/btn_arrow_green.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    position: absolute;
    top: calc(50% - (12px / 2));
    left: 0;
    transform: scaleX(-1);
}
.product-details-summary-navigation__text--next{
    padding-left: 0;
    padding-right: 18px;
}
.product-details-summary-navigation__text--next::before{
    transform: none;
    left: auto;
    right: 0;
}
.product-details-summary-info__area{
    grid-area: info;
    width: 100%;
    margin-bottom: 60px;
    padding: 0 16px;
}
.product-details-summary-info__tag-list{
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}
.product-details-summary-info__tag-item{
    border-radius: 2px;
    border: 1px solid #C4C8D2;
    padding: 5px 6px;
}
.product-details-summary-info__tag-item:has(img){
    width: calc((100% - 16px) / 5);
    padding: 0;
    border: none;
}
.product-details-summary-info__tag-item--new{
    background-color: #C40;
}
.product-details-summary-info__tag-text{
    font-size: 10px;
    font-weight: 300;
    line-height: 100%;
}
.product-details-summary-info__tag-text--new{
    color: #FFF;
}
.product-details-summary-info__product-name{
    font-size: 24px;
    font-weight: 600;
    line-height: 175%;
    letter-spacing: 0.96px;
    margin-bottom: 30px;
}
.product-details-summary-info__price-area{
    margin-bottom: 30px;
}
.product-details-summary-info__price-text-area{
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 8px;
}
.product-details-summary-info__price-value{
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.96px;
}
.product-details-summary-info__price-label{
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.56px;
    position: relative;
    bottom: 2px;
}
.product-details-summary-info__price-discount{
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.56px;
    color: #C40;
    font-family: "Josefin Sans";
    padding: 6px 8px 4px;
    border: 1px solid #C40;
}
.product-details-summary-info__price-text--red{
    color: #C40;
}
.product-details-summary-info__price-note-text{
    font-size: 14px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.56px;
    margin-bottom: 8px;
}
.product-details-summary-info__price-note-text--line{
    text-decoration-line: line-through;
    margin-left: 4px;
}
.product-details-summary-info__price-note-day-text{
    font-size: 14px;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 0.56px;
    color: #C40;
}
.product-details-summary-info__stock-status{
    font-size: 16px;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.64px;
    color: #C40;
}
.product-details-summary-info__btn-area{
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-details-summary-info__cart-btn{
    background: none;
    outline: none;
    padding: 0;
    margin: 0;

    padding: 0 44px 0 20px;
    background-color: #C40;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    border-radius: 10px;
    border: 1px solid #C40;
    transition: 0.3s all ease;
}
.product-details-summary-info__cart-btn:hover{
    background-color: transparent;
}
.product-details-summary-info__cart-btn-text{
    font-size: 14px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.56px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 22px;
    flex-grow: 1;
    position: relative;
    transition: 0.3s all ease;
}
.product-details-summary-info__cart-btn:hover .product-details-summary-info__cart-btn-text{
    color: #C40;
}
.product-details-summary-info__cart-btn-text::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/icon_cart_white.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    position: absolute;
    left: 0;
    top: calc(50% - (24px / 2));
}
.product-details-summary-info__cart-btn:hover .product-details-summary-info__cart-btn-text::before{
    background-image: url("../../img/theme/base/icon_cart_orange.png");
}
.product-details-summary-info__inquiry-btn{
    padding: 0 43px 0 20px;
    border: 1px solid #717A7A;
    border-radius: 10px;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
}
.product-details-summary-info__inquiry-btn-text{
    font-size: 14px;
    font-weight: 300;
    line-height: 125%;
    letter-spacing: 0.56px;
    position: relative;
    flex-grow: 1;
    text-align: center;
    padding-left: 32px;
}
.product-details-summary-info__inquiry-btn-text::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/icon_ask.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    top: calc(50% - (24px / 2));
    left: 0;
}
.product-details-summary-info__restock-btn{
    width: 100%;
    height: 56px;
    padding: 0 44px 0 20px;
    border: 1px solid #C40;
    border-radius: 10px;
    background-color: #FFF;
    display: flex;
    align-items: center;
}
.product-details-summary-info__restock-btn-text{
    font-size: 14px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.56px;
    color: #C40;
    width: 100%;
    padding-left: 32px;
    position: relative;
}
.product-details-summary-info__restock-btn-text::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/product_details_summary_info_restock_btn_icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: calc(50% - (24px / 2));
}
.product-details-summary-info__before-sales-start{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EBEEF5;
}
.product-details-summary-info__before-sales-start-text{
    font-size: 14px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.56px;
}
.product-details-summary-info__other{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.product-details-summary-info__other-dl{
    display: flex;
    gap: 10px;
}
.product-details-summary-info__other-dt{
    min-width: 80px;
    font-size: 12px;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.48px;
}
.product-details-summary-info__other-dd{
    font-size: 12px;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.48px;
}
.product-details-tab{
    margin-bottom: 40px;
}
.product-details-tab__title-list{
    border-bottom: 1px solid #000;
    display: flex;
    gap: 10px;
    padding: 0 16px;
}
.product-details-tab__title-item{
    padding: 8px 16px;
    background-color: #F5F6FA;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
}
.product-details-tab__title-item--active{
    background-color: #000;
}
.product-details-tab__title-item--active .product-details-tab__title{
    color: #FFF;
    font-weight: 600;
}
.product-details-tab__title{
    font-size: 18px;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.72px;
}
.product-details-tab__text-list{
    padding: 20px 16px 0
}
.product-details-tab__text-item{
    display: none;
}
.product-details-tab__text-item--active{
    display: block;
}
.product-details-tab__text{
    font-size: 14px;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.56px;
}
.product-details-tab__detail-text{
    font-size: 12px;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.48px;
    margin-top: 28px;
}
.product-details-other-info__content{
    margin-bottom: 20px;
}
.product-details-other-info__content:last-of-type{
    margin-bottom: 0;
}
.product-details-other-info__title{
    font-size: 18px;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.72px;
    background-color: #F5F6FA;
    padding: 8px 16px;
}
.product-details-other-info__text-area{
    padding: 20px 16px 0;
}
.product-details-other-info__text{
    font-size: 14px;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.56px;
}
.product-details-other-info__text--bold{
    font-weight: 600;
}
.product-details-other-info__free-img{
    width: 100%;
    display: block;
    margin-top: 28px;
}

/* レビュー */
.product-details-other-info__review-list{
    margin-bottom: 10px;
}
.product-details-other-info__review-item{
    padding: 12px 16px;
    border-bottom: 1px solid #C4C8D2;
    display: flex;
    flex-direction: column;
    gap: 4px
}
.product-details-other-info__review-evaluation-area{
    display: flex;
    justify-content: space-between;
}
.product-details-other-info__review-star-list{
    display: flex;
    gap: 4px;
}
.product-details-other-info__review-star-item{
    width: 12px;
    height: 12px;
}
.product-details-other-info__review-star-img{
    width: 100%;
    display: block;
}
.product-details-other-info__review-date{
    font-size: 12px;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0.48px;
    color: #717A7A;
}
.product-details-other-info__review-username-area{
    display: flex;
}
.product-details-other-info__review-username{
    font-size: 12px;
    font-weight: 300;
    line-height: 170%;
    letter-spacing: 0.48px;
    color: #717A7A;
}
.product-details-other-info__review-username-suffix{
    font-size: 12px;
    font-weight: 300;
    line-height: 170%;
    letter-spacing: 0.48px;
    color: #717A7A;
}
.product-details-other-info__review-title{
    font-size: 14px;
    font-weight: 600;
    line-height: 175%;
    letter-spacing: 0.56px;
}
.product-details-other-info__review-text{
    font-size: 14px;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.56px;
}
.product-details-follow-banner__area{
    position: fixed;
    z-index: 99998;
    bottom: -96px;
    left: 0;
    background: rgba(255, 255, 255, 0.80);
    padding: 20px 16px;
    width: 100%;
    transition: 0.3s all ease;
}
.product-details-follow-banner__area--active{
    bottom: 52px;
}
.product-details-follow-banner__link{
    background: none;
    outline: none;
    padding: 0;
    margin: 0;

    padding: 0 44px 0 20px;
    background-color: #C40;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    border-radius: 10px;
    border: 1px solid #C40;
    transition: 0.3s all ease;
}
.product-details-follow-banner__link:hover{
    background-color: #FFF;
}
.product-details-follow-banner__link-text{
    font-size: 14px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.56px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 22px;
    flex-grow: 1;
    position: relative;
    transition: 0.3s all ease;
}
.product-details-follow-banner__link:hover .product-details-follow-banner__link-text{
    color: #C40;
}
.product-details-follow-banner__link-text::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/icon_cart_white.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    position: absolute;
    left: 0;
    top: calc(50% - (24px / 2));
}
.product-details-follow-banner__link:hover .product-details-follow-banner__link-text::before{
    background-image: url("../../img/theme/base/icon_cart_orange.png");
}
@media (min-width: 769px){
    .product-details{
        margin-bottom: 80px;
        padding: 0 67px;
    }
    .product-details-summary__area{
        grid-template-columns: auto; /* 1カラム */
        grid-template-areas:
            "img nav"
            "img info";
        grid-template-rows: auto 1fr;
        grid-template-columns: auto 1fr;
        margin-bottom: 80px;
    }
    .product-details-summary-image__area{
        width: 654px;
        margin-bottom: 0;
        margin-right: 67px;
    }
    .product-details-summary-image__area .product-details-summary-image__slider-area{
        padding: 0;
    }
    .product-details-summary-image__area .product-details-summary-image__slider-item{
        width: 90px;
    }
    .product-details-summary-image__area .product-details-summary-image__slider-list{
        flex-wrap: wrap;
        gap: 4px 4px;
    }
    .product-details-summary-image__thumbnail-favorite-button{
        bottom: 20px;
        right: 20px;
    }
    .product-details-summary-navigation__area{
        width: fit-content;
        height: fit-content;
        padding: 40px 0;
        justify-content: flex-start;
        gap: 10px;
    }
    .product-details-summary-navigation__link{
        width: 100px;
        height: fit-content;
    }
    .product-details-summary-info__area{
        width: fit-content;
        margin-bottom: 0;
        padding: 00;
    }
    .product-details-summary-info__tag-list{
        display: flex;
        gap: 4px;
        margin-bottom: 10px;
    }
    .product-details-summary-info__product-name{
        font-size: 28px;
        letter-spacing: 1.12px;
        margin-bottom: 40px;
    }
    .product-details-summary-info__price-area{
        margin-bottom: 40px;
    }
    .product-details-summary-info__price-value{
        font-size: 28px;
        letter-spacing: 1.12px;
    }
    .product-details-summary-info__price-discount{
        font-size: 16px;
        letter-spacing: 0.64px;
        padding: 8px 8px 4px;
    }
    .product-details-summary-info__btn-area{
        margin-bottom: 40px;
    }
    .product-details-summary-info__restock-btn{
        width: 300px;
    }
    .product-details-summary-info__before-sales-start{
        width: 300px;
    }
    .product-details-summary-info__cart-btn{
        width: 300px;
    }
    .product-details-summary-info__inquiry-btn{
        width: 300px;
    }
    .product-details-introduction{
        width: 654px;
        margin: 0 auto 0 0;
    }
    .product-details-tab__text-list{
        padding: 20px 0 0;
    }
    .product-details-other-info__text-area{
        padding: 20px 0 0;
    }

    .product-details-follow-banner__area{
        bottom: 30%;
        left: auto;
        right: 20px;
        background: none;
        padding: 0;
        width: fit-content;
        transition: 0.3s all ease;
        opacity: 0;
    }
    .product-details-follow-banner__area--active{
        opacity: 1;
    }
    .product-details-follow-banner__link{
        width: 240px;
    }
    .product-details-follow-banner__link:hover{
        background-color: #FFF;
    }
    .product-details-follow-banner__link-text{
        padding-left: 32px;
    }
    .product-details-follow-banner__link-text::before{
        margin-right: 0;
    }
}

/* 商品一覧ページ */
/* .block-category-list--header-freespace{
    margin-bottom: 60px;
}
.block-genre-list--header-freespace{
    margin-bottom: 60px;
}
.block-event-page--header-freespace{
    margin-bottom: 60px;
}
.block-category-list{
    margin-top: 40px;
}
.pane-main .block-category-list{
    margin-top: 40px;
}
.block-genre-page{
    margin-top: 40px;
}
.pane-main .block-genre-page{
    margin-top: 40px;
} */
/* ページャー */
.pane-main .block-goods-list-naviframe{
    align-items: center;
}
.pager-scope{
    font-size: 12px;
    font-weight: 300;
    line-height: 125%;
    letter-spacing: 0.48px;

    padding: 0;
    margin: 0;
}
.pager-total{
    padding: 0;
    margin: 0;
}
.pager-count{
    font-size: 12px;
    font-weight: 300;
    line-height: 125%;
    letter-spacing: 0.48px;
}
.pager-count span{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.56px;
}
.block-goods-list-naviframe .pagination > *{
    border: 1px solid #717A7A;
    font-size: 14px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.56px;
}
.block-goods-list-naviframe .pager-current{
    background-color: #009740;
    border: 1px solid #009740;
}
.block-goods-list-naviframe .pager-next{
    border: none;
    position: relative;
}
.block-goods-list-naviframe .pager-next::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/btn_arrow_green.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    position: absolute;
    top: calc(50% - (12px / 2));
    left: calc(50% - (8px / 2));
}
.block-goods-list-naviframe .pager-last{
    border: none;
    position: relative;
}
.block-goods-list-naviframe .pager-last::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/more_btn_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 12px;
    position: absolute;
    top: calc(50% - (12px / 2));
    left: calc(50% - (14px / 2));
    transform: rotate(-180deg);
}

.block-goods-list-naviframe .pager-previous{
    border: none;
    position: relative;
}
.block-goods-list-naviframe .pager-previous::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/btn_arrow_green.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    position: absolute;
    top: calc(50% - (12px / 2));
    left: calc(50% - (8px / 2));
    transform: rotate(-180deg);
}
.block-goods-list-naviframe .pager-first{
    border: none;
    position: relative;
}
.block-goods-list-naviframe .pager-first::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/more_btn_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 12px;
    position: absolute;
    top: calc(50% - (12px / 2));
    left: calc(50% - (14px / 2));
}
.block-icon-image--center-inline-block .block-icon-image--next{
    background-image: none;
}
.block-icon-image--center-inline-block .block-icon-image--last{
    background-image: none;
}
.block-icon-image--center-inline-block .block-icon-image--first{
    background-image: none;
}
.block-icon-image--center-inline-block .block-icon-image--prev{
    background-image: none;
}

.pane-main .block-goods-list-naviframe{
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: none;
    border-bottom: none;
    justify-content: space-between;
    display: flex;
    padding: 0 16px;
}
.pane-main .block-goods-list-naviframe .block-goods-list--display-style-items, .pane-main .block-goods-list--params .block-goods-list--sort-order-items{
    border-left: none;
}
.block-goods-list-naviframe .block-goods-list--sort-order-items .block-sort-display__wrap{
    display: flex;
    align-items: flex-end;
    gap: 4px;
    width: fit-content;
    padding: 0 16px;
}
.block-sort-display__num{
    font-size: 14px;
    font-family: 600;
    line-height: 125%;
    letter-spacing: 0.56px;
}
.block-sort-display__label{
    font-size: 12px;
    font-weight: 300;
    line-height: 125%;
    letter-spacing: 0.48px;
    position: relative;
    bottom: 1px;
}
.pane-main .block-goods-list--params{
    border-top: none;
    border-bottom: none;
    gap: 10px;
}
.block-goods-list--params .block-goods-list--sort-order-items .block-sort--header{
    width: auto;
    padding: 0 16px 0 0;
}
.block-search-page--goods .block-goods-list--params .block-goods-list--sort-order-items .block-sort--header{
    width: auto;
    padding: 0 16px 0 0;
}
.block-goods-list--params .block-goods-list--sort-order-items .block-sort--header h2{
    font-size: 12px;
    font-weight: 300;
    line-height: 125%;
    letter-spacing: 0.48px;

    padding: 0 12px;
    height: 36px;
    width: fit-content;
    display: flex;
    align-items: center;
    border: 1px solid #717A7A;
    border-radius: 10px;
}
.block-search-page--goods .block-goods-list--params .block-goods-list--sort-order-items .block-sort--header h2{
    font-size: 12px;
    font-weight: 300;
    line-height: 125%;
    letter-spacing: 0.48px;

    padding: 0 12px;
    height: 36px;
    width: fit-content;
    display: flex;
    align-items: center;
    border: 1px solid #717A7A;
    border-radius: 10px;
}
.block-goods-list--params .block-goods-list--sort-order-items .block-sort--header h2::after{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/btn_arrow_green.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    transform: rotate(90deg);
}
.block-search-page--goods .block-goods-list--params .block-goods-list--sort-order-items .block-sort--header h2::after{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/btn_arrow_green.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    transform: rotate(90deg);
}
.pane-main .block-goods-list--params .block-goods-list--display-style-items, .pane-main .block-goods-list--params .block-goods-list--sort-order-items{
    border-left: none;
}
.block-goods-list--params .block-goods-list--display-style-items .block-style--header{
    width: fit-content;
}
.block-search-page--goods .block-goods-list--params .block-goods-list--display-style-items .block-style--header{
    width: fit-content;
}
.block-goods-list--params .block-goods-list--display-style-items .block-style--header h2{
    font-size: 12px;
    font-weight: 300;
    line-height: 125%;
    letter-spacing: 0.48px;

    padding: 0 12px;
    height: 36px;
    width: fit-content;
    display: flex;
    align-items: center;
    border: 1px solid #717A7A;
    border-radius: 10px;
}
.block-search-page--goods .block-goods-list--params .block-goods-list--display-style-items .block-style--header h2{
    font-size: 12px;
    font-weight: 300;
    line-height: 125%;
    letter-spacing: 0.48px;

    padding: 0 12px;
    height: 36px;
    width: fit-content;
    display: flex;
    align-items: center;
    border: 1px solid #717A7A;
    border-radius: 10px;
}
.block-goods-list--params .block-goods-list--display-style-items .block-style--header h2::after{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/btn_arrow_green.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    transform: rotate(90deg);
}
.block-search-page--goods .block-goods-list--params .block-goods-list--display-style-items .block-style--header h2::after{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/btn_arrow_green.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    transform: rotate(90deg);
}
.product-catalog__goods{
    margin-bottom: 60px;
    padding: 0 16px;
}
.block-genre-page--goods > .product-catalog__goods{
    margin-bottom: 60px;
    padding: 0 16px;
}
.product-catalog__goods-list{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 12px;
}
.product-catalog__goods-item{
    width: calc((100% - 12px) / 2);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-catalog__goods-link{
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
.product-catalog__goods-img{
    width: 100%;
    display: block;
    border: 1px solid #EBEEF5;
}
.product-catalog__goods-tag-list{
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.product-catalog__goods-tag-item{
    border: 1px solid #C4C8D2;
    padding: 5px 6px;
    width: fit-content;
    border-radius: 2px;
}
.product-catalog__goods-tag-item--new{
    background-color: #C40;
}
.product-catalog__goods-tag-item:has(img){
    width: calc((100% - 8px) / 3);
    padding: 0;
    border: none;
}
.product-catalog__goods-tag-item img{
    width: 100%;
    display: block;
}
.product-catalog__goods-tag-text{
    font-size: 10px;
    font-weight: 300;
    line-height: 100%;
}
.product-catalog__goods-tag-text--new{
    color: #FFF;
}
.product-catalog__goods-name{
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.56px;
    display: -webkit-box;          /* Flexboxの古い版（必須） */
    -webkit-box-orient: vertical;  /* 並ぶ方向を垂直に指定 */
    -webkit-line-clamp: 3;         /* 表示したい行数を指定（ここでは3行） */
    overflow: hidden;
    cursor: pointer;
}
.product-catalog__goods-link:hover .product-catalog__goods-name{
    text-decoration: underline;
}
.product-catalog__goods-price{
    display: flex;
    align-items: flex-end;
}
.product-catalog__goods-price-value{
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.64px;
}
.product-catalog__goods-price-label{
    font-size: 12px;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.48px;
    position: relative;
    bottom: 2px;
}
.product-catalog__goods-cart-button{
    border: 1px solid #C40;
    background-color: #C40;
    padding: 0 24px 0 12px;
    height: 28px;
    width: 100%;
    border-radius: 6px;
    transition: 0.3s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-catalog__goods-cart-button:hover{
    background-color: transparent;
}
.product-catalog__goods-cart-button-text{
    font-size: 12px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.48px;
    color: #FFF;
    display: flex;
    padding-left: 26px;
    position: relative;
    width: 100%;
    justify-content: center;
    transition: 0.3s all ease;
}
.product-catalog__goods-cart-button:hover .product-catalog__goods-cart-button-text{
    color: #C40;
}
.product-catalog__goods-cart-button-text::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/icon_cart_white.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: calc(50% - (16px / 2));
}
.product-catalog__goods-cart-button:hover .product-catalog__goods-cart-button-text::before{
    background-image: url("../../img/theme/base/icon_cart_orange.png");
}
.product-catalog__goods-detail-button{
    width: 100%;
    height: 28px;
    padding: 0 8px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    background-color: #000;
    border-radius: 6px;
    transition: 0.3s all ease;
}
.product-catalog__goods-detail-button-text{
    font-size: 12px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.48px;
    color: #FFF;
    padding-right: 18px;
    position: relative;
    width: 100%;
    text-align: center;
    transition: 0.3s all ease;
}
.product-catalog__goods-detail-button-text::before{
    content: "";
    display: block;
    background-image: url("../../img/theme/base/btn_arrow_green.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    margin-right: 8px;
    position: absolute;
    right: 0;
    top: calc(50% - (12px / 2));
}
.product-catalog__goods-detail-button:hover{
    background-color: #FFF;
}
.product-catalog__goods-detail-button:hover .product-catalog__goods-detail-button-text{
    color: #000;
}
.product-catalog__info{
    background-color: #F5F6FA;
}
.product-catalog__info-area{
    padding: 20px 16px;
}
.product-catalog__info-title{
    font-size: 16px;
    font-weight: 600;
    line-height: 175%;
    letter-spacing: 0.64px;
    margin-bottom: 30px;
}
.product-catalog__info-text{
    font-size: 16px;
    font-weight: 300;
    line-height: 175%;
    letter-spacing: 0.64px;
}
.product-catalog__info-note{
    font-size: 12px;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.48px;
}
@media (min-width: 769px){
    .block-genre-page .block-genre-page--goods{
        width: 1200px;
    }
    .block-category-list--header-freespace{
        margin: 0 67px 80px 67px;
    }
    .block-genre-list--header-freespace{
        margin: 0 67px 80px 67px;
    }
    .block-event-page--header-freespace{
        margin: 0 67px 80px 67px;
    }
    /* ページャー */
    .block-goods-list-naviframe .pager-current{
        color: #FFF;
    }
    .block-goods-list-naviframe .pagination li a{
        color: #2C3333;
    }
    /* .pane-main .block-category-list{
        max-width: var(--responsive-sys-container-width);
        margin: 40px auto;
    }
    .block-category-list{
        max-width: var(--responsive-sys-container-width);
        margin: 40px auto;
    }
    .block-genre-page{
        max-width: var(--responsive-sys-container-width);
        margin: 40px auto;
    }
    .pane-main .block-genre-page{
        max-width: var(--responsive-sys-container-width);
        margin: 40px auto;
    } */
    .pane-main .block-goods-list-naviframe{
        border-top: none;
        border-bottom: none;
        justify-content: space-between;
        width: 1034px;
        margin: 40px auto 40px;
        padding: 0;
    }
    .block-goods-list-naviframe .block-goods-list--sort-order-items .block-sort-display__wrap{
        padding: 0;
    }
    .pane-main .block-goods-list--params{
        border-top: none;
        border-bottom: none;
        max-width: var(--responsive-sys-container-width);
        padding: 0 67px;
        margin: 0 auto 40px;
    }
    .block-goods-list--params .block-goods-list--sort-order-items .block-sort--header{
        width: auto;
        padding: 0 16px 0 0;
    }
    .block-search-page--goods .block-goods-list--params .block-goods-list--sort-order-items .block-sort--header{
        width: auto;
        padding: 0 16px 0 0;
    }

    .product-catalog__goods{
        padding: 0 67px;
        margin: 0 auto 80px;
    }
    .block-genre-page--goods > .product-catalog__goods{
        padding: 0 67px;
        margin: 0 auto 80px;
    }
    .product-catalog__goods-list{
        display: flex;
        flex-wrap: wrap;
        gap: 60px 14px;
    }
    .product-catalog__goods-item{
        width: 166px;
    }
    .product-catalog__info-area{
        padding: 36px 40px;
    }
    .block-category-list--sub{
        padding: 0 67px;
    }
}