@charset 'UTF-8';
@import url('fonts.css');
@import url('reset.css');

/* 5. 헤더 */
#skip {
    /* 바로가기 메뉴(a)의 부모는
    좌표의 기준만 설계 */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}
#skip a {
    position: absolute;
    left: 0;
    top: -44px;
    display: block; /*생략 가능*/
    width: 100%;
    color: #333;
    background-color: #ede8db;
    line-height: 44px;
    text-align: center;
    transition-property: top;
    transition-duration: 0.3s;
}
#skip a:focus, #skip a:active {
    top: 0;
}
#marie-hd {
    position: relative;
    width: 100%;
    background-color: #f0ede5;
    z-index: 99;
    transition: 0.3s;
}
#marie-hd.fixed {
    position: fixed;
    animation: hd-ani 0.5s both;
}
@keyframes hd-ani {
    0% {transform: translateY(-100%);}
    100% {transform: translateY(0);}
}
#marie-hd > .wrapper {
    position: relative;
    height: 60px;
}
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 50px;
    font-size: 0;
    line-height: 0;
    background: url('../images/logo.png') center center / contain no-repeat;
    transform: translate(-50%, -50%);
}
.logo a {
    display: block;
    width: 100%;
    padding-top: 7.5%;
}

/* 햄버거 버튼 */
.m-gnb-btn {
    position: absolute;
    left: 10px;
    top: 9px;
    width: 40px;
    height: 40px;
}
.line {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
    overflow: hidden;
    text-indent: -9999em;
    transition: 0.3s;
}
.line1 {
    transform: translateY(-7px);
}
.line3 {
    transform: translateY(7px);
}
/* 햄버거버튼이 X버튼으로 변형 */
.m-gnb-close .line {
    background-color: #333;
}
.m-gnb-close .line1 {
    transform: rotate(-45deg);
}
.m-gnb-close .line2 {
    opacity: 0;
}
.m-gnb-close .line3 {
    transform: rotate(45deg);
}

/* 모달창과 GNB */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
    z-index: 100;
}
.marie-gnb-wrap {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: #ede8db ;
    overflow: auto;
    z-index: 101;
    transition: left 0.8s;
}
.m-gnb-close-wrap {
    height: 60px;
    border-bottom: 1px solid #ddd;
}
#marie-gnb > ol {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.depth1>a {
    /* 메인메뉴 */
    position: relative;
    display: block;
    padding: 0 20px;
    color: #777;
    font-size: 1.15em;
    font-weight: 500;
    line-height: 40px;
  }
  
  .depth1 > a:after {
    display: none;
  }
  


  .aboutUs >a:after{
        position: absolute;
        top: 15px;
        right: 25px;
        display: block;
        width: 8px;
        height: 8px;
        border: 2px solid #999;
        border-width: 0 2px 2px 0;
        content: '';
        transform: rotate(45deg);
  }
  .aboutUs.active > a:after {
    top: 17px;
    border-color: #333;
    transform: rotate(-135deg);
}
  
/* 서브메뉴 작동 구현 */
.depth1.active > a {
    color: #333;
}

.depth2 { /* 서브메뉴 */
    display: none;
    padding: 0 40px;
    font-weight: 400;
    line-height: 2.4;
}
.depth2 a {
    display: block;
    color: #777;
}
.depth2 a:hover {
    color: #333;
}
.hd-sns-wrap {
    padding: 20px;
}
.hd-sns-wrap h3 {
    margin-bottom: 0.5em;
    font-size: 1.6em;
    color: #777;
}
.hd-sns-wrap ul {
    height: 48px;
}
.hd-sns-wrap li {
    float: left;
    margin-right: 1em;
}
.hd-sns-wrap li a {
    display: block;
    width: 48px;
    border: 1px solid #454A56;
    border-radius: 50%;
    line-height: 48px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #454a56;
    color: #454A56;
    font-size: 1.65em;
}


