@charset "shift_jis";
/* CSS Document */
/*-----------------------------------------------*/
/*ベース*/
/*-----------------------------------------------*/
html {
    font-size: 62.5%;
}
main, main#wrapper {
    padding: 0;
    max-width: none !important;
}
.header-info-red{
    display: none;
}
#shop-list{
    /* max-width:900px; */
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
    position: relative;
    /* 251006 H.ENOKI【編集】MOD STA */
    /* background: #edf6f3; */
    background: #f5f9ea;
    /* 251006 H.ENOKI【編集】MOD END */
}
#shop-list .pc_none{
    display: none !important;
}
#shop-list img{
    width: 100%;
    height: auto;
}
#shop-list a{
    display: block;
    position: relative;
}  
#shop-list a:hover{
    opacity: 0.8;
    color:#222 !important;
}

/*-----------------------------------------------*/
/*全体枠*/
/*-----------------------------------------------*/
#shop-list .contents{

}
#shop-list section{
    display: flex;
    flex-direction: column;
    /* 20250909 H.ENOKI 【修正】MOD STR */
    /* padding: 3% 0; */
    padding: 2% 0;
    /* 20250909 H.ENOKI 【修正】MOD END */
    max-width: 900px;
    margin: 0 auto;
    width: 85%;
}
/* 20251028 T.HONMA 【改修】ADD STR  */
#shop-list section#list{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
/* 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: 3rem;
    background: #fff;
}
/*-----------------------------------------------*/
/*見出し*/
/*-----------------------------------------------*/
#shop-list .top-title {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
#shop-list h1 {
    margin: 0 auto;
    border-bottom: 5px solid #ab8a53;
    position: relative;
    z-index: 1;
}
#shop-list h1 img{
    max-width: 1000px;
    margin: 0 auto;
    /* width: 95%; */
}
#shop-list h3 {
    position: relative;
    font-size: 3rem;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}
#shop-list h3::before {
    position: absolute;
    bottom: -2.5rem;
    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;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1.3rem;
    padding-bottom: 1%;
    overflow-x: scroll;
} */
/* 20251028 T.HONMA 【改修】DEL END  */

/* 20251028 T.HONMA 【改修】ADD STR  */
#shop-list .slider{
    display: flex;
    flex-direction: row;
    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: calc((100% - (1.5rem * 3))/ 3); */
    box-sizing: border-box;
    transition: .2s;
    min-width: 235px;
    border-radius: 10px;
}
#shop-list .list-box li a{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    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: 1rem;
}
#shop-list .list-box .logo{
    width: 51%;
    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;
    height: 7rem;
    flex-grow: 1;
}
/*-----------------------------------------------*/
/*商品読み込み*/
/*-----------------------------------------------*/
#shop-list .pickup-item-slider{
    
}
#shop-list .pickup-item-slider ul{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}
#shop-list .pickup-item-slider ul >li{
    width: calc((100% - (1.4rem * 4))/ 4);
    box-sizing: border-box;
    background: #fff;
    padding: .5rem;
    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: 3;
    font-weight: 400;
    letter-spacing: normal;
    word-break: break-all;
    height: 6.5rem;
}
#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{
    display: flex;
    justify-content: flex-end;
}
#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 .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: 3px;
    font-size: 1.4rem;
}
/* 20250910 H.ENOKI 【改修】ADD END  */

/* 20251125 H.ENOKI 【改修】ADD STR  */
#shop-list .pickup-item-slider ul >li .price-icons .common_icon_grid.sale{
    border: solid 1px #e50012;
    background-color: #e50012;
    color: #fff !important;
    width: fit-content;
    padding: 0 1rem;
    text-align: center;
    margin-top: 3px;
    font-size: 1.4rem;
}
/* 20251125 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: 3px;
    font-size: 1.4rem;
}
/* 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 a .btn-black.red {
    background-color: #cf1d2b;
    border: 1px solid #cf1d2b;
}
/*矢印*/
#shop-list .btn-black::after{
    position: absolute;
    right: 3rem;
    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;
}
/*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タブ切り替え追加============ */

/* タブ切り替え */
.tab input  {
    display: none;
}
.tab {
    width: 100%;
    margin: 0 auto;
    /* 20250909 H.ENOKI 【修正】ADD STR */
    margin-bottom: 5%;
    /* 20250909 H.ENOKI 【修正】ADD END */
}
.tab .tab-hed {
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 10px 10px 0px #87878794;
    /* margin-bottom: 2%; */
}
.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: 13px 13px 0 0;
}

.tab .tab-content {
    display: none;
    background: #f3f3f3;
    box-sizing: border-box;
    padding: 3%;
    box-shadow: 0px 10px 10px 0px #87878794;
}

.tab .tab-content ul {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 2.5%;
    margin-bottom: 0%;
}

.tab .tab-content li {
    border-radius: 4px;
}
.tab .tab-content li:nth-of-type(1),
.tab .tab-content li:nth-of-type(2),
.tab .tab-content li:nth-of-type(3),
.tab .tab-content li:nth-of-type(4) {
    margin-top: 0;
}
.tab .tab-content .title {
    width: 100%;
    text-align: center;
    border: none;
    background: none;
    aspect-ratio: auto;
    font-size: min(4.1vw, 20px);
    font-weight: 600;
    margin-bottom: .3em;
    color: #222;
}
.tab .tab-content li .categry_text {
    font-size: min(2.5vw, 12px);
    text-align: center;
}
.tab .tab-content li a {
    padding: 2%;
}
.tab .tab-content li img{
    border-radius: 5px;
}

