@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: -1px;
}

ul {
    list-style: none;
}

a:any-link {
    text-decoration: none;
}

.hidden {
    visibility: hidden;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

img {
    vertical-align: top;
}

/*
BRAND COLOR
남색: #003471
*/

/* header */

#wrap {
    width: 100%;
    overflow: hidden;
}

#header {
    display: none;
}

body {
    background: linear-gradient(white, #f9f4ee);
}

#pclnb {
    display: none;
}

/* header */

#lnb {
    width: 100%;
    height: 60px;
    position: relative;
    box-shadow: 0 5px 6px rgba(64,64,64,0.1);
    position: sticky;
    top: 0;
    float: left;
    background-color: rgba(255,255,255,0.5)
}

#lnb > div {
    max-width: 1200px;
    height: 60px;
    margin: 0 auto;
}

#logo img {
    width: 200px;
}

#logo a {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    float: left;
}

/****************** 메뉴버튼-햄버거 ******************/

.menu_button {
    width: 40px;
    height: 40px;
    float: left;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s;
}

.menu_button > span {
    width: 24px;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 8px;
    transition: all 0.2s;
}

.line1 {
    transform: translate(0, 12px);
}

.line2 {
    transform: translate(0, 20px);
}

.line3 {
    transform: translate(0, 28px);
}

.deg45 {
    transform: translate(0, 20px) rotate(45deg) scale(1.3, 1)
}

.-deg45 {
    transform: translate(0, 20px) rotate(-45deg) scale(1.3, 1)
}

.hide {
    transform: rotateY(90deg);
}

/****************** 메뉴버튼-햄버거 ******************/





/**************** 모바일, 태블릿 메뉴 ****************/
.menu {
    width: 100%;
    max-width: 350px;
    position: absolute;
    top: 60px;
    border-radius: 15px;
    overflow: hidden;
    display: none;
    margin: 10px 0 0 5px;
}

.menu > li > a {
    display: block;
    height: 50px;
    background-color: #F1F1F1;
    text-align: left;
    color: #000;
    font: 400 16px/50px '';
    padding-left: 25px;
    position: relative;
}

.menu > li:last-child > a {
    height: 155px;
    position: relative;
}

.lnb_benefit {
    width: 300px;
    height: auto;
    background-color: #fff;
    position: absolute;
    z-index: 1;
    bottom: 15px;
    left: 20px;
    border-radius: 10px;
}

.lnb_benefit > div {
    padding: 10px 15px;
}

.bene_title {
    font: 400 13px/1.5 '';
    padding-bottom: 5px;
}

.bene_con {
    font: 400 12px/1.5 '';
    color: #444;
}

.btn {
    width: 6px;
    position: absolute;
    top: 25px;
    right: 90px;
    transition: all 0.2s;
}

.rotate {
    transform: rotate(90deg);
}

.lnb_rightwrap {
    float: right;
    width: 35px;
    height: 40px;
    position: relative;
    top: 12px;
}

.lnb_right > li {
    width: 35px;
    height: 40px;
    display: block;
    cursor: pointer;
    background-size: 85%;
}

.search {
    background: url(../img/search_icon.png) center no-repeat;
}

.close_btn {
    background: url(../img/close_icon.png) center no-repeat;
    opacity: 0;
}



/* 서브 메뉴 */

.submenu {
    background-color: #eee;
    top: 0;
}

.submenu > li {
    width: 190px;
    height: 40px;
    text-align: left;
    color: #000;
    padding-left: 30px;
    font: 300 13px/40px '';
    cursor: pointer;
}

.msubmenu > li:hover {
    text-decoration: underline;
}

/* 서브 메뉴 */

/**************** 모바일, 태블릿 메뉴 ****************/






/********************* 검색창 *********************/

.popup {
    width: 100%;
    height: 50px;
    background-color: #fff;
    opacity: 0.5;
    position: relative;
    box-shadow: 0 5px 6px rgba(64,64,64,0.1);
    z-index: -1;
}

#search {
    margin: 0 auto;
    height: 30px;
    width: 1024px;
}

#search > input {
    position: absolute;
    right: 45px;
    background-color: #fff;
    border: 1px solid #ddd;
    outline: inherit;
    width: 220px;
    height: 25px;
    padding: 0 10px;
    top: 50%;
    transform: translateY(-50%);
}

#search_btn {
    position: absolute;
    right: -290px;
    top: 7px;
    background-color: #fff;
    width: 27px;
    height: 27px;
    cursor: pointer
}

#search_btn > img {
    position: absolute;
    top: 4px;
    width: 25px;
    right: 300px;
}

/********************* 검색창 *********************/










/******************** 컨텐츠 영역 ********************/

#contentwrap {
    width: 100%;
    height: 100%;
}

.article {
    max-width: 1200px;
    overflow: hidden;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.article_2 {
    max-width: 1200px;
/*    overflow: hidden;*/
    margin: 0 auto;
    padding: 0 0.1px;
/*    box-sizing: border-box;*/
    z-index: -99;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
}

.article_h3 {
    font: 200 40px/1.1 'Maitree';
    letter-spacing: 0px;
    margin: 40px 0 10px 0;
    text-align: center;
}

.article_h4 {
    font: 400 2.5rem/1 '';
    text-align: center;
    letter-spacing: -1px;
}

#intro {
    width: 100%;
    overflow: hidden;
}

/********************* 메인 배너 *********************/

#main_banner {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    z-index: -1;
}

#main_banner > div {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

#main_slide {
    width: 100%;
    height: 550px;
    overflow: hidden;
}

#slide {
    width: 300%;
    position: relative;
    left: 0;
}

#slide > li {
    width: 33.333333%;
    float: left;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

#slide > li > a {
    position: relative;
    width: 1920px;
    left: 50%;
    display: block;
    transform: translateX(-50%);
}



.slide_text {
    text-align: right;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    left: 50%;
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 50px;
}

.modify > p:first-child {
    margin: 0;
}

.slide_text p {
    font: 400 17px/1.5 '';
    margin: 30px auto -80px;
}

#slide_text1 > h4 {
    font: normal 2rem/1.3 'Maitree';
    color: #000;
}

