@charset "utf-8";

/*인트로*/
html:has(#intro) {
    padding-right: 0px !important;
}
body#intro {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
body#intro .container {
    padding-bottom: 0;
    background-color: transparent;
    overflow-x: hidden;
    grid-template-rows: 1fr auto;
    max-width: 768px;
    width: auto;
    min-height: 4rem;;
}
body#intro .container .header {
    background-color: transparent;
    width: 100%;
    max-width: 768px;
    border-bottom: 0;
}
body#intro .intro_txt {
    position: fixed;
    bottom: 5rem;
    font-weight: 600;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

body#intro .container {
    box-shadow: none
}
.intro_copy {
    position: fixed;
    top: 64%;
    left: 0;
    width: 100%;
    text-align: center;
}
body#intro .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -48px;
    margin-left: -110px;
    width: 220px;
    height: 16px;
    background: url('../images/logo_word_d.svg') no-repeat 50% 50%;
    background-size: 100%;
    cursor: pointer;
}
.container {
    background-color: #fff;
    overflow-x: hidden;
    grid-template-rows: 1fr auto;
    max-width: 768px;
    width: 100%;
    min-height: 100vh;
    /* display: grid; */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}
body#cart .container {
    overflow-x: unset;
}
.main_wrap {
    padding-top: 5rem;
    max-width: 768px;
    min-width: 0;
    width: 100%;
}
.main_wrap.director section {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

/*header*/
header {
    background: transparent;
    width: 100%;
    max-width: 768px;
    height: 5rem;
    display: flex;
    align-items: center;
    z-index: 900;
    position: fixed;
    top: 0;
    border-bottom: 1px solid #dfdfdf;
    transition: background 0.2s ease, border-bottom 0.0s ease;
}
.header.on {
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
    transition: background 0.2s ease, border-bottom 0.0s ease;
}
header .header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
header .header_logo {
    width: auto;
    height: 2rem;
    height: 1.75rem;
}
header .header_logo img {
    height: 100%;
    width: auto;
}
header .header_r_menu {
    display: inline-flex;
    gap: .8rem;
    align-items: center;
}
header .header_r_menu > button {
    cursor: pointer;
}
.headmenu.on + .container header {
    border-bottom:0;
}
ul.menu_offcanvas li {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.733rem;
    font-weight: 500;
}
.line_offcanvas {
    border-bottom: 1px solid #dfdfdf;
}
header .header_r_menu button {
    display: inline-block;
    width: 24px;
    height: 24px;
}
.menu_logout {
    background: url("../images/menu_logout.svg") no-repeat 50% 50%;
}
.menu_login {
    background: url("../images/menu_login.svg") no-repeat 50% 50%;
}
.menu_hamberger {
    background: url("../images/menu_hamberger.svg") no-repeat 50% 50%;
}
header .header_r_menu button.menu_search {
    background: url("../images/menu_search.svg") no-repeat 50% 50%;
    display: none;
}
body#intro .menu_search {
    display: none !important;
}

/**/
.search_area .main_side {
    position: static;
    width: 100%;
    height: auto;
    padding: 2.5rem 0;
    display: block;
}
.search_area .main_side > div {
    position: relative;
}

/*top menu*/
.menu_title {
    padding: 3rem 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu_title h2 {
    font-size: 1.6875rem;
    line-height: 1;
    font-weight: 600;
}
.close_btn_menu,
.search_close {
    width: 24px;
    height: 24px;
    background: url('../images/icon_close.svg') no-repeat 50% 50%;
    background-size: 100%;
    cursor: pointer;
}
.search_close {
    top: 0;
    right: 0;
    position: absolute;
}

/*팝업*/
#main_pop {
    max-width: 1000px;
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 0.5px), calc(-50% - 0.5px));
    z-index: 999;
    display: none;
}
#main_pop.on {
    display: block;
}
#main_pop:after {
    content: '';
    position: fixed;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#main_pop .main_pop_wrap {
    /* background-color: #fff; */
    border-radius: 10px;
}
#main_pop .main_pop_wrap .swiper-wrapper.pop_img > li {
    cursor: pointer;
}
.list .inner .list li {
    cursor: pointer;
}
#main_pop .thumbs  {
    background-color: #fbfbfb;
}
#main_pop .close_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 10px 10px;
    font-weight: 400;
    font-size: 0.9375rem;
    background-color: #fff;
    border-top:1px solid #dfdfdf;
    margin-top: -1px;
    position: relative;
    z-index: 1;
}
#main_pop .close_pop,
.close_modal {
    width: 0.875rem;
    height: 0.875rem;
    background: url('../images/btn_close.svg') no-repeat 50% 50%;
    background-size: 100%;
    cursor: pointer;
}
.close_modal {
    position: absolute;
    top:1.25rem;
    right:1.25rem;
}
.main_pop_wrap {
    overflow: hidden;
    box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.12);
}
.main_pop_wrap.after {
    box-shadow:none;
}
.main_pop_wrap .pop_txt {
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33.3%, 1fr));
}
.main_pop_wrap .pop_txt > li {
    flex: 1 1 33.3% !important;
    font-weight: 400;
    font-size: 1.0rem;
    width: auto !important;
    margin: 0 !important;
    padding: 10px !important;
}
.main_pop_wrap .pop_txt > li span {
    line-height: 1.1rem;
    font-size: 0.9375rem;
}
.main_pop_wrap .pop_txt > li {
    border-bottom: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
    color: #999;
    cursor: pointer;
}
.main_pop_wrap .pop_txt > li.swiper-slide-thumb-active span {
    color: #000;
    font-weight: 400;
}
.main_pop_wrap .pop_txt > li:nth-child(3n),
.main_pop_wrap .pop_txt > li:last-child {
    border-right: 0;
}
/*이벤트 main_pop*/
.main_pop_wrap.event_pop {
    box-shadow: none;
}
.main_pop_wrap.event_pop .pop_txt {
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    gap: 0.6rem
}
.main_pop_wrap.event_pop .thumbs {
    padding: 1.5rem 1.5rem 2.5rem;
}
.main_pop_wrap.event_pop .pop_txt > li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid #d4d4d4;
    transition: background 0.2s ease, border 0.2s ease;
}
.main_pop_wrap.event_pop .pop_txt > li.swiper-slide-thumb-active {
    border: 1px solid #f7dde1;
    background-color: #f7dde1;
    padding: 0 0.8rem;
}
.main_pop_wrap.event_pop .pop_txt > li.swiper-slide-thumb-active span {
    color: #732938;
    font-weight: 500;
}
.main_pop_wrap.event_pop .inner .btn {
    position: fixed;
}
.main_pop_wrap.event_pop .inner .btn.btn_prev {
    left: 50%;
    margin-left: -405px;
}
.main_pop_wrap.event_pop .inner .btn.btn_next {
    right: 50% !important;
    margin-right: -405px;
}
/**/

