@charset "utf-8";

/* basic-N1 [bIm4mBKt3P] */
.basic-N1 {
    position: relative;
    top: -100%;
    left: 0;
    width: 100%;
    z-index: 200;
    transition: 0.3s;
    background-color: var(--white);
}

.basic-N1.header-top-active {
    position: fixed;
    top: 0;
}

.basic-N1.header-menuactive .header-inner {
    z-index: 200;
}

.basic-N1.header-menuactive .header-inner::before {
    height: 37.3rem;
}

.basic-N1.header-menuactive .header-center {
    top: calc(100% + 12rem);
}

.basic-N1.header-menuactive .header-gnblink {
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
}

.basic-N1.header-menuactive .header-utils .btn-allmenu {
    display: none;
}

.basic-N1.header-menuactive .header-utils .btn-close,
.basic-N1.momenu-active .header-utils .btn-close {
    display: block;
}

.basic-N1.header-menuactive .header-lang {
    display: none;
}

.basic-N1 .header-inner {
    position: relative;
    width: 100%;
    height: 8rem;
    background-color: var(--white);
}

.basic-N1 .header-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 8rem;
    width: 100%;
    background-color: var(--white);
    z-index: -1;
    transition: 0.3s;
}

.basic-N1 .header-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding: 2.4rem 8rem;
}

.basic-N1 .header-title a {
    font-style: italic;
}

.basic-N1 .header-title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.basic-N1 .header-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.basic-N1 .header-mobile-top {
    display: none;
}

.basic-N1 .header-gnblist {
    display: flex;
}

.basic-N1 .header-gnbitem:hover .header-gnblink span::after,
.basic-N1 .header-gnbitem.item-active .header-gnblink span::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--primary);
    transform: scaleX(1);
}

.basic-N1 .header-gnbitem+.header-gnbitem .header-gnblink {
    padding-left: 3rem;
}

.basic-N1 .header-gnbitem:last-child .header-gnblink {
    padding-right: 0;
}

.basic-N1 .header-gnblink {
    padding-right: 3rem;
    font-size: var(--fs-p3);
    line-height: var(--lh-p3);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.basic-N1 .header-gnblink span {
    position: relative;
}

.basic-N1 .header-gnblink span::after {
    content: '';
    height: 0.2rem;
    width: 100%;
    transition: 0.3s;
    transform: scaleX(0);
}

.basic-N1 .header-right {
    display: flex;
    align-items: center;
}

.basic-N1 .header-lang {
    position: relative;
    font-size: var(--fs-p4);
}

.basic-N1 .header-langbtn {
    padding: 0 2rem 0 0.8rem;
    position: relative;
    border: none;
    background: none;
    font-weight: 500;
}

.basic-N1 .header-langbtn::after {
    content: '';
    position: absolute;
    top: 0.4rem;
    right: 0;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../../resources/icons/ico_downarrow_black.svg") no-repeat top right/cover;
}

.basic-N1 .header-langlist {
    position: absolute;
    top: 3rem;
    left: 0;
    z-index: 200;
    border-radius: 0.6rem;
    background-color: var(--primary);
}

.basic-N1 .header-langitem {
    max-height: 0;
    transition: all 0.5s;
    overflow: hidden;
}

.basic-N1 .header-langitem+.header-langitem a {
    padding-top: 0;
}

.basic-N1 .header-langitem a {
    padding: 0.4rem 1.6rem;
    color: var(--text-color5);
    opacity: 0.7;
}

.basic-N1 .header-langitem a:hover {
    opacity: 1;
}

.basic-N1 .header-lang:hover .header-langbtn::after {
    transform: rotate(180deg);
}

.basic-N1 .header-lang:hover .header-langitem {
    max-height: 6.8rem;
}

.basic-N1 .header-utils {
    display: flex;
}

.basic-N1 .header-utils button {
    margin-left: 1.2rem;
    width: 3.2rem;
    height: 3.2rem;
    background: none;
    border: none;
}

.basic-N1 .header-utils button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.basic-N1 .header-utils .btn-close {
    display: none;
    position: relative;
    z-index: 200;
}

.basic-N1 .header-utils .btn-momenu {
    display: none;
}

.basic-N1 .header-dim {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.7);
}

