/* Layout */

/* Header Navigation - Top */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    transition: background-color 0.3s, padding 0.3s;
}

#header .logo_img {
    width: 140px;
}

#header .nav_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 72px;
    max-width: 1920px;
    margin: 0 auto;
    height: 96px;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

#header .nav_top.show {
    opacity: 1;
}

#header .nav_top_over {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    position: relative;
    background-color: var(--white);
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

#header .nav_top_over .nav_top_over_content {
    max-width: 1920px;
    padding: 0px 72px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#header .nav_top_over_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    z-index: 102;
}

#header .sub_top_nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    height: 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 72px;
    z-index: 102;
}

#header .nav_top_over_container.fade_out {
    opacity: 0;
}

#header .nav_top_over_bg,
#header .sub_top_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--white);
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
    background-image: url('../images/menu_bg_graphic_pc.png');
    background-position: bottom right;
    background-repeat: no-repeat;
}

#header .nav_top_over_container .nav_top_over_bg,
#header .sub_top_container .sub_top_bg {
    display: block;
}

#header .nav_top_over_container.active .nav_top_over_bg,
#header .sub_top_container.active .sub_top_bg {
    transform: translateY(0);
}

#header .sub_top_container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header .nav_top_over::before,
#header .sub_top_nav::before {
    content: '';
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--black_300);
    z-index: 101;
}

/* Desktop Navigation */
#header .desktop_nav {
    display: flex;
    gap: 16px;
}

#header .desktop_nav .nav_item {
    position: relative;
}

#header .desktop_nav .nav_item a {
    padding: 0px 24px;
    color: var(--white);
    white-space: nowrap;
    font-size: 18px;
}

#header .desktop_nav .nav_item a.active {
    color: var(--point_blue_02);
}

#header .nav_top_over .desktop_nav .nav_item .submenu,
#header .sub_top_nav .desktop_nav .nav_item .submenu {
    position: absolute;
    z-index: 103;
    width: 100%;
    display: block;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-out 0.1s, transform 0.3s ease-out 0.1s, visibility 0.3s ease-out 0.1s;
}

#header .nav_top_over_container.active .nav_top_over_bg,
#header .nav_top_over_container.active .nav_top_over .desktop_nav .nav_item .submenu,
#header .sub_top_container.active .sub_top_bg,
#header .sub_top_nav .desktop_nav .nav_item .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Desktop hover - 모바일 제외 */
@media (min-width: 376px) {
    #header .nav_top_over_container.active .nav_top_over .desktop_nav .nav_item:hover .submenu,
    #header .nav_top_over_container.active .sub_top_nav .desktop_nav .nav_item:hover .submenu,
    #header .sub_top_container.active .sub_top_nav .desktop_nav .nav_item:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

#header .nav_top_over_container:not(.active) .nav_top_over .desktop_nav .nav_item .submenu,
#header .sub_top_container:not(.active) .sub_top_nav .desktop_nav .nav_item .submenu {
    transform: translateY(0);
    transition: opacity 0.15s ease-out, transform 0.15s ease-out, visibility 0.1s ease-out;
}

#header .nav_top_over_container.fade_out .nav_top_over,
#header .sub_top_container.fade_out .sub_top_nav {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

#header .nav_top_over .desktop_nav .nav_item a,
#header .sub_top_nav .desktop_nav .nav_item a {
    color: var(--black_700);
    font-size: 18px;
}

#header .nav_top_over .desktop_nav .nav_item .submenu li a,
#header .sub_top_nav .desktop_nav .nav_item .submenu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-family: var(--font_base); 
    font-weight: 500; 
    font-size: 16px; 
    line-height: 160%;
    color: var(--black_700);
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}
html[lang="ja"] #header .nav_top_over .desktop_nav {
    gap: 30px;
}
html[lang="ja"] #header .nav_top_over .desktop_nav .nav_item .submenu li a,
html[lang="ja"] #header .sub_top_nav .desktop_nav .nav_item .submenu li a {
    white-space: normal;
}
#header .nav_top_over_container.active .nav_item a:hover,
#header .sub_top_container.active .nav_item a:hover,
#header .nav_top_over_container.active .nav_item a.active,
#header .sub_top_container.active .nav_item a.active,
#header .nav_top_over_container.active .nav_item .submenu a:hover,
#header .sub_top_container.active .nav_item .submenu a:hover,
#header .nav_top_over .desktop_nav .nav_item .submenu a.active {
    color: var(--point_blue_02);
}

