

/* 구글 위젯과 배너는 숨김 (기능만 남김) */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-menu-frame,
.skiptranslate { position:absolute !important; left:-9999px !important; top:-9999px !important; }
body { top: 0 !important; }

/* 커스텀 셀렉트 스타일 */
.gt-wrap {
    display: inline-block;
    position: relative;
    top: 2px;
}
.gt-select{
    -webkit-appearance:none; -moz-appearance:none; appearance:none;
    width: 100px;
    height: 38px;
    border:1px solid #E6E6E6; border-radius: 10px;
    background: url(https://www.google.com/images/branding/googleg/1x/googleg_standard_color_128dp.png) no-repeat 8px center / 16px;
    padding: 0 0px 0 33px;
    font-size:13px !important; font-weight:600; color:#333; background-color:#fff;
    box-shadow: 0 4px 10px rgba(0,0,0,.06);
    cursor:pointer;
}
.gt-select:focus{ outline: 2px solid #cce5ff; }
.gt-powered{ display:block; margin-top:8px; font-size:12px; color:#666; }



body{
    background: #F7F7F7;
}
/* 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: 90px;
    box-sizing: border-box;
    padding: 0 40px;
    justify-content: center;
    align-items: flex-start;
    position: fixed;
    top: 0; left: 0;
    z-index: 100;

    /* 핵심: 배경은 투명한 같은 색을 기본값으로 두고 트랜지션 */
    background-color: rgba(17, 98, 74, 0); /* 투명 */
    transition:
            height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            background-color 0.25s ease; /* 배경도 부드럽게 */

    /* (선택) 일부 브라우저 깜빡임 방지 */
    will-change: height, background-color;
}

#header.expanded {
    height: 332px;
    background-color: rgba(17, 98, 74, 0.70); /* 불투명도 0.7 */
}
#header.scrolled {
    background-color: rgba(17, 98, 74, 0.70); /* 불투명도 0.7 */
}


/* 축소 중 배경 유지용 */
#header.collapsing {
    background-color: rgba(17, 98, 74, 0.70);
}
#header .logo {
    width: 95px;
    position: absolute;
    left: 70px;
    cursor: pointer;
    margin-top: 9px;
}
.mo-logo {
    display: none;
}
#header nav {
    overflow: hidden;
    margin: 0;
    height: 100%;
    max-width: 625px;
    width: 70%;
    position: relative;
    top: 4px;
}

#header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

#header nav>ul>li {
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin: 0 25px;
}
#header nav>ul>li:nth-child(1){
    margin: 0 25px 0 0;
}
#header nav>ul>li:nth-last-child(1){
    margin: 0 0 0 25px;
}
#header nav>ul>li .menu{
    padding: 10px 15px 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%; /* 24px */
    letter-spacing: -0.5px;
    font-family: Pretendard;
    color:#fff;
}
#header nav>ul>li .menu:hover{
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.10);
    padding: 10px 15px 8px;
}
#header nav>ul>li:hover, .tap {
    color: #11624A !important;
}
#header nav ul .sub-menu{
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    z-index: 100;
}
#header nav ul .sub-menu a{
    color: #fff;
    font-family: Pretendard;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
    display: block;
    text-align: center;
    margin-bottom: 16px;
}
#header nav ul .sub-menu a:nth-last-child(1){
    margin-bottom: 0;
}
#header .fran-wrap{
    border-radius: 100px;
    border: 1px solid rgba(17, 98, 74, 0.50);
    padding: 5px 16px 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    color: #11624A;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    font-family: "GmarketSansMedium";;
    position: absolute;
    right: 40px;
    margin-top: 23px;
    cursor: pointer;
}
#header .fran-wrap svg{
    position: relative;
    bottom: 1px;

}
#header .side-wrap{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    right: 70px;
    gap: 12px;
    top: 24px;
}
#header .side-wrap .icon{
    width: 30px;
    cursor: pointer;
    position: relative;
    top: 6px;
}
#header .side-wrap .site-map{
    border-radius: 50px;
    border: 1px solid #FFF;
    padding: 8px 14px;
    color: #FFF;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    line-height: 24px; /* 150% */
    cursor: pointer;
    height: 42px;
    position: relative;
}
#header .side-wrap .site-map.active{
    height: 71px;
    border-radius: 14px;
}
#header .side-wrap .site-map.active svg{
    transform: rotate(180deg);
}
#header .side-wrap .site-map p{
    font-weight: 500;
    margin-right: 30px;
}
#header .side-wrap .site-map a{
    color: #FFF;
    font-weight: 300;
    margin-top: 5px;
    display: none;
}
#header .side-wrap .site-map.active a{
    display: inline-block;
}
#header .side-wrap .site-map svg{
    position: absolute;
    right: 15px;
    top: 17px;
}
.mo-menu-open {
    display: none;
    width: 45px;
    height: 45px;
    box-sizing: border-box;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    background: transparent;
}

