/*
-----------------
product @PC
-----------------
*/
#product{
    width: 1080px;
    margin: 20px auto 0 auto;
}
#product h2{
    text-align: center;
    font-size: 24px;
    letter-spacing: 3px;
    padding: 0 0 20px 0;
    color: #000;
    position: relative;
}
#product h2 span{
    font-size: 11px;
    color: #5dc259;
    letter-spacing: 4px;
    display: block;
}
@media screen and (max-width: 1080px){
    #product{
        width: 94vw;
        margin: 40px auto 0 auto;
    }
    #product h2{
        text-align: center;
        font-size: 20px;
        letter-spacing: 3px;
        padding: 0 0 20px 0;
        color: #000;
        position: relative;
    }
}
#product > nav{
    padding: 0 0 40px 0;
    position: relative;
    z-index: 90;
}
#product > nav > ul{
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 0;
    flex-wrap: wrap;
}
#product > nav > ul > li{
    width: 23%;
}
@media screen and (max-width: 780px){
    #product > nav > ul > li{
        width: 100%;
        margin: 10px 0 10px 0;
    }
}
#product > nav > ul > li a{
    border: 1px solid #5dc259;
    color: #5dc259;
    display: block;
    text-align: center;
    padding: 5px 0 5px 0;
    position: relative;
}
#product > nav > ul > li a:hover{
    background: #5dc259;
    color: #fff;
    opacity: 1;
}
#product > nav > ul > li a i{
    padding: 0 5px 0 0;
    vertical-align: 3px;
}
#product > p{
    padding: 20px;
    margin: 20px 0 0 0;
    background: #f5f3e1;
}
.product > ul > li{
    margin: -144px 0 0 0;
    border-bottom: 1px solid #dcdcdc;
    padding: 164px 0 0 0;
}
.product > ul > li > h3{
    background: #5dc259;
    padding: 10px 20px 10px 20px;
    color: #fff;
    text-align: left;
    font-size: 18px;
}
.product > ul > li > p{
    padding: 20px 20px 15px 20px;
    font-size: 15px;
    background: #f9f9f9;
}
.product > ul > li > ul{
    padding: 0 20px 15px 20px;
    font-size: 15px;
    background: #f9f9f9;
}
.product > ul > li > ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.product > ul > li > ul li{
    width: 48%;
    margin: 10px 0 10px 0;
}