.inner {
    position: relative;
}
.inner .btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    height: 3rem;
    width: 3rem;
    background: #fff !important;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.12);
    display: block;
    border-radius: 100px;
    z-index: 999;
    font-size: 0;
    margin-top: -1.5rem;
    cursor: pointer;
}
.inner .btn:before {
    content: "";
    width: 10px;
    height: 1.25rem;
    background-size: 100% !important;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.inner .btn.btn_prev {
    left: 30px;
}
.inner .btn.btn_prev::before {
    background: url("../images/arrow_prev_32x62_d.svg") no-repeat 50% 50%;
}
.inner .btn.btn_next {
    right: 30px;
}
.inner .btn.btn_next::before {
    background: url("../images/arrow_next_32x62_d.svg") no-repeat 50% 50%;
}    

/*메인섹션*/
.main_section.cate_con,
main section:last-child {
    padding-bottom: 5.75rem;
}
.main_section.detail {
    padding-top: 2rem;
}
.main_section.detail .detail_topimg {
    margin-bottom: 2.5rem;
}
.main_section.detail .detail_topimg img {
    border-radius: 0.6rem;
}
.main_section:has(.signup_wrap) {
    padding-top: 1.0rem;
}
.main_section:has(.signup_wrap) .agree_wrap {
    margin-bottom: 3rem;
}
section.back_img {
    background-position: 50% 50%;
    background-size: cover;
    height: 100vh;
    position: relative;
    padding-top: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
section#member {
    height: calc(100vh - 76px);
}
section#about01.back_img {
    height: 115vh;
    background-size: 90%;
    background-color: #ebdcdf;
    background-position: 50% top;
    background-repeat: no-repeat;
}
section.back_img.captain {
    height: 110vh;
    background-position: 50% top;
    background-color: #dcdfde;
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/h_director.jpg');
}
section.back_img.mapcon {
    height: 100%;
}
section.back_img.interior {
    background-color: #fbfbfb;
    height: auto;
}
section.back_img div.con {
    padding-top: 5rem;
    padding-bottom: 5rem;
    height: 100%;
}
section.back_img.interior div.con .main_interior_photo {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.9375rem;;
    grid-template-rows: repeat(7, 100px);
}
section.back_img.interior div.con .main_interior_photo .m_in01 {
	grid-area: 1 / 1 / span 2 / span 3;
}
section.back_img.interior div.con .main_interior_photo .m_in02 {
	grid-area: 3/ 1 / span 2 / span 1;
}
section.back_img.interior div.con .main_interior_photo .m_in03 {
	grid-area: 3 / 2 / span 3 / span 2;
}
section.back_img.interior div.con .main_interior_photo .m_in04 {
	grid-area: 5 / 1 / span 1 / span 1;
}
section.back_img.interior div.con .main_interior_photo .m_in05 {
	grid-area: 6 / 1 / span 2 / span 2;
    width: 100%;
    height: 200px;
}
section.back_img.interior div.con .main_interior_photo .m_in06 {
	grid-area: 6 / 3 / span 2 / span 1;
    width: 100%;
    height: 200px;
}

section.back_img.shadow {
    box-shadow: 0px 15px 10px 0px rgba(0, 0, 0, 0.03);
    z-index: 3;
}
.main_section.vip_list {
    background-color: #fbfbfb;
}
.main_section.card,
.main_section.event {
    padding-top: 1rem;
}
section.back_img .vip_info {
    position: absolute;
    bottom: 5%;
    font-size: 0.75rem;
}
section.back_img .vip_slogan {
    position: absolute;
    top: 40%;
    padding-left: 4rem;
    padding-right: 4rem;
}
section.back_img .vip_slogan.about {
    right: 5.5rem;
    top: 25%;
    padding-left: 0;
    padding-right: 0;
}
section.back_img .vip_slogan.about .main_side_ti {
    line-height: 1.0;
    font-weight: 400;
}
section#about01 .about_info {
    bottom: 20rem;
}
.about_info {
    position: absolute;
    left: 5.5rem;
    padding-left: 0;
    padding-right: 0;
    bottom: 10rem;
    width: calc(100% - 11.5rem);
    line-height: 1.5;
}
section.director .about_info {
    width: 100%;
}
.about_info .about_ti {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}
section.director .director_ti_wrap {
    position: absolute;
    top: 35%;
    left: 5.5rem;
}
.director_ti_wrap .director_ti {
    font-weight: 800;
    font-size: 2.0rem;
    margin-bottom: 5px;
}
.director_ti_wrap .director_ti_en {
    color: #888;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
}
.vip_slogan .main_side_copy {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #101010;
}
.vip_slogan .sti {
    font-weight: 700;
    font-size: 1.25rem;
}
.vip_slogan .main_side_ti {
    font-weight: 700;
    font-size: 2.25rem;
    letter-spacing: 0.03em;
    color: #101010;
    margin-top: 8px;
    font-family: 'Pretendard', sans-serif !important;
}
.vip_slogan.about .main_side_ti {
    margin-top: 0;
}

.header:has(~.main_wrap .top_img) {
    border-bottom: 0;
}
.header.on:has(~.main_wrap .top_img) {
    border-bottom: 1px solid #dfdfdf;
}
.main_wrap:has(section.top_img) {
    padding-top: 0;
}
.signup_wrap {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.signup_wrap .medium {
    margin-bottom: 7px;
    font-weight: 500;
}
.d_check {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}
.btn_id {
    background: #101010;
    color: #fff;
    border-radius: 4px;
    padding: 0 1.2rem;
}
#btn_id.btn_id,
#btn_pw.btn_pw {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #262626;
    padding: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    min-width: 160px;
    max-width: 160px;
    color: #161616;
    transition: background 0.3s ease, border 0.3s ease;
    margin: 0 5px;
}
#btn_id.btn_id:hover,
#btn_pw.btn_pw:hover {
    background: #000;
    border: 2px solid #000;
    color: #fff;
    transition: background 0.3s ease, border 0.3s ease;
}