#header .nav_top_over_container.active .nav_item > a,
#header .sub_top_container.active .nav_item > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    position: relative;
}

#header .nav_top_over_container.active .nav_item > a:hover::after,
#header .sub_top_container.active .nav_item > a:hover::after,
#header .nav_top_over_container.active .nav_item > a.active::after,
#header .sub_top_container.active .nav_item > a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--point_blue_01);
    z-index: 104;
}

/* mobile menu */
#mobile_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    padding: 35px 24px;
    background: var(--black_800) url('../images/menu_bg_graphic_mobile.png') no-repeat right bottom;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

#mobile_menu.open {
    opacity: 1;
    visibility: visible;
}

/* mobile_menu가 열릴 때 logo_img, desktop_nav, lang_select 숨기기 */
.sub_top_nav.hide_when_mobile_open .logo_img,
.sub_top_nav.hide_when_mobile_open .desktop_nav,
.sub_top_nav.hide_when_mobile_open .lang_select {
    display: none;
}

.hamburger_menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
}

/* 모바일 메뉴 내부의 햄버거 메뉴는 모바일 메뉴보다 높게 */
#mobile_menu .hamburger_menu {
    z-index: 1001;
}

.hamburger_menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

#header .nav_top_over_container .hamburger_menu span {
    background-color: var(--black_base);
}

/* Mobile Navigation */
.mobile_menu_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile_lang_switch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 10px;
}
.mobile_lang_switch button {
    min-width: 48px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--white_40);
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.mobile_lang_switch button:hover {
    border-color: var(--white);
    color: var(--white);
}
.mobile_lang_switch button.active {
    background-color: var(--white);
    color: var(--black_base);
    border-color: var(--white);
}
.mobile_nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-top: 40px;
}

.mobile_nav .nav_item {
    position: relative;
    margin-bottom: 24px;
}

.mobile_nav > li > a {
    font-weight: 600;
    color: var(--black_base);
}
.mobile_nav .nav_item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font_base);
    font-weight: 600;
    font-size: 20px;
    line-height: 160%;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
}

.mobile_nav .nav_item > a .arrow_icon {
    transition: transform 0.3s ease;
}

.mobile_nav .nav_item.active > a .arrow_icon {
    transform: rotate(180deg);
}

.mobile_nav .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 8px;
}

.mobile_nav .nav_item.active .submenu {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

.mobile_nav .submenu li {
    margin: 0;
}

.mobile_nav .submenu a {
    display: block;
    font-family: var(--font_base);
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: var(--white_60);
    text-decoration: none;
    transition: color 0.2s;
    text-align: left;
    padding: 5px;
}

.mobile_nav .submenu a:hover {
    color: var(--white);
}

/* Language Selector */
.lang_select {
    position: relative;
    cursor: pointer;
}

.lang_icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#header .nav_top .lang_icon {
    background-color: var(--white_20);
}

#header .nav_top_over .lang_icon {
    background-color: var(--black_100);
}

.lang_current {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font_base); 
    font-weight: 500; 
    font-size: 18px; 
    line-height: 160%;
    padding: 24px;
    user-select: none;
}

#header .nav_top .lang_current {
    color: var(--white);
}

#header .nav_top_over .lang_current {
    color: var(--black_base);
}

.lang_arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.lang_select.active .lang_arrow {
    transform: rotate(180deg);
}

.lang_dropdown {
    position: absolute;
    top: 100%;
    right: 10px;
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 103;
    overflow: hidden;
}