.mo-menu-open:hover {
    background: rgba(255, 255, 255, 0.10);
}

.mo-menu {
    max-width: 500px;
    height: 100%;
    display: none;
    background: #fff;
    position: fixed;
    left: 0;
    z-index: 101;
    width: 80%;
    box-shadow: 4px 0px 12px 0px rgba(0, 0, 0, 0.10);
}

.mo-menu-top {
    height: 66px;
    box-sizing: border-box;
    padding: 0px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #DBDBDB;
    background: #11624A;
    position: relative;
}
.mo-menu-top .site-map{
    border-radius: 18.5px;
    border: 1px solid #FFF;
    padding: 6px 14px 4px;
    color: #FFF;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    line-height: 24px; /* 150% */
    cursor: pointer;
    height: 38px;
    position: absolute;
    right: 16px;
    top: 12px;
    background: #11624A;
}
.mo-menu-top .site-map.active{
    height: 71px;
}
.mo-menu-top .site-map p{
    font-weight: 500;
    margin-right: 40px;
}
.mo-menu-top .site-map a{
    color: #FFF;
    font-weight: 300;
    margin-top: 5px;
    display: none;
}
.mo-menu-top .site-map.active a{
    display: inline-block;
}
.mo-menu-top .site-map svg{
    position: absolute;
    right: 15px;
    top: 14px;
}
.mo-menu-bottom {
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.menu-close {
    display: flex;
    width: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
}

.mo-menu nav {
    width: 100%;
}

.mo-menu nav>ul>li {
    width: 100%;
    border-bottom: 1px solid #F1F1F5;
    text-align: left;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
}
.mo-menu nav>ul>li>.menu,
.mo-menu nav>ul>li>.menu{
    box-sizing: border-box;
    padding: 12px 20px;
    border-radius: 100px;
    display: block;
    width: 100%;
    font-size: 18px;
    color: #2F2F2F;
}
.mo-menu nav>ul>li .arrow{
    position: absolute;
    right: 16px;
    top: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mo-menu nav>ul>li.open .arrow{
    transform: rotate(180deg);
}
.mo-menu nav>ul>li:hover,.mo-menu nav>ul>li>.menu:hover {
    color: #11624A !important;
    background: transparent !important;
}
.mo-menu nav>ul>li .sub-menu-wrap{
    width: 100%;
    display: none;
    overflow: hidden;
    transition: none;
    border-left: 1px solid #F1F1F5;
    background: #EBEBEB;
    padding: 15px 20px;


}
.mo-menu nav>ul>li .sub-menu-wrap a{
    width: 100%;
    color: rgba(0, 0, 0, 0.45);
    font-family: "Pretendard";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
.mo-menu nav>ul>li .sub-menu-wrap a:nth-last-child(1){
    margin-bottom: 0;;
}
.mo-menu nav>ul>li .sub-menu-wrap a:hover{
    color: var(--Green-light, #11624A);
}

/* footer */
footer{
    width: 100%;
    background: #F7F7F7;
    padding: 0 70px;
}
.footer-container{
    width: 100%;
    margin: 0 auto;
}
.footer-container .top-wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #C8C8C8;
    border-bottom: 1px solid #C8C8C8;
}
.footer-container .top-wrap .phone{
    color: rgba(39, 39, 39, 0.70);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 100% */
}
.footer-container .top-wrap .sns-wrap{
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer-container .top-wrap .sns-wrap img{
    width: 35px;
    cursor: pointer;
}
.footer-container .bottom-wrap{
    padding: 20px 0 115px;
    position: relative;
}
.footer-container .bottom-wrap .text-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 10px;
}
.footer-container .bottom-wrap .text-wrap .txt{
    color: rgba(39, 39, 39, 0.70);
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    position: relative;
}
.footer-container .bottom-wrap .text-wrap .txt:after{
    content: "";
    position: absolute;
    width: 1px;
    height: 10px;
    top: 5px;
    right: -9px;
    background: rgba(39, 39, 39, 0.20);
}
.footer-container .bottom-wrap .text-wrap .txt:nth-last-child(1):after{
    display: none;
}
.footer-container .bottom-wrap .text-wrap .txt strong{
    font-weight: 800;
}
.footer-container .bottom-wrap .copyright{
    color: rgba(39, 39, 39, 0.70);
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    text-align: center;
}
.footer-container .bottom-wrap .footer-logo{
    top: 20px;
    left: 0;
    width: 113px;
    position: absolute;
}
.footer-container .top-wrap .footer-logo{
    display: none;
}

.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 #FFF;
    background: #E87519;
}

.up-btn:hover svg path {
    fill: #FFF;
}

.fixed-btn {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 100;
}

#fixed-up {
    border-radius: 4px;
    background: #FFF;
    display: flex;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#fixed-up>svg {
    width: 35px;
    height: 35px;
}

#fixed-up:hover {
    transform: translateY(-10px);
}