body#event_detail .cate_txt_wrap {
    margin-bottom: 2rem;
}
.main_section {
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
.main_section.event_best {
    padding-top: 4rem;
}
.section_normal {
    margin-top: 3rem;
    padding: 3rem 2rem;
}
.main_about {
    background: url('../images/main_about_back.jpg') no-repeat 50% top;
    background-size: cover;
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
    margin-top: 5.75rem;
    margin-bottom: 2rem;
}
.btn_more {
    border: 1px solid #262626;
    color: #111;
    background-color: transparent;
    position: relative;
}
.main_about .btn_more {
    left: calc(100% - 65px);
}
.about_info .btn_more {
    margin-top: 2rem;
} 
.main_about_slogan {
    font-size: 1.375rem;
    margin: 4rem 0;
    letter-spacing: 0.00em;
    font-weight: 500;
    color: #866D54;
    font-family: 'Pretendard', sans-serif !important;
}
.main_about_txt {
    font-size: 0.9375rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}
.main_about_word {
    padding: 0 3.5rem 5.75rem ;
}
.main_interior_wrap {

}
.main_interior_wrap .ti {
    font-size: 0.9375rem;
    margin-bottom: 8px;
    font-weight: 500;
}
.main_interior_photo {
    display: grid;
    grid-template-columns: 1fr 20% 30%;
    gap: 0.9375rem;
    height: 220px;
    margin-bottom: 0.9375rem;
}
.main_interior_photo:last-of-type {
    margin-bottom: 0;
}
.main_interior_photo.last {
    grid-template-columns: 30% 1fr;
}
.main_interior_photo > div:nth-child(1) {
    grid-column: 1 / span 1;    
    grid-row: 1 / span 2;
}
.main_interior_photo.last > div:nth-child(1) {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
}
.main_interior_photo > div:nth-child(3) {
    grid-column: 3 / span 1;    
    grid-row: 1 / span 2;
}
.main_interior_photo > div:nth-child(5) {
    width: 40%;
}
.main_interior_photo > div:nth-child(6) {
    width: 60%;
}
.main_interior_photo > div {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 4px;
    cursor: pointer;
}
#bigimg_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  #bigimg_overlay img {
    max-width: 90%;
    max-height: 90%;
    cursor: pointer;
    border-radius: 6px;
  }

