.product_title {
    background-color: #EEEEEE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: calc(13px + 5rem);
    padding-bottom: calc(3px + 5rem);
}

.product_title .p1 {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(10px + 3rem);
    color: #2B2B2B;
    line-height: 1;
    text-align: center;
}

.product_title .p2 {
    width: calc(81px + 50rem);
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #2B2B2B;
    line-height: calc(2px + 1.5rem);
    text-align: center;
    margin-top: calc(10px + 1rem);
}

.product_main_box {
    width: 100%;
    padding-top: calc(20px + 5rem);
    padding-bottom: calc(40px + 5rem);
}

.product_main {
    max-width: 1480px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product_nav {
    width: 20.2703%;

}

.product_nav_title {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(4px + 1rem);
    color: #333333;
    line-height: 1;
    border-bottom: 1px #E4E4E4 solid;
    padding-bottom: calc(6px + 0.5rem);
}
.product_nav_title_act{
    color: #0072BA;
}

.product_nav_item {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(10px + 0.5rem);
    color: #333333;
    line-height: 1;
    padding-top: calc(10px + 1rem);
    padding-bottom: calc(8px + 1.5rem);
    border-bottom: 1px #E4E4E4 solid;


}
.product_nav_item_act{
    color: #0072BA;
}

.product_nav_item a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_nav_item img {
    width: calc(2px + 1.5rem);
}

.product_list_box {
    width: 72.8378%;
}

.product_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(2px + 2rem);
}

.product_item {
    width: 31.5399%;
    height: calc(40px + 20rem);
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
}

.product_item a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 calc(10px + 1rem);
    overflow: hidden;
}

.product_item_pic {
    height: calc(70px + 5rem);
    margin: 0 auto;

    transition: .5s;
}

.product_item_pic img {
    height: 100%;


}

.product_item_text {
    border-top: 1px #E4E4E4 solid;
    padding-top: calc(7px + 1rem);
    margin-top: calc(5px + 3rem);
}

.product_item_text .p1 {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(10px + 0.5rem);
    color: #0072BA;
    line-height: 1;
}

.product_item_text .p2 {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #333333;
    line-height: calc(6px + 1rem);
    margin-top: calc(1px + 1rem);
}

.product_item:hover .product_item_pic {
    transform: scale(1.1);
}


@media (max-width: 1100px){
    .product_title .p2{
        width: 100%;
        font-size: calc(10px + 1rem);
        line-height: 1.5;
        padding: 0 7.5%;
    }
    .product_main{
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: calc(10px + 3rem);
    }
    .product_nav{
        width: 100%;
    }
    .product_nav_title{
        font-size: calc(12px + 1rem);
    }
    .product_nav_item{
        font-size: calc(12px + 1rem);
    }
    .product_nav_item img {
        width: calc(20px + 1.5rem);
    }
    .product_list_box{
        width: 100%;
    }
    .product_item{
        width: 48.5%;
        height: auto;
        padding-bottom: calc(10px + 1rem);
    }
    .product_item_text .p1{
        font-size: calc(12px + 1rem);
    }
    .product_item_text .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
        height: calc(46px + 10rem);
    }
}