#main_banner > div {
    position: relative;
}

#main_banner > div > span {
    display: block;
    width: 20px;
    height: 35px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}

.prev {
    left: 1%;
}

.prev > img {
    transform: rotate(180deg);
}

.next {
    right: 1%;
}

/********************* 메인 배너 *********************/










/******************** 베스트 상품 ********************/



/***************** 베스트 상품-제목 *****************/

#best_seller {
    margin-top: 550px;
    width: 100%;
    overflow: hidden;
}

#best_seller > h4 {
    font-family: 'Maitree';
}



#best_seller > span > p {
    font: normal 19px/1.5'';
    padding: 10px 0;
    text-align: center;
    margin-bottom: 39px;
}

/***************** 베스트 상품-목록 *****************/

#best_list {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(2,1fr);
}

#best_list > li > a {
    display: block;
    width: 100%;
    position: relative;
    background-size: cover;
}

#best_list > li > a::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#best_list > li:nth-child(1) > a {
    background: url(../img/best_3.jpg) center;
    background-size: cover;
}

#best_list > li:nth-child(2) > a {
    background: url(../img/best_4.jpg) center;
    background-size: cover;
}

#best_list > li:nth-child(3) > a {
    background: url(../img/best_2.jpg) center;
    background-size: cover;
}

#best_list > li:nth-child(4) > a {
    background: url(../img/best_1.jpg) center;
    background-size: cover;
}

#best_list > li > a:hover {
    opacity: 0.8;
    transition: all 0.2s;
}

/*--------------------------*/
/* 베스트 상품 텍스트 */

.p_text {
    float: left;
    text-align: left;
    width: 100%;
    overflow: hidden;
    margin: 10px 0 20px 0;
    position: relative;
}

.p_text > li {
    text-align: left;
}

/* 상품 상품명 */
.p_text > li:nth-child(1) {
    font: 400 18px/1.5 '';
    margin-top: 15px;
}
.p_text > li:nth-child(2) {
    font: 400 14px/1 '';
    margin-top: 5px;color: #aaa;
}

/* 상품 판매가 */
.p_text > li:nth-child(3) {
    font: 400 17px/1.5 '';
    margin-top: 15px;
}

/*--------------------------*/





/********************** 카테고리 **********************/

/***************** 카테고리-목록 *****************/

.category {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
}

#category {
    display: grid;
    grid-template-columns: auto auto;
}

#category > li {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

#category > li a {
    display: block;
    width: 100%;
}

#category > li:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#category > li:nth-child(1) {
    grid-column: 1 / span 2;
    background: url(../img/category_serum.jpg) center no-repeat;
    background-size: cover;
}

#category > li:nth-child(2) {
    background: url(../img/category_treatment.jpg) center no-repeat;
    background-size: cover;
}

#category > li:nth-child(3) {
    background: url(../img/category_cushion.jpg) center no-repeat;
    background-size: cover;
}

#category > li:nth-child(4) {
    background: url(../img/category_gift.jpg) center no-repeat;
    background-size: cover;
}

#category > li:nth-child(5) {
    background: url(../img/category_foundation.jpg) center no-repeat;
    background-size: cover;
}

#category > li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: all 0.2s;
}

#category > li:hover::before {
    opacity: 0.8;
    transition: all 0.2s;
}

#category > li:hover .list_text > span > p {
    color: #003471;
    z-index: 2;
}

/*--------------------------*/
/* 카테고리 텍스트 */

#category > li:first-child {
    position: relative;
}

.list_text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

.list_text > li {
    text-align: center;
}

/* 상품 상품명 */
.list_text > span > p {
    font: normal 30px/1.5 'Maitree';
    color: #fff;
    letter-spacing: -1.5px;
}

/*--------------------------*/





/******************** 브랜드 스토리 ********************/

#story_list {
    margin-top: 49px;
}

/***************** 브랜드 img *****************/

#story {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: auto;
    position: relative;
}

.s_story {
    font: normal 2.5rem/1.5 'Maitree';
    letter-spacing: -1px;
    text-align: center;
}

#story > li {
    display: block;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

#story > li:first-child {
    height: auto;
}

#story > li:first-child::after {
    content: "";
    display: block;
    padding-bottom: 100%;
    background-color: #000;
    opacity: 0.3;
}

#story > li a {
    display: block;
    width: 100%;
}

.brand_img {
    background: url(../img/story_banner.jpg) center no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 49px;
    width: 100%;
    height: 500px;
}

/*--------------------------*/
/* 브랜드 스토리 텍스트 */

.beauty {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    margin-top: 25px;
}

.beauty > li {
    text-align: center;
    color: #fff;
}

.beauty > li > p {
    font: 400 1.7rem/1.3 'Maitree';

}

.beauty > li:first-child {
    letter-spacing: -3px;
    padding: 0 20px;
    margin-bottom: 15px;
}

.beauty > li:nth-child(2) > p,
.beauty > li:nth-child(3) > p {
    font: 400 18px/1.5 '';
    letter-spacing: -1.5px;
}

.more {
    width: 150px;
    height: 45px;
    border: 1px solid #fff;
    cursor: pointer;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 30px;
}

.more p {
    font: normal 17px/45px '';
    text-align: center;
}

.more:hover {
    border: 1px solid #003471;
    background-color: #003471;
    transition: all 0.2s;
    color: #fff;
}

/* 브랜드 스토리 텍스트 */





/******************** 상품 리스트 ********************/

#product {
    display: grid;
    grid-template-columns: auto;
    margin-top: 100px;
    width: 100%;
    overflow: hidden;
}

#product > li {
    display: block;
    width: 100%;
}

#product > li > a:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#product > li a {
    display: block;
    width: 100%;
}

#product > li:first-child a {
    background: url(../img/re_nutriv.jpg) center no-repeat;
    background-size: cover;
}

#product > li:nth-child(2) a {
    background: url(../img/aerin.jpg) center no-repeat;
    background-size: cover;
}

/*--------------------------*/
/* 상품 리스트 텍스트 */

.l_text {
    float: left;
    text-align: left;
    width: 100%;
    overflow: hidden;
    margin: 10px 0 10px 0;
    position: relative;
}

