@charset "utf-8";

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Intro Overlay */
#intro_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#intro_overlay .intro_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#intro_overlay .intro_curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(270deg, #F8F6F3 0%, #FFF3EF 49.06%, #F8F6F3 100%);
    transition: transform 2s cubic-bezier(0.76, 0, 0.24, 1);
}

#intro_overlay .intro_curtain_left {
    left: 0;
    border-right: 0.5px solid rgba(255, 255, 255, 0.05);
}

#intro_overlay .intro_curtain_right {
    right: 0;
    border-left: 0.5px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(90deg, #F8F6F3 0%, #FFF3EF 49.06%, #F8F6F3 100%);
}

#intro_overlay .intro_logo {
    position: relative;
    z-index: 3;
    width: 340px;
    filter: brightness(0);
    opacity: 0;
    transition: opacity 0.6s ease;
}

#intro_overlay.show_logo .intro_logo {
    opacity: 1;
}

#intro_overlay.open .intro_curtain_left {
    transform: translateX(-100%);
}

#intro_overlay.open .intro_curtain_right {
    transform: translateX(100%);
}

#intro_overlay.fade_out {
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

#intro_overlay.hidden {
    display: none;
}

/* 커튼 진행 중 뒤 스크롤 완전 차단 */
body.intro_active,
html.intro_active {
    overflow: hidden !important;
    height: 100% !important;
    position: fixed !important;
    width: 100% !important;
    touch-action: none;
}

/* Main Visual */
.mv_box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mv_box .mv_swiper {
    width: 100%;
    height: 100%;
}

/* fade+loop 시 wrapper translate 이동 방지 */
.mv_box .mv_swiper .swiper-wrapper {
    transform: translate3d(0, 0, 0) !important;
}

.mv_box .mv_swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}


.mv_box .mv_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    pointer-events: none;
}

.mv_box .mv_title {
    color: #fff;
    font-size: 80px;
    font-family: 'Sorts Mill Goudy', serif;
    font-weight: 400;
    text-align: center;
    /* text-transform: capitalize; */
    line-height: 1.2;
}

.mv_box .mv_text_line {
    display: inline;
}

.mv_box .mv_char {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(-20px);
    will-change: transform, opacity, filter;
}

.mv_animate .mv_char {
    animation: mvSmokeIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes mvSmokeIn {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.mv_box .mv_bar_wrap {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
}

.mv_box .mv_title_bar {
    display: block;
    width: 143px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mv_animate .mv_title_bar {
    transform: scaleX(1);
}

.mv_box .mv_desc {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    text-align: center;
    line-height: 30px;
    letter-spacing: 2px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1.5s ease, filter 1.5s ease;
}

.mv_animate .mv_desc {
    opacity: 1;
    filter: blur(0);
}

.mv_box .mv_scroll {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mv_animate~.mv_scroll,
.mv_box.mv_ui_show .mv_scroll {
    opacity: 1;
}

.mv_box .mv_scroll_text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.mv_box .mv_scroll_arrow {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
}

.mv_box.mv_ui_show .mv_scroll_arrow {
    opacity: 1;
    transform: translateY(0);
    animation: mvArrowBounce 1.5s 1s ease-in-out infinite;
}

@keyframes mvArrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.mv_box .mv_pagination {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mv_box.mv_ui_show .mv_pagination {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mv_box .mv_current_num,
.mv_box .mv_total_num {
    color: rgba(255, 255, 255, 0.8);
    font-size: 28px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.mv_box .mv_progress {
    width: 600px;
    height: 3px;
    background: rgba(217, 217, 217, 0.4);
    position: relative;
}

.mv_box .mv_progress_fill {
    width: 0%;
    height: 4px;
    background: #D9D9D9;
    position: absolute;
    top: -0.5px;
    left: 0;
}

/* Main Visual - 반응형 */
@media all and (max-width:1400px) {

    .mv_box .mv_title {
        font-size: 60px;
    }

    .mv_box .mv_title_bar {
        width: 120px;
    }

    .mv_box .mv_progress {
        width: 400px;
    }
}

@media all and (max-width:1024px) {

    #intro_overlay {
        height: 100dvh;
        height: -webkit-fill-available;
    }

    #intro_overlay .intro_logo {
        width: 220px;
    }

    .mv_box {
        height: calc(100vh - 100px);
    }


    .mv_box .mv_title {
        font-size: 48px;
    }

    .mv_box .mv_title_bar {
        width: 100px;
    }

    .mv_box .mv_desc {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 1px;
    }

    .mv_box .mv_scroll {
        left: 20px;
    }

    .mv_box .mv_scroll_text {
        font-size: 13px;
    }

    .mv_box .mv_progress {
        width: 300px;
    }

    .mv_box .mv_current_num,
    .mv_box .mv_total_num {
        font-size: 22px;
    }
}

@media all and (max-width:768px) {

    #intro_overlay .intro_logo {
        width: 180px;
    }

    .mv_box .mv_title {
        font-size: 36px;
    }

    .mv_box .mv_title_bar {
        width: 60px;
    }

    .mv_box .mv_char {
        filter: blur(8px);
        transform: translateY(-14px);
    }

    @keyframes mvSmokeIn {
        0% {
            opacity: 0;
            filter: blur(8px);
            transform: translateY(-14px);
        }

        100% {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }
    }

    .mv_box .mv_desc {
        font-size: 24px;
        line-height: 22px;
        letter-spacing: 0.5px;
    }

    .mv_box .mv_scroll {
        /* display: none; */
        left: 10px;
        top: 77%;
    }

    .mv_box .mv_pagination {
        gap: 16px;
        bottom: 40px;
    }

    .mv_box .mv_progress {
        width: 180px;
    }

    .mv_box .mv_current_num,
    .mv_box .mv_total_num {
        font-size: 18px;
    }
}

/* fullPage - 페이지네이션 커스텀 */
#fp-nav {
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: 40px !important;
    margin-top: unset !important;
}

#fp-nav ul li {
    margin: 39px 0 !important;
    width: 30px !important;
    height: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#fp-nav ul li a {
    width: 22px !important;
    height: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#fp-nav ul li a span,
#fp-nav ul li a:hover span {
    width: 16px !important;
    height: 16px !important;
    background: transparent !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
}

#fp-nav ul li a.active span,
#fp-nav ul li a.active:hover span {
    width: 22px !important;
    height: 22px !important;
    background: #fff !important;
    border: none !important;
}

#fp-nav ul li .fp-tooltip {
    display: none !important;
}