.main_ti {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main_ti h3 {
    font-size: 1.0rem;
    line-height: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.015em;
}
.main_ti:has(>p.small) {
    display: block;
}
.main_ti .small {
    font-size: 0.8125rem;
    line-height: 1;
    letter-spacing: 0.02em;
}
.main_section.cate {
    padding-top: 3rem;
    padding-bottom: 2.2rem;
    position: relative;
}
.result_count {
    right: 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
}
.main_section.cate:has(.total_check) {
    padding-bottom: 1.2rem;
}
.main_section.cate.shadow {
    /* box-shadow: 0px 15px 10px 0px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); */
}
.main_section.cate_con {
    padding-top: 2.2rem;
    padding: 0;
    display: none;
    background-color: #fbfbfb;
}
.main_section.cate_con .r_banner {
    border-radius: 0;
}
.main_section.cate_con .cate_sing_wrap,
.cate_sing_wrap {
    padding: 0 1.5rem 5.75rem;
    padding-bottom: 0;
}
.cate_sing_wrap {
    margin-bottom: 1.2rem;
}
.cate_sing_wrap:last-of-type {
    margin-bottom: 0;
}
.main_section h1.subti {
    font-weight: 800;
    font-size: 1.625rem;
    line-height: 2rem;
    margin-bottom: 2.2rem;
}
/* .main_section h1.subti:has(+.sti) {
    margin-bottom: 2.0rem;
} */
.main_section h1.subti:has(.result_count) {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main_section h1.subti:has(+.date) {
    margin-bottom: 1.5rem;
}
.main_section.cate .date {
    margin-bottom: 2.2rem;
    text-align: right;
    font-size: 0.875rem;
}
.main_section.pb_0 h1.subti:last-child {
    margin-bottom: 3rem;
}
.main_section h1.subti:last-child {
    margin-bottom: 0.3rem;
}
.main_section h1.sti {
    font-weight: 400;
    font-size: 1.00rem;
    line-height: 1.50rem;
    margin-bottom: 1.375rem;
}
.category_wrap {
    column-gap: 0.5rem;
    row-gap: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.72rem;
}
.category_wrap:last-child {
    margin-bottom: 0;
}
body#main .category_wrap {
    margin-top: 0;
}
.category_wrap > a,
.category_wrap > li {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 100px;
    cursor: pointer;
}
body#main .category_wrap > a:hover,
.category_wrap > a:hover,
.category_wrap > a.active,
body#main .category_wrap > li:hover,
.category_wrap > li.active {
    background-color: #f7dde1;
    border: 1px solid #f7dde1;
    color: #732938;
    font-weight: 500;
    transition: background 0.3s ease, border 0.3s ease;
}
.depth_cate {
    margin-bottom: 1.5rem;
}
.depth_cate .swiper-wrapper {
    height: auto;
}
.depth_cate .swiper-wrapper .swiper-slide > li {
    cursor: pointer;
}
.depth_cate .cate_img_wrap {
    position: relative;
    overflow: hidden;
}
.depth_cate .cate_img_wrap .cate_sti {
    position: absolute;
    bottom: 1.4rem;
    left: 1.9rem;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    color: #fff;
    display: none;
}
.depth_cate_wrap {
    display: flex;
    left: 4%;
    bottom: 13%;
    gap: 0.4rem;
    flex-wrap: wrap;
    overflow-x: auto;
    width: 100%;
    padding: 0 1.5rem;
    margin-bottom: 2.0rem;
}
.depth_cate_wrap > li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid #d4d4d4;
    transition: background 0.2s ease, border 0.2s ease;    
}
.depth_cate_wrap.depth_menu > li {
    border: 1px solid #dfdfdf;
    padding: 0 0.8rem;
    height: 36px;
}
.depth_cate_wrap > li:hover,
.depth_cate_wrap > li.active {
    background: #f7dde1;
    border: 1px solid #c3969f;
    color: #fff;
    font-weight: 500;
    transition: background 0.2s ease, border 0.2s ease;
}
.depth_cate_wrap.depth_menu > li:hover,
.depth_cate_wrap.depth_menu > li.active {
    border: 1px solid #f7dde1;
    background-color: #f7dde1;
    color: #732938;
    font-weight: 500;
}
.main_section.cate .search_wrap {
    background-color: #fff;
    border: 2px solid #c3969f;
}
.main_section.main_banner {
    padding-left: 0;
    padding-right: 0;
}
.r_banner {
    border-radius: 0.6rem;
    width: 100%;
    height: auto;
}
.event_wrap {
    display: flex;
    gap: 1rem;
    padding-bottom: .7rem;
    overflow-x: auto;
}
.event_wrap .event_box {
    grid-template-rows: auto 1fr auto;
    flex: none;
    width: 13.991rem;
    height: 13.991rem;
    display: grid;
}
.event_wrap .event_box img {
    object-fit: cover;
    border-radius: 1.0rem;
    width: 100%;
    height: auto;
}
section.fir.main {
    padding-top: 5rem;
}
section.fir {
    padding-top: 5.75rem;
}
section.event_best .event_box {
    border: 1px solid #f5f5f5;
    background: #fbfbfb;
    border-radius: 0.6rem;
    padding: 1.3rem 1.3rem 1.0rem;
    height: auto;
    max-height: 13.991rem;    
    transition: background 0.3s ease;
}
section.event_best .event_box:hover {
    background: #fff;
    border: 1px solid #c3969f;
    transition: background 0.3s ease, border 0.3s ease;
}
section.event_best .event_box > div:nth-child(2) {
    overflow-y: auto;
    margin-right: -1.0em;
    scrollbar-gutter: stable;
    padding-right: 5px;
    min-height: 2.5rem;
}
section.event_best .mevent_ti {
    font-size: 1.05rem;
    line-height: 1.45rem;
    font-weight: 600;
    padding-bottom: .6rem;
}
.event_wrap .event_box:has(.mevent_detail:empty) {
    display: block; 
    display: flex;
    flex-direction: column;
}
section.event_best .mevent_detail:empty {
    /* display: none; */
    flex: 1;
}
section.event_best .mevent_detail {
    color: #888;
    font-size: .8rem;
    line-height: 1.1rem;
    margin-bottom: 5px;
    position: relative;
}
section.event_best .mevent_detail:has(>p) {
    margin-bottom: 0;
}
section.event_best .mevent_detail > p {
    color: #888;
    font-size: .8rem;
    line-height: 1.0rem;
    margin-bottom: 5px;
    position: relative;
    text-indent : -7px;
    padding-left: 7px;
}
section.event_best .mevent_detail > p:empty {
    display: none;
}
section.event_best .mevent_detail > p::before {
    content: '· ';
}
section.event_best .mevent_price {
    font-size: 1.125rem;
    line-height: 1.3rem;
    font-weight: 600;
}
section.event_best .mevent_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    padding-top: 0.60rem;
}
section.event_best .mevent_num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 1.25rem;
    background-color: #111;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    cursor: pointer;
}
.main_address {
    display: grid;
    grid-template-columns: 8.2vw 1fr;
    grid-template-columns: 160px 1fr;
    font-size: 0.9375rem;
    line-height: 1;
    margin-top: 1.375rem;
    position: relative;
    gap: 0.7rem;
}
.main_address dd {
    line-height: 1.8; 
    color: #666;
}
.map_icon {
    position: absolute;
    right:0;
    display: flex;
}
.map_icon > a {
    margin-left: 10px;
}
.map_icon > a {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    overflow: hidden;
}
.map_icon > a:has(.main_icon_map.naver) {
    border: 1px solid #dfdfdf;
    border-radius: 4px;
}
.main_address.foot_info {
    font-size:  0.875rem;
    line-height: 1.5rem;
    grid-template-columns: auto 1fr auto 1fr;
    row-gap: 0;
    column-gap: 2rem;
}
.main_address dt {    
    font-weight: 600;
    line-height: 1.8;
}
.cate_box {
    border: 1px solid #dfdfdf;
    border-radius: 0.6rem;
    padding: 1.5rem;
    background: #fff;
    transition: background 0.3s ease;
    margin-bottom: 1.2rem;
    position: relative;
    overflow: hidden;
}
.cate_box:has(.event_alarm) {
    overflow: visible; 
}
.cate_box:last-child {
    margin-bottom: 0;
}
.cate_box:hover {
    box-shadow: none;
    border: 1px solid #c3969f;    
    transition: border 0.3s ease;
}
.cate_txt > p {
    margin-top: .7rem;
    font-size: .875rem;
    line-height: 1.25rem;
    color: #888;
}
.cate_txt > p:empty {
    display: none;
}
.cate_txt > p:first-child {
    margin-top: 0;
}  
.cate_box .cate_ti {
    font-size: 1.05rem;
    line-height: 1.5rem;
    font-weight: 600;    
}
.cate_txt:has(.event_alarm) > .check_li {
    padding-left: 2.2rem;
}
body#event_detail .cate_txt:has(.event_alarm) > .check_li {
    padding-left: 3.8rem;
}