.l_text > li {
    text-align: left;
    float: left;
}

/* 상품 상품명 */
.l_text > li:nth-child(1) {
    font: 400 30px/2 '';
}

/* 상품 판매가 */
.l_text > li:nth-child(2) {
    font: 400 18px/1.5 '';
}

/* more 버튼 */

.more_2 {
    width: 135px;
    height: 40px;
    border: 1px solid #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    cursor: pointer;
}

.more_2 p {
    font: normal 18px/40px '';
    text-align: center;
}

.more_2:hover {
    border: 1px solid #003471;
    background-color: #003471;
    transition: all 0.2s;
    color: #fff;
}

/* li:nth-child(2) 두번째 가리기 */

.l_text > li:nth-child(2),
.l_text > li:nth-child(3) {
    display: none;
}

/*--------------------------*/





/********************** 푸터 **********************/

footer {
    margin-top: 55px;
    padding: 20px;
    background-color: #f0ece6;
    height: 330px;
}

/* 푸터 상단 */

#footer_top {
    text-align: center;
    margin-bottom: 15px;
}

.f_list {
    margin: 0;
    display: flex;
    padding: 20px 0;
    grid-gap: 20px;
    font: normal 16px/1 '';
}

.f_list > li > a {
    color: #000;
    text-align: center;
}

.f_list > li > a:hover {
    color: #737373;
    transition: all 0.2s;
}

/* 푸터 하단 */

#footer_content {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px;
}



.footer_brand img {
    width: 200px;
}

.footer_brand p {
    margin: 20px 0;
    font: normal 14px/1.5 '';
    color: #737373;
    width: 270px;
}

.footer_brand p:last-child {
    margin-bottom: 0;
}

.icon {
    display: flex;
    justify-content: right;
    grid-gap: 15px;
}

.icon img {
    width: 30px;
}


/********************** 푸터 **********************/













/*ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ*/
/*ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ*/
/*카테고리 페이지*/


/*공통 설정*/




.page {
    width: 100%;
    height: 100%;
    margin: 0 auto
}

.page_title {
    display: grid;
    padding: 0;margin: 0;
}

.page_title > li {
    display: block;
}

.page_title > li > a > img {
    display: block;
    width: 100%;
    height: 100%;
}


/* 상품 설명 버전_1 */

.pro_text {
    float: left;
    text-align: left;
    width: 100%;
    overflow: hidden;
    margin: 10px 0 20px 0;
    position: relative;
    letter-spacing: -0.8px;
}

.pro_text > li {
    display: flex;
    flex-direction: column;
}

.pro_shade {
    width: 100%;
    margin: 0 auto;
}

.pro_shade > li {
    float: left;
    border: 1px solid #ddd;
    border-radius: 99px;
    width: 18px;
    height: 18px;
    margin: 0 4px;
}

/* 상품 상품명 */

.pro_text > li:nth-child(1) {
    font: 400 18px/1.2 '';
    margin-top: 15px;
}

.pro_text > li:nth-child(2) {
    font: 400 14px/1.3 '';
    margin-top: 10px;
    color: #aaa
}

/* 상품 판매가 */

.pro_text > li:nth-child(3) {
    font: 400 17px/1 '';
    margin-top: 15px;
}

/* 상품 설명 버전_2 */

.pro_text_2 {
    float: left;
    text-align: left;
    width: 100%;
    overflow: hidden;
    margin: 10px 0 20px 0;
    position: relative;
    letter-spacing: -0.8px;
}

.pro_text_2 > li {
    display: flex;
    flex-direction: column;
}

/* 상품 상품명 */

.pro_text_2 > li:nth-child(2) {
    font: 400 18px/1.3 '';
    margin-top: 15px;
}

.pro_text_2 > li:nth-child(3) {
    font: 400 14px/1.3 '';
    margin-top: 10px;
    color: #aaa
}

/* 상품 판매가 */

.pro_text_2 > li:nth-child(4) {
    font: 400 17px/1 '';
    margin-top: 15px;
}


.pro_shade > li {
    float: left;
}

.page_title > li:nth-child(2) {
    position: relative;
    width: 100%;
}

.pro_exp {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.pro_exp > li:nth-child(1) > p {
    font: bold 21px/1.5 '';
    letter-spacing: -1px;
}
.pro_exp > li:nth-child(2) > p {
    font: 400 20px/3 '';
    letter-spacing: -1px;
}
.pro_exp > li:nth-child(3) {
    width: 180px;
    height: 45px;
    border: 1px solid #ddd;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    transition: all 0.2s;
    cursor: pointer;
}

.pro_exp > li:nth-child(3):hover {
    background-color: #fff;
    border: 1px solid #fff;
    
    
}
.pro_exp > li:nth-child(3) > span > p {
    font: 400 18px/45px '';
    color: #444;
}


/*카테고리 상품*/

.category_p {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-gap: 15px;
    margin-top: 45px;
    grid-template-columns: repeat(2, 1fr);
}

.category_p > li > a {
    display: block;
    width: 100%;
    background-size: cover;
    position: relative;
}

.category_p > li > a::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.category_p > li > a:hover {
    opacity: 0.8;
    transition: all 0.2s;
}


/* PERFUME_CATEGORY 페이지 개별 설정 */

/* PERFUME_CATEGORY 이미지 설정 */

#page_p1 > li:first-child a {
    background: url(../img/new_1.jpg) center;
    background-size: cover;
}
#page_p1 > li:nth-child(2) a {
    background: url(../img/new_2.jpg) center;
    background-size: cover;
}
#page_p1 > li:nth-child(3) a {
    background: url(../img/new_3.jpg) center;
    background-size: cover;
}
#page_p1 > li:nth-child(4) a {
    background: url(../img/new_4.jpg) center;
    background-size: cover;
}
#page_p1 > li:nth-child(5) a {
    background: url(../img/new_5.jpg) center;
    background-size: cover;
}
#page_p1 > li:nth-child(6) a {
    background: url(../img/new_6.jpg) center;
    background-size: cover;
}






/* BEST SELLER 페이지 개별 설정 */




.serum_shade > li {
    border: none;  
}

.foun_shade > li:first-child {
    margin-left: 0;
    background-color: #E2B06F;
}

