@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Roboto:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap');

/* font-family: "Noto Sans KR", sans-serif; */
/* font-family: "Roboto", sans-serif; */
/* font-family: "Frank Ruhl Libre", serif; */
:root{
    --font-size-h2:5rem;
    --font-size-h3:3rem;
    --font-size-h4:2rem;
    --font-size-h5:1.5rem;
    --font-size-h6:1.2rem;
  
    --font-color-main:#6a6869;
    --font-color-point1:#e70012;
    --font-color-point2:#ae9b73;
    --font-color-sub:#231816;
    
    --font-color1:#d8d8d8;
    --font-color2:#333333;
  }
/* 모바일 코딩 필수 공통영역 */
* {
 margin:0;
 padding:0;
 -webkit-text-size-adjust:none; }
html{font-size: 14px;}
body {
 color:#333;
 font-family: "Noto Sans KR", sans-serif;}
img, fieldset { border:0; vertical-align:top }
ul, ol, li, dl { list-style:none; }
h1, h2, h3, h4, h5, h6 {
 font-size:100%;
 font-weight:normal; }
hr { display:none; }
a { color:inherit; display: block; }
a, a:link {
 color:#333;
 text-decoration:none; }
a:visited { color:#333; }
a:hover, a:active {
 color:#333;
 text-decoration:none; }
em, i, address {
 font-style:normal;
 font-weight:normal; }
legend, caption {
 display:none;
 clear:both; }
input, textarea, select, button, table {
 font-size:inherit;
 font-family:inherit;
 line-height:inherit; }
section, nav, article, aside, hgroup, header, footer { display:block }
textarea, input {
 border-radius:1px;}
textarea { resize:none; }
label { cursor:pointer; }
table{border-collapse: collapse;}
.hidden,#skipNav{display: block; position: absolute; left:-1000%;top:0; width: 1px; height: 1px; overflow: hidden; color: #fff}


/* 전체 공통 */
#wrap{ width:100%; position: relative;  overflow:hidden;}
#content{ }
/* 헤더공통 */
#headerArea{
    width: 100%; 
    height: 65px; 
    /* background: rgba(255, 255, 255, .5); */
    position: fixed; left: 0; top: 0; 
    z-index: 100;}
#headerArea h1{}
#headerArea h1 a{
    width: 116px; height: 25px;
    overflow: hidden; 
    text-indent: -999px; 
    background: url(../images/common/lotte_Logox1v1.svg) no-repeat center;
    margin: 20px 0 0 20px;
}
@media screen and (-webkit-min-device-pixel-retio: 2){
    #headerArea h1 a{
        background: url(../images/common/lotte_Logox2v1.svg);
        background-size: 120px 25px;
    }
}

#headerArea .menu_ham {
    float: right;
    height: 50px;
    position: relative;
    border-radius: 5px;
    top: -40px;
    z-index:50 ;
    margin-right: 10px;
}
#headerArea .menu_ham span {
    width: 25px;
    height: 3px;
    background: rgba(174, 155, 115, 1);
    position: relative;
    text-indent: -9999px;
    display: block;
    margin: 26px 15px;
    border-radius: 5px;
    transition: all .3s;
}
#headerArea .menu_ham span::before {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background: rgba(174, 155, 115, 1);
    position: absolute;
    top: -7px;
    left: 0;
    border-radius: 5px;
    transition: all .3s;
}
#headerArea .menu_ham span::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background: rgba(174, 155, 115, 1);
    position: absolute;
    top: 7px;
    left: 0;
    border-radius: 5px;
    transition: all .3s;
}
/* 메뉴가 열렸을때 */
#headerArea.mn_open .menu_ham span, #headerArea.mn_open .menu_ham span::before, #headerArea.mn_open .menu_ham span::after {
    background: #fff;
}
#headerArea.mn_open .menu_ham span {
    background: rgba(0,0,0,0);
}
#headerArea.mn_open .menu_ham span::before {
    transform: rotate(45deg);
    top: 0;
}
#headerArea.mn_open .menu_ham span::after {
    transform: rotate(-45deg);
    top: 0;
}
#headerArea.mn_open .menu_ham span::before,
#headerArea.mn_open .menu_ham span::after{
    background: var(--font-color-point2);
}