.fixed-btn {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 100;
}

#fixed-up {
    border-radius: 4px;
    background: #FFF;
    display: flex;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#fixed-up>svg {
    width: 35px;
    height: 35px;
}

#fixed-up:hover {
    transform: translateY(-10px);
}

#floating-container {
    width: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: #F0832C;
    padding: 3px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s all;
    box-sizing: border-box;
    padding: 3px 10px;
}

.desktop {
    width: 343px;
    position: absolute;
    top: -250px;
    left: 3%;
}

.floating-wrap {
    max-width: 1280px;
    width: 100%;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: -2px;
    margin-right: -2px;
    transition: 1s all;
}

.floating-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    transition: 0.1s all;
}

.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"], select {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.90);
    display: flex;
    width: 200px;
    box-sizing: border-box;
    padding: 8px 10px;
    align-items: center;
    color: #111;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.5px;
    border: none;
}

select {
    color: rgba(34, 34, 34, 0.50);
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400;
    letter-spacing: -0.4px;
    padding: 11.5px 10px;
}

.floating-contact input[type="text"]:focus {
    background: #FFF;
}

.floating-contact input[type="text"]::placeholder, select {
    color: rgba(10, 24, 69, 0.50);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

option {
    color: #111;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.4px;
}

.floating-form-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.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 #DDD;
}

.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: 15px !important;
    background-position: center center !important;
    background-color: #FFF;
    background-repeat: no-repeat;
    border: none;
}

.floating-agree-wrap .agree {
    color: #FFF;
    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 36px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #562A06;
    color: #FFF;
    font-family: "GmarketSansMedium";
    font-size: 18px;
    letter-spacing: -0.45px;
    border: none;
}

.f-btn:hover {
    background: #351800;
}

.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;
}

#floating-container.open {
    width: 100%;
    justify-content: center;
}

#floating-container.open .form-bg svg path {
    fill: #EFE4CB;
}

#floating-container.open .floating-form {
    width: auto;
    left: 0;
    opacity: 1;
}

#floating-mo-container {
    background: #EFE4CB;
    display: none;
    width: 100%;
    height: 50px;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--1, #19493B);
    font-family: "SF_HambakSnow";
    font-size: 16px;
    line-height: 34px; /* 212.5% */
    letter-spacing: -0.4px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 50;
}

#floating-mo-container.click {
    background: #E7DBC1;
}

.floating-mo-form {
    width: 100%;
    background: #F1EBE7;
    display: none;
    box-sizing: border-box;
    padding: 10px 5px;
    /* transform: translateY(100%); */
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 50;
}