.lang_select.active .lang_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang_dropdown a {
    display: flex;
    width: 92px;
    height: 42px;
    align-items: center;
    justify-content: center;
    font-family: var(--font_base); 
    font-weight: 400; 
    font-size: 14px; 
    line-height: 160%;
    color: var(--black_700);
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.lang_dropdown a:hover {
    background-color: var(--white);
}

.lang_dropdown a.active {
    color: var(--point_blue_02);
}

body.mobile_menu_open,
html.mobile_menu_open {
    overflow: hidden;
    height: 100%;
    touch-action: none;
}

/* header media query */
@media (max-width: 960px) {
    #header nav .desktop_nav,
    #header nav .lang_select {
        display: none;
    }

    .hamburger_menu {
        display: block;
    }

    #header .nav_top,
    #header .nav_top_over,
    #header .sub_top_nav {
        padding: 0px 24px;
        height: 82px;
    }
    #header .nav_top_over .nav_top_over_content {
        padding: 0px;
    }
    #header .nav_top_over::before,
    #header .sub_top_nav::before {
        top: 82px;
    }
    #header .nav_top_over_container.active .nav_item > a,
    #header .sub_top_container.active .nav_item > a {
        height: 82px;
    }

    #header .logo_img {
        width: 110px;
    }
}

/* Footer */

#footer {
    padding: 54px 72px;
    background-color: var(--black_900);
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    box-sizing: border-box;
    position: relative;
    scroll-snap-align: start;
}
#footer .logo_img{
    margin-bottom: 30px;
}
#footer .footer_top_links{
    position: absolute;
    right: 72px;
    top: 54px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
#footer .footer_nav{
    position: static;
    display: flex;
    gap: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
    color: var(--white_80);
}
#footer .footer_follow{
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
#footer .footer_follow_title{
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
    color: var(--white_90);
}
#footer .footer_follow_list{
    display: flex;
    gap: 12px;
}
#footer .footer_follow_button{
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}
#footer .footer_follow_button i{
    pointer-events: none;
}
#footer .footer_follow_button:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
#footer .footer_follow_button:focus-visible{
    outline: 2px solid var(--white);
    outline-offset: 2px;
}
#footer .footer_follow_icon{
    width: 28px;
    height: 28px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#footer .footer_follow_icon--kakao{
    background-image: url('../images/followus_icon_kakaotalk.svg');
}
#footer .footer_follow_icon--wechat{
    background-image: url('../images/followus_icon_wechat.svg');
}
#footer .footer_follow_icon--line{
    background-image: url('../images/followus_icon_line.svg');
}
#footer .footer_follow_icon--whatsapp{
    background-image: url('../images/followus_icon_whatsapp.svg');
}
#footer .footer_info_01{
    display: flex;
    gap: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    color: var(--white_90);
}
#footer .footer_info_01 li{
    position: relative;
}
#footer .footer_info_01 li::after {
    content: '';
    position: absolute;
    top: 5px;
    right: -8px;
    width: 1px;
    height: 12px;
    background-color: var(--white_90);
}

#footer .footer_info_01 li:last-child::after {
    display: none;
}

#footer .footer_info_02{
    display: flex;
    gap: 15px;
    font-size: 14px;
    line-height: 150%;
    color: var(--white_60);
}
#footer .footer_info_02 span {
    color: var(--white_40);
    display: inline-block;
    padding-right: 5px;
}

#footer .footer_copyright {
    font-size: 14px;
    line-height: 150%;
    color: var(--white_40);
    position: absolute;
    bottom: 54px;
    right: 72px;
}

/* footer media query */
@media (max-width: 960px) {
    #footer {
        padding: 30px 24px;
        gap: 22px;
    }
    #footer .logo_img{
        margin-bottom: 0;
    }
    #footer .logo_img img{
        width: 90px;
        height: auto;
    }
    #footer .footer_top_links{
        position: initial;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    #footer .footer_nav {
        position: initial;
        display: flex;
        gap: 16px;
        font-size: 16px;
        line-height: 160%;
        color: var(--white_80);
    }
    #footer .footer_follow{
        position: initial;
        align-items: flex-start;
        gap: 8px;
    }
    #footer .footer_follow_list{
        gap: 12px;
    }
    #footer .footer_follow_button{
        width: 24px;
        height: 24px;
    }
    #footer .footer_follow_icon{
        width: 24px;
        height: 24px;
    }
    #footer .footer_info_01 {
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 12px;
        line-height: 150%;
        color: var(--white_90);
        position: relative;
    }
    #footer .footer_info_01::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 13px;
        height: 1px;
        background-color: var(--white_90);
    }

    #footer .footer_info_01 li::after {
        display: none;
    }
    #footer .footer_info_02 {
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 12px;
        line-height: 150%;
        color: var(--white_60);
    }
    #footer .footer_info_02 span {
        color: var(--white_40);
        display: inline-block;
        padding-right: 5px;
    }
    #footer .footer_copyright {
        font-size: 12px;
        line-height: 150%;
        color: var(--white_40);
        position: initial;
    }
}