@media (max-width: 1200px) {
    .basic-N1 .header-container {
        align-items: center;
        padding: 0 2.4rem;
    }
}

@media (max-width: 992px) {
    .basic-N1 .header-inner {
        height: 6rem;
    }

    .basic-N1 .header-inner::before {
        content: none;
    }

    .basic-N1 .header-container {
        padding: 0 1.6rem;
    }

    .basic-N1 .header-title a {
        font-style: italic;
        font-size: 2rem;
    }

    .basic-N1 .header-center {
        position: fixed;
        top: 0;
        left: auto;
        right: -100%;
        z-index: 200;
        height: 100%;
        transform: translateX(0);
        background-color: var(--body-bg);
        transition: 0.3s;
    }

    .basic-N1 .header-center .header-title {
        margin-bottom: 0.8rem;
        padding: 0 1.6rem;
    }

    .basic-N1 .header-gnblist {
        display: none;
        width: 100%;
        height: 100%;
        flex-direction: column;
        overflow-y: auto;
    }

    .basic-N1 .header-gnblink {
        display: flex;
        align-items: flex-end;
        width: 100%;
        padding: 1.5rem 0;
        font-size: var(--fs-p2);
        text-align: left;
        padding: 1.4rem 2rem !important;
    }

    .basic-N1 .header-gnbitem:hover .header-gnblink span {
        border: none;
    }

    .basic-N1 .header-lang:hover .header-langitem {
        max-height: 0;
    }

    .basic-N1 .header-lang.lang-active .header-langitem {
        max-height: 6.8rem;
    }

    .basic-N1 .header-lang:hover .header-langbtn::after {
        transform: rotate(0);
    }

    .basic-N1 .header-lang.lang-active .header-langbtn::after {
        transform: rotate(180deg);
    }

    .basic-N1 .header-langlist {
        top: 2.6rem;
    }

    .basic-N1 .header-utils button {
        width: 2.8rem;
        height: 2.8rem;
    }

    .basic-N1 .header-utils .btn-allmenu {
        display: none;
    }

    .basic-N1 .header-utils .btn-momenu {
        display: block;
    }

    .basic-N1.momenu-active .header-center {
        right: 0;
        width: calc(100% - 10rem);
    }

    .basic-N1.momenu-active .header-title {
        height: 6rem;
        display: flex;
        align-items: center;
    }

    .basic-N1.momenu-active .header-lang {
        display: none;
    }

    .basic-N1.momenu-active .header-gnblist {
        display: block;
    }

    .basic-N1.momenu-active .header-gnbitem.item-active .header-gnblink::after {
        content: '';
        transform: rotate(180deg);
    }

    .basic-N1.momenu-active .header-lang {
        display: none;
    }
}

/* basic-N10 [gym4mBKT8O] */
.basic-N10 .contents-container {
    position: relative;
    height: 32rem;
    background-color: skyblue;
}

.basic-N10 .contents-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.basic-N10 .contents-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    padding: 0 1.6rem;
}

.basic-N10 .textset {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .basic-N10 .contents-container {
        height: 60rem;
    }

    .basic-N10 .textset.textset-visual .textset-tit {
        font-size: 4rem;
    }
}

/* basic-N11 [Vim4mBKTb1] */
.basic-N11 .contents-container {
    padding: 8rem 2rem;
}

.basic-N11 .textset {
    margin-bottom: 0;
    text-align: center;
}

.basic-N11 .textset-tit {
    font-weight: 400;
}

@media (max-width: 992px) {
    .basic-N11 .contents-container {
        padding: 5rem 1.6rem;
    }
}

/* basic-N12 [WNm4mBktdT] */
.basic-N12 .contents-inner {
    padding: 8rem 1.6rem;
}

.basic-N12 .contents-container {
    position: relative;
}