.foun_shade > li:nth-child(2) {
    background-color: #CA9D6F;
}

.foun_shade > li:nth-child(3) {
    background-color: #E6BB98;
}

.foun_shade > li:nth-child(4) {
    background-color: #C88D4F;
}

.foun_shade > li:nth-child(5) {
    background-color: #C59C63;
}

.foun_shade > li:nth-child(6) {
    background-color: #FAC7A7;
}

.foun_shade > li:nth-child(7) {
    background-color: #C7A265;
}

.foun_shade > li:nth-child(8) {
    background-color: #D4B180;
}

.powder_shade > li:nth-child(1) {
    margin-left: 0;
    background-color: #FFCEA1
}

.powder_shade > li:nth-child(2) {
    background-color: #FFE7D3
}

.powder_shade > li:nth-child(3) {
    background-color: #F4D8BC
}

.powder_shade > li:nth-child(4) {
    background-color: #FFE0BF
}

.powder_shade > li:nth-child(5) {
    background-color: #EDC0A5
}

.powder_shade > li:nth-child(6) {
    background-color: #FFE3C1
}
.powder_shade > li:nth-child(7) {
    background-color: #FFE3BD
}

.pure_shade > li:nth-child(1) {
    margin-left: 0;
    background-color: #FDB1BC;
}
.pure_shade > li:nth-child(2) {
    background-color: #FB8B89;
}
.pure_shade > li:nth-child(3) {
    background-color: #F87F67;
}
.pure_shade > li:nth-child(4) {
    background-color: #CF5F53;
}


#page_p2 > li:first-child a {
    background: url(../img/best_1.jpg) center;
    background-size: cover;
}

#page_p2 > li:nth-child(2) a {
    background: url(../img/best_2.jpg) center;
    background-size: cover;
}

#page_p2 > li:nth-child(3) a {
    background: url(../img/best_3.jpg) center;
    background-size: cover;
}

#page_p2 > li:nth-child(4) a {
    background: url(../img/best_4.jpg) center;
    background-size: cover;
}

#page_p2 > li:nth-child(5) a {
    background: url(../img/best_5.jpg) center;
    background-size: cover;
}

#page_p2 > li:nth-child(6) a {
    background: url(../img/best_6.jpg) center;
    background-size: cover;
}




/* SKINCARE_CATEGORY 페이지 개별 설정 */

/* SKINCARE_CATEGORY 이미지 설정 */


#page_p3_1 > li:first-child a {
    background: url(../img/skincare_1.jpg) center;
    background-size: cover;
}

#page_p3_1 > li:nth-child(2) a {
    background: url(../img/skincare_2.jpg) center;
    background-size: cover;
}

#page_p3_1 > li:nth-child(3) a {
    background: url(../img/skincare_3.jpg) center;
    background-size: cover;
}

#page_p3_1 > li:nth-child(4) a {
    background: url(../img/skincare_4.jpg) center;
    background-size: cover;
}

#page_p3_1 > li:nth-child(5) a {
    background: url(../img/skincare_5.jpg) center;
    background-size: cover;
}

#page_p3_1 > li:nth-child(6) a {
    background: url(../img/skincare_6.jpg) center;
    background-size: cover;
}


/* MAKE-UP_CATEGORY 페이지 개별 설정 */

/* MAKE-UP_CATEGORY 이미지 설정 */


#page_p3_2 > li:nth-child(1) a {
    background: url(../img/makeup_1.jpg) center;
    background-size: cover;
}

#page_p3_2 > li:nth-child(2) a {
    background: url(../img/makeup_2.jpg) center;
    background-size: cover;
}

#page_p3_2 > li:nth-child(3) a {
    background: url(../img/makeup_3.jpg) center;
    background-size: cover;
}

#page_p3_2 > li:nth-child(4) a {
    background: url(../img/makeup_4.jpg) center;
    background-size: cover;
}

#page_p3_2 > li:nth-child(5) a {
    background: url(../img/makeup_5.jpg) center;
    background-size: cover;
}

#page_p3_2 > li:nth-child(6) a {
    background: url(../img/makeup_6.jpg) center;
    background-size: cover;
}

.crystal_shade > li:nth-child(1) {
    background-color: #D32642;
    margin-left: 0;
}

