@charset "shift_jis";
/* CSS Document */
/*-----------------------------------------------*/
/*ベース*/
/*-----------------------------------------------*/
html {
    font-size: 2.2vw;
}
.header-info-red{
    display: none;
}
#shop-list{
    width:100%;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
#shop-list .smp_none{
    display: none !important;
}
#shop-list img{
    width: 100%;
    height: auto;
    display: block;
}
#shop-list a{
    display: block;
    position: relative;
}  
#shop-list a:hover{
    opacity: 0.8;
    color:#222 !important;
}

/* 変数指定 */
:root {
    /* 共通フォントサイズ(ディスプレイが390px時に14pxとなる) ※.grandfinale2025-innerの中の要素のみ */
    --font-size-text: 3.6cqw;

    /* 使用カラー */
    --color-black: #140d00;

    /* アクティブ時のカラー */
    --color-active: #0090ff;

    /* 横の余白 */
    --margin-space-beside: 0em;

    /* 縦の余白 */
    --margin-space-vertical: 1em;
}

/*-----------------------------------------------*/
/*全体枠*/
/*-----------------------------------------------*/
#shop-list .contents{

}
#shop-list section{
    display: flex;
    flex-direction: column;
    /* 20250902 H.ENOKI 【修正】MOD STR */
    /* padding:5% 0 5.5% 0; */
    padding: 5% 5% 0;
    /* 20250902 H.ENOKI 【修正】MOD END */
    margin: 0 auto;
    width: 90%;
}
/* 20251028 T.HONMA【追加】ADD STR */
#shop-list section#list{
    padding:5% 0 0 0;
    width:100%;
}
/* 20251028 T.HONMA【追加】ADD END */
#shop-list .inner{
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
#shop-list .contents.bg1{
    background: #f3f6ef;
}
#shop-list .contents.bg2{
    background: #f9ede6;
}
#shop-list .bg-white {
    padding: 1rem;
    background: #fff;
    /* 20250909 H.ENOKI 【修正】ADD STR */
    margin-bottom: 5%;
    /* 20250909 H.ENOKI 【修正】ADD END */
}

/*-----------------------------------------------*/
/*見出し*/
/*-----------------------------------------------*/
#shop-list .top-title {
    
}
#shop-list h1 {
    margin: 0 auto;
    border-bottom: 4px solid #ab8a53;
    position: relative;
    z-index: 1;
}
#shop-list h3 {
    position: relative;
    font-size: 2.5rem;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}
#shop-list h3::before {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    color: #ab8a53;
    font-size: 1.4rem;
    line-height: 1;
    content: attr(data-en);
    pointer-events: none;
    transform: translateX(-50%);
    font-family: 'Lato';
    font-weight: lighter;
}
#shop-list p{
    font-size: 1.5rem;
    line-height: 1.6em;
}

/*-----------------------------------------------*/
/*出店店舗*/
/*-----------------------------------------------*/
/* 20251028 T.HONMA 【改修】DEL STR  */
/* #shop-list .list-box{
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap:1rem;
    overflow-x: scroll;
} */
/* 20251028 T.HONMA 【改修】DEL STR  */

/* 20251028 T.HONMA 【改修】ADD STR  */
#shop-list .slider{
    display: flex;
    flex-direction: row;
    overflow: hidden;
    justify-content: center;
}
#shop-list .list-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1.3rem;
    padding-bottom: 1%;
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
    from {
    transform: translateX(0%);
    }
    to {
    transform: translateX(-100%);
    }
}
/* 20251028 T.HONMA 【改修】ADD END  */

#shop-list .list-box li{
    background: #fff;
    width: 100%;
    /* 20251028 T.HONMA 【改修】MOD STR  */
    min-width:calc(100vw / 2.2);
    /* 20251028 T.HONMA 【改修】MOD END  */
    /* min-width: calc(100% / 2 - 4%); */
    box-sizing: border-box;
    transition: .2s;
    border-radius: 8px;
    display: flex;
}
#shop-list .list-box li a{
    display: flex;
    flex-direction: column;
    /* gap: .8rem; */
    padding:1rem;
}
#shop-list .list-box .img{
    width: 100%;
    display: flex;
    align-items: center;
    aspect-ratio:1/1;
}
#shop-list .list-box .flex{
    display: flex;
    flex-direction: column;
    gap: .8rem;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    
}
#shop-list .list-box .logo{
    width: 52%;
    margin: 0 auto;
}
#shop-list .list-box .title{
    font-size: 1.5rem;
    padding: .7rem 0;
    color: #ab8a53;
    background: rgb(171 138 83 / 10%);
}
#shop-list .list-box .txt{
    font-size: 1.3rem;
    line-height: 1.7em;
    flex-grow: 1;
}

