@charset "utf-8";
/* CSS Document */

/*--------------------
年末年始総合LP
2025-2026
#wanderwinter
--------------------*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

#contents,#contents a {
    font-family: "Noto Serif JP", serif;
    display: block;
}
.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s;
}
.fade.wander_menu {
    transition: 1.5s;
}

/*ヘッダー*/
#contents section.cont_header {
    width: 100%;
    max-width: 980px;
    margin: auto;
    position: relative;
    h2 {
        background: none;
        position: relative;
        z-index: 20;
    }
    div.wander_menu {
        position: absolute;
        top: 35px;
        right: -40px;
        z-index: 0;
        ul {
            display: flex;
            flex-direction: column;
            gap: 2px;
            li {
                writing-mode:vertical-rl;
                background: var(--color-base-accent-dark);
                border-radius: 0 10px 10px 0;
                border: 0.5px solid #000;
                box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
                transition: 0.3s;
                a {
                    display: block;
                    padding: 10px 15px 25px 40px;
                    color:#fff;
                    font-family: var(--fontfamily-base);
                    font-weight: bold;
                    position: relative;
                }
                a::after {
                    font-family: var(--fontfamily-icon);
                    content: "\e313";
                    padding: 5px 0 0;
                    font-size: 20px;
                    display: block;
                    position:absolute;
                    bottom: 0;
                    right: 20%;
                }
            }
            li:hover {
                    transform: translateX(3px);
                    transition: 0.3s;
            }
        } 
    }
}



/*背景*/
#contents {
    background: url(bg_sub.png), url(bg_main.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
/*導入キャプション*/
#contents section.caption {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 40px;
    > p {
        margin-bottom: 40px;
        font-size: 24px;
        line-height: 2.6rem;
        font-weight: 600;
        span {
            display: block;
            font-size: 35px;
            margin-bottom: 20px;
            line-height: normal;
            font-weight: 900;
        }
    }
    div {
        p {
            display: inline-block;
            background: #fff;
            border-radius: 40px;
            padding: 15px 50px 18px;
                font-size: 26px;
                font-weight: 900;
            span {
                display: inline-block;
                margin-right: 10px;
            }
        }
    }
}

#contents-main.all {
    width: 980px;
    margin: auto;
}

/*コンテンツ共通*/
section.cont_items {
    background: #fff;
    border-radius: 20px;
    padding: 40px 0;
    div.inner {
        padding: 0 60px;
        box-sizing: border-box;
        width: auto;
        max-width: 100%;
        min-width: 100%;
        margin: 30px 0 50px;
    }
}


#contents-main section.cont_items h3 {
    padding: 0;
    background: transparent;
}

/*イベント記事*/
#winterevent ul.eventlist{
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    gap: 40px; 
    .ev_item{
        margin-bottom: 20px;
    }
    .ev_item.overday{
        /*display: none;*/
        position: relative;
    }
     .ev_item.overday::after{
        content: "終了しました";
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.75);
        color: var(--color-base-accent-dark);
        font-weight: 900;
        font-size: 30px;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
    }
    .ev_item .detail h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
    } 
    .ev_item .detail .ev_detail {
        margin-bottom: 20px;
        text-align: justify;
/*        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;*/
    }  
}

.pc #winterevent ul.eventlist .ev_item {
    .detail{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
      .detail .image {
          a img {
              object-fit: cover;
              height: 120%;
              width: 120%;
              border: 0.5px solid #333;
              box-sizing: border-box;
          }
          width: 40%;height: auto;aspect-ratio: 1/1;/* border: 0.5px solid #333; */box-sizing: border-box;overflow: hidden;
      }
      .detail .event_text{width: calc(60% - 20px);display: flex;flex-direction: column;justify-content: space-between;}
}
#winterevent .eventlist li.overday{
    /* display: none; */
}



/*ピックアップ特集*/

/*タブ切替btn*/
#manpuku ul.tab_btn {
    display: flex;
    justify-content: center;
    margin: 30px auto;
    gap: 5px;
    width: 87%;
    flex-wrap: wrap;
}
#manpuku ul.tab_btn li {
    width: calc(100%/4 - 10px);
    height: auto;
}
#manpuku ul.tab_btn li label{
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background: #008c00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    line-height: 1.2rem;
}
#manpuku ul.tab_btn li label::after{
    font-family: var(--fontfamily-icon);
    content: "\e313";
    padding: 0;
    font-size: 20px;
    display: block;
}
/*タブ切り替え*/
.tab-radio {
  display: none;
}
.tab-menu:hover {
  opacity: 0.8;
}
.feature_item {
  display: none;
}

/* ラジオボタンがチェックされたら、コンテンツを表示 */
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content,
#tab04:checked ~ #tab04_content{
  display: block;
}

/* ラジオボタンがチェックされたら、タブの色を変える */
#tab01:checked ~ ul li #tabmenu01 label,
#tab02:checked ~ ul li #tabmenu02 label,
#tab03:checked ~ ul li #tabmenu03 label,
#tab04:checked ~ ul li #tabmenu04 label{
  background-color: var(--color-base-accent-dark)!important;
}