.cate_txt .cate_set {
    margin-top: .7rem;
    padding-left: 0.8rem;
    padding-inline-start: 1.2em;
    line-height: 1.45rem;
    margin-bottom: 1.2rem;
}
.cate_txt .cate_set > li {
    font-size: 0.9063rem;    
    color: #666;
    list-style-type: circle;
}
.cate_txt .cate_copy {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #888;
}
body#event_detail .cate_txt .cate_copy {
    margin-top: 2rem;
}
.cate_box .cate_price:has(input) {    
    margin-top: 1.8125rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1.0rem;
}
.cate_box .cate_price:not(input) {
    margin-top: 1.8125rem;
}
.cate_box .cate_price:has(input) {
    margin-top: 1.8125rem;
}
.cate_box .cate_price > div {
    display: flex;
    align-items: center;
    margin-left: 0.4rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cate_box .cate_price > div:first-child {
    margin-left: 0;
}
.cate_box .cate_price > div span:empty {
    display: none;
}
.cate_box .cate_price > div span.sum {
    font-size: 1.0rem;
    line-height: 1;
    font-weight: 400;
    margin-right: 8px;
}
.cate_box .cate_price > div span.discount,
.cate_box .cate_price > div span.price,
.cate_box .cate_price > div span.cost {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
    margin-right: 6px;
}
.cate_box .cate_price > div span.price {
    color: #0e0e0e;
}
.cate_box .cate_price > div span:last-child {
    margin-right: 0;
}
.cate_box .cate_price > div span.discount {
    font-weight: 300;
    color: #f7dde1;
    margin-right: 4px;
}
.cate_box .cate_price > div span.cost {
    font-weight: 300;
    margin-right: 6px;
    color: #d6d6d6;
    text-decoration: line-through;
}
.cate_box .cate_price > div input {
    width: 1.375rem;
    height: 1.375rem;
}
.cate_box .event_alarm,
.event_alarm {
    background-color: #90a167;
    color: #fff;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 2px 12px;
    letter-spacing: 0.02em;
    vertical-align: middle;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -0.6rem;
    left: -0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event_alarm.pak {
    background-color: #6785a1;
}
.main_section.cart_reserv {
    padding-top: 0rem;
    padding-bottom: 2.5rem;
}
.main_section.cart_reserv .cate_txt_wrap {
    display: flex;    
}
.main_section.cart_reserv .cart_input {
    padding-right: 10px;
}
.main_section.cart_reserv .cart_input:empty {
    display: none;
}
.main_section.cart_reserv .cart_input + .cate_txt .cate_ti .event_alarm {
    margin-left: 0;
}
.total_check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    padding: 0 0;
    background-color: #fff;
    z-index: 9;
}
.total_check div u {
    cursor: pointer;
}
.total_check .check_li,
.check_li {
    display: flex;
    align-items: center;
    position: relative;
}
.check_li.today label {
    font-size: 0.85rem;
    line-height: 1;
    font-weight: 400;
}
.check_li.today input[type="checkbox"] {
    width: 1.0rem;
    height: 1.0rem;
    margin-right: 5px;
}
.total_check .check_li input,
.check_li input {
    margin-right: 10px;
}
.check_li label,
.check_li .ti {
    font-size: 1.0rem;
    line-height: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}
.agree_wrap {
    margin-top: 1.625rem;
    gap: 0.8rem;
}
.agree_wrap .check_li label {
    font-weight: 400;
    font-size: 1.00rem;
}
body#event_detail .check_li .ti {
    font-size: 1.65rem;
    margin-top: .4rem;
    margin-bottom: .5rem;
    line-height: 2rem;
}
.cart_count_wrap {
    padding-left: 2rem;
    padding-right: 2rem;
}
.cart_count {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 0.9375rem;
    justify-content: space-between;
    font-weight: 500;
    padding: 0 1.5rem 2.5rem;
    padding: 0 0 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #dfdfdf;
}
.cart_count > li:nth-child(2n) {
    text-align: right;
}
.cart_count .cc_qt,
.cart_count .cc_price {
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 700;
}
.cart_count .cc_price {
    margin-bottom: 10px;
}
.re_info_wrap {
    padding-bottom: 4rem;
}
.re_info_wrap .re_info_bas {
    margin-bottom: 3rem;
    width: 100%;
    text-align: left;
    font-family: 'Roboto', 'Pretendard', sans-serif;
}
.re_info_wrap .re_info_bas:nth-of-type(1) > div:nth-of-type(2) {
    margin-bottom: 3.5rem;
}
.re_info_wrap .re_info_bas:nth-of-type(1) > div:nth-of-type(3) {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.re_info_wrap .re_info_bas:nth-of-type(1) > div:nth-of-type(3) > p {
    position: absolute;
    top: -17px;
}
.re_info_wrap .re_info_bas:nth-of-type(1) > div:nth-of-type(3) select {
    margin-bottom: 2.0rem;
}
.re_info_bas .small {
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
}
.re_info_wrap .re_ti {
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2.0rem;
}
.re_info_wrap .re_ti_small {
    margin-bottom: 2.0rem;
}

.layer_cart {
    position: fixed;
    display: none;
}
body.cart .layer_cart.on {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr;
    column-gap: 10px;
    bottom: 90px;
    left:50%;
    width: 280px;
    margin-left: -140px;
    z-index: 99;
}
.layer_cart.on.up {
    bottom:96px;
}
.layer_cart > div {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #262626;
    padding: 1.0rem;
    font-weight: 500;
    cursor: pointer;
}
.layer_cart > div.book_now {
    background: #000;
    color: #fff;
    border: 0;
}
.re_info_bas .red_year {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-bottom: 1rem;
}
.red_year .ca_arrow,
.ca_arrow {
    width: 10px;
    height: 1.25rem;
}
.red_year .red_year_txt {
    margin: 0 1.25rem;
    font-weight: 500;
    font-size: 1.125rem;
}
.re_calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.2rem;
}
.re_info_bas .re_calendar > li,
.re_calendar > li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    border-bottom: 1px solid #f9f9f9;
    border-right: 1px solid #f9f9f9;
    padding: 0;
    padding-bottom: 0.2rem;
}
.re_calendar > li:nth-last-child(-n+7) {
    border-bottom: 0px solid #f9f9f9;
}
.re_calendar > li:nth-child(7n) {
    border-right: 0px solid #f9f9f9;
}
.re_info_bas .re_calendar li span.dimmed {
    background-color: transparent;
}
.re_info_bas .re_calendar li span.selected {
    background-color: #c3969f;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
.re_info_bas .category_wrap.time a:hover {
    background-color:transparent;
    border: 1px solid #c3969f;
}
.re_info_bas .category_wrap.time a.selected,
.re_info_bas .category_wrap.time a.selected:hover {
    background-color: #c3969f;
    color: #fff !important;
    border: 1px solid #c3969f;
}
.re_info_bas .re_calendar > li span {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
}
.re_calendar > li span:hover,
.re_calendar > li span.active {
    border: 3px solid #c3969f;
}
.re_calendar > li span.today {
    background-color: #f7dde1;
    color: #732938;
    font-weight: 500;
    pointer-events: none;
}
.re_calendar > li:nth-child(7),
.re_calendar > li:nth-child(14),
.re_calendar > li:nth-child(21),
.re_calendar > li:nth-child(28),
.re_calendar > li:nth-child(35) {
    color: #0000c5;
}
.re_calendar > li:nth-child(1),
.re_calendar > li:nth-child(8),
.re_calendar > li:nth-child(15),
.re_calendar > li:nth-child(22),
.re_calendar > li:nth-child(29),
.re_calendar > li:nth-child(36) {
    color: #ff0000;
}

/*메인사이드*/
.main_side {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 344px;
    height: 100%;
    left: calc(50% - 728px);
    display: none;
}
.main_side .main_side_ti,
.main_side_ti {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.733rem;
}
.main_side .main_side_ti {
    line-height: 2rem;
}
.main_side .main_side_copy,
.main_side_copy {
    color: #333333;
    font-size: .875rem;
    line-height: 1.25rem;
    margin-top:  0.8rem;
}

.ic24 {
    width: 24px;
    height: 24px;
}
.ic24 img {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
}
.ic_search {
    width: 1.5rem;
    height: 1.5rem;
    background: url('../images/icon_search.svg') no-repeat 50% 50%;
    background-size: 100%;
    cursor: pointer;
}
.ic_more_wrap,
.ic_more {
    display: flex;
    align-items: center;
}
.ic_more {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #f3f3f3;
    justify-content: center;
    border-radius: 10px;
}
.ic_more img {
    width: 10px;
    height: 10px;
}
.main_side_input_wrap {
    background-color: #fff;
    padding: 0 10px 0 12px;
    margin-top: 1rem;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
}
.main_side_input_wrap input {
    font-weight: 400;   
    font-size: 0.875rem;
    line-height: 1rem;
    height: 2.5rem;

}
.main_side_keyword {
    margin-top: 0.6rem;
    display: flex;
    font-size:  0.8rem;
    line-height: 1rem;
    gap: 0.8rem;
    font-weight: 500;
    color: #6b7280;
}
aside .main_side_keyword {
    display: none;
}
.main_side_keyword a span {
    padding-bottom: 1px;
    border-bottom: 1px solid #cdcdcd;
}
.main_side_keyword.body_keyword {
    padding-left: 1.25rem;
}

/*하단메뉴*/
footer {
    padding: 2rem 2rem 6.8rem;
    background-color: #fbfbfb;
    border-top:1px solid #dfdfdf;
    max-width: 768px;
    min-width: 0;
    width: 100%;
    margin: 0 auto;
}
footer .use {
    gap: .5rem;
    display: flex;
    align-items: center;
    font-size:  0.875rem;
    line-height: 1rem;
    font-weight: 500;
}
footer .use span {
    cursor: pointer;
}
footer .copyright {
    font-size:  0.8rem;
    margin-top: 0.8rem;
    letter-spacing: 0.02em;
}
nav.foot_menu {
    position: fixed;
    bottom:0;
    background-color: #fff;
    border-top: 1px solid #dfdfdf;
    display: flex;
    z-index: 500;
    max-width: 768px;
    width: 100%;
    border-top-left-radius: 0.625rem;
    border-top-right-radius: 0.625rem;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    left: 50%;
    transform: translateX(calc(-50% - 0.1px));
}
nav.foot_menu.hide {
    display: none;
}
nav.foot_menu > a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 16px 0 13px;
    width: 20%;
}
nav.foot_menu .menu_txt {
    font-size:  0.8rem;
    line-height: 1rem;
    font-weight: 500;
}
nav.foot_menu .menu_icon {
    width: 26px;
    height: 26px;
    margin-bottom: 5px;
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
nav.foot_menu .menu_icon_event {
    background-image: url('../images/menu_icon_event.svg');
}
nav.foot_menu .menu_icon_kakaotalk {
    background-image: url('../images/menu_icon_kakaotalk.svg');
}
nav.foot_menu .menu_icon_cart {
    background-image: url('../images/menu_icon_cart.svg');
    position: relative;
}
nav.foot_menu .cart_num {
    position: absolute;
    top:-7px;
    right:-7px;
    background-color: #000;
    width: 16px;
    height: 16px;
    padding: 0 4px;
    color: #fff;
    font-size: 0.6875rem;
    line-height: 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.125rem;
}
nav.foot_menu .menu_icon_reservation {
    background-image: url('../images/menu_icon_reservation.svg');
}
nav.foot_menu .menu_icon_tell {
    background-image: url('../images/menu_icon_tell.svg');
}

.tooltip-content {
    visibility: hidden;
    width: 100%;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 1rem;
    position: absolute;
    z-index: 10;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    font-weight: 500;
}
.tooltip-trigger:hover ~ .tooltip-content,
.tooltip-content:hover {
    visibility: visible;
    opacity: 1;
}
.tooltip-content.show {
    visibility: visible;
    opacity: 1;
}

.move_top {
    display: none;
    position: fixed;
    bottom: 42px;
    cursor: pointer;
    left: calc(50% + 340px);
    z-index: 500;
}
.move_top img {
    transform: rotate(270deg);
    width: 16px;
    height: 16px;
}
.move_top.on {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #dfdfdf;
    padding: 1.375rem;
    border-radius: 100px;
}

.btn_sumit {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #262626;
    padding: 1.0rem;
    font-weight: 500;
    cursor: pointer;
    min-width: 240px;
    max-width: 240px;
    transition: background 0.3s ease, border 0.3s ease;
    margin: 0 auto;
}
.find .btn_sumit {
    margin: 0 10px;
}
.btn_sumit.small_btn {
    padding: 0.625rem;
    min-width: 120px;
    font-size: 0.9375rem;
}
.btn_sumit:hover {
    background: #000;
    border: 2px solid #000;
    color: #fff;
}
.btn_enter {
    position: absolute;
    bottom:8%;
    border: 2px solid #E7CFD5;
    background-color: #E7CFD5;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    height: 1.25rem;
    border-radius: 1.25rem;
    margin: 0 auto;
    padding: 0.875rem 1.125rem;
    margin-top: 1.25rem;
    letter-spacing: 0.06em;
    line-height: 1;
    cursor: pointer;
    width: 100px;
    left: 50%;
    margin-left: -50px;
}
.btn_enter img {
    width: 10px;
    height: 10px;
    margin-left: 10px;
}

/*모달*/
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition-duration: 0.0s;
    display: none;
}
.modal.show {
    opacity: 1;
    z-index: 999;
    transition-duration: 0.0s;
    display: block;
}
.modal .modal_container {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.modal .modal_container .modal_wrap {
    background: #fff;
    border-radius: 8px;
    max-width: 768px;
    width: 100%;
    padding: 3rem 3.5rem;
    position: relative;
    max-height: 80vh;
}
.modal .modal_container .modal_wrap:has(.after_detail_img) {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.modal_wrap.col {
    display: flex;
    flex-direction: column;
}
.modal_head {
    margin-bottom: 2.5rem;
}
.modal_head h1 {
    font-weight: 800;
    font-size: 1.625rem;
    line-height: 1;    
}
.modal_head p {
    font-size: 0.9375rem;
    line-height: 1.3; 
    margin-top: 1.1rem;
}
.modal .main_txt {
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 10px;
}
#login_pop.modal .modal_container .modal_wrap {
    width: 460px;
}
#login_pop .login_input {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
#login_pop .login_input > li {
    height: 3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#login_pop .login_input > li.btn_login {
    background: #101010;
    color: #fff;
    border-radius: 4px;
}
#login_pop .login_input > li.btn_kakao {
    border-radius: 4px;
    background: #fee500 url('../images/btn_kakao.png') no-repeat left 50%;
    background-size: contain;
    color: #181600;
    font-weight: 500;
}
#login_pop .login_input > li.login_join,
#login_pop .login_input > li.login_join button {
    justify-content:space-between;
    font-size: 0.8125rem;
    cursor: pointer;
}
#login_pop .login_input > li.login_join a:hover {
    text-decoration: underline;
}
.id_sort {
    height: 3rem;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    padding: 0 12px;
    cursor: unset !important;
    justify-content: left !important;
    font-size: 0.875rem;
    color: #888;
}

