@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap');

@font-face {
    font-family: 'Ownglyph_kimkonghae';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408@1.0/Ownglyph_kimkonghae.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

.main-wrapper {
    padding-top: 80px;
}


.navbar {
    display: none;
}

.navbar__toggleBtn {
    display: none;
    position: absolute;
    right: 32px;
}

.sidebar img {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 768px) {

    .main-wrapper {
        padding-top: 60px;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 60px;
        padding: 0 20px;
        box-sizing: border-box;
        position: fixed;
        align-items: center;
        background: #fff;
        border-bottom: 1px solid #F4F4FF;
        z-index: 9999;
    }

    .navbar__logo {
        margin: 0;
    }

    .sidebar {
        display: none;
    }

    .navbar__menu {
        display: none;
    }

    .navbar__menu__mobile {
        position: absolute;
        display: block;
        top: 42px;
        width: 100%;
        height: calc(100vh - 60px);
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        z-index: 2;
    }


    img {
        display: inline-block;
        width: 75px;

    }
}

.navbar__toggle__container {
    display: block;
    width: 24px;
    height: 24px;
}

.navbar__toggleBtn {
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

input[id="trigger"] {
    display: none;
}

input[id="trigger"]:checked ~ .sidebar {
    position: fixed;
    right: 0;
    display: block;
    width: 100%;
    margin: auto;
}

label[for="trigger"] {
    display: block;
    cursor: pointer;
}

label[for="trigger"] span {
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    border-radius: 8px;
    background-color: #000;
    transform: translateX(2px);
    transition: 0.3s;
    z-index: 1;
}

label[for="trigger"] span:nth-child(1) {
    top: 0;
}

label[for="trigger"] span:nth-child(2) {
    top: 50%;
}

label[for="trigger"] span:nth-child(3) {
    top: 100%;
}

input[id="trigger"]:checked + label[for="trigger"] span:nth-child(1) {
    top: 50%;
}

input[id="trigger"]:checked + label[for="trigger"] span:nth-child(2) {
    opacity: 0;
}

input[id="trigger"]:checked + label[for="trigger"] span:nth-child(3) {
    top: 50%;
}

.navbar__menu__mobile {
    background-color: #fff;
}

.navbar__menu__mobile li {
    padding: 18px 24px;
}

.navbar__submenu__mobile li {
    padding: 0 0 0 10px;
}

.navbar__menuItem__mobile > div {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.navbar__menu__mobile > img {
    width: 24px;
    height: 24px;
}

.navbar__menu__mobile > li span {
    font-size: 18px;
    font-weight: 800;
    line-height: 22px;
    color: #333a44;
}

.navbar__submenu__mobile {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.nav_mobile_row {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_mobile_best_row {
    display: flex;
}

.nav_mobile_best {
    margin-left: 10px;
    padding: 1px 4px 0;
    border-radius: 6px;
    background-color: rgba(19, 189, 126, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    color: white;
}

.nav_mobile_new {
    margin-left: 10px;
    padding: 1px 4px 0;
    border-radius: 6px;
    background-color: #F53E50;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    color: white;
}

.nav_mobile_arrow {
    width: 20px;
    height: 20px;
    opacity: 0.4;
}

.nav_mobile_t1 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.005em;
    margin: 0;
    font-weight: 700;
    color: rgba(17, 17, 17, 1);
}

.nav_mobile_t2 {
    margin: 30px 0 0;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.005em;
    font-weight: 700;
    color: rgba(134, 140, 156, 1);
}

.nav_mobile_t3 {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.005em;
    margin: 0;
    font-weight: 600;
}

.nav_mobile_line {
    margin-top: 30px;
    width: 100%;
    height: 1px;
    background-color: rgba(134, 140, 156, 0.2);
}


.pc_header {
    display: none;
}

@media screen and (min-width: 960px) {
    .pc_header {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1000;
        width: 100%;
        min-width: auto;
        height: 80px;
        background: #fff;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(9, 30, 66, .14);
        right: 0;
        margin: auto;
    }


    .scrolling .pc_header {
        border-bottom: 1px solid #f1f1f1;
    }

    .head_wrapper {
        display: flex;
        height: 100%;
        box-sizing: border-box;
        max-width: 1200px;
        justify-content: center;
        margin: 0 auto;
    }

    .head_wrapper h1 {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 0;
        font-weight: 400;
        font-size: 18px;
        line-height: 17px;
        color: #999;
    }

    .head_wrapper .head_category {
        display: flex;
        align-items: center;
        justify-content: end;
        width: 100%;
    }

    .head_wrapper .gnb_comm {
        display: flex;
        flex: 1;
        min-width: 0;
    }

    .head_wrapper .head_wrap {
        display: none;
    }

    .head_wrapper .btn_nav {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        margin-left: 15px;
        box-sizing: border-box;
    }

    .head_wrapper .btn_nav .ico_nav {
        width: 22px;
        height: 16px;
        background-position: -160px 0;
    }

    .head_wrapper .head_menu {
        flex: 1;
        min-width: 0;
    }

    .head_wrapper .list_menu {

        display: flex;
    }

    .head_wrapper .link_menu {
        align-content: center;
    }

    .head_wrapper .list_menu li, .head_wrapper .list_menu li {
        position: relative;
    }


    .head_wrapper .list_menu li:hover .link_menu ~ .sub_menu {
        display: block;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
        border: 1px solid rgba(9, 30, 66, .14);
        overflow-y: auto;
        height: auto;
        padding: 10px 15px;
        width: 100%;
        white-space: nowrap;
    }

    .head_wrapper .list_menu li.on .link_menu {
        font-weight: 500;
    }

    .head_wrapper .logo {
        align-self: center;
    }

    .head_wrapper .logo img {
        width: 80px;
        margin-top: 5px;
    }

    .head_wrapper .list_menu .link_menu {
        display: block;
        height: 60px;
        padding: 0 16px;
        font-weight: 700;
        font-size: 15px;
        line-height: 62px;
        color: rgb(0, 0, 0);
    }

    .head_menu .sub_menu {
        display: none;
        position: absolute;
        top: 50px;
        left: -20px;
        min-width: max-content;
        padding: 20px;
        box-shadow: 0 0 8px 2px rgba(3, 9, 35, 0.15);
        background-color: #fff;
        border-radius: 4px;
        box-sizing: border-box;
        z-index: 10;
        cursor: default;
    }

    .login_menu .head_menu .sub_menu {
        display: none;
        position: absolute;
        top: 43px;
        left: -10px;
        min-width: max-content;
        padding: 7px;
        box-shadow: 0 0 8px 2px rgba(3, 9, 35, 0.15);
        background-color: #fff;
        border-radius: 4px;
        box-sizing: border-box;
        z-index: 10;
        cursor: default;
    }

    .head_menu .sub_menu .inner_sub {
        display: flex;
        width: 100%;
    }

    .head_menu .sub_menu .list_sub {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        min-width: 145px;
        max-height: 180px;
    }


    .head_menu .sub_menu .list_sub li {
        width: 100%;
    }

    .head_menu .sub_menu .list_sub:has(li:nth-child(6)) {
        min-width: 332px;
    }

    .head_menu .sub_menu .list_sub li.on .link_sub {
        background-color: #F2F6FD;
        font-weight: 500;
        color: #42BC74;
    }

    .head_menu .sub_menu .link_sub {
        display: flex;
        padding: 14px 16px;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: rgb(0, 0, 0);
        letter-spacing: -0.3px;
        box-sizing: border-box;
    }


    .head_menu .sub_menu .link_sub:hover {
        font-weight: 700;
        background-color: rgba(9, 30, 66, .04) !important;
        border: none;
        border-radius: 12px;
    }

    .head_menu .sub_menu .link_sub .ico_outing {
        display: inline-block;
        margin: 4px 0 0 6px;
        background-position: -40px 0;
    }

    .head_wrapper .list_menu li:nth-child(5) .list_sub {
        min-width: 356px;
    }

    .head_wrapper .list_menu li:nth-child(5) .list_sub:has(li:nth-child(11)) {
        min-width: 538px;
    }


    .head_wrapper .list_menu li:hover .link_menu {
        font-weight: 700;
        color: #fb8589;
    }

    .head_wrapper .list_menu.ie_only li:hover .sub_menu {
        display: block;
    }

    .login_menu {
        align-self: baseline;
    }

    .login_menu .list_login {
        align-items: center;
        display: flex;
    }

    .login_menu .list_login .link_menu {
        display: block;
        height: 34px;
        padding: 0 10px 0;
        margin: 13px 10px 0 0;
        font-weight: 700;
        font-size: 18px;
        line-height: 32px;
        box-sizing: border-box;
        border: none;
        border-radius: 8px;
        color: #222222;
        font-family: 'Ownglyph_kimkonghae';
        letter-spacing: 0.1em;
    }


    .login_menu .login_link {
        border: none;
        border-radius: 8px;
        background-color: #fb8589;
        font-weight: 600 !important;
        color: #fff !important;
    }

    .login_link:hover {
        color: #fff !important;
    }

    .login_menu .list_login .link_menu:hover {
        text-decoration: none;
        color: #fb8589;
        font-weight: 700;
    }

    .login_menu .list_login .link_logout {
        margin-right: -20px;
        border-color: transparent;
    }

    .login_menu .list_login .link_logout:hover {
        color: rgb(0, 0, 0);;
        border-color: transparent;
        font-weight: 400;
        text-decoration: underline;
    }

}


.contact-container .tit {
    color: #333;
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
font-family: 'Ownglyph_kimkonghae';
}

.contact-container .contact-card {
    margin-bottom: 20px;
    width: 100%;
}

.contact-container .contact-card .card-inner {
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Ownglyph_kimkonghae';
    cursor: pointer;
}

.contact-container .contact-card .card-inner:hover {
    transform: translateY(-5px);
}

.contact-container .contact-card .card-inner.instagram {
    background-color: #fff2f2;
}

.contact-container .contact-card .card-inner.tel {
    background-color: #e6ffd9;
}

.contact-container .contact-card .card-inner.kakao {
    background-color: #fff2d7;
}

.contact-container .contact-card .card-icon {
    display: inline-block;
    background-color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    margin-bottom: 15px;
}


.contact-container .contact-card .card-tit {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}


.contact-container .contact-card .card-txt {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}


/* footer */
#footer {
    background-color: #1a1a1a;
    font-size: 15px;
    color: #aaa;
    line-height: 1.733em;
    padding: 25px 0;
    margin-top: 5vh;
}

#footer .contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1460px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}

#footer address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
}

#footer address p {
    margin-right: 40px;
}

#footer address span {
    font-weight: 500;
    color: #fff;
}


.transition-hover {
    transition: all 0.2s ease;
}

.transition-hover:hover {
    transform: translateY(-2px);
}


.main-visual-container {
    position: relative;
    overflow: hidden;
    height: 750px;
}

.main-visual-container .visual-item {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1s ease, opacity 1.2s ease;
    z-index: 1;
    visibility: visible;
    display: block;
}

.main-visual-container .visual-item.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}


