@charset "UTF-8";
/* CSS Document */

/******************************************
* Products ページ
*****************************************/

/* カテゴリタブナビゲーション */
.products-tab-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 37px;
}

.products-tab-item {
    flex: 1;
    width: 240px;
}

.products-tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #542b14;
    color: #fff;
    padding: 15px 20px 15px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.products-tab-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    aspect-ratio: 1 / 1;
    background-image: url(../images/products/btn_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.products-tab-btn:hover {
    background-color: #895a3f;
}


/* 商品セクション */
.products-section {
    padding-top: 100px;
}

.products-section-title {
    font-family: 'Caveat', cursive;
    font-size: 40px;
    letter-spacing: .5rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 15px;
}

.products-section-divider {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 50px;
}

.products-section-divider::before,
.products-section-divider::after {
    content: '';
    flex: 1;
    border-top: 4px dotted #baa373;
}

.products-section-jp {
    padding: 5px 35px;
    border-radius: 20px;
    font-size: 16px;
    white-space: nowrap;
    margin: 0 16px;
    background-color: #fff;
    color: #542b14;
}


/* カテゴリヘッダー（通年商品 / 季節限定） */
.products-category {
    margin-bottom: 60px;
}

.products-category-title {
    background-color: #542b14;
    background-image: repeating-linear-gradient(
        -25deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0) 8px,
        rgba(255, 255, 255, 0.07) 8px,
        rgba(255, 255, 255, 0.07) 16px
    );
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .2em;
    margin-bottom: 40px;
    border-radius: 10px;
}


/* 商品グリッド */
.products-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 27px;
    list-style: none;
    padding: 0;
    margin: 0;
}


/* 商品カード */
.products-item {
    background: #fff;
    border-radius: 25px;
    padding: 20px 20px 30px;
    width: 209px;
}

.products-item-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #e4dece;
    border: 1px solid #ede8dc;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
}

.products-item-name {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e2da91;
}

.products-item-seasonSP {
    color: #ed7a8c;
}

.products-item-seasonSU {
    color: #1e90ff;
}

.products-item-seasonAU {
    color: #ff8c00;
}

.products-item-seasonWI {
    color: #4682b4;
}

.products-item-desc {
    font-size: 14px;
    line-height: 1.8;
}


/* 注意書き */
.products-notes {
    font-size: 14px;
    text-align: center;
    line-height: 2;
    margin-bottom: 40px;
}

.products-hover.btn-hover a {
    margin-bottom: 0;
}


/******************************************
* レスポンシブ
*****************************************/
@media screen and (max-width: 960px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .products-tab-list {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }

    .products-tab-item {
        flex: unset;
        width: 43.667vw;
    }

    .products-tab-btn {
        font-size: 13px;
        padding: 11px 16px 11px 18px;
    }

    .products-tab-btn::after {
        right: 15px;
        width: 3.667vw;
        height: 3.667vw;
    }

    .products-section {
        padding-top: 80px;
    }

    .products-section-title {
        font-size: 36px;
    }

    .products-category-title {
        font-size: 18px;
        margin-bottom: 30px;
        border-radius: 5px;
        background-image: repeating-linear-gradient(
            -25deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0) 5px,
            rgba(255, 255, 255, 0.07) 5px,
            rgba(255, 255, 255, 0.07) 10px
        );
    }

    .products-section-divider {
        margin-bottom: 40px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-item {
        border-radius: 15px;
        padding: 15px 15px 25px;
        width: inherit;
    }

    .products-item-img {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .products-item-name {
        font-size: 16px;
    }

    .products-item-desc {
        text-align: justify;
    }

    .products-notes {
        text-align: left;
        margin-top: -30px;
    }

    .products-hover.btn-hover a {
        padding: 1rem;
    }
}