.reserv_status {
    display: grid;
    grid-template-columns: 100px 1fr;    
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    background: #fbfbfb;
}
.reserv_status > li {
    padding: 0.8rem;
    border-bottom: 1px solid #dfdfdf;
}
.reserv_status > li:nth-last-child(-n+2) {
    border-bottom: 0;
}
.reserv_status > li:nth-child(odd) {
    border-right: 1px solid #dfdfdf;
    font-weight: 500;
}

.event_sing_con {
    margin-bottom: 1.2rem;
}
.event_sing_con:last-child {
    margin-bottom: 0;
}
.event_sing_con .cate_box {
    padding: 0;
}
.event_sing_con .event_sin_img {
    cursor: pointer;
}
.event_sing_con .event_sin_info {
    padding: 1.5rem;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}
.navigation .navi_num {
    display: grid;
    grid-template-columns: repeat(5, auto);
    column-gap: 5px;
}
.navigation .navi_num > li {
    width: 1.8125rem;
    height: 1.8125rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}
.navigation .navi_num > li:hover,
.navigation .navi_num > li.on {
    background: #262626;
    color: #fff;
    transition: background 0.2s ease;
}


/*FAQ*/
#accordion_wrap {
    border-top: 2px solid #262626;
    border-bottom: 2px solid #262626;
}
#accordion_wrap > div:last-child {
    border-bottom: 0;
}
.que:first-child{
    border-top: 0;
}
#accordion_wrap .que:last-of-type {
    border-bottom: 0;
}
.que {
    position: relative;
    padding: 1.45rem 1rem 1.125rem;
    cursor: pointer;
    border-bottom: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.que.on {
    border-bottom: 0;
}
section.card .w_box:has(.anw.on) .que {
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #f5f5f5;
}
.que .question {
    font-size: 1.0625rem;
    font-weight: 600;
}
.que.on .question {
    font-weight: 700;
}
.anw {
    display: none;
    overflow: hidden;
    background-color: #fbfbfb;
    padding: 1.8125rem 1.625rem;
    border-bottom: 1px solid #dfdfdf;
}
.anw.on {
    display: block;
}
.anw > ol {
    list-style-type:decimal;
    padding-left: 1.5rem;
}
.anw ol li {
    list-style-type:decimal;
    line-height: 1.5;
}
.anw ol li {
    margin-bottom: 6px;
}
.anw ol li:last-child {
    margin-bottom: 0;
}
.arrow-wrap {
    top:50%; 
    right: 1.1rem;
}
.que .arrow-top {
    display: none;
}
.que .arrow-bottom {
    display: block;
}
.que.on .arrow-bottom {
    display: none;
}
.que.on .arrow-top {
    display: block; 
}
.after_slider {
    margin-bottom: 2.33rem;
}
.after_slider .swiper-slide {
    overflow: hidden;
    border-radius: 0.6rem;
    cursor: pointer;
    background: #111;
    color: #fff;
}
.after_tag {
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    line-height: 1;
    font-size: 0.9375rem;
}
.after_slider .swiper-button-next,
.after_slider .swiper-button-prev {
    width: 22px;
    height: 22px;
    color: #fff;
    --swiper-navigation-size: 22px;
}
.swiper-slide:has(iframe) > div.img{
    position: relative;
    padding-bottom: 125%;
    height: 0;
}
.swiper-slide iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.after_detail_img {
    height: 100%;
    flex: 1;
    overflow: hidden;
}
.after_detail_img img {
    width: auto;
    max-height: 65vh;
    height: 100%;
    margin: 0 auto;
    border-radius: 0.5rem;
}
.after_detail_img:has(.after_video) {
    width: auto;
    max-height: 65vh;
    height: 100%;
    margin: 0 auto;
    border-radius: 0.5rem;
}
.after_detail_img iframe {
    height: 100vh;
    width: 100%;
    max-height: 65vh;
    border-radius: 0.5rem;
}
.after_category_area {
    margin-bottom: 2.33rem;
}
.after_contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.after_contents .after_box {
    overflow: hidden;
    border-radius: 0.6rem;
    cursor: pointer;
    border: 1px solid #dfdfdf;
}
.after_contents .after_box:has(iframe) > div.img {
    position: relative;
    padding-bottom: 125%;
    height: 0;
}
.after_contents .after_box:has(iframe) iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/*VIP*/
#accordion_wrap.vip_membership {
    border-top: 0;
    border-bottom: 0;
}
#accordion_wrap > div.w_box:last-child {
    border: 1px solid #dfdfdf;
}
.w_box {
    border: 1px solid #dfdfdf;
    border-radius: 0.6rem;
    padding: 2rem 1.5rem;
    background: #fff;
    margin-bottom: 0.625rem;
}
.w_box:has(.que.on) {
    border: 1px solid #c3969f;
}
.w_box .que {
    padding:0;
    border-bottom: 0;
}
.w_box .question {
    display: flex;
    align-items: center;
}
.w_box .question > div {
    line-height: 1;
}
.w_box .question > div:nth-child(1) {
    margin-right: 1rem;
}
.w_box .question .badges {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 900;
    color: #f1f1f1;
    font-size: 1.25rem;
}
.w_box .question .badges.bl {
    background-color: #000;
}
.w_box .question .badges.pu {
    background-color: #800080;
}
.w_box .question .badges.bu {
    background-color: #0069ff;
}
.w_box .question .badges.pk {
    background-color: #ff3a9c;
}
.w_box .question .img_card {
    min-width: 130px;
}
.w_box .question .img_card img {
    width: auto;
    height: 1.1875rem;
}