/* fullPage 페이지네이션 - 다크 모드 */
#fp-nav.dark ul li a span,
#fp-nav.dark ul li a:hover span {
    border-color: #eee !important;
    /* background: #eee !important; */
}

#fp-nav.dark ul li a.active span,
#fp-nav.dark ul li a.active:hover span {
    background: #eee !important;
}

#fp-nav ul li a.active span {
    left: 7.5px;
}

/* Section Philosophy */
.section_philosophy {
    position: relative;
    overflow: hidden;
}

.section_philosophy .section_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section_philosophy .section_bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
}

.section_philosophy .inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    height: 100%;
    display: flex;
    align-items: center;
}

.section_philosophy .philosophy_content {
    display: flex;
    gap: 60px;
    width: 100%;
}

.section_philosophy .philosophy_left {
    flex: 0 0 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
}

.section_philosophy .philosophy_text {
    display: flex;
    flex-direction: column;
    /* gap: 60px; */
}

.section_philosophy .philosophy_label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3.5px;
}

.section_philosophy .philosophy_quote {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 10px;
}

.section_philosophy .philosophy_quote p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 34px;
    font-weight: 300;
    line-height: 1.4;
}

.section_philosophy .philosophy_quote strong {
    color: #fff;
    font-weight: 600;
}

.section_philosophy .philosophy_eng {
    color: rgba(255, 255, 255, 0.70);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 40px;
}

.section_philosophy .philosophy_sub_images {
    position: relative;
    height: 240px;
}

.section_philosophy .img_wrap {
    overflow: hidden;
}

.section_philosophy .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.section_philosophy .img_wrap:hover img {
    transform: scale(1.2);
}

.section_philosophy .img_sub01 {
    width: 50%;
    max-width: 333px;
    aspect-ratio: 333/240;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.section_philosophy .img_sub02 {
    width: 54%;
    max-width: 357px;
    aspect-ratio: 357/214;
    border-radius: 20px;
    position: absolute;
    left: 30%;
    top: 45%;
}

.section_philosophy .philosophy_right {
    flex: 1;
    min-width: 0;
    max-width: 668px;
    aspect-ratio: 668/480;
    border-radius: 30px;
    overflow: hidden;
    max-height: 480px;
}

.section_philosophy .img_main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.section_philosophy .philosophy_right:hover .img_main {
    transform: scale(1.2);
}

/* Section Philosophy - 반응형 */
@media all and (max-width:1400px) {
    .section_philosophy .philosophy_quote p {
        font-size: 28px;
    }

    .section_philosophy .philosophy_eng {
        font-size: 17px;
    }

    #fp-nav {
        left: 20px !important;
    }

    #fp-nav ul li {
        height: 10px !important;
    }

}