/*-----------------------------------------------*/
/*商品読み込み*/
/*-----------------------------------------------*/
#shop-list .pickup-item-slider{
    
}
#shop-list .pickup-item-slider ul{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1rem;
    justify-content: space-around;
}
#shop-list .pickup-item-slider ul >li{
    width: calc((100% - (1rem * 2))/ 2);
    box-sizing: border-box;
    background: #fff;
    padding: 1rem;
    transition: .2s;
}
#shop-list .pickup-item-slider ul >li dl{
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: .5rem;
}
#shop-list .pickup-item-slider ul >li .p_name{
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: 400;
    letter-spacing: normal;
    word-break: break-all;
    height: 4rem;
}
#shop-list .pickup-item-slider ul >li .p_name a{
    font-size: 1.4rem;
    line-height: 1.5em;
}
#shop-list .pickup-item-slider ul >li .icon{
    display: none;
}
#shop-list .pickup-item-slider ul >li .p_wish .wish{
    float: right;
    position: relative;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
#shop-list .pickup-item-slider ul >li .p_price{
    text-align: left;
}
#shop-list .pickup-item-slider ul >li .m_price{
    font-family: Lato, 'Noto Sans JP', sans-serif, 'メイリオ';
    font-size: 2rem;
    font-weight: 700;
    color: #eb0007;
    line-height: 1.3em;
}
#shop-list .swiper-container{
    padding: 0;
    margin-bottom: 5%;
}
#shop-list .pickup-item-slider ul >li .p_review{
    text-align: left;
}
/* 20250910 H.ENOKI 【改修】ADD STR  */
#shop-list .pickup-item-slider ul >li .price-icons .m_price_grid.coupon_i{
    background-color: #fee9e9;
    color: #d80909;
    width: fit-content;
    padding: 0 1rem;
    text-align: center;
    margin-top: 2px;
    font-size: 3vw;
}
/* 20250910 H.ENOKI 【改修】ADD END  */

/* 20250917 H.ENOKI 【追加】ADD STR  */
#shop-list .pickup-item-slider ul >li .price-icons .m_price_grid.pointup{
    background-color: #a6a40e;
    color: #ffff;
    width: fit-content;
    padding: 0 1rem;
    text-align: center;
    margin-top: 2px;
    font-size: 3vw;
}
/* 20250917 H.ENOKI 【追加】ADD END  */

/*-----------------------------------------------*/
/*ボタン*/
/*-----------------------------------------------*/
#shop-list .btn-black {
    position: relative;
    margin: 0;
}
#shop-list a .btn-black {
    position: relative;
    background-color: #222;
    color: #fff;
    padding: .7rem 0;
    border-radius: 5px;
    font-size: 1.3rem;
    border: 1px solid #222;
    transition: .2s;
}
/*矢印*/
#shop-list .btn-black::after{
    position: absolute;
    right: 6%;
    bottom:0;
    top: 0;
    display: block;
    content: "";
    width: .4em;
    height: .4em;
    margin: auto;
    transform: rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: .2s;
}
#shop-list a .btn-black.red {
    background-color: #cf1d2b;
    border: 1px solid #cf1d2b;
}
/*hover*/
#shop-list a:hover .btn-black {
    background-color: #fff;
    color: #222;
}
#shop-list a:hover .btn-black.red {
    background-color: #fff;
    color: #cf1d2b;
}
#shop-list .btn-black:hover::after,
#shop-list a:hover .btn-black::after{
    border-top: 2px solid #222;
    border-right: 2px solid #222;
}
#shop-list .btn-black.red:hover::after,
#shop-list a:hover .btn-black.red::after{
    border-top: 2px solid #cf1d2b;
    border-right: 2px solid #cf1d2b;
}

