@font-face {
    font-family: 'HSBomBaram 3.0';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.1/HSBombaram3_Thin.woff') format('woff');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'HSBomBaram 3.0';
    src: url('https://gcore.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.1/HSBombaram3_Regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('./Paperlogy-1Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('./Paperlogy-2ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('./Paperlogy-3Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('./Paperlogy-4Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('./Paperlogy-5Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('./Paperlogy-6SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('./Paperlogy-7Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('./Paperlogy-8ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('./Paperlogy-9Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* css 드래그 이벤트 차단 */
.disableDrag {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.grecaptcha-badge{
    visibility: hidden;
}

* {
    transition: 0.3s;
}

/* header */
#header {
    width: 100%;
    display: flex;
    height: 70px;
    box-sizing: border-box;
    padding: 0px;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 45;
}

.logo {
    width: 107.2px;
    position: absolute;
    left: 40px;
    cursor: pointer;
}

#header nav {
    overflow: hidden;
    margin: 0;
    height: 100%;
}

#header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#header nav>ul>li {
    display: flex;
    width: 120px;
    height: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    color: #4A2F27;
    font-family: "HSBomBaram 3.0";
    font-size: 18px;
    font-weight: 400;
    line-height: 120%; 
    letter-spacing: -0.45px;
    cursor: pointer;
}

#header nav>ul>li span {
    display: flex;
    padding: 12px 18px 3px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

#header nav>ul>li:hover span, .tap span {
    color: #FFF;
    background: #4A2F27;
}

.header-div {
    display: none;
    align-items: center;
    gap: 16px;
}

.mo-menu-open {
    cursor: pointer;
    background: transparent;
}

.mo-menu-open:hover {
    opacity: 0.8;
}

.call {
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: #4A2F27;
    font-size: 28px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.7px;
}

.call:hover {
    color: #4A2F27;
}

.mo-menu {
    width: 100%;
    height: 100%;
    display: none;
    background: #FFF;
    position: fixed;
    left: 0;
    z-index: 101;
}

.mo-menu-top {
    height: 56px;
    box-sizing: border-box;
    padding: 0px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mo-menu-bottom {
    width: 100%;
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
}

.menu-close {
    background: transparent;
    cursor: pointer;
}

.mo-menu nav {
    width: 100%;
}

.mo-menu nav>ul>li {
    width: 100%;
    color: #4A2F27;
    font-family: 'HSBomBaram 3.0';
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%; 
    letter-spacing: -0.45px;
    box-sizing: border-box;
    padding: 27px 0 17px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(74, 47, 39, 0.10);
}

.mo-menu nav>ul>li:hover,.mo-menu .tap {
    background: #ECE5D8 !important;
    border-top: 1px solid rgba(74, 47, 39, 0.10);
}

/* footer */
footer {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    background: #4A2F27;
    display: flex !important;
    padding: 65px 0 105px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.footer-big-container {
    display: flex;
    max-width: 1280px;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-wrap {
    display: flex;
    align-items: center;
}

.footer-div, .footer-inner>p {
    box-sizing: border-box;
    display: flex;
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    line-height: 130%; /* 20.8px */
    letter-spacing: -0.4px;
    align-items: center;
    word-break: keep-all;
}

.footer-div:first-child {
    padding-right: 10px;
    height: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.70);
}

.footer-div:last-child {
    padding-left: 10px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-right>p:first-child {
    display: flex;
    gap: 5px;
    align-items: center;
    color: #ECE5D8;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

.footer-right>p:last-child {
    color: #ECE5D8;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px; /* 141.667% */
    letter-spacing: -0.6px;
}

.up-btn {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
    z-index: 5;
}

.up-btn:hover {
    border: 1px solid #ECE5D8;
    background: #ECE5D8;
}


/* 하단 고정 문의 */
#floating-container {
    max-width: 1300px;
    width: 100%;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 45;
    border-radius: 12px 12px 0 0;
    background: rgba(251, 249, 244, 0.90);
    padding: 3px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 3px 0;
}

.floating-div {
    color: #4A2F27;
    font-family: 'Paperlogy';
    font-size: 24px;
    font-weight: 700;
    line-height: 125%; /* 30px */
    letter-spacing: -0.6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.floating-div img {
    width: 132px;
}

.floating-form {
    max-width: 1280px;
    width: 100%;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 30px;
}

.floating-form>p {
    color: #FFF;
    font-family: "Gmarket Sans";
    font-size: 24px;
    line-height: 125%; /* 30px */
    letter-spacing: -0.6px;
}

.floating-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-contact input[type="text"] {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.90);
    display: flex;
    width: 180px;
    box-sizing: border-box;
    padding: 8px 10px;
    align-items: center;
    color: #111;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.4px;
    border-radius: 4px;
    border: 1px solid rgba(0, 88, 73, 0.50);
    background: rgba(255, 255, 255, 0.80);
}

.floating-contact input[type="text"]:focus {
    border: 1px solid #916034;
}

.floating-contact input[type="text"]::placeholder {
    color: rgba(51, 51, 51, 0.50);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

.floating-form-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

.floating-agree-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-agree-wrap .round-checkbox {
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50px;
    appearance: none;
    position: relative;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid #916034;
}

.floating-agree-wrap .round-checkbox:checked::before {
    font-size: 100%;
    color: #fff;
    position: relative;
}

.floating-agree-wrap .round-checkbox:checked {
    background-image: url("../img/check.png");
    background-size: 17px !important;
    background-position: center center !important;
    background-color: #916034;
    background-repeat: no-repeat;
    border: none;
}

.floating-agree-wrap .agree {
    color: #333;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: normal;
    letter-spacing: -0.28px !important;
    cursor: pointer;
}

.floating-agree-wrap .agree-open {
    font-weight: 600;
}

.f-btn {
    display: flex;
    height: 42px;
    box-sizing: border-box;
    padding: 0px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #916034;
    color: #FFF;
    font-size: 20px;
    line-height: 130%;
    font-weight: 700;
    letter-spacing: -0.5px;
    border: none;
}

.f-btn:hover {
    background: #4A2F27;
}

.floating-tit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #19493B;
    text-align: center;
    font-family: "SF_HambakSnow";
    font-size: 18px;
    line-height: 125%; /* 22.5px */
    letter-spacing: -0.45px;
    flex-shrink: 0;
    cursor: pointer;
    box-sizing: border-box;
    padding-right: 10px;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.8s ease-in-out;
}


/* 문의폼 이동 고정 버튼 */
#go-contact {
    width: 54px;
    height: 54px;
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 45;
    display: none;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 8px;
    background: #ECE5D8;
    overflow: hidden;
    color:  #4A2F27;
    font-size: 11px;
    font-weight: 500;
    line-height: 120%; /* 13.2px */
    letter-spacing: -0.275px;
    white-space: nowrap;
    cursor: pointer;
}

#go-contact:hover {
    background: #D9C9B0;
}


/* 개인정보처리방침 */
.agree-modal {
    position: fixed;
    top: 2.5vh;
    width: 1080px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    cursor: pointer;
    z-index: 60;
    box-sizing: border-box;
    padding: 0 48px;
    padding-top: 60px !important;
    padding-bottom: 20px !important;
    justify-content: initial !important;
    height: 95vh;
    gap: 20px !important;
    display: none;
}

.agree-close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    cursor: pointer;
}

.agree-close > svg {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.80);
    padding: 6.4px 6.4px 5.6px 5.6px;
}

.agree-close>svg:hover {
    background: #000;
    transition: 0.3s;
}

.agree-modal>.title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.p24 {
    color: #111;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 141.667% */
    letter-spacing: -0.6px;
}

.p40 {
    color:  #111;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px; /* 130% */
    letter-spacing: -1px;
}

.content-div {
    margin-top: 20px;
    height: 81%;
    overflow: hidden;
}

.agree-modal>.content-div>.content {
    height: 100%;
    overflow: scroll;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #505050;
    padding-bottom: 20px;
}

.agree-logo {
    width: 150px;
}

.mo-tit {
    display: none;
}

.modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 50;
}

.normal {
    font-weight: 400 !important;
}

.bold {
    font-weight: 700 !important;
}

.semibold {
    font-weight: 600 !important;
}

.bold-g {
    font-family: "Gmarket Sans";
}

.primary {
    color: #4A2F27 !important;
}

.o {
    color: #D85936 !important;
}

.w {
    color: #FFF !important;
}

.sub {
    color: #505050 !important;
}

.y {
    color: #FFDC6A !important;
}

.beige {
    color: #ECE5D8 !important;
}

.st-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 5;
}