@media all and (max-width:1024px) {

    .section,
    .fp-tableCell {
        height: auto !important;
    }

    .fp-section,
    .fp-slide {
        height: auto !important;
    }

    #fullpage {
        transform: none !important;
    }

    .section_philosophy {
        padding: 80px 0;
    }

    .section_philosophy .inner {
        align-items: flex-start;
    }

    .section_philosophy .philosophy_content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .section_philosophy .philosophy_left {
        flex: none;
        width: 100%;
    }


    .section_philosophy .philosophy_quote p {
        font-size: 24px;
    }

    .section_philosophy .philosophy_eng {
        font-size: 15px;
    }

    .section_philosophy .philosophy_sub_images {
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .section_philosophy .img_sub01,
    .section_philosophy .img_sub02 {
        position: unset;
        width: fit-content;
        flex: 1;
        left: unset;
        top: unset;
        max-width: 100%;
    }

    .section_philosophy .philosophy_right {
        flex: none;
        width: 100%;
    }

    .section_philosophy .img_main {
        max-width: 100%;
    }

    #fp-nav {
        display: none !important;
    }
}

@media all and (max-width:768px) {
    .section_philosophy {
        padding: 60px 0;
    }

    .section_philosophy .philosophy_quote p {
        font-size: 20px;
    }

    .section_philosophy .philosophy_eng {
        font-size: 13px;
    }

    .section_philosophy .philosophy_label {
        font-size: 12px;
        letter-spacing: 2px;
    }

    #fp-nav {
        display: none;
    }
}

/* Section Signature */
.section_signature {
    position: relative;
    overflow: hidden;
}

.section_signature .section_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section_signature .section_bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
}

.section_signature .inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
}

.section_signature .signature_header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
}

.section_signature .signature_label {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 16px;
}

.section_signature .signature_title {
    color: #fff;
    font-size: 40px;
    font-family: 'Gloock', serif;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    max-width: 400px;
}

.section_signature .signature_title::after {
    content: '';
    width: 100vw;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-color: rgba(238, 238, 238, 0.60);
    height: 1px;
    left: 100%;

}

.section_signature .signature_cards {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.section_signature .signature_card {
    flex: 1;
    min-width: 0;
    aspect-ratio: 393/528;
    border-radius: 43px;
    overflow: hidden;
    position: relative;
    display: block;

    max-width: 393px;
    max-height: 528px;
}

.section_signature .card_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section_signature .card_img img,
.section_signature .card_img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.section_signature .signature_card:hover .card_img img,
.section_signature .signature_card:hover .card_img video {
    transform: scale(1.2);
}

.section_signature .card_default_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.section_signature .signature_card:hover .card_default_text {
    opacity: 0;
}

.section_signature .card_default_text .en {
    font-size: 20px;
    font-family: 'Gloock', serif;
    font-weight: 400;
}

.section_signature .card_default_text .ko {
    font-size: 32px;
    font-weight: 400;
}


.section_signature .card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.60);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 47px;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section_signature .signature_card:hover .card_overlay {
    opacity: 1;
}