.crystal_shade > li:nth-child(2) {background-color: #AF0146;}
.crystal_shade > li:nth-child(3) {background-color: #E71C2F;}
.crystal_shade > li:nth-child(4) {background-color: #5C1C2C;}
.crystal_shade > li:nth-child(5) {background-color: #633734;}
.crystal_shade > li:nth-child(6) {background-color: #E0A094;}

.mascara_shade > li:first-child {background-color: #000;}

.lavender_shade > li:first-child {background-color: #D0C3D5;}

.conceal_shade > li:nth-child(1) {background-color: #E9C59D;}
.conceal_shade > li:nth-child(2) {background-color: #DDB393;}
.conceal_shade > li:nth-child(3) {background-color: #E9D0AC;}
.conceal_shade > li:nth-child(4) {background-color: #C3AB7C;}
.conceal_shade > li:nth-child(5) {background-color: #D7A479;}
.conceal_shade > li:nth-child(6) {background-color: #EBC3A3;}
.conceal_shade > li:nth-child(7) {background-color: #CBAF7E;}
.conceal_shade > li:nth-child(8) {background-color: #EEC8AB;}


/* PERFUME_CATEGORY 페이지 개별 설정 */

/* PERFUME_CATEGORY 이미지 설정 */

#page_p3_3 > li:first-child a {
    background: url(../img/perfume_1.jpg) center;
    background-size: cover;
}
#page_p3_3 > li:nth-child(2) a {
    background: url(../img/perfume_2.jpg) center;
    background-size: cover;
}
#page_p3_3 > li:nth-child(3) a {
    background: url(../img/perfume_3.jpg) center;
    background-size: cover;
}
#page_p3_3 > li:nth-child(4) a {
    background: url(../img/perfume_4.jpg) center;
    background-size: cover;
}
#page_p3_3 > li:nth-child(5) a {
    background: url(../img/perfume_5.jpg) center;
    background-size: cover;
}
#page_p3_3 > li:nth-child(6) a {
    background: url(../img/perfume_6.jpg) center;
    background-size: cover;
}

/* PERFUME_CATEGORY li:nth-child(2) 설정 */

.page_title > li:last-child > div > p {
    font: 400 18px/1.5 '';
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

 .page_title > li:last-child > div > p:first-child {
     margin-top: 80px;
     margin-bottom: 20px;
     font: bold 25px/1 'Maitree';
}

.page_title > li:last-child > div > p:last-child {
    width: 150px;
    height: 40px;
    font: 400 16px/40px '';
    border: 1px solid #ddd;
    text-align: center;
    cursor: pointer;
    margin-top: 50px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    transition: all 0.2s;
}

.page_title > li:last-child > div > p:last-child:hover {
    background-color: #003471;
    color: #fff;
}



/* AERIN_CATEGORY 페이지 개별 설정 */

/* 에어린 배너 */

#page_aerin {
    width: 100%;
    margin: 0 auto;
}

#page_aerin > div {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 0.02px;
}

#aerin_banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

#a_banner {
    width: 100%;
    position: relative;
    left: 0;
    z-index: -1;
}

#a_banner > li {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#a_banner > li > a {
    position: relative;
    width: 1920px;
    left: 50%;
    display: block;
    transform: translateX(-50%);
}

/* 배너 아래 글 전체 영역 */

#joy {
    width: 100%;
    margin: 0 auto;
}

#joy_explain {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* rose_joyful 부가설명 */

#joy_explain > p:nth-child(1) {
    font: 400 18px/1.5 '';
    color: #aaa;
    text-align: center;
    padding: 30px 20px 80px 20px;
    letter-spacing: -1px;
    text-align: center;
}

/* rose_joyful 제목 */

#joy_explain > p:nth-child(2) {
    font: 400 28px/1.5 'Maitree';
    text-align: center;
    padding: 0px 20px;
}

/* rose_joyful 부가설명 */

#joy_explain > p:nth-child(3) {
    padding: 80px 20px 30px 20px;
    font: 400 18px/1.5 '';
    color: #aaa;
    text-align: center;
}

/* joyful blossom 2fr 영역 */

.page_title_2 {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: auto;
    width: 100%;
    overflow: hidden
}

.page_title_2 > li {
    display: block;
    width: 100%;
}

.page_title_2 > li > a > img {
    display: block;
    width: 100%;
    height: 100%;
}

.page_title_2 > li a::after {
    content: "";
    display: block;
}

.page_title_2 > li a {
    display: block;
    width: 100%;
}

/* joyful blossom 2fr 영역 - 문자 */

.page_title_2 > li > p:nth-child(2) {
    margin-top: 15px;
    font: 400 18px/1.5 '';
}

.page_title_2 > li > p:nth-child(3) {
    width: 140px;
    height: 40px;
    border: 1px solid #ddd;
    margin-top: 15px;
    text-align: center;
    font: 400 16px/40px '';
    margin-bottom: 50px;
    transition: all 0.2s;
    cursor: pointer;
}

.page_title_2 > li > p:nth-child(3):hover {
    background-color: #003471;
    color: #fff;
    border: 1px solid #003471;
}





/* rose_joyful 리스트 */

#rose_list, #col_list {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(2,1fr);
}

#rose_list > li > a, #col_list > li > a {
    display: block;
    width: 100%;
    position: relative;
    background-size: cover;
}

#rose_list > li > a::after, #col_list > li > a::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#rose_list > li:nth-child(1) > a {
    background: url(../img/rose_1.jpg) center;
    background-size: cover;
}

#rose_list > li:nth-child(2) > a {
    background: url(../img/rose_2.jpg) center;
    background-size: cover;
}

#rose_list > li:nth-child(3) > a {
    background: url(../img/rose_3.jpg) center;
    background-size: cover;
}

#rose_list > li:nth-child(4) > a {
    background: url(../img/rose_4.jpg) center;
    background-size: cover;
}

#rose_list > li > a:hover, #col_list > li > a:hover{
    opacity: 0.8;
    transition: all 0.2s;
}


/* col_joyful 리스트 */

#col_list > li:nth-child(1) > a {
    background: url(../img/aerin_1.jpg) center;
    background-size: cover;
}

#col_list > li:nth-child(2) > a {
    background: url(../img/aerin_2.jpg) center;
    background-size: cover;
}

#col_list > li:nth-child(3) > a {
    background: url(../img/aerin_3.jpg) center;
    background-size: cover;
}

#col_list > li:nth-child(4) > a {
    background: url(../img/aerin_4.jpg) center;
    background-size: cover;
}






/* 로그인 페이지 개별 설정 */

/* 로그인 화면 글자 영역 */

.log_text_2 > li:first-child, .log_text_2 > li:nth-child(3) {
    display: none;
}

.log_text_2 > li:nth-child(2) {
    text-align: center;
    font: 400 25px/1 '';
    letter-spacing: -1px;
}

/*로그인 화면 입력 영역*/

.login_container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 400px;
    height: 390px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 50px 0 20px 0;
    display: block;
    text-align: center;
    z-index: -1;
}

.login_container > div {
    position: relative;
    left: 50%;
    transform: translateX(-50%)
}

.login_container > span {
    color: #555;
}



.login_container img {
    width: 50px;
    height: auto;
    margin: 10px 30px 15px 30px;
    cursor: pointer;
}

.login_container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login_container a {
    display: block;
    color: #aaa;
    font: normal 14px/1 '';
    text-align: center;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.2s;
}

.login_container a:last-child {
    margin-top: 20px;
}

.login_container a:hover {
    color: #003471;
}

.login_container button {
    width: 100%;
    padding: 10px;
    background-color: #003471;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}




.log_text {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: auto;
    width: 100%;
    overflow: hidden
}

.log_text > li {
    display: block;
    width: 100%;
}

.log_text > li > a > img {
    display: block;
    width: 100%;
    height: 100%;
}

.log_text > li a::after {
    content: "";
    display: block;
}

.log_text > li a {
    display: block;
    width: 100%;
}

.log_text_2 > li:nth-child(2) {
    font: 400 1.6rem/1.5 'Maitree';
}

/* 브랜드 페이지 설정 */

.productwrap {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin: 20px auto 20px auto;
    height: 100%;
}

.productwrap > div {
    margin: 0 auto;
}

/* 상단 *******************************/

.product_top {
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
    height: 765px;
}

#product_img_1 {
    background: url(../img/best_2.jpg) center no-repeat;
    background-size: cover; 
}

