body {
    background-color: #fffff; 
    color: #;
    font-family: "Meiryo UI", sans-serif;
}
#main-visual {
    text-align: center;
    background-color: #fff;
    padding: 30px 0;
    margin-bottom: 20px;
}


.review-item {
    display: flex;        
    align-items: center;  
    width: 80%;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.product-img {
    flex: 0 0 150px;     
    height: 180px;
    margin-right: 25px;   
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.review-text {
    flex: 1;             
    text-align: left;
}

.review-text h2 {
    margin: 0 0 10px 0;
    color: #8b4513;
    font-size: 1.3em;
    border-bottom: 1px solid #d2b48c;
}

.rating {
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 5px;
}

.comment {
    line-height: 1.6;
}