.main-visual-container .visual-item.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.main-visual-container .visual-item .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.main-visual-container .visual-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.main-visual-container {
    height: 750px;
}

.main-visual-container .visual-item {
    display: none;
    height: 750px;
}

.main-visual-container .visual-item.active {
    display: block;
}


@media screen and (min-width: 768px) {

    .main-visual-container {
        height: 750px;
    }

    .main-visual-container .visual-item {
        height: 750px;
    }


}


.main-visual-container .visual-item .txt-box {
    color: #fff;
    position: absolute; /* absolute로 변경하여 정확한 위치 지정 */
    left: 50%; /* 가로 중앙 정렬을 위해 */
    top: 50%; /* 세로 중앙 정렬을 위해 */
    transform: translate(-50%, -50%); /* 정확한 중앙 정렬을 위한 transform */
    z-index: 50;
    width: 90%; /* 너비를 제한하여 내용이 짤리지 않도록 함 */
    max-width: 1200px; /* 최대 너비 설정 */
    text-align: center; /* 텍스트 가운데 정렬 */
    padding: 20px; /* 여백 추가 */
}

/* 반응형으로 글자 크기 조절 */
.main-visual-container .visual-item .txt-box .tit {
    font-family: 'Ownglyph_kimkonghae';
    color: #fff;
    font-size: calc(30px + 2vw); /* 반응형 글자 크기 */
    line-height: 1.2em;
    margin-bottom: 30px;
    font-weight: 800;
}

