﻿.products-box{
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}
.products-notice-text{
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 4.375rem;
    font-family: "Noto Serif TC";
    font-weight: 700;
    font-size: 1.125rem;
    color: #000;
    letter-spacing: 0.2em;
    line-height: 1.2;
    box-sizing: border-box;
    padding: 0 20px;
}
.products-info-box{
    width: 1360px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    position: relative;
    box-sizing: border-box;
    padding-bottom: 7.25rem;
    margin-top: 4.375rem;
}
.products-info{
    width: 420px;
    display: inline-block;
    vertical-align: top;
    margin-right: 50px;
}
.products-info:nth-child(3n){
    margin-right: 0;
}
.products-info:nth-child(n + 4){
    margin-top: 11.25rem;
}
.products-info-img-box{
    width: 100%;
    height: 270px;
    display: block;
    overflow: hidden;
    position: relative;
}
.products-info-title{
    font-family: "Noto Serif TC";
    font-weight: 700;
    font-size: 1.125rem;
    color: #000;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin-top: 25px;
}
.products-info-text-box>li{
    display: block;
    margin-top: 25px;
}
.products-info-text{
    font-family: "Noto Serif TC";
    font-size: 1rem;
    color: #666;
    transition: all .3s linear;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 35px;
    border-left: 1px solid #ddd;
    line-height: 1.2;
    letter-spacing: 0.2em;
    position: relative;
}
a.products-info-text::after{
    content: '\f0c1';
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    position: absolute;
    right: 10px;
    top: calc(50% - 10px);
    line-height: 20px;
    color: #33538b;
    font-size: 0.875rem;
}




@media only screen and (max-width: 1360px){
    .products-info-box{
        width: 1200px;
    }
    .products-info {
        width: 370px;
        margin-right: 45px;
    }
    .products-info-img-box{
        height: calc((270 / 420) * 370px);
    }
}
@media only screen and (max-width: 1200px){
    .products-info-box{
        width: 1000px;
    }
    .products-info {
        width: 320px;
        margin-right: 20px;
    }
    .products-info-img-box{
        height: calc((270 / 420) * 320px);
    }
}
@media only screen and (max-width: 1000px){
    .products-info-box{
        width: 750px;
    }
    .products-info:nth-child(n){
        width: 365px;
        margin-right: 20px;
    }
    .products-info:nth-child(2n){
        margin-right: 0;
    }
    .products-info-img-box{
        height: calc((270 / 420) * 365px);
    }
}
@media only screen and (max-width: 768px){
    .products-notice-text{
        font-size: 1rem;
        margin-top: 1.5rem;
        letter-spacing: 0.06em;
    }
    .products-info-box{
        width: 550px;
        margin-top: 1.5rem;
    }
    .products-info:nth-child(n){
        width: 265px;
        margin-right: 20px;
        margin-top: 3.75rem;
    }
    .products-info:nth-child(2n){
        margin-right: 0;
    }
    .products-info:nth-child(n + 3){
        margin-top: 3.75rem;
    }
    .products-info-img-box{
        height: calc((270 / 420) * 265px);
    }
    .products-info-title{
        font-size: 1rem;
        letter-spacing: 0.06em;
        margin-top: 10px;
    }
    .products-info-text-box>li{
        margin-top: 10px;
    }
    .products-info-text{
        font-size: 0.875rem;
        padding-left: 10px;
        padding-right: 20px;
        letter-spacing: 0.06em;
    }
    a.products-info-text::after{
        right: 2px;
    }
}
@media only screen and (max-width: 550px){
    .products-info-box{
        width: calc(100vw - 40px);
    }
    .products-info:nth-child(n){
        width: 100%;
        margin-right: 0px;
        margin-top: 0;
    }
    .products-info:nth-child(2n){
        margin-right: 0;
    }
    .products-info:nth-child(n + 2){
        margin-top: 1.5rem;
    }
    .products-info-img-box{
        height: calc((270 / 420) * (100vw - 40px));
    }
}




@media only screen and (min-width: 769px){
    a.products-info-text:hover{
        color: #33538b;
        font-weight: 700;
    }

    .products-info{
        opacity: 0;
    }
    .products-info.anima{
        animation: fadeInUp 1.4s ease 0s 1 both;
    }
}