.live_header {
    position: fixed;
    width: 100%;
    height: 104px;
    display: flex;
    top: 0;
    left: 0;
    padding: 14px;
    z-index: 1000;
}

.live_header .hamburger {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 62px;
    height: 100%;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    padding: 26.75px 0;
    cursor: pointer;
}

.live_header .hamburger .span_wrap {
    position: relative;
    width: 16.5px;
    height: 100%;
}

.live_header .hamburger.menu_on .span_wrap {
    width: 24px;
}

.live_header .hamburger .span_wrap span {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 1.5px;
    /* border-radius: 2px; */
    background-color: var(--mainpink);
    transition: all 200ms ease;
}

.live_header .hamburger.menu_on .span_wrap span {
    background-color: #C6C7C8;
}

.live_header .hamburger .span_wrap span:first-child {
    transform: translateX(-50%);
    top: 0;
}

.live_header .hamburger .span_wrap span:nth-child(2) {
    transform: translateX(-50%);
    top: 50%;
}

.live_header .hamburger .span_wrap span:last-child {
    transform: translateX(-50%);
    top: 100%;

}

.live_header .hamburger.menu_on .span_wrap span:first-child {
    transform: translateX(-50%) rotate(45deg) translateY(-50%);
    top: 50%;
    height: 2.5px;
}

.live_header .hamburger.menu_on .span_wrap span:nth-child(2) {
    transform: translateX(-50%);
    top: 50%;
    left: 0;
    opacity: 0;
}

.live_header .hamburger.menu_on .span_wrap span:last-child {
    transform: translateX(-45%) rotate(-45deg) translateY(-30%);
    top: 50%;
    height: 2.5px;
}

.hamburger_menu_wrap {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #101010;
    z-index: 999;
    transition: left .2s;
    overflow: hidden;

}
.hamburger_menu_wrap.menu_on {
    left: 0;
}

.hamburger_menu_wrap .menu_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: auto;
}
.hamburger_menu_wrap .menu_wrap .inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 144px 0 0 0;
}

#live_Accordion_wrap {
    width: 100%;
    height: fit-content;
}

.menu_item {
    width: 100%;
    position: relative;
    padding: 18px 40px;
    cursor: pointer;
    font-size: 14px;
    /* border-bottom: 1px solid #dddddd; */
    /* background-color: #fff; */
    font-size: 34px;
    color: #fff;
    opacity: 1;
    transition: all .3s;
}

/* .menu_item.on{
    opacity: 1;
} */

.menu_item.off{
    opacity: 0.2;
}

.submenu {
    /* display: none; */
    /* overflow: hidden; */
    font-size: 14px;
    /* background-color: #f4f4f2; */
    /* padding: 27px 0; */
    /* background-color: #fff; */
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 40px;
    /* margin-bottom: 13px; */
    height: 0;
    overflow: hidden;
    transition: all .3s;
}

.on + .submenu{
    margin-bottom: 13px;
}

.on + .submenu.wrap01{
    height: 126px;
}
.on + .submenu.wrap02{
    height: 230px;
}

.submenu a,
.submenu button {
    display: flex;
    width: 100%;
    padding: 12px 14px;
    color: #fff;
    font-size: 18px;
}

.hamburger_menu_wrap .gradient_wrap {
    position: absolute;
    top: 100%;
    border-radius: 100%;
    left: 50%;
    z-index: -10;
    transform: translateX(-50%);
    filter: blur(100px);
    width: 207.69%;
    padding-top: 207.69%;
    background: rgb(255, 255, 255);
    background: linear-gradient(105deg, rgba(255, 255, 255, 1) 0%, rgba(255, 0, 110, 1) 18%, rgba(255, 0, 110, 0) 100%);
    transition: top 1s, opacity 1s;
    will-change: opacity, top;
}