/* ==========250822タブ切り替え追加============ */

/* #shop-list .tab-wrap {
    
}

#shop-list .tab-btn2 {
    display: flex;
    background: #ffffff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 3px 5px 0px #87878794;
}

#shop-list .tab-btn {
    width: 50%;
    padding: 10px 0;
    text-align: center;
    list-style: none;
    cursor: pointer;
}

#shop-list .tab-btn.show {
    background: #ab8a53;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

#shop-list .tab-contents {
    display: none;
}

#shop-list .tab-contents.show {
    display: block;
    padding: 1rem;
    background: #f3f3f3;
    box-shadow: 0px 3px 4px 0px #87878794;
} */

/* タブ切り替え */
.tab input  {
    display: none;
}
.tab {
    width: 100%;
    margin: 0 auto;
    /* 20250909 H.ENOKI 【修正】ADD STR */
    margin-bottom: 6%;
    /* 20250909 H.ENOKI 【修正】ADD END */
}
.tab .tab-hed {
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 8px 5px 0px #87878794;
}
.tab .tab-hed .tab-label {
    width: 49%;
    display: flex;
    justify-content: center;
    background: #ffffff;
    font-size: min(3.6vw, 18px);
    padding: .5em 0;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.tab .tab-content {
    display: none;
    /* border: 1px solid #393939; */
    background: #f3f3f3;
    box-sizing: border-box;
    padding: 3%;
    box-shadow: 0px 6px 5px 0px #87878794;
}

.tab .tab-content ul {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 2%;
}
.tab .tab-content ul:nth-of-type(1) {
}

.tab .tab-content li {
    border-radius: 5px;
}
.tab .tab-content li:nth-of-type(1),
.tab .tab-content li:nth-of-type(2),
.tab .tab-content li:nth-of-type(3) {
    margin-top: 0;
}

/* タブ1枚目から探す */
.tab #tab-item-1:checked ~ .tab-hed .tab-label.item-1 {
    background: #ab8a53;
    color: #fcfcfc;
    border: none;
}
.tab #tab-item-1:checked ~ .tab-content.item-1 {
    display: block;
}

/* タブ2枚目から探す */
.tab #tab-item-2:checked ~ .tab-hed .tab-label.item-2 {
    background: #ab8a53;
    color: #fcfcfc;
    border: none;
}
.tab #tab-item-2:checked ~ .tab-content.item-2 {
    display: block;
}

/* 20250909 H.ENOKI 【ポイント10倍キャンペーン】ADD STR  */
#shop-list .detail{
    border: solid 2px #7d6339;
    box-sizing: border-box;
    background-color:#fff;
    border-radius: 5px;
    overflow: hidden;
}
#shop-list .accordion{
    padding: 0 1.5rem;
}
#shop-list .detail .accordion-inner{
    margin-bottom: 2%;
    text-align: start;   
} 
#shop-list .detail h5{
    margin-top: 2%;
}
/* 20250909 H.ENOKI 【ポイント10倍キャンペーン】ADD END  */

/* 20250917 K.MOMMA 【ポイント10倍キャンペーン詳細】ADD STR  */
#shop-list .detail .accordion-inner a{
    color: #0090ff;
    font-size: 1em;
    display: inline-block;
    text-decoration: underline; 
} 
/* 20250917 K.MOMMA 【ポイント10倍キャンペーン詳細】ADD END  */

/* 20250917 H.ENOKI 【ポイント10倍キャンペーン詳細】ADD STR  */
#shop-list .detail .pointup img{
    width: 35%;
}
#shop-list .detail .pointup .font_s{
    font-size: 1.3rem;
}
/* 20250917 H.ENOKI 【ポイント10倍キャンペーン詳細】ADD END  */


/* 20251217 H.ENOKI 【改修】ADD STA  */
/*==============================================
.shop-list 商品 STR
================================================*/

/* 商品共通CSS */
#shop-list .shop-list-section .shop-list-item-wrap {
    position: relative;
}

#shop-list .shop-list-section .shop-list-item-inner {
    width: 100%;
    display: flex;
    margin-bottom: .8em;

    /* スクロールバーの余白調節 */
    overflow-x: scroll;
    padding-left: var(--margin-space-beside);
    padding-right: var(--margin-space-beside);
    padding-bottom: 2em;
}