.product > ul > li > ul li a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    position: relative;
    border: 1px solid #5dc259;
    border-radius: 1px;
    flex-wrap: wrap;
    padding: 15px 0 12px 0;
    color: #5dc259;
    letter-spacing: 0;
    line-height: 1.4em;
    background: #fff;
}
@media screen and (max-width: 780px){
    .product > ul > li > ul li{
        width: 100%;
        margin: 10px 0 10px 0;
    }
    .product > ul > li > ul li a{
        width: calc(100% - 20px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        position: relative;
        border: 1px solid #5dc259;
        border-radius: 1px;
        flex-wrap: wrap;
        padding: 15px 10px 12px 10px;
        color: #5dc259;
        letter-spacing: 0;
        line-height: 1.4em;
        background: #fff;
    }
}
.product > ul > li > ul li a:hover{
    opacity: 1;
    background: #5dc259;
    color: #fff;
}
.product > ul > li > ul li a span{
    display: block;
    text-align: center;
    width: 100%;
    font-size: 13px;
    color: #000;
}
.product > ul > li > ul li a:hover span{
    color: #fff;
}
.product > ul > li > ul li a:after{
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #5dc259 transparent;
    position: absolute;
    bottom: 4px;
    right: 4px;
}
.product > ul > li > ul li a:hover:after{
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    bottom: 4px;
    right: 4px;
}
/*
-----------------
productdetail
-----------------
*/

.productdetail table{
    width: 100%;
    margin: 20px 0 20px 0;
}
.productdetail table tr{
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.productdetail table tr th{
    width: 180px;
    color: #5dc259;
    text-align: left;
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    letter-spacing: 2px;
    vertical-align: middle;
    background: #f9f9f9;
}
.productdetail table tr td{
    padding: 10px 20px 10px 20px;
    font-size: 15px;
    letter-spacing: 2px;
    vertical-align: middle;
}
.productdetail table.fs tr th{
    width: 180px;
    color: #5dc259;
    text-align: center;
    padding: 10px 5px 10px 5px;
    font-size: 13px;
    letter-spacing: 0;
    vertical-align: middle;
    background: #f9f9f9;
    line-height: 1.4em;
    border: 1px solid #dcdcdc;
}
.productdetail table.fs tr td{
    padding: 10px 5px 10px 5px;
    font-size: 13px;
    letter-spacing: 0;
    vertical-align: middle;
    text-align: center;
    line-height: 1.4em;
    border: 1px solid #eee;
}
@media screen and (max-width: 780px){
    .productdetail > table tr th{
        width: calc(100% - 40px);
        color: #5dc259;
        text-align: left;
        padding: 10px 20px 10px 20px;
        font-size: 14px;
        letter-spacing: 2px;
        vertical-align: middle;
        background: #f9f9f9;
        display: block;
    }
    .productdetail table.fs tr th{
        width: calc(100% - 10px);
    }
    .productdetail > table tr td{
        width: calc(100% - 40px);
        padding: 10px 20px 10px 20px;
        font-size: 15px;
        letter-spacing: 2px;
        vertical-align: middle;
        display: block;
    }
    .productdetail table.fs tr td{
        width: calc(100% - 10px);
    }
}
.productdetail table tr td ul.image3c{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0 40px 0;
}
.productdetail table tr td ul.image3c li{
    width: 32%;
    margin: 20px 0 0 0;
}
.productdetail table tr td ul.image3c li img{
    width: 100%;
    display: block;
    border: 1px solid #eee;
}
.productdetail table tr td ul.image3c li span{
    text-align: center;
    display: block;
    padding: 5px 0 0 0;
    font-size: 14px;
    line-height: 1.6em;
}
.productdetail table tr td ul.att{
    margin: -20px 0 0 0;
}
.productdetail table tr td ul.att li{
    padding: 0 0 0 12px;
    position: relative;
    font-size: 13px;
    line-height: 1.4em;
    margin: 5px 0 0 0;
}
.productdetail table tr td ul.att li:before{
    content:"*";
    color: #ff0000;
    position: absolute;
    top: 2px;
    left:0;
}
.productdetail table tr td ul.att2{
    margin: 5px 0 0 0;
}
.productdetail table tr td ul.att2 li{
    padding: 0 0 0 12px;
    position: relative;
    font-size: 13px;
    line-height: 1.4em;
    margin: 5px 0 0 0;
}
.productdetail table tr td ul.att2 li:before{
    content:"*";
    color: #ff0000;
    position: absolute;
    top: 2px;
    left:0;
}

/*
-----------------
productnav
-----------------
*/
.cataloglink{
    padding: 20px 0 0 0;
}

.cataloglink a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
    border: 1px solid #5dc259;
    border-radius: 2px;
    flex-wrap: wrap;
    padding: 18px 0 15px 0;
    letter-spacing: 2px;
    line-height: 1.8em;
    background: #5dc259;
    color: #fff;
}
.cataloglink a span{
    display: block;
    text-align: center;
    width: 100%;
    font-size: 20px;
    color: #fff;
}
.cataloglink a:after{
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    bottom: 4px;
    right: 4px;
}
@media screen and (max-width: 780px){
    .cataloglink a span{
        display: block;
        text-align: center;
        width: 100%;
        font-size: 18px;
        color: #fff;
        margin: 0 0 10px 0;
    }
    .cataloglink a{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        position: relative;
        border: 1px solid #5dc259;
        border-radius: 2px;
        flex-wrap: wrap;
        padding: 18px 20px 15px 20px;
        letter-spacing: 2px;
        line-height: 1.4em;
        background: #5dc259;
        color: #fff;
    }
}

.productnav{
    padding: 1px 20px 40px 20px;
    background: #f5f6f3;
    border-radius: 3px;
    margin: 40px 0 0 0;
}
.productnav table{
    width: 100%;
    margin: 20px 0 0 0;
}
.productnav table tr{
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.productnav table tr th{
    background: #494443;
    text-align: left;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    letter-spacing: 2px;
    color: #fff;
}
.productnav table tr td{
    padding: 10px 20px 10px 20px;
    font-size: 15px;
    letter-spacing: 2px;
    background: #fff;
}
.productnav table tr td ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.productnav table tr td ul li{
    width: 48%;
    margin: 10px 0 10px 0;
}
@media screen and (max-width: 780px){
    .productnav table tr td ul li{
        width: 100%;
        margin: 10px 0 10px 0;
    }
}
.productnav table tr td ul li a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    position: relative;
    border: 1px solid #5dc259;
    border-radius: 1px;
    flex-wrap: wrap;
    padding: 10px 0 10px 0;
    color: #5dc259;
    letter-spacing: 2px;
}
.productnav table tr td ul li a span{
    display: block;
    text-align: center;
    width: 100%;
    font-size: 13px;
    color: #000;
}
.productnav table tr td ul li a:after{
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #5dc259 transparent;
    position: absolute;
    bottom: 4px;
    right: 4px;
}
.pageback{
    text-align: center;
    padding: 20px 0 0 0;
    margin: 20px 0 0 0;
}
.pageback a{
    padding: 0 0 5px 0;
    color: #5dc259;
}
.pageback a i{
    padding: 0 10px 0 0;
}
.pageback a:hover{
    border-bottom: none;
}