.main-visual-container .visual-item .txt-box .sub-tit {
    font-family: 'Ownglyph_kimkonghae';
    color: #fff;
    font-size: calc(24px + 1.5vw); /* 반응형 글자 크기 */
    line-height: 1.2em;
    margin-bottom: 30px;
    font-weight: 800;
}


.main-visual-container .visual-item .txt-box .txt {
    font-family: 'Ownglyph_kimkonghae';
    line-height: 1.5em;
    font-size: calc(16px + 1vw); /* 반응형 글자 크기 */
    margin: 0 auto; /* 가운데 정렬을 위해 */
}

.talk-feature-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.talk-feature-container .inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    width: 100%;
}

.talk-feature-container .talk-box-wrapper {
    height: 230px;
    position: relative;
    width: 100%;
}

.talk-feature-container .talk-box-inner-wrapper {
    opacity: 1;
    align-items: center;
    display: flex;
    flex-direction: column;
    left: 50%;
    max-width: 900px;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
}

.talk-feature-container .talk-box-inner-wrapper .talk-item {
    transform: translateY(30px);
    margin-bottom: 25px;
    opacity: 0;
    transition: all 0.6s ease;
}

.talk-feature-container .talk-box-inner-wrapper .talk-item.active {
    opacity: 1;
    transform: translateY(0);
}

