@charset "UTF-8";

.body_wrap {
    padding-top: 140px;
}

/* 준비중 모달 */
.modal_css {
    display: none;
}

.modal_css.modal_on {
    display: block;
}

.modal_css {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.modal_css .modal_ready {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 320px;
    width: calc(100% - 20px);
    transform: translate(-50%, -50%);
    z-index: 999;
    /* padding: 20px; */
    background-color: var(--white);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.modal_css .modal_ready .top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 20px 0;
}

.modal_css .modal_ready .middle {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.modal_css .modal_ready .middle img {
    width: 32px;
}

.modal_css .modal_ready .middle .modal_title {
    margin: 10px 0;
}

.modal_css .modal_ready .middle .modal_desc {
    color: var(--gray7);
}

.modal_css .modal_ready .bottom {
    margin-top: 40px;
    padding: 10px;
    text-align: center;
    background-color: var(--mainpink);
    color: var(--white);
    cursor: pointer;
}

.modal_css .modal_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.border_title {
    width: 30px;
    word-break: keep-all;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 30px;
    height: 30px;
    padding: 0 16px;
    border: 1px solid #e6e6e6;
    background-color: var(--white);
    margin-right: 12px;
}

.tab-content {
    display: none !important;
}

.tab-content.active {
    display: flex !important;
}

.tab-content2022 {
    display: none !important;
}

.tab-content2022.active {
    display: flex !important;
}

.tab-content2024 {
    display: none !important;
}

.tab-content2024.active {
    display: flex !important;
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 40px;
    padding-top: 24px;
    /* border: 1px solid #888; */
    width: auto;
    max-width: 1130px;
    height: fit-content;
    max-height: 100%;
    max-height: calc(100% - 30px);
    overflow-y: auto;
    position: relative;
    border-radius: 30px;
}

.modal .modal-prev {
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 0;
    background-image: url(https://d16yd5kqyanj9e.cloudfront.net/img/video_modal_prev.svg);
    width: 35px;
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 25px;
    opacity: 0.5;
}

.modal .modal-prev.on {
    opacity: 1;
}

.modal .modal-next {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 0;
    background-image: url(https://d16yd5kqyanj9e.cloudfront.net/img/video_modal_next.svg);
    width: 35px;
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 25px;
    opacity: 0.5;
}

.modal .modal-next.on {
    opacity: 1;
}

.modal-content .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-content img {
    width: 100%;
    display: block;
}

.close-button {
    color: #aaa;
    /* float: right; */
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.section_padding {
    padding: 180px 0;
}

/* 헤더 */
.header {
    width: 100%;
    background-color: var(--white);
    height: 80px;
    position: fixed;
    top: 0;
    z-index: 120;
}

.header .header_inner {
    /* max-width: 1400px; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header .header_inner h1 {
    margin-left: 80px;
}

.header .header_inner h1 {
    height: 100%;
    padding: 20px 0;
}

.header .header_inner h1 a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header_inner h1 img {
    height: 100%;
}

.header .header_inner .nav {
    /* color: var(--white); */
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 680px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header .header_inner .nav .dept_01 {
    position: relative;
    height: 100%;
}

.header .header_inner .nav .dept_01>a {
    display: flex;
    align-items: center;
    height: 100%;
}

.header .header_inner .nav .dept_01>a span {
    display: block;
    position: relative;
    transition: all 0.3s;
}

.header .header_inner .nav .dept_01.select_menu>a span {
    color: var(--mainpink);
}

.header .header_inner .nav .dept_01:hover>a span {
    color: var(--mainpink);
}

.header .header_inner .nav .dept_01 .dept_02 {
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    color: var(--white);
}

.header .header_inner .nav .dept_01:hover .dept_02 {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* .header .header_inner .nav .dept_02:hover {
    display: flex;
} */
.header .header_inner .nav .dept_02 ul {
    width: 200px;
    position: absolute;
    top: calc(100%);
    left: 50%;
    /* margin-top: 10px; */
    transform: translateX(-50%);
    background-color: var(--black);
    /* border-radius: 15px; */
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header .header_inner .nav .dept_02 li {
    width: 100%;
}

.header .header_inner .nav .dept_02 .double {
    display: flex;
}

.header .header_inner .nav .dept_02 .double a {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header_inner .nav .dept_02 a {
    text-align: center;
    display: block;
    padding: 22px 0;
    width: 100%;
}

.header .header_inner .nav .dept_02 a {
    text-align: center;
    display: block;
    padding: 22px 0;
    width: 100%;
    transition: all 0.3s;
}

.header .header_inner .nav .dept_02 a:hover {
    color: var(--mainpink);
}

.header .header_inner .nav .dept_02 li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header .header_inner .gnb {
    display: flex;
    align-items: center;
    height: 100%;

}

.header .header_inner .gnb a {
    margin-right: 7.5px;
    width: 35px;
    height: 35px;
    padding: 7.5px;
}

.header .header_inner .gnb a img {
    width: 100%;
}

.header .header_inner .gnb .lang_select_btn {
    display: flex;
    align-items: center;
    color: var(--black);
    position: relative;
    height: 100%;
    cursor: pointer;
}

.header .header_inner .gnb .lang_select_btn span {
    margin: 0 8px;
}

.header .header_inner .gnb .lang_select_btn .lang_select_list {
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--black);
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 10px;
    transition: all 0.3s;
}

.header .header_inner .gnb .lang_select_btn .lang_select_list.on {
    opacity: 1;
    visibility: visible;
}

.header .header_inner .gnb .lang_select_btn .lang_select_list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0;
    color: var(--white);
    padding: 22px 30px;
}

.header .header_inner .gnb .lang_select_btn .lang_select_list li:not(:last-child) a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}


.header .header_inner .gnb .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    padding: 0;
    background-color: var(--white);
    /* margin-left: 30px; */
}

.header .header_inner .gnb .hamburger .ham_span_wrap {
    width: 22px;
    height: 16px;
    position: relative;
}

.header .header_inner .gnb .hamburger .ham_span_wrap span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--black);
    position: absolute;
}

.header .header_inner .gnb .hamburger .ham_span_wrap span:first-child {
    top: 0;
    left: 0;
}

.header .header_inner .gnb .hamburger .ham_span_wrap span:nth-child(2) {
    top: 50%;
    /* transform: translateY(-50%); */
    left: 0;
}

.header .header_inner .gnb .hamburger .ham_span_wrap span:last-child {
    top: 100%;
    left: 0;
}

.sub_header {
    position: fixed;
    top: 80px;
    width: 100%;
    height: 60px;
    background-color: var(--black);
    z-index: 100;
}

.sub_header ul {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub_header ul li {
    display: flex;
    color: var(--white);
    align-items: center;
}

.sub_header ul li.on {
    color: var(--mainpink);
}

.sub_header ul li:not(:last-child)::after {
    content: "";
    display: flex;
    width: 1px;
    height: 22px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 80px;
}

/* 푸터 */
.footer {
    width: 100%;
    padding: 44px 0 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer img {
    width: 150px;
}

/* .footer .btn_wrap .top_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    padding-right: 0;
    opacity: 0.6;

    span {
        margin-top: 5px;
    }
} */
.footer.mobile_footer .btn_wrap {
    justify-content: center;
}

.footer.mobile_footer .btn_wrap .top_btn {
    padding: 10px;
    margin-bottom: 15px;
    color: var(--black);
}

.footer .top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
    /* border-bottom: 5px solid var(--mainpink); */
    margin-bottom: 20px;
}

.footer .top img:not(:last-child) {
    margin-right: 30px;
}

.footer .bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer .bottom .flex {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.footer .bottom .flex p {
    margin-right: 10px;
    transform: translateY(6px);
    font-weight: 600;
}

.footer .bottom .logo_wrap {
    /* margin-bottom: 40px; */
    display: flex;
    align-items: center;
}

.footer .bottom .logo_wrap .lotte {
    transform: translateY(6px);
}

.footer .bottom .logo_wrap img {
    height: 20px;
    width: auto;
}

.footer .bottom .logo_wrap img.ottogi {
    height: 30px;
    width: auto;
}

.footer .bottom .logo_wrap img:not(:last-child) {
    margin-right: 15px;
}

.footer .bottom p {
    opacity: 0.5;
}

/* .footer .bottom .logo_wrap img:first-child {
    margin-right: 20px;
} */

.footer .top .sns_wrap a:first-child {
    margin-right: 12px;
}

/* 좌측 메뉴 */
.ticket_float_menu {
    position: fixed;
    bottom: 30px;
    right: 40px;
    width: 80px;
    z-index: 100;
}

.ticket_float_menu.eng {
    position: fixed;
    bottom: 30px;
    right: 40px;
    width: 110px;
    z-index: 100;
}

.ticket_float_menu .top_btn button {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: var(--white);
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.15));
    -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.ticket_float_menu.eng .top_btn button {
    width: 110px;
    height: 110px;

}

.ticket_float_menu .top_btn button:hover {
    background-color: var(--mainpink);
}

.ticket_float_menu .top_btn button svg line {
    transition: all 0.3s;
}

.ticket_float_menu .top_btn button svg path {
    transition: all 0.3s;
}

.ticket_float_menu .top_btn button:hover svg line {
    stroke: var(--white);
}

.ticket_float_menu .top_btn button:hover svg path {
    stroke: var(--white);

}

.ticket_float_menu ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    /* height: 280px; */
    border-radius: 80px;
    padding: 42px 0;
    background-color: var(--mainpink);
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.15));
    -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.15));
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
}