.section_signature .card_info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section_signature .card_name {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.section_signature .card_desc {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
}

.section_signature .card_btn {
    display: block;
    padding: 20px 48px;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid #fff;
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    text-align: center;
    line-height: 16px;
}

/* Section Signature - 반응형 */
@media all and (max-width:1400px) {
    .section_signature .signature_card {
        border-radius: 30px;
    }

    .section_signature .card_overlay {
        padding: 30px;
    }

    .section_signature .card_name {
        font-size: 20px;
    }

    .section_signature .card_desc {
        font-size: 15px;
    }

    .section_signature .card_btn {
        padding: 16px 30px;
        font-size: 12px;
    }
}

@media all and (max-width:1024px) {
    .section_signature {
        padding: 80px 0;
    }

    .section_signature .inner {
        justify-content: flex-start;
    }

    .section_signature .signature_header {
        margin-bottom: 40px;
    }

    .section_signature .signature_title {
        font-size: 30px;
        max-width: 270px;
    }

    .section_signature .signature_cards {
        gap: 16px;
    }

    .section_signature .signature_card {
        border-radius: 20px;
    }

    .section_signature .card_overlay {
        opacity: 1;
        padding: 20px;
        gap: 20px;
    }

    .section_signature .card_name {
        font-size: 18px;
    }

    .section_signature .card_desc {
        font-size: 13px;
    }

    .section_signature .card_btn {
        padding: 12px 20px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .section_signature {
        padding: 60px 0;
    }

    .section_signature .signature_cards {
        flex-direction: column;
        gap: 16px;
    }

    .section_signature .signature_card {
        aspect-ratio: 16/9;
        max-width: unset;
        max-height: unset;
    }

    .section_signature .signature_title {
        font-size: 26px;
    }

    .section_signature .card_img img {
        object-position: center 15%;
    }

}

/* Section Youtube */
.section_youtube {
    position: relative;
    overflow: hidden;
}

.section_youtube .section_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section_youtube .section_bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
}

.section_youtube .inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.section_youtube .youtube_content {
    display: flex;
    gap: 100px;
    width: 100%;
    align-items: center;
}

.section_youtube .youtube_left {
    flex: 0 0 57%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.section_youtube .youtube_video {
    width: 100%;
    /* aspect-ratio: 828/438; */
    aspect-ratio: 16 / 9;
    /* overflow: hidden; */
    position: relative;
}

.section_youtube .youtube_video img {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* height: 100%; */
    /* object-fit: cover; */
    display: block;
}

.section_youtube .youtube_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
}

.section_youtube .youtube_banner {
    width: 100%;
    display: block;
}

.section_youtube .youtube_right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.section_youtube .youtube_header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_youtube .youtube_label {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 16px;
}

.section_youtube .youtube_title {
    color: #fff;
    font-size: 40px;
    font-family: 'Gloock', serif;
    font-weight: 400;
    text-transform: uppercase;
}

.section_youtube .youtube_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_youtube .youtube_name {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.section_youtube .youtube_desc {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
}

.tit_line {
    height: 1.5px;
    background: rgba(238, 238, 238, 0.60);
    width: 100%;
    margin-top: 20px;
}

/* Section Youtube - 반응형 */
@media all and (max-width:1400px) {
    .section_youtube .youtube_content {
        gap: 60px;
    }

    .section_youtube .youtube_right {
        gap: 100px;
    }

    .section_youtube .youtube_name {
        font-size: 20px;
    }

    .section_youtube .youtube_desc {
        font-size: 16px;
    }
}

@media all and (max-width:1024px) {
    .section_youtube {
        padding: 80px 0;
    }

    .section_youtube .inner {
        align-items: flex-start;
    }

    .section_youtube .youtube_content {
        flex-direction: column;
        gap: 40px;
    }

    .section_youtube .youtube_left {
        flex: none;
        width: 100%;
    }

    .section_youtube .youtube_right {
        gap: 20px;
    }

    .section_youtube .youtube_title {
        font-size: 30px;
    }

    .section_youtube .youtube_name {
        font-size: 18px;
    }

    .section_youtube .youtube_desc {
        font-size: 14px;
    }
}

@media all and (max-width:768px) {
    .section_youtube {
        padding: 60px 0;
    }

    .section_youtube .youtube_title {
        font-size: 26px;
    }

    .section_youtube .youtube_name {
        font-size: 16px;
    }

    .section_youtube .youtube_desc {
        font-size: 13px;
    }
}

/* Section Doctors */
.section_doctors {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.section_doctors .inner {
    max-width: 1440px;
    height: 100%;
    display: flex;
    align-items: center;
}

.section_doctors .doctors_content {
    display: flex;
    gap: 110px;
    width: 100%;
    align-items: flex-start;
}

.section_doctors .doctors_left {
    flex: 0 0 400px;
    min-width: 0;
}

.section_doctors .doctors_img_wrap {
    width: 100%;
    aspect-ratio: 400/580;
    border-radius: 400px;
    overflow: hidden;
}

.section_doctors .doctors_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.section_doctors .doctors_img_wrap:hover img {
    transform: scale(1.1);
}

.section_doctors .doctors_right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.section_doctors .doctors_header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_doctors .doctors_label {
    color: #ddd;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 16px;
}

.section_doctors .doctors_title {
    color: #ddd;
    font-size: 40px;
    font-family: 'Gloock', serif;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    max-width: 400px;
}


.section_doctors .doctors_name_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.section_doctors .doctors_name_badge {
    padding: 10px 30px;
    background: #000;
    border-radius: 40px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_doctors .doctors_position {
    color: rgba(102, 102, 102, 0.40);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
}

.section_doctors .doctors_desc {
    color: #999;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.55;
    margin-top: 30px;
}

.section_doctors .doctor_history_wrap {
    width: 100%;
    max-width: 927px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.section_doctors .history_row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.section_doctors .history_col {
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section_doctors .history_row_full {
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section_doctors .history_title {
    color: #000;
    font-size: 14px;
    font-family: Pretendard, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    word-wrap: break-word;
}

.section_doctors .history_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.section_doctors .history_list li {
    color: #999;
    font-size: 16px;
    font-family: Pretendard, sans-serif;
    font-weight: 400;
    line-height: 1.4;
    word-wrap: break-word;
}

.doc_line {
    height: 2px;
    width: 100%;
    background-color: #EEE;
    margin-top: 20px;
}



/* Section Doctors - 반응형 */
@media all and (max-width:1400px) {
    .section_doctors .doctors_content {
        gap: 60px;
    }

    .section_doctors .doctors_left {
        flex: 0 0 320px;
    }

    .section_doctors .doctors_desc {
        font-size: 18px;
    }

    .section_doctors .history_col {
        padding-right: 30px;
    }
}

@media all and (max-width:1024px) {
    .section_doctors {
        padding: 80px 0;
    }

    .section_doctors .inner {
        align-items: flex-start;
    }

    .section_doctors .doctors_content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .section_doctors .doctors_left {
        flex: none;
        width: 280px;
    }

    .section_doctors .doctors_right {
        width: 100%;
    }

    .section_doctors .doctors_title {
        font-size: 30px;
    }

    .section_doctors .doctors_desc {
        font-size: 16px;
    }

    .section_doctors .doctor_history_wrap {
        gap: 40px;
    }

    .section_doctors .history_row {
        flex-direction: column;
        gap: 30px;
    }

    .section_doctors .history_col,
    .section_doctors .history_row_full {
        padding-right: 0;
    }
}

@media all and (max-width:768px) {
    .section_doctors {
        padding: 60px 0;
    }

    .section_doctors .doctors_left {
        max-width: 350px;
        width: 100%;
    }

    .section_doctors .doctors_name_badge {
        font-size: 20px;
    }

    .section_doctors .doctors_position {
        font-size: 20px;
    }

    .section_doctors .doctors_desc {
        font-size: 14px;
    }

    .section_doctors .doctors_title {
        font-size: 26px;
    }

    .section_doctors .history_list li {
        font-size: 14px;
    }
}

/* Section Review */
.section_review {
    position: relative;
    overflow: hidden;
}

.section_review .section_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* .section_review .section_bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
} */

.section_review .inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_review .review_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.section_review .review_title {
    color: #fff;
    font-size: 62px;
    font-family: 'Gloock', serif;
    font-weight: 400;
    text-transform: uppercase;
}

.section_review .review_desc {
    color: #fff;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
}

.section_review .review_btn {
    margin-top: 100px;
    padding: 0 48px;
    height: 56px;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid #fff;
    border-radius: 100px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.3s ease;
    font-family: Pretendard;
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    justify-content: center;
}

.section_review .review_btn:hover {
    background: rgba(255, 255, 255, 0.40);
}

.clicin_tit_line {
    max-width: 200px;
    width: 100%;
    height: 1.5px;
    background-color: rgba(238, 238, 238, 0.60);
    margin: 30px 0 60px 0;
}

/* Section Review - 반응형 */
@media all and (max-width:1024px) {
    .section_review {
        padding: 120px 0;
    }

    .section_review .review_title {
        font-size: 46px;
    }

    .section_review .review_desc {
        font-size: 20px;
    }

    .section_review .review_btn {
        margin-top: 60px;
        font-size: 20px;
        padding: 16px 36px;
    }
}

@media all and (max-width:768px) {
    .section_review {
        padding: 80px 0;
    }


    .section_review .review_title {
        font-size: 34px;
    }

    .section_review .review_desc {
        font-size: 16px;
    }

    .btn_wrapper {
        width: 100%;
    }


    .section_review .review_btn {
        margin-top: 40px;
        font-size: 16px;
        padding: 14px 30px;
        width: 100%;
    }
}

/* Section Location */
.section_location {
    background: #fff;
    overflow-x: hidden;
}

.section_location .inner {
    max-width: 1440px;
    padding-top: 120px;
    padding-bottom: 60px;
}

.section_location .location_header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: max-content;
    width: 100%;

}

.location_header .location_title {
    position: relative;
}

.location_header .location_title::after {
    content: '';
    position: absolute;
    width: 100vw;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 20px);
    height: 2px;
    background-color: #eee;
}

.location_header .location_title::before {
    content: '';
    position: absolute;
    width: 100vw;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% + 20px);
    height: 2px;
    background-color: #eee;
}


.section_location .location_label {
    color: #ddd;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 16px;
    white-space: nowrap;
}

.section_location .location_title {
    color: #ddd;
    font-size: 40px;
    font-family: 'Gloock', serif;
    font-weight: 400;
    text-transform: uppercase;
}

.section_location .location_line {
    max-width: 200px;
    width: 100%;
    height: 1.5px;
    background-color: #eee;
    margin-top: 20px;
}

.section_location .location_info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 50px;
}

.section_location .location_address {
    color: #424242;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
}

.section_location .location_sub {
    color: rgba(0, 0, 0, 0.60);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.section_location .location_map {
    width: 100%;
    height: 572px;
    overflow: hidden;
}

.section_location .location_map iframe {
    width: 100%;
    height: calc(100% + 150px);
    margin-top: -150px;
    display: block;
}

/* Section Location - 반응형 */
@media all and (max-width:1024px) {
    .section_location .inner {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .section_location .location_title {
        font-size: 30px;
    }

    .section_location .location_address {
        font-size: 20px;
    }

    .section_location .location_sub {
        font-size: 16px;
    }

    .section_location .location_map {
        height: 400px;
    }
}

@media all and (max-width:768px) {
    .section_location .inner {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .section_location .location_title {
        font-size: 26px;
    }

    .section_location .location_address {
        font-size: 18px;
    }

    .section_location .location_sub {
        font-size: 14px;
    }

    .section_location .location_map {
        height: 300px;
    }

    .section_location .location_header {
        max-width: 175px;
    }
}

/* Location Hours */
.section_location .location_hours {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 20px;
}


.section_location .hours_content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 520px;
}

.section_location .hours_title {
    color: #fff;
    font-size: 34px;
    font-family: 'Gloock', serif;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

.section_location .hours_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0.8;
}

.section_location .hours_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section_location .hours_day {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 5.8px;
}

.section_location .hours_time {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.section_location .hours_row.closed .hours_day,
.section_location .hours_row.closed .hours_time {
    color: #000;
    font-weight: 600;
}

/* Location Hours - 반응형 */
@media all and (max-width:1024px) {
    .section_location .location_hours {
        padding: 80px 20px;
    }

    .section_location .hours_title {
        font-size: 28px;
    }

    .section_location .hours_day,
    .section_location .hours_time {
        font-size: 17px;
    }

    .section_location .hours_day {
        letter-spacing: 3px;
    }
}

@media all and (max-width:768px) {
    .section_location .location_hours {
        padding: 60px 20px;
    }

    .section_location .hours_title {
        font-size: 24px;
    }

    .section_location .hours_day,
    .section_location .hours_time {
        font-size: 15px;
    }

    .section_location .hours_list {
        gap: 20px;
    }

    .section_location .hours_day {
        letter-spacing: 2px;
    }

}

/* ── fullPage 섹션 진입 애니메이션 ── */
.fp_ani {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fp_ani.fp_fade_up {
    transform: translateY(30px);
}

.fp_ani.fp_fade_left {
    transform: translateX(40px);
}

.fp_ani.fp_fade_right {
    transform: translateX(-40px);
}

.fp_ani.fp_fade_down {
    transform: translateY(-30px);
}

/* 딜레이 */
.fp_d1 {
    transition-delay: 0.15s;
}

.fp_d2 {
    transition-delay: 0.3s;
}

.fp_d3 {
    transition-delay: 0.45s;
}

.fp_d4 {
    transition-delay: 0.6s;
}

.fp_d5 {
    transition-delay: 0.75s;
}

/* 활성 상태 */
.fp_ani.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── location 스크롤 애니메이션 (fullPage 밖) ── */
.scroll_ani {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll_ani.fp_fade_up {
    transform: translateY(30px);
}

.scroll_ani.active {
    opacity: 1;
    transform: translate(0, 0);
}

.section:not(.fp_main_body .section) {
    padding: 120px 0;
}

@media all and (max-width:768px) {
    .section:not(.fp_main_body .section) {
        padding: 60px 0;
    }
}
@media all and (max-width: 1024px) {
    .section_signature .signature_card .card_default_text {
        display: none;
    }
}
