@charset "UTF-8"; 

html {
    font-size: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    color: rgb(70, 70, 70);
    margin: 0;
    padding: 0;
    font-family: 'Zen Old Mincho' , serif;
    }


a {
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
}

.hero {
    width: 100%;
}
.hero-inner {
    margin: 0 auto;
}
.hero-inner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;object-fit: cover;
}

/*  concept  */

.concept {
    padding: 120px 20px;
    text-align: center;
}
.concept-text h2 {
    margin-bottom: 32px;
}
.concept-text p {
    margin-bottom: 24px;
    line-height: 2.4;
}

.concept-images {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
}
.concept-images img {
    width: 180px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}


/*  parfait-feature  */

.parfait-feature {
    position: relative;
    min-height: 700px;
}
.feature-bg {
    display: flex;
    height: 100%;
}
.bg-left,
.bg-right {
    width: 50%;
    padding: 80px 60px;
    box-sizing: border-box;
}
.bg-left {
    background: #6b3f1d;
    color: white;
}

.bg-right {
    background: #3f3f3f;
    color: white;
    text-align: right;
}
.text-block {
    margin-bottom: 60px;
}


.text-block h3 {
    margin-bottom: 16px;
}
.text-block p {
    line-height: 2;
}
.parfait-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    z-index: 10;
    display: block;
    }

    .product-hero {
        margin-top: 300px;
        position: relative;
        height: 400px;
        overflow: hidden;
    }
    .product-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .product-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
    }
    .hero-text {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        z-index: 2;
    }


    /*  product  */

    .product-section {
        padding: 200px 180px;
        text-align: center;
    }
    .product-title {
        margin-bottom: 100px;
    }
    .product-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .product-list {
        display: flex;
        padding: 0 120px 40px;
        width: max-content;
    }
    .product-item {
        flex-shrink: 0;
        width: 220px;
        position: relative;
    }
    .product-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.25);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    .product-item:hover::after {
        opacity: 1;
    }

    .product-item img {
        width: 100%;
        height: 300px;
        object-fit: contain;
        display: block;
    }

    .product-scroll::-webkit-scrollbar {
        display: none;
    }


    /*  reviews  */

   .reviews-title {
    text-align: center;
    padding-bottom: 140px;
   }

   .reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
   }
   .reviews-images {
    display: flex;
    align-items: flex-end;
    justify-content: center;
   }
   .reviews-images img {
    width: 250px;
    height: auto;
    margin-left: -100px;
    position: relative;
   }
   .reviews-images img:nth-child(1) {
    transform: translateY(50px);
   }
   .reviews-images img:nth-child(2) {
    transform: translateY(0);
   }
   .reviews-images img:nth-child(3) {
    transform: translateY(50px);
   }


   .reviews-comments {
    display: flex;
    flex-direction: column;
    gap: 40px;
   }
   .comment-box {
    background: #fff;
    padding: 22px 28px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(53, 53, 53, 0.4);
    max-width: 420px;
   }
   .comment-box p {
    font-size: 14px;
    line-height: 1.9;
   }

   .copyright {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 8px;
    font-size: 12px;
   }
@media screen and (max-width: 1020px) {
     .parfait-img {
        width: 300px;
    }

    .product-section {
       margin-top: 200px;
        padding: 0;
    }
}




@media screen and (max-width: 768px) {
     .concept-text h2 {
        font-size: 16px;
    }
    .concept-text p {
        font-size: 12px;
    }
    .concept-images {
        gap: 60px;
    }
    .concept-images img {
        width: 120px;
    }

    .product-hero {
        height: 300px;
    }
    .hero-text {
        font-size: 12px;
    }
    .reviews {
        padding: 100px 0;
    }
    .reviews-inner {
        flex-direction: column;
        gap: 100px;
    }
    .reviews-images {
        justify-content: center;
    }
    .reviews-images img {
        width: 220px;
        transform: translateY(0);
    }

    .reviews-comments {
        order: 1;
        width: 100%;
        align-items: center;
    }
    .reviews-images {
        order: 2;
        margin: 0 auto;
    }

   
}

@media screen and (max-width: 480px) {

    .concept-text h2 {
        font-size: 16px;
    }
    .concept-text p {
        font-size: 12px;
    }
    .concept-images {
        gap: 40px;
    }
    .concept-images img {
        width: 100px;
    }

    .reviews {
        padding: 100px 0;
    }
    .reviews-inner {
        flex-direction: column;
        gap: 100px;
    }
    .reviews-images {
        justify-content: center;
    }
    .reviews-images img {
        width: 220px;
        transform: translateY(0);
    }

    .reviews-comments {
        order: 1;
        width: 100%;
    }
    .reviews-images {
        order: 2;
    }
   
}