.ticket_float_menu ul li a {
    /* padding: 10px 0; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ticket_float_menu ul li a img {
    display: block;
    margin-bottom: 6px;
    width: 26px;
}

.ticket_float_menu ul li:not(:last-child) {
    margin-bottom: 25px;
}

/* 좌측 메뉴 */
.ticket_float_menu ul .seoul_park a {
    background-color: var(--maingreen);
}

.ticket_float_menu ul .gwang_park a {
    background-color: var(--mainpink);
}

.ticket_float_menu ul .sunset_park a {
    background-color: var(--mainyellow);
}

.ticket_float_menu ul .seoul_park a:hover {
    color: var(--maingreen);
}

.ticket_float_menu ul .gwang_park a:hover {
    color: var(--mainpink);
}

.ticket_float_menu ul .sunset_park a:hover {
    color: var(--mainyellow);
}

/* 햄버거 모달 */
.menu_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    background-color: var(--white);
    z-index: 999;
    transition: all 0.3s;
}

.menu_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    background-color: var(--white);
    z-index: 999;
    transition: all 0.3s;
}

.menu_modal.menu_on {
    opacity: 1;
    visibility: visible;
}

.menu_modal .inner {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu_modal .hamburger_close {
    position: absolute;
    top: 30px;
    right: 50px;
    width: 30px;
    height: 80px;
    cursor: pointer;
    padding: 5px;
    z-index: 99;
}

.menu_modal .hamburger_close img {
    width: 100%;
}

.menu_modal .logo_menu_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100vh;
    overflow-y: auto;
}

