@charset "utf-8";
/* font */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300..700&family=Mukta:wght@200;300;400;500;600;700;800&display=swap');
.mukta-extralight {
    font-family: "Mukta", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .mukta-light {
    font-family: "Mukta", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .mukta-regular {
    font-family: "Mukta", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .mukta-medium {
    font-family: "Mukta", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .mukta-semibold {
    font-family: "Mukta", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  

  a{ color : inherit; text-decoration: none !important; }
  
/* 색 설정 */
:root {
    --main-color: #A8C2BD;
    --black-color : #161616;
    --bg-color : #F5F5F2;
    --dark-green: #6E7F7A;
}

/* 스크롤 커스텀 */
html::-webkit-scrollbar {width: 8px;}
html::-webkit-scrollbar-thumb {background-color: var(--main-color); border-radius: 10px;}

/* 드래그 블록 커스텀 */
::selection { background-color:var(--main-color); color:#fff; }

.sec_top{ padding-top: 100px; }

@media screen and (max-width: 650px) { 
    .sec_top{ padding-top: 70px; }
}

/* default */
*{
    font-size: 16px;
    font-weight: 300;
    font-family: 'Mukta', sans-serif;
    color : inherit;
    box-sizing: border-box;
    letter-spacing: 0.04em;
    line-height: 140%;
}

body{ background-color: var(--bg-color); font-family: 'Mukta', sans-serif; font-weight:300; font-size: 16px; letter-spacing: 0.04em; position: relative; }
section{ display:block; }
a{ color:inherit; }
html.popup-open,
body.popup-open{ height: 100vh; overflow: hidden; height: 100vh;}
.inner{ width:1200px; margin:0 auto; }

.paging_box{ margin-top: 30px; width: 100%; padding:10px 0; display:flex; align-items: center; justify-content: center; }
.paging_box .pg_current{ background-color: #A5BEB9; border: 1px solid #A5BEB9; }
.paging_box .pg_page{ background-color: #fff; }

select{
    -webkit-appearance: none; -moz-appearance: none;  appearance: none;
    background: url('../img/common/select-icon.png') no-repeat 98% 50% #fff; 
}
select::-ms-expand{ display:none; }
p{ word-break: keep-all; }

/*###################### header ######################*/
header{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(245, 245, 242, 0.10);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    transition: background-color 0.3s ease;
}
header .menu ul{
    display : flex;
    align-items: center;
    gap: 40px;
}
header .menu ul li{
    color: var(--bg-color);
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    padding: 5px 20px;
}
header .menu ul li.contact-btn{
    border-radius: 30px;
    background: #A8C2BD;    
}
header .menu ul li.contact-btn.ko-en-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(245, 245, 242, 0.10);
}
header.subpage .menu ul li.contact-btn.ko-en-btn{
    background-color: rgba(0, 0, 0, 0.25);
    color: #fff;
}
header.on .menu ul li.contact-btn.ko-en-btn{
    background-color: rgba(130, 130, 130, 0.25);
    color: #7f7f7f !important;
}
header.on .menu ul li.contact-btn.ko-en-btn a{ color: #7f7f7f; }
/* header 스크롤 시 */
header.on{
    background-color: rgba(245, 245, 242, 0.52);
}
header.on .menu ul li{
    color: var(--black-color) !important;
}
header.on .menu ul li.contact-btn a{ color: #fff; }
/* 모바일 메뉴 열렸을 때 */
header.active {
    background-color: var(--bg-color);
}
/* 모바일 메뉴 버튼 */
.mobile-menu-btn{
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
    position: relative;
}
.mobile-menu-btn span{
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--bg-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}
header.on .mobile-menu-btn span{
    background-color: var(--black-color);
}
header.subpage .mobile-menu-btn span{
    background-color: var(--black-color);
}
.mobile-menu-btn span:nth-child(1){
    top: 0;
}
.mobile-menu-btn span:nth-child(2){
    top: 50%;
    transform: translateY(-50%);
}
.mobile-menu-btn span:nth-child(3){
    top: 100%;
}
.mobile-menu-btn.active span:nth-child(1){
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    background-color: var(--black-color);
}
.mobile-menu-btn.active span:nth-child(2){
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3){
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
    background-color: var(--black-color);
}
/* subpage header*/
header.subpage{
    border-bottom: 1px solid rgba(165, 190, 185, 0.40);
    background: var(--bg-color);
}
header.subpage .menu ul li{
    color: var(--black-color) !important;
}
header.subpage .menu ul li a{ color: inherit; }
header.subpage .menu ul li.contact-btn{
    color: var(--bg-color) !important;
}

/*###################### footer ######################*/
footer{
    background: #2E2E2E;
    padding: 50px 0;
}
footer .inner .content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 120px;
}
footer .inner > *{
    color: #E6EBE7;
    line-height: 150%;
}
footer .inner .content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
footer .inner .contnet > div {
    flex: 1;
}
footer .inner .content .logo{
    width: 200px;
}
footer .inner .content .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
footer .inner .content .menu{
    flex: 1.5;
}
footer .inner .content .menu li{
    margin-bottom: 15px;
}
footer .inner .content .menu a{ color: inherit; display: flex; align-items: center; gap: 10px; }
footer .inner .content .contact{
    flex: 1.5;
}
footer .inner .content .contact span{
    font-size: 18px;
    line-height: 150%;
    text-transform: capitalize;
}
footer .inner .content .contact div{
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid #A8C2BD;
    margin: 15px 0;
    text-align: center;
}
footer .inner .content{
    border-bottom: 1px solid #a8c2bd80;
}
footer .copyright{
    font-size: 15px;
}
footer .copyright .mobile-dash{ display: inline-block; width: 25px;  }
/*###################### main page ######################*/
/* section1 */
.sec1{
    position: relative;
    width: 100%;
    height: 100vh;
}
.sec1 .inner .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 10;
}
.sec1 .inner .text h1{
    text-align: center;
    color: #FFF;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
}
.sec1 .inner .text h3{
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}
.sec1 .img-slide{
    position: relative;
    width: 100%;
    height: 100vh;
}
.sec1 .img-slide::before{
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(168, 194, 189, 0.30);
}
.sec1 .img-slide .slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sec1 .img-slide .slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec1 .slide-btn {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sec1 .slide-btn span{
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #D8D6CF;
    border-radius: 50%;
    opacity: 0.5;
}
.sec1 .slide-btn span.active{
    height: 38px;
    opacity: 1;
    border-radius: 20px;
}
/* section2 */
.sec2{
    margin: 100px 0;
}
.sec2 .inner{
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.sec2 .inner .text span{
    color: #A8C2BD;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.sec2 .inner .text h1{
    font-family: Mukta;
    font-size: 62px;
    font-weight: 400;
    line-height: 120%;
    /* text-transform: capitalize; */
}
.sec2 .inner .text h1 b{
    color: #8FA7A1;
    font-size: 62px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* text-transform: capitalize; */
}
.sec2 .inner .text .t1{
    margin-top: 70px;
    position: relative;
}
.sec2 .inner .text .t1::before{
    content: ' ';
    height: 1px;
    width: 78px;
    background: #A8C2BD;
    position: absolute;
    top: 15px;
    left: 0;
}
.sec2 .inner .text .t1,
.sec2 .inner .text .t2{
    color: #7F7F7F;
    font-size: 18px;
    line-height: 180%; 
    padding-left: 102px;
}
.sec2 .inner .text .t2{ margin-top: 30px; }
/* section3 */
.sec3{
    margin: 100px 0;
}
.title{
    margin-bottom: 50px;
    text-align: center;
}
.title h3{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
}
.sec3 .title{
    border-bottom: 1px solid #a8c2bd87;
    padding-bottom: 30px;
    text-align: start;
}
.sec3 .inner .lists{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.sec3 .inner .lists .list{
    width: 23%;
    display: block;
    position: relative;
}
.sec3 .inner .lists .list .image{
    width: 100%;
    height: 340px;
    position: relative; 
    overflow: hidden;
    background-size: cover; background-repeat: no-repeat; background-position: center;
}
.sec3 .inner .lists .list .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec3 .inner .lists .list .text{
    margin-top: 20px;
}
.sec3 .inner .lists .list .text h4{
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.sec3 .inner .lists .list .text p{
    color: #808080;
    font-size: 16px;
    line-height: normal;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sec3 .inner .lists .list.more{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E6EBE8;
    height: 340px;
}
.sec3 .inner .lists .list.more h4{
    color: var(--dark-green);
    font-size: 24px;
}
/* section4 */
.sec4{
    margin: 100px 0;
}
.sec4 .inner .title{
    margin-bottom: 50px;
}
.sec4 .inner .title h3{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
}
.sec4 .inner .cards{
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.sec4 .inner .cards .card{
    /* flex: 1; */
    width: calc(100% / 3);
}
.sec4 .inner .cards .card .image{
    width: 100%;
    height: 216px;
    margin-bottom: 15px;
    background-size: cover; background-repeat: no-repeat; background-position: center;
}
.sec4 .inner .cards .card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec4 .inner .cards .card .info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #A5BEB9;
}
.sec4 .inner .cards .card .info span{
    color: #808080;
    font-size: 20px;
    line-height: normal;
    text-transform: capitalize;
}
.sec4 .inner .cards .card .info span:nth-child(2){
    font-size: 16px;
}
.sec4 .inner .cards .card .text h4{
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}
.sec4 .inner .cards .card .text p{
    font-size: 16px;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sec4 .inner .btn-wrap{
    text-align: center;
    margin-top: 50px;
}
.sec4 .inner .btn-wrap .link-btn{
    display: inline-blockx;
    padding: 8px 20px;
    border-radius: 4px;
    background: #8FA7A1;
    color: var(--bg-color);
}
/* section5 */
.sec5{
    margin: 100px 0;
}
.sec5 .accordion-wrap .accordion{
    border-bottom: 1px solid #A8C2BD;
}
.sec5 .accordion-wrap .accordion:first-child{
    border-top: 1px solid #A8C2BD;
}
.sec5 .accordion-wrap .accordion .accordion-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    padding: 0 30px;
}
.sec5 .accordion-wrap .accordion .accordion-title .num{
    color: #D8D6CF;
    font-family: Mukta;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.sec5 .accordion-wrap .accordion .accordion-title .accordion-title-text{
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
}
.sec5 .accordion-wrap .accordion .accordion-title .accordion-btn {
    position: relative;
    width: 25px;
    height: 25px;
}
.sec5 .accordion-wrap .accordion .accordion-title .accordion-btn span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: #A8C2BD;
}
.sec5 .accordion-wrap .accordion.active{
    background: #E6EBE7;
    border-bottom: none;
}
.sec5 .accordion-wrap .accordion .accordion-title .accordion-btn span:nth-child(1){
    transform: translate(-50%, -50%) rotate(90deg);
}
.sec5 .accordion-wrap .accordion.active .accordion-title .num{
    color: #6E7F7A;
}
.sec5 .accordion-wrap .accordion.active .accordion-title .accordion-title-text{
    font-weight: 500;
}
.sec5 .accordion-wrap .accordion.active .accordion-title .accordion-btn span{
    background: #6E7F7A;
}
.sec5 .accordion-wrap .accordion.active .accordion-title .accordion-btn span:nth-child(1){
    opacity: 0;
}
.sec5 .accordion-wrap .accordion .accordion-desc{
    display: none;
    padding: 30px;
    font-size: 16px;
    line-height: normal;
}
/* section6 */
.sec6{
    margin: 100px 0;
}
.sec6 .inner .title{
    text-align: start;
}
.sec6 .inner .title p{
    margin-top: 12px;
    font-size: 20px;
    line-height: 150%;
}
.sec6 .inner .content{
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.sec6 .inner .content .left{
    flex: 1;
    border-radius: 5px;
    background: rgba(165, 190, 185, 0.10);
    padding: 30px;
    height: 100%;
}
.sec6 .inner .content .left .image{
    width: 100%; position: relative;
}
.sec6 .inner .content .left .image .collection-label{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #A5BEB9;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
}
.sec6 .inner .content .left .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec6 .inner .content .left .text{
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #A8C2BD;
}
.sec6 .inner .content .left .text h4{
    font-family: Pretendard;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.sec6 .inner .content .left .text .content{ font-size: 18px; font-family: Pretendard; margin-bottom: 5px; }
.sec6 .inner .content .left .text ul li{
    font-family: Pretendard;
    font-size: 18px;
}
.sec6 .inner .content .left .text ul li i{
    color: #8FA7A1;
    display: inline-block;
    margin-right: 10px;
}
.sec6 .inner .content .left .info{
    margin-top: 20px;
}
.sec6 .inner .content .left .info div{
    font-family: Pretendard;
    font-size: 18px;
}
.sec6 .inner .content .left .info div i{
    color: #8FA7A1;
    display: inline-block;
    margin-right: 10px;
}
.sec6 .inner .content .right{
    flex: 1;
}
.sec6 .inner .content .right .field{
    margin-bottom: 20px;
}
.sec6 .inner .content .right .field .field-title{
    font-family: Pretendard;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.sec6 .inner .content .right .field input{
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: 1px solid #A5BEB9;
    padding: 0 10px;
}
.sec6 .inner .content .right .field select{     width: 100%;
    height: 40px;
    background-color: transparent;
    border: 1px solid #A5BEB9;
    padding: 0 10px;}
.sec6 .inner .content .right .field input::placeholder{
    color: #777;
}
.sec6 .inner .content .right .field input:focus,
.sec6 .inner .content .right .field textarea:focus{
   border:1px solid #6E7F7A !important;
   box-shadow: 0 0 3px #6E7F7A !important;
   outline: none;
   resize: none;
}
.sec6 .inner .content .right .fields{
    display: flex;
    gap: 24px;
}
.sec6 .inner .content .right .fields .field{
    flex: 1;
}
.sec6 .inner .content .right .field .dropdown{
    position: relative;
}
.sec6 .inner .content .right .field .dropdown i{
    position: absolute;
    right: 10px;
    top: 6px;
    transition: 0.1s;
}
.sec6 .inner .content .right .field .dropdown.active i{
    transform: rotate(180deg);
}
.sec6 .inner .content .right .field .dropdown-box{
    display: none;
    border-right: 1px solid #A5BEB9;
    border-left: 1px solid #A5BEB9;
    background-color: #fff;
}
.sec6 .inner .content .right .field .dropdown-box li{
    padding: 10px;
    border-bottom: 1px solid #A5BEB9;
}
.sec6 .inner .content .right .field textarea{
    width: 100%;
    border:1px solid #A5BEB9;
    height: 100px;
    background-color: transparent;
    outline: none;
    resize: none;
}
.sec6 .inner .content .right .agreement input{
    display: none;
}
.sec6 .inner .content .right .agreement label{
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
}
.sec6 .inner .content .right .agreement label em{
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #A5BEB9;
    position: relative;
    margin-right: 10px;
    transform: translateY(4px);
}
.sec6 .inner .content .right .agreement label em i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: var(--bg-color);
}
.sec6 .inner .content .right .agreement.active label em{
    background-color: var(--dark-green);
}
.sec6 .inner .content .right .agreement-email input{
    display: none;
}
.sec6 .inner .content .right .agreement-email label{
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
}
.sec6 .inner .content .right .agreement-email label em{
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #A5BEB9;
    position: relative;
    margin-right: 10px;
    transform: translateY(4px);
}
.sec6 .inner .content .right .agreement-email label em i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: var(--bg-color);
}
.sec6 .inner .content .right .agreement-email.active label em{
    background-color: var(--dark-green);
}
.sec6 .inner .content .right .submit-btn-box{
    text-align: center;
    margin-top: 50px;
}
.sec6 .inner .content .right .submit-btn-box .submit-btn{
    padding: 10px 30px;
    border: none;
    color: var(--bg-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 38px;
    background: #A8C2BD;
    box-shadow: 0 4px 13px 0 rgba(168, 194, 189, 0.35);
}
/*###################### about page ######################*/
/* section1 */
.about-sec1{
    padding-top: 200px;
    margin: 0px 0 100px 0;
}
.about-sec1 .inner h1,
.about-sec1 .inner .content .text h3{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
}
.about-sec1 .inner .content{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.about-sec1 .inner .content .text{
    flex: 1;
}
.about-sec1 .inner .content .text h2{
    color: var(--dark-green);
    text-align: start;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 500;
    text-transform: capitalize;
}
.about-sec1 .inner .content .text .t1{
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0;
    line-height: 180%;
}
.about-sec1 .inner .content .text .t2{
    width: 90%;
    font-size: 18px;
    line-height: 180%;
}
.about-sec1 .inner .content .image{
    flex: 1;
}
.about-sec1 .inner .content .image img{
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 0 0 0;
}
.about-sec1 .inner .content2{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}
.about-sec1 .inner .content2 .image{
    width: 408px;
}
.about-sec1 .inner .content2 .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-sec1 .inner .content2 .text h2{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 500;
}
.about-sec1 .inner .content2 .text .t1{
    color: #2E2E2E;
    font-size: 18px;
    margin: 15px 0 35px 30px;
    
}
.about-sec1 .inner .content2 .text .t2{
    font-size: 18px;
    margin: 30px 0px 30px 30px;
    color: #2E2E2E;
}
/* section2*/
.about-sec2{
    margin: 100px 0;
}
.about-sec2 .inner h2{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
}
.about-sec2 .inner .cards{
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.about-sec2 .inner .cards .card{
    flex: 1;
    border: 1px solid var(--dark-green);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 284px;
}
.about-sec2 .inner .cards .card h4{
    text-align: center;
    color: #8FA7A1;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.about-sec2 .inner .cards .card .text{
    text-align: center;
    font-size: 20px;
}
/* section3*/
.about-sec3{
    margin: 100px 0;
    text-align: center;
}
.about-sec3 .inner h2{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
}
.about-sec3 .inner .image{
    margin: 20px 0;
    width: 996px;
    height: 610px;
    margin: 20px auto;
}
.about-sec3 .inner .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-sec3 .inner .text .t1{
    font-size: 18px;
    line-height: 180%;
    width: 70%;
    margin: 0 auto;
}
/* section4*/
.about-sec4{
    padding: 50px 0;
    background: rgba(192, 223, 217, 0.20);
}
.about-sec4 .inner h2{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}
.about-sec4 .inner .cards{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.about-sec4 .inner .cards .card{
    width: 49%;
    background: #F5F5F2;
    padding: 30px;
}
.about-sec4 .inner .cards .card h4{
    color: #6E7F7A;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    border-bottom: 1px solid var(--dark-green);
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.about-sec4 .inner .cards .card p{
    font-size: 20px;
    line-height: 180%;
}
.about-sec4 .inner .btn-wrap{
    text-align: center;
    margin-top: 50px;
}
.about-sec4 .inner .btn-wrap a{
    font-size: 18px;
    border-bottom: 1px solid #A8C2BD;
    padding: 0 20px 10px 20px;
}
/* section5*/
.about-sec5{
    padding: 50px 0;
    text-align: center;
    background-color: #E6E4DE;
}
.about-sec5 .inner h4{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 4px;
}
/*###################### business page ######################*/
/* section1 */
.business-sec1{
    padding-top: 200px;
    margin: 0px 0 100px 0;
}
.business-sec1 .inner .title{
    text-align: start;
}
.business-sec1 .inner h2{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.business-sec1 .inner .content{
    display: flex;
    justify-content: space-between;
    gap: 102px;
}
.business-sec1 .inner .title{
    flex: 1;
}
.business-sec1 .inner .title p{
    font-size: 20px;
    line-height: 180%;
}
.business-sec1 .inner .tabs{
    flex: 1;
}
.business-sec1 .inner .tabs .tab{
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #A5BEB9;
    text-align: center;
    font-size: 18px;
}
.business-sec1 .inner .tabs .tab:nth-child(1){
    border-top: 1px solid #A5BEB9;
}
.business-sec1 .inner .tabs .tab.active{
    background-color: #A8C2BD;
    color: #F5F5F2;
}
.business-sec2{
    margin: 100px 0;
}
.business-sec2 .business-tab-detail{
    display: none;
}
.business-sec2 .business-tab-detail .detail-wrap{
    display: flex;
    justify-content: space-between;
    gap: 102px;
}
.business-sec2 .business-tab-detail.active{
    display: block;
}
.business-sec2 .business-tab-detail .image{
    flex: 1;
}
.business-sec2 .business-tab-detail .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business-sec2 .business-tab-detail .text{
    flex: 1;
    border-top: 1px solid #A5BEB9;
    padding-top: 30px;
}
.business-sec2 .business-tab-detail .text h2{
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.business-sec2 .business-tab-detail .text p{
    font-size: 18px;
    line-height: 180%;
    text-transform: capitalize;
}
/*###################### product page ######################*/
/* section1 */
.product-sec1{
    padding-top: 200px;
    margin: 0px 0 100px 0
}
.product-sec1 .inner .text h1{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 400;
}
.product-sec1 .inner .text p{
    font-size: 20px;
    line-height: 180%;
}
.product-sec1 .inner .content{
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}
.product-sec1 .inner .content .lists{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}
.product-sec1 .inner .content .lists .list{
    display: block;
    width: 18.65%;
    position: relative;
}
.product-sec1 .inner .content .lists .list .image{
    width: 100%;
    position: relative;
    transition: 0.3s;
    height: 274px;
    background-size: cover; background-repeat: no-repeat; background-position: center;
}
.product-sec1 .inner .lists .list .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-sec1 .inner .content .lists .list .text{
    font-size: 18px;
    line-height: normal;
    /* text-transform: capitalize; */
    text-align: center;
    margin-top: 20px;
    /* white-space: nowrap;       */
    /* overflow: hidden;        */
    /* text-overflow: ellipsis;    */
}



.product-sec1 .lists .list .hover-image{
    position: absolute;
    text-align: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(7.5px);
    opacity: 0;
}
.product-sec1 .lists .list .image .hover-image > img{
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.product-sec1 .lists .list .hover-image p{
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-top: 10px;
    word-break: keep-all;
}
/* .product-sec1 .lists .list:hover .image::Before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.30);
} */
.product-sec1 .lists .list:hover .hover-image{
    opacity: 1;
}
/*###################### new page ######################*/
/* section1 */
.new-sec1{
    padding-top: 200px;
    margin: 0 0 100px 0;
}
.new-sec1 .inner .text h1{
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 400;
    text-transform: capitalize;
}
.new-sec1 .inner .text p{
    font-size: 20px;
    line-height: 180%;
}
.new-sec1 .inner .menu{
    display: flex;
    gap: 10px;
    margin: 30px 0 50px 0;
}
.new-sec1 .inner .menu a{
    cursor: pointer;
    font-size: 16px;
    border-radius: 50px;
    border: 1px solid #A8C2BD;
    padding: 6px 38px;
    color: #A8C2BD;
    background: transparent;
}
.new-sec1 .inner .menu a.active{
    background: #A8C2BD; 
    color: var(--bg-color);
}
.new-sec1 .inner .content{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}
.new-sec1 .inner .content .card{
    display: inline-block;
    width: 384px;
    margin-bottom: 24px;
}
.new-sec1 .inner .content .card .info{
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}
.new-sec1 .inner .content .card .image{
    width: 100%;
    height: 216px;
    background-size: cover; background-repeat: no-repeat; background-position: center;
}
.new-sec1 .inner .content .card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-sec1 .inner .content .card .info {
    border-bottom: 1px solid #A8C2BD;
    margin-bottom: 15px;
    padding-bottom: 4px;
}
.new-sec1 .inner .content .card .info span{
    color: #808080;
    font-size: 20px;
}
.new-sec1 .inner .content .card .info span:last-child{
    font-size: 16px;
}
.new-sec1 .inner .content .card .text h4{
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 4px;
}
.new-sec1 .inner .content .card .text p{
    font-size: 16px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*###################### product detail page ######################*/
/* section1 */
.product-detail-sec1.boardArti{
    padding-top: 120px;
    /* margin: 0px 0 100px 0 */
}
.product-detail-sec1.boardArti .inner{ max-width: 1000px; }

.product-detail-sec1 .inner .content h2{
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.product-detail-sec1 .inner .content .info{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 10px;
}
.product-detail-sec1 .inner .content .info .image{
    flex: 5; background-size: cover; background-repeat: no-repeat; background-position: center;
    height: 488px;
}
.product-detail-sec1 .inner .content .info .text .designers .designer-profile{ width: 138px;} 
.product-detail-sec1 .inner .content .info .text .designers .image{ height: 134px; background-size: cover; background-repeat: no-repeat; background-position: center; }
.product-detail-sec1 .inner .content .info .text{
    flex: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-detail-sec1 .inner .content .info .text p{
    font-size: 18px;
    line-height: 180%;
}
.product-detail-sec1 .inner .content .info .text .designers{
    border-top: 1px solid #D8D6CF;
    padding-top: 30px;
    display: flex;
    gap: 24px;
}
.product-detail-sec1 .inner .content .info .text .designer-profile .image{
    flex: 0 0 118px;
    margin-bottom: 4px;
}
.product-detail-sec1 .inner .content .info .text .designer-profile .name{
    flex: 1;
}
.product-detail-sec1 .inner .content .info .text .designer-profile .name span{
    color: #808080;
    font-size: 14px;
    text-transform: capitalize;
}
.product-detail-sec1 .inner .content .info .text .designer-profile .name p{
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}
/* section2 */
.product-detail-sec2{
    /* margin-top: 100px; */
    background: rgba(220, 230, 227, 0.60);
    padding: 50px 0 100px 0;
}
.product-detail-sec2 .inner h3{
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}
.product-detail-sec2 .inner .collection{
    margin-bottom: 100px;
}
.product-detail-sec2 .inner .lists{
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}
.product-detail-sec2 .inner .lists span{ 
    display: -webkit-box;        /* flexbox가 아니라 웹킷 박스 사용 */
    -webkit-box-orient: vertical; /* 세로 방향으로 박스 정렬 */
    -webkit-line-clamp: 2;       /* 2줄까지만 보여주고 그 이후는 ... */
    overflow: hidden;            /* 넘친 텍스트 숨기기 */
    text-overflow: ellipsis;     /* 말줄임 표시 */
}
.product-detail-sec2 .inner .lists .list{
    max-width: 264px;
    width: 100%;
}

@media screen and (max-width: 1250px) { 
    .product-detail-sec2 .inner .lists .list{ max-width: calc((100% / 4) - 24px); }
}
@media screen and (max-width: 950px) { 

}
@media screen and (max-width: 650px) { 

}

.product-detail-sec2 .inner .lists .list .image{
    width: 100%;
    height: 256px;
    background-size: contain; background-repeat: no-repeat; background-position: center;
}
.product-detail-sec2 .inner .lists .list .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-detail-sec2 .inner .curated .lists .list p{
    font-family: Pretendard;
    font-size: 20px;
    line-height: normal;
    text-transform: capitalize;
    margin-top: 25px;
    text-align: center;
}
.product-detail-sec2 .inner .btn-wrap{
    text-align: center;
    margin-top: 50px;
}
.product-detail-sec2 .inner .btn-wrap a{
    display: inline-block;
    border-radius: 38px;
    background: #A8C2BD;
    box-shadow: 0 4px 13px 0 rgba(168, 194, 189, 0.35);
    color: var(--bg-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 8px 30px;
    line-height: normal;
    height: auto;
}
/* ###################### product detail2 page ###################### */
/* section1 */
.product-detail2 h2{
    color: var(--dark-green);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 50px;
}
.product-detail2 .inner .content .info .image{
    margin-bottom: 24px;
}
.product-detail-sec1 .inner .content .info .text{
    justify-content: flex-start;
}
.product-detail2 .inner .content .info .text h2{
    color: var(--black-color);
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}  
.product-detail2 .inner .content .info .text .t1{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #D8D6CF;
}
.product-detail2 .inner .content .info .text .t2 span{
    display: block;
    font-size: 18px;
    font-weight: 300;
    line-height: 180%;
    text-transform: capitalize;
}
.product-detail-sec2.product-detail2 .inner .curated .lists .list p{
    text-align: start;
    margin-bottom: 4px;
    white-space: nowrap;        /* 텍스트를 한 줄로 유지 */
    overflow: hidden;           /* 넘치는 텍스트 숨기기 */
    text-overflow: ellipsis;    /* 넘친 부분에 ... 표시 */
}
.product-detail2 .product-detail-sec2 span{
    color: #808080;    font-family: Mukta;
    font-size: 16px;
    line-height: normal;  
}
/*###################### new detail page ######################*/
/* section1 */
.new-detail-sec1.boardArti{
    padding-top: 200px;
    margin: 0px 0 100px 0
}
.new-detail-sec1 .inner .content .title h1{
    font-size: 24px;
    font-weight: 400;
    text-transform: capitalize;
}
.new-detail-sec1 .inner .content .title div{
    margin-bottom: 20px;
}
.new-detail-sec1 .inner .content .title div span{
    margin-right: 10px;
    color: #808080;
    font-size: 20px;
    text-transform: capitalize;
  
}
.new-detail-sec1 .inner .content .slide-box{
    position: relative;
}
.new-detail-sec1 .inner .content .slide-box img{ width: 100%; }
.new-detail-sec1 .inner .content .swiper{
    width: 90%;
    overflow: hidden;
    margin-left: 5%;
}
.new-detail-sec1 .inner .content .swiper .swiper-wrapper{ align-items: center; }
.new-detail-sec1 .inner .content .swiper .image{ height: 430px; background-size: cover; background-repeat: no-repeat; background-position: center; }
.new-detail-sec1 .inner .content .swiper-btn-next,
.new-detail-sec1 .inner .content .swiper-btn-prev{
    position: absolute;
    top: 55%;
    transform: translateY(-55%);
    z-index: 8;
}
.new-detail-sec1 .inner .content .swiper-btn-next{
    right: 0px;
}
.new-detail-sec1 .inner .content .swiper-btn-prev{
    left: 0px;
}
.new-detail-sec1 .inner .content .swiper-btn-next i,
.new-detail-sec1 .inner .content .swiper-btn-prev i{
    font-size: 32px;
    color: #6E7F7A;
}
.new-detail-sec1 .inner .content .swiper-btn-next.swiper-button-disabled i,
.new-detail-sec1 .inner .content .swiper-btn-prev.swiper-button-disabled i{
    font-size: 32px;
    color: #A5BEB9;
}
.new-detail-sec1 .inner .btn-box{
    text-align: center;
}
.new-detail-sec1 .inner .back-btn{
    display: inline-block;
    padding: 8px 30px;
    color: var(--bg-color);
    border-radius: 38px;
    background: #A8C2BD;
    box-shadow: 0 4px 13px 0 rgba(168, 194, 189, 0.35);
    margin-top: 50px;
}
.new-detail-sec1 .inner .content .text{
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #D8D6CF;
}
.new-detail-sec1 .inner .content .text p{
    font-size: 18px;
}
/*###################### buy page ######################*/
/* section1 */
.buy-sec1{
    width: 100%;
    height: 100vh;
    background: url('../img/buy-sec1-img1.jpg') no-repeat center center/ cover;
}
.buy-sec1 .inner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.buy-sec1 .inner .text h1{
    color: var(--bg-color);
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}
.buy-sec1 .inner .text p{
    color: var(--bg-color);
    text-align: center;    font-family: Mukta;
    font-size: 24px;
}
/* section2 */
.buy-sec2{
    margin: 100px 0;
}
.buy-sec2 .inner .list{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid #A5BEB9;
    padding: 100px 0;
    
}
.buy-sec2 .inner .list > div{
    flex: 1;
}
.buy-sec2 .inner .list .text h2{
    font-size: 32px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.buy-sec2 .inner .list .text p{
    color: #808080;
    font-size: 18px;
}
.buy-sec2 .inner .list .info div{
    margin-top: 10px;
}
.buy-sec2 .inner .list .info div .t1{
    font-size: 18px;
    font-weight: 400;
}
.buy-sec2 .inner .list .image{
    height: 400px; background-size: cover; background-repeat: no-repeat; background-position: center;
}
.buy-sec2 .inner .list .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.buy-sec2 .inner .list .image iframe{ width: 100% !important; height: 100% !important; }
/*###################### contact page ######################*/
/* section1 */
.sec6.contact{
    padding-top: 200px;
   margin: 0px 0 100px 0;
}
/*######################접수 submit 버튼 클릭 popup ######################*/
.submit-popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
}
.submit-popup.active{
    display: block;
}
.submit-popup .popup-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 532px;
    border-radius: 10px;
    background: #F5F5F2;
    box-shadow: 10px 20px 15px 0 rgba(0, 0, 0, 0.15);
}
.submit-popup .popup-box h1{
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    border-radius: 10px 10px 0 0;
    background: #6E7F7A;
    color: var(--bg-color);
    font-weight: 700;
    font-size: 20px;
    padding: 20px 0;
}
.submit-popup .popup-box .text p{
    color: var(--dark-green);
    text-align: center;
    width: 90%;
    margin: 0 auto;
    font-family: "Pretendard", sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 30px 0;
}
.submit-popup .popup-box .text p b{
    font-weight: 700;
}
.submit-popup .popup-box .btn-wrap{
    text-align: center;
}
.submit-popup .popup-box .btn-wrap .confirm-btn{
    padding: 12px 140px;
    font-weight: 400;
    background: var(--dark-green);
    border: none;
    color: var(--bg-color);
    border-radius: 10px;
    margin-bottom: 30px;
}
/*###################### agreement popup ######################*/
.agreement-popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}
.agreement-popup.active{
    display: flex;
}
.agreement-popup .popup-box{
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    width: 80%;
    height: 80vh;
    border-radius: 10px;
    background: #F5F5F2;
    box-shadow: 10px 20px 15px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}
.agreement-popup .popup-box .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #6E7F7A;
}
.agreement-popup .popup-box .title h1{
    color: var(--bg-color);
    font-family: 'pretendard';
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}
.agreement-popup .popup-box .title button{
    background: none;
    border: none;
    cursor: pointer;
}
.agreement-popup .popup-box .title button i{
    font-size: 24px;
    color: var(--bg-color);
}
.agreement-popup .popup-box .text{
    margin: 50px;
    overflow-y: scroll;
    flex-grow: 1;
}
.agreement-popup .popup-box .text p{
    font-family: Pretendard;
    font-size: 18px;
    font-weight: 300;
    line-height: 180%; 
    overflow-y: scroll;
}
/*###################### login page ######################*/
.login{
    position: relative;
    height: 100vh;
    background: url('../img/login-img1.jpg') no-repeat center center / cover;
}
.login .image{
    position: fixed;
    left: 50%;
    top: 30px;
    width: 200px;
    transform: translateX(-50%);
}
.login .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.login .content{
    border-radius: 10px;
    background: #FFF;
    box-shadow: 10px 20px 15px 0 rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 620px;
    overflow: hidden;
}
.login .content .fields{
    padding: 50px;;
}
.login .content .fields .field{
    position: relative;
    margin-bottom: 20px;
}
.login .content .fields .field input{
    border-radius: 100px;
    background: #F8F8F8;
    border: none;
    width: 100%;
    height: 60px;
    padding: 0 50px;
}
.login .content .fields .field input::placeholder{
    color: #AFAFAF;
    font-family: 'pretendard';
}
.login .content .fields .field input:focus{
    outline: none;
    box-shadow: 0 0 3px #6E7F7A;
}
.login .content .fields .field img{
    position: absolute;
    top: 15px;
    left: 20px;
}
.login .content h1{
    color: #FFF;
    text-align: center;
    font-family: 'pretendard';
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    background-color: var(--dark-green);
    padding: 20px 0;
}
.login .content .btn-wrap{
    text-align: center;
}
.login .content .btn-wrap .login-btn{
    border-radius: 10px;
    height: 60px;
    background: #6E7F7A;
    width: 100%;
    color: var(--bg-color);
    font-family: 'pretendard';
    font-weight: 400;
    line-height: normal;
    border: none;
    cursor: pointer;
}
.login .content p{
    text-align: center;
    margin-top: 20px;
    color: #7F7F7F;
    text-align: center;
    font-family: 'pretendard';
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
.login .content p a{
    color: #4475D9;
}
/* size mobile */
@media screen and (max-width: 1200px) { 
    .inner{ 
        width: 100%;
        padding: 0 20px;
    }
    
    /* header */
    header{ 
        padding: 0 20px; 
    }
    header .menu ul{ 
        gap: 20px; 
    }
    header .menu ul li{ 
        padding: 5px 15px; 
        font-size: 14px; 
    }
    header.on .menu ul li.contact-btn.ko-en-btn{ margin-top: 10px; }
    footer .inner .content .logo{
        width: 180px;
    }
    footer .inner .content{
        gap: 40px;
    }
    footer .inner .content .menu,
    footer .inner .content .contact{
        flex: 1;
    }
    footer .inner .content .menu.sns-menu a .icon{ width: 20px;  }
    /* sec1 */
    .sec1 .inner .text h1{ 
        font-size: 26px; 
    }
    .sec1 .inner .text h3{ 
        font-size: 18px; 
    }
    /* sec2 - index */
    .sec2{ margin: 80px 0; }
    .sec2 .inner .text h1,
    .sec2 .inner .text h1 b{ font-size: 48px; }
    .sec2 .inner .text .t1,
    .sec2 .inner .text .t2{ font-size: 16px; padding-left: 90px; }
    .sec2 .inner .text .t1{ margin-top: 50px; }
    .sec2 .inner .text .t1::before{ width: 60px; }
    
    /* sec3 - index */
    .sec3{ margin: 80px 0; }

    .sec3 .inner .lists .list.more{ height: 250px; }
    
    /* sec4 - index */
    .sec4{ margin: 80px 0; }
    .sec4 .inner .cards .card{ width: calc(100%); }
    .sec4 .inner .cards .card .image{ height: 180px; }
    .sec4 .inner .cards .card .info span{ font-size: 18px; }
    .sec4 .inner .cards .card .text h4{ font-size: 16px; }
    
    /* sec5 - index */
    .sec5{ margin: 80px 0; }
    .sec5 .accordion-wrap .accordion .accordion-title{ height: 72px; padding: 0 20px; }
    .sec5 .accordion-wrap .accordion .accordion-title .accordion-title-text{ font-size: 18px; }
    
    /* sec6 - index (Wholesale Inquiry) */
    .sec6{ margin: 80px 0; padding: 40px 0; }
    .sec6 .inner .content{ flex-wrap: wrap; gap: 40px; }
    .sec6 .inner .content .left,
    .sec6 .inner .content .right{ min-width: 280px; }
    .sec6 .inner .content .left .text h4{ font-size: 18px; }
    .sec6 .inner .content .left .text .content .content{ font-size: 16px; }
    .sec6 .inner .content .left .text ul li,
    .sec6 .inner .content .left .info div{ font-size: 16px; }
    .sec6 .inner .content .right .fields{ gap: 16px; }
    /* about-sec1 */
    .about-sec1{ 
        padding-top: 180px;
        margin: 0px 0 100px 0;
    }
    .about-sec1 .inner h1, 
    .about-sec1 .inner .content .text h2{ 
        font-size: 28px; 
    }
    .about-sec1 .inner .content{ 
        margin-top: 40px; 
        gap: 20px; 
    }
    .about-sec1 .inner .content .image img{ 
        width: 100%; 
    }
    .about-sec1 .inner .content .text .t1, 
    .about-sec1 .inner .content .text .t2{ 
        font-size: 16px; 
    }
    .about-sec1 .inner .content2{ 
        margin-top: 80px; 
        gap: 48px;
    }
    .about-sec1 .inner .content2 .image{
        width: 320px;
    }
    .about-sec1 .inner .content2 .text h2{ 
        font-size: 28px; 
    }
    .about-sec1 .inner .content2 .text .t1, 
    .about-sec1 .inner .content2 .text .t2{ 
        font-size: 16px; 
    }
    
    /* about-sec2 */
    .about-sec2{ 
        margin: 80px 0; 
    }
    .about-sec2 .inner h2{ 
        font-size: 28px; 
    }
    .about-sec2 .inner .cards .card{
        height: 220px;
    }
    .about-sec2 .inner .cards .card h4{ 
        font-size: 24px; 
    }
    .about-sec2 .inner .cards .card .text{ 
        font-size: 18px; 
    }
    
    /* about-sec3 */
    .about-sec3{ 
        margin: 80px 0; 
    }
    .about-sec3 .inner h2{ 
        font-size: 28px; 
        margin-bottom: 30px;
    }
    .about-sec3 .inner .image{
        width: 80%;
        height: auto;
        object-fit: contain;
    }
    
    /* about-sec4 */
    .about-sec4 .inner h2{ 
        font-size: 28px; 
    }
    .about-sec4 .inner .cards{
        justify-content: center;
    }
    .about-sec4 .inner .cards .card{
        width: 48%;
        padding: 20px;
    }
    .about-sec4 .inner .image{ 
        width: 90%; 
        height: 500px; 
    }
    .about-sec4 .inner .text .t1{ 
        font-size: 16px; 
    }
    /* about-sec5 */
    .about-sec5 .inner h2{ 
        font-size: 28px; 
    }
    /* business-sec1, business-sec2 */
    .business-sec1{ 
        padding-top: 180px;
        margin: 0px 0 80px 0; 
    }
    .business-sec1 .inner h2{ 
        font-size: 28px; 
    }
    .business-sec1 .inner .content{ 
        gap: 40px; 
    }
    .business-sec1 .inner .title p{ 
        font-size: 18px; 
        line-height: 140%;
    }
    .business-sec1 .inner .tabs .tab{ 
        font-size: 16px; 
        padding: 8px; 
    }
    .business-sec2{ 
        margin: 80px 0; 
    }
    .business-sec2 .business-tab-detail .detail-wrap{ 
        gap: 40px; 
    }
    .business-sec2 .business-tab-detail .text h2{ 
        font-size: 18px; 
    }
    .business-sec2 .business-tab-detail .text p{ 
        font-size: 16px; 
    }
    
    /* product-sec1 */
    .product-sec1{ 
        padding-top: 180px;
        margin: 0px 0 80px 0; 
    }
    .product-sec1 .inner .text h1{ 
        font-size: 28px; 
    }
    .product-sec1 .inner .text p{ 
        font-size: 18px; 
    }
    .product-sec1 .inner .content{ 
        margin-top: 40px; 
    }
    .product-sec1 .inner .content .lists{ 
        gap: 32px; 
        /* width: 85%;  */
    }
    .product-sec1 .inner .content .lists .list{ width: 22.6%; }
    .product-sec1 .inner .content .lists .list .text{ 
        font-size: 18px; 
        margin-top: 16px; 
    }
    .product-sec1 .lists .list .image .hover-image > img{ 
        width: 70px; 
        height: 70px; 
    }
    .product-sec1 .lists .list .hover-image p{ 
        font-size: 18px; 
    }
    

    /* product-detail */
    .product-detail-sec1.boardArti{
        padding-top: 180px;
        /* margin: 0px 0 80px 0; */
    }
    
    .product-detail-sec1 .inner .content h2{
        font-size: 28px;
    }
    .product-detail-sec1 .inner .content .info .image{
        flex: 1;
        height: 47vw;
    }
    .product-detail-sec1 .inner .content .info .image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .product-detail-sec1 .inner .content .info .text{
        flex: 1;
    }
    .product-detail-sec1 .inner .content .info .text p{
        font-size: 16px;
        line-height: 170%;
    }
    .product-detail-sec2{
        /* margin-top: 80px; */
        padding: 40px 0 80px 0;
    }
    .product-detail-sec2 .inner h3{
        font-size: 24px;
        margin-bottom: 24px;
    }
    .product-detail-sec2 .inner .collection{
        margin-bottom: 80px;
    }
    .product-detail-sec2 .inner .lists{
        gap: 32px;
    }
    .product-detail-sec2 .inner .lists .list .image{
        height: 273px;
    }
    .product-detail-sec2 .inner .curated .lists .list p{
        font-size: 18px;
        margin-top: 20px;
    }
    .product-detail-sec2 .inner .btn-wrap{
        margin-top: 40px;
    }
    .product-detail-sec2 .inner .btn-wrap a{
        font-size: 18px;
        padding: 8px 24px;
    }
    .product-detail-sec1.product-detail2 .inner .content .info .images{
        flex: 1;
    }
    .product-detail2 h2{
        margin-bottom: 10px;
    }
    /* new-sec1 */
    .new-sec1{ 
        padding-top: 180px;
        margin: 0px 0 80px 0; 
    }
    .new-sec1 .inner .text h1{ 
        font-size: 28px; 
    }
    .new-sec1 .inner .text p{ 
        font-size: 18px; 
    }
    .new-sec1 .inner .menu{ 
        gap: 8px; 
    }
    .new-sec1 .inner .menu a{ 
        padding: 6px 30px; 
    }
    .new-sec1 .inner .content .card{ 
        width: 48%;
        margin-bottom: 30px; 
    }
    
    /* buy-sec1 */
    .buy-sec1 .inner .text h1{ 
        font-size: 28px; 
    }
    .buy-sec1 .inner .text p{ 
        font-size: 20px; 
    }
    
    /* buy-sec2 */
    .buy-sec2{ 
        margin: 80px 0; 
    }
    .buy-sec2 .inner .list .text h2{ 
        font-size: 28px; 
    }
    .buy-sec2 .inner .list .text p{ 
        font-size: 16px; 
    }
    .buy-sec2 .inner .list .image{ 
        height: 350px; 
        margin-top: 30px; 
    }
    
    
    /* new-detail-sec1 */
    .new-detail-sec1.boardArti{ 
        padding-top: 150px;
        margin: 0px 0 80px 0; 
    }
    .new-detail-sec1 .inner .content .title h1{ 
        font-size: 22px; 
    }
    .new-detail-sec1 .inner .content .title div span{ 
        font-size: 18px; 
    }
    .new-detail-sec1 .inner .content .text p{
        font-size: 16px;
    }
    /* contact-sec1 - 가로 정렬 유지, 높이 맞추기 */
    .sec6.contact{
        padding-top: 150px;
        margin: 0px 0 50px 0;
    }
    
    /* login */
    .login .image{
        width: 180px;
        top: 24px;
    }
    .login .content{
        width: 90%;
        max-width: 560px;
    }
    .login .content .fields{
        padding: 40px;
    }
    .login .content h1{
        font-size: 20px;
        padding: 18px 0;
    }
    .login .content .fields .field input{
        height: 54px;
    }
    .login .content .btn-wrap .login-btn{
        height: 54px;
    }
    
} /* tablet */

@media screen and (max-width: 960px) { 
    /* header - 햄버거 버튼 표시 */
    .mobile-menu-btn{ 
        display: flex; 
    }
    header .menu ul li {
        color: var(--black-color);
    }
    header.on{
        background-color: var(--bg-color);
    }
    header .menu{ 
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        border-top: 1px solid rgba(165, 190, 185, 0.40);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 99;
        padding: 0 20px;
    }
    header .menu.active{
        max-height: 500px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* 메뉴 열렸을 때 배경 오버레이 */
    body.menu-open::before{
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.7);
        z-index: 98;
        pointer-events: none;
    }
    header .menu ul{ 
        flex-direction: column; 
        gap: 0; 
        padding: 20px 0;
    }
    header .menu ul li{ 
        width: 100%; 
        padding: 15px 20px; 
        border-bottom: 1px solid rgba(165, 190, 185, 0.20);
        text-align: center;
    }
    header.subpage .menu ul li.contact-btn{ 
        display: inline-block;
        margin-top: 20px;
        width: 150px;
        text-align: center;
        border-radius: 30px;
        padding: 8px 0px;
    }
    
    /* footer */
    footer{
        padding: 20px 0;
    }
    footer .inner .content{ 
        flex-direction: column; 
        gap: 20px; 
        align-items: flex-start; 
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    footer .inner .content .logo{ 
        width: 150px; 
    }
    footer .inner .content .menu{ 
        flex: 1; 
        width: 100%;
        display: flex;
        gap: 30px;
    }
    footer .inner .content .menu ul{ 
        display: flex; 
        flex-wrap: wrap; 
        gap: 15px; 
    }
    footer .inner .content .menu li{ 
        margin-bottom: 0; 
    }
    footer .inner .content .contact{ 
        flex: 1; 
        width: 100%;
    }

    footer .inner .content .contact > div{ 
        display: inline-block; 
        margin-right: 10px; 
        margin-top: 0; 
    }
    footer .inner .content .contact span{
        margin-right: 20px;
    }
    
    /* sec1 */
    .sec1{ 
        height: 70vh; 
    }
    .sec1 .img-slide{ 
        height: 70vh; 
    }
    .sec1 .inner .text{ 
        top: 50%; 
        transform: translate(-50%, -50%); 
    }
    .sec1 .inner .text h1{ 
        font-size: 22px; 
    }
    .sec1 .inner .text h3{ 
        font-size: 16px; 
        line-height: 140%; 
    }
    
    /* sec2 - index: 세로 배치 */
    .sec2{ margin: 60px 0; }
    .sec2 .inner{ flex-direction: column; gap: 40px; }
    .sec2 .inner .text h1,
    .sec2 .inner .text h1 b{ font-size: 36px; }
    .sec2 .inner .text .t1{ margin-top: 30px; }
    .sec2 .inner .text .t1,
    .sec2 .inner .text .t2{ font-size: 15px; padding-left: 0; }
    .sec2 .inner .text .t1::before{ display: none; }
    .sec2 .inner .image{ width: 100%; }
    .sec2 .inner .image img{ width: 100%; height: auto; max-height: 400px; object-fit: cover; }
    
    /* sec3 - index: 2열 */
    .sec3{ margin: 60px 0; }
    .sec3 .inner .lists .list{ width: 48%; }
    .sec3 .inner .lists .list .image{ height: 240px; }
    .sec3 .inner .lists .list.more{ height: 240px; }
    /* .sec3 .inner .lists .list .text h4{ font-size: 20px; } */
    
    
    /* sec5 - index */
    .sec5{ margin: 60px 0; }
    .sec5 .accordion-wrap .accordion .accordion-title{ height: 68px; padding: 0 20px; }
    .sec5 .accordion-wrap .accordion .accordion-title .accordion-title-text{ font-size: 16px; }
    .sec5 .accordion-wrap .accordion .accordion-desc{ padding: 20px; font-size: 15px; }
    
    /* sec6 - index: 좌우 세로 배치 */
    .sec6{ margin: 60px 0; padding: 30px 0; }
    .sec6 .inner .content{ flex-direction: column; gap: 30px; }
    .sec6 .inner .content .left,
    .sec6 .inner .content .right{ min-width: auto; width: 100%; }
    .sec6 .inner .content .right .fields{ flex-direction: column; gap: 0; }
    
    /* about-sec1 */
    .about-sec1{ 
        padding-top: 150px;
        margin: 0px 0 50px 0;
    }
    .about-sec1 .inner h1, 
    .about-sec1 .inner .content .text h2{ 
        font-size: 24px; 
    }
    .about-sec1 .inner .content{ 
        flex-direction: column-reverse; 
        margin-top: 30px; 
    }
    .about-sec1 .inner .content .text .t1{
        margin: 10px 0;
    }
    .about-sec1 .inner .content .text .t1, 
    .about-sec1 .inner .content .text .t2{ 
        font-size: 15px; 
        line-height: 160%; 
    }
    .about-sec1 .inner .content2 .image{
        width:200px;
    }
    .about-sec1 .inner .content2 .text h2{ 
        font-size: 20px; 
    }
    .about-sec1 .inner .content2 .text .t1, 
    .about-sec1 .inner .content2 .text .t2{ 
        font-size: 15px; 
        line-height: 140%; 
    }
    .about-sec1 .inner .content2 .text .t1{ 
        margin: 10px 0; 
    }
    .about-sec1 .inner .content2 .text .t2{ 
        margin: 10px 0; 
    }
    
    /* about-sec2 */
    .about-sec2{ 
        margin: 50px 0; 
    }
    .about-sec2 .inner h2{ 
        font-size: 24px; 
        margin-bottom: 30px;
    }
    .about-sec2 .inner .cards{ 
        gap: 12px; 
    }
    .about-sec2 .inner .cards .card{
        padding: 0 10px;
        height: 180px;
    }
    .about-sec2 .inner .cards .card h4{ 
        font-size: 20px; 
        margin-bottom: 10px;
    }
    .about-sec2 .inner .cards .card .image{ 
        height: 250px; 
    }
    .about-sec2 .inner .cards .card .text{ 
        font-size: 15px; 
        line-height: 160%; 
    }
    
    /* about-sec3 */
    .about-sec3{ 
        margin: 50px 0;
    }
    .about-sec3 .inner h2{ 
        font-size: 24px; 
        margin-bottom: 25px; 
    }
    .about-sec3 .inner .text .t1{
        width: 80%;
    }
    /* about-sec4 */
    .about-sec4 .inner h2{ 
        font-size: 28px; 
    }
    .about-sec4 .inner .cards .card h4{ 
        font-size: 22px; 
        line-height: 160%; 
    }
    .about-sec4 .inner .cards .card p{
        font-size: 18px;
    }
    /* about-sec5 */
    .about-sec5{ 
        padding: 30px 0; 
    }
    .about-sec5 .inner h2{ 
        font-size: 24px; 
    }
    .about-sec4 .inner .cards .card h4{
        font-size: 22px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .about-sec4 .inner .cards .card p{
        font-size: 16px;
        line-height: 140%;
    }
    /* contact-sec1 - 세로 정렬 */
    .contact-sec1{ 
        padding-top: 150px;
        margin: 0px 0 50px 0;
    }
    /* business-sec1, business-sec2 - 세로 배치 */
    .business-sec1{ 
        padding-top: 120px;
        margin: 0px 0 60px 0; 
    }
    .business-sec1 .inner .content{ 
        flex-direction: column; 
        gap: 30px; 
    }
    .business-sec1 .inner .title p{ 
        font-size: 16px; 
        line-height: 170%; 
    }
    .business-sec1 .inner .tabs .tab{ 
        font-size: 15px; 
        padding: 12px; 
    }
    .business-sec2{ 
        margin: 60px 0; 
    }
    .business-sec2 .business-tab-detail .detail-wrap{ 
        gap: 24px; 
    }
    .business-sec2 .business-tab-detail .text h2{ 
        font-size: 18px; 
        margin-bottom: 12px; 
    }
    .business-sec2 .business-tab-detail .text p{ 
        font-size: 15px; 
    }
    
    /* product-sec1 - 3열 유지, lists 100% */
    .product-sec1{
        padding-top: 120px;
        margin: 0px 0 60px 0;
    }
    .product-sec1 .inner .content{
        justify-content: center;
        margin-top: 30px;
    }
    .product-sec1 .inner .content .lists{
        width: 100%;
        gap: 36px;
        justify-content: flex-start;
    }
    .product-sec1 .inner .content .lists .list{
        width: calc((100% - 72px) / 3);
    }
    .product-sec1 .inner .content .lists .list .text{ 
        font-size: 16px; 
        margin-top: 12px; 
    }
    .product-sec1 .lists .list .image .hover-image > img{ 
        width: 60px; 
        height: 60px; 
    }
    .product-sec1 .lists .list .hover-image p{ 
        font-size: 16px; 
    }
    
    /* product-detail */
    .product-detail-sec1.boardArti{ 
        padding-top: 140px;
        /* margin: 0px 0 70px 0;  */
    }
    .product-detail-sec1 .inner .content .info{
        gap: 20px;
    }
    .product-detail-sec1 .inner .content .info .text p{ 
        font-size: 15px; 
        line-height: 170%; 
    }
    .product-detail-sec1 .inner .content .info .text .designer-profile{ 
        padding-top: 20px; 
        gap: 16px; 
    }
    .product-detail-sec1 .inner .content .info .text .designer-profile .image{ 
        flex: 0 0 90px; 
    }

    .product-detail-sec2{ 
        /* margin-top: 70px;  */
        padding: 40px 0 70px 0; 
    }
    .product-detail-sec2 .inner h3{ 
        font-size: 22px; 
        margin-bottom: 20px; 
    }
    .product-detail-sec2 .inner .collection{ 
        margin-bottom: 60px; 
    }
    .product-detail-sec2 .inner .lists{ 
        flex-wrap: wrap; 
        gap: 24px; 
    }
    .product-detail-sec2 .inner .lists .list{ 
        flex: 1 1 calc((100% - 48px) / 3); 
        max-width: calc((100% - 48px) / 3); 
    }
    .product-detail-sec2 .inner .lists .list .image{ 
        height: 240px; 
    }
    .product-detail-sec2 .inner .curated .lists .list p{ 
        font-size: 18px; 
        margin-top: 16px; 
    }
    .product-detail-sec2 .inner .btn-wrap{ 
        margin-top: 40px; 
    }
    .product-detail-sec2 .inner .btn-wrap a{ 
        font-size: 18px; 
        padding: 8px 24px; 
    }
    /* product-detail2 */
    .product-detail-sec1.product-detail2 .inner .content .info{
        flex-direction: column-reverse;
    }
    .product-detail2 .inner .content .info .text h2{
        font-size: 28px;
    }
    /* buy-sec1 */
    .buy-sec1{ 
        height: 70vh; 
    }
    .buy-sec1 .inner .text h1{ 
        font-size: 24px; 
        margin-bottom: 20px; 
    }
    .buy-sec1 .inner .text p{ 
        font-size: 18px; 
        line-height: 160%; 
    }
    
    /* buy-sec2 */
    .buy-sec2{ 
        margin: 60px 0; 
    }
    .buy-sec2 .inner .list{ 
        flex-direction: column; 
        gap: 30px; 
        padding: 50px 0; 
        align-items: flex-start;
    }
    .buy-sec2 .inner .list .text h2{ 
        font-size: 24px; 
        margin-bottom: 20px; 
    }
    .buy-sec2 .inner .list .text p{ 
        font-size: 16px; 
        line-height: 160%; 
    }
    .buy-sec2 .inner .list .info div{ 
        margin-top: 15px; 
    }
    .buy-sec2 .inner .list .info div .t1{ 
        font-size: 16px; 
    }
    .buy-sec2 .inner .list .info div .t2{ 
        font-size: 14px; 
    }
    .buy-sec2 .inner .list .image{ 
        width: 100%;
        height: 250px; 
        margin-top: 0; 
        order: -1; 
    }
    /*contact*/
    .sec6.contact{
        padding-top: 100px;
        margin: 0px 0 50px 0;
    }
    /* new-detail-sec1 */
    .new-detail-sec1.boardArti{ 
        padding-top: 150px;
        margin: 0px 0 50px 0; 
    }
    .new-detail-sec1 .inner .content{
        text-align: center;
    }
    .new-detail-sec1 .inner .content .title{
        display: inline-block;
        margin-bottom: 0;
    }
    .new-detail-sec1 .inner .content .title h1{ 
        line-height: 140%; 
    }

    .new-detail-sec1 .inner .content .slide-box{ 
        margin-top: 20px; 
    }
    .new-detail-sec1 .inner .content .swiper .image{ height: 34vw; }
    .new-detail-sec1 .inner .content .swiper-btn-next i,
    .new-detail-sec1 .inner .content .swiper-btn-prev i{ 
        font-size: 28px; 
    }
    .new-detail-sec1 .inner .content .image img{ 
        width: 100%; 
        height: auto; 
    }
    .new-detail-sec1 .inner .content .text{
        margin-top: 30px;
        padding-top: 30px;
    }
    .new-detail-sec1 .inner .content .text p{ 
        font-size: 15px; 
        text-align: start;
    }
    .new-detail-sec1 .inner .back-btn{ 
        padding: 8px 25px; 
        font-size: 14px; 
        margin-top: 40px; 
    }
    
    /* login */
    .login .image{
        width: 160px;
        top: 20px;
    }
    .login .content{
        width: calc(100% - 48px);
        max-width: 480px;
    }
    .login .content .fields{
        padding: 36px;
    }
    .login .content h1{
        font-size: 18px;
        padding: 16px 0;
    }
    .login .content .fields .field{
        margin-bottom: 16px;
    }
    .login .content .fields .field input{
        height: 50px;
        padding: 0 44px;
    }
    .login .content .fields .field img{
        top: 12px;
        left: 16px;
    }
    .login .content .btn-wrap .login-btn{
        height: 50px;
        font-size: 15px;
    }
    .login .content p{
        margin-top: 16px;
        font-size: 13px;
    }
} /* mobile menu */
@media screen and (max-width: 750px) {
    .sec4 .inner .cards{ flex-direction: column; gap: 30px; }
}

@media screen and (max-width: 650px) { 
    .inner{
        padding: 0 20px; 
    }
    .title{
        margin-bottom: 20px;
    }
    /* header */
    header{ height: 70px; padding: 0 20px; }
    header .logo img{ height: 25px; }
    header .menu{ 
        top: 70px;
    }
    .mobile-menu-btn{
        width: 25px;
        height: 20px;
    }
    /* footer */
    footer{ 
        padding: 20px 0; 
    }
    footer .inner .content{ 
        gap: 10px; 
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    footer .inner .content .logo{ 
        width: 120px; 
    }
    footer .inner .content .menu{ 
        gap: 10px; 
        flex-wrap: wrap;
    }
    footer .inner .content .menu li a{ 
        font-size: 14px; 
    }
    footer .inner .content .contact span{ 
        font-size: 16px; 
        display: block;
        margin-bottom: 10px;
    }
    footer .inner .content .contact > div{ 
        padding: 6px 12px; 
        font-size: 14px; 
        margin: 0 5px 0 0; 
    }
    footer .copyright p{ font-size: 13px; }
    footer .copyright .mobile-dash{ display: block;  }
    /* index.html */
    /* sec1 */
    .sec1{ height: 60vh; }
    .sec1 .img-slide{ height: 60vh; }
    .sec1 .inner .text{width: 70%;}
    .sec1 .inner .text h1{ font-size: 22px; }
    .sec1 .inner .text h3{ font-size: 16px; }
    .sec1 .slide-btn{ right: 15px; gap: 6px; }
    .sec1 .slide-btn span{ width: 10px; height: 10px; }
    .sec1 .slide-btn span.active{ height: 20px; }
    
    /* sec2 - index */
    .sec2{ margin: 50px 0; }
    .sec2 .inner .text span{ font-size: 20px; }
    .sec2 .inner .text h1,
    .sec2 .inner .text h1 b{ font-size: 28px; }
    .sec2 .inner .text .t1,
    .sec2 .inner .text .t2{ font-size: 14px; line-height: 160%; }
    .sec2 .inner .text .t1{ margin-top: 20px; }
    
    /* sec3 - index: 1열 */
    .sec3{ margin: 50px 0; }
    .sec3 .title{ margin-bottom: 30px; padding-bottom: 20px;}
    .sec3 .title h3{ font-size: 20px; }
    .sec3 .inner .lists{gap: 12px;}
    .sec3 .inner .lists .list .image{ height: 200px; }
    .sec3 .inner .lists .list.more{ height: 200px; }
    .sec3 .inner .lists .list .text{margin-top: 10px;}
    .sec3 .inner .lists .list .text h4{ font-size: 16px; }
    .sec3 .inner .lists .list .text p{ font-size: 14px; }
    
    /* sec4 - index */
    .sec4{ margin: 50px 0; }
    .sec4 .inner .title{margin-bottom: 30px;}
    .sec4 .inner .title h3{ font-size: 20px; }
    .sec4 .inner .cards .card .image{ height: 180px; }
    .sec4 .inner .cards .card .info span{ font-size: 16px; }
    .sec4 .inner .cards .card .text h4{ font-size: 16px; }
    .sec4 .inner .cards .card .text p{ font-size: 14px; }
    .sec4 .inner .btn-wrap{ margin-top: 30px; }
    .sec4 .inner .btn-wrap .link-btn{padding: 4px 10px; font-size: 14px;}
    
    /* sec5 - index */
    .sec5{ margin: 50px 0; }
    .sec5 .inner .title h3{ font-size: 20px; }
    .sec5 .accordion-wrap .accordion .accordion-title{ height: 60px; padding: 0 16px; }
    .sec5 .accordion-wrap .accordion .accordion-title .num{ font-size: 16px; }
    .sec5 .accordion-wrap .accordion .accordion-title .accordion-title-text{ font-size: 14px; }
    .sec5 .accordion-wrap .accordion .accordion-desc{ padding: 16px; font-size: 14px; }
    .sec5 .accordion-wrap .accordion .accordion-title .accordion-btn{
        width: 16px;
        height: 16px;
    }
    /* sec6 - index (Wholesale Inquiry) */
    .sec6{ margin: 50px 0; padding: 25px 0; }
    .sec6 .inner .title h3{ font-size: 20px; }
    .sec6 .inner .title p{ font-size: 16px; margin-top: 4px;}
    .sec6 .inner .content .left .image .collection-label{
        font-size: 14px;
        padding: 5px;
    }
    .sec6 .inner .content .left .text h4{ font-size: 16px; }
    .sec6 .inner .content .left .text ul li,
    .sec6 .inner .content .left .info div{ font-size: 14px; }
    .sec6 .inner .content .left .text .content{ font-size: 14px; }
    .sec6 .inner .content .right .field{margin-bottom: 10px;}
    .sec6 .inner .content .right .field .field-title{ font-size: 14px; }
    .sec6 .inner .content .right .field input{ height: 35px; font-size: 14px; }
    .sec6 .inner .content .right .field textarea{ height: 80px; font-size: 14px; }
    .sec6 .inner .content .right .agreement label{ font-size: 13px; }
    .sec6 .inner .content .right .submit-btn-box{ margin-top: 30px; }
    .sec6 .inner .content .right .submit-btn-box .submit-btn{ padding: 8px 24px; font-size: 16px; }
    
    /* about-sec1 */
    .about-sec1{ 
        padding-top: 100px;
        margin: 0px 0 50px 0;
    }
    .about-sec1 .inner h1, 
    .about-sec1 .inner .content .text h2{ 
        font-size: 20px; 
    }
    .about-sec1 .inner .content{ 
        margin-top: 20px; 
    }
    .about-sec1 .inner .content .image img{ 
        width: 100%;
        border-radius: 20px 0 0 0;
    }
    .about-sec1 .inner .content .text h2{
        margin-bottom: 10px;
    }
    .about-sec1 .inner .content .text .t1{
        font-weight: 500;
        line-height: 140%;
    }
    .about-sec1 .inner .content .text .t2{
        width: 100%;
        line-height: 140%;
    }
    .about-sec1 .inner .content2{ 
        margin-top: 50px; 
        gap: 20px; 
    }
    .about-sec1 .inner .content2 .image{ 
        position: absolute;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        opacity: 0.15;
    }
    .about-sec1 .inner .content2 .image img{
        width: 60%;
        z-index: -1;
    }
    .about-sec1 .inner .content2 .text{
        position: relative;
        z-index: 1;
    }
    .about-sec1 .inner .content2 .text h2{ 
        font-size: 20px; 
    }
    .about-sec1 .inner .content2 .text .t1{ 
        margin: 8px 0 15px 0; 
    }
    
    /* about-sec2 */
    .about-sec2{ 
        margin: 50px 0; 
    }
    .about-sec2 .inner .cards {
        flex-direction: column;
    }
    .about-sec2 .inner .cards .card{
        padding: 10px;
    }
    .about-sec2 .inner .cards .card h4{ 
        font-size: 18px; 
    }
    .about-sec2 .inner .cards .card .text{ 
        font-size: 14px; 
        line-height: 150%; 
    }
    
    /* about-sec3 */
    .about-sec3{ 
        margin: 50px 0; 
    }
    .about-sec3 .inner h2{ 
        font-size: 20px; 
        margin-bottom: 20px; 
    }
    .about-sec3 .inner .image{
        width: 100%;
    }
    .about-sec3 .inner .text .t1{
        font-size: 15px;
        line-height: 140%;
        width: 100%;
    }
    /* about-sec4 */
    .about-sec4{ 
        padding: 30px 0; 
    }
    .about-sec4 .inner .cards{
        gap: 12px;
    }
    .about-sec4 .inner .cards .card{
        width: 100%;
    }
    .about-sec4 .inner h2{ 
        font-size: 20px; 
    }
    .about-sec4 .inner .cards .card h4{
        font-size: 18px;
    }
    .about-sec4 .inner .cards .card p{
        font-size: 15px;
    }
    /* about-sec5 */
    .about-sec5{ 
        padding: 25px 0; 
    }
    .about-sec5 .inner h4{ 
        font-size: 18px; 
    }
    .about-sec5 .inner .logo img{
        width: 100px;
    }
    /* business-sec1, business-sec2 - 모바일 */
    .business-sec1{ 
        padding-top: 100px;
        margin: 0px 0 50px 0; 
    }
    .business-sec1 .inner h2{ 
        font-size: 22px; 
        margin-bottom: 16px; 
    }
    .business-sec1 .inner .content{ 
        gap: 20px; 
    }
    .business-sec1 .inner .title p br{ 
        display: block; 
    }
    .business-sec1 .inner .tabs .tab{ 
        font-size: 13px; 
        padding: 10px 8px; 
    }
    .business-sec2{ 
        margin: 50px 0; 
    }
    .business-sec2 .business-tab-detail .detail-wrap{ 
        flex-direction: column; 
        gap: 20px; 
    }
    .business-sec2 .business-tab-detail .image{ 
        order: -1; 
    }
    .business-sec2 .business-tab-detail .image img{ 
        max-height: 300px; 
        object-fit: cover; 
    }
    .business-sec2 .business-tab-detail .text{ 
        padding-top: 20px; 
    }
    .business-sec2 .business-tab-detail .text h2{ 
        font-size: 16px; 
        margin-bottom: 10px; 
    }
    .business-sec2 .business-tab-detail .text p{ 
        font-size: 14px; 
        line-height: 160%; 
    }
    /* new-sec1 */
    .new-sec1{ 
        padding-top: 120px;
        margin: 0px 0 60px 0; 
    }
    .new-sec1 .inner .text{ 
        margin-bottom: 0px; 
    }
    .new-sec1 .inner .text h1{ 
        font-size: 24px; 
    }
    .new-sec1 .inner .text p{ 
        font-size: 16px; 
        line-height: 160%; 
    }
    .new-sec1 .inner .menu{ 
        flex-wrap: wrap; 
        gap: 8px; 
        margin: 20px 0; 
    }
    .new-sec1 .inner .menu a{ 
        padding: 4px 10px; 
        font-size: 14px; 
    }
    .new-sec1 .inner .content{ 
        flex-direction: column; 
        gap: 30px; 
    }
    .new-sec1 .inner .content .card{ 
        width: 100%; 
        margin-bottom: 0; 
    }
    .new-sec1 .inner .content .card .image{ 
        height: 200px; 
    }
    .new-sec1 .inner .content .card .info span{ 
        font-size: 16px; 
    }
    .new-sec1 .inner .content .card .info span:last-child{ 
        font-size: 14px; 
    }
    .new-sec1 .inner .content .card .text h4{ 
        font-size: 16px; 
    }
    .new-sec1 .inner .content .card .text p{ 
        font-size: 14px; 
    }
    /* product-detail - 모바일 */
    .product-detail-sec1.boardArti{ 
        padding-top: 100px;
        margin: 0px 0 40px 0; 
    }
    .product-detail-sec1 .inner .content h2{ 
        font-size: 22px; 
        margin-bottom: 12px; 
    }
    .product-detail-sec1 .inner .content .info .image{ flex:unset; height: 92vw; }
    .product-detail-sec1 .inner .content .info{ 
        gap: 20px; 
        flex-direction: column;
    }
    .product-detail-sec1 .inner .content .info .text p{ 
        font-size: 16px; 
        line-height: 160%; 
    }
    .product-detail-sec1 .inner .content .info .text .designers{ 
        padding-top: 20px;
        margin-top: 20px;
    }
    .product-detail-sec1 .inner .content .info .text .designers .image{ width: 100%; }
    .product-detail-sec1 .inner .content .info .designers .image{
        width: 80px;
        height: 80px;
    }
    .product-detail-sec1 .inner .content .info .text .designer-profile .name p{ 
        font-size: 16px; 
    }

    .product-detail-sec2{ 
        margin-top: 40px; 
        padding: 30px 0 50px 0; 
    }
    .product-detail-sec2 .inner h3{ 
        font-size: 20px; 
        margin-bottom: 16px; 
    }
    .product-detail-sec2 .inner .collection{ 
        margin-bottom: 40px; 
    }
    .product-detail-sec2 .inner .lists{ 
        flex-wrap: wrap; 
        gap: 16px; 
    }
    .product-detail-sec2 .inner .lists .list{ 
        flex: 0 0 calc((100% - 16px) / 2); 
        max-width: none; 
    }
    .product-detail-sec2 .inner .lists .list .image{ 
        height: 180px; 
    }
    .product-detail-sec2 .inner .curated .lists .list p{ 
        font-size: 14px; 
        margin-top: 10px; 
    }
    .product-detail-sec2 .inner .btn-wrap{ 
        margin-top: 30px; 
    }
    .product-detail-sec2 .inner .btn-wrap a{ 
        font-size: 16px; 
        padding: 6px 20px; 
    }
    .product-detail-sec1 .inner .content h2{
        font-size: 18px;
    }
    .product-detail2 .inner .content .info .text h2{
        font-size: 22px;
        margin-bottom: 0;
    }
    /* product-sec1 - 2열, 모바일 */
    .product-sec1{ 
        padding-top: 100px;
        margin: 0px 0 50px 0; 
    }
    .product-sec1 .inner .text h1{ 
        font-size: 22px; 
        margin-bottom: 12px; 
    }
    .product-sec1 .inner .text p{ 
        font-size: 16px; 
        line-height: 140%;
    }
    .product-sec1 .inner .content{ 
        margin-top: 24px; 
    }
    .product-sec1 .inner .content .lists{ 
        gap: 20px; 
    }
    .product-sec1 .inner .content .lists .list{ 
        width: calc((100% - 20px) / 2); 
    }
    .product-sec1 .inner .content .lists .list .text{ 
        font-size: 14px; 
        margin-top: 10px; 
    }
    .product-sec1 .lists .list .image .hover-image > img{ 
        width: 50px; 
        height: 50px; 
    }
    .product-sec1 .lists .list .hover-image p{ 
        font-size: 14px; 
        margin-top: 6px; 
    }
    
    /* buy-sec1 */
    .buy-sec1{ 
        height: 60vh; 
    }
    .buy-sec1 .inner .text h1{ 
        font-size: 20px; 
        margin-bottom: 15px; 
    }
    .buy-sec1 .inner .text p{ 
        font-size: 16px; 
        line-height: 150%; 
    }
    
    /* buy-sec2 */
    .buy-sec2{ 
        margin: 50px 0; 
    }
    .buy-sec2 .inner .list{ 
        padding: 40px 0; 
    }
    .buy-sec2 .inner .list .text h2{ 
        font-size: 20px; 
        margin-bottom: 15px; 
    }
    .buy-sec2 .inner .list .text p{ 
        font-size: 15px; 
    }
    .buy-sec2 .inner .list .info div{ 
        margin-top: 12px; 
    }
    .buy-sec2 .inner .list .info div .t1{ 
        font-size: 16px; 
    }
    .buy-sec2 .inner .list .info div .t2{ 
        font-size: 14px; 
    }
    .buy-sec2 .inner .list .image{ 
        flex:unset;
        height: 94vw;
        background-size: cover; background-repeat: no-repeat; background-position: center;
    }
    .buy-sec2 .inner .list iframe{ 
        height: 20vw !important;
     }
    /*contact*/
    .sec6.contact{
        padding-top: 80px;
        margin: 0px 0 50px 0;
    }
    /* new-detail-sec1 */
    .new-detail-sec1.boardArti{ 
        padding-top: 100px;
        margin: 0px 0 50px 0; 
    }
    .new-detail-sec1 .inner .content .title h1{ 
        font-size: 20px;
    }
    .new-detail-sec1 .inner .content .image img{
        height: 220px;
        object-fit: cover;
    }
    .new-detail-sec1 .inner .content .swiper-btn-next, .new-detail-sec1 .inner .content .swiper-btn-prev{
        top: 50%;
        transform: translateY(-50%);
    }
    .new-detail-sec1 .inner .content .swiper-btn-next{
        right: -10px;
    }
    .new-detail-sec1 .inner .content .swiper-btn-prev{
        left: -10px;
    }
    .new-detail-sec1 .inner .content .swiper-btn-next i, .new-detail-sec1 .inner .content .swiper-btn-prev i{
        font-size: 22px;
    }
    .new-detail-sec1 .inner .content .swiper-btn-next.swiper-button-disabled i, .new-detail-sec1 .inner .content .swiper-btn-prev.swiper-button-disabled i{
        font-size: 22px;
    }

    .new-detail-sec1 .inner .content .text p{ 
        font-size: 15px; 
    }
 
    /* login - 650px 이하 */
    .login .image{
        width: 140px;
        top: 16px;
    }
    .login .content{
        width: calc(100% - 40px);
        max-width: none;
    }
    .login .content .fields{
        padding: 24px 20px;
    }
    .login .content h1{
        font-size: 16px;
        padding: 14px 12px;
    }
    .login .content .fields .field{
        margin-bottom: 14px;
    }
    .login .content .fields .field input{
        height: 46px;
        padding: 0 40px;
        font-size: 14px;
    }
    .login .content .fields .field img{
        top: 11px;
        left: 14px;
        width: 20px;
        height: auto;
    }
    .login .content .btn-wrap .login-btn{
        height: 46px;
        font-size: 14px;
    }
    .login .content p{
        margin-top: 14px;
        font-size: 12px;
        line-height: 1.5;
    }
    
    /* submit-popup - 650px 이하 */
    .submit-popup .popup-box{
        width: calc(100% - 40px);
        max-width: 400px;
    }
    .submit-popup .popup-box h1{
        font-size: 16px;
        padding: 14px 16px;
        line-height: 1.4;
    }
    .submit-popup .popup-box .text p{
        font-size: 14px;
        padding: 20px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    .submit-popup .popup-box .btn-wrap .confirm-btn{
        padding: 10px 32px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    /* agreement-popup */
    .agreement-popup .popup-box{
        width: 90%;
    }
    .agreement-popup .popup-box .title{
        padding: 10px 30px;
    }
    .agreement-popup .popup-box .title h1{
        font-size: 18px;
    }
    .agreement-popup .popup-box .title button i{
        font-size: 18px;
    }
    .agreement-popup .popup-box .text{
        margin: 20px;
    }
    .agreement-popup .popup-box .text p{
        font-size: 15px;
    }
} /* mobile */



.modify-btn{ display: inline-block; margin-top: 20px; padding: 5px 10px; color: #7f7f7f; background: #fff; border: 1px solid #efefef; border-radius: 4px; font-weight: 400; font-size: 14px; }
.modify-btn:hover{ background-color: #f7f7f7; }

.boardArti input[type=checkbox], 
.boardArti input[type=radio]{ margin-top: 0; }


.product-detail-sec1.boardArti .view-half-div{ display: flex; align-items: flex-start; gap: 25px; }
.product-detail-sec1.boardArti .view-half-div .img-div{ width: 436px; height: 436px; background-size: cover; background-repeat: no-repeat; background-position: center; }

@media screen and (max-width: 1250px) { 
    .product-detail-sec1.boardArti .view-half-div .img-div{ width: 42vw; height: 42vw; }
}
@media screen and (max-width: 950px) { 
    .product-detail-sec1.boardArti .view-half-div{ flex-direction: column; }
    .product-detail-sec1.boardArti .view-half-div .img-div{ width: 100%; height: 90vw; }
}
@media screen and (max-width: 650px) { 

}