/* nav 영역*/
#gnb{
    position: absolute; width: 100%;  
    right:-100%; top:0; opacity: 0; 
    background: #fff;
}
#gnb>img {
    margin: 20px 0 0 20px;
    width: 116px;
    height: 25px;
}
#gnb .mainMenu{
    margin-top: 50px;
}
#gnb li{
    position: relative;
}
#gnb li h3{
    font-size: 1.36rem;
    font-weight: 600;
}
#gnb li h3 a span{
    font-size: 2rem;
}
#gnb li a{
    display: block; 
    padding: 15px 30px;
}
#gnb li a span{
    display: block; 
    position: absolute; right: 35px;top: 15px;
}
#gnb li ul{
    background:rgba(174, 155, 115, .4);
    display: none;
    border-radius: 10px;
}
#gnb li ul li{
    margin-left: 20px;
    font-size: 1.24rem;
}
#gnb li ul li a{
    color: var(--font-color-main);
}
#gnb .last{border-bottom:1px solid #FFF}
#gnb .gnb_login{
    display: flex; gap: 40px;
    color: var(--font-color-main);
    position: relative;
    margin-top: 30px;
    margin-left: 14px;
    font-size: 1.24rem;
}
#gnb .gnb_login a{
    color: var(--font-color-main);
    padding: 20px 10px 20px 20px;
}
#gnb .gnb_login::after{
    content: '';
    display: block;
    width: 1px;
    height: 15px;
    position: absolute;
    left: 103px;
    top: 26px;
    background: var(--font-color-main);
}
#headerArea #gnb .sns{
    margin-left: 27px;
}
#headerArea #gnb .sns a{
    display: inline;
}
#headerArea #gnb .sns img{
    width: 52px;
    height: 52px;
    padding-right: 10px;
    
}
#headerArea .total_search_box{
    margin-top: 30px;
    margin-left: 32px;
   
}
#headerArea .total_search_box label{
    font-size: 1.15rem;
    font-weight: 700;
    
}
#headerArea #total_title{
    padding: 5px;
    border-radius: 20px;
    border: 2px solid var(--font-color-point2);
    font-size: 16px; transform: scale(.9);
    width: 50%;
}
#headerArea #total_btn{
    width: 35px; height: 35px;
    border-style: none;
    color: var(--font-color-point2);
    border-radius: 50%;
    
}
#total_btn .fa-magnifying-glass{
    padding-bottom: 4px;
    padding-right: 2px;
}

/* 푸터공통 */
.top_move {
    width: 50px;
    height: 50px;
    background: var(--font-color-point1);
    
    font-size: 1.1rem;
    border-radius: 50%;
    font-weight: 600;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, .3);
    position: fixed;
    right: 10px;
    bottom: 100px;
    z-index: 90;
    display: none;
    transition: color, background .5s ease-out;
    text-align: center;
    
}
.top_move span{
    display: block;
    margin-top: 13px;
    color: #fff;
}
#footerArea {
    background: var(--font-color-sub);
    padding-bottom: 20px;

}
#footerArea,
#footerArea a:link,
#footerArea a:visited,
#footerArea a:hover,
#footerArea a:active {
  color: var(--font-color1);
}
#footerArea .footer_logo{
    width: 125px; height: 26px;
    padding: 20px 0 10px 20px;
}
#footerArea address{
   padding-left: 20px;
   font-size: 0.9rem;
}
#footerArea .copy{
    padding-left: 20px;
    font-size: 0.9rem;
}

#footerArea>ul:nth-of-type(1){
    display: flex; gap: 20px;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}
#footerArea>ul:nth-of-type(1)::after{
    content: ''; width: 1px; height: 12px; display: block; background: #fff;
   position: absolute; left:92px; top:4px;
} 
#footerArea div:first-of-type{
    font-size: 1.15rem;
    position: relative;
    margin-top: 20px;
    padding-left: 20px;
}
#footerArea div:first-of-type p{
    display: flex; justify-content: left; gap: 20px;
    font-weight: 700;
}
#footerArea div:first-of-type p::after{
    content: ''; width: 1px; height: 14px; display: block; background: #fff;
   position: absolute;left:140px; top:6px;
}
#footerArea div:first-of-type p>a{
    font-size: 1.2rem;
}
#footerArea .bottom_menu{
    display: flex; justify-content: left; flex-wrap: wrap;
    font-weight: 500;
    padding-left: 20px;
    
}
#footerArea .bottom_menu a{
    font-size: 1rem;
    position: relative;
}
#footerArea .bottom_menu>a::after{
    content: ''; width: 2px; height: 2px; display: block; background: #fff;
    position: absolute; left:103px; top:10px; border-radius: 50%;
}
#footerArea .bottom_menu{
    display: flex; gap: 0 10px; flex-wrap: wrap;
    position: relative;
}
#footerArea .bottom_menu li:first-child::after{
    content: ''; width: 2px; height: 2px; display: block; background: #fff;
   position: absolute; left:76px; top:10px; border-radius: 50%;
}
#footerArea .bottom_menu li:first-child::before{
    content: ''; width: 2px; height: 2px; display: block; background: #fff;
   position: absolute; left:189px; top:10px; border-radius: 50%;
}

#footerArea .family{
    position:relative;  left: 50%; transform: translateX(-50%);
    margin-top: 10px;
    font-weight: 700;
    width: 92%;
    
}
  #footerArea .family .arrow{ 
    display:block;
    transition: all .2s;
    padding: 8px 0;
    font-size: 1.25rem;
    text-align: center;
    background: var(--font-color1);
    border-radius: 10px;
    color: var(--font-color-sub);
}
#footerArea .family .arrow span{
  color: var(--font-color-sub);
  position: absolute;    right: 33px; top: 9px;
}

#footerArea .family .aList{ 
    position:absolute; top:-180px; left:50%; transform: translateX(-50%);  
    display:none;
    background: var(--font-color-sub);
    text-align: center;
    padding: 0 10px;
    width: 90%;
    border-radius: 10px;
}
#footerArea .family .aList li a{
    display:block;text-align: center; padding: 7px 0; transition: all .1s ease-in-out;
    color: var(--font-color1);
    border-bottom: 1px solid #fff;
}