/* common media query */
@media (min-width: 961px) {
    .item_pc {
        display: block;
    }
    .item_mobile {
        display: none;
    }
}
@media (max-width: 960px) {
    .item_pc {
        display: none;
    }
    .item_mobile {
        display: block;
    }
}


/* Scroll to Top Button */
.scroll_to_top_btn {
    position: fixed;
    bottom: 54px;
    right: 54px;
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    padding: 0;
}

.scroll_to_top_btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll_to_top_btn:hover {
    transform: translateY(-2px);
}

.scroll_to_top_btn img {
    width: 24px;
    height: 24px;
    display: block;
}

@media (max-width: 960px) {
    .scroll_to_top_btn {
        bottom: 45px;
        right: 24px;
    }
    
    .scroll_to_top_btn img {
        width: 20px;
        height: 20px;
    }
}

/* list pagenation style */
.list_pagenation {
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.list_pagenation button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black_600);
    font-family: var(--font_style_01);
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
}
.list_pagenation .btn_group {
    display: flex;
    gap: 10px;
    padding: 0 16px;
}
.list_pagenation .btn_group button:hover,
.list_pagenation .btn_group button:active,
.list_pagenation .btn_group button.active {
    background-color: var(--black_800);
    color: var(--white);
}
.list_pagenation .p_control{
    display: flex;
}
.list_pagenation .p_control button {
    border-radius: 0px;
}

.list_pagenation .p_control button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 960px) {
    .list_pagenation {
        margin-top: 60px;
        gap: 16px;
        padding: 0;
    }
    .list_pagenation .p_control {
        display: flex;
        gap: 8px;
    }
    .list_pagenation .p_control button {
        width: 32px;
        height: 32px;
        min-width: 32px;
        flex-shrink: 0;
    }
    .list_pagenation .btn_group {
        display: flex;
        gap: 8px;
        padding: 0 8px;
        flex-wrap: wrap;
        justify-content: center;
        flex: 1;
    }
    .list_pagenation .btn_group button {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }
}
@media (max-width: 375px) {
    #header .nav_top,
    #header .nav_top_over,
    #header .sub_top_nav {
        height: 70px;
    }
    #header .nav_top_over::before,
    #header .sub_top_nav::before {
        top: 70px;
    }
    #header .nav_top_over_container.active .nav_item > a,
    #header .sub_top_container.active .nav_item > a {
        height: 70px;
    }
    .list_pagenation {
        margin-top: 40px;
        justify-content: space-between;
        gap: 8px;
    }
    .list_pagenation .p_control{
        gap: 4px;
    }
    .list_pagenation .p_control button {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
    .list_pagenation .btn_group {
        gap: 2px;
        padding: 0 4px;
    }
    .list_pagenation .btn_group button {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 13px;
    }
}

