@charset "utf-8";
/* CSS Document */
article{
    padding:0 2%;
}
.site-location ul{
    overflow: scroll;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.coordinate_block .coordinate_img .height_text{
    padding-top: 10px;
    font-size: 14px;
}
.coordinate_block .coordinate_info{
    padding-top: 30px;
}
.coordinate_block .coordinate_info .info_block{
    border-bottom: solid 1px #BCBCBC;
    padding: 0 0 30px;
    margin: 0 0 30px;
}
.coordinate_block h2{
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
}
.coordinate_block #comment{
    font-size: 14px;
}
.coordinate_info .text{
    padding: 30px 0;
    font-size: 13px;
    color: #6a6a6a;
}	
#product_list{
    display: flex;
    flex-wrap: wrap;
    gap:10px;
}
#product_list .product{
    width: calc((100% - 20px)/3);
}
#product_list .product:nth-child(n+4){
    margin-top: 4%; 
}
#product_list .product .brand{
    display: block;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0;
    padding: 10px 0 0;
}
#product_list .product .name{
    font-size: 12px;
    letter-spacing: 0;
    line-height: 120%;
    padding: 5px 0 0;
}
#product_list .product .price{
    font-size: 14px;
    font-weight: bold;
    padding: 5px 0 0;
}
#product_list .product .size{
    font-size: 12px;
    color: #8b8b8b;
    padding: 5px 0 0;
}
.filter-section {
  margin-top: 30px;
  text-align: center;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-buttons .filter-btn {
  cursor: pointer;
  color: #000;
  font-size: 85%;
  padding: 8px 15px 6px;
  border-radius: 3px;
  background: #f5f5f5;
  border: solid 1px #ccc;
  line-height: 1.6;
}

.filter-buttons .filter-btn:hover {
  opacity: 0.8;
}

/* 一致しなかった人気ワードボタンを非表示にする */
.filter-btn.hidden-tag {
  display: none !important;
}
.common_btn{
    width: 250px;
    text-align: center;
    margin: 30px auto;
}
.common_btn a {
    display: block;
    padding: 1em;
    border-radius: 4px;
    border: 1px solid #b3b3b3;
}
/*PC用（画面サイズ992px以上～）*/
@media only screen and (min-width: 768px) {
    article{
        padding: 0;
    }
    .coordinate_block{
        display: flex;
        gap:50px;
    }
    .coordinate_block .coordinate_img{
        max-width: 480px;
    }
    .coordinate_block .coordinate_info{
        width: calc(100% - 530px);
        padding-top: 0;
    }	
    .common_btn{
        margin: 30px auto 0;
    }		
    #product_list{
        gap:20px;
    }
    #product_list .product{
        width: calc((100% - 40px)/3);
    }
    #product_list .product:nth-child(n+4){
        margin-top: 2%; 
    }
    .coordinate_info .text{
        padding: 30px 0 60px;
    }
}