.basic-N12 .contents-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.basic-N12 .cardset-figure {
    align-self: flex-start;
}

.basic-N12 .cardset {
    align-items: flex-start;
    justify-content: space-between;
}

.basic-N12 .cardset-tit {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
}

.basic-N12 .cardset .cardset-figure {
    width: calc(50% + 15rem);
    height: 58rem;
}

.basic-N12 .cardset .cardset-body {
    width: calc(50% - 25rem);
    margin-top: 6rem;
    padding-bottom: 14rem;
}

.basic-N12 .cardset+.cardset {
    margin-top: -14rem;
}

.basic-N12 .cardset+.cardset .cardset-figure {
    width: calc(50% - 5rem);
    height: 38rem;
}

.basic-N12 .cardset+.cardset .cardset-body {
    width: calc(50% - 5rem);
    margin-top: 24.4rem;
}

.basic-N12 .cardset+.cardset .cardset-desc {
    margin-top: 0;
}

@media (max-width: 992px) {
    .basic-N12 .contents-inner {
        padding: 5rem 1.6rem;
    }

    .basic-N12 .cardset.cardset-hor {
        flex-direction: column;
    }

    .basic-N12 .cardset+.cardset {
        margin-top: 4rem;
    }

    .basic-N12 .cardset .cardset-figure,
    .basic-N12 .cardset+.cardset .cardset-figure {
        width: 100%;
        height: 30rem;
    }

    .basic-N12 .cardset .cardset-body,
    .basic-N12 .cardset+.cardset .cardset-body {
        width: 100%;
        margin-top: 4rem;
        padding-bottom: 0;
    }
}

/* basic-N13 [ycM4MBKtje] */
.basic-N13 {
    overflow: hidden;
}

.basic-N13 .contents-container {
    padding: 8rem 1.6rem;
}

.basic-N13 .videoset {
    width: calc(100% + 48rem);
    margin-left: -24rem;
}

@media (max-width: 992px) {
    .basic-N13 .contents-container {
        padding: 5rem 1.6rem;
    }

    .basic-N13 .videoset {
        width: 100%;
        height: 50rem;
        margin-left: 0;
    }
}

/* basic-N14 [aTm4mbkTm1] */
.basic-N14 {
    background-color: var(--highlight-bg);
    overflow: hidden;
}

.basic-N14 .contents-inner {
    padding: 8rem 1.6rem;
}

.basic-N14 .textset {
    margin-bottom: 5rem;
    text-align: center;
}

.basic-N14 .contents-group {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 16rem);
    margin-left: -8rem;
}

.basic-N14 .cardset {
    width: calc(100% / 3);
    padding: 5rem 8rem;
}

.basic-N14 .cardset-figure {
    width: 8rem;
    height: 8rem;
    margin: 0 auto;
    border-radius: 1rem;
}

.basic-N14 .cardset-figure+.cardset-body {
    margin-top: 2.4rem;
    text-align: center;
}

.basic-N14 .cardset-desc {
    margin-top: 1.5rem;
    letter-spacing: -0.1rem;
}

@media (max-width: 992px) {
    .basic-N14 .contents-inner {
        padding: 8rem 1.6rem;
    }

    .basic-N14 .textset {
        margin-bottom: 8rem;
    }

    .basic-N14 .contents-group {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }

    .basic-N14 .cardset {
        width: 100%;
        padding: 0;
    }

    .basic-N14 .cardset+.cardset {
        margin-top: 4rem;
    }
}

/* basic-N4 [VCm4MbkTpD] */
.basic-N4 .footer-inner {
    background-color: var(--primary);
}

.basic-N4 .footer-container {
    padding: 2.4rem 13rem;
}

.basic-N4 .footer-top {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
}

.basic-N4 .footer-logo {
    text-align: center;
    margin-bottom: 0;
}

.basic-N4 .footer-logo a {
    font-size: 2rem;
}

.basic-N4 .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.basic-N4 .footer-menulist {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--fs-p4);
}

.basic-N4 .footer-menuitem a {
    padding-right: 1.2rem;
    color: var(--text-color5);
}