.talk-feature-container .talk-box-inner-wrapper .talk-item.left {
    align-self: flex-start;
}

.talk-feature-container .talk-box-inner-wrapper .talk-item.right {
    align-self: flex-end;
}

.talk-feature-container .talk-box-inner-wrapper .talk-item .talk-wrapper {
    display: flex;
    gap: 20px;
}

.talk-feature-container .talk-box-inner-wrapper .talk-item .talk-wrapper .talk-profile svg {

    background: #E4E6EA;
    border-radius: 9999px;

}

.talk-feature-container .talk-box-inner-wrapper .talk-item .talk-wrapper .talk-text-wrapper .talk-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.6px;
    color: #485363;
    line-height: 24px;
}

.talk-feature-container .talk-box-inner-wrapper .talk-item .talk-wrapper .talk-text-wrapper .talk-text-box {
    background-color: #e7f0f5;
    border-radius: 0 16px 16px 16px;
    color: #485363;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.6px;
    line-height: 30px;
    padding: 20px 30px;
    word-break: keep-all;
}

.talk-content-wrapper {
    display: flex;
    height: 450px;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.talk-content-wrapper .big-circle-bottom-content {
    color: #fff;
    position: absolute;
    top: 480px;
    width: 100%;
    z-index: 100;
}

.talk-content-wrapper .big-circle-bottom-content .bottom-money-background-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    left: 0;
    padding-bottom: 20px;
    padding-top: 50px;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(calc(-50% + 50px));
    transform: translateY(calc(-50% + 50px));
    width: 100%;
    z-index: -1;
}

.talk-content-wrapper .white-text-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}
.talk-content-wrapper .white-text-box .tit-wrap .tit {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -.6px;
    line-height: 48px;
    font-family: 'Ownglyph_kimkonghae';
    color: #fff;
}

.talk-content-wrapper .white-text-box .txt-wrap {
    margin-top: 10px;
    font-family: 'Ownglyph_kimkonghae';
    width: 100%;
    height: 100%;
}

.talk-content-wrapper .white-text-box .txt-wrap .tit {
    font-size: 36px;
    letter-spacing: -.6px;
    line-height: 36px;
}

.talk-content-wrapper .white-text-box .txt-wrap .txt {

    font-size: 34px;
    letter-spacing: -.6px;
    line-height: 36px;

}

.big-circle {
    background-color: #39424e;
    flex-shrink: 0;
    height: 400px;
    margin-top: 140px;
    position: absolute;
    width: 100%;
    border-radius: 1rem;
}
.big-circle .rotating-icon-wrapper {
    bottom: 0;
    display: flex;
    left: 50%;
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    transform: translateX(-50%);
    top: -90px;
}

.service-intro-container {
    height: 100%;
    margin: 140px 0;
}

.service-intro-container .title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -.6px;
    line-height: 54px;
    align-self: flex-start;
    padding-inline: 10px;
    white-space: pre-line;
    margin: 30px 0;
    font-family: 'Ownglyph_kimkonghae';
}

.service-intro-container .title span {
    color: #198de7;
}

.service-intro-container .intro-card {
    border-radius: 20px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .1);
    height: 100%;
    overflow: hidden;
    width: 100%;
    transition: all 0.2s ease;
}