.mo-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.mo-form .input-wrap {
    width: 100%;
}

.floating-mo-form input[type="text"], .floating-mo-form select {
    height: 40px;
    width: 33.3%;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.80);
    display: flex;
    box-sizing: border-box;
    padding: 8px 10px;
    align-items: center;
    color: #111;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.5px;
}

.floating-mo-form input[type="text"]::placeholder, .floating-mo-form select {
    color: rgba(10, 24, 69, 0.50);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

.floating-mo-form.show-form {
    transform: translateY(-48px);
}

.mo-form {
    width: 100%;
}


#go-contact {
    height: fit-content;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 99;
    display: flex;
    box-sizing: border-box;
    padding-right: 12px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 200px;
    background: rgba(255, 255, 255, 0.90);
    overflow: hidden;
    color: #333;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 125%; /* 17.5px */
    letter-spacing: -0.35px;
    white-space: nowrap;
    cursor: pointer;
}

.headset-div {
    border-radius: 100px;
    border: 1px solid #FFF;
    background: #F0832C;
    display: flex;
    width: 40px;
    aspect-ratio: 1/1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

#go-contact:hover {
    background: #FFF;
}

#go-contact:hover .headset-div {
    background: #E87519;
}

.agree-modal {
    position: fixed;
    top: 2.5vh;
    width: 1080px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    cursor: pointer;
    z-index: 1005;
    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: 1001 !important;
}

.bold {
    font-weight: 700 !important;
}

.semibold {
    font-weight: 600 !important;
}

.bold-g {
    font-family: "Gmarket Sans";
}

.primary {
    color: #562A06 !important;
}

.o {
    color: #F0832C !important;
}

.w {
    color: #FFF !important;
}

.sub {
    color: #505050 !important;
}

.y {
    color: #FFDC6A !important;
}

.pg-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.pg-tit {
    color: #4F2323;
    text-align: center;
    font-family: "Gmarket Sans";
    font-size: 64px;
    line-height: 125%; /* 80px */
    letter-spacing: -1.6px;
    position: relative;
    z-index: 5;
}

.pg-sub-tit {
    color: #4F2323;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 145%; /* 43.5px */
    letter-spacing: -0.75px;
    position: relative;
    z-index: 5;
}

.justify-end {
    justify-content: flex-end !important;
}

.text-right {
    text-align: right;
}

/* 900px */
.mi-br {
    display: none;
}
.tab-br{
    display: none;
}
/* 650px */
.mo-br {
    display: none;
}

/* 480px */
.xs-br {
    display: none;
}

.page-top-container{
    width: 100%;
    height: 500px;
    background-size: cover !important;
    background-position: center center !important;
}
.page-top-container .inner-wrap{
    max-width: 1280px;
    margin: 0 auto;
    width: 90%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.page-top-container .inner-wrap .sub-tit{
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;

    font-style: normal;
    font-weight: 400;
    line-height: 50px; /* 250% */
    letter-spacing: 0px;
}
.page-top-container .inner-wrap .tit{
    color: #FFF;
    text-align: center;
    font-family: "Pretendard" !important;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 111.111% */
    letter-spacing: 0px;
}
.page-top-container .inner-wrap .breadcrumb{
    position: absolute;
    bottom: 15px;
    left: 0;
    color: #FFF;
    font-family: Pretendard;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.float-wrap{
    position: fixed;
    right: 70px;
    bottom: 40px;
    max-width: 190px;
    width: 24%;
    z-index: 10;
}
.float-wrap img{
    width: 100%;
    cursor: pointer;
}

@media(max-width: 1500px) {
    #header .side-wrap{
        right: 30px;
    }
}
@media(max-width: 1400px) {
    #header nav>ul>li{
        margin: 0 15px
    }
    #header nav>ul>li:nth-child(1) {
        margin: 0 15px 0 0;
    }
    #header nav>ul>li:nth-last-child(1) {
        margin: 0 0 0 15px;
    }
    footer {
        padding: 0 40px;
    }
}