.hamburger_menu_wrap.menu_on .gradient_wrap {
    top: 70%;
    transition-delay: .2s;
}
.hamburger_menu_wrap .rotate_text_bg {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: -5;
    transform: translateX(-50%);
    width: 207.69%;
    aspect-ratio: 1 / 1;
    opacity: 0;
    transition: top 1.5s, opacity 1.5s;
}
.hamburger_menu_wrap.menu_on .rotate_text_bg {
    top: 80%;
    opacity: 1;
}
.hamburger_menu_wrap .rotate_text_bg .rotate_text {
    width: 100%;
    height: 100%;
    animation: rotate 45s linear infinite;
    will-change: transform;
}
.hamburger_menu_wrap .rotate_text_bg .rotate_text svg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}
@keyframes rotate {
    to {
      transform: rotate(360deg);
    }
}

.live_header .header_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 18px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    transition: 0.5s;
}

.live_header.menu_open .header_wrap {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0));
    border: 1px solid rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}


.live_header .header_wrap .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1760px;
    padding: 0 66px;
}
.live_header .header_wrap .inner h1 a {
    display: block;
    width: 185px;
}
.live_header .header_wrap .inner h1 a img {
    width: 100%;
    object-fit: contain;
}
.live_header .header_wrap .inner .nav-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}

.live_header .header_wrap .inner .nav-wrap .lang_selectbox {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    height: 100%;
    width: 150px;
    text-align: center;
}
.live_header .header_wrap .inner .nav-wrap .lang_selectbox .toggle-btn {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: rgb(255, 255, 255, 0.8);
    cursor: pointer;
}

.live_header .header_wrap .inner .nav-wrap .lang_selectbox .toggle-btn .selected-text {
    display: block;
    margin-right: 4px;
}

.live_header .header_wrap .inner .nav-wrap .lang_selectbox .toggle-btn .ico_open {
    width: 20px;
    height: 20px;
}

.live_header .header_wrap .inner .nav-wrap .lang_selectbox.on .toggle-btn .ico_open img {
    transform: rotate(-180deg);
}

.live_header .header_wrap .inner .nav-wrap .lang_selectbox .toggle-btn .ico_open img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s;
}

.live_header .header_wrap .inner .nav-wrap .lang_selectbox .lang_option {
    position: absolute;
    right: 0;
    top: 35px;
    background-color: #181818;
    border-radius: 12px;
    text-align: center;
    width: 160px;
    padding: 12px 0 16px 0;
    display: none;
}

.live_header .header_wrap .inner .nav-wrap .lang_selectbox.on .lang_option {
    display: block;
}

.live_header .header_wrap .inner .nav-wrap .lang_selectbox .lang_option li button {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.75;
    color: rgb(255, 255, 255, 0.8);
    margin-bottom: 6px;
    cursor: pointer;
}

.live_header .header_wrap .inner .nav-wrap .lang_selectbox .lang_option li:last-child button {
    margin-bottom: 0;
}



