section, section *{ box-sizing:border-box; }
*{ box-sizing:border-box; }
section:last-child{ padding-bottom:150px !important; }
.mc-con{ width:100%; margin:0 auto; padding: 0 15px; max-width: 1630px; position: relative; z-index: 3;}

.main_sc{width: 100%; position: relative; background-repeat: no-repeat; background-position: center; background-size: cover;}

/*sc01*/
#sc01{
    padding: 100px 0;
}

.sect-tit{
    width: 100%;
    margin-bottom: 2rem;
}
.sect-tit > h3{
    font-size: 32px;
    color: #000;
    font-weight: 300;
    margin-bottom: 5px;
}
.sect-tit > p{
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.pd-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.pd-box{
    width: calc((100% - 60px) / 4);
    position: relative;
    transition: .4s;
}
.pd-img{
    display: flex;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.pd-img img{
    width: 100%;
}
.pd-tit{
    display: block;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: .3s;
}
.pd-box > p{
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-bottom: 10px;
}
.pd-price{
    display: flex;
    align-items: center;
}
.pd-price > span{
    display: inline-block;
    color: #bbb;
    font-weight: 400;
    position: relative;
    margin-right: 5px;
    font-size: 14px;
}
.pd-price > span::after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #bbb;
    position: absolute;
    top: 50%;
    left: 0;
}
.pd-price > p{
    color: #FA8576;
    font-weight: 600;
    margin-right: 10px;
    font-size: 16px;
}
.pd-price > h5{
    font-size: 16px;
    color: #222;
    font-weight: 700;
}
.pd-cart{
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #757575;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    transition: .4s;
    opacity: 0;
}
.pd-box:hover .pd-cart{
    opacity: 1;
}

/* sc02 */
#sc02{
    padding-bottom: 100px;
}
.sc02-wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.sc02-box{
    width: 49%;
}
.sc02-img{
    display: flex;
    position: relative;
}
.sc02-img img{
    width: 100%;
    display: block;
    border-radius: 16px;
}
.sc02-caption{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}
.sc02-caption > h5{
    font-size: 18px;
    color: #000;
    font-weight: 300;
    margin-bottom: 10px;
}
.sc02-caption > h3{
    font-size: 32px;
    color: #000;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
}
.sc02-caption > p{
    color: #333;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
}

@media(min-width:1200px){
	.ms-img-m{display: none;}

	.ani.up.delay{
        transition: 1s opacity 0.2s, 1s transform 0.2s;
    }
    .ani.up.delay2{
        transition: 1s opacity 0.5s, 1s transform 0.5s;
    }
    .ani.up.delay3{
        transition: 1s opacity 0.8s, 1s transform 0.8s;
    }
    .ani.up.delay4{
        transition: 1s opacity 1.1s, 1s transform 1.1s;
    }
    .ani.up.delay5{
        transition: 1s opacity 1.4s, 1s transform 1.4s;
    }
    .ani.up.delay6{
        transition: 1s opacity 1.7s, 1s transform 1.7s;
    }
}
@media(max-width:1599px){

   
}
@media(max-width:1199px){

    .mc-con{padding: 0 15px;}

	.ms-img{display: none;}
	.ms-img-m{
        display: flex;
        position: relative;
        width: 100%;
    }
    .ms-img-m img{
        width: 100%;
}

}
@media(max-width:900px){
    
}
@media(max-width:500px){
   
}

/* animation */

.ani.up{
    transform: translateY(100px);
    opacity: 0;
    transition: 1s;
}

.ani.up.act{
    transform: translateY(0);
    opacity: 1;
}

@keyframes blink{
    50% {
      opacity: 0;
    }
}

@keyframes rotate{
    0% {
      transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}