/* タブ1枚目から探す */
.tab #tab-item-1:checked ~ .tab-hed .tab-label.item-1 {
    background: #ab8a53;
    color: #fcfcfc;
    border: none;
    border-radius: 13px 13px 0 0;
}
.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;
    border-radius: 13px 13px 0 0;
}
.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;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}
#shop-list .accordion{
    padding: 1rem 3rem;
}
#shop-list .detail .accordion-inner{
    margin-top: 3%;
    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: 15%;
}
/* 20250917 H.ENOKI 【ポイント10倍キャンペーン詳細】ADD END  */


/* 20251217 H.ENOKI 【改修】ADD STA  */
/*==============================================
.shop-list スライダー STR
================================================*/

/* 商品 */
#shop-list .shop-list-section .shop-list-item-inner {
    justify-content: center;
}

/* ラジオボタン非表示 */
#shop-list .shop-list-section .shop-list-item-wrap .radio-slider {
    display: none;
}

#shop-list .shop-list-section .shop-list-item-inner {
    overflow: visible;
    gap: 1%;
    padding-bottom: 0;
}
#shop-list .shop-list-section .shop-list-item {
    width: 27%;
    min-width: 27%;
    margin-right: 0;

    /* スライダー表示処理 */
    display: none;
    flex-direction: column;
}

/* スライダー矢印部分 */
#shop-list .slider-arrow {
    position: absolute;
    top: 50%;  
    transform: translateY(-50%);
    width: 2.5em;
    height: 2.5em;
    background: #2222229c;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 100vw;
    z-index: 1;
    border: 1px solid #ffffff;
}
#shop-list .slider-arrow .arrow {
    position: relative;
    width: 9px;
    height: 9px;
}
#shop-list .slider-arrow .arrow::before,
#shop-list .slider-arrow .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
    width: 9px;
    height: 3px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: calc(100% - 1px) 50%;
}
#shop-list .slider-arrow .arrow::before {
    transform: rotate(45deg);
}
#shop-list .slider-arrow .arrow::after {
    transform: rotate(-45deg);
}
#shop-list .slider-arrow.prev-label {
    left: .5em;
}

/* 位置調整 */
#shop-list .slider-arrow.prev-label .arrow {
    transform: rotate(-180deg);
    margin-right: -1px;
}
#shop-list .slider-arrow.next-label {
    right: .5em;
}

/* ページネーション サークル */
#shop-list .shop-list-item-wrap .slider-pagination {
    display: flex;
    justify-content: center;
    gap: .5em;
    margin-bottom: 1em;
}
#shop-list .shop-list-item-wrap .slider-pagination__cir {
    width: .8em;
    height: .8em;
    background-color: #ffffff;
    border-radius: 100vw;
    border: 1px solid #dfdfdf;
}

/* 有効なラジオボタンの色変更 */
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(1):checked ~ .slider-pagination .slider-pagination__cir:nth-of-type(1) {
    background-color: var(--color-active);
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(2):checked ~ .slider-pagination .slider-pagination__cir:nth-of-type(2) {
    background-color: var(--color-active);
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(3):checked ~ .slider-pagination .slider-pagination__cir:nth-of-type(3) {
    background-color: var(--color-active);
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(4):checked ~ .slider-pagination .slider-pagination__cir:nth-of-type(4) {
    background-color: var(--color-active);
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(5):checked ~ .slider-pagination .slider-pagination__cir:nth-of-type(5) {
    background-color: var(--color-active);
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(6):checked ~ .slider-pagination .slider-pagination__cir:nth-of-type(6) {
    background-color: var(--color-active);
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(7):checked ~ .slider-pagination .slider-pagination__cir:nth-of-type(7) {
    background-color: var(--color-active);
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(8):checked ~ .slider-pagination .slider-pagination__cir:nth-of-type(8) {
    background-color: var(--color-active);
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(9):checked ~ .slider-pagination .slider-pagination__cir:nth-of-type(9) {
    background-color: var(--color-active);
}

/* 表示処理 ラジオボタン1つにつき、３商品表示 */
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(1):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(1),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(1):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(2),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(1):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(3), 
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(1):checked ~ .slider-arrow:nth-of-type(1),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(1):checked ~ .slider-arrow:nth-of-type(2) {
    display: flex;
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(2):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(4),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(2):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(5),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(2):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(6), 
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(2):checked ~ .slider-arrow:nth-of-type(3),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(2):checked ~ .slider-arrow:nth-of-type(4)  {
    display: flex;
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(3):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(7),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(3):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(8),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(3):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(9), 
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(3):checked ~ .slider-arrow:nth-of-type(5),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(3):checked ~ .slider-arrow:nth-of-type(6)   {
    display: flex;
}
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(4):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(10),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(4):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(11),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(4):checked ~ .shop-list-item-inner .shop-list-item:nth-of-type(12), 
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(4):checked ~ .slider-arrow:nth-of-type(7),
#shop-list .shop-list-item-wrap .radio-slider:nth-of-type(4):checked ~ .slider-arrow:nth-of-type(8) {
    display: flex;
}

/*==============================================
.shop-list スライダー END
================================================*/
/* 20251217 H.ENOKI 【改修】ADD END  */