.menu_modal .logo_menu_wrap .right {
    width: 30%;
    padding: 0 50px;
}

.menu_modal .logo_menu_wrap .right img {
    width: 80%;
}

.menu_modal .logo_menu_wrap .left {
    width: calc(70% - 100px);
    height: 100%;
    position: relative;
}

.menu_modal .logo_menu_wrap .left .menu {
    /* border: 4px solid var(--black); */
    padding: 30px 35px 30px;
    width: 380px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    position: absolute;
}

.menu_modal .logo_menu_wrap .left .menu .title_wrap {
    width: 100%;
    text-align: right;
}

.menu_modal .logo_menu_wrap .left .menu .link_wrap {
    display: flex;
    flex-direction: column;
}

.menu_modal .logo_menu_wrap .left .menu .link_wrap .space_between {
    display: flex;
    justify-content: space-between;
}

.menu_modal .logo_menu_wrap .left .menu .link_wrap a:not(:last-child) {
    margin-bottom: 10px;
}

.menu_modal .logo_menu_wrap .left .green {
    border: 4px solid var(--maingreen);
    color: var(--maingreen);
    background: white;
    background: linear-gradient(180deg, white 50%, #eefbf4 100%);
    top: calc(50% - 280px);
    left: 0;
    z-index: 1;
    transform: rotate(-3.15deg);
}

.menu_modal .logo_menu_wrap .left .pink {
    border: 4px solid var(--mainpink);
    color: var(--mainpink);
    background: white;
    background: linear-gradient(180deg, white 50%, #fff0f3 100%);
    top: calc(50% - 180px);
    right: 0;
    z-index: 2;
    transform: rotate(4.49deg);
}

.menu_modal .logo_menu_wrap .left .pink .link_wrap {
    align-items: flex-end;
}

.menu_modal .logo_menu_wrap .left .pink .link_wrap>div {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.menu_modal .logo_menu_wrap .left .pink .link_wrap>div a {
    text-align: right;
}

.menu_modal .logo_menu_wrap .left .pink .link_wrap>div a:nth-child(2) {
    margin-left: 25px;
    width: 30px;
}

.menu_modal .logo_menu_wrap .left .pink .link_wrap>div a:last-child {
    margin-left: 20px;
    width: 74px;
    display: block;
}

.menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a:last-child {
    margin-left: 20px;
    width: 124px;
    display: block;
}

.menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a.gwanghwamun {
    margin-left: 20px;
    width: 145px;
    display: block;
}

.menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a.noeul_Park {
    margin-left: 20px;
    width: 90px;
    display: block;
}

.menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a.myeongdong {
    margin-left: 20px;
    width: 122px;
    display: block;
}

.menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a.event_link {
    margin-left: 20px;
    width: 70px;
    display: block;
}

.menu_modal .logo_menu_wrap .left .pink .link_wrap>div:first-child {
    margin-bottom: 10px;
}

.menu_modal .logo_menu_wrap .left .pink .link_wrap>div.place_wrap_top {
    margin-bottom: 0;
}

.menu_modal .logo_menu_wrap .left .yellow {
    border: 4px solid var(--mainyellow);
    color: var(--mainyellow);
    background: white;
    background: linear-gradient(180deg, white 50%, #fffcf5 100%);
    top: calc(50% - 50px);
    left: 0;
    z-index: 4;
    transform: rotate(5.49deg);
}

.menu_modal .logo_menu_wrap .left .yellow .link_wrap .number_link {
    /* display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px; */
}

.menu_modal .logo_menu_wrap .left .yellow .link_wrap>div .number_flex a:first-child {
    margin-left: 50px;
}

.menu_modal .logo_menu_wrap .left .menu .link_wrap .may_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu_modal .logo_menu_wrap .left .yellow .link_wrap>div:first-child {
    margin-bottom: 10px;
}

.menu_modal .logo_menu_wrap .left .yellow .link_wrap>div:last-child .number_flex {
    display: flex;
    align-items: center;
}

.menu_modal .logo_menu_wrap .left .menu .link_wrap .number_flex a:not(:last-child) {
    margin-bottom: 0;
}

.menu_modal .logo_menu_wrap .left .yellow .link_wrap>div:last-child .number_flex a {
    margin: 0 auto;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: all .3s;
}

.menu_modal .logo_menu_wrap .left .yellow .link_wrap>div:last-child .number_flex a:hover {
    background-color: var(--mainyellow);
    color: var(--white);
}

.menu_modal .logo_menu_wrap .left .blue {
    border: 4px solid var(--mainblue);
    color: var(--mainblue);
    background: white;
    background: linear-gradient(180deg, white 50%, #e9f5fa 100%);
    right: 0;
    top: calc(50% + 50px);
    z-index: 3;
    transform: rotate(-5.39deg);
}

.menu_modal .logo_menu_wrap .left .blue .link_wrap {
    align-items: flex-end;
}

.menu_modal .logo_menu_wrap .left .blue .link_wrap>div a:first-child {
    margin-right: 50px;
}

.menu_modal .logo_menu_wrap .left .blue .link_wrap>div:first-child {
    margin-bottom: 10px;
}

/* 섹션 타이틀 */
.section_title_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.section_title_wrap .eng_title {
    margin-bottom: 10px;
    text-align: center;
}

.section_title_wrap .kor_title {
    text-align: center;
}

.section_title_wrap .line {
    width: 360px;
    height: 1px;
    background-color: var(--mainpink);
    margin: 25px 0;
}

.section_title_wrap .desc {
    color: var(--gray7);
    text-align: center;
    margin-top: 16px;
}

.background_section {
    background-color: var(--background);
}

/* 모바일 푸터(별도) */
.mobile_footer {
    width: 100%;
    padding: 40px 0 30px;
    display: none;
}

.mobile_footer p {
    opacity: 0.5;
    margin: 10px 0 30px;
}

.mobile_footer .sns_wrap {
    margin-bottom: 10px;
}

.mobile_footer .sns_wrap img {
    width: 30px;
}

.mobile_footer .sns_wrap a:first-child {
    margin-right: 10px;
}

.mobile_footer .logo_wrap img {
    width: 100px;
}

.mobile_footer .logo_wrap .seoul_logo {
    margin-right: 10px;
}

.place_sub_header ul li:not(:last-child)::after {
    margin: 0 60px;
}

.survey_modal {
    position: absolute;
    width: 500px;
    z-index: 99;
    top: 150px;
    right: 160px;
    background-color: #000;
    display: none;
}

.main_popup02 {
    top: 100px;
    left: 130px;
    z-index: 100;
}
.main_popup03 {
    top: 200px;
    left: 230px;
    z-index: 100;
}
.survey_modal.on {
    display: block;
}

.survey_modal img {
    width: 100%;
    display: block;
    border: 5px solid #000;
}

.survey_modal .close_wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 0 10px 4px;
}

.survey_modal .close_wrap button {
    color: #fff;
}

.survey_modal .close_wrap .check_wrap {
    display: flex;
    align-items: center;
}

/* 첨부파일 */
.file_wrap {
    background-color: #ebebeb;
    width: 100%;
    max-width: 500px;
    padding: 10px 20px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    color: #222 !important;
    text-decoration: none !important;
}

.file_wrap .file_name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(100% - 40px);
    color: #868686;
}

.file_wrap .file_name p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    width: 100%;
    text-align: left;
    color: #222;
}

a.file_wrap .file_name span {
    font-size: 14px;
}

.file_wrap img {
    width: 30px;
    margin: 0 !important;
}

.file_wrap:not(:last-child) {
    margin-bottom: 10px;
}

@media screen and (max-width: 1500px) {
    .header .header_inner .nav {
        max-width: 550px;
    }

    .header .header_inner .nav .dept_01>a span {
        font-size: 16px;
    }

    .header .header_inner .nav .dept_02 a {
        font-size: 16px;
    }

    .sub_header ul li {
        font-size: 16px;
    }

    .place_sub_header ul li:not(:last-child)::after {
        margin: 0 40px;
    }
}

@media screen and (max-width: 1300px) {

    .menu_modal .logo_menu_wrap .left .pink .link_wrap>div.place_wrap_top {
        margin-bottom: 10px;
    }

    .menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a.gwanghwamun {
        margin-left: 10px;
        width: 145px;
        display: block;
    }

    .menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a.noeul_Park {
        margin-left: 10px;
        width: 90px;
        display: block;
    }

    .menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a.myeongdong {
        margin-left: 10px;
        width: 122px;
        display: block;
    }

    .menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a.event_link {
        margin-left: 10px;
        width: 70px;
        display: block;
    }

    .menu_modal .logo_menu_wrap .left .yellow .link_wrap>div:last-child .number_flex a {
        width: 20px;
        height: 20px;
    }

    .menu_modal .logo_menu_wrap {
        width: 100%;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .menu_modal .logo_menu_wrap .right {
        width: 40%;
        padding: 0 50px;
    }

    .menu_modal .logo_menu_wrap .right img {
        width: 80%;
    }

    .menu_modal .logo_menu_wrap .left {
        width: calc(55%);
        height: 100%;
        position: relative;
    }

    .menu_modal .logo_menu_wrap .left .menu {
        /* border: 4px solid var(--black); */
        padding: 20px 25px 30px;
        width: 300px;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
        position: absolute;
    }

    .menu_modal .logo_menu_wrap .left .menu .title_wrap {
        width: 100%;
        text-align: right;
    }

    .menu_modal .logo_menu_wrap .left .menu .link_wrap {
        display: flex;
        flex-direction: column;
    }

    .menu_modal .logo_menu_wrap .left .menu .link_wrap a:not(:last-child) {
        margin-bottom: 10px;
    }

    .menu_modal .logo_menu_wrap .left .green {
        top: calc(50% - 280px);
        left: 0;
    }

    .menu_modal .logo_menu_wrap .left .pink {
        top: calc(50% - 180px);
        right: 0;
    }

    .menu_modal .logo_menu_wrap .left .yellow {
        top: calc(50% - 50px);
        left: 0;
    }

    .menu_modal .logo_menu_wrap .left .yellow .link_wrap>div:last-child a {
        margin-left: 15px;
    }

    .menu_modal .logo_menu_wrap .left .blue {
        right: 0;
        top: calc(50% + 50px);
        z-index: 3;
        transform: rotate(-5.39deg);
    }

    .section_padding {
        padding: 150px 10px;
    }

    .header .header_inner .nav {
        display: none;
    }

    .ticket_float_menu ul li a {
        /* width: 90px;
    height: 90px; */
        /* padding: 5px 20px;
    font-size: 13px !important; */
    }

    .ticket_float_menu ul li a img {
        /* margin-top: 5px; */
        /* width: calc(100% - 5px); */
    }

    .ticket_float_menu ul li a .img_wrap {
        /* margin-bottom: 8px; */
    }

    .pc_footer {
        display: none;
    }

    .mobile_footer {
        display: flex;
    }

    .modal-content {
        /* width: 90%; */
        /* padding: 20px; */
    }


}

@media screen and (max-width: 1100px) {
    .menu_modal .logo_menu_wrap {
        width: 100%;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .menu_modal .logo_menu_wrap .right {
        width: 35%;
        padding: 0 50px;
    }

    .menu_modal .logo_menu_wrap .right img {
        width: 80%;
    }

    .menu_modal .logo_menu_wrap .left {
        width: calc(60%);
        height: 100%;
        position: relative;
    }

    .menu_modal .logo_menu_wrap .left .menu {
        /* border: 4px solid var(--black); */
        padding: 20px 35px 30px;
        width: 300px;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
        position: absolute;
    }

    .menu_modal .logo_menu_wrap .left .menu .title_wrap {
        width: 100%;
        text-align: right;
    }

    .menu_modal .logo_menu_wrap .left .menu .link_wrap {
        display: flex;
        flex-direction: column;
    }

    .menu_modal .logo_menu_wrap .left .menu .link_wrap a:not(:last-child) {
        margin-bottom: 10px;
    }

    .menu_modal .logo_menu_wrap .left .green {
        top: calc(50% - 280px);
        left: 0;
    }

    .menu_modal .logo_menu_wrap .left .pink {
        top: calc(50% - 180px);
        right: 0;
        padding: 20px 25px 30px;
    }

    .menu_modal .logo_menu_wrap .left .yellow {
        top: calc(50% - 30px);
        left: 0;
    }

    .menu_modal .logo_menu_wrap .left .yellow .link_wrap>div:last-child a {
        margin-left: 15px;
    }

    .menu_modal .logo_menu_wrap .left .blue {
        right: 0;
        top: calc(50% + 50px);
        z-index: 3;
        transform: rotate(-5.39deg);
    }
}

@media screen and (max-width:950px) {
    .sub_header.date_sub_header ul.mobile {
        display: flex !important;
        height: calc(50% - 5px);
    }

    .sub_header.date_sub_header {
        height: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sub_header.date_sub_header ul.pc {
        display: none !important;
    }
}

@media screen and (max-width: 900px) {
    .survey_modal {
        max-width: 500px;
        width: calc(100% - 20px);
        top: 50%;
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .header .header_inner .gnb .lang_select_btn .lang_select_list {
        top: 50px;
    }

    .modal .modal-prev {
        background-color: rgba(255, 255, 255, 0.8);
        background-size: 15px 20px;
        border-radius: 0 10px 10px 0;
        height: 45px;
        width: 30px;
        background-position: 30% center;
    }

    .modal .modal-next {
        background-color: rgba(255, 255, 255, 0.8);
        background-size: 15px 20px;
        border-radius: 10px 0 0 10px;
        height: 45px;
        width: 30px;
        background-position: 70% center;
    }

    .footer .top img:not(:last-child) {
        margin-right: 20px;
    }

    .footer img {
        width: 80px;
    }

    .footer .top {
        margin-bottom: 0;
    }

    .footer .bottom .logo_wrap img {
        height: 15px;
    }

    .footer .bottom .logo_wrap img:not(:last-child) {
        margin-right: 20px;
    }

    .footer .bottom .logo_wrap .lotte {
        transform: translateY(6px);
    }

    .footer .bottom .logo_wrap img.ottogi {
        height: 25px;
    }

    .body_wrap {
        padding-top: 90px;
    }

    .border_title {
        padding: 0 12px;
    }

    .section_title_wrap .line {
        width: 100%;
    }

    .header .header_inner .gnb a {
        margin-right: 0px;
        width: 30px;
        height: 30px;
    }

    .modal-content {
        max-width: calc(100% - 20px);
        width: auto;
        padding: 0px;
    }

    .modal-content .flex {
        padding: 15px;
        margin-bottom: 10px;
    }

    .section_title_wrap {
        margin-bottom: 30px;
        align-items: center;
    }

    .section_title_wrap .desc {
        text-align: center;
    }

    .section_title_wrap .eng_title {
        margin-bottom: 6px;
    }

    .section_padding {
        padding: 60px 0px;
    }

    .header {
        height: 50px;
    }

    .header .header_inner .gnb .hamburger {
        height: 50px;
        width: 50px;
        margin-left: 10px;
    }

    .header .header_inner .gnb .hamburger .ham_span_wrap {
        width: 20px;
        height: 15px;
    }

    .header .header_inner h1 {
        margin-left: 10px;
    }

    .header .header_inner h1 a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .header_inner h1 img {
        height: 25px;
    }

    .sub_header {
        top: 50px;
        height: 40px;
    }

    .sub_header ul li:not(:last-child)::after {
        margin: 0 20px;
    }

    .ticket_float_menu {
        display: none;
    }

    .menu_modal .hamburger_close {
        top: 10px;
        right: 10px;
    }

    .menu_modal .logo_menu_wrap {
        width: 100%;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 20px;
    }

    .menu_modal .logo_menu_wrap .right {
        display: none;
        width: 0;
        padding: 0 50px;
    }

    .menu_modal .logo_menu_wrap .right img {
        width: 80%;
    }

    .menu_modal .logo_menu_wrap .left {
        width: calc(100%);
        max-width: 410px;
        margin: 0 auto;
        height: 100%;
        position: relative;
    }

    .menu_modal .logo_menu_wrap .left .menu {
        /* border: 4px solid var(--black); */
        padding: 15px 20px 25px;
        width: 250px;
        height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
        position: absolute;
    }

    .menu_modal .logo_menu_wrap .left .menu .title_wrap {
        width: 100%;
        text-align: right;
    }

    .menu_modal .logo_menu_wrap .left .menu .link_wrap {
        display: flex;
        flex-direction: column;
    }

    .menu_modal .logo_menu_wrap .left .menu .link_wrap a:not(:last-child) {
        margin-bottom: 5px;
    }

    .menu_modal .logo_menu_wrap .left .green {
        border: 3px solid var(--maingreen);
        top: calc(50% - 280px);
        left: 0;
    }

    .menu_modal .logo_menu_wrap .left .pink {
        border: 3px solid var(--mainpink);
        top: calc(50% - 145px);
        right: 0;
    }

    .menu_modal .logo_menu_wrap .left .pink .link_wrap>div a:last-child {
        margin-left: 10px;
        width: 70px;
    }

    .menu_modal .logo_menu_wrap .left .pink .link_wrap>div a {
        margin-bottom: 0 !important;
    }

    .menu_modal .logo_menu_wrap .left .yellow {
        border: 3px solid var(--mainyellow);
        top: calc(50% - 3px);
        left: 0;
        transform: rotate(-2.51deg);
    }

    .menu_modal .logo_menu_wrap .left .yellow .link_wrap>div:last-child a {
        margin-left: 15px;
    }

    .menu_modal .logo_menu_wrap .left .blue {
        border: 3px solid var(--mainblue);
        right: 0;
        top: calc(50% + 120px);
        z-index: 3;
        transform: rotate(8.61deg);
    }

    .menu_modal .logo_menu_wrap .left .blue .link_wrap {
        flex-direction: row;
        justify-content: flex-end;
    }

    .menu_modal.eng .logo_menu_wrap .left .blue .link_wrap {
        flex-direction: column;
        justify-content: flex-end;
    }

    .menu_modal.eng .logo_menu_wrap .left .blue .link_wrap a {
        margin-bottom: 3px !important;
    }

    .menu_modal .logo_menu_wrap .left .blue .link_wrap a {
        margin-bottom: 0 !important;
    }

    .menu_modal .logo_menu_wrap .left .blue .link_wrap a {
        margin-left: 10px;
    }

    .menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div:first-child {
        margin-bottom: 5px;
    }

    .menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a {
        font-size: 14px;
    }

    .menu_modal.eng .logo_menu_wrap .left .pink .link_wrap>div a:last-child {
        width: 100px;
    }

    .sub_header.date_sub_header {
        height: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sub_header.date_sub_header ul.mobile {
        height: 50%;
        height: calc(50% - 5px);
    }

    .sub_header.date_sub_header ul.mobile li a {
        font-size: 14px;
    }

    .sub_header.date_sub_header ul.mobile li:not(:last-child)::after {
        margin: 0 15px;
    }

    .sub_header.place_sub_header {
        height: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sub_header.place_sub_header .flex {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        align-items: center;
        width: fit-content;
        /* transform: translateX(26.5px); */
    }

    .sub_header.place_sub_header ul.mobile {
        height: 50%;
        height: calc(50% - 5px);
        /* justify-content: flex-start; */
    }

    /* .sub_header.eng_place_sub_header ul.mobile li:first-child a {
        width: 73px;
    } */

    .sub_header.place_sub_header ul.mobile li a {
        font-size: 14px;
    }

    .sub_header.place_sub_header ul.mobile li:not(:last-child)::after {
        margin: 0 15px;
    }
}

@media screen and (max-width: 500px) {
    .sub_header.place_sub_header ul li:not(:last-child)::after {
        margin: 0 20px;
        height: 16px;
    }

    .sub_header.place_sub_header ul li a {
        font-size: 14px;
    }

    .footer .bottom .logo_wrap img {
        height: 20px;
    }

    .footer .bottom .logo_wrap img:not(:last-child) {
        margin-right: 10px;
    }

    .footer .bottom .logo_wrap img.ottogi {
        height: 30px;
    }

}