@charset "UTF-8";
/* =========================================
article header
============================================ */
.article__header{
    position: relative;
}

.article__header::after{
    content: '';
    background-image: url(..//images/main-shape.png);
    display: block;

    width: 100%;
    height: 100%;
    /* height: 35.2vw; */

    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
 
    position: absolute;
    left: 0;
    top: 1px;
    
    /* left: 0;
    bottom: -1vw;
    z-index: 1; */
}

.products__mainVisual{
    object-fit: cover;
    /* height: 100vh; */
    width: 100%;
}

.section__topic.white{
    color: #FFF;
    position: absolute;
    z-index: 1;

    top: 40%;
    left: 50%;

    transform: translate(-50%,-50%);
}

/* =========================================
products
============================================ */
.section--products{
    background-color: #E9E6E1;
}

.subTopic__group{
    padding: 25px var(--contentPadding, 5.3%);
}

.subTopic{
    font-family: "Zen Old Mincho";
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

.subTopic__txt{
    font-family: "Zen Old Mincho";
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-top: 22px;
}

.products__list{
    padding: 25px 5.3% 75px;
}

.products__item{
    margin-top: 80px;
}

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

.products__img{
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 80px;
}

.products__group{
    margin-top: 12px;
    border-bottom: 1px solid var(--primary-brown, #A9A092);
}

.products__name{
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.products__txt{
    font-size: 1.4rem;
    display: block;
    margin-top: 20px;
}

.products__price{
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 25px;

    display: block;
}

.products__separate{
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.products__separate-txt{
    display: flex;
}

.products__ttl{
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    margin-right: 5px;
    align-content: flex-end;
}

.products__separate-price{
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 15px;

    display: block;
}

/* products pc */
@media screen and (min-width: 1025px) {
    .subTopic{
        font-size: 2.6rem;
    }
    
    .subTopic__txt{
        font-size: 1.7rem;
    }

    .products__name{
        font-size: 2rem;
    }

    .products__txt{
        font-size: 1.6rem;
    }

    .products__price{
        font-size: 2rem;
    }

    .products__ttl{
        font-size: 1.6rem;
    }

    .products__separate-price{
        font-size: 2rem;
    }
}/* pc 1025px */