.product_img {
    width: 100%;
}

.product_img:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

/* 텍스트 */

#product_text {
    width: 100%;
    height: 100px;
}
#product_text > ul {
    margin: 20px 0 30px 0;
}
#product_text > ul > li:first-child {
    font: normal 1.5rem/1.5 '';
    
}
#product_text > ul > li:nth-child(2) {
    font: normal 1rem/1.5 '';
    color: #444;
}
#product_text > ul > li:last-child {
    font: normal 1.2rem/1.5 '';
    margin-top: 30px;
}


/* 옵션 창 */
#opt {
    width: 100%;
    float: left;
    padding: 20px 0;
}

#opt > p {
    float: left;
    font: 400 1em/30px '';
    padding-right: 20px;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

#opt > select {
    float: left;
    width: 30%;
    height: 30px;
    border: 1px solid #aaa;
    padding-left: 10px;
    font: 400 13px/1.2 '';
    
}

#buybtn {
    float: left;
    width: 100%;
    margin: 30px 0 20px 0;
    display: flex;
}

.counter_btn {
    width: 30px;
    height: 30px;
    background-color: #fff;
    font: normal 23px/30px '';
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.number_display {
    width: 80px;
    height: 30px;
    text-align: center;
    font: normal 20px/30px '';
    padding: 0 50px;
}








#buybtn > input {
    border: none;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    margin-right: 15px;
    font: 400 14px/30px '';
    cursor: pointer;
    transition: all 0.2s;
}

#buybtn > input:last-child {
    margin-right: 0;
}
#buybtn > input:hover {
    background-color: #003471;
    color: #fff;
}




/* 중간 */

#product_middle {
    width: 100%;
    border-bottom: 2px solid #aaa;
    box-sizing: border-box;
    margin-bottom: 50px;
}

#product_middle > ul {
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    margin: 50px auto 0 auto;
}

#product_middle > ul > li {
    width: 100%;
    height: 30px;
    cursor: pointer;
    text-align: center;
    float: left;
    display: block;
    
}

/* 하단 */
#product_bottom {
    max-width: 1200px;
}

#product_bottom > div {
    max-width: 1160px;
    margin: 0 auto;
}

#product_bottom > div > img {
    max-width: 100%;
}






/* 브랜드 스토리 페이지 *****************/

/* 브랜드 스토리 배너 */

#page_brand {
    width: 100%;
    margin: 0 auto;
}

#page_brand > div {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 0.02px;
}

#brand_banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

#b_banner {
    width: 100%;
    position: relative;
    left: 0;
    z-index: -1;
}

#b_banner > li {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#b_banner > li > a {
    width: 100%;
    height: 1313px;
    display: block;
    background: url(../img/brand_story_banner.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}




#page_brand_2 {
    width: 100%;
    margin: 0 auto;
}

#page_brand_2 > div {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 0.02px;
}

#brand_banner_2 {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

#b_banner_2 {
    width: 100%;
    position: relative;
    left: 0;
    z-index: -1;
}

#b_banner_2 > li {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#b_banner_2 > li > a {
    position: relative;
    width: 1130px;
    left: 50%;
    display: block;
    transform: translateX(-50%);
}

/* 배너 아래 글 전체 영역 */

#elca {
    width: 100%;
    margin: 0 auto;
}

#elca_explain {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* rose_joyful 제목 */

#elca_explain > p:nth-child(1) {
    font: 400 28px/1.5 '';
    color: #aaa;
    text-align: center;
    padding: 30px 20px 30px 20px;
    border-bottom: 1px solid #ddd;
    letter-spacing: -1px;
    text-align: center;
    box-sizing: border-box;
}

#elca_explain > p:nth-child(2) {
    font: 400 28px/1.5 'Maitree';
    text-align: center;
    padding: 30px 20px 30px 20px;

}

/* rose_joyful 부가설명 */

#elca_explain > p:nth-child(3) {
    padding: 20px 0 50px 0;
    font: 400 22px/1.5 'Maitree';
    text-align: center;
}

#elca_explain > p:nth-child(4) {
    padding: 20px 20px 50px 20px;
    font: 400 18px/1.3 '';
    text-align: left;
}

/* 브랜드 스토리_배너_2 */

#b_banner_2 > li:first-child > a {
    background-color: #000;
    position: relative;
}

#b_banner_2 > li:first-child > a > img {
    opacity: 0.5
}

#b_banner_2 > li:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font: bold 30px/1 '';
}

/* 브랜드 스토리_수치 */

#brand_num {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}

#elca_explain > div {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 0.02px;
}

.number {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px;
}

.number > li {
    text-align: center;
    padding: 20px 0;
}

.number > li > p:first-child {
    font: normal 30px/1.5 'Maitree';
    color: #003471;
}

.number > li > p:nth-child(2) {
    font: normal 16px/1.5 '';
    color: #444;
}

/* 지속가능성 */

#sustainable {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
#sustainable > div {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
#sustainable_1 {
    display: grid;
    grid-gap: 15px;
}

#sustainable_top > p:first-child {
    font: bold 30px/1.3 '';
    padding-bottom: 30px;
}

#sustainable_top > p:nth-child(2) {
    font: normal 16px/1.3 '';
    padding-bottom: 20px;
    color: #444;
}

.sus_list > li {
    display: grid;
}

.sus_list > li > img {
    width: 300px;
}

.sus_list > li > .exp > p:nth-child(1) {
    font: bold 20px/1 '';
    padding: 20px 0;
}

.sus_list > li > .exp > p:nth-child(2) {
    font: normal 16px/1.5 '';
    padding-bottom: 40px;
    color: #444;
    
}

/* 태블릿 설정: w744px 이상 */