.st-top img {
    max-width: 800px;
    width: 90%;
}

.st-tit {
    color: #4A2F27;
    text-align: center;
    font-family: "HSBomBaram 3.0";
    font-size: 64px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.6px;
    position: relative;
    z-index: 5;
    margin-bottom: -20px;
    word-break: keep-all;
    white-space: nowrap;
}

.st-sub-tit {
    color: #4A2F27;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 60px */
    letter-spacing: -1px;
    position: relative;
    z-index: 5;
    word-break: keep-all;
}

.justify-start {
    justify-content: flex-start !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* 900px */
.mi-br {
    display: none;
}

/* 768px */
.ta-br {
    display: none;
}

/* 650px */
.mo-br {
    display: none;
}

/* 480px */
.xs-br {
    display: none;
}

/* 400px */
.xxs-br {
    display: none;
}

/* 370px */
.xxxs-br {
    display: none;
}


@media(max-width: 1400px) {

}

@media(max-width: 1280px) {
    .logo {
        width: 90px;
        left: 20px;
    }
    #header {
        height: 60px;
    }
    #header nav>ul>li {
        width: 110px;
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .floating-form, .floating-form-wrap {
        gap: 15px;
    }
    .floating-contact {
        gap: 10px;
    }
    .input-wrap {
        gap: 4px;
    }
    .floating-div {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .floating-div img {
        width: 110px;
    }
    .floating-contact input[type="text"] {
        width: 170px;
    }
    .f-btn {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .st-top {
        gap: 16px;
    }
    .st-tit {
        font-size: 56px;
        letter-spacing: -1.4px;
    }
    .st-sub-tit {
        font-size: 32px;
        letter-spacing: -0.8px;
    }
    .footer-big-container {
        padding: 0 16px;
    }
}

@media(max-width: 1200px) {
    .floating-contact input[type="text"], select {
        width: 160px;
    }
    .agree-modal {
        width: 100%;
        left: 0;
        top: 0;
        min-height: 100vh;
        height: 100%;
        transform: none;
    }
}

@media(max-width: 1100px) {
    .floating-form, .floating-form-wrap {
        gap: 12px;
    }
    .floating-contact {
        gap: 8px;
    }
    .floating-contact input[type="text"], select {
        width: 145px;
    }
    .f-btn {
        padding: 0 32px;
    }
}

@media(max-width: 1024px) {
    #header {
        height: 56px;
        padding: 0 16px;
        justify-content: space-between;
    }
    .logo {
        position: static;
        width: 80px;
    }
    #header nav {
        display: none;
    }
    .header-div {
        display: flex;
    }
    #floating-container {
        display: none !important;
    }
    .f-btn {
        padding: 0 40px;
        height: 42px;
    }
    .floating-agree-wrap .round-checkbox {
        width: 30px;
        height: 30px;
    }
    #go-contact {
        display: flex;
    }
    footer {
        padding: 60px 0;
    }
}

