@charset "utf-8";

/*========================
header
========================*/
.header__content {
    background-color: var(--primary_white);
    position: static;
}

/*========================
products
========================*/
.products__content {
    display: flex;
    padding: 30px;
    flex-direction: column;
}

.contentImg {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.productImg__slider .product_Img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.productImg__slider img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.products__txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}

.products__name {
    color: var(--primary-green);
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
}

.products__subname {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.7px;
    margin-top: 10px;
}

.content__txt {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.75px;
    margin-top: 20px;
}

.products__volume {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
    margin-top: 20px;
}

.products__volume span {
    font-family: Montserrat;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
}

.products__maney {
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* product pc */
@media screen and (min-width:769px) {
    .products__content {
        max-width: 1440px;
        margin: 0 auto;
        padding: 60px 180px;
        justify-content: center;
        flex-direction: row;
        gap: 30px;
    }

    .contentImg {
        width: 35vw;
        max-width: 450px;
        margin: 0 auto;
    }

    .product_Img {
        width: 100%;
        height: auto;
    }

    .productImg__slider img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .products__txt {
        max-width: 500px;
        margin-top: 0;
    }

    .products__name {
        font-size: 3.2rem;
    }

    .products__subname {
        font-size: 2rem;
    }

    .content__txt {
        font-size: 1.6rem;
        margin-top: 40px;
    }

    .products__volume,
    .products__volume span {
        font-size: 1.6rem;
        margin-top: 40px;
    }

    .products__maney {
        font-size: 3.2rem;
        margin-top: 40px;
    }
}/* pc 769px */

/*========================
products info
========================*/
.section--productsInfo {
    display: flex;
    padding: 60px 30px;
    flex-direction: column;
}

.productsInfo {
    display: flex;
    flex-direction: column;
}

.info__bar {
    width: 100%;
    height: 1px;
    background-size: cover;
    display: block;
}

.info__item:first-of-type .info__bar {
    margin-top: 30px;
}

.info__title {
    display: flex;
    padding: 20px 0px;
    justify-content: space-between;
    align-items: center;
}

.info__name {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.8px;
}

.section--productsInfo .content__txt {
    margin-top: 0;
}

.info__content {
    display: flex;
    gap: 5px;
}

.info__item .content__txt {
    padding: 0 0 10px 0;
}

.info__number {
    font-family: Montserrat;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.75px;
}

/* productsinfo pc */
@media screen and (min-width:769px) {
    .section--productsInfo {
        display: flex;
        margin: 0 auto;
        max-width: 1440px;
        padding: 60px 180px;
        justify-content: space-between;
        flex-direction: row;
    }

    .productsInfo {
        width: 500px;
    }

    .info__name {
        font-size: 1.6rem;
    }
}/* pc 769px */

/*==========================
accordion
==========================*/
.info__item .content__txt, .info__txt {
    display: none;
}

.info__open {
    display: block;
}

.info__close {
    display: none;
}

.info__item.active .info__open {
    display: none;
}

.info__item.active .info__close {
    display: block;
}

/*========================
features
========================*/
.section--features {
    display: flex;
    padding: 60px 30px;
    flex-direction: column;
}

.features__content {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.features_box {
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    background-color: var(--primary_white);
}

.features__item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.features__item.is-highlighted .features_box {
    background-color: var(--primary-ligthgreen);
}

.features__title {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
}

.features__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.features__txt {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.features__txt:first-of-type {
    margin-top: 30px;
}

.features__bar {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.75px;
}

.features__info .content__txt {
    margin-top: 0px;
    font-size: 1.5rem;
}

.featuresImg {
    display: block;
    margin: 0 auto;
    margin-top: 60px;
    width: 100%;
}

/* features　pc */
@media screen and (min-width:769px) {
    .section--features {
        max-width: 1440px;
        margin: 0 auto;
        padding: 60px 180px;
    }

    .features__content {
        display: flex;
        justify-content: space-between;

    }
    .features__title {
        font-size: 2rem;
    }

    .features__info {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        gap: 30px;
    }

    .features__txt {
        margin-top: 30px;
    }
    
    .features {
        width: 450px;
    }

    .featuresImg {
        width: 35vw;
        max-width: 450px;
        height: auto;
        margin: 60px 0 0 0;
    }

    .features__bar {
        font-size: 2rem;
    }

    .features__info .content__txt {
        font-size: 2rem;
    }
}/* pc 769px */

/*========================
products
========================*/
.section--products {
    display: flex;
    padding: 60px 30px;
    flex-direction: column;
}

.section--products .content__txt {
    margin-top: 30px;
}

.pcBr {
    display: none;
}

.products__slider {
    display: block;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.products__item {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.products__item .productImg {
    display: block;
    margin: 0 auto;
    width: 70vw;
    height: auto;
}

.products__item .products__txt {
    display: block;
    margin: 0 auto;
    width: 70vw;
    margin-top: 30px;
}

/* products pc */
@media screen and (min-width:769px) {
    .section--products {
        display: flex;
        max-width: 1440px;
        margin: 0 auto;
        padding: 150px 180px 180px 180px;
    }

    .section--products .content__txt {
        margin-top: 60px;
        font-size: 2rem;
    }

    .pcBr {
        display: block;
    }

    .products__product {
        max-width: 1440px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 60px;
        margin-top: 60px;
    }

    .products__item {
        display: block;
        width: 28vw;
        margin: 0 auto;
        margin-top: 0;
    }

    .products__item .products__txt {
        margin-top: 30px;
        width: 28vw;
        max-width: 450px;
    }
}/* pc 769px */

@media screen and (min-width:1300px) {
    .products__item {
        width: 35vw;
        max-width: 450px;
        margin: 0;
    }

    .products__item .products__txt {
        width: 35vw;
        max-width: 450px;
    }
}/* pc 1300px */

/*========================
buyBtn
========================*/
.buyBtn {
    display: inline-block;
    padding: 17px 13px;
    border-radius: 50%;
    background-color: var(--primary-ligthgreen);
    color: var(--primary-brown);
    font-size: 1.3rem;
    letter-spacing: 0.65px;
    box-shadow: 2px 2px 4px 3px rgba(29, 101, 101, 0.2);
    text-align: center;
    position: fixed;
    bottom: 1.4%;
    right: 1.4%;
}

.buyBtn img {
    display: inline-block;
    margin-bottom: 4px;
    margin-left: 3px;
}

/* buyBtn pc */
@media screen and (min-width:769px) {
    .buyBtn {
        padding: 17px 13px;
        font-size: 1.5rem;
    }

    .buyBtn img {
        margin-bottom: 6px;
    }
}/* pc 769px */

/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}