#shop-list .shop-list-section .shop-list-item {
    position: relative;
    width: 15em;
    min-width: 15em;
    background-color: #FFF;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 1em;
    transition: .3s;
    flex-direction: column;
    padding: .5em;
}
#shop-list .shop-list-item:nth-last-of-type(1) {
    margin-right: 0;
}


/* 商品：キャッチコピー */
#shop-list .shop-list-section .shop-list-item__copy {
    font-size: .9em;
    padding: .9em 0 .8em .8em;
    white-space: nowrap;
}
#shop-list .shop-list-section .shop-list-item__copy span {
    font-size: 1.2em;
    padding-right: .1em;
}
/* 商品：サムネ */
#shop-list .shop-list-section .shop-list-item__thum {
    width: 100%;
    overflow: hidden;
}
#shop-list .shop-list-section .shop-list-item__thum img {
    transition: .3s;
}

/* 商品：サムネより下のインナー */
#shop-list .shop-list-section .shop-list-item__inner {
    padding: 0 .5em .5em;
    display: flex;
    flex-direction: column;
    gap: .4em;
}

/* 商品：在庫数 */
#shop-list .shop-list-section .shop-list-item__zaiko {
    line-height: 1;
    font-size: 1em;
    padding-bottom: .1em;
}
#shop-list .shop-list-section .shop-list-item__zaiko .num {
    font-size: 1.3em;
    font-weight: 600;
    padding: 1em 0;
}

/* 商品：商品名 */
#shop-list .shop-list-section .shop-list-item__name {
    color: #222;
    height: 3.7em;
    display: flex;
    padding: .3em .5em;
    background-color: #fbf8f8;
}
#shop-list .shop-list-section .shop-list-item__name__h4 {
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    align-content: center;
    font-size: 1em;
}

/* 商品：価格 */
#shop-list .shop-list-section .shop-list-item__price {
    font-size: 1.5em;
    display: flex;
    align-items: baseline;
    gap: .3em;
    margin-bottom: 0;
}
#shop-list .shop-list-section .shop-list-item__price .main-price,
#shop-list .shop-list-section .shop-list-item__price .sub-price {
    position: relative;
    line-height: 1;
    font-family: 'Lato', 'Noto Sans JP', 'Yu Gothic black', sans-serif, 'メイリオ';
    font-weight: 700;
}
#shop-list .shop-list-section .shop-list-item__price .main-price {
    font-size: 1.1em;
    color: #eb0012;
}
/* .shop-list .shop-list-item__price .main-price::first-letter,
.shop-list .shop-list-item__price .sub-price::first-letter {
    font-size: .8em;
} */
#shop-list .shop-list-section .shop-list-item__price .sub-price {
    font-size: .7em;
    color: #a1a1a1;
}
#shop-list .shop-list-section .shop-list-item__price .sub-price::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #a1a1a1;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
}
/* 販促アイコン */
#shop-list .shop-list-section .shop-list-item__zaiko {
    display: flex;
    gap: .3em;
}
#shop-list .shop-list-section .shop-list-item__promo .promo-icon {
    background: #cf1d2b;
    color: #FFF;
    display: inline-block;
    line-height: 1;
    padding: 0.2em 0.6em;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 販促が空の場合でも高さが合うように */
    height: 2em;
}

#shop-list .shop-list-section .shop-list-item__zaiko .outlet-icon {
    color: #d96702;
}

/* 詳細はこちら */
#shop-list .shop-list-section .shop-list-item__link {
    color: var(--color-active);
    font-size: .9em;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: .3s;
    line-height: 1;
}

/* バナー */
#shop-list .shop-list-section .section-block.banner {
    margin: 0 0 1em;
    padding: 0 var(--margin-space-beside);
}
#shop-list .shop-list-section .section-block.banner .section-title.space-between {
    padding-left: 0;
}
#shop-list .shop-list-section .section-block.banner .banner-item{
    border: .2em solid #fff;
}

/*==============================================
.shop-list 商品 END
================================================*/

/* ピックアップのpng */
#shop-list #pickup h3 img{
    width: 7em;
}


/* 20251217 H.ENOKI 【改修】ADD END  */