.w_box .anw {
    border-bottom: 0;
    padding: 2rem 1.2rem 0;
    background-color: #fff;
}
section.card .w_box .anw {
    padding-top: 1.8rem;
}
.main_section.card .w_box .anw {
    padding-left: 0;
    padding-right: 0;
    /* border-top: 1px solid #f5f5f5; */
}
.w_box .anw ul.mem_list {
    line-height: 1.7;
    margin-bottom: 1rem;
}
.w_box .anw ul.mem_list:last-child {
    margin-bottom: 0;
}
.w_box .anw ul.mem_list > li.ti {
    padding-left: 0;
    font-weight: 600;
}
.w_box .anw ul.mem_list > li {
    padding-left: 15px;
}
.w_box .anw ul .ti {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 1.125rem;
}
.w_box .anw ul.mem_list .dep {
    padding-left: 0.625rem;
}

#board_con {
    border-top: 2px solid #262626;
    border-bottom: 2px solid #262626;
}
#board_con.detail {
    border-bottom: 0;
    padding: 2rem 0 0;
    line-height: 1.55;
}
#board_con .board_item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    border-bottom: 1px solid #dfdfdf;
    height: 4rem;
    align-items: center;
}
#board_con .board_item:last-child {
    border-bottom: 0;
}
#board_con .board_item .title {
    font-size: 1.0625rem;
    font-weight: 500;
}
#board_con .board_item .num,
#board_con .board_item .date {
    padding: 0 0.875rem;
}
#board_con .board_item .date {

}