@media all and (min-width:744px) {


    /* 베스트 상품 리스트 */

    #best_list, .category_p, #rose_list, #col_list {
        grid-template-columns: repeat(3, 1fr);
    }

    #best_list > li:last-child, #rose_list > li:last-child, #col_list > li:last-child {
        display: none;
    }

    /* 베스트 상품 리스트 */

    
    .pro_exp {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}



    /* 카테고리 리스트 */

    #category {
        display: grid;
        grid-template-columns: auto auto auto auto;
        width: 100%;
    }

    #category > li {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    #category > li::after {
        content: "";
        display: block;
        padding-bottom: 100%;
    }

    #category > li a {
        display: block;
        width: 100%;
    }

    #category > li:nth-child(1) {
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
        background: url(../img/category_serum.jpg) center no-repeat;
        background-size: cover;
    }

    #category > li:nth-child(2) {
        grid-column: 3 / span 1;
        grid-row: 1 / span 1;
        background: url(../img/category_treatment.jpg) center no-repeat;
        background-size: cover;
    }

    #category > li:nth-child(3) {
        grid-column: 4 / span 1;
        grid-row: 1 / span 1;
        background: url(../img/category_cushion.jpg) center no-repeat;
        background-size: cover;
    }

    #category > li:nth-child(4) {
        grid-column: 3 / span 1;
        grid-row: 2 / span 1;
        background: url(../img/category_gift.jpg) center no-repeat;
        background-size: cover;
    }

    #category > li:nth-child(5) {
        grid-column: 4 / span 1;
        grid-row: 2 / span 1;
        background: url(../img/category_foundation.jpg) center no-repeat;
        background-size: cover;
    }

    /* 카테고리 리스트 */

    
    
     /* 브랜드 스토리 리스트 */
    #story {
        grid-template-columns: 1fr 1fr;
    }

    .brand_img {
        height: auto;
    }

    #story > li:first-child::after {
        content: "";
        display: block;
        padding-bottom: 100%;
        background-color: #000;
        opacity: 0;
    }

    .brand_text {
        position: relative;
        box-sizing: border-box;
        overflow: hidden;
    }

    .beauty {
        transform: none;
        text-align: left;
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
    }

    .beauty > li {
        color: #333;
        text-align: left;
    }

    .beauty > li:first-child {
        padding-left: 0;
        font: 400 32px/1 '';
        letter-spacing: -1.5px;
    }

    .beauty > li:nth-child(2),
    .beauty > li:nth-child(3) {
        padding-left: 0;
        font: 400 20px/1.5 '';
        letter-spacing: -1.5px;
    }

    .more {
        position: static;
        transform: none;
        margin: 50px 0 0 0;
        border: 1px solid #000;
    }

    /* 브랜드 스토리 리스트 */




    /* 상품 리스트 */

    #product {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }

    #product > li {
        display: flex;
        flex-direction: row;
    }

    #product > li a {
        height: 400px;
        width: 50%;
        padding-bottom: 0;
    }

    .l_text {
        width: 50%;
        padding-left: 20px;
        position: static;
    }

    .l_text > li {
        float: none;
    }

    .l_text > li:nth-child(2) {
        display: block;
        color: #aaa;
        font: normal 18px/1.5 '';
    }

    .l_text > li:nth-child(3) {
        display: block;
    }

    .more_2 {
        display: none;
    }

    .l_subtext {
        padding-top: 40px;
    }

    .pro_title {
        color: #aaa;
        font: normal 1.2em/40px '';
    }

    .pro_con {
        color: #000;
        font: normal 1.2em/40px '';
    }

    .l_subtext > img {
        width: 120px;
        height: auto;
        float: left;
        padding-right: 15px;
    }

    /* 상품 리스트 */


    
    
    
    /* 푸터 */
    
    footer {
        height: 260px;
    }
    
    .footer_brand {
        display: grid;
        grid-gap: 0px;
        grid-template-columns: repeat(2, 1fr);
        width: 500px;
    }
    
    .footer_brand p {
        margin: 0;
        font: normal 14px/1.5 '';
        color: #737373;
        width: 300px;    
        margin-left: 20px;
    }
    
    
    /* 푸터 */
    
    
    /* 상품 영역 - SHADE 부분 */
    
    .pro_shade > li {
        float: left;
        border: 1px solid #ddd;
        border-radius: 99px;
        width: 20px;
        height: 20px;
        margin: 0 4px;
    }
    
    .serum_shade > li {
        border: none;  
    }
    
    /* 상품 설명 - 배너 부분 */
    
    .page_title {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0px;
    }
    
    .page_title > li:last-child > div {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .page_title > li:last-child > div > p {
        font: 400 18px/1.5 '';
        text-align: left;
        margin-left: 30px;
    }
    
     .page_title > li:last-child > div > p:first-child {
        font: bold 25px/1.5 'Maitree';
        text-align: left;
        margin-left: 30px;
         margin-top: 0;
    }
    
    /* 상품 설명 - 배너 부분 */
    
    .page_title > li:last-child > div > p:nth-child(2) {
        margin-top: 20px;
    }
    .page_title > li:last-child > div > p:last-child {
        position: relative;
        left: 75px;
    }
    
    /* 상품 설명 - 배너 부분 */
    
    
    
    .page_title_2 {
        display: grid;
        padding: 0;margin: 0;
        grid-gap: 15px;
        grid-template-columns: repeat(2,1fr);
    }
    
    /* 로그인 페이지 */

    .log_text {
        grid-template-columns: repeat(2,1fr);
        grid-gap: 15px;
    }
    
    .log_text_2 > li:nth-child(2) {
        display: none;
    }
    .log_text_2 > li:nth-child(1),.log_text_2 > li:nth-child(3) {
        display: block;
    }
    .log_text_2 > li > img {
        width: 100%;
    }
    .log_text_2 > li:last-child {
        font: 400 1.4em/1.4 '';
        margin-top: 40px;
    }
    
    .log_text_2 {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 20px;
    }
    
    #product_top {
        display: flex;
        justify-content: space-around;
        height: auto;
    }
    
    #product_top > div {
        width: 100%;
        margin-right: 15px;
    }
    #product_top > div:last-child {
        margin-right: 0
    }
    
    /* 브랜드 스토리 */
    
    .number {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        grid-gap: 15px;
    }
    #sustainable_1 {
        display: grid;
        grid-gap: 15px;
        grid-template-columns: auto auto;
    }
    #sustainable_bottom {
        padding-top: 110px;
    }
}