@media(max-width: 1350px) {
    .footer-container .bottom-wrap .footer-logo{
        width: 100px;
    }
    #header nav>ul>li .menu {
        padding: 10px 10px 8px;
    }
    #header .side-wrap .site-map{
        font-size: 14px;
    }
    #header .side-wrap .site-map p {
        margin-right: 15px;
    }
}
@media(max-width: 1280px) {
    .logo {
        width: 140px;
    }
    #header nav>ul>li {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    #header .side-wrap .icon{
        display: none;
    }

    .desktop {
        width: 250px;
        top: -182px;
        left: 2%;
    }
    .floating-form {
        gap: 20px;
    }
    .floating-contact {
        gap: 16px;
    }
    .floating-form>p {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .floating-contact input[type="text"], select {
        width: 180px;
    }
    .f-btn {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .pg-tit {
        font-size: 56px;
        letter-spacing: -1.4px;
    }
    .pg-sub-tit {
        font-size: 28px;
        letter-spacing: -0.7px;
    }
    .footer-container .bottom-wrap {
        padding: 20px 0 80px;
    }
    .footer-container .bottom-wrap .footer-logo{
        display: none;
    }
    .footer-container .top-wrap{
        justify-content: flex-start;
        gap: 25px;

    }
    .footer-container .top-wrap .footer-logo{
        display: block;
        width: 80px;
    }
    .footer-container .top-wrap .sns-wrap{
        position: absolute;
        right: 5%;
    }
}

@media(max-width: 1200px) {
    .floating-contact input[type="text"], select {
        width: 165px;
    }
    .agree-modal {
        width: 100%;
        left: 0;
        top: 0;
        min-height: 100vh;
        height: 100%;
        transform: none;
    }
    #header nav>ul>li{
        margin: 0 10px
    }
    #header nav>ul>li:nth-child(1) {
        margin: 0 10px 0 0;
    }
    #header nav>ul>li:nth-last-child(1) {
        margin: 0 0 0 10px;
    }
    #header .side-wrap .site-map p {
        font-weight: 500;
        margin-right: 25px;
    }
}

@media(max-width: 1100px) {
    #header .logo {
        display: none;
    }
    #header .mo-logo {
        display: inline-block;
        width: 105px;
    }
    #header {
        height: 90px;
        padding: 8px 12px;
    }
    #header nav {
        display: none;
    }
    #header .fran-wrap{
        display: none;
    }
    #header .side-wrap .site-map{
        display: none;
    }
    .gt-wrap{
        left: 20px;
        top: 9.5px;
    }
    .mo-menu-open {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .input-wrap {
        gap: 4px;
    }
    .floating-contact, .floating-form {
        gap: 12px;
    }
    .floating-contact input[type="text"], select {
        width: 150px;
    }
    select {
        padding: 10.5px 10px;
    }

}

@media(max-width: 1024px) {
    .fixed-btn {
        right: 14.5px;
        bottom: 14.5px;
    }
    #floating-container {
        display: none;
    }
    .f-btn {
        padding: 0 40px;
        height: 42px;
    }
    .floating-agree-wrap .round-checkbox {
        width: 30px;
        height: 30px;
    }
    #go-contact {
        bottom: 20px;
        right: 10px;
    }
    .page-top-container .inner-wrap .tit{
        font-size: 45px;
    }
    .footer-container .bottom-wrap .copyright,
    .footer-container .bottom-wrap .text-wrap .txt{
        font-size: 12px;
    }
}