/*about page*/
html:has(#one_scroll), body:has(#one_scroll) {
    height: 100%;
    overflow: hidden;
}
.one_p {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1s ease;
}
#one1 { background-color: #2c3e50; }
#one2 { background-color: #34495e; }
#one3 { background-color: #7f8c8d; }
#one4 { background-color: #95a5a6; }

.one_menu {
    position: fixed;
    top: 5rem;
    width: 100%;
    max-width: 768px;
    background: #fff;
    z-index: 100;
    text-align: center;
    opacity: 0;    
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 2rem;
    height: 32px;
    border-bottom: 1px solid #dfdfdf;
    transition: opacity 0.2s ease;
}
header.header.on ~ .one_menu {
    opacity: 1;
    transition: opacity 0.2s ease;
}
.one_menu a {
    line-height: 1;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #666
}
.one_menu a.active {
    font-weight: 600;
    color: #010101;
    text-decoration: none;
}
.one_menu a:first-child.active {
    font-weight: 400 !important;
    text-decoration: none;
    color: #666
}
.view_details {
    cursor: pointer;
}

#member_rules {
    overflow: auto;
    line-height: 1.8;
}
#member_rules.director section > p {
    margin-bottom: 1.5rem;
}
#member_rules.director section > p:last-child {
    margin-bottom: 0;
}
#member_rules section {
    margin-bottom: 2rem;
}
#member_rules section:last-child {
    margin-bottom: 0;
}
#member_rules section h2 {
    font-size: 1.1875rem;
    margin-bottom: 0.375rem;
}
#member_rules section p,
#member_rules ol {
    margin-bottom: 1.25em;
}
#member_rules ol:last-of-type {
    /* margin-bottom: 0; */
}
#member_rules ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    padding-inline-start: 1.15em;
}
#member_rules ol ol {
    padding-inline-start: 1.4em;
}
#member_rules ol > li {
    list-style-type: decimal;
}
#member_rules ol.disc > li {
    list-style-type: disc;
}
#member_rules ol ol > li {
    list-style-type: lower-alpha;
}
#member_rules ul {
    padding-left: 1.5rem;
    padding-inline-start: 1em;
    margin-bottom: 1rem;
}
#member_rules ul > li {
    list-style-type: circle;

}

.cate_evnet {
    display: none;
}
.cate_evnet.on {
    display: block;
}

.dept_menu_con {
    position: relative;
    padding-bottom: 5.75rem;
    background-color: #fbfbfb;
}

.login_box,
.find_box {
    display: none;
}
.login_box.active,
.find_box.active {
    display: block;
}

div span.c_pointer u {
    font-size: 14px;
}
.today_alarm {
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

/* The loading */

.loading {
	position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9000;
}
.loader {
    border: 4px solid #333;
    border-top: 4px solid #ff9aaa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*
transition: background 0.3s ease;
*/