.live_header .header_wrap .inner .nav-wrap nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}
.live_header .header_wrap .inner .nav-wrap nav ul li {
    position: relative;
    height: fit-content;
}
.live_header .header_wrap .inner .nav-wrap nav ul li a,
.live_header .header_wrap .inner .nav-wrap nav ul li button {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    cursor: pointer;
    min-width: 75px;
}
.live_header .header_wrap .inner .nav-wrap nav ul li a.on,
.live_header .header_wrap .inner .nav-wrap nav ul li button.on {
    font-weight: 700;
    color: #fff;
}
.live_header .business-nav-wrap {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 14px;
    width: 100%;
}
.live_header .business-nav-wrap.active {
    display: block;
}
.live_header .business-nav-wrap .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 66px;
}
.live_header .business-nav-wrap .inner .depth01-box {
    position: absolute;
    right: 384px;
    top: 76px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
    width: 160px;
    border-radius: 12px;
    background-color: rgba(24, 24, 24, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}
.live_header .business-nav-wrap .inner .depth01-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 28px;
    text-align: center;
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
}
.live_header .business-nav-wrap .inner .depth01-box a.on {
    font-weight: 600;
    color: #fff;
}
.live_footer {
    background-color: #181818;
    color: #fff;
    padding: 80px 0 34px 0;
    overflow: hidden;
}
.live_footer .f_wrapper {
    padding: 0 80px;
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
}
.live_footer .f_wrapper .f_logo {
    width: 570px;
    height: 49px;
    margin-bottom: 50px;
}
.live_footer .f_wrapper .f_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.live_footer .f_wrapper .top-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 100px;
    padding-bottom: 85px;
    border-bottom: 0.5px solid #626262;
}
.live_footer .f_wrapper .top-wrap .f_info {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.live_footer .f_wrapper .top-wrap .f_info p,
.live_footer .f_wrapper .top-wrap .f_info span {
    font-size: 14px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.6);
}
.live_footer .f_wrapper .top-wrap .f_info ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 5px;
}
.live_footer .f_wrapper .top-wrap .f_info ul li {
    display: flex;
    align-items: center;
    gap: 4px;
}
.live_footer .f_wrapper .top-wrap .copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}
.live_footer .f_wrapper .bottom-wrap {
    padding-top: 32px;
}
.live_footer .f_wrapper .bottom-wrap ul {
    display: flex;
    padding-right: 80px;
}
.live_footer .f_wrapper .bottom-wrap ul li {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.live_footer .f_wrapper .bottom-wrap ul li span, 
.live_footer .f_wrapper .bottom-wrap ul li a {
    font-size: 14px;
    color: #808080;
    width: fit-content;
}


@media screen and (max-width:1200px) {
    .live_header .header_wrap .inner {
        padding: 0 26px;
    }
    .live_footer .f_wrapper {
        padding: 0 40px;
    }
    .live_header .business-nav-wrap .inner .depth01-box {
        right: 350px;
    }
}
@media screen and (max-width: 980px) {
    .live_header {
        height: 84px;
        padding: 10px;
    }
    .live_header .business-nav-wrap .inner .depth01-box {
        display: none;
    }
    .live_header .business-nav-wrap { 
        display: none;
    }
    .live_header .header_wrap {
        padding: 0 20px;
    }
    .live_header .header_wrap .inner {
        padding: 0;
    }
    .live_header .header_wrap .inner h1 a {
        width: 170px;
    }
    .live_header .header_wrap .inner .hamburger {
        display: flex;
    }
    .live_header .header_wrap .inner .nav-wrap {
        display: none;
    }

    .live_footer {
        padding: 40px 0 0 0;
    }
    .live_footer .f_wrapper {
        padding: 0 20px;
    }
    .live_footer .f_wrapper .f_logo {
        width: 274px;
        height: 24px;
        margin-bottom: 30px;
    }
    .live_footer .f_wrapper .top-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 15px;
    }
    .live_footer .f_wrapper .top-wrap .f_info {
        gap: 16px;
    }
    .live_footer .f_wrapper .top-wrap .f_info ul {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 4px;
    }
    .live_footer .f_wrapper .top-wrap .f_info p, 
    .live_footer .f_wrapper .top-wrap .f_info span {
        font-size: 12px;
    }
    .live_footer .f_wrapper .bottom-wrap {
        padding: 24px 0;
    }
    .live_footer .f_wrapper .bottom-wrap ul {
        column-gap: 16px;
        row-gap: 5px;
        flex-wrap: wrap;
        padding-right: 0;
    }
    .live_footer .f_wrapper .bottom-wrap ul li {
        flex-direction: row;
        width: fit-content;
    }
    .live_footer .f_wrapper .bottom-wrap ul li span,
    .live_footer .f_wrapper .bottom-wrap ul li a {
        font-size: 12px;
    }
    .live_footer .f_wrapper .top-wrap .copyright {
        white-space: wrap;
    }
}