@media(max-width: 900px) {
    .tab-br{
        display: block;
    }
    #fixed-contact {
        border-radius: 100px 100px 0 0;
        transform: translateY(70%);
    }
    .fixed-contact-open, .fixed-div {
        display: flex;
    }
    .fixed-form {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    .fixed-flex {
        width: 90%;
        flex-direction: column;
        gap: 16px;
    }
    .fixed-flex>.fixed-flex {
        width: 100%;
        flex-direction: row;
    }
    .fixed-form input[type="text"] {
        width: 100%;
    }
    .fixed-wrap {
        width: 90%;
        justify-content: space-between;
    }
    .fixed-c-btn {
        height: 50px;
        padding: 10px 30px;
    }
    .pg-tit {
        font-size: 48px;
        letter-spacing: -1.2px;
    }
    .pg-sub-tit {
        font-size: 24px;
        letter-spacing: -0.6px;
    }
    .mi-br {
        display: block;
    }
    .footer-container .top-wrap .footer-logo {
        display: block;
        width: 60px;
    }
    .footer-container .bottom-wrap .copyright, .footer-container .bottom-wrap .text-wrap .txt {
        font-size: 10px;
    }
    .footer-container .top-wrap .phone{
        font-size: 17px;
    }
    .footer-container .top-wrap {
        justify-content: flex-start;
        gap: 20px;
        padding: 10px 0;
    }
}

@media(max-width: 768px) {
    .agree-modal {
        padding: 0 20px;
    }
    .mo-br {
        display: block;
    }
    .page-top-container .inner-wrap .tit{
        font-size: 40px;
    }
    .page-top-container .inner-wrap .sub-tit{
        line-height: 30px;
    }
    .footer-container .bottom-wrap .text-wrap {
        gap: 10px;
        flex-wrap: wrap;

    }
    .footer-container .bottom-wrap .text-wrap .txt:after{
        right: -4px;
    }
    .footer-container .bottom-wrap {
        padding: 20px 0 50px;
    }
    .footer-container .bottom-wrap .copyright, .footer-container .bottom-wrap .text-wrap .txt {
        font-size: 14px;
    }
    .float-wrap{
        right: 20px;
        bottom: 20px;
    }
}

@media(max-width: 720px) {
    .footer-container .bottom-wrap .text-wrap .txt:nth-child(2):after{
        display: none;
    }
}
@media(max-width: 650px) {

    .logo {
        width: 145px;
    }
    .fixed-contact-open {
        width: 30px;
        height: 30px;
    }
    .fixed-div>div {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .fixed-div>div>svg {
        width: 25px;
        height: 25px;
    }
    .fixed-div>div>span {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .fixed-flex, .fixed-wrap {
        width: 100%;
        gap: 12px;
    }
    .fixed-wrap {
        align-items: start;
        flex-direction: column;
    }
    .fixed-c-btn {
        width: 100%;
    }
    .float-wrap{
        width: 35%;
    }
    .input-wrap {
        gap: 4px;
    }
    .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;
    }
    .pg-tit {
        font-size: 40px;
        letter-spacing: -1px;
    }
    .pg-sub-tit {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
}

@media(max-width: 480px) {
    .gt-wrap {
        left: 10px;
        top: 6px;
    }
    .gt-select {
        width: 72px;
        height: 28px;
        padding: 0 0px 0 25px;
        font-size: 10px !important;
        background: url(https://www.google.com/images/branding/googleg/1x/googleg_standard_color_128dp.png) no-repeat 11px center / 11px;
        background-color: #fff;
    }
    .pg-tit {
        font-size: 32px;
        letter-spacing: -0.8px;
    }
    .pg-sub-tit {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .xs-br {
        display: block;
    }
    .xs-no-br {
        display: none;
    }
    .page-top-container{
        height: 380px;
    }
    .page-top-container .inner-wrap .tit{
        font-size: 35px;
    }
    .page-top-container .inner-wrap .sub-tit {
        line-height: 20px;
        font-size: 18px;
    }
    .page-top-container .inner-wrap .breadcrumb{
        font-size: 13px;
    }
    footer {
        padding: 0 20px;
    }
    .footer-container .top-wrap .phone {
        font-size: 14px;
    }
    .footer-container .top-wrap .footer-logo {
        display: block;
        width: 45px;
    }
    .footer-container .top-wrap {
        justify-content: flex-start;
        gap: 10px;
        padding: 10px 0;
    }
    .footer-container .top-wrap .sns-wrap img {
        width: 25px;
        cursor: pointer;
    }
    .footer-container .bottom-wrap .copyright, .footer-container .bottom-wrap .text-wrap .txt {
        font-size: 12px;
    }

}

@media(max-width: 370px) {
    .f-btn {
        padding: 0 32px;
    }
}