.btn-sch {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 40px;
    height: 40px;
    border: 0;
    margin-top: -20px;
    /* background-color: transparent;
    background-image: url('../images/ico_sch.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px; */
    background: transparent url('../images/ico_sch.svg') center center / 20px no-repeat;
}
/* 6. 메인콘텐츠 */
/* 6.1 slick */
.main-pagination {
    height: 90px;
    padding: 24px 0;
    text-align: center;
    line-height: 0;
}
.main-pagination li {
    display: inline-block;
}
.main-pagination button {
    display: inline-block;
    position: relative;
    margin: 0 20px;
    font-size: 0;
    line-height: 0;
    height: 8px;
    width: 8px;
    background-color: #000;
    opacity: 0.2;
    transition: 0.3s;
    border-radius: 50%;
}
.main-pagination .slick-active button {
    opacity: 1;
}
.main-pagination button:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #000;
    opacity: 0;
}
.main-pagination .slick-active button:after {
    opacity: 1;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: 0.5s;
}
.main-controls {
    position: absolute;
    left: 0;
    top: calc((100vh - 180px) / 2);
    width: 100%;
}
.main-controls .slick-arrow {
    width: 24px;
    height: 24px;
    margin-top: -12px;
    border: 2px solid #fff;
    border-width: 0 0 2px 2px;
    text-indent: -9999em;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.main-controls .slick-arrow:hover {
    opacity: 0.8;
}
/* 이전버튼 < */
.main-controls .slick-prev {
    position: absolute;
    left: 10px;
    top: 0;
    transform: rotate(45deg);
}
/* 다음버튼 > */
.main-controls .slick-next {
    position: absolute;
    right: 10px;
    top: 0;
    transform: rotate(-135deg);
}

/* 7. 푸터 */
#marie-ft {
    padding-top: 40px;
}

