    @charset "UTF-8";

    /* ＊＊＊ autumnfair - 2025 ＊＊＊ */

    /* === store all === */
    body {
        margin: auto;
    }

    /* store */
    /*position:stickey;を適用するために必須*/
    .page-layout-1column,
    .page-layout-2columns-left,
    .page-layout-2columns-right,
    .page-layout-1column-fullwidth {
        overflow-x: visible !important;
    }

    /* === lp all === */
    .lp__wrap--para {
        color: #761D0F;
        text-align: center;
        font-weight: 600;
        font-family: serif;
    }

    .lp__wrap--para::before {
        background: url("../../../img/event/autumnfair/2025/bg.jpg");
        background-color: #fdda8e;
        background-size: cover;
        background-position: top center;
    }

    section {
        margin: 50px auto;
        padding: 50px 0;
        font-size: clamp(16px, 1.75vw, 25px);
    }


    @media screen and (max-width:768px) {

        .lp__wrap--para::before {
            background: url("../../../img/event/autumnfair/2025/sp_bg.jpg");
            background-color: #fdda8e;
            background-size: cover;
            background-position: top center;
        }

        section {
            padding: 0;
            margin: 30px auto;
        }

    }

    /*==================================================
スライダーのためのcss
===================================*/
    /* スライダー全体 */
    .slider-wrapper {
        display: flex;
        /* スライドのグループを横並び */
        overflow: hidden;
        /* はみ出たスライドを隠す */
        margin: 50px auto;
    }

    /* スライド(3枚)のグループ */
    .slider {
        animation-name: scroll-left;
        animation-duration: 25s;
        /* アニメーション開始から終了までの時間 */
        animation-iteration-count: infinite;
        /* アニメーションの回数 */
        animation-timing-function: linear;
        /* アニメーションが変化する速度 */
        animation-delay: .5s;
        /* アニメーション開始までの遅延時間 */
        animation-fill-mode: both;
        /* アニメーション開始と終了時の状態 */
        display: flex;
        /* スライド3枚を横並び */
    }

    /* スライド */
    .slide {
        width: calc(100vw / 10);
        /* calc(100% / スライドの枚数) */
    }

    /* スライドの画像 */
    .slide img {
        width: 85%;
    }

    /* hover(マウスオーバー)で一時停止 */
    .slider-wrapper:hover .slider {
        animation-play-state: paused;
    }

    @media screen and (max-width:1550px) {

        /* スライド */
        .slide {
            width: calc(100vw / 6);
            /* 6はスライドの枚数 */
        }

        /* スライドの画像 */
        .slide img {
            width: 85%;
        }

    }

    @media screen and (max-width:780px) {

        .slider {
            animation-duration: 20s;
        }

        .slider-wrapper {
            margin: 15px auto 25px;
        }

        .slide {
            width: calc(100vw / 4);
        }

        .slide img {
            width: 95%;
        }
    }

    /* CSSアニメーション */
    @keyframes scroll-left {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    /* === nav === */
    .ctgmenu__area {
        background: #fdda8e;
        background-repeat: no-repeat;
        background-size: 120%;
        background-position: top center;
        position: sticky;
        top: 0;
        z-index: 99;
        margin: auto;
        box-shadow: 0 5px 5px #d8b976;
    }

    .ctgmenu__box {
        max-width: 1200px;
        margin: auto;
        flex-wrap: nowrap;
        -ms-flex-align: center;
        -ms-flex-pack: justify;
        -webkit-box-align: center;
        -webkit-box-pack: justify;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
    }

    .ctgmenu__btn {
        flex: 0 0 auto;
        width: calc(100% / 5);
    }

    .ctgmenu__btn a {
        display: block;
        color: #4c4c4c;
    }

    .ctgmenu__btn a:hover {
        text-decoration: none;
    }

    @media screen and (max-width:1499px) {

        .ctgmenu__area {
            background-size: 150%;
        }

    }

    @media screen and (max-width:767px) {

        .ctgmenu__area {
            display: flex;
            flex-wrap: wrap;
            overflow: scroll;
        }

        .ctgmenu__box {
            max-width: 100%;
            padding: 0;
        }

        .ctgmenu__btn {
            width: calc(100% / 2.5);
        }

    }

    /* === mv === */
    .mv--area {
        max-width: 1650px;
        width: 100%;
        margin: auto;
        padding: 25px 0;
        text-align: center;
    }

    .mv--area img {
        margin: auto;
    }

    @media screen and (max-width:1649px) {
        .mv--area {
            max-width: 100%;
        }
    }

    @media screen and (max-width:767px) {
        .mv--area {
            max-width: 100%;
            width: 100%;
            margin: auto;
            padding: 0;
        }
    }

    /* intro */
    section#intro {
        background: url("../../../img/event/autumnfair/2025/bg_intro.png");
        background-size: contain;
        background-position: top center;
        background-repeat: no-repeat;
        text-align: center;
    }

    #intro p {
        letter-spacing: 1px;
        padding: 50px 0;
        font-size: clamp(18px, 1.75vw, 25px);
        line-height: 1.75em;
    }

    #intro p span {
        color: #4483DA;
        font-weight: 700;
    }

    #intro p span.year {
        font-size: clamp(28px, 2.25vw, 32px);
    }

    @media screen and (max-width:1650px) {

        section#intro {
            background-size: cover;
            background-position: top center;
        }

        #intro p {
            padding: 25px 0;
        }

    }

    @media screen and (max-width:768px) {

        section#intro {
            /* background: url("../../../img/event/autumnfair/2025/sp_bg_intro.png"); */
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
        }

        #intro p {
            padding: 45px 0;
            margin-bottom: 0;
        }

    }

    /* === section === */

    .sec_bg-top,
    .sec_bg-middle,
    .sec_bg-bottom {
        background: transparent;
        text-align: center;
        max-width: 1400px;
        margin: auto;
    }

    .sec_bg-middle {
        background: url("../../../img/event/autumnfair/2025/bg_SKU_middle.png") repeat-y;
        background-size: contain;
        padding: 0 5%;
    }

    #cp .sec_bg-middle {
        background: url("../../../img/event/autumnfair/2025/CP_bg_middle.png") repeat-y;
        background-size: contain;
    }

    @media screen and (max-width:768px) {

        .sec_bg-top img,
        .sec_bg-bottom img {
            width: 100%;
        }

        .sec_bg-middle {
            background: url("../../../img/event/autumnfair/2025/sp_bg_SKU_middle.png") repeat-y;
            background-size: contain;
        }

    }

    @media screen and (max-width:767px) {

        .sec_bg-middle {
            padding: 0 7.5%;
        }

        #cp .sec_bg-middle {
            background: url("../../../img/event/autumnfair/2025/sp_CP_bg_middle.png") repeat-y;
            background-size: contain;
        }
    }

    /* cp */
    .date--img {
        max-width: 500px;
        margin: 25px auto;
    }

    .presents--area {
        max-width: 1000px;
        margin: auto;
    }

    .presents--area .present p {
        font-size: clamp(13px, 1.75vw, 23px);
    }

    .presents--area .present p span.num {
        background: linear-gradient(transparent 75%, rgba(231 70 0/40%) 65%);
    }

    .presents--area .present p span.num span {
        font-size: clamp(22px, 2.1vw, 32px);
    }

    @media screen and (max-width:767px) {

        .presents--area {
            margin: auto -7%;
        }

        .date--img {
            margin: 15px auto;
            max-width: 100%;
        }

    }

    /* cp - entry */
    .entry--content {
        max-width: 800px;
        margin: 50px auto;
    }

    .entry--content .entry--content__txt {
        font-size: clamp(16px, 1.75vw, 25px);
    }

    .entry-content_tap {
        align-items: center;
        display: flex;
        font-size: clamp(18px, 1.75vw, 25px);
        position: relative;
        padding: 20px 0;
        text-align: center;
        justify-content: center;
        letter-spacing: 1px;
    }

    .icon_circle {
        background: transparent;
        border-radius: 50%;
        display: block;
        width: 35px;
        height: 35px;
        position: relative;
        margin-right: 10px;
        border: 3px solid #855F59;
    }

    .icon_circle::after {
        background-color: #855F59;
        content: "";
        display: block;
        width: 20px;
        height: 4px;
        position: absolute;
        top: 13px;
        right: 0;
        left: 0;
        margin: auto;
        transform: rotate(90deg);
        transition: transform .2s ease-in-out;
    }

    .entry-content__details {
        border-top: 3px dashed #855f59;
        padding-top: 50px;
        margin: 50px auto auto;
        max-width: 1000px;
    }

    .entry-content__details[open] .icon_circle::after {
        transform: rotate(180deg);
    }

    .icon_circle::before {
        background-color: #855F59;
        content: "";
        display: block;
        width: 20px;
        height: 4px;
        position: absolute;
        top: 12px;
        right: 0;
        left: 0;
        margin: auto;
    }

    .entry-content__box {
        background-color: rgba(133 33 17 /15%);
        padding: 50px;
        text-align: left;
        margin: auto;
        max-width: 1000px;
        font-size: clamp(14px, 1.1vw, 20px);
    }

    .entry-content__box dl {
        padding-bottom: 30px;
        margin-bottom: 0;
    }

    .entry-content__box dl dt {
        font-size: clamp(16px, 1.2vw, 23px);
        font-weight: bold;
        padding-bottom: 5px;
    }

    .entry-content__box dl dd {
        line-height: 1.8;
    }

    @media screen and (max-width:1024px) {

        .entry-content__details {
            max-width: 95%;
        }

    }

    @media screen and (max-width:820px) {

        .entry--content {
            max-width: 90%;
        }

    }

    @media screen and (max-width:768px) {

        .entry--content {
            margin: 25px auto 50px;
        }

        .entry-content__details {
            padding-top: 25px;
            margin: 25px auto auto;
            max-width: 95%;
        }

    }

    @media screen and (max-width:767px) {

        .entry-content__box {
            padding: 15px;
            max-width: 100%;
        }

        .entry-content__box dl {
            padding-bottom: 20px;
        }

        .entry-content__box dl dt {
            padding-bottom: 0;
        }

        .entry-content__box dl dd {
            padding-bottom: 5px;
            line-height: 1.4;
        }

    }

    /* SKU */
    /* 商品 */
    @media screen and (max-width:1024px) {
        .item--area {
            max-width: 95%;
            margin: auto;
        }
    }

    @media screen and (max-width: 768px) {
        .item--area {
            max-width: 100%;
        }
    }

    .product-items {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center;
    }

    .page-layout-1column .block.widget .products-grid .product-item {
        box-shadow: 0 4px 4px rgba(255, 98, 0, .3);
        background: #fff;
        /* height: 340px; */
        margin: 10px !important;
        padding: 10px;
        border: 1px solid #c99267;
    }

    .product-items .product-item .product-item-details a {
        font-size: clamp(13px, 1.3vw, 17px);
        font-weight: 700;
        color: #454545;
        line-height: 1.35;
    }

    .products-grid .price-box .price-wrapper .price {
        color: #e84c25;
    }

    .action.primary,
    .action-primary {
        display: none;
    }

    .widget-product-grid .product-reviews-summary {
        display: none !important;
    }

    [data-content-type=row] li.product-item .action.primary,
    [data-content-type=row] li.product-item .action-primary {
        text-align: center;
    }

    .product-items .product-item .product-item-details a {
        text-decoration: none;
        display: -webkit-box !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: initial;
        white-space: unset;
        margin-bottom: 0;
    }


    .products-grid .price-box .price-wrapper .price {
        font-size: clamp(19px, 1.75vw, 23px);
    }

    /* 2025/09/10 */
    .products-grid .price-box .tax-label {
        font-size: clamp(13px, 1.15vw, 15px);
        color: #454545;
    }

    .product-items .product-item-info span.rewards__product-points,
    .product-item-actions .actions-secondary,
    .product-item-actions .actions-primary>form {
        display: none;
    }

    @media screen and (max-width: 768px) {

        .anchor-box::before {
            height: 9.2rem;
            margin-top: -9.2rem;
        }

        .action.primary,
        .action-primary {
            width: auto;
        }

        .product-items .product-item .product-item-details a {
            -webkit-line-clamp: 4;
        }

    }

    @media (min-width: 640px) {
        .products-grid .product-item-actions {
            margin: 0;
        }

    }

    /* 4列表示 */

    .page-layout-1column .block.widget .products-grid .product-item {
        width: calc((100% - 8%) / 4);
    }

    @media (min-width: 769px),
    print {

        .page-layout-1column .block.widget .products-grid .product-item:nth-child(3n+1) {
            margin-left: 0;
        }

    }

    @media (min-width: 1024px),
    print {

        .page-layout-1column .block.widget .products-grid .product-item,
        .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n+1) {
            margin-left: 0;
            display: flex !important;
            flex-direction: column !important;
            justify-content: space-between !important;
        }

        /* .page-layout-1column .block.widget .products-grid .product-item {
        } */
    }

    @media screen and (max-width:1180px) {

        .page-layout-1column .block.widget .products-grid .product-item {
            width: calc((100% - 9.65%) / 4);
        }
    }

    @media screen and (max-width:1024px) {

        .page-layout-1column .block.widget .products-grid .product-item {
            /* height: 270px; */
        }
    }

    @media screen and (max-width:1023px) {
        .page-layout-1column .block.widget .products-grid .product-item {
            width: calc((100% - 8.5%) / 4);
            margin: 0 7px 15px !important;
            /* height: 250px; */
        }
    }

    @media screen and (max-width:767px) {
        .page-layout-1column .block.widget .products-grid .product-item {
            width: calc(100% / 2 - 10px);
            margin: 0 5px 10px !important;
        }

    }

    @media screen and (max-width:375px) {

        .page-layout-1column .block.widget .products-grid .product-item {
            /* height: 230px; */
        }
    }

    /* off % */
    .discount-label {
        display: none;
    }

    /* 250904 - w price */

    /* .products-grid .price-box .price-wrapper .price {
        color: #ed1d3e !important;
        font-size: clamp(20px, 1.75vw, 23px);
    }

    .products-grid .price-box .tax-label {
        color: #4C4C4C !important;
    }

    .products-grid .price-box .old-price .price-wrapper .price {
        font-size: 12px !important;
        color: #666 !important;
    }

    .widget-product-grid .price-box .old-price .price-label {
        display: none;
    }

    .products-grid .price-box .old-price .price-wrapper .price:before {
        content: '販売価格:';
        font-weight: 400;
    }

    .widget-product-grid .price-box .old-price {
        display: block !important;
        font-size: 12px !important;
        color: #666;
    }

    .discount-label {
        display: none;
        display: inline-block;
        font-size: 15px;
    }

    @media (min-width: 1025px),
    print {

        .page-layout-1column .block.widget .products-grid .product-item {
            height: 365px !important;
        }
    }

    @media screen and (max-width: 1024px) {
        .page-layout-1column .block.widget .products-grid .product-item {
            height: 290px !important;
        }

        .products-grid .price-box .price-wrapper .price {
            font-weight: bold;
            font-size: clamp(17px, 1.5vw, 23px);
        }

        .products-grid .price-box .tax-label {
            font-size: 1.0rem;
        }

        .discount-label {
            font-size: 10px;
        }

    }

    @media screen and (max-width: 1023px) {
        .page-layout-1column .block.widget .products-grid .product-item {
            padding: 7px;
        }

        .products-grid .price-box .price-wrapper .price {
            font-size: clamp(17px, 1.75vw, 23px);
        }

    }

    @media screen and (max-width:820px) {
        .page-layout-1column .block.widget .products-grid .product-item {
            height: 300px !important;
            width: calc((100% - 8%) / 3) !important;
        }

        .products-grid .price-box .price-wrapper .price {
            font-weight: bold;
            font-size: clamp(17px, 1.75vw, 23px);
        }

    }

    @media screen and (max-width:768px) {
        .products-grid .price-box .old-price .price-wrapper .price {
            font-size: 13px !important;
        }

        .products-grid .price-box .price-wrapper .price {
            font-size: clamp(20px, 1.75vw, 23px);
        }

        .discount-label {
            font-size: 12px;
        }

    }

    @media screen and (max-width:601px) {

        .page-layout-1column .block.widget .products-grid .product-item {
            height: 320px !important;
            width: calc(100% / 2 - 10px) !important;
        }

        .shamtre .widget-product-grid .price-box .old-price {
            font-size: 10px !important;
        }

        .products-grid .price-box .old-price .price-wrapper .price {
            font-size: 11px !important;
        }

        .products-grid .price-box .tax-label {
            font-size: 0.65rem;
            margin: auto -3px;
        }

        .discount-label {
            font-size: 10px;
        }

    }

    @media screen and (max-width:430px) {
        .page-layout-1column .block.widget .products-grid .product-item {
            height: 260px !important;
        }

        .products-grid .price-box .price-wrapper .price {
            font-size: clamp(17px, 1.75vw, 23px);
        }

    }

    @media screen and (max-width:390px) {

        .page-layout-1column .block.widget .products-grid .product-item {
            height: 240px !important;
        }
    }

    @media screen and (max-width:375px) {

        .discount-label {
            font-size: 10px;
        }

        .products-grid .price-box .price-wrapper .price {
            font-size: clamp(13px, 1.75vw, 23px);
        }

        .page-layout-1column .block.widget .products-grid .product-item {
            height: 240px !important;
        }
    } */

    /* 商品レイアウト fin */