#manpuku:before,#coupon:before {
    content:'';
    display:  block;
    margin: 60px auto;
    width: calc(100% - 120px);
    border-top:4px solid #d9c28e;
}
#manpuku .NewsItemList .shopnews_list,#coupon .NewsItemList .shopnews_list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
}
#manpuku .NewsItemList .goodscomment,#coupon .NewsItemList .shopnews_list{
  display: none;
}
#manpuku h4,#coupon h4 {
    margin: auto;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    background:#eee;
    border-radius: 50px;
    line-height: 2.6rem
}
#manpuku > p, #coupon > p {
    text-align: center;
    font-size: 18px;
    line-height: normal;
    padding: 15px 0 0;
    
    
    span {
        display: block;
        font-weight: bold;
        margin: 10px auto 0;
        color: var(--color-base-accent-dark);
        font-size: 24px;
    }
}
#manpuku .NewsItemList .item .image,#coupon .NewsItemList .item .image {
    float: none;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1.5;
    position: relative;
    border: none;
    box-sizing: border-box;
}
#contents-main #manpuku .NewsItemList .item .desc,#contents-main #coupon .NewsItemList .item .desc {
    width:100%;
    padding-top: 10px;
}
#contents-main #manpuku .NewsItemList .item .morelink,#contents-main #coupon .NewsItemList .item .morelink {
    display:none;
}
#contents-main #manpuku .NewsItemList .item,#contents-main #coupon .NewsItemList .item {
    width: calc(100%/3 - 10px);
    padding: 0;
    margin: 0;
}
#contents-main .NewsItemList .item .date {display: none;}
#contents-main .NewsItemList .item .desc .name {
    margin-top: 0;
}

#fuku_bnr {
    text-align: center;
    margin-top: 100px;
    a {
        display: inline-block;
    }
}

/*--------------------
SP
.sp
--------------------*/
.sp{
    #contents-main.all {
        width: 100%;
    }
    #contents {
        background: url(bg_sp.jpg);
        background-attachment: fixed;
        background-size: cover;
        padding-bottom: 0; 
        h2,.inner {
            padding: 0;
            margin: 0;
        }
        h2 {
            border-top: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
        section.caption {
            > p {
                text-align: left;
                font-size: 18px;
                line-height: 2rem;
                text-align: justify;
                margin-bottom: 20px;
                font-weight: 600;
                > span {
                    display: block;
                    font-size: 20px;
                    margin-bottom: 10px;
                    line-height: normal;
                    font-weight: 900;
                }
            }
            div p {
                display: block;
                line-height: 1.8rem;
                font-size: 22px;
                border-radius: 60px;
                padding: 10px 0 13px;
                span {
                    display: block;
                    margin-right: 0;
                    font-size: 16px;
                }
            }
        }
        div.wander_menu {
            position: sticky;
            top: auto;
            right: auto;
            bottom: 0;
            z-index: 0;
            ul {
                display: flex;
                flex-direction: row;
                gap: 0;
                    li {
                        writing-mode: unset;
                        background: var(--color-base-accent-dark);
                        border-radius: 0;
                        border: 0.5px solid #000;
                        box-sizing: border-box;
                        box-shadow: none;
                        width: 100%;
                        a {
                            display: block;
                            padding: 5px 0 0;
                            color:#fff;
                            font-family: var(--fontfamily-base);
                            font-weight: bold;
                            text-align: center;
                            line-height: 1.2rem;
                        }
                        a::after {
                            font-family: var(--fontfamily-icon);
                            content: "\e313";
                            padding: 5px 0 0;
                            font-size: 20px;
                            display: block;
                        }
                    }
                li:hover {
                        transform: translateX(0);
                        transition: unset;
                }
            }
        }
        section.cont_items {
            padding: 20px 0;
            margin: 15px;
            #winterevent ul.eventlist {
                margin-top: 30px;
                padding: 0;
                .ev_item .detail h4 {
                    margin-top: 10px;
                }
                .ev_item a img{
                    border: 0.5px solid #333;
                    box-sizing: border-box;
                }
            }
        }
        #winterevent {
            .inner {
                padding: 0 20px;
            }
        }
        #manpuku ul.tab_btn li {
            width: calc(50% - 10px);
        }
        #manpuku,#coupon {
            h4 {
                font-size: 18px;
                line-height: 2rem;
                margin-top: 10px;
            }
            .NewsItemList .shopnews_list {
                flex-direction: column;
                .item {
                    width: 100%;
                }
            }
            .inner {
                padding: 0 20px;
                margin-bottom: 40px;
            }
            .NewsItemList .item .image {
                width: 100%;
                height: auto;
            }
            > p {
            font-size: 16px;
            span {
                font-size: 18px;
                }
            }
        } 
    }
    .to-top {
        bottom: 80px;
        transition: 0.5s;
    }
    .to-top.scrollend {
        bottom: 20px;
        transition: 0.5s;
    }
    #fuku_bnr {
        margin-top: 0;
        padding: 0 20px;
    }
}


