@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/*-------------------------------------------------
Mobile
-------------------------------------------------*/
/* ============= VISUAL === */
.visual-wrap article {
    position: relative;
    height: 600px;
    background: url(../../img/m_visual_bg.jpg) no-repeat center/cover;
    padding: 0 4.533%;
}
.visual-wrap article .txt-area {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
    color: #fff;
    word-break: break-all;
}
.visual-wrap article .txt-area h4 {
    font-size: 2.5rem;
    line-height: 36px;
    font-weight: 500;
    /* white-space: normal; */
    /* margin-top: 10px; */
    text-shadow: 4px 4px 4.95px rgba(51, 63, 72, 0.14);
}
.visual-wrap article .txt-area .cont{
    /* margin-top: 8px; */
    font-size: 1.6rem;
    line-height: 21px;
    white-space: pre-line;
    text-shadow: 4px 4px 4.95px rgba(51, 63, 72, 0.14);
    display: none;
}
.visual-wrap article .txt-area p.typing {  
    margin-bottom: 10px;
    font-size: 1.6rem;
    line-height: 21px;
    white-space: pre-line;
    text-shadow: 4px 4px 4.95px rgba(51, 63, 72, 0.14);
    display: inline-block; 
    animation-name: cursor; 
    animation-duration: 0.3s; 
    animation-iteration-count: infinite; 
} 
@keyframes cursor{ 
    0%{border-right: 1px solid #fff} 
    50%{border-right: 1px solid #fff} 
    100%{border-right: 1px solid #fff} 
}
.visual-wrap article .txt-area .btn-link {
	display: block;
	margin: 16px auto 0;
	width: 160px; height: 42px;
	line-height: 41px;
	font-size: 1.5rem; color: #fff;
	border: 1px solid #fff;
}
/* && focus && */
.visual-wrap article .txt-area > * {
    /* opacity: 0;
    transform: translateY(30px); */
}
.visual-wrap.focus article .txt-area > * {
    opacity: 1;
    transform: translateY(0);
    transition: .6s;
}
.visual-wrap.focus article .txt-area > .cont {transition-delay: .3s;}
.visual-wrap.focus article .txt-area > .btn-link {transition-delay: .5s;}


/* ============= 상품 === */
#about{
    background: url(../../img/m_prod_bg.jpg) no-repeat center/cover;
}
.about-wrap {
    padding: 56px 4.533% ;
}
.about-wrap  .txt-wrap h3{
    position: relative;
    margin-bottom: 33px;
    font-size: 2.3rem;
    text-align: center;
    color: #fff;
}
.about-wrap h3 .eng{
    display: block;
    margin: 0 -2rem 10px 0;
    font-size: 1.2rem;
    letter-spacing: 2rem;
    font-style: normal;
}
.about-wrap h3:before,
.about-wrap h3:after {
    position: absolute;
    content: '';
    bottom: 10px;
    left: 0;
    width: 90px;
    height: 1px;
    background: #fff;
}
.about-wrap h3:after {
    left: auto;
    right: 0;
}
/* .product-wrap {padding: 0 4.533%;} */
.product-wrap .product-list li {
    /* opacity: 0;
    transform: translateY(35px); */
}
.product-wrap .product-list li:nth-child(n+2) {margin-top: 33px;}
.product-wrap .product-list a {display: block;}
.product-wrap .product-list .img-area{
    overflow: hidden;
    height: 200px;
}
.product-wrap .product-list .img-area img {
    object-fit: cover;
    height: 100%; width: 100%;
}
.product-wrap .product-list .txt-area {margin-top: 26px;}
.product-wrap .product-list .txt-area .tit {
    font-size: 2.3rem;
    color: #fff;
}
.product-wrap .product-list .txt-area .tit .hot-prod {
	display: inline-block;
	padding: 3px 5px;
	font-size: 1.8rem; color: #fff;
	font-style: normal;
	background: #fff;
	vertical-align: middle;
}
.product-wrap .product-list .txt-area .tit b {
    position: relative;
    display: inline-block;
    color: #fff;
    font-weight: 400;
}
.product-wrap .product-list .txt-area .tit b:after {
    position: absolute;
    bottom: -2px; left: 50%; transform: translateX(-50%);
    content: '';
    width: 106%; height: 12px;
    background: rgba(182,199,0,.2);
}
.product-wrap .product-list .txt-area .cont {
    margin: 15px 0 24px;
    font-size: 1.5rem;
    line-height: 21px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.product-wrap .product-list .txt-area .price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-wrap .product-list .txt-area .price-wrap .discount p{
    text-decoration: line-through;
    font-size: 1.6rem;
}
.product-wrap .product-list .txt-area .price-wrap li{
    display: flex;
}
.product-wrap .product-list .price-wrap li:nth-child(n+2) {margin-top: 0;}

.product-wrap .product-list .txt-area .price-wrap p {
    font-size: 1.8rem;
    color: #fff;
}
.product-wrap .product-list .txt-area span:after {
    display: inline-block;
    content: '';
    width: 26px; height: 6px;
    margin-left: 15px;
    background: url(../../img/main/product_arrow_ico.png) no-repeat center/contain;
}
/* && focus */
.product-wrap.focus .product-list li {
    opacity: 1;
    transform: translateY(0);
    transition: .5s;
}
.product-wrap.focus .product-list li:nth-child(2) {transition-delay: .3s;}
.product-wrap.focus .product-list li:nth-child(3) {transition-delay: .6s;}
.product-wrap.focus .product-list li:nth-child(4) {transition-delay: .9s;}


/* ==================================
    PC
=================================== */
@media screen and (min-width:1084px){
    /* ============= MAIN RESET === */
    main {padding-top: 0;}
    .navWrap {
        background: transparent;
        border-bottom-color: transparent;
    }
	section[data-index-lv="2"] {
		position: relative;
		background: #fff;
		z-index: 1;
	}
	footer {
		position: relative;
		z-index: 1;
	}
    /* ============= VISUAL === */
	#visual {width: 100vw; height: 100vh;}
	.visual-wrap {
		position: fixed;
		top: 0; left: 0;
		width: 100%; height: 100%;
	}
    .visual-wrap article {
        height: 100vh;
        background-image: url(../../img/visual_bg.jpg);
    }
    .visual-wrap article .txt-area h4 {
        font-size: 5.5rem;
        line-height: 1.3;
        white-space: pre-line;
    }
    .visual-wrap article .txt-area p.typing {  
        margin-bottom: 10px;
        font-size: 2.3rem;
        line-height: 26px;
        font-weight: 300;
    } 
    .visual-wrap article .txt-area .cont {
        margin-top: 23px;
        font-size: 2.3rem;
        line-height: 26px;
        font-weight: 300;
    }
	.visual-wrap article .txt-area .btn-link {
		margin-top: 32px;
		width: 190px; height: 46px;
		line-height: 43px;
	}
    .visual-wrap article.sl02 {background-image: url(../../img/main/visual2.jpg);}
    .visual-wrap article.sl03 {background-image: url(../../img/main/visual3.jpg);}
    .visual-wrap .scroll-induce {
        position: absolute;
        bottom: 51px; left: 50%; transform: translateX(-50%);
        text-align: center;
    }
    .visual-wrap .scroll-induce span {
        display: block;
        margin-bottom: 9px;
        font-size: 1.6rem; color: #fff;
    }   
    .visual-wrap .scroll-induce img {
        display: inline-block;
        animation: scrollAnimation 1s infinite alternate;
    } 
    @keyframes scrollAnimation {
        0% {transform: translateY(0);}
        100% {transform: translateY(8px);}
    }
    /* && focus && */
    .visual-wrap article .txt-area > * {transform: translateY(50px);}

    /* ============= 상품목록 === */
    /* === 상품 */
    #about{
        height: auto;
        background-image: url(../../img/prod_bg.jpg);
    }
    .about-wrap{
        padding: 80px 0 100px;
    }
    .about-wrap .txt-wrap h3 {
        width: 706px;
        margin: 0 auto 57px;
        font-size: 3.2rem;
    }
    .about-wrap h3 .eng{
        margin-bottom: 17px;
        font-size: 1.4rem;
    }
    .about-wrap h3:before, .about-wrap h3:after {
        bottom: 15px;
        width: 200px;
    }
    .product-wrap {
        padding: 0;
        max-width: 1300px;
        min-width: 1184px;
        margin: 0 auto;
    }
    .product-wrap .product-list {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 25px;
    }
    .product-wrap .product-list > li {
        /* width: 21.538%; */
        width: 31.538%;
    }
    .product-wrap .product-list .txt-area .price-wrap {
        gap: 10px;
        justify-content: center;
    }
    .product-wrap .product-list .txt-area .price-wrap .discount p{
        font-size: 1.6rem;
    }
    .product-wrap .product-list .txt-area .price-wrap p {
        font-size: 1.8rem;
        color: #fff;
    }
    .product-wrap .product-list li:nth-child(n+2) {margin: 0;}
    .product-wrap .product-list .img-area {
        height: 216px;
        box-shadow: 0px 2px 8.91px 0.09px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }
    .product-wrap .product-list .img-area img {
        width: 100%; height: 100%;
        object-fit: cover;
        transition: .5s;
    }
    .product-wrap .product-list .txt-area {
        margin-top: 26px;
        text-align: center;
    }
    .product-wrap .product-list .txt-area .tit {
        font-size: 2rem;
        font-weight: 700;
    }
	.product-wrap .product-list .txt-area .tit .hot-prod  {
		font-size: 1.5rem;
		vertical-align: 2px;
	}
    .product-wrap .product-list .txt-area .tit b {font-weight: 700;}
    .product-wrap .product-list .txt-area .tit b:after {height: 10px;}
    .product-wrap .product-list .txt-area .cont {
        margin: 17px 0 ;
        font-size: 1.6rem;
        line-height: 22px;
        font-weight: 300;
    }
    /* .product-wrap .product-list .txt-area span:after {margin-left: 13px;} */
    .product-wrap .product-list a:hover .img-area img {transform: scale(1.07);}
    .product-wrap .product-list a:hover .txt-area span:after {
        transform: translateX(10px);
        transition: .5s;
    }
   
}