.service-intro-container .intro-card:hover {
    transform: translateY(-5px);
}

.service-intro-container .intro-card .intro-card-image img {
    display: block;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
}


.service-intro-container .intro-card .intro-card-info {

    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 30px 20px;

}

.service-intro-container .intro-card .intro-card-title {
    font-weight: 700;
    letter-spacing: -.6px;
    line-height: 36px;
    margin: 0 0 10px;
    word-break: keep-all;
    font-family: 'Ownglyph_kimkonghae';
    font-size: 29px;
}

.service-intro-container .intro-card .intro-card-contents {
    color: #485363;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 27px;
    white-space: pre-line;
    word-break: keep-all;
    font-family: 'Ownglyph_kimkonghae';
}

.main-feature-bg {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: rgb(253, 255, 203);
    z-index: -1;
    height: 750px;
}


.main-feature-container .feature-header-container {
    margin-top: 50px;
    text-align: left;
}

.main-feature-container .feature-header-container .tit {
    color: rgb(34, 34, 34);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.5px;
    font-family: 'Ownglyph_kimkonghae';
}

.main-feature-container .feature-header-container .txt {
    color: rgb(146, 146, 146);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.05em;
    font-family: 'Ownglyph_kimkonghae';
}

#main-feature-list {
    margin: 20px 0 40px;
}

#main-feature-list .feature-item {
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    max-height: 270px;
    height: 100%;
    opacity: 0;
    transform: translateY(50px);
}

#main-feature-list .feature-item.active {
    opacity: 1;
    transform: translateY(0);
}

#main-feature-list .feature-item:hover {
    transform: translateY(-5px);
}


#main-feature-list .feature-item .tit {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Ownglyph_kimkonghae';
    color: #242424;
}

#main-feature-list .feature-item .txt {
    font-size: 23px;
    font-weight: 400;
    font-family: 'Ownglyph_kimkonghae';
    color: #242424;
    margin-top: 30px;
}


.main-review-container {
    margin: 100px 0;
    overflow: hidden;
    margin: 0 auto;
    touch-action: pan-y;
}

.review-swiper .swiper-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-swiper .swiper-slide {
    flex: 0 0 400px;
    height: 300px;
    background-color: #f2f2f2;
    margin-right: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}


.main-review-container .title-wrapper {
    margin-bottom: 30px;
}

.main-review-container .title-wrapper .tit {
    color: #333333;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -.6px;
    line-height: 1.1;
    white-space: nowrap;
    font-family: 'Ownglyph_kimkonghae';
}

.main-review-container .review-swiper {
    display: flex;
    height: 100%;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
    touch-action: pan-y;
}

.main-review-container .review-swiper .swiper-slide {
    display: block;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: fit-content;
    margin-right: 18px;
    border-radius: 14px;
}

.main-review-container .review-swiper .review-cover-wrapper {
    display: block;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: fit-content;
    width: 407px;
    height: 480px;
    border-radius: 14px;
    padding: 26px 20px;
}


.main-review-container .review-swiper .review-cover-wrapper .cover-content-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
    z-index: 2;
}

.main-review-container .review-swiper .review-cover-wrapper .cover-content-box .cover-outer-top-box {

    display: flex;
    flex-direction: column;
    gap: 20px;

}

.main-review-container .review-swiper .review-cover-wrapper .cover-content-box .cover-content-top-box {

    align-items: center;
    display: flex;
    justify-content: space-between;

}

.main-review-container .review-swiper .review-cover-wrapper .cover-content-middle-box {

    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    text-align: left;
    white-space: pre-line;

}

.main-review-container .review-swiper .review-cover-wrapper .cover-content-middle-box .review-company-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.6px;
    line-height: 36px;
    font-family: 'Ownglyph_kimkonghae';
    color: #333333;
}

.main-review-container .review-swiper .review-cover-wrapper .cover-content-middle-box .review-company-description {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -.6px;
    line-height: 32px;
    word-break: keep-all;
    color: #485363;
    font-family: 'Ownglyph_kimkonghae';

}

.main-review-container .review-swiper .review-cover-wrapper .cover-outer-bottom-box {


    display: flex;
    flex-direction: column;
    gap: 18px;


}


.main-review-container .review-swiper .review-cover-wrapper .cover-outer-bottom-box .cover-bottom-box-divider {


    background-color: #e4e6ea;
    height: 1px;
    width: 50%;


}