/* PC웹: w1024px 이상 */

@media all and (min-width:1024px) {
    
    
    /* 헤더 영역 */

    #header {
        width: 100%;
        height: 40px;
        position: relative;
        background-color: #fff;
        display: block;
        padding-top: 10px;
    }
    
    /* GNB 영역 */

    #gnb {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }

    #gnb > ul {
        width: 430px;
        float: right;
        position: relative;
    }

    #gnb > ul > li {
        float: left;
        padding: 0 12px;
        transition: all 0.2s;
    }
    
    #gnb > ul > li > a {
        font: 300 13px/1.5 '';
        color: #000;
    }
    
     #gnb > ul > li:nth-child(5) {
        padding-left: 0;
        padding-top: 3px;
    }
    
     #gnb > ul > li:nth-child(4) {
        padding-left: 0;
         padding-right: 0;
    }
    
    #gnb > ul > li > a:hover {
        color: #aaa;
    }
    
    #gnb > ul > li > a > img {
        width: 20px;
    }
    
    /* 검색창 영역 */
    
    .popup {
        display: none;
    }
    
    #ms_box {
        position: relative;
    }
    
    .pop > span {
        width: 400px;height: 40px;
        background-color: #fff;
        position: relative;
        left: -400px;
        top: 1px;
    }
    
    .search_pop {
        height: 25px;
        width: 150px;
        background-color: rgba(255, 255, 255, 0);
        border-radius: 0px;
        border-color: rgba(0, 255, 255, 0);
        border-bottom: 1px solid #000;
        box-shadow: none;
        padding-left: 0px;
        outline: inherit;
        font: 300 13px/1.5 '';
        padding: 0 0 3px 5px;
    }
    
    
    /* LNB 영역 */

    #lnb {
        display: none;
    }

    #pclnb {
        display: block;
        width: 100%;
        height: 100%;
        z-index: 10;
        position: sticky;
        top: 0;
        box-shadow: 0 5px 6px rgba(64, 64, 64, 0.1);
        background-color: #fff;
        opacity: 1;


    }

    #pclnb > div {
        max-width: 1200px;
        height: 45px;
        margin: 0 auto;
    }
    
    /* LNB 영역 - 로고 */

    #logo {
        float: left;
        width: 20%;
        height: 45px;
        position: relative;
        top: 0px;
        padding-left: 20px;
        box-sizing: border-box;
    }

    #logo a {
        display: block;
        width: 200px;
        height: 45px;
    }

    #logo img {
        display: block;
        float: left;
        margin: 0 auto;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 50%;
    }
    
    /* LNB 영역 - 메뉴 */

    .menu_button {
        display: none;
    }

    .menuwrap {
        width: 80%;
        height: 40px;
        float: right;
        position: relative;
    }

    .pcmenu {
        position: absolute;
        max-width: none;
        width: 100%;
        height: 45px;
        z-index: 10;
        box-shadow: 0 0 0 0;
        display: block;
        top: 0px;
    }

    .pcmenu > li {
        width: 16.666666%;
        height: 45px;
        float: left;
        border-bottom: none;
    }

    .pcmenu > li > a {
        height: 50px;
        display: block;
        background-color: rgba(255, 255, 255, 0);
        text-align: center;
        color: #000;
        font: 400 15px/45px '';
        position: relative;
        padding: 0px;
    }
    
    /* LNB 영역 - 메뉴 내 SUB */
    
    .submenu {
        background-color: #eee;
        position: relative;
        display: none;
        top: -5px;
    }
    
    .pcmenu > li:hover a {
        text-decoration: underline;
    }
    
    .pcmenu > li:hover .submenu {
        display: block;
        text-decoration: none;
    }
    
    .submenu > li {
        cursor: pointer;
        width: 100%;
        height: 40px;
        overflow: hidden;
        text-align: center;
        padding-left: 0;
        font: 200 12px/40px '';
        letter-spacing: 0;
        color: #000;
        transition: 0.2s all;
    }
    
    .submenu > li:hover {
        background-color: rgb(134,134,134);
        color: #fff;
    }
    
    .lnb_rightwrap {
        display: none;
    }
    
    
    
    
    /* MAIN_BANNER */
    
    #main_banner {
        width: 100%;
        margin: 0 auto;
        position: static;
    }
    
    #main_slide {
        width: 100%;
        height: 730px;
        overflow: hidden;
    }
    .slide > li > a > img {
        width: 100%;
        position: relative;
    }
    
    
    #best_seller {
        margin-top: 50px;
        width: 100%;
        overflow: hidden;
    }
    
    #slide_text1 {
        text-align: right;
        position: absolute;
        max-width: 1200px;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
        margin: 0 auto;
        z-index: 2;
        padding-right: 100px;
    }
    
    .slide_text p {
        font: 400 21px/1.5 '';
        margin: 30px auto -80px;
    }
    
    #slide_text1 > h4 {
        font: normal 3rem/1.3 'Maitree';
        color: #000;
    }
    
    /* BEST 영역 */

    #best_list, .category_p, #rose_list, #col_list {
        grid-template-columns: repeat(4, 1fr);
    }

    #best_list > li:last-child, #rose_list > li:last-child, #col_list > li:last-child {
        display: block;
    }
    
    /* category 영역 */
    
    .pro_shade > li {
        float: left;
        border: 1px solid #ddd;
        border-radius: 99px;
        width: 21px;
        height: 21px;
        margin: 0 4px;
    }
    .serum_shade > li {
        border: none;  
    }
    .page_title {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0px;
    }
    
    
    .pro_exp {
    position: absolute;
    top: 170px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
    
    
    #product_top {
        display: flex;
        justify-content: space-around;
    }

    #product_top > div {
        width: 100%;
        margin-right: 15px;
    }

    #product_top > div:last-child {
        margin-right: 0;
    }
    
    
    
    .sus_list > li {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    

    
    
    
    
}
