.products-list {
    margin: 0 -10px;
}
.products-list .item {
    width: 25%;
    padding: 0 10px;
}
.products-list .item:nth-child(4n+1) {
    clear: left;
}
.products-list .box {
    margin: 0 auto 50px;
    position: relative;
}
.products-list .box.new:before {
    content: 'HOT';
    position: absolute;
    display: block;
    text-align: center;
    width: 60px;
    height: 30px;
    line-height: 30px;
    left: 15px;
    top: 15px;
    color: #52A9A4;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #DADADA;
    z-index: 5;
    font-family: 'Cormorant Garamond', serif;
}
.products-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.products-list .pic-box {
    position: relative;
    overflow: hidden;
}
.products-list .pic-box img{
    width: 100%;
}
.products-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
}
.products-list .pic:before {
    content: 'VIEW\AMORE';
    white-space: pre;
    background: rgba(255,255,255,0.87);
    color: #52A9A4;
    font-size: 18px;
    font-weight:bold;
    line-height:1.1;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:100%;
    position: absolute;
    z-index: 1;
    opacity: 0;
    width: 100%;
    height: 100%;
    max-width: 90px;
    max-height: 90px;
    top: calc(50% + 100px);
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s ease;
}
.products-list .box:hover .pic:before {
    top: calc(50% + 1px);
    opacity: 1;
}
.products-list li .txt {
    position: absolute;
    box-sizing: border-box;
    z-index: 5;
    right: 0;
    bottom: 0;
    display: block;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    pointer-events: none;
    width: 85%;
}
.products-list .name {
    position: relative;
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 24px;
    margin: 0 0 8px 0;
    transition: all .5s;
}
.products-list .box:hover .name {
    color: #52A9A4;
}
.products-list .description {
    position: relative;
    box-sizing: border-box;
    color: #535353;
    font-size: 14px;
    letter-spacing: 0.8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 20px;
    margin: 0;
}
.products-header {
    max-width: 1000px;
    margin: 0 auto;
}
.products-header .title {
    color: #333;
    font-size: 23px;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 1.4;
    padding: 0 0 16px;
    border-bottom: 1px solid #ddd;
    margin: 0 auto 32px;
    text-align:center;
}
.products-intro {
    max-width: 1000px;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
}
.gallery {
    width: calc(100% - 420px);
    max-width: 693px;
    flex-shrink: 1;
}
.thumbnails {
    width: 380px;
    margin-left: 40px;
    flex-shrink: 0;
}
.thumbnails ul {
    margin: -10px;
}
.thumbnails li {
    width: 50%; 
    padding: 10px;
    box-sizing: border-box;
}
.thumbnails li a {
    /*max-width: 163px;*/
    margin: 0 auto;
    opacity: 0.35;
    transition: all .5s;
}
.thumbnails li a:hover,
.thumbnails li.active a {
    opacity: 1;
}
.thumbnails li:nth-child(2n+1) {
    clear: both;
}
.products-detail {
    position: relative;
    max-width: 1345px;
    margin: 0 auto;
    padding: 0 0 16px;
    border-bottom: 1px solid #ddd;
}
.products-detail .title {
    position: relative;
    color: #555;
    font-size: 22px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px 16px;
    margin: 0 0 16px;
    font-weight: normal;
    letter-spacing: 1.5px;
    line-height: 1;
}
.products-detail .title::before {
    content: '';
    position: absolute;
    top: 32%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 50%;
    background: #52A9A4;;
}
.form-group select.form-control{
    height: 26px;
    margin: 0;
    font-weight: normal;
    border-radius: 0;
}
@media screen and (max-width: 1440px) {
    .products-list {
        margin: 0 -7px;
    }
    .products-list .item {
        padding: 0 7px;
    }
}
@media screen and (max-width: 1280px){
    .products-list .box.new:before{
        left: 15px;
        top: 15px;
    }
    .products-list li .txt{
        padding: 15px;
    }
    .products-list .pic:before {
        max-width: 80px;
        max-height: 80px;
    }
}
@media screen and (max-width: 1000px) {
    .products-list .item {
        width: 33.33%;
    }
    .products-list .item:nth-child(4n+1) {
        clear: none;
    }
    .products-list .item:nth-child(3n+1) {
        clear: left;
    }
    .products-list .name{
        font-size: 16px;
    }
    .products-header .title{
        font-size: 18px;
        margin-bottom: 24px;
    }
    .products-intro{
        margin-bottom: 24px;
        flex-direction: column;
    }
    .gallery,
    .thumbnails {
        width: 100%;
        margin: 0 auto;
    }
    .gallery {
        max-width: 693px;
        margin: 0 auto 8px;
    }
    .thumbnails ul {
        margin: 0 -5px;
    }
    .thumbnails li {
        width: 16.66%;
        padding: 5px;
    }
    .thumbnails li:nth-child(n) {
        clear: inherit;
    }
    .products-detail .title{
        font-size: 20px;
    }
}
@media screen and (max-width: 767px) {
    .products-list .item {
        width: 50%;
    }
    .products-list .item:nth-child(3n+1) {
        clear: none;
    }
    .products-list .item:nth-child(2n+1) {
        clear: left;
    }
    .products-list .box {
        margin-bottom: 30px;
    }
    .sort_icon .ibtn.one {
        display: inline-block;
    }
    .sort_icon .ibtn.four {
        display: none;
    }
}
@media screen and (max-width: 580px) {
    .products-list .item {
        width: 100%;
    }
    .products-list .item:nth-child(n) {
        clear: none;
    }
}
@media screen and (max-width: 430px) {
    .thumbnails li {
        width: 33.33%;
    }
    .thumbnails li:nth-child(3n+1) {
        clear: both;
    }
}
@media screen and (max-width: 400px) {
    .sort_box .control-box span {
        display: none;
    }
    .sort_box .form-control.sort-pc {
        display: none;
    }
    .sort_box .form-control.sort-mobile {
        display: block;
        width: 80px;
    }
}
/*product_column欄位*/
.products_column_one .item{
    width: 100%;
}
.products_column_two .item{
    width: 50%;
}
.products_column_two .item:nth-child(n){
    clear: inherit;
}
.products_column_two .item:nth-child(2n+1){
    clear: left;
}
/*!product_column欄位*/