@media(max-width: 900px) {
    .footer-big-container {
        flex-direction: column;
        gap: 20px;
    }
    .st-tit {
        font-size: 48px;
        letter-spacing: -1.2px;
    }
    .st-sub-tit {
        font-size: 28px !important;
        letter-spacing: -0.7px !important;
    }
    .mi-br {
        display: block;
    }
    .mi-no-br {
        display: none;
    }
}

@media(max-width: 768px) {
    .agree-modal {
        padding: 0 20px;
    }
    .ta-br {
        display: block;
    }
    .st-top img {
        width: 100%;
    }
}

@media(max-width: 650px) {
    #header {
        height: 50px;
    }
    .logo {
        width: 71px;
    }
    .mo-menu-top {
        height: 50px;
    }
    .footer-div, .footer-inner>p {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .footer-div:first-child {
        height: 12px;
    }
    #go-contact {
        right: 10px;
        bottom: 10px;
    }
    .agree-modal {
        gap: 40px !important;
    }
    .agree-modal>.title>.p24 {
        font-size: 20px;
        line-height: 28px; /* 140% */
        letter-spacing: -0.5px;
    }
    .agree-modal>.title>.p40 {
        font-size: 28px;
        line-height: 38px; /* 135.714% */
        letter-spacing: -0.7px;
    }
    .agree-logo {
        width: 120px;
    }
    .st-top {
        gap: 12px;
    }
    .st-tit {
        font-size: 40px;
        letter-spacing: -1px;
    }
    .st-sub-tit {
        font-size: 24px !important;
        letter-spacing: -0.6px !important;
    }
    .mo-br {
        display: block;
    }
}

@media(max-width: 480px) {
    .st-tit {
        font-size: 32px;
        letter-spacing: -0.8px;
    }
    .st-sub-tit {
        font-size: 20px !important;
        letter-spacing: -0.5px !important;
    }
    .xs-br {
        display: block;
    }
    .xs-no-br {
        display: none;
    }
}

@media(max-width: 400px) {
    .st-tit {
        font-size: 28px;
        letter-spacing: -0.7px;
    }
    .st-sub-tit {
        font-size: 18px !important;
        letter-spacing: -0.45px !important;
    }
    .xxs-br {
        display: block;
    }
}

@media(max-width: 370px) {
    .f-btn {
        padding: 0 32px;
    }
    .xxxs-br {
        display: block;
    }
}
