@charset "utf-8";

.topic {
    display: block;
    margin: 0 auto;
    padding: 8px 8px;
} 

.topic::after {
    display: none;
}

/* =====================
category
===================== */
.section--category {
    padding: 100px var(--contentPadding);
}

.categoryContainer {
    margin: 0 auto;
}

.category {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 40px;
    margin-top: 80px;
}

.category__item {
    padding: 8px 4px 12px;
    width: 35%;
    border-bottom: solid var(--primary-black) 0.25px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1;
    position: relative;
}

.category__item span {
    display: block;
    margin-top: 4px;
    font-family: "EB Garamond";
    font-size: 1.4rem;
    letter-spacing: 0.03;
}

/* =====================
product
===================== */
.productTitle {
    background-color: var(--primary-white);
    padding: 50px 0;
}

.product__container {
    padding: 50px var(--contentPadding);
}

.product__title {
    font-size: 2.4rem;
    text-align: center;
    position: relative;
    margin-top: 142px;
}

.product__title:first-of-type {
    margin-top: 42px;
}

.product__title::after {
    content: 'HAKATA NO SYOYU';
    display: block;
    color:var(--primary-white);
    font-family: "EB Garamond";
    font-size: 10vw;
    line-height: 1;
    letter-spacing: 0.03em;
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: -1;
}

.product__title--jan::after {
    content: 'JAN';
}

.product__title--hybrid::after {
    content: 'HYBRID';
}

.product__title--ippin::after {
    content: 'CHOMI IPPIN';
}

.product__title--gift::after {
    content: 'GIFT';
}

.product__title--pro::after {
    content: 'PROFESSIONAL';
}

.product__txt {
    font-size: 1.6rem;
    line-height: 2.5;
    margin-top: 48px;
    position: relative;
}

.product__txt::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background-color: var(--primary-black);
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: scaleX(0.5) translateX(-50%);
}

.productBox {
    max-width: 1280px;
    margin: 130px auto 0;
}

.productBox__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 40px 4%;
    margin: 0 auto;
}

.productBox__item {
    padding: 4px;
}

.product__img {
    display: block;
    aspect-ratio: 1/1;
    object-fit: contain;
    background-color: var(--primary-white);
    padding: var(--contentPadding);
    width: 100%;
    border-radius: 16px;
}

.product__genre {
    color: var(--primary-darkBlue);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    margin-top: 4px;
}

.product__name {
    margin-left: 4px;
    font-size: 1.6rem;
    margin-top: 4px;
}

.product__name span {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
}

/* カテゴリ&商品 PC */
@media screen and (min-width: 768px) {
/* 画面分割 */
    /* 大枠 */
    .divisionPc{
        width: 100%;
        /* overflow-x: hidden;
        position: relative; */
        display: flex;
        justify-content: space-between;
    }

    /* カテゴリ */
    .divisionPc__category {
        width: 25.3%;
        /* height: 100%;
        float: left; */
        background-color: var(--primary-white);
        /* position: absolute;
        top: 0;
        left: 0; */
    }

    /* 商品 */
    .divisionPc__product {
        width: 74.7%;
        padding: 75px 16px;
        /* float: right; */
    }

    .productTitle {
        display: none;
    }

    .topic {
        display: none;
    }

/* カテゴリー */
    .section--category {
        padding: 50px 16px;
        position: sticky;
        top: 0;
    }

    .category {
        display: block;
        margin: 0 auto;
    }

    .category__item {
        padding: 5%;
        margin: 10% auto 0;
        width: 65%;
        text-align: center;
        font-size:min(1.5vw, 2.4rem);
        line-height: 1.2;
        position: static;
        text-align: start;
    }

    .category__item:first-of-type {
        margin-top: 0;
    }

    .category__item span {
        display: block;
        margin-top: 4px;
        font-family: "EB Garamond";
        font-size:min(2vw, 1.6rem);
        letter-spacing: 0.03;
    }

/* 商品 */
     .product__container {
        padding: 75px 16px;
    }

    .product__title {
        font-size: 3.6em;
        margin-top: 21px;
    }

    .product__title:first-of-type {
        margin-top: 21px;
    }

    .product__title::after {
        font-size: min(7vw, 96px);
    }

    .product__txt {
        text-align: center;
        margin-top: 51px;
    }

    .productBox__list {
        grid-template-columns: repeat(3, 1fr);
    }

    .productBox__item {
        padding: 8px;
    }

    .product__genre {
        margin-top: 8px;
    }

    .product__name {
        font-size: 2rem;
        margin-top: 8px;
    }

    .product__name span {
        font-size: 1.6rem;
    }
    
    
}/* pc 768px */