/* 7.1 인스타그램 */
.ft-sns-container {
    text-align: center;
}
.sns-dl dt {
    position: absolute;
    left: -9999em;
}
.sns-url {
    margin: 0.6em 0;
    font-size: 1.5em;
    font-weight: 700;
    color: #000;
}
.ft-insta {
    margin: 40px 0 80px;
}
.insta-item {
    position: relative;
    float: left;
    width: 50%;
    padding-top: 50%;
    border-right: 1px solid #fff;
    color: #fff;
    font-size: 0.85em;
}
.insta-item:before, .insta-item:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    padding-top: 100%;
}
.insta-item:before { 
    /* multiple background image
    ,로 나열하고 앞에 나온 순서가 
    우선순위(위) */
    background-position: 90% 15px, center center;
    background-repeat: no-repeat;
    background-size: 32px, cover;
}
.insta-item1:before {background-image: url('../images/video-solid.svg'), url('../images/sns/sns1.jpg');}
.insta-item2:before {background-image: url('../images/video-solid.svg'), url('../images/sns/sns2.jpg');}
.insta-item3:before {background-image: url('../images/video-solid.svg'), url('../images/sns/sns3.jpg');}
.insta-item4:before {background-image: url('../images/video-solid.svg'), url('../images/sns/sns4.jpg');}
.insta-item5:before {background-image: url('../images/video-solid.svg'), url('../images/sns/sns5.jpg');}
.insta-item6:before {background-image: url('../images/video-solid.svg'), url('../images/sns/sns6.jpg');}
.insta-item:nth-of-type(6n) {
    border-right-width: 0;
}
.insta-item:nth-of-type(6n):before {
    padding-top: calc(100% - 1px);
}
.insta-item:after {
    background-color: #000;
    opacity: 0;
    transition: opacity 0.3s;
}
.insta-item:hover:after {
    opacity: 0.8;
}
.insta-item .table {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.insta-item .table-cell {
    padding-top: 25%;
    vertical-align: middle;
    opacity: 0;
    transition: 0.3s;
}
.insta-item:hover .table-cell {
    padding-top: 0;
    opacity: 1;
}
.insta-item-dl {
    padding: 0 10%;
}
.insta-item-dl dt {
    position: absolute;
    left: -9999em;
}
.insta-item-dl i {
    position: relative;
    top: 1px;
    margin-right: 3px;
    font-size: 1.2em;
}
.sns-good {
    display: inline-block;
    margin-right: 20px;
}
.sns-comment {
    display: inline-block;
}
.sns-txt {
    margin-top: 1.5em;
}

/* 7.2 커뮤니티 */
.ft-bbs-item {
    display: block;
    position: relative;
    height: 140px;
    padding: 24px 3% 0;
    border-bottom: 1px solid #ddd;
}

.ft-bbs-item.last {
    border-bottom: 0;
}


.bbs-dl dt {
    margin-bottom: 1em;
    color: #333;
    font-size: 0.85em;
}
.bbs-dl dd {
    height: 2.4em;
    padding-right: 80px;
    color: #000;
    font-size: 1.4em;
    line-height: 1.2;
}
.bbs-dl:after { /* 파랑 화살표 */
    position: absolute;
    right: 4.5%;
    top: calc(50% - 12px);
    width: 18px;
    height: 18px;
    border: 1px solid #333;
    border-width: 1px 1px 0 0;
    content: '';
    transform: rotate(45deg);
    transition: 0.5s;
}
.ft-bbs-item:hover .bbs-dl:after{
    width: 18px;
    height: 18px;
    border: 1px solid #ede8db;
    border-width: 1px 1px 0 0;
    content: '';
    transform: rotate(45deg);

}
/* 7.3 브랜드 정보 */
.ft-info-container {
    background-color: #f0ede5;
    color: #333;
}


.ft-info1-wrap {
    max-width: 1400px;
    margin: auto;
    padding: 80px 10px;
}
.ft-info1-wrap > div {
    /* float: left; */
    width: 100%;
}
.ft-company {
    padding: 0 20px;
}
.ft-company p {
    display: block;
    width: 80%;
    text-align: center;
    padding-top: 20px;
    margin: auto;
}

.ft-logo {
    display: block;
    width: 100%;
    height: 50px;
    font-size: 0;
    line-height: 0;
    background: url('../images/logo.png') center center / contain no-repeat;
    /* transform: translate(-100%,100%); */
}
.ft-logo a {
    display: block;
    width: 100%;
}
.ft-about {
    text-align: center;
    padding-top: 30px;
}
.ft-about h3 {
    font-size: 3em;
}
.ft-about ul {
    font-size: 1.2em;
    line-height: 1.8;
}
.ft-about ul li {
    margin: 3px 0;
}
.ft-about ul a {
    display: inline-block;
    border-bottom: 2px solid transparent;
}
.ft-about ul a:hover {
    border-bottom-color: #f00;
}
.ft-sns-brand {
    padding-top: 50px;

}

.ft-sns {
    margin-bottom: 1.5em;
    width: 100%;
}
.ft-sns h3 {
    display: none;
}
.ft-sns ul {
    height: 48px;
    text-align: center;

}
.ft-sns li {
    display: inline-block;
    margin-right: 1em;
}
.ft-sns li:nth-child(4){
    margin-right: 0;
}
.ft-sns li a {
    display: block;
    width: 48px;
    border-radius: 50%;
    line-height: 48px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #454A56;
    color: #454A56;
    font-size: 1.65em;
}
.ft-brand-inner {
    position: relative;
    width: 200px;
}
.ft-brand {
    width: 100%;
}
.ft-brand-inner{
    margin: auto;
}
.brand-label {
    display: block;
    padding: 0 1em;
    line-height: 40px;
    border: 1px solid #333;
    opacity: 0.8;
    border-radius: 5px;
}
.brand-label:after {
    /* 삼각형 보더 ▼ */
    content: '';
    float: right;
    display: block;
    margin-top: 13px;
    border: 5px solid transparent;
    border-bottom-color: #333;
}
.brand-item {
    position: absolute;
    left: 0;
    bottom: 44px;
    width: 100%;
    height: 0;
    border-radius: 5px;
    background-color: #888;
    line-height: 2;
    font-size: 0.85em;
    overflow: hidden;
    transition: 0.5s;
}
.brand-item.active {
    height: 150px;
    padding: 0.6em 0;
}
.brand-item a {
    display: block;
    padding-left: 2em;
    transition: 0.1s;
}
.brand-item a:hover {
    color: #fff;
}



.ft-info2-wrap {
    padding: 1em 0;
    font-size: 0.85em;
    text-align: center;
}
.ft-info2-wrap a {
    display: inline-block;
    padding: 0 0.8em 0 0.5em;
    border-right: 1px solid #999;
    line-height: 1;
}
.ft-info2-wrap .last {
    border-right-width: 0;
}
.ft-info2-wrap a strong {
    font-weight: 400;
    color: #f00;
}
.ft-info3-wrap { /*Copyright*/
    padding: 2em 1em;
    border-top: 1px solid #999;
    font-size: 0.85em;
    text-align: center;
    opacity: 0.7;
}
/* 위아래 링크 */
.btn-circle {
    display: none;
    position: fixed;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1em;
    color: #fff;
    line-height: 40px;
    text-align: center;
    background-color: rgba(0,0,0,0.75);
    transition: 0.3s;
}
.btn-circle:hover {
    line-height: 36px;
    background-color: rgba(0,0,0,1);
}
.btn-top {
    bottom: 90px;
}
.btn-end {
    bottom: 40px;
    transform: rotate(180deg);
}

/* 메인 */
.ani-top {
    opacity: 0;
    transform: translateY(150px);
    transition: 1s;
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
}
.delay02 {transition-delay: 0.2s;}
.delay04 {transition-delay: 0.4s;}
.delay06 {transition-delay: 0.6s;}
.delay08 {transition-delay: 0.8s;}
.delay10 {transition-delay: 1.0s;}