@charset "utf-8";

	/* 메인 */
    .main-container{
        width: 90%;
        margin: 0 auto;
    
    }

	/* 메인 슬라이드 */
    .main-wrap .main-banner{
		height: auto;
        max-height: 600px;
        overflow: hidden;
    }

	.main-wrap .main-banner .swiper-container {
		max-height:600px; position: relative;
	}	

    .main-wrap .main-banner .swiper-container img{
        width: 100%;
    }

    /* 메인 카테고리 이미지, 상품 */
    .content-box{
        padding: 25px 0;
    }
    /* box-1, box-2... css 공통값 */
    .content-box .list-box{
        text-align: center;
        margin-bottom: 30px;
    }
    .content-box .list-box p{
        font-size: 25px;
        line-height: 1;

    }
    .content-box .list-box .img-box{
        padding: 20px 0;
    }
    .content-box .list-box .img-box img{
        width: 100%;
    }
    .content-box .list-box .item-list{
        display: flex;
        flex-wrap: wrap;
        padding: 20px 0;
        //justify-content: space-around;
    }
    .content-box .list-box .item-list div{
        width: 50%;
        margin: 15px 0;
		padding: 0 15px;
    }
    .content-box .list-box .item-list div a p img{
		width: 100%;
		height: calc(min(var(--max-width), 100vw) / 2);		
		object-fit: cover;
		border-radius: 20px;	
		border: 1px solid #666;
    }
    .content-box .list-box .item-list div a p{
		text-align: left;
        font-size: 16px;
        line-height: 1.3;
    }
    .content-box .list-box .item-list div a p:nth-child(1){
        /* height: 160px; */
        overflow: hidden;
        box-sizing: border-box;
    }
    .content-box .list-box .item-list div a p:nth-child(2){
        font-weight: 600;
        padding-top: 20px;
    }
    .content-box .list-box .item-list div a p:nth-child(3){
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
    }
    .content-box .list-box .item-list div a p:nth-child(4){
        color: rgb(150, 150, 150);
        text-decoration: line-through;
    }
    .content-box .list-box .item-list div a p:nth-child(5){
        font-weight: 700;
        font-size: 20px;
    }

    /* 이벤트 */

    .event-box .event{
        width: 100%;
        text-align: center;
    }
    .event-box .event p{
        font-size: 35px;
        line-height: 1;
    }
    .event-box .event .event-img{
        padding: 20px 0;
    }
    .event-box .event img{
        width: 100%;
    }
    /* 신상품 슬라이드 */
    .new{
        padding: 30px 0 50px; 
    }
    .new > p{
        font-size: 35px;
        line-height: 1;
        text-align: center;
    }
    .new .new-swiper{
        padding: 20px 0;
    }
    .new .new-swiper .swiper-wrapper{
        align-items: flex-end;
    }
    .new .new-swiper .swiper-wrapper > div{
        text-align: center;
    }
    .new .new-swiper img{
        width: 100%;
		height: calc(min(var(--max-width), 100vw) / 3);		
        border-radius: 10px;
        border: 1px solid #666;
        object-fit: cover;		
    }
    .new .new-swiper a p{
        text-align: left;
        line-height: 1.2;
        font-size: 14px;
    }
    .new .new-swiper a p:nth-child(2){
        margin-top: 15px;
        font-weight: bold;
    }
    .new .new-swiper a p:nth-child(3){
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
    }
    .new .new-swiper a p:nth-child(4){
        color: rgb(150, 150, 150);
        text-decoration: line-through;
    }
    .new .new-swiper a p:nth-child(5){
        font-weight: bold;
    }


    footer .footer-box{
        background-color: #000;
        color: #fff;
        padding: 50px 0 150px;
        text-align: center;
    }
    footer .footer-box p:nth-child(1){
        font-size: 25px;
        line-height: 1;
    }

    footer .footer-box .footer-content{
        width: 90%;
        padding: 20px 0;
        margin:  0 auto;
    }
    footer .footer-box .footer-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    footer .footer-box .footer-info li{
        line-height: 1;
        margin-bottom: 10px;
    }
    footer .footer-box .footer-info li:nth-child(1){
        position: relative;
        margin-right:20px;
    }
    footer .footer-box .footer-info li:nth-child(1)::after{
        content: "";
        width: 2px;
        height: 14px;
        background-color: #fff;
        position: absolute;
        right: -10px;
    } 
    footer .footer-box .footer-info li:nth-child(3){
        width: 100%;
    }
    footer .footer-box .footer-content p{
        margin-top: 25px;
        color: rgb(114, 114, 114);
    }

