.clay-container{
    background-color: #eae9e3;
    min-height: 90vh;
}

.clay-logo{
    margin: 20px 0px;
}

.clay-searchresult{
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom:100px;

}

.clay-searchresult-item{
    width: 25%;
    padding: 10px;
}

.clay-searchresult-item-image img{
    width: 100%;
}

.clay-desc-item, .clay-detail-item{
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}
.clay-desc-item .clay-desc-item-label{
    font-weight: bold;
    width: 75px;
}
.clay-desc-item .clay-desc-item-value{
    width: calc(100% - 80px);
    margin-left:5px;
}

.clay-detail{
    margin-bottom:100px;
}

.carousel-item {
    max-width: 600px; /* 例えば600pxと設定 */
    margin: auto;
}

.clay-detail-image img{
    width: 100%;
    height: auto; 
}


.clay-detail-image-thumb{
    display: flex;
    flex-wrap: wrap;
}
.clay-detail-image-thumb-item{
    position: relative;
    overflow: hidden;
    width: 20%;
    height: 100px;
    padding: 5px;
    cursor: pointer;
}

.clay-detail-image-thumb-item.active{
    border: 2px solid #7c858c;
}

.clay-detail-image-thumb-item img{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clay-detail-item .clay-detail-item-label{
    width: 145px;
}
.clay-detail-item .clay-detail-item-value{
    width: calc(100% - 150px);
    margin-left:5px;
}
.clay-detail-header{
    background-color: #7c858c;
    text-align: center;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: white;
    font-size: 120%;
}



@media screen and (max-width: 992px) {
    .clay-searchresult-item{
        width: 50%;
    }
    
}
@media screen and (max-width: 576px) {
    .clay-searchresult-item{
        width: 100%;
    }
    
}