.main-review-container .review-swiper .review-cover-wrapper .cover-outer-bottom-box .cover-name-box {


    align-items: center;
    display: flex;
    gap: 10px;


}

.main-review-container .review-swiper .review-cover-wrapper .cover-outer-bottom-box .review-company-reviewer-name {


    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.6px;
    line-height: 21px;


}

.main-review-container .review-swiper .review-cover-wrapper .cover-outer-bottom-box .cover-name-box-divider {


    background-color: #e4e6ea;
    height: 14px;
    width: 1.5px;


}

.main-review-container .review-swiper .review-cover-wrapper .cover-outer-bottom-box .review-company-name {


    font-size: 14px;
    color: #485363;
    font-weight: 400;
    letter-spacing: -.6px;
    line-height: 21px;


}


/* 모바일 환경에서 추가 조정 */
@media screen and (max-width: 768px) {
    .main-visual-container .visual-item .txt-box {
        width: 85%;
        padding: 15px;
    }

    .main-visual-container .visual-item .txt-box .tit {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .main-visual-container .visual-item .txt-box .sub-tit {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .main-visual-container .visual-item .txt-box .txt {
        font-size: 20px;
        white-space: nowrap;
    }

    .main-visual-container .visual-item .txt-box {
        top: 35%;
    }

    .service-intro-container .title {
        font-size: 30px;
    }

    .main-feature-container .feature-header-container .tit {
        font-size: 32px;
    }

    .pricing-container .pricing-header h1 {
        font-size: 29px;
    }

    .main-review-container .title-wrapper {
        text-align: center;
    }

}

/* 데스크톱 환경에서의 조정 */
@media screen and (min-width: 1200px) {
    .main-visual-container .visual-item .txt-box .tit {
        font-size: 60px;
    }

    .main-visual-container .visual-item .txt-box .sub-tit {
        font-size: 50px;
    }

    .main-visual-container .visual-item .txt-box .txt {
        font-size: 33px;
    }

    .main-visual-container .visual-item .txt-box {
        top: 45%;
    }
}


.sub-visual-container {
    letter-spacing: -.03em;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    height: 300px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    justify-content: center;
}

.sub-visual-container .tit-box {
    text-align: center;
}

.sub-visual-container .tit-box .tit {
    font-size: 54px;
    font-family: 'Montserrat';
    font-weight: 700;
    color: #242424;
    margin-bottom: 22px;

}

.sub-visual-container .tit-box .txt {
    font-size: 22px;
    color: #686868;
}

.contact-info-container .address {
    color: #242424;
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 20px;
}

.contact-info-container .contact-info.type-01 {
    display: flex;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}


.contact-info-container .contact-info.type-01 li {
    font-family: 'Montserrat';
    display: flex;
    margin-right: 70px;
    color: #000;
    font-size: 20px;
    align-items: center;
}

.contact-info-container .contact-info.type-01 li .tit {
    font-weight: 700;
    margin-right: 20px;
}

.contact-info-container .contact-info.type-02 {
    margin-top: 30px;
}

.contact-info-container .contact-info.type-02 li {
    display: flex;
    position: relative;
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info-container .contact-info.type-02 li .tit {
    position: absolute;
    color: #242424;
    font-weight: 700;
    left: 0;
}

.contact-info-container .contact-info.type-02 li .txt {
    margin-left: 180px;
}

@media screen and (max-width: 768px) {

    .contact-info-container .address {
        font-size: 18px;
    }

    .contact-info-container .contact-info.type-01 li {
        font-size: 16px;
    }

    .contact-info-container .contact-info.type-01 {
        display: block;
    }

    .contact-info-container .contact-info.type-01 li {
        margin-right: 0;
        margin-top: 10px;
    }

    .contact-info-container .contact-info.type-02 li {
        display: block;
    }

    .contact-info-container .contact-info.type-02 li .tit {
        position: relative;
    }

    .contact-info-container .contact-info.type-02 li .txt {
        margin-top: 10px;
        margin-left: 0;
    }

    .contact-info-container .contact-info.type-02 li .tit {
        font-size: 18px;
    }

    .contact-info-container .contact-info.type-02 li .txt {
        font-size: 16px;
    }
}


/* map */
.map-container {
    position: relative;
    margin-bottom: 50px;
    padding: 20px;
    border: 2px solid #233446;
    border-radius: 16px;
    height: 500px;
    display: block;
}

#map {
    height: 100%;
}

.emphasize-container {
    text-align: center;
    margin: 80px 0;
}

.emphasize-container .tit {
    font-size: 58px;
    font-weight: 800;
    font-family: 'Montserrat';
    color: #242424;
    margin: 40px 0 60px;
}

.emphasize-container .txt {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 50px;
    position: relative;
}

.faq-container {
    margin-bottom: 50px;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #222;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgb(253, 255, 203);
}

.faq-question i {
    font-size: 1.2rem;
    color: #555;
    transition: transform 0.2s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: rgb(253, 255, 203);
}

/* 핵심 수정 부분 - 답변 영역 스타일 */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    visibility: hidden; /* 내용 숨김 보장 */
    opacity: 0;
    padding: 0 20px;
    background-color: #fff;
    color: #333;
    transition: max-height 0.3s ease-out, padding 0.2s ease, opacity 0.2s ease, visibility 0.3s;
}

.faq-answer ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-question ul, .faq-answer li {
    list-style: circle;
}

/* 활성화된 답변 영역 스타일 */
.faq-question.active + .faq-answer {
    max-height: 2000px; /* 매우 큰 값으로 설정하여 모든 내용이 표시되도록 함 */
    padding: 10px 20px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    visibility: visible; /* 내용 표시 */
    opacity: 1;
}

.faq-question .highlight {
    font-weight: 700;
}

.note {
    background-color: rgb(240 240 240);
    padding: 10px;
    border-left: 3px solid rgb(177 177 177);
    margin-top: 10px;
    font-size: 0.9rem;
}

.highlight {
    background-color: #ffffd9;
    padding: 0 3px;
    font-weight: 700;
}


.pricing-container {
    margin-top: 30px;
}

.pricing-container .pricing-header {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Ownglyph_kimkonghae';
}

.pricing-container .pricing-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.pricing-container .pricing-header p {
    font-size: 26px;
    color: #666;
    margin-top: 0;
}

.pricing-container .pricing-horizontal {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.pricing-container .pricing-left {
    background-color: #FFECEC;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    position: relative;
}

.pricing-container .ticket-icon {
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pricing-container .ticket-icon svg {
    width: 35px;
    height: 35px;
    fill: #FF5A5A;
}

.pricing-container .pricing-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FF5A5A;
    text-align: center;
    font-family: 'Ownglyph_kimkonghae';
}

.pricing-container .pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    text-align: center;
    font-family: 'Ownglyph_kimkonghae';
}

.pricing-container .pricing-caption {
    font-size: 22px;
    color: #666;
    text-align: center;
    font-family: 'Ownglyph_kimkonghae';
}

.pricing-container .pricing-right {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-container .features-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.pricing-container .features-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.pricing-container .feature-item {
    display: flex;
    align-items: center;
    width: 50%;
    margin-bottom: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.pricing-container .feature-item svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #FF5A5A;
    flex-shrink: 0;
}

.pricing-container .feature-item span {
    font-size: 19px;
    color: #000;
    font-family: 'Ownglyph_kimkonghae';
    font-weight: 500;
}

.pricing-container .pricing-notice {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: auto;
}


.pricing-container .pricing-notice h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #444;
}

.pricing-container .pricing-notice p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .pricing-container .pricing-horizontal {
        flex-direction: column;
    }

    .pricing-container .pricing-left {
        width: 100% !important;
        padding: 30px !important;
    }

    .pricing-container .pricing-right {
        padding: 30px;
    }

    .pricing-container .feature-item {
        width: 100%;
    }
}

#reservationBtn {
    margin-top: 20px;
    background: #fff;
    padding: 0.25rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-family: 'Ownglyph_kimkonghae';
    font-size: 20px;
}

.w-rem-5 {
    min-width: 5rem;
    max-width: 5rem;
}

.w-rem-7 {
    min-width: 7rem;
    max-width: 7rem;
}

.w-rem-10 {
    min-width: 10rem;
    max-width: 10rem;
}


.recruit-header-container {
    text-align: center;
}

.recruit-header-container .txt {
    color: rgba(75, 85, 99, 1);
}

.recruit-location-container .info-item {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    padding: 1.5rem;
}