body {
    background-color: #F2F2F2;
}

.two_product_box {
    width: 100%;
    padding-top: calc(8px + 4rem);
    padding-bottom: calc(16px + 5rem);
}

.two_product_nav_box {
    width: 100%;
    border-bottom: 1px #24242420 solid;
}

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

.two_product_nav_item {
    width: 13.5135%;

    padding-bottom: calc(2px + 3rem);
}

.two_product_nav_item a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: calc(7px + 1rem);
}

.two_product_nav_item_icon img {
    height: calc(18px + 4rem);
    display: none;
}

.two_product_nav_item_icon img:nth-of-type(1) {
    display: block;
}

.two_product_nav_item .p1 {
    font-family: Helvetica_roman;
    font-weight: normal;
    font-size: calc(10px + 0.5rem);
    color: #333333;
    line-height: 1;
    text-align: center;

}

.two_product_nav_item_act {
    border-bottom: 1px #EC6629 solid;
}

.two_product_nav_item_act .two_product_nav_item_icon img {
    display: none;
}

.two_product_nav_item_act .two_product_nav_item_icon img:nth-of-type(2) {
    display: block;
}

.two_product_nav_item_act .p1 {
    color: #EC6629;
}

.two_product {
    max-width: 1480px;
    width: 85%;
    margin: auto;
    padding-top: calc(12px + 5rem);
  
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: calc(2px + 1.5rem);
}

.two_product_item {
    width: 48.9189%;
    height: calc(100px + 10rem);
    background: #FFFFFF;
    box-shadow: 0px 0px calc(4px + 1rem) 0px rgba(0, 0, 0, 0.09);
    border-radius: calc(3px + 0.25rem);
}

.two_product_item a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(5px + 1rem);
}

.two_product_item .two_product_item_pic {
    width: 52.4862%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.two_product_item .two_product_item_pic img {
    height: calc(10px + 10rem);
    object-fit: cover;
}

.two_product_item_right .p1 {
    position: relative;
    top: calc(5px + 0.25rem);
    font-family: Helvetica_roman;
    font-weight: normal;
    font-size: calc(8px + 1rem);
    color: #3A3A3A;
    line-height: 1;
}

.two_product_item_right .p2 {
    font-family: Helvetica_roman;
    font-weight: normal;
    font-size: calc(8px + 0.5rem);
    color: #666666;
    line-height: 1.5;
    margin-top: calc(8px + 1rem);
}

.pro_more {
    width: calc(40px + 5rem);
    height: calc(6px + 2rem);
    background: #ffffff;
    border-radius: calc(3px + 1rem);
    border: 1px solid #ffffff;
    margin-top: calc(15px + 3rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(1px + 0.5rem);
    font-family: Helvetica_roman;
    font-weight: normal;
    font-size: 16px;
    color: #EC6629;
    line-height: 1;
    transition: .5s;
}
.two_product_item_right{
    width: 45%;
}

.two_product_item:hover .pro_more{
    background: #EC6629;
    border: 1px #EC6629 solid ;
    color: #ffffff;
    justify-content: center;
}

@media screen and (max-width: 1100px){
    .two_product_item{
        width: 100%;
    }
    .two_product_item .two_product_item_pic img {
        height: calc(10px + 24rem);
    }
    .two_product_item_right .p1{
        font-size: calc(12px + 1rem);
    }
    .two_product_item_right .p2{
        font-size: calc(10px + 1rem);
    }
    .pro_more{
        width: auto;
    }
    .two_product{
        gap: calc(10px + 3rem);
    }
}