/* Follow QR Modal */
.follow_qr_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.follow_qr_overlay.active {
    visibility: visible;
}
.follow_qr_overlay.show {
    opacity: 1;
}
.follow_qr_modal {
    position: relative;
    width: min(504px, calc(100% - 48px));
    max-height: 90vh;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 36px 76px;
}
.follow_qr_overlay.show .follow_qr_modal {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.follow_qr_header {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    position: relative;
}
.follow_qr_header_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.follow_qr_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: #2f2f2f;
    margin: 0;
}
.follow_qr_subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    color: #717171;
    margin: 0;
}
.follow_qr_close {
    position: relative;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    position: absolute;
    top: 0;
    right: 0;
}
.follow_qr_close:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}
.follow_qr_close svg {
    width: 100%;
    height: 100%;
    display: block;
}
.follow_qr_body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.follow_qr_frame {
    padding: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    border: 1px solid #c0c0c0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}
.follow_qr_grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.follow_qr_item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.follow_qr_label {
    display: none;
}
.follow_qr_item img {
    width: 151px;
    height: 152px;
    object-fit: contain;
    display: block;
}
.follow_qr_item.is-active img {
    box-shadow: none;
}

@media (max-width: 960px) {
    .follow_qr_modal {
        width: min(92vw, 504px);
        padding: 32px 28px 56px;
        gap: 32px;
    }
    .follow_qr_title {
        font-size: 18px;
        line-height: 28px;
    }
    .follow_qr_subtitle {
        font-size: 14px;
        line-height: 22px;
    }
    .follow_qr_item img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 520px) {
    .follow_qr_modal {
        width: calc(100% - 24px);
        padding: 24px 20px 40px;
        border-radius: 12px;
        gap: 24px;
    }
    .follow_qr_close {
        width: 20px;
        height: 20px;
    }
    .follow_qr_item img {
        width: min(60vw, 160px);
        height: auto;
    }
}

/* Region Popup Styles */
.region_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.region_popup_overlay.active {
    visibility: visible;
}

.region_popup_overlay.show {
    opacity: 1;
}

.region_popup_container {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.region_popup_overlay.show .region_popup_container {
    transform: scale(1);
}

.region_popup_content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 90vh;
}

.region_popup_header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 30px 0 30px;
    border-bottom: none;
}

.region_popup_title {
    font-size: 24px;
    font-weight: 600;
    line-height: 160%;
    color: var(--black_900);
    margin: 0;
}

.region_popup_close {
    position: relative;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.region_popup_close:hover {
    transform: rotate(90deg);
}

.region_popup_close span {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--black_900);
    transition: background-color 0.2s ease;
}

.region_popup_close span:first-child {
    transform: rotate(45deg);
}

.region_popup_close span:last-child {
    transform: rotate(-45deg);
}

.region_popup_close:hover span {
    background-color: var(--point_blue_01);
}

.region_popup_body {
    padding: 10px 40px 40px 40px;
    overflow-y: auto;
    flex: 1;
}

.region_popup_data {
    width: 100%;
}

.region_popup_data .popup_title {
    font-family: var(--font_style_03);
    font-size: 61px;
    line-height: 120%;
    font-weight: 900;
    color: var(--point_blue_01);
    margin-bottom: 10px;
}

.region_popup_data .popup_title_info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    margin-bottom: 24px;
}
.region_popup_data .popup_title_info strong {
    color: var(--black_900);
    font-weight: 600;
    margin-right: 12px;
}
.region_popup_data .popup_title_info span {
    color: var(--black_700);
}
.region_popup_data .popup_title_info span::after{
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--black_500);
    margin-left: 12px;
    margin-right: 12px;
    position: relative;
    top: 1px;
}
.region_popup_data .popup_title_info span:last-child::after{
    display: none;
}
.region_popup_data .popup_list_wrap {
    padding: 20px;
    background-color: var(--black_000);
    border-radius: 14px;
    height: 270px;
    overflow-y: auto;
}
.region_popup_data .popup_list_wrap .popup_list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.region_popup_data .popup_list_wrap .popup_list li{
    font-family: var(--font_style_04);
    font-size: 17px;
    line-height: 150%;
    font-weight: 500;
    color: var(--black_800);
    padding-left: 16px;
}
.region_popup_data .popup_list_wrap .popup_list li::before{
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background-color: var(--black_500);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    left: -14px;
    top: 15px;
}



@media (max-width: 960px) {
    .region_popup_container {
        width: 95%;
        max-height: 95vh;
    }
    
    .region_popup_header {
        padding: 20px 24px;
    }
    
    .region_popup_title {
        font-size: 20px;
    }
    
    .region_popup_body {
        padding: 24px;
    }
}

@media (max-width: 375px) {
    .region_popup_container {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .region_popup_header {
        padding: 16px 20px;
    }
    
    .region_popup_title {
        font-size: 18px;
    }
    
    .region_popup_body {
        padding: 20px;
    }
    .region_popup_data .popup_list_wrap .popup_list{
        grid-template-columns: repeat(1, 1fr);
    }
}