.basic-N4 .footer-menuitem+.footer-menuitem a {
    padding-left: 1.2rem;
}

.basic-N4 .footer-menuitem {
    position: relative;
}

.basic-N4 .footer-menuitem+.footer-menuitem::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 1.4rem;
    background-color: rgba(var(--white), 0.1);
}

.basic-N4 .footer-snslist {
    display: flex;
    align-items: center;
}

.basic-N4 .footer-snsitem+.footer-snsitem {
    margin-left: 0.8rem;
}

.basic-N4 .footer-snslink {
    width: 3.6rem;
    height: 3.6rem;
    padding: 0.6rem;
}

.basic-N4 .footer-snslink img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.basic-N4 .footer-bottom {
    padding-top: 2.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.basic-N4 .footer-txt {
    display: flex;
    justify-content: center;
    color: var(--text-color4);
    font-size: 1.2rem;
    align-items: center;
}

.basic-N4 .footer-txt+.footer-txt {
    margin-top: 0.3rem;
}

.basic-N4 .footer-txt p {
    margin-bottom: 0;

}

.basic-N4 .footer-txt p+p {
    margin-left: 0.8rem;
}

.basic-N4 .footer-txt p span+span {
    margin-left: 0.8rem;
}

@media (max-width: 992px) {
    .basic-N4 .footer-container {
        padding: 4rem 1.6rem;
    }

    .basic-N4 .footer-top {
        margin-bottom: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .basic-N4 .footer-logo a {

        height: 2.6rem;
    }

    .basic-N4 .footer-menulist {
        position: relative;
        left: 0;
        transform: translate(0);
        margin-top: 1.3rem;
    }

    .basic-N4 .footer-menuitem a {
        padding-right: 0.8rem;
    }

    .basic-N4 .footer-menuitem+.footer-menuitem a {
        padding-left: 0.8rem;
    }

    .basic-N4 .footer-snslist {
        margin: 2.4rem 0 1.6rem 0;
        justify-content: center;
    }

    .basic-N4 .footer-bottom {
        text-align: left;
    }

    .basic-N4 .footer-txt {
        display: flex;
        justify-content: left;
        flex-direction: column;
        align-items: flex-start;
    }

    .basic-N4 .footer-txt p+p {
        margin-left: 0;
    }
}

@media (max-width: 375px) {
    .basic-N4 .footer-menulist {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .basic-N4 .footer-menuitem {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .service__box {
        flex-direction: column;
        align-items: center;
    }

    .service__box__item {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .flowchart {
        flex-direction: column;

        align-items: flex-start;
    }

    .arrow {
        display: none;
    }

    .step {
        width: 100%;

    }
}

.service__box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;

}

.service__box__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 250px;
    height: 300px;
    border: 1px solid #d1d5db;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service__box__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}


.service__subtit {
    font-size: 2rem;
    color: #1f2937;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 10px;
    margin-bottom: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.service__box__item ul {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    color: #4b5563;
}

.service__box__item ul li {
    margin: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 1.5rem;
}

.service__box__item ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 0.9rem;
}

.flowchart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 10rem;
    position: relative;
}

.step {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.circle {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin: 0 auto 10px auto;
}

.arrow {
    font-size: 2rem;
    color: #2563eb;
}

.flowchart .flowchart__title {
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-top: 50px;
    color: #333;
}

/* 전체 컨테이너 */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* 연락처 및 이메일 스타일 */
.contact-info {
    margin-top: 30px;
}

.contact-info h2 {
    font-size: 24px;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
}

/* 오시는 길 섹션 */
.directions {
    margin-top: 40px;
}

.directions h2 {
    font-size: 24px;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.directions p {
    font-size: 18px;
    line-height: 1.6;
}


.map-container {
    margin-top: 30px;
}

.map-image img {
    height: auto;
    border-radius: 10px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .contact-container {
        padding: 15px;
    }

    .map-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .section-title {
        font-size: 28px;
    }

    .contact-info p,
    .directions p {
        font-size: 16px;
    }
}