@charset "utf-8";

/* 네비게이션 */
.nav {
    padding: 0 30px;
    border-top: 1px solid #7f7f7f;
    border-bottom: 1px solid #7f7f7f;
    position: relative;
    z-index: 2;
}
.nav::after {content: ""; display: block; clear: both;}
.nav > ul {display: flex; width: 100%;}
.nav > ul > li {
    position: relative;
    max-width: 260px;
    font-size: 16px;
    width: 50%;
}
.nav > ul > li:first-child {width: auto;}
.nav > ul > li:first-child > a {
    text-indent: -9999px;
    overflow: hidden;
    background: url('../img/content/icon_home.png') center center no-repeat;
    width: 70px;
}
.nav > ul > li > a {
    display: block;
    background: url('../img/content/nav_down.png') calc(100% - 30px) center / 11px no-repeat;
    padding: 22px 50px 22px 30px;
    position: relative;
}
.nav > ul > li:first-child::before,
.nav > ul > li::after {
    content: '';
    width: 1px;
    height: calc(100% - 20px);
    display: block;
    background-color: #000;
    position: absolute;
    top: 10px;
    right: 0;
}
.nav > ul > li:first-child > a::before {right: auto; left: 0;}
.nav > ul > li:nth-child(n + 2):hover > a {
    background-color: #000;
    color: #fff;
    width: calc(100% + 1px);
    margin-left: -1px;
    background-image: url('../img/content/nav_down_on.png');
}
.nav > ul > li > ul {
    border: 1px solid #000;
    position: absolute;
    background: #fff;
    top: 68px;
    left: -1px;
    width: calc(100% + 1px);
    z-index: 1;
    padding: 0 20px 30px;
    display: none;
}
.nav > ul > li.on > ul {display: block;}
.nav > ul > li > ul > li > a {
    display: block;
    padding: 12px 10px;
    border-bottom: 1px solid #000;
}
.nav > ul > li > ul > li > a:focus,
.nav > ul > li > ul > li:hover > a,
.nav > ul > li > ul > li.on > a {
    background-color: #ebebeb;
}

.en .nav > ul {max-width: 72vw;}
.en .nav > ul > li {max-width: none;}

@media screen and (max-width: 1024px) {
    .nav {padding: 0;}
    .nav > ul > li {max-width: none;}
    .nav > ul > li:first-child {display: none;}
    .nav > ul > li:last-child > a::after {display: none;}

    .en .nav > ul {max-width: none;}
}
@media screen and (max-width: 768px) {
    .nav {border-bottom: none;}
    .nav > ul {flex-wrap: wrap;}
    .nav > ul > li {border-bottom: 1px solid #7f7f7f;}
    .nav > ul > li > a {padding: 12px 40px 12px 20px; background-position: calc(100% - 20px) center;}
    .nav > ul > li:nth-child(2n + 1) > a::after {display: none;}
    .nav > ul > li > ul {top: 48px;}
    .nav > ul > li > ul > li > a {padding: 10px;}

    .en .nav > ul > li {width: 100%;}
    .en .nav > ul > li::after {display: none;}
}
@media screen and (max-width: 500px) {
    .nav > ul > li {width: 100%;}
    .nav > ul > li::after {display: none;}
}
/* --네비게이션 */

#content {padding: 30px 30px 80px;}
#content h3 {
    font-size: 56px;
    text-align: center;
    border-bottom: 2px solid #000;
    padding: 60px 0;
    margin-bottom: 80px;
    font-family: "classic";
}
#content h4 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "classic";
}
#content h4 * {font-family: "classic";}
#content h4.big {font-size: 45px;}
#content h4.big + .desc {font-size: 30px; margin-top: 10px;}
#content h4.line {
    font-size: 52px;
    margin: 80px 0 10px;
    padding: 6px 0 5px;
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
}
#content h4.tline {border-top: 1px solid #000; padding-top: 50px;}
#content h4 .bgY {font-size: 20px;}
#content h5 {
    font-size: 18px;
    position: relative;
    padding: 4px 0 4px 20px;
    margin: 50px 0 10px;
    font-weight: normal;
}
#content h5::before {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background-color: #5fceea;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 14px;
}

#content h5.type2 {
    font-size: 38px;
    font-family: 'classic';
    font-weight: 600;
    padding: 13px 0 10px 60px;
    border-top: #000 solid 2px;
    border-bottom: #000 solid 2px;
    background-color: #eaeaea;
    margin: 105px 0 50px;
}
#content h5.type2::before {
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    background-color: #000000;
    border-radius: 50%;
    position: absolute;
    left: 21px;
    top: 29px;
}

#content .blue,
#content .yellow {
    font-size: 16px;
    background-color: #5fceea;
    padding: 2px 5px;
    display: inline;
    vertical-align: middle;
    font-weight: 500;
    word-break: keep-all;
}
#content .yellow {background-color: #ffe900;}
#content h4 .blue,
#content h4 .yellow {
    font-size: 16px;
    border: 2px solid #000;
    padding: 6px 12px;
}
#content .desc {font-size: 17px; font-weight: 500;}
#content .yellow2 {background-color: #ffe900;display: inline;}

@media screen and (max-width: 1439px) {
    br.mhide {display: none;}
}
@media screen and (max-width: 1024px) {
    #content {padding: 30px 20px 80px;}
}
@media screen and (max-width: 768px) {
    br.mhide2 {display: none;}
    #content {padding: 30px 20px 40px;}
    #content h3 {
        padding: 0 0 30px;
        font-size: 35px;
        margin-bottom: 40px;
    }
    #content h4 {font-size: 25px;}
    #content h4 .blue,
    #content h4 .yellow {font-size: 13px; padding: 4px 10px;}
    #content h4.line {margin-top: 30px;font-size: 36px;}
    #content h5 {margin: 30px 0 10px;}
    #content h5.type2 {margin: 50px 0 20px;}
    #content .desc {font-size: 16px;}

    #content h4.big {font-size: 35px;}
    #content h4.big + .desc {font-size: 25px;}
}

/* 탭 */
.tab {margin: 0 auto 80px; width: fit-content; max-width: 1200px;}
.tab.type2 {max-width: 1110px;}
.tab li {float: left; margin-right: 10px;}
.tab.type2 li:nth-child(6),
.tab li:last-child {margin-right: 0;}
.tab.type2 li:nth-child(n + 7) {margin-top: 10px;}
.tab.type2 li {padding: 5px 10px;min-width: 174px;}
.tab li {
    background-color: #5fceea;
    border: 1px solid #000;
    padding: 5px 20px;
    min-width: 160px;
    margin-top: 10px;
}
.tab li a,
.tab li > span {
    text-align: center;
    font-size: 20px;
    line-height: 140%;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tab li.on a:focus-visible {outline-color: #fff}
.tab li.on, .tab li.active, .tab li:hover {background-color: #000; color: #fff;}

.tab_cont {display: none;}
.tab_cont .flex {display: flex; align-items: flex-end; justify-content: space-between;}
.tab_cont .flex select {margin-bottom: 5px;}
.tab + .tab_cont {display: block;}

.tab_cont > .editor {width: 100%; max-width: 950px; margin: 50px auto 0;}
.tab_cont > .editor img {height: auto !important;}

@media screen and (max-width: 768px) {
    .tab_cont > .editor {margin: 25px auto 0;}
}
@media screen and (max-width: 500px) {
    .tab_cont .flex.cancel {align-items: baseline;}
    .tab_cont .flex select.small {margin: 0 !important;}
}

@media screen and (max-width: 1160px) {
    .tab.type2 {max-width: 925px}
    .tab.type2 li:nth-child(5) {margin-right: 0;}
    .tab.type2 li:nth-child(6) {margin-right: 10px;}
    .tab li:nth-child(n + 6) {margin-top: 10px;}
}
@media screen and (max-width: 1024px) {
    .tab li {min-width: 130px;}
}
@media screen and (max-width: 954px) {
    .tab.type2 {max-width: 730px}
    .tab.type2 li:nth-child(4),
    .tab.type2 li:nth-child(8) {margin-right: 0;}
    .tab.type2 li:nth-child(5) {margin-right: 10px;}
    .tab.type2 li:nth-child(n + 5) {margin-top: 10px;}
}
@media screen and (max-width: 768px) {
    .tab {margin-bottom: 40px; width: auto;}
    .tab li {width: calc((100% - 20px) / 3); min-width: auto;}
    .tab.type2 li {min-width: 130px;}
    .tab.type2 li:nth-child(4),
    .tab.type2 li:nth-child(8) {margin-right: 10px;}
    .tab li:nth-child(3n) {margin-right: 0 !important;}
    .tab li:nth-child(n + 4) {margin-top: 10px !important;}
    .tab li a, .tab li > span {font-size: 18px; min-width: auto;}
}
@media screen and (max-width: 449px) {
    .tab.type2 li {width: calc((100% - 10px) / 2);}
    .tab.type2 li:nth-child(3n) {margin-right: 10px !important;}
    .tab.type2 li:nth-child(2n) {margin-right: 0 !important;}
    .tab.type2 li:nth-child(n + 3) {margin-top: 10px !important;}
}
@media screen and (max-width: 425px) {
    .tab li {width: calc((100% - 10px) / 2); padding: 5px;}
    .tab li:nth-child(3n) {margin-right: 10px !important;}
    .tab li:nth-child(2n) {margin-right: 0 !important;}
    .tab li:nth-child(n + 3) {margin-top: 10px !important;}
    .tab li a, .tab li > span {word-break: break-all;}
}
@media screen and (max-width: 320px) {
    .tab li {min-width: auto;}
    .tab.type2 li {min-width: auto;}
    .tab.type2 li a {font-size: 16px;word-break: break-all;}
}

/* 주차안내 관련 탭 */
.tab.type3 {max-width: none;}

@media screen and (max-width: 1024px) {
    .tab.type3 {width: 100%; display: flex;}
    .tab.type3 li {width: 100%;}
}
@media screen and (max-width: 768px) {
    .tab.type3 {flex-wrap: wrap;}
    .tab.type3 li {width: calc((100% - 10px) / 2); margin-right: 10px !important;}
    .tab.type3 li:nth-child(2n) {margin-right: 0 !important;}
}

.tab2 {font-size: 22px; margin: 20px auto 70px; width: fit-content; display: flex; flex-wrap: wrap; justify-content: center;}
.tab2 li {float: left; margin: 10px 30px 10px 0;}
.tab2 li:last-child {margin-right: 0;}
.tab2 li a {display: block; border-top: 2px solid transparent; border-bottom: 2px solid transparent; color: #727272; padding: 8px 0;}
.tab2 li.on a, .tab2 li.active a, .tab2 li a:hover {color: #000; border-color: #000;}

.tab2.type2{justify-content: flex-start;margin: 0;}

@media screen and (max-width: 768px) {
    .tab2 {font-size: 20px; margin: 15px auto 35px;}
    .tab2 li {margin: 5px 20px 5px 0;}
}

.tab.w100 {margin: 100px 0 40px; max-width: none; display: flex;}
.tab.w100 li {width: 100%;}

@media screen and (max-width: 768px) {
    .tab.w100 {flex-wrap: wrap; margin: 50px 0 20px;}
    .tab.w100 li {width: calc((100% - 10px) / 2); margin-right: 10px !important;}
    .tab.w100 li:nth-child(2n) {margin-right: 0 !important;}
    .tab.w100 li:nth-child(n + 3) {margin-top: 10px !important;}
}
/* --탭 */

/* 블릿 */
.blt {text-align: left; font-size: 17px;}
[class^='blt_blue'] {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}
[class^='blt_blue'] > li {
    position: relative;
    padding: 4px 0 4px 20px;
}
[class^='blt_blue'] > li::before {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background-color: #5fceea;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 14px;
}
[class^='blt_blue'] ul {margin-top: 10px;}
.blt li,
[class^='blt_blue'] li li {
    position: relative;
    padding: 4px 0 4px 12px;
}
.blt li::before,
[class^='blt_blue'] li li::before {
    content: '';
    width: 6px;
    height: 2px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 0;
    top: 16px;
}
[class^='blt_blue'] .none::before {display: none;}
.blt li.btnType::before,
[class^='blt_blue'] li li.btnType::before {top: 21px;}
.blt_blue_line {
    border-top: 1px solid #5fceea;
    font-size: 20px;
    font-weight: 500;
}
.blt_blue_line > li {
    border-bottom: 1px solid #5fceea;
    padding: 10px 10px 10px 30px;
}
.blt_blue_line > li::before {top: 20px; left: 10px;}
.blt_blue.fs20 li {font-size: 20px;}
.blt_blue.fs20 li li {font-size: 17px;}
.blt.fs18 li::before {top:19px}
@media screen and (max-width: 768px) {
    .blt_blue_line {font-size: 18px;}
    .blt li.btnType::before,
    [class^='blt_blue'] li li.btnType::before {top: 20px;}
}
@media screen and (max-width: 500px) {
    [class^='blt_blue'] li li.btnType::before {top: 15px;}
}

.blt_blue_line2 li {padding: 0 !important; display: flex; gap: 8px;}
.blt_blue_line2 li::before {display: none;}
.blt_blue_line2 li span {border-bottom: 1px solid #5fceea; font-size: 20px;}
.blt_blue_line2 li:last-child:not(:first-child) span {border-bottom: none;}
.blt_blue_line2 li span:first-child {width: 50%; padding: 2px 10px;}
.blt_blue_line2 li span:nth-child(2) {width: 50%; position: relative; padding: 2px 10px 2px 22px;}
.blt_blue_line2 li span:nth-child(2)::before {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background-color: #5fceea;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 10px;
}

@media screen and (max-width: 768px) {
    .blt_blue_line2 li span {font-size: 16px;}
}

.num_list {
    font-size: 16px;
    counter-reset: number 0;
}
.num_list li {
    position: relative;
    line-height: 180%;
    padding: 2px 0 2px 25px;
}
.num_list li::before {
    counter-increment: number 1;
    content: counter(number);
    display: block;
    background-color: #d9d9d9;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 15px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}
/* --블릿 */

/* 테이블 */
[class^='tbl_'] {margin-top: 40px; font-size: 17px;}
[class^='tbl_'] + h4 {margin-top: 80px;}
[class^='tbl_'] + [class^='blt_blue'] {margin-top: 20px;}
[class^='tbl_'] table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    text-align: center;
}
[class^='tbl_'] th {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    height: 52px;
}
[class^='tbl_'] td {
    border-bottom: 1px solid #000;
    padding: 10px 20px;
    height: 52px;
    font-weight: 500;
    word-break: break-all;
}
[class^='tbl_'] tbody th {border-width: 1px;font-weight: normal;}
[class^='tbl_'] th:not(:first-child),
[class^='tbl_'] td:not(:first-child) {
    border-left: 10px solid #fff;
}
[class^='tbl_'] .link {
    width: 100%;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

[class^='tbl_'].blue_line th,
[class^='tbl_'].blue_line td {font-size: 17px;}
[class^='tbl_'].rowType th,
[class^='tbl_'].rowType td {height: 52px;}
[class^='tbl_'].blue_line tbody tr:not(:last-child) th,
[class^='tbl_'].blue_line tr:not(:last-child) td {border-bottom-color: #5fceea;vertical-align: middle;}

[class^='tbl_'].blue_line.parking th {border-width: 2px !important;}
[class^='tbl_'].blue_line.parking tr td {border-bottom-color: #5fceea;}

@media screen and (max-width: 1024px) {
    [class^='tbl_'] td {padding: 10px;}
}
@media screen and (max-width: 768px) {
    [class^='tbl_'] {margin-top: 30px;}
}

/* 정보 테이블 */
.tbl_info td {vertical-align: top; padding: 10px 0; font-size: 20px;}
.tbl_info .circle {
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    background-color: #5fceea;
    border-radius: 50%;
    font-size: 18px;
}
.tbl_info .p00 {padding: 0 !important;}
.tbl_info .l00 {padding-left: 0 !important;}
.tbl_info .r00 {padding-right: 0 !important;}
.tbl_info .bb_blue {border-bottom-color: #5fceea !important;}
.tbl_info .blt_blue_line {
    font-size: 16px;
    border-top: none;
}
.tbl_info .blt_blue_line > li:last-child {border-bottom: none;}

.tbl_info.rowType {margin-top: 25px;}
.tbl_info.rowType tr:first-child th,
.tbl_info.rowType tr:first-child td{
    border-top: #000 solid 2px;
}
.tbl_info.rowType th,
.tbl_info.rowType td{
    border-top-width: 1px;
    border-bottom-width: 1px;
    height: auto;
    font-size: 20px;
    text-align: left;
}
.tbl_info.rowType.blue_line.tBlue tr:first-child th,
.tbl_info.rowType.blue_line.tBlue tr:first-child td{border-top: #5fceea  solid 1px !important;}
.tbl_info.rowType.blue_line th,
.tbl_info.rowType.blue_line td{
    font-size: 17px;
    font-weight: normal;
    border-top-color: #5fceea !important;
    border-bottom-color: #5fceea !important;
    border-top-width: 1px !important;
    padding: 5px 0;
}
.tbl_info.rowType.blue_line th {
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: top;
    padding-top: 7px;
}
.tbl_info.rowType.blue_line td table th,
.tbl_info.rowType.blue_line td table td {
    border-top-color: #000 !important;
    border-bottom-color: #000 !important;
}
.tbl_info.rowType td table th,
.tbl_info.rowType td table td {
    border-top-color: #000 !important;
    border-top-width: 1px !important;
    border-bottom-color: #000 !important;
    text-align: center;
    font-size: 16px;
    padding: 5px 0px;
    font-weight: normal;
}
.tbl_info.rowType td table tr:first-child td {
    border-top: none;
}

.view .tbl_info.rowType img {max-width: 400px; width: 100% !important; height: auto !important;}

.tbl_info.hover tbody tr:hover {background-color: #ffea00;}
.tbl_info.hover tbody td {vertical-align: middle; position: relative;}
.tbl_info.hover tbody td + td {word-break: keep-all;}
.tbl_info .soldout td {background-color: #ececec; color: #bab9b9; position: relative;}
.tbl_info.hover tbody td + td::before,
.tbl_info .soldout td + td::before {
    content: '';
    width: 10px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: -10px;
    z-index: 1;
}
.tbl_info.hover tbody td + td::before {background-color: #fff;}
.tbl_info.hover tbody tr:hover td + td::before {background-color: #ffea00;}
.tbl_info .soldout td + td::before {background-color: #ececec !important;}

@media screen and (max-width: 1024px) {
    .tbl_info td {font-size: 18px;}
    .tbl_info .circle {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
    }
    .tbl_info .blue {font-size: 14px;}
    .tbl_info.rowType.blue_line th {margin-top: 10px;}
}
@media screen and (max-width: 768px) {
    .tbl_info {overflow: auto;}
    .tbl_info table {width: 768px;}

    .tbl_info.rowType th,
    .tbl_info.rowType td {font-size: 17px;}

    .show_sub .tbl_info.rowType table {width: 100%;}
    .show_sub .tbl_info.rowType th {word-break: keep-all;}
    .show_sub .tbl_info.rowType th,
    .show_sub .tbl_info.rowType td * {font-size: 15px;}
    .show_sub .tbl_info.rowType td > * {padding: 5px 0;}
}
/* 회색 바탕 테이블 */
.tbl_view {
    border-bottom: 2px solid #000;
    font-size: 16px;
    margin-bottom: 30px !important;
}
.tbl_view th, .tbl_view td {border: 2px solid #000 !important;}
.tbl_view th + td {border-left: none !important;}
.tbl_view th, .tbl_view td {
    border-bottom: none !important;
    text-align: left;
    height: 58px;
    padding: 10px 15px;
}
.tbl_view th {background-color: #f3f3f3;}
.tbl_view td {padding: 10px 20px;}
.tbl_view input {border: none;}

.tbl_view .email input {border-bottom: 2px solid #000; width: calc((100% - 135px) / 2);}
.tbl_view .email select {
    border: none;
    width: 100px;
    margin-left: 10px;
}

@media screen and (max-width: 768px) {
    .tbl_view {font-size: 15px;}
    .tbl_view th, .tbl_view td {padding: 10px;}

    .tbl_view .email input {border-bottom: 2px solid #000; width: calc((100% - 22px) / 2);}
    .tbl_view .email select {margin-left: 0; margin-top: 5px; width: auto;}
}

/* 노란색 바탕 테이블 */
.tbl_yellow th {background-color: #ffea00;}
/* 블랙 테이블 */
.tbl_black {font-size: 18px;}
.tbl_black table {width: 100%;}
.tbl_black td,
.tbl_black th {
    position: relative;
}
.tbl_black th {
    background-color: #000;
    color: #fff;
    font-weight: normal;
}
.tbl_black th:not(:first-child), .tbl_black td:not(:first-child){
    border-left: none;
}
.tbl_black td.line::after,
.tbl_black th + th::after,
.tbl_black td + td::after {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.tbl_black th + th::after {background-color: #fff;}
.tbl_black td.line::after,
.tbl_black td + td::after {background-color: #000;}

.tbl_black.type2 td {border-color: #000;}
.tbl_black.type2 td.line::after,
.tbl_black.type2 th + th::after,
.tbl_black.type2 td + td::after {display: none;}
.tbl_black.type2 td.line,
.tbl_black.type2 th + th,
.tbl_black.type2 td + td {border-left: #fff solid 20px;}
.tbl_black.type2 tr:last-child td {border-bottom-color: #000;}

.tbl_black.type2 .lLine {border-left: #fff solid 20px;}

@media screen and (max-width: 768px) {
    .tbl_black {overflow: auto;}
    .tbl_black table {width: 768px;}
    .tbl_black.type2 td.line,
    .tbl_black.type2 th + th,
    .tbl_black.type2 td + td {border-left-width: 10px;}
}
/*-- 블랙 테이블 */

/* 뉴스레터 구독 신청 테이블 */
.tbl_none {margin: 10px auto 20px !important;}
.tbl_none th:not(:first-child),
.tbl_none td:not(:first-child) {border-left: none;}
.tbl_none th {text-align: left; padding: 10px;}
.tbl_none td {border-top: 1px solid #000; text-align: left;}
.layerPopup .tbl_none input[type='text'] {margin: 0; border-bottom: 0; padding: 10px 0;}
.layerPopup .tbl_none .email input[type='text'] {border-bottom: 1px solid #000; width: 90%;}
.layerPopup .tbl_none .email select {border: none; margin-top: 10px;}

/* 모바일 변환 테이블 */
.m_tbl .th {display: none;}

@media screen and (max-width: 768px) {
    .m_tbl {border-top: 2px solid #000;}
    .m_tbl table {width: 100%;}
    .m_tbl colgroup,
    .m_tbl thead {display: none;}
    .m_tbl tr {border-bottom: 1px solid #000; display: block;}
    .m_tbl td {
        height: auto;
        text-align: left !important;
        border-left: none !important;
        border-bottom-color: #5fceea !important;
        padding: 10px 0 !important;
        display: flex;
    }
    .m_tbl td:last-child {border-bottom-color: #000 !important;}
    .m_tbl .th {
        display: block;
        width: 100px;
        word-break: keep-all;
        border-right: 1px solid #5fceea;
    }
    .m_tbl .td {width: calc(100% - 100px); padding-left: 10px;}
}
/* --테이블 */

/* 리스트 */
.list::after {content: ""; display: block; clear: both;}
.list > div:first-child {width: 300px; float: left; margin-right: 30px;}
.list > div:last-child {width: calc(100% - 330px); float: right;}

.search {font-size: 16px; font-weight: 500;}
.list > div:first-child .tit,
.search p {line-height: 40px; font-weight: 600;}
.list > div:first-child .tit {
    border-bottom: #000 solid 2px;
    margin-bottom: 35px;
}

.search .checked_list {
    border-top: 2px solid #000;
    display: flex;
    flex-direction: column;
    padding: 12px 0;
}
.search .checked_list > label {margin: 5px 0;}

.search div:last-child {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
.search div:last-child input {
    width: calc(100% - 40px);
    height: 50px;
    border: none;
}
.search div:last-child button {
    background: url('../img/content/search.png') center / 16px auto no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    width: 30px;
    height: 50px;
    float: right;
}
.search + [class^='btnArea'] {margin-top: 20px;}

.search + div .date {
    border-bottom: 2px solid #000;
    height: 52px;
    width: calc((100% - 28px) / 2);
    background: url('../img/content/icon_cal.png') 6px center / 20px auto no-repeat;
    padding: 6px 10px 6px 36px;
}
.search + div .date + span {padding: 0 6px; font-size: 20px;}

.search.dateType div:last-child {border: none;}
.search.dateType > p + div{
    border-top: #000 solid 2px;
    padding: 20px 0 0 ;
}
.search.dateType > div {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2px;
    flex-grow: 1;
}
.search.dateType > div select{
    width: 100%;
    padding: 0 20px 0 0;
    text-align: center;
}
.search.dateType > div select:not(:first-child) {margin-left: 5px;}
.search.dateType > span {
    display: block;
    line-height: 45px;
    text-align: center;
}
.search.dateType > div select:nth-child(1) {
    min-width: 80px;
}

.search.dateType .btns {gap: 0; padding: 20px 0;}
.search.dateType .btns button {border: 1px solid #000; width: calc(100% / 4); height: 40px;}
.search.dateType .btns button + button {border-left: none;}
.search.dateType .btns .active {background-color: #000; color: #fff;}

.tbl_list tbody tr:hover {background-color: #ffea00;}
.tbl_list tr:hover td {border-left-color: #ffea00;}
.tbl_list .link:hover a {text-decoration: underline;}

@media screen and (max-width: 1260px) {
    .list > div {width: 100% !important; float: none !important;}
    .search p {display: none;}

    .search .checked_list {flex-direction: row; flex-wrap: wrap;}
    .search .checked_list > label {width: calc(100% / 3);}
    .list > div:last-child {margin-top: 30px;}

    .search.dateType > div:not(.btns) {width: calc((100% - 37px) / 2); display: inline-flex;}
    .search.dateType > span {display: inline-block; margin: 0 10px;}
}
@media screen and (max-width: 768px) {
    .search .checked_list > label {width: calc(100% / 2);}

    .tbl_list colgroup, .tbl_list thead {display: none;}
    .tbl_list tr {border-top: 1px solid #000; border-bottom: 1px solid #000;}
    .tbl_list th:not(:first-child),
    .tbl_list td:not(:first-child) {
        border-left: none;
    }
    .tbl_list tr {display: block; border-top: none; padding: 10px 0; text-align: left;}
    .tbl_list tr:first-child {border-top: 1px solid #000;}
    .tbl_list td {
        display: inline-block;
        font-size: 13px;
        border-bottom: none;
        height: auto;
        padding: 0;
        margin-right: 5px;
    }
    .tbl_list .num {display: none;}
    .tbl_list .link {font-size: 16px;}
    .tbl_list .line {margin-right: 10px; padding-right: 14px; position: relative;}
    .tbl_list .line::after {
        content: '';
        width: 1px;
        height: 12px;
        background-color: #ddd;
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .tbl_list:has(.top) tr {padding: 55px 0 10px; position: relative;}
    .tbl_list .top {position: absolute; top: 15px; left: 0;}

    .search.dateType {font-size: 14px;}
    .search.dateType > div:not(.btns) {width: calc((100% - 24px) / 2); display: inline-flex;}
    .search.dateType > span {display: inline-block; margin: 0 5px; line-height: 40px;}
    .search.dateType > div select {height: 40px; line-height: 38px; font-size: 14px;}

    .search.dateType .btns button {font-size: 14px;}

    .tbl_list.brno br {display: none;}
}
@media screen and (max-width: 500px) {
    .search.dateType > div:not(.btns) {width: 100%;}
    .search.dateType > span {display: block; margin: 0 auto; line-height: 30px;}
}

.faq_list {margin-top: 40px;}
.faq_list > p span {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
}
.faq_list > p span:nth-child(1) {width: 15%;}
.faq_list > p span:nth-child(2) {width: 20%; margin-left: 7px;}
.faq_list > p span:nth-child(3) {width: calc(65% - 23px); margin-left: 7px;}

.faq_list li {
    display: flex;
    gap: 10px;
    cursor: pointer;
    background: url('../img/content/faq_list.png') calc(100% - 22px) 30px / 10px auto no-repeat;
}
.faq_list .active {background-color: #ffea00; background-image: url('../img/content/faq_list_on.png');}
.faq_list li > div {
    border-bottom: 1px solid #000;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 20px 25px;
}
.faq_list li > div:nth-child(1) {width: 15%;}
.faq_list li > div:nth-child(2) {width: 20%;}
.faq_list li > div:nth-child(3) {
    width: calc(65% - 20px);
    text-align: left;
    padding: 20px 35px 20px 25px;
}
.faq_list li > div > a {position: relative; padding-left: 25px;}
.faq_list li > div > a::after {
    content: 'Q.';
    position: absolute;
    left: 0;
    top: 0;
}
.faq_list li > div > div {
    display: none;
    position: relative;
    padding-left: 25px;
    margin-top: 20px;
    font-size: 16px;
}
.faq_list li > div > div::after {
    content: 'A.';
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}
.faq_list .active > div:last-child > div {display: block;}

@media screen and (max-width: 1024px) {
    .faq_list li {background-position: calc(100% - 15px) 30px;}
    .faq_list li > div {padding: 20px 10px;}
    .faq_list li > div:nth-child(3) {padding: 20px 30px 20px 15px;}
}
@media screen and (max-width: 768px) {
    .faq_list {border-top: 2px solid #000;}
    .faq_list > p {display: none;}
    .faq_list li {
        flex-direction: column;
        border-bottom: 1px solid #000;
        padding: 20px 0;
    }
    .faq_list li > div {
        border-bottom: none;
        width: 100% !important;
        padding: 0 !important;
    }
    .faq_list li > div:nth-child(1) {display: none;}
    .faq_list li > div:nth-child(2) {font-size: 15px; text-align: left;}
    .faq_list li > div > div {margin-top: 10px;}
}

.img_list {position: relative;}
.img_list > div:first-child {width: 60%; margin: 0 auto;}
.img_list.type2 > div:first-child .search {display: flex; border-left: 2px solid #000;}
.img_list .search select {
    border: none;
    background: url('../img/content/select.png') calc(100% - 15px) center / 12px auto #fff no-repeat;
    padding-right: 35px;
    margin: 0 15px;
    height: 40px;
    width: 30%;
}
.img_list .search select::-ms-expand {display: none;}
.img_list .search select + div {display: inline-block; width: 70%; border-left: 2px solid #000 !important;}

.search.single div:last-child {width: 60%; margin: 0 auto 20px;}
.search.single div:last-child,
.img_list .search div:last-child {
    border: none;
    width: 100%;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    padding: 0 15px;
}
.search.single div:last-child input,
.search.single div:last-child button,
.img_list .search div:last-child input,
.img_list .search div:last-child button {height: 40px;}
.img_list [class^='btnArea'] {position: absolute; right: 0; top: 0; margin-top: 0;}
.img_list > ul {
    border-top: 2px solid #000;
    border-bottom: 1px solid #000;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}
.img_list > ul > li {float: left; width: calc(100% / 5); position: relative;}
.img_list > ul > li::before {
    content: '';
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: -20px;
    bottom: 90px;
    z-index: 1;
}
.img_list.long > ul > li::before {bottom: 140px;}
.img_list > ul > li::after {
    content: '';
    width: calc(100% - 40px);
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 20px;
    bottom: -1px;
}
.img_list > ul a {position: relative; display: block;}
.img_list > ul a::before,
.img_list > ul a::after {
    content: '';
    width: 1px;
    height: calc(100% - 40px);
    background-color: #000;
    display: block;
    position: absolute;
    left: 0;
    top: 20px;
}
.img_list > ul a::after {left: auto; right: -1px;}
.img_list > ul li:nth-child(5n + 1) a::before,
.img_list > ul li:nth-child(5n) a::after {display: none;}

.img_list > ul a > div {padding: 25px; position: relative;}
.img_list > ul a > div:last-child::before {
    content: '';
    width: calc(100% - 40px);
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 20px;
    top: 0;
}
.img_list > ul > li [class^='stat_'] {
    position: absolute;
    left: 0;
    top: -1px;
    border-width: 1px;
    font-size: 15px;
    max-width: 65px;
    padding: 2px 5px;
    z-index: 1;
}
.img_list > ul > li .stat_end {
    border-color: #000;
    color: #000;
    background-color: #ebebeb;
}
.img_list > ul > li div:first-child {position: relative; margin: 25px; height: 0; padding-top: 50%;}
.img_list.date > ul > li div:first-child {margin-top: 55px;}
.img_list > ul > li div:first-child img {
    border: 1px solid #000;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
}
.img_list > ul > li div:first-child p {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    padding-bottom: 2px;
    margin-bottom: 3px;
    border-bottom: 2px solid #000;
    position: absolute;
    left: 0;
    top: -35px;
    width: 100%;
}
.img_list > ul > li div:last-child p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}
.img_list > ul > li span.date {
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px;
    background: url('../img/content/img_list_cal.png') left center / 16px auto no-repeat;
}

.img_list .long {padding: 10px 20px 0;}
.img_list .long p {
    white-space: initial !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 54px;
    padding: 0 5px;
}
.img_list .long li {
    font-size: 15px;
    font-weight: 500;
    border-top: 1px solid #000;
    padding: 10px 5px;
    min-height: 43.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.img_list .long li.date {
    text-overflow: initial;
    white-space: initial;
    overflow: auto;
}
.img_list .no_list {
    border-top: 2px solid #000;
    border-bottom: 1px solid #000;
    text-align: center;
    padding: 350px 20px 250px;
    margin-top: 20px;
    font-size: 30px;
    font-weight: 500;
    background: url('../img/content/no_list.png') center calc(50% - 30px) / 63px auto #f4f4f4 no-repeat;
}

@media screen and (max-width: 1440px) {
    .img_list > div:first-child {width: 50%;}

    .img_list > ul > li {width: calc(100% / 4);}
    .img_list > ul li:nth-child(5n + 1) a::before,
    .img_list > ul li:nth-child(5n) a::after {display: block;}
    .img_list > ul li:nth-child(4n + 1) a::before,
    .img_list > ul li:nth-child(4n) a::after {display: none;}
}
@media screen and (max-width: 1260px) {
    .img_list.btn > div:first-child {margin: 0; width: 60%;}

    .img_list > ul > li {width: calc(100% / 3);}
    .img_list > ul li:nth-child(4n + 1) a::before,
    .img_list > ul li:nth-child(4n) a::after {display: block;}
    .img_list > ul li:nth-child(3n + 1) a::before,
    .img_list > ul li:nth-child(3n) a::after {display: none;}
}
@media screen and (max-width: 768px) {
    .img_list > div:first-child,
    .img_list.btn > div:first-child {width: 100%;}
    .img_list [class^='btnArea'] {position: static; margin-top: 20px;}

    .search.single div:last-child {width: 100%;}

    .img_list > ul > li {width: calc(100% / 2);}
    .img_list > ul li:nth-child(3n + 1) a::before,
    .img_list > ul li:nth-child(3n) a::after {display: block;}
    .img_list > ul li:nth-child(2n + 1) a::before,
    .img_list > ul li:nth-child(2n) a::after {display: none;}

    .img_list .no_list {
        padding: 250px 20px 200px;
        background-size: 40px auto;
        font-size: 22px;
    }
}
@media screen and (max-width: 550px) {
    .img_list > ul {border-bottom: none;}
    .img_list > ul > li {width: 100%; border-bottom: 1px solid #000;}
    .img_list > ul > li::after {
        content: '';
        width: 40px;
        height: 40px;
        background-color: #fff;
        display: block;
        position: absolute;
        left: auto;
        right: -20px;
        bottom: 90px;
        z-index: 1;
    }
    .img_list > ul a > div:first-child::after,
    .img_list > ul a > div:last-child:after {
        display: block !important;
        width: 1px;
        height: calc(100% - 40px);
        left: auto;
        right: 0;
        top: 20px;
    }
    .img_list > ul li:nth-child(2n + 1) a::before,
    .img_list > ul li:nth-child(2n) a::after {display: block;}

    .img_list.long > ul > li::before,
    .img_list.long > ul > li::after {display: none;}
}

.info_list > li {display: flex;}
.info_list .tit {
    width: calc(30% - 40px);
    border-top: 2px solid #000;
    margin-right: 40px;
    padding: 80px 0px;
    font-size: 32px;
    font-weight: 500;
    font-family: "classic";
    word-break: keep-all;
}
.info_list .tit * {font-family: "modern"; word-break: break-all;}
.info_list .tit .fs48 > div{font-family: "classic";}
.info_list .tit p:first-child {margin-top: 55px;}
.info_list .tit p {
    font-size: 17px;
    font-weight: normal;
    margin-top: 40px;
    line-height: 190%;
    word-break: keep-all;
    padding-right: 10px;
}
.info_list .tit p.uLine {
    text-decoration: underline;
    font-size: 26px;
    text-underline-position: under;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    line-height: 50px;
}
.info_list .tit .line {
    font-size: 25px;
    background: url('../img/content/ask_menu_line3.png') left top;
    line-height: 186%;
}
.info_list .tit .line2 {
    font-size: 30px;
    background: url('../img/content/ask_menu_line3.png') left top;
    line-height: 155%;
    border-top: #000 solid 1px;
    margin-top: 10px !important;
}
.info_list .tit [class^='btnArea'] {display: flex; flex-wrap: wrap; gap: 10px;}
.info_list .tit [class^='btnArea'] a {width: 40%; margin: 0;}

.info_list .tit .btnAreaC {display: block;}
.info_list .tit .btnAreaC a{width: auto;}

.info_list .tit.icon1 {background: url('../img/content/info_list_icon1.png') left 88px / 30px auto no-repeat; padding-left: 50px;}
.info_list .tit.icon2 {background: url('../img/content/info_list_icon2.png') left 91px / 33px auto no-repeat; padding-left: 50px;}
.info_list .tit.icon3 {background: url('../img/content/info_list_icon3.png') left 89px / 30px auto no-repeat; padding-left: 50px;}
.info_list .tit.icon4 {background: url('../img/content/info_list_icon4.png') left 90px / 29px auto no-repeat; padding-left: 50px;}
.info_list .tit.icon5 {background: url('../img/content/info_list_icon5.png') left 90px / 29px auto no-repeat; padding-left: 50px;}

.info_list .cont {
    width: 70%;
    border-top: 2px solid #000;
    padding: 80px 0px;
}
.info_list .cont .tit {
    padding: 0;
    margin: 0 0 35px;
    border: none !important;
    width: auto;
}
.info_list .cont .tit.type2 {margin: 0 0 20px;}
.info_list li:last-child .tit,
.info_list li:last-child .cont {border-bottom: 2px solid #000;}

.info_list .cont .blt,
.info_list .cont .num_list {margin-top: 5px;}
.info_list .gray {background-color: #d8d8d8;}
.info_list [class^='tbl_'] {margin-top: 0;}
.overflowTbl tbody tr:not(.active) {display: none;}
.overflowTbl tbody tr:nth-child(8n) td {border-bottom-color: #000 !important;}

.info_list.type2 .tit {width: calc(40% - 120px); padding-top: 0; margin-right: 120px; font-size: 40px; border: none !important;}
.info_list.type2 .tit .imgBox img {max-width: 500px; width: 100%;}
.info_list.type2 .tit .sign {font-size: 30px; margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 0 20px; justify-content: end;}
.info_list.type2 .tit .sign img {display: inline-block;}
.info_list.type2 .cont {width: 60%; padding-top: 0; line-height: 200%; font-size: 22px; border: none !important;}
.info_list.type2 .cont p {font-size: 40px; font-family: 'classic';}
.info_list.type2 .cont h4 {font-size: 70px !important; line-height: 150%; margin: 20px 0 60px !important;}
.info_list.type2 .line li + li {border-top: 1px solid #000; padding-top: 35px; margin-top: 35px;}

.dtList dt {
    font-size: 19px;
    font-weight: bold;
}
.dtList > li,
.dtList dd {
    font-size: 17px;
    position: relative;
    padding: 7px 0 7px 15px;
    margin-top: 4px;
}
.dtList > li::before,
.dtList dd::before {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background-color: #5fceea;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 14px;
}
.dtList dd.none {padding-left: 0;}
.dtList dd.none::before {display: none;}
.dtList dt + dt,
.dtList dd + dt {
    border-top: 1px solid #000;
    margin-top: 15px;
    padding-top: 16px;
}

.dtList + .processCont {margin-top: 90px;}

.dtList dd .none {text-indent: -9999px; overflow: hidden; display: none;}

.info_list .dtList .tit {font-size: 19px; font-weight: bold; font-family: 'modern'; margin-bottom: 0;}
.info_list .dtList dd + .tit,
.info_list .dtList .tit + .tit {
    border-top: 1px solid #000 !important;
    margin: 15px 0 0 !important;
    padding-top: 16px;
}
.info_list .dtList .tit::before {display: none;}

@media screen and (max-width: 1260px) {
    .info_list .tit [class^='btnArea'] a {width: calc(50% - 10px);}

    .info_list .tit.icon1 {background-position: left 43px; padding-left: 0;}
    .info_list .tit.icon2 {background-position: left 46px; padding-left: 0;}
    .info_list .tit.icon3 {background-position: left 44px; padding-left: 0;}
    .info_list .tit.icon4 {background-position: left 45px; padding-left: 0;}
    .info_list .tit.icon5 {background-position: left 45px; padding-left: 0;}

    .info_list.type2 .tit {width: calc(40% - 80px); margin-right: 80px; font-size: 40px;}
    .info_list.type2 .tit .sign {font-size: 25px;}
    .info_list.type2 .tit .sign img {width: 140px;}
    .info_list.type2 .cont {font-size: 25px; line-height: 190%;}
    .info_list.type2 .cont p {font-size: 35px;}
    .info_list.type2 .cont h4 {font-size: 60px !important;}
}
@media screen and (max-width: 1024px) {
    .info_list {margin: 0;}
    .info_list .tit [class^='btnArea'] a {width: 100%;}

    .info_list .tit.w45 {width: 100% !important;}

    .info_list.type2 .cont {padding-top: 80px;}
}
@media screen and (max-width: 768px) {
    .info_list > li {flex-direction: column;}
    .info_list .tit {
        width: 100%;
        border-bottom: 2px dashed #000;
        padding: 45px 0 30px;
        margin-right: 0;
        font-size: 25px;
    }
    .info_list .tit p:first-child {margin-top: 20px;}
    .info_list .tit p {
        max-width: none;
        margin-top: 10px;
        font-size: 16px;
        word-break: break-all;
    }
    .info_list .tit .line {font-size: 20px; background-image: url('../img/content/ask_menu_line4.png'); line-height: 190%;display: block;}
    .info_list .tit .line2 {font-size: 25px;background: url('../img/content/ask_menu_line4.png') left top;line-height: 155%;}
    .info_list .tit [class^='btnArea'] a {width: calc((100% - 30px) / 4);}

    .info_list .tit.icon1 {background-position: left 50px; background-size: 25px auto; padding-left: 40px;}
    .info_list .tit.icon2 {background-position: left 53px; background-size: 28px auto; padding-left: 40px;}
    .info_list .tit.icon3 {background-position: left 51px; background-size: 25px auto; padding-left: 40px;}
    .info_list .tit.icon4 {background-position: left 52px; background-size: 24px auto; padding-left: 40px;}
    .info_list .tit.icon5 {background-position: left 52px; background-size: 24px auto; padding-left: 40px;}

    .info_list .cont {width: 100%; border-top: none !important; padding: 30px 0 45px;}
    .dtList dt {font-size: 18px;}
    .dtList > li,
    .dtList dd {font-size: 16px;}
    .dtList > li::before,
    .dtList dd::before {top: 13px;}

    .dtList + .processCont {margin-top: 40px;}

    .info_list.type2 .tit {font-size: 30px;}
    .info_list.type2 .tit .sign {font-size: 20px; margin-top: 15px;}
    .info_list.type2 .tit .sign img {width: 120px;}
    .info_list.type2 .cont {font-size: 20px; line-height: 180%; padding-top: 30px;}
    .info_list.type2 .cont p {font-size: 25px;}
    .info_list.type2 .cont h4 {font-size: 40px !important; margin: 10px 0 30px !important;}
    .info_list.type2 .line li + li {padding-top: 20px; margin-top: 20px;}
}
@media screen and (max-width: 500px) {
    .info_list .tit [class^='btnArea'] a {width: calc((100% - 20px) / 3);}
}
@media screen and (max-width: 425px) {
    .info_list .tit [class^='btnArea'] a {width: calc((100% - 10px) / 2);}
}

.info_list .cont .tit:nth-of-type(n + 2) {margin-top: 80px;}
.info_list .cont > ol.ticketGuide {display: flex; flex-wrap: wrap;}
.info_list .cont > ol.ticketGuide li {
    width: calc((100% - 60px) / 2);
    display: flex;
    align-items: flex-start;
}
.info_list .cont > ol.ticketGuide li:nth-child(2n) {margin-left: 60px;}
.info_list .cont > ol.ticketGuide li:nth-child(n + 3) {margin-top: 60px;}
.info_list .cont > ol.ticketGuide li > img {width: 40%; margin-right: 30px;}
.info_list .cont > ol.ticketGuide li > div {width: 60%;}

.info_list .cont > ol.ticketGuide.column li {flex-direction: column;}
.info_list .cont > ol.ticketGuide.column li > img {width: 100%; height: 400px; margin-right: 0;}
.info_list .cont > ol.ticketGuide.column li > div {width: 100%; margin-top: 20px;}

.info_list .cont > ol.ticketGuide li.full {flex-direction: column;}
.info_list .cont > ol.ticketGuide li.full > img {width: 100%; margin: 0 0 30px;}
.info_list .cont > ol.ticketGuide li.full > div {width: 100%;}

.info_list .cont > ol.ticketGuide .title {
    font-size: 24px;
    line-height: 35px;
    padding-left: 45px;
    position: relative;
}
.info_list .cont > ol.ticketGuide .title span {
    display: inline-block;
    width: 35px;
    background-color: #5fceea;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    position: absolute;
    left: 0;
}
.info_list .cont > ol.ticketGuide .txt {
    background: url('../img/content/info_list_txt.png') top left / 50px auto;
    font-size: 17px;
    font-weight: 500;
    line-height: 41px;
    border-bottom: 1px solid #5fceea;
    margin-top: 20px;
}
.info_list .cont > ol.ticketGuide .guide {font-size: 15px; font-weight: 500; margin-top: 15px;}

.info_list .fix > .tit {position: relative;}
.info_list .fix > .tit > div {position: -webkit-sticky; position: sticky; top: 80px;}

@media screen and (max-width: 1600px) {
    .info_list .cont > ol.ticketGuide.column li > img {height: 360px;}
}
@media screen and (max-width: 1440px) {
    .info_list .cont > ol.ticketGuide li {width: calc((100% - 30px) / 2);}
    .info_list .cont > ol.ticketGuide li:nth-child(2n) {margin-left: 30px;}
    .info_list .cont > ol.ticketGuide li > img {margin-right: 20px;}

    .info_list .cont > ol.ticketGuide.column li > img {height: 320px;}
}
@media screen and (max-width: 1260px) {
    .info_list .cont > ol.ticketGuide li {flex-direction: column; align-items: center;}
    .info_list .cont > ol.ticketGuide li > img {margin-right: 0; width: 160px;}
    .info_list .cont > ol.ticketGuide li > div {width: 100%; margin-top: 30px;}

    .info_list .cont > ol.ticketGuide.column li > img {height: 260px;}
    .info_list .cont > ol.ticketGuide li.full > img {margin-bottom: 0;}
}
@media screen and (max-width: 1024px) {
    .info_list .cont > ol.ticketGuide li {width: calc((100% - 40px) / 2);}
    .info_list .cont > ol.ticketGuide li:nth-child(2n) {margin-left: 40px;}

    .info_list .fix {flex-direction: column;}
    .info_list .fix > .tit {
        width: 100%;
        border-bottom: 2px dashed #000 !important;
        margin-right: 0;
    }
    .info_list .fix > .tit > div {position: static; width: 100%;}
    .info_list .fix > .tit p {max-width: none;}
    .info_list .fix .cont {width: 100%; border-top: none;}
}
@media screen and (max-width: 768px) {
    .info_list .cont .tit:nth-of-type(n + 2) {margin-top: 60px;}
    .info_list .cont > ol.ticketGuide {flex-direction: column;}
    .info_list .cont > ol.ticketGuide li {width: 100%; flex-direction: row; align-items: flex-start;}
    .info_list .cont > ol.ticketGuide li:nth-child(2n) {margin-left: 0;}
    .info_list .cont > ol.ticketGuide li:nth-child(n + 2) {margin-top: 40px;}
    .info_list .cont > ol.ticketGuide li > img {width: 40%; margin-right: 20px;}

    .info_list .cont > ol.ticketGuide.column li {align-items: center;}
    .info_list .cont > ol.ticketGuide.column li > img {height: auto; width: 100%; max-width: 460px;}
}
@media screen and (max-width: 500px) {
    .info_list .cont > ol.ticketGuide li {flex-direction: column; align-items: center;}
    .info_list .cont > ol.ticketGuide li > img {margin-right: 0; width: 100%; max-width: 220px;}
    .info_list .cont > ol.ticketGuide li > div {width: 100%;}
}

.info_list .form {margin-top: 30px;}
.info_list .form .group {margin-top: 10px;}
.info_list .form .li3 ul {display: flex; gap: 40px;}
.info_list .form .li3 ul::after {display: none;}
.info_list .form .li3 li {width: 40%; position: relative;}
.info_list .form .li3 li + li::before {
    content: '';
    width: 2px;
    height: calc(100% - 24px);
    background-color: #000;
    display: block;
    position: absolute;
    left: -21px;
    top: 12px;
}

.info_list .form li select,
.info_list .form li input[type='text'],
.info_list .form li input[type='number'] {
    width: 100%;
    border: none;
    border-bottom: 2px solid #000;
    font-size: 18px;
    font-weight: 500;
    background: none;
    height: 70px;
}
.info_list .form li select {background: url('../img/content/show_select.png') calc(100% - 10px) center / 12px auto no-repeat; padding: 0 30px 0 0;}
.info_list .form li textarea {
    width: 100%;
    height: 300px;
    border: 2px solid #000;
    resize: none;
    padding: 20px 28px;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}
.info_list .form + [class^='btnArea'] {margin-top: 25px;}

@media screen and (max-width: 768px) {
    .info_list .form li select,
    .info_list .form li input[type='text'],
    .info_list .form li input[type='number'] {font-size: 16px; height: 50px;}
    .info_list .form li textarea {font-size: 16px; padding: 15px;}
}
@media screen and (max-width: 500px) {
    .info_list .form .li3 ul {display: block;}
    .info_list .form .li3 li {width: 100%;}
    .info_list .form .li3 li + li {margin-top: 10px;}
    .info_list .form .li3 li + li::before {display: none;}
}
/* --리스트 */

/* 상세 */
.view {border-top: 2px solid #000; border-bottom: 2px solid #000;}
.view > div:first-child {display: flex;}
.view > div:first-child > div {
    padding: 35px 0;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.view [class^='stat_'] {line-height: 35px; padding: 0 12px;}
.view > div:first-child > div > p {
    font-size: 30px;
    font-weight: 500;
    margin-top: 10px;
    padding-right: 30px;
}
.view.btn > div:first-child > div > p {width: calc(100% - 180px);}
.view > div:first-child [class^='btnArea'] {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    margin-top: 0;
}
.view > div:first-child [class^='btnArea'] > * {margin-right: 0;}

.view > div:first-child > ul {
    width: 40%;
    border-left: 2px solid #000;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}
.view > div:first-child > ul > li {
    padding: 10px 30px;
    border-top: 1px solid #000;
    height: 100%;
    display: flex;
    align-items: center;
}
.view > div:first-child > ul > li:not(.no_line).file span {display: flex; align-items: center;}
.view > div:first-child > ul > li:first-child {border-top: none;}

.view.type2 > div:first-child > * {width: 50%;}
.view > div:first-child > ul li::after {content: ""; display: block; clear: both;}
.view > div:first-child > ul li p {width: calc((100% - 41px) / 2); float: left;}
.view > div:first-child > ul li p + p {margin-left: 20px; padding-left: 20px; border-left: 1px solid #000;}

.view > div:first-child > ul span {
    position: relative;
    padding-left: 20px;
    width: 45%;
    max-width: 140px;
    float: left;
}
.view > div:first-child > ul span::after {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background-color: #5fceea;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.view .file_list {position: relative; width: 100%;}
.view .file_list::before {
    content: '';
    width: 1px;
    height: calc(100% - 20px);
    background-color: #000;
    display: block;
    position: absolute;
    left: -20px;
    top: 10px;
}
.file_list li {
    padding: 10px 30px;
    background: url('../img/content/file_list.png') left 16px / 16px auto no-repeat;
}
.file_list li + li {border-top: 1px solid #000;}
.file_list a:hover {text-decoration: underline;}

.view .sns_list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 25px;
    font-size: 14px;
}
.view .sns_list li a {padding: 2px 0; display: block;}
.view .sns_list .naver {background: url('../img/content/icon_naver.png') left center / 14px auto no-repeat; padding-left: 22px;}
.view .sns_list .facebook {background: url('../img/content/icon_facebook.png') left center / 11px auto no-repeat; padding-left: 22px;}
.view .sns_list .kakao {background: url('../img/content/icon_kakao.png') left center / 22px auto no-repeat; padding-left: 30px;}
.view .sns_list .copy {background: url('../img/content/icon_copy.png') left center / 20px auto no-repeat; padding-left: 30px;}
.view .sns_list .naver:hover {background-image: url('../img/content/icon_naver_on.png');}
.view .sns_list .facebook:hover {background-image: url('../img/content/icon_facebook_on.png');}
.view .sns_list .kakao:hover {background-image: url('../img/content/icon_kakao_on.png');}
.view .sns_list .copy:hover {background-image: url('../img/content/icon_copy_on.png');}

.view > div:last-child {
    padding: 35px 30px;
    border-top: 2px solid #000;
    overflow-y: auto;
    margin-bottom: 80px;
    max-height: 700px;
}
.view > div:last-child table:not(.tg) {width: auto;}

.view img {height: auto !important;}

@media screen and (max-width: 1440px) {
    .view.btn > div:first-child > div > p {width: 100%;}
    .view > div:first-child [class^='btnArea'] {
        position: static;
        transform: none;
        display: block;
        margin-top: 10px;
    }
    .view > div:first-child [class^='btnArea'] * + * {margin-left: 5px; margin-top: 0;}
}
@media screen and (max-width: 1260px) {
    .view.type2 > div:first-child > div {width: 40%;}
    .view.type2 > div:first-child > ul {width: 60%;}
}
@media screen and (max-width: 1024px) {
    .view > div:first-child > div,
    .view > div:first-child > ul {width: 50%;}
    .view.type2 > div:first-child {flex-direction: column;}
    .view.type2 > div:first-child > div,
    .view.type2 > div:first-child > ul {width: 100%;}
    .view.type2 > div:first-child > ul {
        border-left: none;
        border-top: 2px solid #000;
        font-size: 15px;
    }

    .view > div:first-child > ul > li {padding: 10px 20px;}
    .view > div:first-child > ul > li:not(.no_line).file {padding: 0 0 0 20px;}
    .file_list li {padding: 10px 20px 10px 30px;}
    .view > div:last-child {padding: 35px 20px 80px;}
}
@media screen and (max-width: 768px) {
    .view > div:first-child {flex-direction: column;}
    .view > div:first-child > div,
    .view > div:first-child > ul {width: 100%;}
    .view > div:first-child > div {padding: 20px 0;}
    .view [class^='stat_'] {font-size: 13px; line-height: 30px;}
    .view > div:first-child > div > p {font-size: 25px; margin-top: 6px;}

    .view > div:first-child [class^='btnArea'] {margin-top: 6px;}

    .view > div:first-child > ul {
        border-left: none;
        border-top: 2px solid #000;
        font-size: 15px;
    }
    .view > div:first-child > ul > li {padding: 10px 0;}
    .view > div:first-child > ul > li:not(.no_line).file {padding: 0;}
    .file_list li {padding: 10px 0 10px 30px;}
    .view .file_list::before {left: -15px;}

    .view > div:last-child {padding: 25px 0 40px;}
}
@media screen and (max-width: 550px) {
    .view > div:first-child > ul li p {width: 100%;}
    .view > div:first-child > ul li p + p {
        margin: 10px 0 0;
        padding: 10px 0 0;
        border-left: none;
        border-top: 1px solid #000;
    }
}
@media screen and (max-width: 425px) {
    .view > div:first-child > ul span {min-width: 110px;}
}
@media screen and (max-width: 375px) {
    .view > div:first-child [class^='btnArea'] {display: block;}
}

.view_more {
    border-bottom: 2px solid #000;
    padding: 20px 0;
    display: flex;
    font-size: 17px;
    font-weight: 500;
}
.view_more div {width: 50%; display: flex; padding: 0 30px;}
.view_more div + div {border-left: 1px solid #000;}
.view_more span {position: relative; padding-left: 20px; width: 30%; min-width: 140px;}
.view_more span::after {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background-color: #5fceea;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}
.view_more a{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    .view_more div {padding: 0 20px;}
}
@media screen and (max-width: 768px) {
    .view_more {font-size: 15px; padding: 0; flex-direction: column;}
    .view_more div {width: 100%; padding: 10px 0;}
    .view_more div + div {border-left: none; border-top: 1px solid #000;}
    .view_more span::after {top: 7px;}
}
@media screen and (max-width: 425px) {
    .view_more span {min-width: 110px;}
}

/* 댓글 - 한줄의견 */
.comment {margin-top: 90px;}
.comment > p {font-size: 30px; font-weight: 500; display: flex; align-items: center;}
.comment > p span {
    font-size: 20px;
    background-color: #ffea00;
    border-radius: 17.5px;
    padding: 2px 14px;
    margin-left: 10px;
    vertical-align: middle;
}
.comment .write {margin-top: 12px; padding: 12px 20px; border: 2px solid #000; display: flex;}
.comment .write div:not(.noline, .rating) {border-right: 1px solid #000; padding-right: 20px; margin-right: 20px; min-width: calc(100% - 240px); width: 100%;}
.comment .write textarea {width: 100%; height: 120px; resize: none; border: none;}
.comment .write p {text-align: right; font-size: 18px; color: #727272;}
.comment .write .btn_blue {max-width: 240px; width: 40%; font-size: 30px; padding: 10px;}

.comment_list {border-bottom: 1px solid #000; font-size: 20px; font-weight: 500;}
.comment_list li {border-bottom: 1px solid #000; padding: 20px 0; display: flex;}
.comment_list .name {
    padding: 0 10px 0 60px;
    background: url('../img/content/icon_comment_user.png') left center / 40px no-repeat;
    display: flex;
    align-items: center;
    max-width: 180px;
    width: 35%;
    border-right: 1px solid #000;
}
.comment_list li > div {
    min-width: calc(100% - 180px);
    width: 100%;
    padding: 2px 0 2px 40px;
}
.comment_list li > div p {font-weight: 600; margin-bottom: 5px;}
.comment_list .date {font-size: 17px; color: #727272; margin-right: 20px;}
.comment_list .time {font-size: 17px; color: #727272; position: relative;}
.comment_list .time::before {
    content: '';
    width: 2px;
    height: 12px;
    background-color: #e0e0e0;
    display: block;
    position: absolute;
    left: -12px;
    top: 3px;
}
.comment_list .like {
    font-size: 17px;
    background: url('../img/content/icon_comment_like.png') left center / 21px auto no-repeat;
    padding-left: 25px;
    margin-right: 15px;
}
.comment_list .like.on {background-image: url('../img/content/icon_comment_like_on.png'); color: #00a6d0;}
.comment_list .hate {
    font-size: 17px;
    background: url('../img/content/icon_comment_hate.png') left center / 21px auto no-repeat;
    padding-left: 25px;
    margin-right: 15px;
}
.comment_list .hate.on {background-image: url('../img/content/icon_comment_hate_on.png'); color: #ff0042;}
.comment_list .del {
    font-size: 17px;
    background: url('../img/content/icon_comment_del.png') left center / 16px auto no-repeat;
    padding-left: 20px;
}

@media screen and (max-width: 768px) {
    .comment .write {padding: 12px 15px;}
    .comment .write div:not(.noline, .rating) {padding-right: 10px; margin-right: 10px;}
    .comment .write p {font-size: 16px;}
    .comment .write .btn_blue {font-size: 25px;}

    .comment_list {font-size: 18px;}
    .comment_list .name {background-size: 35px auto; padding-left: 50px;}
    .comment_list li > div {padding: 2px 20px;}
    .comment_list .date {font-size: 15px; margin-right: 15px;}
    .comment_list .time {font-size: 15px;}
    .comment_list .time::before {left: -10px; top: 2px;}
    .comment_list .like,
    .comment_list .hate {
        font-size: 15px;
        background-size: 19px auto;
        padding-left: 23px;
        margin-right: 10px;
    }
    .comment_list .del {
        font-size: 15px;
        background-size: 14px auto;
        padding-left: 18px;
    }
}
@media screen and (max-width: 425px) {
    .comment .write .btn_blue {font-size: 20px;}

    .comment_list li {flex-direction: column;}
    .comment_list .name {background-size: 25px auto; padding-left: 35px; border-right: none;}
    .comment_list li > div {padding: 5px 0 0;}
}

/* 관람평 */
.comment .top {text-align: center;}
.comment .top .txt {
    text-indent: -9999px;
    overflow: hidden;
    background: url('../img/content/txt_comment.png') center / 133px auto no-repeat;
    line-height: 50px;
}
.comment .top .rating {margin: 0 25px 0 0;}
.comment .top > span:last-child {font-size: 40px; color: #d0d0d0;}
.comment .top > span:last-child span {font-size: 50px; color: #000;}

.show_sub .comment .write {margin-top: 25px; padding: 20px 0; border: none; border-top: 1px solid #000; border-bottom: 1px solid #000;}
.show_sub .comment .write > .noline {width: 300px; text-align: center; display: flex; flex-direction: column; justify-content: center;}
.show_sub .comment .write > .noline > * {display: block;}
.show_sub .comment .write > .noline + div {min-width: auto; width: calc(100% - 240px);}
.show_sub .comment .write > .noline > *:last-child {font-size: 24px; color: #000; padding-bottom: 10px;}
.show_sub .comment .write div:not(.noline, .rating) {min-width: calc(100% - 440px); width: 100%; border: 2px solid #000; border-right: none; padding-right: 0; margin-right: 0;}
.show_sub .comment .write textarea {margin: 14px 18px 0; width: calc(100% - 36px);}
.show_sub .comment .write textarea + p {padding: 0 18px 14px 0;}
.show_sub .comment .write .btn_blue {width: 30%;}

.show_sub .comment .write .rating > * {font-size: 35px; cursor: pointer;}

.show_sub .comment_list {border-top: 1px solid #000; margin-top: 15px;}
.show_sub .comment_list {border-top: 1px solid #000; margin-top: 15px;}
.show_sub .comment_list .rating {margin-bottom: 5px;}
.show_sub .comment_list .rating > * {font-size: 25px; line-height: 25px;}

@media screen and (max-width: 768px) {
    .comment .top .txt {background-size: 120px auto;}
    .comment .top .rating {margin: 0 15px;}
    .comment .top > span:last-child {font-size: 35px;}
    .comment .top > span:last-child span {font-size: 45px;}

    .show_sub .comment {margin-top: 40px;}
    .show_sub .comment .write {position: relative;}
    .show_sub .comment .write > .noline {width: auto; position: absolute; top: 10px; flex-direction: row; align-items: center; gap: 15px;}
    .show_sub .comment .write > .noline > * {margin-top: 0;}
    .show_sub .comment .write > .noline + div {width: 70%; margin-top: 40px;}
    .show_sub .comment .write > .noline + div + .btn_blue {margin-top: 40px;}
    .show_sub .comment .write > .noline > *:last-child {font-size: 18px; padding-bottom: 0;}

    .show_sub .comment .write .rating > * {font-size: 28px;}

    .show_sub .comment_list .rating > * {font-size: 22px; line-height: 22px;}
}
/* --상세 */

/* 상태 */
[class^='stat_'] {
    border: 2px solid #000;
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding: 5px;
    max-width: 90px;
    width: 100%;
    text-align: center;
    font-weight: 500;
}
.stat_ing {background-color: #ffea00; color: #000;}
.stat_end {
    border-color: #cfcfcf;
    background-color: #fff;
    color: #989898;
}
/* --상태 */

/* 단계 */
[class^='step'] {
    margin: 30px 0 20px;
    display: flex;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 20px 0;
}
[class^='step'] > li {
    width: 50%;
    text-align: center;
    border-left: 1px solid #000;
    font-size: 26px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    min-height: 160px;
}
[class^='step'] > li:last-child {border-right: 1px solid #000;}
[class^='step'] .blue {font-size: 18px !important;}
[class^='step'] p {margin-top: 8px; word-break: keep-all;}
[class^='step'].small p {font-size: 18px; max-width: 240px;}

@media screen and (max-width: 1024px) {
    [class^='step'] > li {font-size: 22px;}
    [class^='step'] .blue {font-size: 15px !important;}
}
@media screen and (max-width: 768px) {
    [class^='step'] {margin: 30px 0; padding: 0; flex-direction: column;}
    [class^='step'] > li {
        font-size: 18px;
        padding: 10px 20px;
        min-height: auto;
        width: 100%;
        flex-direction: row;
        gap: 10px;
        justify-content: flex-start;
        align-items: flex-start;
        border-left: none;
        border-bottom: 1px solid #000;
        position: relative;
        text-align: left;
    }
    [class^='step'] > li:last-child {border-right: none; border-bottom: none;}
    [class^='step'] > li::before,
    [class^='step'] > li::after {
        content: '';
        width: 1px;
        height: calc(100% - 20px);
        display: block;
        background-color: #000;
        position: absolute;
        left: 0;
    }
    [class^='step'] > li::after {left: auto; right: 0;}
    [class^='step'] .blue {font-size: 13px !important;}
    [class^='step'] p {margin-top: 0;}
    [class^='step'].small p {font-size: 18px; max-width: none;}
}
[class^='step icon'] li {
    position: relative;
    font-size: 26px;
    background-repeat: no-repeat;
    background-size: auto 67px;
    background-position: center 30px;
    padding: 118px 0 20px 0;
}
[class^='step icon'] li + li::after{
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    border: #000 solid 1px;
    border-radius: 50%;
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../img/content/step_arr.png') center / 10.5px no-repeat #fff;
}
.step.icon1 li:nth-child(1) {background-image: url('../img/content/step_icon1_01.png');}
.step.icon1 li:nth-child(2) {background-image: url('../img/content/step_icon1_02.png');}
.step.icon1 li:nth-child(3) {background-image: url('../img/content/step_icon1_03.png');}
.step.icon1 li:nth-child(4) {background-image: url('../img/content/step_icon1_04.png');}

.step.icon2 li:nth-child(1) {background-image: url('../img/content/step_icon1_01.png');}
.step.icon2 li:nth-child(2) {background-image: url('../img/content/step_icon1_02.png');}
.step.icon2 li:nth-child(3) {background-image: url('../img/content/step_icon2_03.png');}
.step.icon2 li:nth-child(4) {background-image: url('../img/content/step_icon2_04.png');}
.step.icon2 li:nth-child(5) {background-image: url('../img/content/step_icon2_05.png');}

.step.icon3 li:nth-child(1) {background-image: url('../img/content/step_icon3_01.png');}
.step.icon3 li:nth-child(2) {background-image: url('../img/content/step_icon3_02.png');}
.step.icon3 li:nth-child(3) {background-image: url('../img/content/step_icon3_03.png');}
.step.icon3 li:nth-child(4) {background-image: url('../img/content/step_icon3_04.png');}

.step.icon4 li:nth-child(1) {background-image: url('../img/content/step_icon4_01.png');}
.step.icon4 li:nth-child(2) {background-image: url('../img/content/step_icon4_02.png');}
.step.icon4 li:nth-child(3) {background-image: url('../img/content/step_icon4_03.png');}
.step.icon4 li:nth-child(4) {background-image: url('../img/content/step_icon4_04.png');}
.step.icon4 li:nth-child(5) {background-image: url('../img/content/step_icon4_05.png');}
.step.icon4 li:nth-child(6) {background-image: url('../img/content/step_icon4_06.png');}

.step.icon5 {
    border-top: none;
    border-bottom: none;
    padding: 0;
    border-left: #000 solid 1px;
    border-right: #000 solid 1px;
}
.step.icon5 li {
    font-size: 22px;
    background-position: center 48px;
    background-size: auto 80px;
    padding: 155px 10px 55px;
    border-top: #000 solid 2px;
    border-bottom: #000 solid 2px;
}
.step.icon5 li:first-child {margin-left: 20px;border-left: none;}
.step.icon5 li + li {border-left: none;margin-left: 40px;}
.step.icon5 > li:last-child {margin-right: 20px;border-right: none;}
.step.icon5 li:nth-child(1) {background-image: url('../img/content/step_icon5_01.png');}
.step.icon5 li:nth-child(2) {background-image: url('../img/content/step_icon5_02.png');}
.step.icon5 li:nth-child(3) {background-image: url('../img/content/step_icon5_03.png');}
.step.icon5 li:nth-child(4) {background-image: url('../img/content/step_icon5_04.png');}

.step.icon5.type2 li:nth-child(1) {background-image: url('../img/content/icon_sisul_01.png');}
.step.icon5.type2 li:nth-child(2) {background-image: url('../img/content/icon_sisul_02.png');}
.step.icon5.type2 li:nth-child(3) {background-image: url('../img/content/icon_sisul_03.png');}
.step.icon5.type2 li:nth-child(4) {background-image: url('../img/content/icon_sisul_04.png');}
.step.icon5.type2 li:nth-child(5) {background-image: url('../img/content/icon_sisul_05.png');}
.step.icon5.type2 li:nth-child(6) {background-image: url('../img/content/icon_sisul_06.png');}

.step.icon5.type3 li {
    background-position: center 20px;
    background-size: 100% auto;
    font-size: 20px;
    padding: 20% 0px 20px;
}
.step.icon5.type3 li:nth-child(1) {background-image: url('../img/content/icon_map_01.png');}
.step.icon5.type3 li:nth-child(2) {background-image: url('../img/content/icon_map_02.png');}
.step.icon5.type3 li:nth-child(3) {background-image: url('../img/content/icon_map_03.png');}
.step.icon5 li + li::after {
    background: #000;
    width: 1px;
    height: 100%;
    border-radius: 0;
    transform: translateY(0);
    top: 0;
    left: -20px;
    border: none;
}
@media screen and (max-width: 768px) {
    .step.icon5 {border: none;border-top: #000 solid 2px;border-bottom: #000 solid 2px;}
    .step.icon5 li {margin: 0 !important;border: none;}
    .step.icon5 li + li{border-top: #000 solid 1px;}
    .step.icon5 li:first-child{border-left: #000 solid 1px;border-right: #000 solid 1px;margin: 20px 0 !important;}
    .step.icon5 li + li::before {
        width: 1px;
        height: calc(100% - 40px);
        top: 20px;
        right: 0;
        left: auto;
    }
    .step.icon5 li + li::after {
        left: 0;
        top: 20px;
        margin-left: 0;
        height: calc(100% - 40px);
    }
    .step.icon5.type3 li {background-size: calc(100% - 40px) auto;padding: 60% 0px 20px;}
    .step.icon5.type3 li:nth-child(1) {background-position: 20px 0;padding: calc(60% - 20px) 0 0 ;}
}
.stepList {
    margin: 20px 0 40px;
    flex-wrap: wrap;
    border-width: 1px;
    padding: 0;
}
.stepList > li {
    width: 100%;
    border-left: none;
    text-align: left;
    justify-content: start;
    flex-direction: row;
    padding: 30px 0;
    min-height: auto;
    align-items: flex-start;
}
.stepList > li + li {
    border-top: #000 solid 1px;
}
.stepList > li:last-child {border-right: none;}
.stepList > li > div:nth-child(1) .blue {
    display: block !important;
    text-align: center;
    width: 82px;
}
.stepList > li > div:nth-child(2) {
    margin-left: 20px;
}
.stepList > li > div:nth-child(2) p{
    margin-top: 0;
    font-size: 20px;
}
.stepList .blt {font-size: 17px;}
@media screen and (max-width: 1439px) {
    .step.icon4 {flex-wrap: wrap;}
    .step.icon4 li{
        width: calc(100% / 3);
        justify-content: center;
        border-left: #000 solid 1px;
        border-right: #000 solid 1px;
        border-bottom: none;
        margin: 20px 0;
    }
    .step.icon4 li:nth-child(3):before {
        content: "";
        display: block;
        width: 32px;
        height: 32px;
        border: #000 solid 1px;
        border-radius: 50%;
        position: absolute;
        right: -16px;
        top: 50%;
        transform: translateY(-50%);
        background: url('../img/content/step_arr.png') center / 10.5px no-repeat #fff;
    }
    .step.icon4 li + li::before {
        display: block;
        width: 100%;
        height: 1px;
        top: -20px;
    }
    .step.icon4 li:last-child {border-right: #000 solid 1px;}
}
@media screen and (max-width: 768px) {
    .step.icon4 li {width: 100%;}
    [class^='step icon'] li{
        justify-content: center;
        border-left: #000 solid 1px;
        border-right: #000 solid 1px;
        border-bottom: none;
        margin: 20px 0;
    }
    .step.icon4 li:nth-child(3):before,
    [class^='step icon'] li::before,
    [class^='step icon'] li::after {display: none;}
    .step.icon4 li:nth-child(3):before,
    [class^='step icon'] li + li::before {
        display: block;
        width: 100%;
        height: 1px;
        top: -20px;
    }
    .step.icon4 li:nth-child(3):before {
        background: #000;
        border: none;
        border-radius: 0;
    }
    [class^='step icon'] li + li::after {
        top: -35px;
        left: 50%;
        transform: rotate(90deg);
        margin-left: -16.66px;
    }
    [class^='step icon'] li:last-child {border-right: #000 solid 1px;}
    .stepList > li {padding: 30px 20px;}
}
@media screen and (max-width: 425px) {
    [class^='step icon'] li {
        font-size: 20px;
        background-size: auto 50px;
        background-position: center 20px;
        padding: 90px 0 20px;
    }
    .stepList > li {padding: 15px;}
}
.step8 {flex-wrap: wrap;}
.step8 > li{width: calc(100% / 4);}
.step8 > li:nth-child(4){border-right: #000 solid 1px;}
.step8 > li:nth-child(n + 5){
    margin-top: 40px;
    position: relative;
}
.step8 > li:nth-child(n + 5)::after{
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: 2px;
    background-color: #000;
    position: absolute;
    top: -20px;
}
@media screen and (max-width: 768px) {
    .step8 {flex-direction:row}
    .step8 > li{width: 100%}
    .step8 > li:nth-child(4) {border-right: none;}
    .step8 > li:nth-child(n + 5){margin-top: 0px;}
    .step8 > li:nth-child(n + 5)::after{
        width: 1px;
        height: calc(100% - 20px);
        right: 0;
        top: 10px;
    }
}
/* --단계 */

/* 버튼 */
[class^='btn_'] {
    border: 2px solid #000;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    text-align: center;
}
[class^='btn_'].h53 {height: 53px;padding-top: 0;padding-bottom: 0;line-height: 49px;}
.btn_blue {
    background-color: #5fceea;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_movie,
.btn_guideMap,
.btn_vr,
.btn_list,
.btn_del,
.btn_save,
.btn_save2 {
    padding: 14px 65px 14px 20px;
    min-width: 150px;
    text-align: left;
    background: url('../img/content/btn_list.png') calc(100% - 20px) center / 7px auto #e3e3e3 no-repeat;
    position: relative;
}
.btn_movie::before,
.btn_guideMap::before,
.btn_vr::before,
.btn_list::before,
.btn_del::before,
.btn_save::before,
.btn_save2::before {
    content: '';
    width: 2px;
    height: 20px;
    background-color: #000;
    display: block;
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
}
.btn_movie:hover,
.btn_guideMap:hover,
.btn_vr:hover,
.btn_blue:hover,
.btn_list:hover,
.btn_del:hover,
.btn_save:hover,
.btn_save2:hover {box-shadow: 3px 3px 0 #000;}

.btn_save {
    background-image: url('../img/content/btn_save.png');
    background-color: #000;
    color: #fff;
}
.btn_del {background-color: #fff;}
.btn_save::before {background-color: #fff;}
.btn_save:hover {
    background-color: #ffea00;
    color: #000;
    background-image: url('../img/content/btn_list.png');
}
.btn_save:hover::before {background-color: #000;}
.btn_save2 {background-color: #ffea00;}

.btn_movie,
.btn_guideMap,
.btn_vr {
    font-size: 20px;
    min-width: 380px;
    padding: 33px 150px 33px 20px;
}
.btn_movie::before,
.btn_guideMap::before,
.btn_vr::before {
    width: 1px;
    height: 59px;
    right: 128px;
}
.btn_movie {
    background-image: url('../img/content/btn_movie.png');
    background-size: 56px auto;
    background-color: #000;
    background-position: calc(100% - 34px) center;
    color: #fff;
}
.btn_movie::before {background-color: #fff;}
.btn_guideMap {
    background-image: url('../img/content/btn_guideMap.png');
    background-color: #5fceea;
    background-size: 43px auto;
    background-position: calc(100% - 41px) center;
}
.btn_vr {
    background-image: url('../img/content/btn_vr.png');
    background-color: #ffea00;
    background-size: 60px auto;
    background-position: calc(100% - 32px) center;
}

.btn_down {
    border-width: 1px;
    background: url('../img/content/btn_down.png') calc(100% - 20px) center / 13px no-repeat;
    font-size: 14px;
    padding: 8px 40px 8px 15px;
}
.btn_down_all {
    border-width: 2px;
    background: url('../img/content/btn_down_all.png') right center / 46px no-repeat #e2e2e2;
    font-size: 24px;
    padding: 0 60px 0 15px;
    line-height: 41px;
    min-width: 320px;
    text-align: center;
}
.btn_down_all:hover {background-color: #ffea00;box-shadow: 3px 3px 0 #000;}
.btn_link {
    border-width: 2px;
    background: url('../img/content/btn_link.png') right center / 46px no-repeat #e2e2e2;
    font-size: 24px;
    padding: 0 60px 0 15px;
    line-height: 41px;
    min-width: 320px;
    text-align: center;
}
.btn_link:hover {background-color: #ffea00;box-shadow: 3px 3px 0 #000;}

.btn_down.black {
    font-size: 24px;
    color: #fff;
    padding: 15px 55px;
    min-width: 238px;
    background: #000;
}
.btn_like {
    background: url('../img/content/btn_like.png') 55px center / 20px auto #fff no-repeat;
    font-size: 24px;
    padding: 15px 55px 15px 85px;
    min-width: 238px;
    border-width: 1px;
}
.btn_like.on {background-image: url('../img/content/btn_like_on.png') !important;}

[class^='btn_arr'] {padding: 8px 36px 8px 16px; font-size: 15px;}
.btn_arr {background: url('../img/content/btn_arr.png') calc(100% - 16px) center / 13px auto #fff no-repeat; border: 1px solid #000;}
.btn_arr3 {
    padding: 0 16px;
    border: 1px solid #a6a6a6;
    font-size: 14px;
    line-height: 38px;
    height: 40px;
}
.btn_arr:hover,
.btn_arr2 {
    background: url('../img/content/btn_arr_on.png') calc(100% - 16px) center / 13px auto #000 no-repeat;
    color: #fff;
}
.btn_arr2:hover {
    background-image: url('../img/content/btn_arr.png');
    background-color: #ffea00;
    border-color: #ffea00;
    color: #000;
}
.btn_s_plus {padding: 8px 36px 8px 16px; font-size: 15px; color: #000; border-width: 1px; background: url('../img/content/btn_s_plus.png') calc(100% - 16px) center / 11px #fff no-repeat;}

.btn_black,
.btn_fill,
.btn_line,
.btn_s_blue,
.btn_check {
    min-width: 150px;
    font-size: 17px;
    padding: 10px;
}
.btn_black,
.btn_fill {background-color: #000; color: #fff;}
.btn_black {text-align: center;font-size: 15px;min-width: 75px;padding: 0 10px;line-height: 36px;}
.btn_s_blue {background-color: #5fceea;}
.btn_plus {border-width: 1px; font-size: 20px; padding: 10px; background-color: #fff;}
.btn_plus span {padding-right: 26px; background: url('../img/content/btn_plus.png') right center / 12px auto no-repeat;}

.btn_check {border-color: #ffe800; background-color: #ffe800;}
.btn_check span {padding-left: 22px; background: url('../img/content/btn_check.png') left center / 14px auto no-repeat;}

.btn_search {
    padding: 0;
    text-align: center;
    background-color: #000;
    width: 100%;
}
.btn_search span{
    display: inline-block;
    padding: 14px 25px 14px 20px;
    min-width: 150px;
    background: url('../img/content/btn_search.png') right center / 16px auto no-repeat #000;
    color: #fff;
}

.btn_before,
.btn_after,
.btn_after_line {
    font-size: 22px;
    color: #fff;
    background-color: #000;
    padding: 12px;
}
.btn_before {background-color: #ececec; color: #999; border-color: #ececec;}
.btn_after_line {background-color: #fff; color: #000;}

.btn_next {
    background-color: #ffe800;
    width: 100%;
    margin: 0;
    font-size: 22px;
    padding: 15px;
}
.btn_next span {padding-right: 22px; background: url('../img/content/btn_next_pop.png') right center / 8px auto no-repeat;}
.btn_next.disabled {background-color: #ececec; border-color: #bbb; color: #999;}
.btn_next.disabled span {background-image: url('../img/content/btn_next_pop2.png');}

.btn_reset {
    border-width: 1px;
    font-size: 14px;
    background: url('../img/content/btn_reset.png') calc(100% - 14px) center / 13px #fff no-repeat;
    padding: 8px 33px 8px 14px;
}
.btn_vr_pop {
    border-width: 1px;
    font-size: 14px;
    background: url('../img/content/btn_vr_pop.png') calc(100% - 14px) center / 19px auto #ffe800 no-repeat;
    padding: 8px 39px 8px 14px;
}
.btnAreaMap {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}
.btnAreaMap > * {
    width: 48% !important;
}
.btn_map {
    border-width: 1px;
    line-height: 60px;
    padding: 0 20px;
    font-size: 20px;
}
.btn_map span{
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 18px auto;
    background-position: 0 center;
    padding-left: 25px;
    text-align: left;
}
.btn_map.kakao span{background-image: url('../img/content/icon_kakaoMap.png')}
.btn_map.naver span{background-image: url('../img/content/icon_naverMap.png')}
[class^='btn_c_'] {
    border-width: 1px;
    background: url('../img/content/btn_c_minus.png') center / 11px auto no-repeat;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    text-indent: -9999px;
    overflow: hidden;
    margin: 0 10px;
}
.btn_c_plus {background-image: url('../img/content/btn_c_plus.png'); margin-right: 0;}

.btn_file {
    width: 50px;
    height: 50px;
    border-width: 1px;
    text-indent: -9999px;
    overflow: hidden;
    box-sizing: border-box;
    background: url('../img/content/btn_file_plus.png') center / 18px auto no-repeat;
}
.btn_file.minus {background-image: url('../img/content/btn_file_minus.png');}

@media screen and (max-width: 1280px) {
    .btnAreaMap {display: block;margin-top: 30px;}
    .btnAreaMap > * {width: 100% !important;}
}
@media screen and (max-width: 768px) {
    [class^='btn_arr'] {padding: 8px 30px 8px 10px; background-position: calc(100% - 10px) center;}

    .btn_down_all,
    .btn_link {
        background-size: 32px auto;
        font-size: 17px;
        padding: 0 45px 0 15px;
        line-height: 31px;
        min-width: auto;
    }

    .btn_s_blue {font-size: 20px; padding: 12px 0;}

    .btn_down.black {
        font-size: 15px;
        padding: 10px;
        min-width: 116px;
        height: 45px;
    }
    .btn_like {
        background: url('../img/content/btn_like.png') 22px center / 14px auto #fff no-repeat;
        font-size: 15px;
        padding: 10px 10px 10px 40px;
        min-width: 116px;
        height: 45px;
    }

    .btn_fill,
    .btn_line {min-width: 100px; padding: 8px;}

    .btn_plus {font-size: 15px;}
    .btn_plus span {padding-right: 22px;}

    .btn_before,
    .btn_after,
    .btn_after_line {font-size: 19px;}

    .btn_arr,
    .btn_arr2,
    .btn_s_plus {font-size: 14px; padding: 6px 32px 6px 12px; background-position: calc(100% - 12px) center;}

    .btn_movie,
    .btn_guideMap,
    .btn_vr {
        font-size: 20px;
        min-width: 100%;
        padding: 33px 150px 33px 20px;
    }
    .btn_movie {background-size: 36px auto;}
    .btn_guideMap {background-size: 23px auto;}
    .btn_vr {background-size: 40px auto;}
    .btn_movie::before,
    .btn_guideMap::before,
    .btn_vr::before {right: 100px;}
}
/* --버튼 */

/* 박스 */
.flex_box {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.flex_box [class^='blt_'] {width: 90%;}
.flex_box [class^='btn_'] {
    width: 20%;
    max-width: 240px;
    font-size: 30px;
    padding: 20px 15px;
    word-break: keep-all;
}

@media screen and (max-width: 1260px) {
    .flex_box [class^='blt_'] {width: 80%;}
    .flex_box [class^='btn_'] {width: 30%;}
}
@media screen and (max-width: 768px) {
    .flex_box {flex-direction: column;}
    .flex_box > * {width: 100% !important;}
    .flex_box [class^='btn_'] {font-size: 25px; max-width: none;}
}

.gray_box {
    background-color: #f4f4f4;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 20px;
    margin-top: 20px;
}
.gray_box strong {display: block; margin-bottom: 5px;}
.gray_box2 {
    background-color: #f1f1f1;
    padding: 80px 50px;
    text-align: center;
}
.gray_box2 .tit{
    font-family: "classic";
    font-size: 70px;
}
.gray_box2 .tit + p{
    font-size: 26px;
    margin: 35px 0;
    line-height: 46px;
}
.gray_box2 .img .phide {display: none;}
@media screen and (max-width: 768px) {
    .gray_box2 .img img{width: 100%;}
    .gray_box2 .img .phide {display: block;}
    .gray_box2 .img .mhide {display: none;}
    .gray_box2 {padding: 40px 20px;}
    .gray_box2 .tit{font-size: 35px;}
    .gray_box2 .tit + p{font-size: 15px;line-height: 26px;margin: 15px 0 30px;}
    .gray_box2 .tit + p br{display: none;}
    .gray_box2.scroll {overflow: auto;}
    .gray_box2.scroll > * {width: 768px;}
}
[class^='guide_box'] {
    border: 2px solid #000;
    margin-top: 60px;
    display: flex;
    padding: 20px 30px;
    /* font-weight: 600; */
}
[class^='guide_box'] p {
    font-size: 20px;
    width: 30%;
    min-width: 120px;
    border-right: 1px solid #000;
    padding-top: 45px;
    background: url('../img/content/guide_box.png') top left / auto 35px no-repeat;
}
.guide_box2 p {background-image: url('../img/content/guide_box2.png');}
[class^='guide_box'] ul {padding: 10px 0 10px 40px;}
[class^='guide_box'] > ul {width: 70%;}
[class^='guide_box'] li {
    font-size: 17px;
    padding-left: 15px;
    position: relative;
}
[class^='guide_box'] li + li {margin-top: 6px;}
[class^='guide_box'] li::before {
    content: '';
    width: 6px;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 12px;
}
[class^='guide_box'] li > ul {padding-left: 0;}
[class^='guide_box'] li > ul > li{
    padding-left: 10px;
}
[class^='guide_box'] li > ul > li::before {
    width: 3px;
    height: 3px;
    background-color: #a9a9a9;
    position: absolute;
    left: 0;
    top: 12px;
}

@media screen and (max-width: 768px) {
    [class^='guide_box'] {flex-direction: column; padding: 30px 22px; margin-top: 45px;}
    [class^='guide_box'] p {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #000;
        padding: 0 0 30px 45px;
        line-height: 35px;
    }
    [class^='guide_box'] > ul {width: 100%;}
    [class^='guide_box'] ul {padding: 25px 5px 0;}
    [class^='guide_box'] li {font-size: 15px;}
    [class^='guide_box'] li > ul {padding: 0;}
}

.caution_box {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 25px 28px;
    font-weight: 600 !important;
}
.caution_box dt {
    background: url('../img/content/caution_box.png') left center / 27px no-repeat;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 20px !important;
}
.caution_box li p,
.caution_box dd {
    background-color: #ffe800;
    padding: 0 0 0 27px !important;
    display: block;
    position: relative;
    font-size: 17px;
    width: fit-content;
}
.caution_box li + li,
.caution_box dd + dd {margin-top: 8px !important;}
.caution_box li p::before,
.caution_box dd::before {
    content: '';
    width: 10px !important;
    height: 10px !important;
    display: block;
    background-color: #000 !important;
    border-radius: 50%;
    position: absolute;
    left: 10px !important;
    top: 8px !important;
}

@media screen and (max-width: 768px) {
    .caution_box {padding: 25px 15px;}
    .caution_box dt {font-size: 18px !important; margin-bottom: 15px;}
    .caution_box li p,
    .caution_box dd {font-size: 15px !important;}
}

.doneBox {border: 2px solid #000; padding: 50px 30px; position: relative; max-width: 600px; margin: 50px auto 0;}
.doneBox::after {
    content: '';
    width: 50px;
    height: 50px;
    background: url('../img/content/doneBox_check.png') center / 24px auto #fff no-repeat;
    border: 3px solid #000;
    box-sizing: border-box;
    border-radius: 50%;
    display: block;
    position: absolute;
    right: -16px;
    top: -16px;
}
.doneBox img {max-width: 236px; width: 100%; margin-bottom: 30px;}
.doneBox ul {max-width: 330px; border-top: 1px solid #000; width: 100%; margin: 0 auto; font-size: 20px;}
.doneBox li {border-bottom: 1px solid #000; padding: 10px 0; display: flex;}
.doneBox li span {width: 130px; display: inline-block; word-break: break-all; padding: 0 5px;}
.doneBox li span:last-child {width: calc(100% - 130px); border-left: 1px solid #000;}

@media screen and (max-width: 768px) {
    .doneBox {margin-top: 25px;}
    .doneBox ul {font-size: 18px;}
    .doneBox li span {width: 40%;}
    .doneBox li span:last-child {width: 60%;}
}
/* --박스 */

/* 페이징 */
.pagination {
    text-align: center;
    margin: 40px auto 0;
    width: fit-content;
}
.pagination * {
    vertical-align: top;
    display: inline-block;
}
.pagination a,
.pagination em {
    width: 42px;
    height: 42px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #000;
    font-size: 16px;
    font-weight: 500;
}
.pagination .i a {
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    border-color: transparent;
    background: url('../img/content/page_first.png') center / auto 12px no-repeat;
}
.pagination .prev a {background-image: url('../img/content/page_prev.png');}
.pagination .next a {background-image: url('../img/content/page_next.png');}
.pagination .end a {background-image: url('../img/content/page_last.png');}
.pagination .first.disabled a {background-image: url('../img/content/page_first_none.png');}
.pagination .prev.disabled a {background-image: url('../img/content/page_prev_none.png');}
.pagination .next.disabled a {background-image: url('../img/content/page_next_none.png');}
.pagination .end.disabled a {background-image: url('../img/content/page_last_none.png');}

.pagination li:nth-child(2) {margin-right: 12px;}
.pagination li:nth-last-child(2) {margin-left: 12px;}
.pagination li {float: left; margin: 0 2px;}
.pagination li:not(.i) a:hover {background-color: #ebebeb;}
.pagination li.active em {
    color: #fff;
    background-color: #000;
}

@media screen and (max-width: 768px) {
    .pagination a,
    .pagination em {
        width: 34px;
        height: 34px;
        line-height: 32px;
        font-size: 15px;
    }
    .pagination .i a {background-size: auto 11px; width: 27px;}
    .pagination li:nth-child(2) {margin-right: 5px;}
    .pagination li:nth-last-child(2) {margin-left: 5px;}
}
/* --페이징 */

/* 팝업 - 티켓오픈안내 */
.layerPopup .layerCont > div {margin: 0 auto;}
.layerPopup .layerCont .tit {font-size: 18px; word-break: keep-all;}
.layerPopup .center {text-align: center;}
.layerPopup .phone {margin: 20px auto 35px !important; max-width: 360px;}
.layerPopup .phone span {
    width: calc((100% - 119px) / 3);
    display: inline-block;
    border-bottom: 2px solid #000;
    padding: 15px 0;
    margin: 0 15px;
}
.layerPopup .phone span * {
    border: none;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    height: 30px;
    line-height: 30px;
}
.layerPopup .phone select {
    background: url('../img/content/select.png') right center / 12px auto #fff no-repeat;
    padding: 0 20px 0 0;
}
.layerPopup .phone select::-ms-expand {display: none;}
.layerPopup .phone input {text-align: center;}
.layerPopup .agree {
    background-color: #d3d3d3;
    display: block;
    margin-top: 10px;
    padding: 6px 25px;
}
.layerPopup .agree input[type='checkbox'] + span::after {
    border-color: #000;
    background: #fff;
}
.layerPopup .agree input[type='checkbox']:checked + span::after {
    background: url('../img/content/checkbox.png') center / 14px auto #000 no-repeat;
}

@media screen and (max-width: 768px) {
    .layerPopup .phone span {
        width: calc((100% - 89px) / 3);
        margin: 0 10px;
    }
}
@media screen and (max-width: 425px) {
    .layerPopup .phone span {
        width: calc((100% - 59px) / 3);
        margin: 0 5px;
    }
}
/* --팝업 - 티켓오픈안내 */

/* 01 프로그램 */
/* 공연 > 공연일정 */
.show_search {
    border: 2px solid #000;
    display: flex;
    font-weight: 500;
    margin-bottom: 70px;
}
.show_search > div:last-child {
    display: flex;
    flex-wrap: wrap;
    width: 65%;
}
.show_search [class^='show_'] {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
}
.show_search [class^='show_']:last-child {border-bottom: none;}
.show_search .tit {
    background-color: #5fceea;
    width: 150px;
    display: inline-block;
    padding: 12px 25px;
    line-height: 48px;
    border-right: 2px solid #000;
}

.en .show_search .tit {display: inline-flex; align-items: center; line-height: normal;}

.show_search [class^='show_'] > div {
    padding: 12px 25px !important;
    width: calc(100% - 150px) !important;
}

.show_search.noCal > * {width: calc(100% / 3) !important; padding: 0 !important;}
.show_search.noCal > .w100 {width: 100% !important;}
.show_search.noCal [class^='show_'] {border-bottom: none;}
.show_search.noCal [class^='show_']:nth-of-type(1) {border-left: none;}

.show_check div {display: flex;}
.show_check label {
    border: 1px solid #000;
    width: calc(100% / 7);
}
.show_check label + label {border-left: none;}
.show_check input[type='checkbox'] + span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding-left: 0;
    font-size: 15px;
    background-color: #fff;
}
.show_check input[type='checkbox']:checked + span {
    background-color: #ffea00;
    border: 1px solid #000;
}
.show_check input[type='checkbox'] + span::after {display: none;}

.show_select {width: 50% !important;}
.show_select select {
    width: 100%;
    height: 46px;
    border: none;
    background: url('../img/content/show_select.png') right center / 12px auto no-repeat;
    padding: 0 20px 0 0;
}

.show_text input {
    width: calc(100% - 36px);
    height: 46px;
    border: none;
    padding: 0;
    background-color: transparent;
}
.show_text button {
    text-indent: -9999px;
    overflow: hidden;
    width: 21px;
    height: 46px;
    margin-left: 10px;
    background: url('../img/content/show_search.png') center / 21px auto no-repeat;
}

@media screen and (max-width: 1440px) {
    .show_search .tit {padding: 12px 20px; width: 120px;}
    .show_search [class^='show_'] > div {padding: 12px 20px !important; width: calc(100% - 120px) !important;}

    .show_check div {flex-wrap: wrap;}
    .show_check label {width: calc(100% / 4);}
    .show_check label:nth-child(4n + 1) {border-left: 1px solid #000;}
    .show_check label:nth-child(n + 5) {border-top: none;}
    .show_check input[type='checkbox'] + span {padding: 8px 0;}
}
@media screen and (max-width: 1024px) {
    .show_search {flex-direction: column;}
    .show_search > div:last-child {width: 100%;}
    .show_search [class^='show_'] {border-left: none;}
    .show_select + .show_select {border-left: 2px solid #000;}

    .show_search.noCal {flex-direction: row; flex-wrap: wrap;}
    .show_search.noCal > .show_select {width: calc(100% / 2) !important; border-bottom: 2px solid #000;}
    .show_search.noCal > .show_text {width: 100% !important;}
}
@media screen and (max-width: 768px) {
    .show_search {border-left: none; border-right: none;}
    .show_search > div {background-color: #f8f8f8;}
    .show_search > div:last-child {border-top: 2px solid #000;}
    .show_search .tit {display: none;}
    .show_search [class^='show_'] > div {padding: 5px 0 !important; width: 100% !important;}

    .show_search.noCal > div:first-child {margin-bottom: 0;}
    .show_search.noCal [class^='show_']:not(:nth-of-type(1)) {border-bottom: 2px solid #000;}
    .show_search.noCal > div:last-child {border: none !important;}
    .show_search.noCal > .show_select {width: 100% !important;}
    .show_search.noCal > div:last-child {margin-top: 0;}

    .show_check div {padding: 15px 0 !important;}
    .show_check input[type='checkbox'] + span {font-size: 14px;}

    .show_select {width: 100% !important; font-size: 15px;}
    .show_select + .show_select {border-left: none;}
    .show_select select {
        background: url('../img/content/show_select_m.png') calc(100% - 6px) center / 15px auto no-repeat;
        padding: 0 30px 0 6px;
        height: 40px;
    }

    .show_text input {font-size: 15px; padding: 0 6px; width: calc(100% - 43px); height: 40px;}
    .show_text button {
        background: url('../img/content/show_search_m.png') center / 16px auto no-repeat;
        width: 28px;
        height: 40px;
    }
}
@media screen and (max-width: 425px) {
    .show_check label {width: calc(100% / 3);}
    .show_check label:nth-child(4n + 1) {border-left: none;}
    .show_check label:nth-child(3n + 1) {border-left: 1px solid #000;}
    .show_check label:nth-child(n + 4) {border-top: none;}
}

.show_search > div:first-child {width: 35%; display: flex;}
.show_search > div:first-child > div + div {border-left: 2px solid #000;}
.show_search > div:first-child > div:first-child {width: 30%; padding: 10px 20px; background-color: #5fceea;}
.show_search > div:first-child label {display: block;}
.show_search > div:first-child label + label {margin-top: 5px;}
.show_search > div:first-child input[type='radio'] + span {
    padding: 0 20px 0 0;
    line-height: 40px;
    display: block;
}
.show_search > div:first-child input[type='radio'] + span::after {display: none;}
.show_search > div:first-child input[type='radio']:checked + span {
    opacity: initial;
    font-weight: 600;
    border-bottom: 2px solid #000;
    background: url('../img/content/show_radio.png') right center / 14px no-repeat;
}
.show_search .arrow {
    padding: 10px 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    font-size: 15px;
    font-weight: 500;
    width: 15%;
    background-color: #5fceea;
}
.show_search .arrow a {
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    width: 100%;
    background: url('../img/content/show_arrow.png') center / 14px auto no-repeat;
}
.show_search .arrow .next {transform: rotate(180deg);}
.show_search .arrow span {font-size: 26px; display: block; line-height: 26px; margin-bottom: 5px;}
.show_search > div:first-child > div:last-child {
    width: 65%;
    padding: 10px 20px;
    text-align: center;
    position: relative;
}
#sDateEdate {
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid #000;
    padding: 8px 25px 8px 0;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    background: url('../img/content/show_calendar.png') center right / auto 15px no-repeat;
}
.show_search > div:first-child .btn_cal {
    text-indent: -9999px;
    overflow: hidden;
    border: none;
    width: 28px;
    height: 40px;
    background: url('../img/content/show_calendar.png') center / auto 15px no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    display: none;
}
.show_search > div:first-child table {width: 100%; font-size: 14px; margin: auto;}
.show_search > div:first-child td {height: 30px;}
.show_search > div:first-child td:first-child {color: #ff3535;}
.show_search > div:first-child td a {display: block; max-width: 28px; line-height: 28px; margin: auto;}
.show_search > div:first-child .on a {background-color: #ffea00; border-radius: 50%;}

@media screen and (max-width: 1440px) {
    .show_search > div:first-child > div:first-child {display: none;}
    .show_search .arrow {border-left: none !important; width: 25%;}
    .show_search > div:first-child > div:last-child {width: 75%;}
}
@media screen and (max-width: 1024px) {
    .show_search > div:first-child {width: 100%; border-bottom: 2px solid #000;}
    .show_search .arrow {flex-direction: row; align-items: center; width: 118px;}
    .show_search .arrow .prev {transform: rotate(270deg);}
    .show_search .arrow .next {transform: rotate(90deg);}

    .show_search > div:first-child > div:last-child {width: calc(100% - 118px);}
    .show_search > div:first-child table {margin: 10px auto;}
}
@media screen and (max-width: 768px) {
    .show_search > div:first-child {margin-bottom: 25px; padding: 5px 0;}
    .show_search .arrow {display: none;}
    .show_search > div:first-child > div:last-child {
        border: none;
        width: 100%;
        padding: 0 6px;
        text-align: left;
    }
    #sDateEdate {margin-bottom: 0; line-height: 24px; background-color: transparent; text-align: left;}
    .show_search > div:first-child .btn_cal {display: block;}
    .show_search > div:first-child table {text-align: center;}
}

.top_menu {display: flex; justify-content: space-between;}
.top_menu.ar {justify-content: right}
.top_menu.aLr {justify-content: right;margin-top: -50px;}
.top_menu div:last-child span {font-weight: 500; margin-right: 15px;}
.top_menu div:last-child strong {color: #ff2e2e;}
.list_type + [class^='tbl_'],
.top_menu + [class^='tbl_'] {margin-top: 20px;}

.top_menu select{line-height: 38px;height: 40px;min-width: 175px;}
.top_menu select + [class^='btn_'] {float: right;}

@media screen and (max-width: 768px) {
    .top_menu.aLr {justify-content: left;margin-top: 10px;}
    .top_menu.aLr > div{width: 100%;}
}
.list_type::after {content: ""; display: block; clear: both;}
.list_type label {float: left;}
.list_type label + label input[type='radio'] + span {
    border-left: none;
}
.list_type input[type='radio'] + span {
    border: 1px solid #000;
    min-width: 80px;
    text-align: center;
    padding: 8px 15px 8px 30px;
    font-size: 14px;
    font-weight: 500;
    display: block;
    background: url('../img/content/list_type01.png') 15px center / 10px auto #fff no-repeat;
}
.list_type input[type='radio'] + span::after {display: none;}
.list_type input[type='radio']:checked + span {
    color: #fff;
    background-color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-image: url('../img/content/list_type01_on.png');
}
.list_type label input[type='radio'].type2 + span {background-image: url('../img/content/list_type02.png');}
.list_type label input[type='radio'].type2:checked + span {background-image: url('../img/content/list_type02_on.png');}

.list_type.type2 input[type='radio'] + span {
    width: auto;
    padding: 8px 15px;
    background-image: none !important;
}
#listType1, #listType2 {margin-top: 15px;}

.show_list {border-top: 1px solid #000; display: flex; flex-wrap: wrap;}
.show_list > li {
    float: left;
    padding: 40px 40px 30px;
    width: calc(25% + 10px);
    border: 1px solid #000;
    border-top: none !important;
    border-left: none;
}
.show_list > li:nth-child(4n + 1) {padding: 40px 40px 30px 20px;  width: calc(25% - 10px); border-left: none;}
.show_list > li:nth-child(4n) {padding: 40px 20px 30px 40px;  width: calc(25% - 10px); border-right: none;}
.show_list > li a {display: flex; flex-direction: column; justify-content: flex-end; align-items: start; height: 100%;}
.show_list > li img {width: 100%; height: auto; display: block; margin-bottom: auto;}
.show_list a {display: block;}
.show_list [class^='tb_'] {margin-top: 10px;}
.show_list div {display: flex; align-items: center; gap: 5px; font-size: 18px;}
.show_list div span {margin-top: 10px;}
.show_list ul {border-top: 1px solid #000; font-size: 20px; width: 100%; margin-top: 10px;}
.show_list ul li {border-bottom: 1px solid #000; padding: 8px; min-height: 47px; font-size: 18px;}
.show_list ul .tit {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.show_list ul .flex {display: flex; justify-content: space-between; flex-wrap: wrap;}
.show_list ul .flex span {margin-top: 0;}

.en .show_list ul .flex {flex-wrap: nowrap;}
.en .show_list ul .flex span:first-child {width: 55%;}
.en .show_list ul .flex span:last-child {max-width: 126px; width: 45%; text-align: right;}

.show_list ul .cont {font-size: 15px; padding: 13px 0;}
.show_list ul .cont span {display: inline-block;}
.show_list ul .cont span:first-child {margin-right: 20px;}
.show_list ul .cont span:last-child {width: 80px;}
.show_list .month {
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    font-size: 22px;
    text-align: center;
    margin:-10px 0 18px;
    line-height: 40px;
    width: 100%;
    justify-content: center;
}
.tag {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    word-break: keep-all;
    background-color: #ffea00;
}

.show_list .tag {
    position: absolute;
    z-index: 1;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.show_list .tag.ss24 {font-size: 9px; line-height: 9px;}
.show_list .tag.ss24 strong {
    font-size: 28px;
    display: block;
    font-weight: normal;
    line-height: 22px;
    margin-bottom: 4px;
}
.tbl_list .tag {
    display: inline-block;
    padding: 2px 6px;
    margin-right: 8px;
    font-size: 14px;
    min-width: 80px;
}

[class^='tb_'] {
    border: 1px solid #000;
    font-size: 14px;
    font-weight: bold;
    padding: 2px 8px;
    min-width: 50px;
    display: inline-block;
    text-align: center;
}
.tb_yellow {background-color: #ffe500;}
.tb_brown {background-color: #ecc884;}
.tb_gray {background-color: #d9d9d9;}
.tb_red {background-color: #ff746f;}
.tb_purple {background-color: #cd6dff;}
.tb_orange {background-color: #ffab50;}
.tb_blue {background-color: #6fb6fc;}
.tb_lblue {background-color: #5fceea;}
.tb_peach {background-color: #ff9f7d;}
.tb_lgreen {background-color: #66ff8e;}
.tb_pink {background-color: #ff8de8;}
.tb_green {background-color: #7df13a;}

.show_list .today::before {
    content: 'Today';
    border: 1px solid #000;
    background-color: #ffea00;
    display: inline-block;
    padding: 2px 5px;
    max-width: 65px;
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    position: absolute;
    z-index: 1;
    top: 0;
}

.loading {
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid #000;
    padding: 30px 0;
    font-size: 28px;
}

@media screen and (max-width: 1440px) {
    .show_list > li {padding: 25px 20px; width: calc(25% + 5px);}
    .show_list > li:nth-child(4n + 1) {padding: 25px 20px 25px 10px; width: calc(25% - 5px); border-left: none;}
    .show_list > li:nth-child(4n) {padding: 25px 10px 25px 20px; width: calc(25% - 5px); border-right: none;}
}
@media screen and (max-width: 1024px) {
    .show_list > li {width: calc(100% / 3);}
    .show_list > li:nth-child(4n + 1),
    .show_list > li:nth-child(4n) {
        padding: 25px 20px;
        width: calc(100% / 3);
        border: 1px solid #000;
        border-left: none;
    }
    .show_list > li:nth-child(3n + 1) {padding: 25px 20px; width: calc(100% / 3); border-left: none;}
    .show_list > li:nth-child(3n) {padding: 25px 20px; width: calc(100% / 3); border-right: none;}
}
@media screen and (max-width: 768px) {
    .list_type input[type='radio'] + span {
        text-indent: -9999px;
        overflow: hidden;
        width: 40px;
        min-width: auto;
        height: 40px;
        padding: 0;
        background-position: center;
        background-size: 14px auto;
    }
    .list_type input[type='radio']:checked + span {box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);}

    .list_type.type2 input[type='radio'] + span {text-indent: 0;}
    .top_menu {position: relative;}
    .top_menu div:last-child span {
        font-size: 14px;
        font-weight: 600;
        position: absolute;
        left: 0;
        top: -30px;
    }
    .top_menu.type2 {display: block;}
    .top_menu.type2 .selType{
        margin-top: 10px;
    }
    .top_menu select {width: calc(100% - 75px);min-width: auto;}

    .show_list ul {margin-top: 15px; font-size: 17px;}
    .show_list > li {width: calc(100% / 2);}
    .show_list > li:nth-child(3n + 1),
    .show_list > li:nth-child(3n) {
        width: calc(100% / 2);
        border: 1px solid #000;
        border-left: none;
    }
    .show_list > li:nth-child(2n + 1) {width: calc(100% / 2); border-left: none;}
    .show_list > li:nth-child(2n) {width: calc(100% / 2); border-right: none;}

    .show_list .tag {width: 50px; height: 50px; font-size: 13px; line-height: 18px;}
    .show_list .tag.ss24 {font-size: 8px; line-height: 8px;}
    .show_list .tag.ss24 strong {font-size: 24px; line-height: 20px; margin-bottom: 2px;}

    [class^='tb_'] {font-size: 13px;}
}
@media screen and (max-width: 425px) {
    .show_list > li {width: 100% !important; border-left: none; border-right: none !important;}
    .list_type label {width: 50%;}
    .list_type.type2 input[type='radio'] + span {padding: 8px 5px;}
    .search.dateType > div {gap: 3px;}
    .list_type label + label input[type='radio'] + span {
        border-left: #000 solid 1px;
    }
}

.show_sub {display: flex;}
.show_sub .left {width: calc(100% - 440px); padding: 35px 20px 50px 0; border-top: 2px solid #000; border-bottom: 2px solid #000;}
.show_sub .right {
    width: 400px;
    margin-left: 40px;
    border-bottom: 2px solid #000;
    position: relative;
    padding-bottom: 30px;
}
.show_sub .right::before {
    content: '';
    width: 2px;
    height: 100%;
    display: block;
    background-color: #000;
    position: absolute;
    left: -21px;
    top: 0;
}
.show_sub_top span {font-size: 24px; display: block; margin-bottom: 5px;}
.show_sub_top span img {height: 28px; vertical-align: sub; margin-left: 5px;}
.show_sub_top .tit {font-size: 50px; line-height: 140%;}
.show_sub_top [class^='btnArea'] {margin-top: 20px; border-top: none !important;}
.show_sub_top [class^='btnArea'] div:first-child {display: flex; align-items: center;}
.show_sub_top [class^='btnArea'] div a {width: auto !important;}
.show_sub_top [class^='btnArea'] .buttons {display: flex; flex-wrap: wrap; gap: 10px; align-items: center;}
.show_sub_top [class^='btnArea'] .buttons a {width: 68px !important; height: 68px;}
.show_sub_top [class^='btnArea'] .buttons .btn_like {
    text-indent: -9999px;
    overflow: hidden;
    padding: 0;
    background-position: center;
    min-width: auto;
    border-radius: 50%;
    background-size: 25px auto;
}
.show_sub_top [class^='btnArea'] .buttons .en_show {
    border-radius: 50%;
    background-color: #000;
    line-height: 68px;
    text-align: center;
    color: #fff;
    font-size: 20px;
}
.show_sub_top .btn_down.black {margin-right: 10px;}
.show_sub_top .sns_list {display: flex; gap: 10px;}
.show_sub_top .sns_list::after {display: none;}
.show_sub_top .sns_list a {text-indent: -9999px; overflow: hidden; display: block; width: 68px; height: 68px; border-radius: 50%;}
.show_sub_top .sns_list .instagram {background: url('../img/content/instagram.png') center / 68px no-repeat;}
.show_sub_top .sns_list .facebook {background: url('../img/content/facebook.png') center / 69px no-repeat;}
.show_sub_top .sns_list .youtube {background: url('../img/content/youtube.png') center / 68px no-repeat;}
.show_sub_top .category-item + .category-item::before {content: "• ";}

/* 개막 알림 서비스 */
.btn_alarm {border: none; display: flex; align-items: center;}
.btn_alarm img {
    vertical-align: middle;
    margin-right: 10px;
    width: 45px;
    height: 45px;
}
.btn_alarm span {
    font-size: 22px;
    display: inline-block;
    margin-bottom: 0;
}
.alarmWrap {
    text-align: left;
    position: absolute;
    left: -20px;
    width: 60vw;
    max-width: 420px;
    min-width: 260px;
    top: 80px;
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 1px 1px 2px 0;
    padding: 25px 20px;
    border: 2px solid #000;
    border-radius: 10px;
    z-index: 1;
    display: none;
}
.alarmWrap:after {
    content: '';
    position: absolute;
    background-image: url('../img/content/alarm_arrow.png');
    background-repeat: no-repeat;
    top: -34px;
    left: 20px;
    width: 34px;
    height: 34px;
}
.alarmWrap p {font-size: 15px;}
.alarmWrap .tit {font-size: 17px; padding-bottom: 8px;}
.btn_alarm:hover .alarmWrap {
    display: block !important;
}

.show_sub .tbl_info table + table {margin-top: 35px;}
.show_sub .tbl_info th {font-size: 24px; height: 65px; padding: 10px;}
.show_sub .tbl_info td {vertical-align: middle; font-size: 24px; padding: 20px 10px;}
.show_sub .tbl_info .b_btn {position: relative; padding: 20px 20px 52px; height: 157px;}
.show_sub .tbl_info .b_btn.p00 {vertical-align: top; padding: 0 0 52px !important;}
.show_sub .tbl_info .b_btn.p00 > div {max-height: 105px; overflow: hidden;}
.show_sub .tbl_info .b_btn.p00.open > div {max-height: none;}
.show_sub .tbl_info .b_btn.p00.open .btn_plus span {background-image: url('../img/content/btn_plus_open.png');}
.show_sub .tbl_info .b_btn.p00 .blt_blue_line2 li span:first-child {width: 43%; padding: 2px 0 2px 10px;}
.show_sub .tbl_info .b_btn.p00 .blt_blue_line2 li span:nth-child(2) {width: 57%; padding: 2px 0 2px 22px;}
.show_sub .tbl_info .b_btn .btn_plus {width: 100%; position: absolute; bottom: 0; left: 0;}
.show_sub .tbl_info .big {font-size: 30px;}
.show_sub .tbl_info .small {font-size: 18px;}
.show_sub .tbl_info .guide {padding-left: 50px; background: url('../img/content/icon_guide.png') left center / 35px no-repeat; font-weight: bold; display: inline-block;}

.show_sub .tbl_info [class^='blt_blue'] {padding: 18px 0; font-size: 20px;}
.show_sub .tbl_info [class^='blt_blue'] > li {padding: 2px 0 2px 20px;}

.show_sub .left > .tbl_info span.th {display: none;}

.show_sub .tab {width: 100%; max-width: none; margin: 80px 0 0; display: flex;}
.show_sub .tab li {width: 50%;}

.tab_move {margin: 20px 0 5px; font-size: 20px; line-height: 28px;}
.tab_move li {float: left; margin: 0 5px 5px 0;}
.tab_move li a {display: block; border: 1px solid #000; padding: 0 6px;}
.tab_move li.on a,
.tab_move li a:hover {background-color: #fae300;}

@media screen and (max-width: 1440px) {
    .show_sub .left {width: calc(100% - 340px);}
    .show_sub .right {width: 300px;}
}
@media screen and (max-width: 1260px) {
    .show_sub .tab {flex-wrap: wrap;}
    .show_sub .tab li {width: calc(50% - 5px);}
    .show_sub .tab li:nth-child(2n) {margin-right: 0;}
    .show_sub .tab li:nth-child(n + 3) {margin-top: 10px;}
}
@media screen and (max-width: 1024px) {
    .show_sub {flex-direction: column-reverse;}
    .show_sub .left {width: 100%; padding: 0 0 50px; border-top: none;}
    .show_sub .left > [class^='tbl_'] {margin-top: 0;}
    .show_sub .right {margin-left: 0; width: 100%; border-bottom: none; padding-bottom: 0; z-index: 1;}
    .show_sub .right::before {display: none;}

    .show_sub_top {padding: 30px 0 !important; border-top: 2px solid #000;}

    .show_sub .tab,
    .tab_move {position: relative; z-index: 1;}
}
@media screen and (max-width: 768px) {
    .show_sub .left {padding: 0 0 40px;}

    .show_sub_top {padding: 20px 0 !important;}
    .show_sub_top span {font-size: 18px; text-align: center;}
    .show_sub_top span img {height: 20px;}
    .show_sub_top .tit {font-size: 30px; padding-right: 0; text-align: center;}
    .show_sub_top [class^='btnArea'] .buttons a {width: 45px !important; height: 45px;}
    .show_sub_top [class^='btnArea'] .buttons .btn_like {background-size: 20px;}
    .show_sub_top [class^='btnArea'] .buttons .en_show {line-height: 45px; font-size: 16px;}

    .show_sub_top .btn_down.black {margin-right: 3px;}
    .show_sub_top .sns_list a {width: 45px; height: 45px; background-size: 45px auto !important;}

    /* 개막 알림 서비스 */
    .btn_alarm span {text-indent: -9999px; overflow: hidden;}
    .btn_alarm img {margin-right: 2px;}
    .alarmWrap {
        display: none !important;
        left: -10px;
        top: 65px;
        padding: 15px 10px;
    }
    .alarmWrap:after {
        top: -20px;
        width: 20px;
        height: 20px;
        left: 15px;
        background-size: cover;
    }
    .alarmWrap p {font-size: 13px;}
    .alarmWrap .tit {font-size: 15px; text-align: left;}

    .show_sub .tbl_info th {font-size: 16px; height: 52px;}
    .show_sub .tbl_info td {font-size: 16px}
    .show_sub .tbl_info .big {font-size: 16px;}
    .show_sub .tbl_info .small {font-size: 16px;}
    .show_sub .tbl_info .guide {padding-left: 35px; background-size: 24px;}
    .show_sub .tbl_info [class^='blt_blue'] {font-size: 17px;}

    .show_sub .tbl_info .b_btn.p00 .blt_blue_line2 {width: calc(100% - 130px) !important;}

    .show_sub .left > .tbl_info {overflow: unset;}
    .show_sub .left > .tbl_info table {width: 100%;}
    .show_sub .left > .tbl_info table + table {margin-top: 0;}
    .show_sub .left > .tbl_info table:last-child {border-bottom: 2px solid #000;}
    .show_sub .left > .tbl_info colgroup,
    .show_sub .left > .tbl_info th {display: none;}
    .show_sub .left > .tbl_info .th {
        display: flex !important;
        flex: none;
        font-weight: bold;
        margin: -5px 10px -5px 0;
        padding: 5px 0;
        width: 70px;
        border-right: 1px solid #54c8e8;
        word-break: keep-all;
    }
    .show_sub .left > .tbl_info .th + *:not(.big) {width: calc(100% - 70px);}
    .show_sub .left > .tbl_info .th.w100 {padding: 10px; margin: 0; border-right: none;}
    .show_sub .left > .tbl_info .th.w100 + * {width: 100%; font-size: 15px;}
    .show_sub .left > .tbl_info td {
        display: flex;
        height: auto;
        border-left: none;
        border-bottom: none;
        border-top: 2px solid #000;
        padding: 10px;
        text-align: left;
        position:  relative;
    }
    .show_sub .left > .tbl_info td:not(.brok) br {display: none;}
    .show_sub .left > .tbl_info .th.w100 + td {max-height: 150px; overflow: auto; display: block;}
    .show_sub .left > .tbl_info .th.w100 + td::-webkit-scrollbar {width: 6px;}
    .show_sub .left > .tbl_info .th.w100 + td::-webkit-scrollbar-thumb {background: #000; border-radius: 3px;}
    .show_sub .left > .tbl_info .th.w100 + td::-webkit-scrollbar-track {margin: 10px 0;}

    .show_sub .left > .tbl_info [class^='blt_blue'] {padding: 0;}
    .show_sub .tbl_info .p00,
    .show_sub .tbl_info .b_btn.p00 {padding: 10px !important;}
    .show_sub .tbl_info .b_btn .btn_plus {
        margin: 0;
        width: 130px !important;
        left: auto;
        right: 0;
        padding: 4px 10px;
        bottom: auto;
        top: 7px;
        height: 32px;
    }

    .show_sub .tab {margin: 20px 0 0;}
    .show_sub .tab li:nth-child(2n + 1) {margin-right: 10px !important;}

    .tab_move {font-size: 17px; overflow: auto; white-space: nowrap; scrollbar-width: none;}
    .tab_move::-webkit-scrollbar {display: none;}
    .tab_move li {float: none; display: inline-block; margin-right: 0;}
}
@media screen and (max-width: 500px) {
    .show_sub .tbl_info .b_btn.p00 .blt_blue_line2 {width: calc(100% - 32px) !important;}
    .show_sub .tbl_info .b_btn .btn_plus {width: 32px !important; padding: 4px;}
    .show_sub .tbl_info .b_btn .btn_plus span {
        text-indent: -9999px;
        overflow: hidden;
        display: block;
        background-position: center;
        background-size: 10px auto;
    }
}
@media screen and (max-width: 425px) {
    .show_sub_top .tit {font-size: 25px;}
}

.reviews {font-family: 'classic'; margin: 45px auto 50px; text-align: center; max-width: 1032px; padding: 0 60px;}
.reviews strong {
    text-indent: -9999px;
    overflow: hidden;
    background: url('../img/content/review.png') center / 96px auto no-repeat;
    display: inline-block;
    width: 96px;
}
.reviews p {font-size: 48px; line-height: 140%;}
.reviews span {font-size: 30px;}

.rating > * {font-size: 40px; letter-spacing: -5px; color: #d0d0d0;}
.rating .star {color: #ffba00;}

.reviews .slick-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('../img/content/reviews_prev.png') center / 41px auto no-repeat;
    width: 41px;
    height: 72px;
}
.reviews .slick-prev {left: 0;}
.reviews .slick-next {background-image: url('../img/content/reviews_next.png');}

.cont_move > li {position: relative;}
.cont_move > li + li {margin-top: 90px;}
.cont_move p.tit {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 34px;
    padding: 0 10px;
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
}
.cont_move .tit.open a,
.cont_move .tit.close a {
    position: absolute;
    right: 0;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    width: 43px;
    height: 43px;
    background: url('../img/content/sub_toggle_open.png') center / 23px auto no-repeat;
}
.cont_move .tit.close a {background-image: url('../img/content/sub_toggle_close.png');}
.cont_move .tit.open + div, .cont_move .tit.open + div + a {display: none; text-indent: -9999px; overflow: hidden; width: 0; height: 0;}
.cont_move .tit.close + div, .cont_move .tit.close + div + a {display: block; text-indent: 0; overflow: unset; width: auto; height: auto;}

.cont_move > li > div {padding: 50px 0 0; margin: 0 auto; max-width: 1100px;}
.cont_move > li > .video_slide {max-width: none;}
.cont_move > li > .editer {margin: 0 auto 50px;}
/*.cont_move > li > .editer * {font-family:'modern', sans-serif !important; word-break: break-all;}*/
.cont_move > li > .editer * {word-break: break-all;}
.cont_move > li > .editer img {height: auto !important; margin: 0 auto; display: block;}
.cont_move > li > div + .hide {display: none !important;}
.cont_move > li > ul {margin: 50px 0 0;}
.cont_move > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    border: 2px solid #000;
    font-size: 34px;
    text-align: center;
    padding: 25px;
    box-shadow: 0 -50px 100px rgba(255, 255, 255, 1);
    position: relative;
    z-index: 1;
    word-break: keep-all;
}
.cont_move > li > a span {
    padding-right: 40px;
    background: url('../img/content/show_sub_toggle_add.png') right center / 23px auto no-repeat;
}
.cont_move > li > a.close span {background-image: url('../img/content/show_sub_toggle_close.png');}

.cont_move [class^='tbl_'] {max-width: none; margin: 0 0 50px;}
.cont_move [class^='tbl_'] td {font-size: 20px; text-align: left;}
.cont_move [class^='tbl_'].rowType th {vertical-align: top; padding: 20px 10px;}

#artMember.cont_move > li > div,
#staff.cont_move > li > div,
.leader_info + .cont_move > li > div {max-width: none;}

.show_sub .show_list {display: block;border-top: none; width: calc(100% + 40px); margin: 50px -20px 0; }
.show_sub .show_list div{display: block;margin: 0;}
.show_sub .show_list li {padding: 0 20px; border-right: 1px solid #000;}
.show_sub .show_list img {height: auto !important;}
.show_sub .show_list ul li {width: 100% !important; padding: 8px 0; border-right: none;}
.show_sub .show_list .slick-arrow {top: -105px;}
.show_sub .show_list .slick-prev {right: 165px;}
.show_sub .show_list .slick-next {right: 20px;}

.show_sub .tit .count,
.mypage h4.tit .count {font-size: 24px; color: #666; position: absolute; right: 50px;}
.show_sub .tit .count strong,
.mypage h4.tit .count strong {font-size: 32px; color: #000; font-weight: 500;}

.cont_move .slick-arrow,
.mypage .slick-arrow {
    position: absolute;
    right: 5px;
    top: 15px;
    background: url('../img/content/show_list_prev.png') center / 28px auto no-repeat;
    width: 38px;
    height: 38px;
}
.cont_move .slick-prev, .mypage .slick-prev {right: 145px;}
.cont_move .slick-next, .mypage .slick-next {background-image: url('../img/content/show_list_next.png');}

.cont_move .tit.open + .art_list {display: none;}
.cont_move .tit.close + .art_list {display: flex;}

.show_sub .artist {margin-bottom: 50px;}
.show_sub .artist ul {margin: 0 -10px; display: flex; flex-wrap: wrap; justify-content: center;}
.show_sub .artist li {
    float: left;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0 10px 40px 10px;
}
.show_sub .artist .name {font-size: 20px; font-weight: 500; margin-top: 8px;}
.show_sub .artist img {width: 170px; height: 170px;}

.show_sub .producer ul {font-size: 24px; font-family: 'classic'; line-height: 130%; margin: 0 auto; width: fit-content;}
.show_sub .producer li {display: flex;}
.show_sub .producer li + li {margin-top: 5px;}
.show_sub .producer span:first-child {min-width: 220px; display: inline-block; font-size: 20px; padding-right: 40px; position: relative;}
.show_sub .producer span:first-child::after {
    content: '|';
    position: absolute;
    right: 20px;
}
.show_sub .producer span:last-child {display: inline-block; flex: 1;}
.show_sub .producer i {text-transform: uppercase; font-family: 'modern'; font-weight: 300;}

.video_scroll {display: flex; flex-wrap: wrap; margin-bottom: 20px;}
.video_scroll > div {width: calc(100% - 260px); height: 0; padding-top: 52%; text-align: center; position: relative;}
.video_scroll > div > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
}
.video_scroll > ul {width: 260px; padding: 0 17px 0 20px; height: 500px; overflow: auto; position: static;}
.video_scroll > ul::-webkit-scrollbar {width: 3px; background-color: #e5e5e5;}
.video_scroll > ul::-webkit-scrollbar-thumb {background: #000;}
.video_scroll > ul li {height: 130px;}
.video_scroll > ul li:not(:last-child) {padding-bottom: 10px; border-bottom: 1px solid #ffea00; margin-bottom: 10px;}
.video_scroll > ul li:hover {cursor: pointer;}
.video_scroll > ul li > * {
    width: 100%;
    height: 120px !important;
    display: block;
    object-fit: contain;
    position: relative;
}
.video_scroll > ul li > * > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
    margin: auto;
}
.video_scroll + .flex {align-items: flex-start; flex-wrap: wrap; width: calc(100% - 260px);}
.video_scroll + .flex > *:first-child {margin-right: 20px;}
.video_scroll + .flex > span {margin-top: 10px;}

@media screen and (max-width: 1440px) {
    .video_scroll > div {width: calc(100% - 240px);}
    .video_scroll > ul {width: 240px; height: 450px;}
    .video_scroll > ul li {height: 120px;}
    .video_scroll > ul li > * {height: 110px !important;}

    .video_scroll + .flex {width: calc(100% - 240px);}
}
@media screen and (max-width: 1260px) {
    .video_scroll > div {width: calc(100% - 220px);}
    .video_scroll > ul {width: 220px; height: 400px;}
    .video_scroll > ul li {height: 110px;}
    .video_scroll > ul li > * {height: 100px !important;}

    .video_scroll + .flex {width: calc(100% - 220px);}
}
@media screen and (max-width: 1024px) {
    .cont_move > li {padding-top: 100px; margin-top: -100px;}
    .cont_move > li + li {padding-top: 100px; margin-top: -70px;}
}
@media screen and (max-width: 768px) {
    .reviews {padding: 0 40px; margin: 35px auto 40px;}
    .reviews strong {background-size: 80px auto;}
    .reviews p {font-size: 28px;}
    .reviews span {font-size: 20px;}

    .rating > * {font-size: 30px;}

    .reviews .slick-arrow {background-size: 25px auto; width: 25px;}

    .cont_move > li > .editer {margin-bottom: 25px;}
    .cont_move p.tit {font-size: 26px; padding: 0; height: 60px; z-index: 1;}
    .cont_move .tit.open a,
    .cont_move .tit.close a {width: 21px; background-size: 21px auto;}
    .cont_move > li > div {padding: 25px 0 0;}
    .cont_move > li > a {font-size: 22px; padding: 20px; height: auto;}
    .cont_move > li > a span {padding-right: 35px; background-size: 20px auto;}
    [id^='artMember'] > li:first-child {padding-top:0}

    .show_sub .tit .count {font-size: 17px; right: 30px;}
    .show_sub .tit .count strong {font-size: 24px;}

    .cont_move [class^='tbl_'] {margin: 0 0 25px;}
    .cont_move [class^='tbl_'] td {font-size: 17px;}

    .show_sub .show_list {margin-top: 25px;}
    .show_sub .cont_move .slick-arrow {top: 111px; z-index: 1;}
    .cont_move .slick-arrow {right: 0; top: 11px; background-size: 20px auto; width: 20px;}
    .cont_move .slick-prev {right: 100px;}

    .show_sub .artist {margin-bottom: 25px;}
    .show_sub .artist li {margin: 0 5px 30px 5px;}
    .show_sub .artist .name {font-size: 18px;}

    .show_sub .producer ul {font-size: 18px; font-weight: bold;}
    .show_sub .producer span:first-child {width: 110px; font-size: 15px; padding-right: 15px;}
    .show_sub .producer span:first-child::after {right: 15px;}
    .show_sub .producer span:last-child {width: calc(100% - 110px);}
    .show_sub .show_list .slick-prev {right: 125px;}
    .show_sub .show_list .slick-arrow {top: -75px;}

    .noH {max-height: none !important; overflow: unset !important;}

    .video_scroll > div {display: none;}
    .video_scroll > ul {width: 100%; height: auto; padding: 0; overflow: unset;}
    .video_scroll > ul li:not(:last-child) {padding-bottom: 0; border-bottom: none; margin-bottom: 0;}
    .video_scroll > ul li {height: 350px;}
    .video_scroll > ul li > * {height: 350px !important; pointer-events: unset;}

    .video_scroll + .flex {width: 100%;}
}
@media screen and (max-width: 650px) {
    .video_scroll > ul li {height: 300px;}
    .video_scroll > ul li > * {height: 300px !important;}
}
@media screen and (max-width: 500px) {
    .video_scroll > ul li {height: 250px;}
    .video_scroll > ul li > * {height: 250px !important;}
}
@media screen and (max-width: 400px) {
    /* 공연 상세, 관련공연 모바일 슬라이드 페이징 관련 css */
    .cont_move > li#tabMove8 {padding-bottom: 60px;}
    .cont_move > li#tabMove8 p.tit {position: static;}
    .cont_move > li#tabMove8 .tit .count {bottom: 0; right: 50%; transform: translateX(50%);}
    .cont_move > li#tabMove8 .show_list .slick-arrow {top: auto; bottom: -60px; transform: translateX(50%);}
    .cont_move > li#tabMove8 .show_list .slick-prev {right: calc(50% + 50px);}
    .cont_move > li#tabMove8 .show_list .slick-next {right: calc(50% - 50px);}
}

.show_sub .right [class^='btnArea'],
.show_sub .right .d-day,
.show_sub .right .viewday,
.show_sub .right .round,
.show_sub .right .bgG {border-top: 2px solid #000; padding: 20px 0; background-color: #fff;}
.show_sub .right > div:last-child {height: calc(100% - 570px);}
.show_sub .right > .d-day + #ticketingDiv {height: calc(100% - 1040px);}
.show_sub .right .zoomImg {position: relative; border-top: 2px solid #000; padding: 20px 0 13px; text-align: center;}
.show_sub .right .zoomImg a {
    border: 1px solid #000;
    background: url('../img/content/zoom_img_pop.png') center / 17px auto #fff no-repeat;
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    position: absolute;
    right: 0;
    bottom: 20px;
}
.show_sub .right .sticky {
    position: sticky;
    top: 20px;
    margin-bottom: 20px;
}
.show_sub .right [class^='btnArea'] {margin: 0;}
.show_sub .right .show_sub_top [class^='btnArea'] {padding: 0; margin-top: 10px;}
.show_sub .right [class^='btnArea'] [class^='btn_'] {width: 100%;}

.show_sub .d-day {font-size: 15px;}
.show_sub .d-day .tit {text-align: center; font-size: 24px; line-height: 130%; border-bottom: 1px solid #000; padding-bottom: 20px;}
.show_sub .d-day ul {margin: 20px 0; font-size: 20px;}
.show_sub .d-day li {display: flex; align-items: center;}
.show_sub .d-day li + li {margin-top: 10px;}
.show_sub .d-day li strong {
    width: 80px;
    height: 80px;
    background-color: #5fceea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    margin-right: 20px;
}
.show_sub .d-day li div {padding: 5px 0;}
.show_sub .d-day li .type {font-size: 16px; color: #00a7d1; display: block;}
.show_sub .d-day li .date {font-size: 18px;}
.show_sub .d-day .add {display: none;}

#ticketBtn div {
    padding: 20px 0;
    background-color: #fff;
    margin: 0;
    position: fixed;
    top: 0;
    z-index: 1;
    width: calc(100% - 40px);
    display: none;
}
#ticketBtn div > * {margin: 0; width: 100%;}

.viewday, .round {padding-top: 18px !important; min-height: 170px;}
.viewday .tit,
.round .tit {font-size: 22px; padding-bottom: 18px; border-bottom: 1px solid #000; display: flex; align-items: center;}
.viewday .tit span,
.round .tit span {font-size: 20px; width: 35px; line-height: 35px; background-color: #ebebeb; display: inline-block; text-align: center; border-radius: 50%; margin-right: 15px;}

.viewday {padding-bottom: 0 !important;}
.viewday .tit + div {margin-top: 20px;}
.viewday .header {font-size: 30px; display: flex; align-items: center; justify-content: space-between;}
.viewday .header > div:last-child {display: flex; align-items: center; gap: 24px;}
.viewday .header a,
.viewday .header button  {text-indent: -9999px; overflow: hidden; display: inline-block; width: 26px; height: 45px;}
.viewday .prev_month {background: url('../img/content/viewday_prev.png') center / 26px auto no-repeat;}
.viewday .next_month {background: url('../img/content/viewday_next.png') center / 26px auto no-repeat;}
.viewday table {width: 100%; border-top: 2px solid #000; margin-top: 20px; font-size: 17px;}
.viewday table tbody tr {border-top: 1px solid #000;}
.viewday table th {height: 45px;}
.viewday table td {text-align: center; font-size: 18px;}
.viewday table td a {line-height: 50px; display: block; background-color: #fff; color: #000;}
.viewday table .default {background-color: #ececec; color: #bab9b9; height: 51px;}
.viewday table .default:hover {cursor: default;}
.viewday table .select {background-color: #ffea00; border: 1px solid #000; line-height: 48px;}
.viewday table td + td {border-left: 1px solid #000;}
.viewday .sunday {color: #ff3535;}
.viewday + .round {border-top-width: 1px !important;}

.round {position: relative;}
.round div {padding-bottom: 15px;}
.round label {width: calc((100% - 10px) / 2); display: inline-block;}
.round label:nth-child(2n + 1) {margin-right: 5px;}
.round label:nth-child(n + 3) {margin-top: 10px;}
.round input[type='radio'] + span {padding: 10px 5px; border: 2px solid #cfcfcf; display: flex; justify-content: center; align-items: center;}
.round input[type='radio'] + span::after {display: none;}
.round input[type='radio']:checked + span {background-color: #ffea00; border-color: #000;}
.round span span {width: 50%; text-align: center; position: relative;}
.round span span:first-child::after {
    content: '';
    width: 1px;
    height: 16px;
    display: block;
    background-color: #000;
    position: absolute;
    right: 0;
    top: 4px;
}
.round ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 1;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #000;
    border-radius: 10px;
    min-height: 83px;
    min-width: 122px;
}
.round ul.on {display: block;}
.round li {
    float: left;
    font-size: 17px;
    padding-right: 17px;
    position: relative;
}
.round li span {color: #c36d15;}
.round li:not(:last-child)::after {
    content: '/';
    font-weight: normal;
    color: #a9a9a9;
    position: absolute;
    right: 5px;
}
.show_sub .right .bgG {background-color: #f0f0f0; font-size: 20px; text-align: center; word-break: keep-all; height: 180px; display: flex; align-items: center; justify-content: center;}

.show_sub .info_list {margin-top: 90px;}
.show_sub .info_list [class^='btnArea'] {margin-top: 10px;}
.show_sub .info_list [class^='btn_'] {min-width: 150px;}

@media screen and (max-width: 1440px) {
    .show_sub .right > div:last-child {height: calc(100% - 428px);}
    .show_sub .right > .d-day + #ticketingDiv {height: calc(100% - 1012px);}
}
@media screen and (max-width: 1024px) {
    .show_sub .right > div:last-child {border-bottom: none; margin-bottom: 0; height: auto !important;}

    .show_sub .right .zoomImg img {max-width: 250px;}

    .show_sub .d-day ul {display: flex; flex-wrap: wrap;}
    .show_sub .d-day li {width: calc(50% - 15px); margin-top: 0 !important;}
    .show_sub .d-day li:nth-child(2n) {margin-left: 30px;}
    .show_sub .d-day li:nth-child(n + 3) {margin-top: 10px !important;}
}
@media screen and (max-width: 768px) {
    .show_sub .right .viewday,
    .show_sub .right .round,
    .show_sub .right .bgG {display: none;}
    .show_sub .right .d-day {padding: 0; position: relative;}
    .show_sub .d-day .tit {font-size: 16px; font-weight: bold; padding: 12px 10px; text-align: left; border-bottom: none;}
    .show_sub .d-day ul {margin: 10px 0 5px; padding: 0 10px;}
    .show_sub .d-day li {width: 100%;}
    .show_sub .d-day li:nth-child(2n) {margin-left: 0;}
    .show_sub .d-day li:nth-child(n + 2) {margin-top: 0 !important;}
    .show_sub .d-day li .type {font-size: 15px;}
    .show_sub .d-day li .date {font-size: 15px;}
    .show_sub .d-day p {padding: 0 10px; font-size: 14px;}
    .show_sub .d-day > p:nth-last-of-type(1) {margin-bottom: 10px;}
    .show_sub .d-day ul,
    .show_sub .d-day p:not(.tit) {display: none;}
    .show_sub .d-day .add {
        display: block;
        text-indent: -9999px;
        overflow: hidden;
        width: 32px;
        height: 32px;
        border: 1px solid #000;
        background: url('../img/content/btn_plus.png') center / 10px auto no-repeat;
        position: absolute;
        top: 6px;
        right: 0;
    }
    .show_sub .d-day.on ul,
    .show_sub .d-day.on p:not(.tit) {display: block;}
    .show_sub .d-day.on .tit {border-bottom: 2px solid #000;}
    .show_sub .d-day.on .add {background-image: url('../img/content/btn_plus_open.png');}

    .show_sub .info_list {margin-top: 40px;}

    .show_sub .right .show_sub_top [class^='btnArea'] {margin-top: 0;}
    .show_sub .right .show_sub_top [class^='btnArea'] div {display: flex; align-items: center;}
    .show_sub .right .btn_like {
        width: 45px !important;
        text-indent: -9999px;
        overflow: hidden;
        min-width: auto;
        background-position: center;
        padding: 0;
    }
    .show_sub .right .btn_down.black {margin-right: 5px;}

    .show_sub .right .zoomImg a {width: 45px; height: 45px; background-size: 15px;}

    .show_sub .btnAreaC.sticky {
        position: fixed;
        top: 0;
        left: 20px;
        width: calc(100% - 40px);
        border-top: none;
    }
}
@media screen and (max-width: 320px) {
    .show_sub .right .zoomImg img {max-width: 100%;}
}

/* 신청 완료 */
.endBox {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    font-size: 17px;
    display: flex;
    max-width: 1000px;
    min-height: 370px;
    margin: 0 auto;
}
.endBox h4 {
    font-size: 34px !important;
    line-height: 140%;
    background: url('../img/content/endBox_ticket.png') center 80px / 130px auto #ffe800 no-repeat;
    padding: 200px 10px 50px;
    margin-right: 111px;
    margin-bottom: 0 !important;
    text-align: center;
    width: 40%;
    position: relative;
    word-break: keep-all;
}
.endBox h4::before {display: none;}
.endBox h4::after {
    content: '';
    background: url('../img/content/logo_rotate.png') center / 60px auto #ffe800 no-repeat;
    display: block;
    height: 100%;
    width: 110px;
    border-left: 1px dashed #000;
    position: absolute;
    right: -111px;
    top: 0;
}
.endBox div {display: flex; flex-direction: column; justify-content: center; padding: 30px 0 30px 30px; width: 60%;}
.endBox li {border-bottom: 1px solid #000; font-size: 20px; padding: 10px 0;}
.endBox p {font-size: 17px; margin-top: 15px;}

@media screen and (max-width: 768px) {
    .endBox {flex-direction: column;}
    .endBox h4 {
        font-size: 30px !important;
        background-position: center 30px;
        background-size: 80px auto;
        width: 100%;
        padding: 100px 20px 25px;
        border-bottom: 1px dashed #000;
        margin-right: 0;
    }
    .endBox h4::after {display: none;}
    .endBox div {padding: 20px 0 30px; width: 100%;}
    .endBox li {font-size: 18px; padding: 6px 0;}
    .endBox p {font-size: 16px; margin-top: 10px;}
}

.show_popup {border-top: 2px solid #000; border-bottom: 2px solid #000; display: flex;}
.show_popup div {padding: 20px; width: 280px; border-right: 1px solid #000;}
.show_popup div img {object-fit: contain; display: inline-block;}
.show_popup ul {font-size: 18px; width: calc(100% - 280px);}
.show_popup .tit {font-size: 24px !important; font-family: 'classic'; font-weight: 600; padding: 20px;}
.show_popup li {padding: 10px 20px; display: flex;}
.show_popup li:not(:last-child) {border-bottom: 1px solid #000;}
.show_popup li span:first-child {position: relative; padding-left: 20px; width: 120px;}
.show_popup li span:first-child::after {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background-color: #5fceea;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}
.show_popup li span:not([class^='tb_']):last-child {width: calc(100% - 120px);}

@media screen and (max-width: 768px) {
    .show_popup div {padding: 15px; width: 200px;}
    .show_popup ul {font-size: 16px; width: calc(100% - 200px);}
    .show_popup .tit {font-size: 20px !important; padding: 15px;}
    .show_popup li {padding: 8px 15px;}
    .show_popup li span:first-child {width: 90px;}
    .show_popup li span:not([class^='tb_']):last-child {width: calc(100% - 90px);}
}
@media screen and (max-width: 550px) {
    .show_popup {flex-direction: column;}
    .show_popup div {padding: 15px 0; width: 100%; border-right: none; border-bottom: 1px solid #000; text-align: center;}
    .show_popup div img {max-width: 250px; width: 100%;}
    .show_popup ul {width: 100%;}
    .show_popup .tit {padding: 15px 0;}
    .show_popup li {padding: 8px 0;}
}

.select_list {margin-top: 15px !important; font-size: 20px;}
.select_list div {border: 1px solid #000; padding: 10px;}
.select_list div + div {margin-top: 12px;}
.select_list label {
    background: url('../img/content/icon_check.png') 15px center / 14px auto no-repeat;
    padding-left: 35px;
    width: 135px;
    display: inline-block;
    border-right: 1px solid #000;
}
.select_list select {border: none; width: calc(100% - 141px); height: 35px; line-height: 33px;}

@media screen and (max-width: 768px) {
    .select_list {margin-top: 10px !important; font-size: 16px;}
    .select_list label {width: 120px;}
    .select_list select {width: calc(100% - 125px); height: 30px; line-height: 28px;}
}
@media screen and (max-width: 425px) {
    .select_list div {display: flex; flex-direction: column; align-items: center;}
    .select_list label {border-right: none; margin-bottom: 5px;}
    .select_list select {width: 100%; border-top: 1px solid #000; height: 35px; line-height: 33px;}
}
/* --공연 > 공연일정 */
/* 공연 > 공연일정 > 브릿지 */
.bridge {display: flex;}
.bridge > div:first-child {width: 60%;}
.bridge > div:first-child img {width: 100%;}
.bridge > div:last-child {width: 40%;}
.bridge_menu {
    margin: 0 20px 0 60px;
    border-top: #000 solid 1px;
    position: sticky;
    top: 20px;
}
.bridge_menu > li {
    position: relative;
    border-bottom: #000 solid 1px;
    padding: 20px 0;
}
.bridge_menu > li::before,
.bridge_menu > li::after{
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    background-color: #000;
    position: absolute;
    top: 20px;
}
.bridge_menu > li::before {left: -20px;}
.bridge_menu > li::after {right: -20px;}
.bridge_menu > li > div {padding: 10px 0 0;}
.bridge_menu > li > div p {font-size: 30px; line-height: 120%}
.bridge_menu > li > div .sub {font-size: 22px;}
.bridge_menu > li > div > span {font-size: 22px; display: inline-block;}
.bridge_menu > li > div > span:not(:last-of-type) {margin-right: 40px; position: relative;}
.bridge_menu > li > div > span:not(:last-of-type)::after{
    content: "";
    display: block;
    width: 2px;
    height: 18px;
    background-color: #cbcbcb;
    position: absolute;
    top: 10px;
    right: -26px;
}
.bridge_menu > li > div > span:last-of-type {margin-right: 30px;}

.bridge .youtube {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative;
    margin-bottom: 40px;
}
.bridge .youtube > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .bridge {flex-direction: column-reverse;}
    .bridge > div {width: 100% !important;}
    .bridge_menu {margin: 0 20px 40px;}
    .bridge_menu > li > div p {font-size: 24px;}
    .bridge_menu > li > div > span {font-size: 16px;}
    .bridge_menu > li > div > span:not(:last-of-type) {margin-right: 20px;}
    .bridge_menu > li > div > span:not(:last-of-type)::after {height: 10px; right: -16px;}
}
@media screen and (max-width: 375px) {
    .bridge_menu > li > div > span {font-size: 14px; display: block;}
    .bridge_menu > li > div > span:not(:last-of-type) {margin-right: 0;}
    .bridge_menu > li > div > span:not(:last-of-type)::after {display: none;}
}

/* --공연 > 공연일정 > 브릿지 */
/* 세종충무공이야기 */
.titLine {
    border-top: #000 solid 2px;
    border-bottom: #000 solid 1px;
    padding: 9px 0 5px;
}
.tourBox {
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    display: flex;
    padding: 21px 0;
}
.tourBox > li{
    width: calc(100% / 3);
    font-size: 20px;
    background-position: center 11px;
    background-repeat: no-repeat;
    background-size: auto 53.5px;
    text-align: center;
    padding: 85px 30px 0;
}
.tourBox > li + li{
    border-left: #000 solid 1px;
}
.tourBox > li:nth-child(1){background-image: url('../img/content/icon_fee.png');}
.tourBox > li:nth-child(2){background-image: url('../img/content/icon_time.png');}
.tourBox.type1 > li:nth-child(3){
    padding-top: 0;
    align-content: center;
    text-align: left;
    word-break: keep-all;
}
.tourBox > li > p {
    color: #00a6d0;
    font-size: 18px;
    margin-bottom: 10px;
}
.voiceI {
    display: flex;
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    padding: 30px 0;
}
.voiceI dt{
    border-right: #000 dashed 1px;
    min-width: 272px;
    height: 155px;
    text-align: center;
    background: url('../img/content/voice_qr.png') center / 136px auto no-repeat;
    text-indent: -9999px;
    overflow: hidden;
}
.voiceI dd{
    padding: 25px 80px;
    font-size: 20px;
    line-height: 34px;
}
.voiceInfo {
    display: flex;
    flex-wrap: wrap;
}
.voiceInfo > li{
    width: calc((100% / 3) - 34px);
    text-align: center;
    margin-top: 40px;
}
.voiceInfo > li + li{margin-left: 51px;}
.voiceInfo > li:nth-child(4){margin-left: 0px;}
.voiceInfo > li > span{
    display: block;
    margin: 0 auto;
    width: 35px;
    height: 35px;
    background-color: #5fceea;
    border-radius: 50%;
    font-size: 20px;
    line-height: 35px;
}
.voiceInfo > li > div{
    align-content: flex-end;
    margin: 20px 0;
}
.voiceInfo > li > p{
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    font-size: 20px;
    padding: 15px 0;
    line-height: 32px;
}
@media screen and (max-width: 1200px) {
    .voiceInfo > li{width: calc((100% / 3) - 20px);}
    .voiceInfo > li + li {margin-left: 30px;}
}
@media screen and (max-width: 768px) {
    .tourBox {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
    }
    .tourBox > li {width: 100%;padding: 100px 15px 20px;background-position: center 30px;}
    .tourBox > li + li{border-top: #000 solid 1px;border-left: none;}
    .tourBox.type1 > li:nth-child(3) {padding: 20px 0}
    .voiceI {flex-direction: row;flex-wrap: wrap;padding-bottom: 0;}
    .voiceI dt{
        width: 100%;
        border-right: none;
        border-bottom: #000 dashed 1px;
        background-position: center 0;
        height: 185px;
    }
    .voiceI dd {padding: 20px 0;}

    .voiceInfo > li{width: 100%;margin-top: 20px;}
    .voiceInfo > li + li {margin-left: 0px;}
    .voiceInfo > li > p {height: auto;}
}
/* 세종충무공이야기 > 세종충무공 소개 */
.movie video {width: 100%;}
.sejongstory {
    display: flex;
    margin-top: 50px;
}
.sejongstory > *{
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    position: relative;
    width: calc((100% / 3) - 26.6666px);
}
.sejongstory > * + *{margin-left: 40px;}
.sejongstory > * + *::after{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #000;
    position: absolute;
    left: -20px;
    top: 0;
}
.sejongstory > * h4{
    text-align: center;
    border-bottom: #000 solid 1px;
    padding: 13px 0 11px;
    margin-bottom: 0 !important;
}
.sejongstory > *:nth-child(1) > div{
    display: flex;
    align-items: center;
    padding: 25px 0px 30px 20px;
}
.sejongstory > *:nth-child(1) > div > div:nth-child(1){
    width: 230px;
}
.sejongstory > *:nth-child(1) > div > div:nth-child(2){
    width: calc(100% - 230px);
}
.sejongstory > *:nth-child(1) > div img{
    border: #000 solid 1px;
    display: block;
    width: 200px;
}
.sejongstory > *:nth-child(1) > div p{
    font-size: 30px;
    word-break: keep-all;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 40px;
    max-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.sejongstory > *:nth-child(1) > div span{
    font-size: 20px;
    display: inline-block;
    margin: 10px 0 30px;
}
.sejongstory > *:nth-child(1) .btn_arr3{
    max-width: 180px;
    padding: 0 10px;
    display: block;
}
.sejongstory > * ul li + li a{
    border-top: #000 solid 1px;
}
.sejongstory > * ul li a{
    font-size: 20px;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    height: 71px;
    line-height: 70px;
}
.sejongstory > * ul li a:hover{
    text-decoration: underline;
    text-underline-position: under;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.sejongstory > * ul + a{
    position: absolute;
    right: 0;
    top: 15px;
    display: block;
    text-indent: -9999px;
    overflow: hidden;
    width: 36px;
    height: 40px;
    background: url('../img/main/btn_add.png') center / 30px no-repeat;
}
.sejongstory > *:nth-child(3) p {
    display: block;
    margin: 20px auto;
    background: url('../img/content/img_sejongChung.png') center no-repeat;
    border: #000 solid 1px;
    height: 385px;
    text-align: center;
    font-size: 30px;
    font-family: 'classic';
    align-content: center;
    text-decoration: underline;
    text-underline-position: under;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    max-width: 548px;
    padding-top: 30px;
    text-indent: -9999px;
    overflow: hidden;
}
.sejongstory > *:nth-child(3) a {
    height: 385px;
    width: 50%;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-family: "classic";
    font-size: 30px;
    padding-top: 60px;
}
.sejongstory > *:nth-child(3) a:hover {background-color: rgba(0, 0, 0, 0.2)}
.sejongstory > *:nth-child(3) a + a {left: 50%;}
.storyMenu {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 60px;
}
.storyMenu::after {display: none;}
.storyMenu > li{
    border-top: #000 solid 1px;
    width: 100%;
    padding: 170px 0 0 0;
    background-repeat: no-repeat;
    background-position: center 40px;
    background-size: auto 88px;
}
.storyMenu > li:nth-child(1){background-image: url('../img/content/icon_story_01.png');}
.storyMenu > li:nth-child(2){background-image: url('../img/content/icon_story_02.png');}
.storyMenu > li:nth-child(3){background-image: url('../img/content/icon_story_03.png');}
.storyMenu > li:nth-child(4){background-image: url('../img/content/icon_story_04.png');}
.storyMenu > li:nth-child(5){background-image: url('../img/content/icon_story_05.png');}
.storyMenu > li:nth-child(6){background-image: url('../img/content/icon_story_06.png');}
.storyMenu > li a{
    display: block;
    border: #000 solid 1px;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 22px;
    padding: 8px 20px;
}
.storyMenu > li a:hover{
    background: url('../img/content/btn_arr2.png') calc(100% - 20px) center / 17.5px no-repeat #ffe800;
    color: #000;
    text-align: left;
}

@media screen and (max-width: 1440px) {
    .storyMenu,
    .sejongstory {flex-wrap: wrap;}
    .sejongstory > *{width: 100%;}
    .sejongstory > * + * {margin: 0 0 0 0;border-top: none;}
    .sejongstory > * + *::after {display: none;}
    .sejongstory > *:nth-child(3) a {max-width: 274px; left: calc(50% - 274px);}

    .storyMenu > li {width: calc((100% - 120px) / 3);}
    .storyMenu > li:nth-child(4) {margin-left: 0;}

    .en .storyMenu {flex-wrap: nowrap;}
}
@media screen and (max-width: 1024px) {
    .storyMenu {gap: 40px;}
    .storyMenu > li{width: calc((100% - 80px) / 3);}
}
@media screen and (max-width: 768px) {
    .storyMenu {gap: 30px;}
    .storyMenu > li{
        width: calc((100% - 30px) / 2);
        padding-top: 100px;
        background-size: auto 58px;
        background-position: center 20px;
    }

    .en .storyMenu {flex-wrap: wrap;}

    .sejongstory > *:nth-child(3) p {font-size: 25px; height: 300px; padding-top: 50px;}
    .sejongstory > *:nth-child(3) a {font-size: 25px; height: 300px; padding-top: 40px;}
}
@media screen and (max-width: 600px) {
    .storyMenu {gap: 20px;}
    .storyMenu > li{width: calc((100% - 20px) / 2);}
    .sejongstory > *:nth-child(3) a {left: 0;}
    .sejongstory > *:nth-child(3) a + a {left: 50%;}
    .sejongstory > *:nth-child(1) > div {flex-wrap: wrap;padding: 25px 0;}
    .sejongstory > *:nth-child(1) > div > *{width: 100% !important;}
    .sejongstory > *:nth-child(1) > div img {width: 100%;margin-bottom: 15px;}
    .sejongstory > *:nth-child(1) .btn_arr3 {max-width: 100%;}
}
@media screen and (max-width: 375px) {
    .storyMenu > li{width: 100%;}
}

.map {
    border: #000 solid 1px;
    width: 100%;
    height: 700px;
}

@media screen and (max-width: 1024px) {
    .map {height: 550px;}
}
@media screen and (max-width: 768px) {
    .map {height: 400px;}
}
@media screen and (max-width: 500px) {
    .map {height: 300px;}
}
/*-- 세종충무공이야기 > 세종충무공 소개 */
/* 전시관 소개 > 세종이야기 */
.infoBox  h4{
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    text-align: center;
    padding: 14px 0 11px;
    margin-bottom: 0 !important;
}
.infoBox > div {
    display: flex;
    border-bottom: #000 solid 1px;
    align-items: flex-start;
}
.infoBox > div > *:nth-child(1){
    width: calc(100% - 580px);
}
.infoBox > div > *:nth-child(2){
    width: 580px;
}
.infoBox dl{
    display: flex;
    flex-wrap: wrap;
}
.infoBox dl dd,
.infoBox dl dt{
    border-bottom: #000 solid 1px;
    padding: 12px 0 10px;
    font-size: 18px;
    align-content: center;
}
.infoBox dl dt{
    width: 190px;
}
.infoBox dl dd{
    width: calc(100% - 190px);
}
.infoBox > div > div{
    margin: 20px 0 20px 20px;
    border-left: #000 solid 1px;
    padding: 0 20px;
}
@media screen and (max-width: 1800px) {
    .infoBox > div > *:nth-child(1){width: 65%}
    .infoBox > div > *:nth-child(2){width: 35%;}
    .infoBox dl dt{width: 120px;}
    .infoBox dl dd{width: calc(100% - 120px);}
}
@media screen and (max-width: 768px) {
    .infoBox > div {flex-wrap: wrap;flex-direction: column-reverse;}
    .infoBox > div > div {margin: 20px 0;padding: 0;border: none;}
    .infoBox > div > div img{width: 100%;}
    .infoBox > div > *:nth-child(1),
    .infoBox > div > *:nth-child(2){width: 100%;}
    .infoBox dl dt{width: 120px;}
    .infoBox dl dd{width: calc(100% - 120px);}
}
/*-- 전시관 소개 > 세종이야기 */
/* 전시관 소개 > 공간 소개 */
.spaceAbout {
    display: flex;
}
.spaceAbout > * {
    width: 50%;
}
.spaceAbout h4{
    border-bottom: #fff solid 1px;
    color: #fff;
    font-size: 43px;
    text-align: left;
    padding: 47px 0;
    margin-bottom: 20px !important;
}
.spaceAbout > ul {
    margin-left: 35px;
    display: flex;
    flex-wrap: wrap;
    border-top: #000 solid 1px;
}
.spaceAbout > ul > li{
    width: 50%;
    border-bottom: #000 solid 1px;
    position: relative;
    padding: 0 0 0 165px;
    align-content: center;
    background-position: 52px center;
    background-repeat: no-repeat;
    background-size: 67px auto;
    font-size: 20px;
}
.spaceAboutList > li:nth-child(even)::after,
.spaceAbout > ul > li:nth-child(even)::after{
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    position: absolute;
    top: 20px;
    left: 0px;
    background-color: #000;
}
.spaceAbout > ul > li:nth-child(1){background-image: url('../img/content/icon_about_01.png');}
.spaceAbout > ul > li:nth-child(2){background-image: url('../img/content/icon_about_02.png');}
.spaceAbout > ul > li:nth-child(3){background-image: url('../img/content/icon_about_07.png');}
.spaceAbout > ul > li:nth-child(4){background-image: url('../img/content/icon_about_08.png');}
.spaceAbout > ul > li:nth-child(5){background-image: url('../img/content/icon_about_09.png');}
.spaceAbout > ul > li:nth-child(6){background-image: url('../img/content/icon_about_10.png');}
.spaceAbout > ul > li:nth-child(7){background-image: url('../img/content/icon_about_11.png');}
.spaceAbout > ul > li:nth-child(8){background-image: url('../img/content/icon_about_12.png');}
.spaceAbout > ul > li:nth-child(9){background-image: url('../img/content/icon_about_13.png');}
.spaceAbout > ul > li:nth-child(10){background-image: url('../img/content/icon_about_14.png');}

.spaceAboutList {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
}
.spaceAboutList > li{
    width: calc(50% - 30px);
    border-bottom: #000 solid 1px;
    position: relative;
    padding: 30px 0 28px;
}
.spaceAboutList > li img{display: block;}
.spaceAboutList > li:nth-child(even) {
    margin-left: 60px;
}
.spaceAboutList > li:nth-child(even)::after {
    left: -30px;
    top: 20px;
}
.spaceAboutList > li .tit{
    margin-top: 30px;
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    font-size: 34px;
    font-family: 'classic';
    position: relative;
    padding: 5px 0 3px;
}
.spaceAboutList > li .tit span{
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #58c3e2;
    font-size: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
}
.spaceAboutList > li p{
    font-size: 20px;
    margin-top: 25px;
}
@media screen and (max-width: 1439px) {
    .spaceAbout > ul > li{padding: 20px 0 20px 115px;background-position: 25px center;}
}
@media screen and (max-width: 1024px) {
    .spaceAbout {display: block;}
    .spaceAbout > div img,
    .spaceAbout > *{width: 100%;}
    .spaceAbout > ul {margin: 20px 0 0 0;}
    .spaceAbout > ul > li{padding: 20px 15px 20px 100px;background-position: 15px center;}
}
@media screen and (max-width: 767px) {
    .spaceAbout > ul > li {padding: 20px 15px 20px 80px;background-size: 45px auto;}

    .spaceAboutList > li{width: 100%;}
    .spaceAboutList > li:nth-child(even) {margin-left: 0;}
    .spaceAboutList > li:nth-child(even)::after {display: none;}
    .spaceAboutList > li .tit {font-size: 30px;padding: 5px 40px 3px 0;word-break: keep-all;}
}
@media screen and (max-width: 424px) {
    .spaceAbout > ul > li {width: 100%;padding: 10px 15px 10px 80px;}
    .spaceAbout > ul > li:nth-child(even)::after {display: none;}
}
/*-- 전시관 소개 > 공간 소개 */
/* 오시는 길 */
.busList > dt:nth-child(1) + dd,
.busList > dt:nth-child(1){margin-top: 0;}
.busList > dt{
    width: 310px;
    float: left;
    clear: both;
    border-top: #000 solid 2px;
    font-size: 26px;
    font-family: 'classic';
    padding-top: 15px;
    margin-top: 50px;
}
.busList > dt + dd{border-top: #000 solid 2px;margin-top: 50px;}
.busList > li,
.busList > dd{
    float: right;
    margin-left: 30px;
    width: calc(100% - 310px - 30px);
    border-bottom: #000 solid 1px;
    padding: 17px 0 12px 3px;
    display: flex;
}
.busList i{
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: auto 15px;
    background-position: center;
    background-color: #f2f2f2;
    text-indent: -9999px;
    overflow: hidden;
    margin: -5px 20px 0 0
}
.busList p{
    width: calc(100% - 54px);
    font-size: 18px;
}
.busList > dd i.busB{background-image: url('../img/content/icon_bus_B.png');}
.busList > dd i.busG{background-image: url('../img/content/icon_bus_G.png');}
.busList > dd i.busR{background-image: url('../img/content/icon_bus_R.png');}
.busList > dd i.busM{background-image: url('../img/content/icon_bus_etc.png');}

.busList > li:nth-child(1){
    border-top: #000 solid 2px;
    position: relative;
}
ul.busList > li:nth-child(1)::after {
    content: "";
    display: block;
    background: #000;
    width: 310px;
    height: 2px;
    position: absolute;
    left: -340px;
    top: -2px;
}
.busList > li span {
    width: 88px;
    font-size: 18px;
    display: flex;
}
.busList > li span i{
    color: #fff;
    font-size: 20px;
    text-align: center;
    text-indent: 0;
    display: inline-block;
    font-style: normal;
    line-height: 34px;
    margin-right: 5px;
}
.busList > li span.metro1 i{background-color: #1b60de}
.busList > li span.metro3 i{background-color: #f06e00}
.busList > li span.metro4 i{background-color: #59c5f5}
.busList > li span.metro5 i{background-color: #9805ff}
.busList > li span.metro6 i{background-color: #c65c17}
.busList > li span.metro1 {color: #1b60de}
.busList > li span.metro3 {color: #f06e00}
.busList > li span.metro4 {color: #59c5f5}
.busList > li span.metro5 {color: #9805ff}
.busList > li span.metro6 {color: #c65c17}

.info_list .tit [class^='line icon'] {
    padding: 0 10px;
    text-indent: 25px;
    position: relative;
}
.info_list .tit [class^='line icon'] span{
    display: inline-block;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    text-indent: -999999999px;
    overflow: hidden;
    position: absolute;
    left: 7px;
    top: 6px;
}
.info_list .tit [class^='line icon'] .iconAddr {background-image: url('../img/content/icon_addr.png');background-size: 22.5px auto;}
.info_list .tit [class^='line icon'] .iconTell {background-image: url('../img/content/icon_tell2.png');background-size: 20px auto;}
@media screen and (max-width: 767px) {
    .busList > li,
    .busList > dd,
    .busList > dt{width: 100%;float: none;}
    .busList > li,
    .busList > dd{margin: 0 0 0 0;}
    .busList > dt {margin-top: 50px;}
    .busList > dt + dd {margin-top: 5px;}

    ul.busList > li:nth-child(1)::after {display: none;}
}
/*-- 오시는 길 */
/* 세종충무공이야기 > 프로그램 > 상설체험 */
.blackTit {
    background-color: #000;
    color: #fff;
    font-size: 26px;
    text-align: center;
    padding: 6px 0 5px;
}
.lineTit {
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    font-size: 20px;
    text-align: center;
    padding: 10px 0 9px;
}
.bLine {
    border-bottom: #000 solid 1px;
    padding: 25px 0;
}
.tourBox.type2 {
    flex-wrap: wrap;
}
.tourBox.type2 > li:nth-child(1){background-image: url('../img/content/icon_fee.png');}
.tourBox.type3 > li:nth-child(2),
.tourBox.type2 > li:nth-child(2){background-image: url('../img/content/icon_person.png');}
.tourBox.type3 > li:nth-child(1),
.tourBox.type2 > li:nth-child(3){background-image: url('../img/content/icon_time.png');}
.tourBox.type2 > li:nth-child(4){
    flex-grow: 1;
    border-left: none;
    border-top: #000 solid 1px;
    display: flex;
    align-items: center;
    padding: 50px 50px 20px;
    margin-top: 20px;
}
.tourBox.type2 > li:nth-child(4) > p{
    background: url('../img/content/icon_type.png') center 0 / 53.5px no-repeat;
    padding: 65px 0 0 0;
    width: 33.3333%;
    margin-bottom: 0;
}
.tourBox.type2 > li:nth-child(4) > span{
    width: calc(100% - 33.3333%);
    text-align: left;
}
.tourBox.type3 > li {width: 50%;}
.tourBox.type4 {flex-wrap: wrap;}
.tourBox.type4 > li {flex: 1 1 30%;}
.tourBox.type4 > li:nth-child(1){background-image: url('../img/content/icon_time.png');}
.tourBox.type4 > li:nth-child(2){background-image: url('../img/content/icon_count.png');}
.tourBox.type4 > li:nth-child(3){background-image: url('../img/content/icon_runningTime.png');}
.tourBox.type4 > li:nth-child(4){background-image: url('../img/content/icon_tell.png');}
.tourBox.type4 > li:nth-child(5){background-image: url('../img/content/icon_homepage.png');}
.tourBox.type4 > li:nth-child(n+4){
    border-left: none;
    margin: 20px 0 0;
    position: relative;
    border-top: #000 solid 1px;
    padding-top: 120px;
    background-position: center 40px;
}
.tourBox.type4 > li:nth-child(5)::after{
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 20px);
    position: absolute;
    top: 20px;
    left: 0px;
    background-color: #000;
}
.tourBox.type4 > li > span {word-break: break-all;}
.tourBox.type4 > li > span + span{
    display: block;
    font-size: 15px;
}
@media screen and (max-width: 768px) {
    .tourBox.type2 > li:nth-child(4) {display: block;padding: 20px 15px 20px;text-align: left !important;}
    .tourBox.type2 > li:nth-child(4) > p {margin-bottom: 10px;text-align: center !important;}
    .tourBox.type2 > li:nth-child(4) > *{width: 100%;margin: 0 auto;}
    .tourBox.type4 > li {flex: 0 0 100%;}
    .tourBox.type4 > li:nth-child(5)::after{display: none;}
}
.experienceBox {
    display: flex;
}
.experienceBox > div{
    width: calc(50% - 20px);
    position: relative;
}
.experienceBox > div + div{margin-left: 40px;}
.experienceBox > div::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: -25px;
    left: 0;
}
.experienceBox .imgSlider{
    margin: 25px 0;
}
@media screen and (max-width: 1023px) {
    .experienceBox {flex-wrap: wrap;}
    .experienceBox > div{width: 100%;}
    .experienceBox > div + div{margin: 20px 0 0 0;}
}
/*-- 세종충무공이야기 > 프로그램 > 상설체험 */
/*-- 세종충무공이야기 */
/* 아카데미 소개 */
.imgBox.cnt3 {display: flex; margin-top: 40px;}
.imgBox.cnt3 > *{width: calc((100% / 3) - 20px);}
.imgBox.cnt3 > * + *{margin-left: 30px;}
.imgBox.cnt3 img {width: 100%;}
.imgBox.cnt3 li > p {
    margin-top: 20px;
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    font-size: 20px;
    text-align: center;
    padding: 5px 0;
}
@media screen and (max-width: 1199px) {
    .imgBox.cnt3 {display: block;}
    .imgBox.cnt3 > *{width: 100%;}
    .imgBox.cnt3 > * + *{margin: 40px 0 0 ;}
}

.imgBox.cnt4 {display: flex; margin-top: 40px;}
.imgBox.cnt4 > * {width: calc((100% - 90px) / 4);}
.imgBox.cnt4 > * + * {margin-left: 30px;}
.imgBox.cnt4 img {width: 100%;}
.imgBox.cnt4 li > p {
    margin-top: 20px;
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    font-size: 20px;
    text-align: center;
    padding: 5px 0;
    word-break: keep-all;
}
@media screen and (max-width: 1200px) {
    .imgBox.cnt4 {flex-wrap: wrap;}
    .imgBox.cnt4 > * {width: calc((100% - 30px) / 2);}
    .imgBox.cnt4 > *:nth-child(2n + 1) {margin-left: 0;}
    .imgBox.cnt4 > *:nth-child(n + 3) {margin-top: 40px;}
}
@media screen and (max-width: 425px) {
    .imgBox.cnt4 > * {width: 100%; margin-left: 0 !important;}
    .imgBox.cnt4 > *:nth-child(n + 2) {margin-top: 40px;}
}
/*-- 아카데미 소개 */
/* --01 프로그램 */

/* 02 이용안내 */
/* 공간안내 > 편의시설 */
.amenityList{
    border-top: #000 solid 1px;
}
.amenityList > li{
    display: flex;
    border-bottom: #000 solid 1px;
    flex-wrap: wrap;
}
.amenityList > li > h4 {display: none;}
.amenityList > li > *{
    width: 50%;
    margin: 20px 0px;
    padding: 0 30px;
}
.amenityList > li > div + div{
    border-left: #000 solid 1px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.amenityList > li > div + div > * {
    width: 100%;
}
.amenityList > li > div + div > * + *{
    margin-top: 70px;
}
.amenityList > li img{width: 100%;}
.amenityList > li h4 {
    font-weight: normal !important;
    font-size: 34px !important;
    border-bottom: #000 solid 1px;
    margin-bottom: 25px !important;
}
.amenityList > li h4 span{
    float: right;
    font-size: 26px;
    display: inline-block;
    margin-top: 5px;
}
.amenityList > li h4 + p,
.amenityList > li h4 + p *{
    font-size: 20px;
}
@media screen and (max-width: 1439px) {
    .amenityList > li > div + div > * + * {margin-top: 30px;}
}
@media screen and (max-width: 1024px) {
    .amenityList > li {display: block;padding-bottom: 30px;}
    .amenityList > li > h4 {
        display: block !important;border-bottom: none;margin-bottom: 10px !important;
        font-size: 21px !important;
        font-family: 'modern' !important;
    }
    .amenityList > li > h4 span{font-size: 17px;}
    .amenityList > li h4 {display: none;}
    .amenityList > li > * {width: 100%;padding: 0;margin: 10px 0;}
    .amenityList > li > div + div {border-left: 0;}
    .amenityList > li h4 + p,
    .amenityList > li h4 + p * {font-size: 15px;}
    .tbl_info.rowType.blue_line th,
    .tbl_info.rowType.blue_line td,
    .tbl_info.rowType.blue_line td *{font-size: 16px;}
    .amenityList > li > div + div > * + * {margin-top: 15px;}
}
/*-- 공간안내 > 편의시설 */

/* 공간안내 > 고객문의 */
.ask_menu {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    padding: 40px;
}
.ask_menu div:first-child {
    width: 30%;
    font-size: 22px;
    padding: 65px 0;
    margin-right: 100px;
    word-break: keep-all;
}
.ask_menu div p {
    font-size: 34px;
    font-weight: 600;
    background: url('../img/content/ask_menu_line.png') left top;
    margin: 110px 0 50px;
    padding: 0 10px 6px 0;
    position: relative;
    line-height: 180%;
}
.ask_menu div p::before {
    content: '';
    width: 92px;
    height: 92px;
    display: block;
    background: url('../img/content/ask_menu.png') left top / 92px no-repeat;
    position: absolute;
    top: -110px;
}
.ask_menu div span {display: block; max-width: 300px;}
.ask_menu div:last-child {width: 70%;}
.ask_menu ul {
    border-top: 1px solid #000;
    height: 100%;
}
.ask_menu li {
    border-bottom: 1px solid #000;
    height: calc(100% / 3);
}
.ask_menu li a {
    font-size: 38px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 140px 0 40px;
    word-break: keep-all;
    background: url('../img/content/ask_menu_move.png') calc(100% - 40px) center / 80px no-repeat;
}
.ask_menu li a:hover {
    background-color: #ffe800;
    background-image: url('../img/content/ask_menu_move_on.png');
}

@media screen and (max-width: 1440px) {
    .ask_menu {padding: 20px;}
    .ask_menu div:first-child {
        margin-right: 50px;
        font-size: 20px;
        padding: 40px 0;
        width: 35%;
    }
    .ask_menu div p {
        font-size: 30px;
        background-image: url('../img/content/ask_menu_line2.png');
        margin: 90px 0 30px;
    }
    .ask_menu div p::before {
        width: 72px;
        height: 72px;
        background-size: 72px;
        top: -90px;
    }
    .ask_menu div span {max-width: 280px;}
    .ask_menu div:last-child {width: 65%;}
    .ask_menu li a {
        font-size: 34px;
        background-size: 60px;
        background-position: calc(100% - 20px) center;
        padding: 0 100px 0 20px;
    }
}
@media screen and (max-width: 1024px) {
    .ask_menu {flex-direction: column; padding: 0 20px;}
    .ask_menu div:first-child {
        margin-right: 0;
        padding: 0;
        width: 100%;
        word-break: break-all;
    }
    .ask_menu div p {margin: 90px 0 20px;}
    .ask_menu div span {max-width: none;}
    .ask_menu div:last-child {width: 100%; margin-top: 60px;}
    .ask_menu li a {padding: 40px 100px 40px 20px;}
}
@media screen and (max-width: 768px) {
    .ask_menu {padding: 0;}
    .ask_menu div:first-child {font-size: 17px;}
    .ask_menu div p {font-size: 25px; margin: 70px 0 10px; background-image: url('../img/content/ask_menu_line3.png');}
    .ask_menu div p::before {
        width: 52px;
        height: 52px;
        background-size: 52px;
        top: -70px;
    }
    .ask_menu div:last-child {margin-top: 40px;}
    .ask_menu li a {
        font-size: 30px;
        background-size: 45px;
        background-position: calc(100% - 15px) center;
        padding: 25px 75px 25px 15px;
    }
}
/* --공간안내 > 고객문의 */

/* 공간안내 > 좌석배치도 */
.seatBox {
    border: #000 solid 2px;
    display: flex;
    margin: 90px 0 0 0;
}
.seatBox > *:nth-child(1){
    width: 1030px;
    background-color: #000;
    padding: 55px 40px 80px;
}
.seatBox > *:nth-child(2){
    width: calc(100% - 1030px);
    padding: 0 48px;
}
.seatBox > *:nth-child(1) *{
    color: #fff;
}
.seatBox .top {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    justify-content: space-between;
    font-family: 'classic';
}
.seatBox .top .tit p{
    font-size: 35px;
}
.seatBox .top .tit span{
    font-size: 20px;
}
.seatBox .top > p{
    font-size: 100px;
    line-height: 100px;
    font-family: 'classic';
    margin-top: -10px;
}
.seatBox .top > p span{
    font-size: 55px;
}
.seatBox .seatArea {
    margin: 0 auto;
    max-width: 100%;
    width: 239px;
    text-align: center;
    position: relative;
}
.seatBox .seatArea ul{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.seatBox .seatArea ul li a{
    position: absolute;
    display: block;
    text-indent: -9999999px;
    overflow: hidden;
    width: 9%;
    height: 5.5%;
    /* border: #000 solid 1px; */
}
.seatBox .seatArea.small ul li a{width: 12%;height: 5%;}
.seatBox .seatArea.small2 ul li a{width: 15%;height: 3%;}
.seatBox .seatArea.big ul li a{width: 5.5%;height: 5%;}
.seatBox .seatArea.big2 ul li a{width: 4%;height: 4%;}
.seatBox .seatArea.big3 ul li a{width: 4%;height: 6%;}
.seatBox .seatArea.big4 ul li a{width: 4%;height: 37%;}
.seatBox .imgArea {
    border-top: #fff solid 1px;
    border-bottom: #fff solid 1px;
    height: 800px;
    display: flex;
    align-items: center;
}
.seatBox .bottom{
    padding: 60px 0 0;
    text-align: center;
    font-size: 26px;
}
.seatBox .bottom ul{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.seatBox .bottom ul > li + li{margin-left: 45px;}
.seatBox .bottom ul > li.on a,
.seatBox .bottom ul > li a:hover{
    background-color: #ffea00;
    border-color: #ffea00;
    color: #000;
}
.seatBox .bottom ul a{
    display: block;
    border: #636363 solid 1px;
    width: 75px;
    height: 85px;
    line-height: 83px;
    font-size: 32px;
    color: #fff;
    font-family: 'classic';
}
.seatBox > *:nth-child(2) .tit {
    padding: 30px 0;
    border-top: #000 solid 2px;
    border-bottom: #000 solid 1px;
    margin: 30px 0 40px;
    font-size: 30px;
    display: flex;
    align-items: flex-end;
}
.seatBox > *:nth-child(2) > div > .tit:first-child {border-top: none;padding-top: 0;}
.seatBox > *:nth-child(2) .tit strong{font-weight: normal;}
.seatBox > *:nth-child(2) .tit > span{
    font-size: 16px;
    display: inline-block;
    margin: 0 0 5px 10px;
}
.seatDetail {padding-bottom: 20px;}
.seatDetail > a img {display: block;width: 100%;}
.seatDetail > a {display: none;}
.seatDetail > a:nth-child(1) {display: block;}
@media screen and (max-width: 1699px) {
    .seatBox > *:nth-child(2) .tit {display: block;}
    .seatBox > *:nth-child(2) .tit > span {margin: 0px;display: block;}
}
@media screen and (max-width: 1499px) {
    .seatBox > *:nth-child(1) {padding: 55px 20px 80px;width: 990px;}
    .seatBox > *:nth-child(2) {padding: 0 20px;width: calc(100% - 990px);}
}
@media screen and (max-width: 1399px) {
    .seatBox {display: block;margin-top: 30px;}
    .seatBox > *:nth-child(1) {padding: 20px;width: 100%;}
    .seatBox > *:nth-child(2) {padding: 0 20px;width: 100%;}
    .seatBox .imgArea {height: auto;padding: 30px 0;}
}
@media screen and (max-width: 767px) {
    .seatBox .top .tit p {font-size: 28px;}
    .seatBox .top > p{font-size: 70px;}
    .seatBox .bottom {padding: 20px 0 0;font-size: 22px;}
    .seatBox .bottom ul {flex-wrap: wrap;margin-top: 10px;}
    .seatBox .bottom ul > li {margin: 5px !important;}
    .seatBox .bottom ul a {width: 50px;height: 50px;line-height: 48px;}
    .seatBox > *:nth-child(2) .tit {margin: 20px 0 }
    /* .seatBox .seatArea ul li a {width: 21px;height: 23px;} */
}
/* --공간안내 > 좌석배치도 */

/* 공간안내 > 피난안내도 보기 */
.layerPopup.emergency {max-width: 1208px;}
.layerPopup.emergency .layerCont{max-height: 700px;}
.layerPopup.emergency .imgSlider img {margin-bottom: 30px;}
.emergencyMap {
    display: flex;
    background: #000;
    color: #fff;
}
.emergencyMap > *:nth-child(1){
    width: 624px;
}
.emergencyMap.type2 > *:nth-child(1){
    width: 447px;
}
.emergencyMap > *:nth-child(1) .imgSlider.type3{
    background-color: #000;
}
.emergencyMap.type2 > *:nth-child(2){
    width: calc(100% - 447px);
}
.emergencyMap > *:nth-child(2){
    width: calc(100% - 624px);
    border-left: #fff solid 1px;
    padding: 20px 40px;
    font-size: 15px;
    line-height: 24px;
}
.emergencyMap > *:nth-child(2) > div{margin-top: 25px;}
.emergencyMap.type2 > *:nth-child(2) > div{margin-top: 20px;}
.bumList {
    display: flex;
    flex-wrap: wrap;
}
.bumList > li {
    width: 50%;
    display: flex;
    align-items: center;
    font-size: 17px;
    margin: 10px 0;
}
.bumList > li img {
    width: 34px;
    margin-right: 10px;
}
@media screen and (max-width: 1024px) {
    .emergencyMap {display: block;}
    .emergencyMap > * {width: 100% !important;}
    .emergencyMap > *:nth-child(2){border-left: none;border-top: #fff solid 1px;}
}
@media screen and (max-width: 768px) {
    .layerPopup.emergency .layerCont{max-height: 560px;}
    .emergencyMap > *:nth-child(2) {padding: 15px 20px 20px;}
}
/* --공간안내 > 피난안내도 보기 */

/* 대관안내 > 대관공고 */
.fix_box5 {
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    display: flex;
    min-height: 860px;
}
.fix_box5 > div {width: 50%; position: relative;}
.fix_box5 > div::after {
    content: '';
    width: calc(100% - 40px);
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 20px;
    bottom: 0;
}
.fix_box5 > div:not(:last-child) {border-right: 1px solid #000;}
.fix_box5 > div > p {
    border-top: 3px solid #000;
    border-bottom: 1px solid #000;
    margin: 0 20px;
    font-size: 36px;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 170px;
}
.fix_box5 ul {height: calc(100% - 170px);}
.fix_box5 a {font-size: 20px; font-weight: 500; display: block;}
.fix_box5 a p {padding: 25px 20px 35px;}
.fix_box5 a span {
    font-size: 16px;
    background-color: #e2e2e2;
    display: block;
    padding: 8px 20px;
}
.fix_box5 a:hover p {background-color: #ffea00;}
.fix_box5 a:hover span {color: #fff; background-color: #000;}

@media screen and (max-width: 1024px) {
    .fix_box5 {flex-wrap: wrap; position: relative;}
    .fix_box5::after {
        content: '';
        width: calc(50% - 40px);
        height: 1px;
        display: block;
        background-color: #000;
        position: absolute;
        bottom: 0;
        right: 20px;
    }
    .fix_box5 > div:nth-child(2n) {border-right: none;}
    .fix_box5 > div:last-child:nth-child(odd) {border-right: 1px solid #000;}
    .fix_box5 > div:nth-child(n + 3) > p {border-top: 2px solid #000;}
}
@media screen and (max-width: 768px) {
    .fix_box5 > div > p {font-size: 30px; height: 130px;}
    .fix_box5 ul {height: calc(100% - 130px);}
    .fix_box5 a {font-size: 18px;}
    .fix_box5 a p {padding: 20px 20px 25px;}
    .fix_box5 a span {font-size: 14px;}
}
@media screen and (max-width: 425px) {
    .fix_box5 > div {width: 100%; border-right: none !important;}
    .fix_box5 > div:nth-child(n + 2) > p {border-top: 2px solid #000;}
}
/* --대관안내 > 대관공고 */
/* 대관안내 > 대관절차 */
.processList {
    margin-top: 20px;
}
.processList > li{
    border-bottom: #000 solid 1px;
}
.processList > li a{
    display: block;
    font-size: 26px;
    padding: 7px 0 3px 50px;
    font-weight: normal;
}
.processList > li a span{
    display: inline-block;
    text-indent: -50px;
}
.processList > li.on a,
.processList > li a:hover{
    background: url('../img/content/icon_processArr.png') 20px center / 30px auto no-repeat #000;
    color: #fff;
    padding-left: 144px;
}
.processList > li.on a span,
.processList > li a:hover span{text-indent: -72px;}
.processCont *,
.processCont {font-weight: normal;}
.processCont .title:first-child{margin-top: 0 !important;}
.processCont .title{
    border-top: #000 solid 2px;
    border-bottom: #000 solid 1px;
    font-size: 30px;
    font-family: 'classic';
    padding: 12px 12px 10px 12px;
    margin-top: 90px;
}
.processCont .title.flex {display: flex; justify-content: space-between;}
.processCont .title.flex > div {display: flex; align-items: center; gap: 10px;}
.processCont .title span{
    display: inline-block;
    border: #000 solid 1px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    margin-right: 30px;
}
.processCont .title img {width: 45px; display: inline-block;}
.processCont .title a{
    float: right;
    margin-top: 2px;
}
.processCont .dtList dt{
    font-size: 24px;
    border-bottom: #000 solid 1px ;
    padding: 7px 0 5px;
    font-weight: normal;
}
.processCont .dtList > li,
.processCont .dtList dd{
    font-size: 20px;
    padding: 8px 0 6px 15px;
    border-bottom: #000 solid 1px ;
    margin: 0;
}
.processCont .dtList > li::before,
.processCont .dtList dd::before {top: 19px;}
.processCont .dtList dd + dt{
    margin: 0;
    border-top: none;
}
.dtList.line > li {
    background: url('../img/content/ask_menu_line5.png') left top;
    line-height: 46px;
    padding: 0 0 0 15px;
    border-bottom: none;
}
.dtList.line > li [class^='btn_arr'] {
    line-height: 20px;
    vertical-align: top;
    margin-top: 3px;
}
.dtList.line > li .blt {margin-top: 0;}
.dtList.line > li .blt > li{
    font-size: 17px;
    padding: 0 0 0 12px;
}
.dtList.line > li::before{
    top: 19px;
}
.dtList.line > li .blt > li::before{
    top: 22px;
}
.processCont .title.type2 {
    border-top: none;
    border-bottom: none;
    padding: 0 0 10px;
    margin-top: 50px;
}
@media screen and (max-width: 768px) {
    .processCont .title {margin-top: 40px;font-size: 27px;padding-right: 15px;}
    .processCont .title span {width: 40px;height: 40px;margin-right: 15px;}
    .processCont .title img {width: 40px;}
    .processCont .title a {margin-top: 0;}
}
@media screen and (max-width: 425px) {
    .processCont .title.flex > div {gap: 5px;}
    .processCont .title img {width: 30px;}
}
@media screen and (max-width: 375px) {
    .processCont .title a {margin-top: 0;float: none;}
}
/*-- 대관안내 > 대관절차 */
/* 대관안내 > 기술자료 */
.downList {
    display: flex;
    flex-wrap: wrap;
}
.downList::after {content: ""; display: block; clear: both;}
.downList.w100 > li {width: 100%;}
.downList > li {
    width: calc(50% - 30px);
}
.downList > li:nth-child(even) {margin-left:30px}
.downList > li:nth-child(odd) {margin-right:30px}
.downList > li div {
    font-size: 24px;
    border-bottom: #000000 solid 1px;
    padding: 30px 0 15px;
    margin-bottom: 20px;
}
.downList.type2 > li,
.downList > li ul > li{
    border: #000 solid 2px;
    background: url('../img/content/btn_down2.png') calc(100% - 33px) center / 22px no-repeat;
}
.downList.w100 > li ul > li {width: calc(50% - 20px);margin-bottom: 20px;}
.downList.w100 > li ul > li + li {border-top: #000 solid 2px;}
.downList.w100 > li ul > li:nth-child(odd) {
    float: left;
}
.downList.w100 > li ul > li:nth-child(even) {
    float: right;
}
.downList > li ul > li + li{border-top: none;}

.downList.type2 > li a,
.downList > li ul > li a{
    display: flex;
    align-items: center;
    font-size: 21px;
    padding: 0 80px 0 95px;
    height: 81px;
    background-repeat: no-repeat;
    background-position: 30px center;
    background-size: 30px auto;
    word-break: keep-all;
    line-height: 120%;
}
.downList.type2 {
    justify-content: space-between;
    flex-wrap: nowrap;
}
.downList.type2 > li{margin-top: 10px;margin-bottom: 10px;}
.downList.type2 > li + li {
    margin-left: 40px;
}
.downList.type2 > li:nth-child(odd) {margin-right:0px}
.icon_pdf{background-image: url('../img/content/icon_pdf.png');}
.icon_hwp{background-image: url('../img/content/icon_hwp.png');}
.icon_docx{background-image: url('../img/content/icon_docx.png');}
.icon_vr{background-image: url('../img/content/icon_vr.png');}
.icon_xlsx{background-image: url('../img/content/icon_xlsx.png');}
.icon_ppt{background-image: url('../img/content/icon_ppt.png');}
.icon_zip{background-image: url('../img/content/icon_zip.png');}
.downList.type2 > li a:hover,
.downList > li ul > li a:hover{
    box-shadow: #000 3px 3px 0px 2px;
}
.tit + .txtR {
    text-align: right;
    margin-top: -80px;
}
@media screen and (max-width: 1599px) {
    .downList.type2 {display: block;}
    .downList.type2 > li {width: calc(50% - 10px);float: left;}
    .downList.type2 > li + li {margin-left: auto}
    .downList.type2 > li:nth-child(even) {margin-left:10px;float: right}
    .downList.type2 > li:nth-child(odd) {margin-right:10px;}
}
@media screen and (max-width: 768px) {
    .tit + .txtR {text-align: left;margin-top: -20px;height: 20px;}
    .downList > li {width: 100%}
    .downList.type2 > li:nth-child(even),
    .downList > li:nth-child(even) {margin-left:0px}
    .downList.type2 > li:nth-child(odd),
    .downList > li:nth-child(odd) {margin-right:0px}
    .downList > li div {font-size: 20px;}
    .downList.type2 > li,
    .downList > li ul > li {background-position: calc(100% - 20px) center;background-size: 18px;}
    .downList.type2 > li a,
    .downList > li ul > li a {font-size: 18px;height: 51px;padding: 0 40px 0 45px;background-size: 20px;background-position: 15px center;}
    .downList.type2 > li {width: 100%}
    .downList.type2 > li + li {margin-left: auto}

    .downList.w100 > li ul > li {width: 100%;float: none !important;}
}
/*-- 대관안내 > 기술자료 */
/* 대관안내 > 대관료 */
.tit + .txtR2 {
    text-align: right;
    margin-top: -40px;
    margin-bottom: 20px;
}
.tit.type2 + .txtR2 {
    margin-top: -50px;
    margin-bottom: 30px;
}
.guideTxt {
    display: inline;
    font-size: 17px;
    color: #fff;
    background-color: #000;
    padding: 0 5px 0 0;
    line-height: 24px;
}
.guideTxt + .guideTxt {margin-top: 5px;}
.guideTxt span {
    background-color: #ffea00;
    color: #000;
    padding: 0 4px;
    margin-right: 5px;
}
.guideTxt.bgG span {background-color: #acadae;}
.guideTxt.bgG2 {background-color: #efefef; color: #000;}
.guideTxt.bgG2 span {background-color: #acadae;}
.guideTxt.bgG3 {background-color: #efefef; color: #000;}
.guideTxt2 {
    background-color: #e2e2e2;
    display: inline;
    font-size: 15px;
    line-height: 24px;
    padding: 0 2px;
    font-weight: 400;
}
.guide_box2 .guideTxt2 {font-size: 17px; display: inline;}
.pointTxt {
    display: inline;
    font-size: 17px;
    background-color: #56bcd5;
    padding: 0 5px;
    line-height: 24px;
    font-weight: normal;
}
.checkTxt {
    background: url('../img/content/icon_check.png') 4px center / 14px auto no-repeat;
    background-color: #e2e2e2;
    display: inline;
    font-size: 15px;
    line-height: 24px;
    padding: 0 2px 0 22px;
}
.cautionTxt {
    background: url('../img/content/caution_box.png') 0 0 / 27px no-repeat;
    font-size: 18px !important;
    padding: 40px 0 0;
    line-height: 34px;
}
.boxTxt {
    font-size: 26px !important;
    border: #000 solid 1px;
    text-align: center;
    padding: 20px;
}
@media screen and (max-width: 768px) {
    .tit + .txtR2 {margin-top: 10px;}
    .guide_box2 .guideTxt2 {font-size: 15px;}
}
/*-- 대관안내 > 대관료 */
/* 대여안내 > 공간소개 */
.info_list .cont > .imgBox:first-child {margin-top: 0;}
.imgBox {margin: 30px 0 70px;text-align: center;}
.imgBox.bLine {border-bottom: #000 solid 1px;padding: 50px 0;}
.imgBox iframe {width: 100%; height: 680px; display: block;}
.imgBox img {display: block !important;margin: 0 auto;}
.imgSlider {background-color: #f1f1f1;}
.imgSlider iframe {display: block !important; height: 680px;}
.imgSlider .slick-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
    height: 70px;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 46px;
    z-index: 2;
}
.imgSlider .slick-list {height: auto !important;}
.imgSlider .slick-slide img {display: block !important;}
.imgSlider .slick-arrow.slick-prev {background-image: url('../img/content/btn_prev.png');right: 90px;}
.imgSlider .slick-arrow.slick-next {background-image: url('../img/content/btn_next.png');}

.imgSlider.type2 .slick-arrow {
    width: 58px;
    height: 46px;
    background-size: 30px;
}
.imgSlider.type2 .slick-arrow.slick-prev {right: 58px;}
.imgSlider.type3 .slick-arrow {
    width: 64px;
    height: 50px;
    background-size: 33px;
    border: #fff solid 1px;
    border-bottom: none;
    border-right: none;
}
.imgSlider.type3 .slick-arrow.slick-prev {right: 64px;}

.imgSlider .box {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 50%;
    display: block !important;
}
.imgSlider .box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
}

@media screen and (max-width: 1440px) {
    .imgSlider iframe {height: 500px;}
}
@media screen and (max-width: 768px) {
    .imgBox {margin: 30px 0;}
    .imgSlider .slick-arrow {
        background-size: 36px;
        width: 65px;
        height: 50px;
    }
    .imgSlider .slick-arrow.slick-prev {right: 65px;}
    .imgBox.bLine {padding: 25px 0;}
}
@media screen and (max-width: 425px) {
    .imgSlider iframe {height: 250px;}
}
/*-- 대여안내 > 공간소개 */
/*-- 공간안내 > 공간소개 */
.imgSlider + p.line {margin-top: -40px;}
p.line {
    font-size: 20px;
    background: url('../img/content/ask_menu_line4.png') left top;
    line-height: 190%;
    word-break: keep-all;
    font-weight: 400;
    display: block;
}
p.line.fs22 {
    font-size: 22px;
    background: url('../img/content/ask_menu_line5.png') left top;
    line-height: 46px;
    border-bottom: #000 solid 1px;
}
p.line.fs20 {
    font-size: 20px;
    padding: 20px 0;
    background-image: none;
    border-bottom: #000 solid 1px;
    display: block;
    text-align: center;
}
.spaceBox {
    background-color: #f8f8f8;
    margin: -30px -30px -140px;
    padding: 250px 0 340px;
    position: relative;
}
.spaceBox > div{
    position: relative;
    text-align: center;
    width: 1670px;
    margin: 0 auto;
}
.spaceBox > div > img.phide{display: none;}
.spaceBox > div > button{
    position: absolute;
    border: #000 solid 1px;
    background: #fff;
    width: 380px;
    text-align: left;
    padding-bottom: 10px;
    letter-spacing: -1px;
}
.spaceBox > div > button:nth-child(3) {left: 60%;top: 91%;}
.spaceBox > div > button:nth-child(4) {right: 20px;top: 24%;}
.spaceBox > div > button:nth-child(5) {left: 440px;top: 0;}
.spaceBox > div > button:nth-child(6) {left: 870px;top: -30px;}
.spaceBox > div > button:nth-child(7) {left: 12px;top: 113px;}
.spaceBox > div > button:nth-child(8) {left: 12px;top: 278px;}
.spaceBox > div > button:nth-child(9) {left: 597px;top: 956px;}
.spaceBox > div > button:nth-child(10) {left: 90px;top: 810px;}
.spaceBox > div > button:nth-child(11) {left: 12px;top: 443px;}
.spaceBox > div > button:nth-child(12) {right: 10px;top: 608px;}

.spaceBox.type2 > div > button:nth-child(3) {left: 909px;top: 105px;}
.spaceBox.type2 > div > button:nth-child(4) {right: 10px;top: 525px;}
.spaceBox.type2 > div > button:nth-child(5) {right: 20px;left: auto;top: 838px;}
.spaceBox.type2 > div > button:nth-child(5):focus,
.spaceBox.type2 > div > button:nth-child(5):hover {top: 698px;}
.spaceBox.type2 > div > button:nth-child(6) {left: 95px;top: 542px;}
.spaceBox.type2 > div > button:nth-child(7) {left: 452px;top: 248px;}
.spaceBox.type2 > div > button:nth-child(7):focus,
.spaceBox.type2 > div > button:nth-child(7):hover {top: 148px;}
.spaceBox > div > button > div:first-child{
    background-color: #ffea00;
    border-bottom: #000 solid 1px;
    font-size: 20px;
    position: relative;
    padding: 10px 15px 10px 37px;
    color: #000;
}
.spaceBox > div > button > div:first-child::after{
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background-color: #000000;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 20px;
}
.spaceBox > div > button > p {
    font-size: 17px;
    padding: 25px 15px 15px;
    word-break: keep-all;
    color: #000;
}
.spaceBox > div > button .img {
    padding: 15px 17px 0;
    display: none;
}
.spaceBox > div > button .img img{
    width: 100%;
    display: block;
}
.spaceBox > div > button .btnAreaC{
    margin-top: 5px;
    display: none;
}
/*.spaceBox > div > button:hover {cursor: auto;}
.spaceBox > div > button:hover .btnAreaC,
.spaceBox > div > button.on .btnAreaC,
.spaceBox > div > button:hover .img,
.spaceBox > div > button.on  .img{
    display: block;
}
.spaceBox > div > button:hover,
.spaceBox > div > button.on{
    border-width: 3px;
    z-index: 1;
}
.spaceBox > div > button:hover > div:first-child,
.spaceBox > div > button.on > div:first-child{
    color: #fff;
    background: #000;
    padding: 8px 15px 8px 37px;
}
.spaceBox > div > button:hover > div:first-child::after,
.spaceBox > div > button.on > div:first-child::after{
    background-color: #fff;
    top: 18px;
    left: 18px;
}
.spaceBox > div > button:hover > p,
.spaceBox > div > button.on > p {
    padding: 27px 13px 11px;
}*/
.spaceBox > div > button.on .btnAreaC,
.spaceBox > div > button.on  .img{
    display: block;
}
.spaceBox > div > button.on{
    border-width: 3px;
    z-index: 1;
}
.spaceBox > div > button.on > div:first-child{
    color: #fff;
    background: #000;
    padding: 8px 15px 8px 37px;
}
.spaceBox > div > button.on > div:first-child::after{
    background-color: #fff;
    top: 18px;
    left: 18px;
}
.spaceBox > div > button.on > p {
    padding: 27px 13px 11px;
}

.spaceBox > div + button {position: absolute; top: 30px; right: 30px;}

@media screen and (max-width: 1690px) {
    .spaceBox {padding: 30px;}
    .spaceBox > div {width: 100%;}
    .spaceBox > div > button{position: static;padding-bottom: 0;border-bottom: none;display: block;width: 100%;}
    .spaceBox > div > button + button {margin-top: 5px;}
    .spaceBox > div > img.mhide{display: none;}
    .spaceBox > div > img.phide{display: block;margin: 0 auto 40px}
    .spaceBox > div > button > p {display: none;}
    /*.spaceBox > div > button:hover,
    .spaceBox > div > button.on {border-bottom: #000 solid 3px;padding-bottom: 10px;}
    .spaceBox > div > button:hover > p,
    .spaceBox > div > button.on > p {display: block;}*/
    .spaceBox > div > button.on {border-bottom: #000 solid 3px;padding-bottom: 10px;}
    .spaceBox > div > button.on > p {display: block;}
}
@media screen and (max-width: 768px) {
    .imgSlider + p.line {margin-top: 0px;}
    p.line.fs22 {border-bottom: none;line-height: 46px !important;}

    .spaceBox {padding: 40px 20px;margin: -20px -20px -80px;}
    .spaceBox > div > button > div:first-child {font-size: 18px;padding: 7px 10px 7px 30px;}
    .spaceBox > div > button > div:first-child::after {left: 15px;top: 15px}
    /*.spaceBox > div > button:hover > div:first-child::after,
    .spaceBox > div > button.on > div:first-child::after {left: 13px;top: 13px;}
    .spaceBox > div > button:hover > div:first-child,
    .spaceBox > div > button.on > div:first-child {padding: 5px 10px 5px 30px;}
    .spaceBox > div > button:hover > p,
    .spaceBox > div > button.on > p {padding: 20px 13px 11px;}*/
    .spaceBox > div > button.on > div:first-child::after {left: 13px;top: 13px;}
    .spaceBox > div > button.on > div:first-child {padding: 5px 10px 5px 30px;}
    .spaceBox > div > button.on > p {padding: 20px 13px 11px;}

    .spaceBox > div + button {position: static; margin-top: 20px;}
}
.floorBox > div{
    display: flex;
    margin-top: 40px;
}
.floorBox > div > *:nth-child(1){
    width: 65%;
    border: #000 solid 1px;
    padding: 30px 25px;
}
.floorBox > div > *:nth-child(2){
    width: calc(35% - 20px);
    margin-left: 20px;
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    padding: 30px 0;
}
@media screen and (max-width: 768px) {
    .floorBox > div{flex-wrap: wrap;margin-top: 20px;}
    .floorBox > div > *{width: 100% !important;}
    .floorBox > div > *:nth-child(1){padding: 15px;}
    .floorBox > div > *:nth-child(2){margin: 0;border-top: none;}
}
/*-- 공간안내 > 공간소개 */
/* 대여안내 > 의상소품 */
.bankBox {
    border: #000 solid 1px;
    display: flex;
    padding: 20px 0;
}
.bankBox > li {
    width: 50%;
    padding: 20px 20px 20px 200px;
    font-size: 20px;
    background-repeat: no-repeat;
    background-position: 70px center;
    background-size: auto 59px;
}
.bankBox > li:nth-child(1){background-image: url('../img/content/icon_bank.png');}
.bankBox > li:nth-child(2){background-image: url('../img/content/icon_bank2.png');}
.bankBox.icon2 > li {
    width: calc(100% / 3);
    word-break: break-all;
}
.bankBox.icon3 > li:nth-child(2),
.bankBox.icon2 > li:nth-child(1){background-image: url('../img/content/icon_customer_01.png');}
.bankBox.icon3 > li:nth-child(1),
.bankBox.icon2 > li:nth-child(2){background-image: url('../img/content/icon_customer_02.png');}
.bankBox.icon2 > li:nth-child(3){background-image: url('../img/content/icon_customer_03.png');}
.bankBox.icon2 > li + li,
.bankBox.icon3 > li + li{
    border-left: #000 dashed 1px;
}
.bankBox > li span{color: #007ab8;}
@media screen and (max-width: 1439px) {
    .bankBox > li {padding-left: 130px;background-position: 20px center;}
}
@media screen and (max-width: 1023px) {
    .bankBox > li {padding-left: 130px;background-position: 20px center;}

    .bankBox.icon3,
    .bankBox.icon2 {flex-wrap: wrap;padding: 0;}
    .bankBox.icon3 > li,
    .bankBox.icon2 > li {width: 100%;word-break: break-all;}
    .bankBox.icon3 > li + li,
    .bankBox.icon2 > li + li {border-left: none;border-top: #000 dashed 1px;}
}
@media screen and (max-width: 768px) {
    .bankBox {flex-wrap: wrap;padding: 0;}
    .bankBox > li {width: 100%;}
    .bankBox > li + li {border-left: none;border-top: #000 dashed 1px;}
}
@media screen and (max-width: 374px) {
    .bankBox > li {background-size: auto 49px;padding-left: 100px;}
}
/*-- 대여안내 > 의상소품 */
/* 세종S멤버십  */
.memberTit  {
    font-size: 45px;
    text-align: center;
    font-family: 'classic';
}
.memberTit span{
    display: inline-block;
    color: #fff;
    font-size: 25px;
    background-color: #000;
    width: 36.3px;
    height: 36.3px;
    line-height: 36.3px;
    border-radius: 50%;
    vertical-align: top;
    margin: 15px 5px 0;
}
.memberTit p {
    font-size: 22px;
    font-family: 'modern';
}
.memberTit p span{
    width: 18.15px;
    height: 18.15px;
    line-height: 18.15px;
    font-size: 12px;
    margin-top: 7px;
}
.titList {
    display: flex;
    margin: 60px 0 0 ;
}
.titList > li{
    width: calc((100% / 4) - 39.75px);
    text-align: center;
    margin-bottom: 20px;
}
.titList > li + li {margin-left: 39.75px;}
.titList > li div{
    border-bottom: #000 solid 1px;
    padding: 20px 0;
}
.titList > li div span{
    font-size: 18px !important;
}
.titList > li p{
    font-size: 20px;
    background: url('../img/content/ask_menu_line50.png') left top;
    line-height: 260%;
    word-break: keep-all;
}
.memLevel {
    display: flex;
    margin-top: 40px;
}
.memLevel > li {
    width: 25%;
    border-left: #000 solid 1px;
    border-right: #000 solid 1px;
    padding: 40px;
    position: relative;
}
.memLevel > li::after,
.memLevel > li::before{
    content: "";
    display: block;
    width: calc(100% - 40px);
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 20px;
}
.memLevel > li::after {top: -20px;}
.memLevel > li::before{bottom: -20px}
.memLevel > li + li{margin-left: 40px;}
.txtS{
    display: inline-block;
    color: #fff;
    background-color: #000;
    border-radius: 50%;
    vertical-align: top;
    margin: 6px 3px 0;
    width: 18.15px;
    height: 18.15px;
    line-height: 18.15px;
    font-size: 12px;
    text-align: center;
}
.txtS.fs20{
    margin: 8px 3px 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px !important;
}
.txtS.fs25{
    margin: 14px 5px 0;
    width: 36.3px;
    height: 36.3px;
    line-height: 36.3px;
    font-size: 25px !important;
}
.txtS.small{margin: 4px 3px 0;}
.txtS.small2{margin: 2px 3px 0;}
.memLevel i.mem {margin: 40px auto 30px;}
i.mem {
    background-repeat: no-repeat;
    background-size: 62px auto;
    background-position: center;
    width: 62px;
    height: 62px;
    display: block;
    text-indent: -9999px;
    overflow: hidden;
}
i.mem.we {background-image: url('../img/content/icon_we.png');}
i.mem.st {background-image: url('../img/content/icon_st.png');}
i.mem.sp {background-image: url('../img/content/icon_sp.png');}
i.mem.si {background-image: url('../img/content/icon_si.png');}

i.mem.we2 {background-image: url('../img/content/icon_we3.png');}
i.mem.st2 {background-image: url('../img/content/icon_st3.png');}
i.mem.sp2 {background-image: url('../img/content/icon_sp3.png');}
i.mem.si2 {background-image: url('../img/content/icon_si3.png');}
.memLevel > li > div {
    background-color: #000;
    color: #fff;
    font-size: 17px;
    text-align: center;
    line-height: 35px;
}
.memLevel > li > p {
    font-size: 38px;
    text-align: center;
    font-family: 'classic';
    line-height: 100%;
}
.memLevel > li > p span{
    display: block;
    font-family: 'modern';
    font-size: 22px;
}
.memLevel > li > ul {
    border-top: #000 solid 1px;
    margin-top: 25px;
}
.memLevel > li > ul > li {
    border-bottom: #000 solid 1px;
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
    line-height: 30px;
}
.memLevel > li > ul > li:nth-child(1) {
    height: 90px;
    align-content: center;
}
.memLevel > li > ul > li:nth-child(2) {
    margin-top: 95px;
    border-top: #000 solid 1px;
}
.memLevel > li > ul > li > span{
    font-size: 15px;
}
.memLevelGuide {
    border: #000 solid 1px;
    padding: 90px 0;
    margin: 20px 0 0 0;
}
.memLevelGuide > ol {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.memLevelGuide > ol > li {position: relative;}
.memLevelGuide > ol > li:nth-child(1){
    border-radius: 50%;
    width: 170px;
    height: 170px;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 20px;
    align-content: center;
}
.memLevelGuide > ol > li + li {
    margin-left: 121px;
}
.memLevelGuide > ol > li + li::after {
    content: "";
    display: block;
    width: 81px;
    height: 40px;
    background: url('../img/content/arrow.png') center / 100% no-repeat;
    position: absolute;
    left: -101px;
    top: 50%;
    transform: translateY(-50%);
}
.memLevelGuide > ol > li > ul > li {
    border: #000 solid 1px;
    width: 276px;
    height: 107px;
    font-size: 18px;
    text-align: center;
    align-content: center;
}
.memLevelGuide > ol > li > ul > li + li {
    margin-top: 10px;
}
.memLevelGuide > ol > li:nth-child(4){
    background: #ffe800;
    border: #000 solid 1px;
    width: 276px;
    height: 167px;
    text-align: center;
    align-content: center;
    font-size: 20px;
}
.memLevelGuide i.mem{
    display: inline-block;
    width: 37px;
    height: 37px;
    background-size: 37px;
}
.imgBox.line {
    border: #000 solid 1px;
    padding: 90px 20px;
    text-align: center;
    margin: 0;
}
@media screen and (max-width: 1660px) {
    .memLevel > li{padding: 20px}
    .memLevel > li + li {margin-left: 20px;}
    .memLevelGuide > ol {width: 90%}
    .memLevelGuide > ol > li + li {margin-left: 80px;}
    .memLevelGuide > ol > li + li::after {background-size: auto 40px;width: 50px;background-position: right center;left: -65px;}
}
@media screen and (max-width: 1439px) {
    .titList > li{width: calc((100% / 4) - 15px);}
    .titList > li + li {margin-left: 20px;}

    .memLevel > li{padding: 10px}
    .memLevel > li + li {margin-left: 10px;}
    .memLevel > li > div {line-height: 120%;padding: 10px 5px;}

    .memLevelGuide {padding: 30px 10px;}
    .memLevelGuide > ol {width: 100%;display: block;}
    .memLevelGuide > ol > li {margin: 0 auto;}
    .memLevelGuide > ol > li + li {margin: 80px 0 0 0;}
    .memLevelGuide > ol > li > ul > li {width: 100%;max-width: 276px;margin: 0 auto;}
    .memLevelGuide > ol > li + li::after {left: 50%;margin-left: -25px;top: -60px;transform: rotate(90deg);width: 50px;}
    .memLevelGuide > ol > li:nth-child(4) {margin: 80px auto 0;width: 100%;max-width: 276px;}
}
@media screen and (max-width: 1023px) {
    .titList {flex-wrap: wrap;}
    .titList > li{width: calc((100% / 2) - 10px);}
    .titList > li:nth-child(3){margin-left: 0;}

    .memLevel {flex-wrap: wrap;}
    .memLevel > li{width: calc(50% - 10px);}
    .memLevel > li:nth-child(3) {margin-left: 0px;}
    .memLevel > li:nth-child(n + 3) {margin-top: 80px !important;}
    .memLevel > li + li {margin-left: 20px;}
}
@media screen and (max-width: 767px) {
    .titList > li{width: 100%;margin: 0 0 20px 0 !important;}

    .memLevel > li{width: 100%;padding: 20px;}
    .memLevel > li + li {margin: 80px 0 0 0 !important}
    .imgBox.line {padding: 10px;}
}
/*-- 세종S멤버십 */
/* 주차안내 */
.parkingBox {
    display: flex;
}
.parkingBox > div:nth-child(1){
    width: 300px;
}
.parkingBox > div:nth-child(2){
    width: calc(100% - 300px);
    border-top: #000 solid 2px;
}
.parkingBox > div:nth-child(1) > ul > li{
    font-size: 30px;
    border-top: #000 solid 3px;
    padding: 20px 0 0;
}
.parkingBox > div:nth-child(1) > ul > li > ul {
    border-top: #000 solid 1px;
    margin-top: 15px;
}
.parkingBox > div:nth-child(1) > ul > li > ul > li{
    font-size: 18px;
    border-bottom: #000 solid 1px;
    background: url('../img/content/icon_arr.png') calc(100% - 28px) 23px / 4px auto no-repeat;
}
.parkingBox > div:nth-child(1) > ul > li > ul > li:hover,
.parkingBox > div:nth-child(1) > ul > li > ul > li.on{
    background: url('../img/content/icon_arr_on.png') calc(100% - 28px) 23px / 4px auto no-repeat #5fceea;
}
.parkingBox > div:nth-child(1) > ul > li > ul > li > a{
    display: block;
    padding: 15px 50px 15px 25px;
    position: relative;
}
.parkingBox > div:nth-child(1) > ul > li > ul > li > a::after{
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    left: 10px;
    top: 24px;
}
@media screen and (max-width: 1439px) {
    .parkingBox {flex-direction: column-reverse}
    .parkingBox > div {width: 100% !important;border-top: none !important;}
    .parkingBox > div:nth-child(1) {margin-top: 30px;}
}
/*-- 주차안내 */
/* --02 이용안내 */
/* 05 모든누구나 */
/* 모든누구나 소개 */
.everything {padding: 0}
.everything > ul .cont,
.everything .movie {width: 100%;}
.everything > ul .tit {
    margin: 55px 0 10px 0 !important;
    font-size: 30px;
    font-family: 'modern';
}
.everything > ul .cont {
    padding: 0;
    border-top: none;
    border-bottom: none !important;
}

.img {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 10px;
}
.img.cnt3 > *{width: calc(100% / 3);}

h4.every {margin-top: 10px;}
h4.every span {font-size: 45px; display: block;}

@media screen and (max-width: 768px) {
    .everything .movie {margin-top: 30px;}
    .img {flex-wrap: wrap;}
    .img.cnt3 > *{width: 100%;}

    h4.every span {font-size: 30px;}
}
/*-- 모든누구나 소개 */
/* 누구나 클래식 > 이달의 공연 */
.noCont {
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    background-color: #f4f4f4;
    text-align: center;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.noCont p{
    font-size: 30px;
    margin-bottom: 10px;
    padding-top: 80px;
    background: url('../img/content/no_list.png') center top / 63px auto no-repeat;
}
.noCont span{font-size: 20px;}

.search_sub .noCont {
    width: 100% !important;
    padding: 120px 20px 20px !important;
    border-right: none !important;
    height: 278px;
    vertical-align: top;
    border-top: 2px solid #000 !important;
}
.search_sub td.noCont {border-top: 2px solid #000 !important; display: table-cell !important;}
.search_sub li.noCont {display: block !important;}
.search_sub li.noCont span {border: none !important; font-size: 20px; display: block !important; width: 100%; padding: 0;}

@media screen and (max-width: 425px) {
    .search_sub .show_list .noCont {padding: 160px 20px 20px !important;}
}
/*-- 누구나 클래식 > 이달의 공연 */
/* 누구나 클래식 > 행복동행석 */
.priceSelBox {
    display: flex;
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    padding: 30px 0;
}
.priceSelBox dt{
    border-right: #000 dashed 1px;
    min-width: 272px;
    text-align: center;
    background: url('../img/content/icon_price.png') center 30px no-repeat;
    padding: 160px 20px 20px;
    font-size: 30px;
}
.priceSelBox dd{
    padding: 25px 0 25px 70px;
    font-size: 20px;
}
.priceSelBox.type2 dt {background-image: url('../img/content/icon_price2.png');}
.classic,
.classic *{
    font-size: 30px !important;
    font-family: 'classic';
}
.classic.fs48{
    font-size: 48px !important;
    font-family: 'classic';
}
.modern,
.modern *{
    font-family: 'modern' !important;
}
@media screen and (max-width: 768px) {
    .priceSelBox {flex-direction: row;flex-wrap: wrap;padding-bottom: 0;}
    .priceSelBox dt{
        width: 100%;
        border-right: none;
        border-bottom: #000 dashed 1px;
        background-position: center 10px;
        padding: 140px 20px 20px;
    }
    .priceSelBox dd {padding: 25px 0;}
}
.writeBox {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    border-top: #000 solid 2px;
    border-bottom: #000 solid 2px;
    margin-top: 6px;
    padding-bottom: 55px;
}
.writeBox > li{
    width: calc(50% - 15px);
    margin: 30px 0 0 ;
}
.writeBox > li > p{
    font-size: 20px;
    display: block;
}
.writeBox > li > p.checkTxt{background-color: transparent;}
.writeBox > li > div{
    margin: 15px 0 10px;
    font-size: 17px;
}
.writeBox > li > div input[type='number'],
.writeBox > li > div input[type='password'],
.writeBox > li > div input[type='file'],
.writeBox > li > div input[type='text'],
.writeBox select {
    border: none;
    border-bottom: #000 solid 1px;
    width: 100%;
    line-height: 49px;
    height: 50px;
    padding: 0;
    font-size: 17px !important;
}
.writeBox select {padding-right: 30px;}
.writeBox textarea {
    border: #000 solid 1px;
    width: 100%;
    height: 150px;
    padding: 20px;
}
.writeBox .postNum {max-width: 250px;margin-right: 17px;}
.writeBox .fileName {max-width: 388px;margin-right: 17px;}
[class^='inputCnt'] {display: flex;}
.inputCnt3 select,
.inputCnt3 input[type='text'] {width: calc(100% - 30px) !important;}
.inputCnt3 li{
    width: calc(100% / 3);
}
.writeBox > li > div .inputCnt2{
    justify-content: space-between;
}
.writeBox > li > div .inputCnt2 > li {
    border-bottom: #000 solid 1px;
    width: calc(50% - 20px);
}
.writeBox > li > div .inputCnt2 > li > label {
    line-height: 50px;
    display: inline-block;
}
.writeBox > li > div .inputCnt2 > li input {border-bottom: none;}
.writeBox > li > div .inputCnt2 > li:nth-child(1) input {width: calc(100% - 70px);}
.writeBox > li > div .inputCnt2 > li:nth-child(2) input {width: calc(100% - 40px);}
.writeBox .inputTbl {
    width: 50%;
    border-top: #000 solid 1px;
}
.writeBox .inputTbl table {width: 100%;}
.writeBox input[type='radio'] + span,
.writeBox input[type='checkbox'] + span{font-size: 20px !important;}
.writeBox input[type='radio'] + span::after,
.writeBox input[type='checkbox'] + span::after {top: 4px;}
.inputTbl th,
.inputTbl td{
    border-bottom: #000 solid 1px;
    text-align: center;
    font-weight: normal;
    padding: 10px;
    position: relative;
    font-size: 18px;
}
.inputTbl th + th::after,
.inputTbl td + td::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 20px);
    position: absolute;
    background-color: #000;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.h119px {height: 119px;}
@media screen and (max-width: 768px) {
    .writeBox {gap: 0;}
    .writeBox > li {width: 100%;}
    .writeBox .fileName {width: calc(100% - 110px) !important;margin-right: 5px;}
    .writeBox .postNum {width: calc(100% - 142px) !important;margin-right: 5px;}
    .h119px {height: auto}
}
@media screen and (max-width: 425px) {
    .writeBox > li > div .inputCnt2 {display: block;}
    .writeBox > li > div .inputCnt2 > li {width: 100%;}
}
@media screen and (max-width: 374px) {
    .inputCnt3 {display: block;}
    .inputCnt3 li{width: 100%;}
}
.happyEnd {
    display: flex;
    max-width: 1120px;
    min-height: 373px;
    margin: 0 auto;
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
    position: relative;
}
.happyEnd::after{
    content: "";
    display: block;
    width: 38px;
    height: calc(100% - 20px);
    background-color: #000;
    position: absolute;
    right: 0;
    top: 10px;
}
.happyEnd > p:nth-child(1) {
    background: url('../img/content/img_happyEnd.png') center 62px / 123px auto no-repeat #ffe800;
    width: 351px;
    border-right: #000 dashed 1px;
    padding: 230px 30px 0;
    font-size: 36px;
    text-align: center;
    font-family: 'classic';
}
.happyEnd > p:nth-child(2){
    width: 109px;
    background: url('../img/content/img_happyLogo.png') center / auto 334px no-repeat #ffe800;
    text-indent: -99999px;
}
.happyEnd > div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin: 0 16px 0 24px;
}
.happyEnd > div > div{
    width: 579px;
}
.lineList {border-top: #000 solid 1px;}
.lineList > li {
    font-size: 20px;
    border-bottom: #000 solid 1px;
    padding: 12px 0;
}
@media screen and (max-width: 1180px) {
    .happyEnd {
        flex-wrap: wrap;
        border: #000 solid 2px;
        border-top: none;
        border-bottom: none;
        max-width: 640px;
        padding-bottom: 80px;
    }
    .happyEnd > * {width: 100% !important;}
    .happyEnd > p:nth-child(1) {
        border-right: none;
        padding: 190px 10px 37px;
        background-position: center 44px;
        line-height: 38px;
        font-size: 30px;
    }
    .happyEnd > p:nth-child(2){
        background: url('../img/content/img_happyLogo_m.png') center / auto 51px no-repeat #ffe800;
        border-top: #000 dashed 1px;
        height: calc(147px / 2);
    }
    .happyEnd::after {
        width: calc(100% - 26px);
        height: 34px;
        top: auto;
        left: 13px;
        bottom: 0;
    }
    .happyEnd > div {margin: 55px 24px 0;}
    .happyEnd > div > div {width: 100%;}
    .lineList > li {font-size: 18px;}
}
@media screen and (max-width: 375px) {
    .happyEnd > p:nth-child(2) {background-size: 90% auto;}
}
/*-- 누구나 클래식 > 행복동행석 */
/* 동행소개 */
.artHistory {
    display: flex;
    flex-wrap: wrap;
}
.artHistory > li {
    width: 50%;
    position: relative;
    border-bottom: #000 solid 1px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    align-items: center;
}
.artHistory > li span{
    font-size: 20px;
    text-align: right;
}
.artHistory > li:nth-child(odd){padding-right: 30px;}
.artHistory > li:nth-child(even){padding-left: 30px;}
.artHistory > li:nth-child(even)::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    background-color: #000;
    position: absolute;
    left: 0;
    top: 20px;
}
.historyBtn {position: relative;}
.historyBtn > div{
    position: absolute;
    right: 0;
    top: 0;
}
.historyBtn > div button{
    background-repeat: no-repeat;
    background-size: 12px auto;
    width: 32px;
    height: 21px;
}
.historyBtn > div button.prev{
    background-image: url('../img/content/btn_prev2.png');
    background-position: calc(100% - 20px) center;
}
.historyBtn > div button.next{
    background-image: url('../img/content/btn_next2.png');
    background-position: right center;
    border-left: #000 solid 1px;
}

@media screen and (max-width: 1279px) {
    .artHistory > li {width: 100%;}
    .artHistory > li:nth-child(odd){padding-right: 0px;}
    .artHistory > li:nth-child(even){padding-left: 0px;}
    .artHistory > li:nth-child(even)::after {display: none;}
}
@media screen and (max-width: 425px) {
    .artHistory > li{display: block;padding: 10px 0;}
    .historyBtn {padding-bottom: 40px;}
    .historyBtn > div{top: 40px;}
}
/*-- 동행소개 */
/* FAQ */
.faq {
    border-top: #000 solid 2px;
}
.faq dt,
.faq dd{
    border-bottom: #000 solid 1px;
    padding: 23px 20px;
    font-size: 22px;
}
.faq dt a{
    text-indent: -30px;
    display: block;
    padding: 0 20px 0 30px;
}
.faq dt{
    background: url('../img/content/icon_down.png') calc(100% - 22px) 37px / 9.5px auto no-repeat;
}
.faq dd{
    font-size: 16px;
    text-indent: -45px;
    padding-left: 45px;
    display: none;
}
.faq dd span{
    font-size: 22px;
    padding: 0 3px 0 20px;
}
.faq dt.on {
    background: url('../img/content/icon_up.png') calc(100% - 22px) 37px / 9.5px auto no-repeat #ffea00;
    border-bottom: none;
    padding: 23px 20px 0;
}
.faq dt.on a{
    border-bottom: #000 dashed 1px;
    padding-bottom: 23px;
}
.faq dt.on + dd{
    display: block;
    background-color: #ffea00;
}
@media screen and (max-width: 1024px) {
    .faq {margin-top: 50px;}
}
/*-- FAQ */
/* 발자취 */
.newsList > li{
    border: #000 solid 1px;
    margin: 10px 0;
}
.newsList > li > a{
    padding: 12px 10px 12px 60px;
    font-size: 18px;
    display: block;
    background: url('../img/content/icon_news.png') 10px 10px / 31px auto no-repeat;
}
.newsList > li > a:hover{
    background-color: #ffea00;
}
/*-- 발자취 */
/*-- 05 모든누구나 */

/* 06 세종문화회관 */
/* 기관소개 > 연혁 */
.history .title {
    font-size: 48px;
    font-family: 'classic';
    padding: 13px 35px;
    position: sticky;
    top: 0;
    border: #000 solid 1px;
    margin-top: 60px;
}
.history .title.fix {
    position: fixed;
    top: -60px;
    width: calc(100% - 60px);
    max-width: 1740px;
    z-index: 2;
}
.history .title.on {
    background-color: #000;
    color: #fff;
}
.history .title > a {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 98px;
    height: 98px;
    text-align: center;
    text-indent: -99999px;
    overflow: hidden;
    border-left: #000 solid 1px;
    background: url('../img/content/btn_open.png') center / 60px auto no-repeat #fff;
}
.history .title.on > a {
    background-image: url('../img/content/btn_close.png');
}
.history > div > ul {
    border-top: #000 solid 1px;
    margin: 75px 0 0;
    display: none;
}
.history .title.on + ul {
    display: block;
}
.history > div > ul > li{
    display: flex;
    border-bottom: #000 solid 1px;
    padding: 20px;
    font-family: 'classic';
}
.history > div > ul > li > div:nth-child(1){
    font-size: 72px;
    width: 325px;
    letter-spacing: -5px;
    flex-shrink: 0;
}
.history > div > ul > li > ul{
    margin-top: 20px;
    flex-grow: 1;
}
.history > div > ul > li > ul > li {
    text-decoration: underline;
    text-underline-position: under;
}
.history > div > ul > li > ul span{
    font-size: 30px;
}
.history > div > ul > li > ul p{
    font-size: 24px;
    display: inline;
}
.history > div > ul > li > .img{
    max-width: 700px;
    text-align: right;
    display: flex;
    margin-left: 20px;
    justify-content: flex-end;
    flex-shrink: 0;
}
.history > div > ul > li > .img > div {align-content: flex-end;}
.history > div > ul > li > .img div + div{
    margin-left: 27px;
}
.history.type2 > div > ul {display: block;}
.history.type2 > div > ul > li > ul > li {
    margin: 0 0 10px;
}
.history.type2 > div > ul > li > ul span {
    font-size: 24px;
}
@media screen and (max-width: 1619px) {
    .history > div > ul > li > div:nth-child(1){width: 200px;}
}
@media screen and (max-width: 1439px) {
    .history > div > ul > li > .img{width: 300px;}
}
@media screen and (max-width: 1023px) {
    .history > div > ul > li {flex-wrap: wrap;}
    .history > div > ul > li > .img{width: 100%;justify-content: flex-start;margin-top: 20px;margin-left: 0;}
    .history > div > ul > li > .img div + div {margin-left: 20px;}
    .history > div > ul > li > .img div {width: calc(50% - 10px);}
    .history > div > ul > li > .img img {width: 100%;}
    .history .title.fix {width: calc(100% - 40px);}
}
@media screen and (max-width: 767px) {
    .history .title {font-size: 25px;padding: 0 85px 0 10px;line-height: 70px;}
    .history .title.fix {width: calc(100% - 40px);}
    .history .title > a {width: 73px;height: 70px;background-size: 30px auto;}
    .history > div > ul {margin: 30px 0 0 ;}
    .history > div > ul > li {padding: 15px 0;}
    .history > div > ul > li > div:nth-child(1) {font-size: 40px;letter-spacing: -2px;}
    .history > div > ul > li > ul {margin-top: 15px;}
    .history > div > ul > li > ul p {font-size: 22px;}
    .history > div > ul > li > ul span {font-size: 24px;}
    .history > div > ul > li > .img {flex-wrap: wrap;}
    .history > div > ul > li > .img div {width: 100%;}
    .history > div > ul > li > .img div + div {margin: 10px 0 0 ;}
}
@media screen and (max-width: 319px) {
    .history .title {font-size: 20px;}
}
/*-- 기관소개 > 연혁 */
/* 기관소개 > 비전 */
.vision dt,
.vision dt span {
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    display: inline-block;
    font-size: 36px;
    font-family: 'classic';
    margin-bottom: 45px;
}
.vision dd + dt {margin-top:  105px;}
.goal {
    display: flex;
    justify-content: space-between;
}
.goal li {
    position: relative;
    background-color: #fff;
    border: #000 solid 1px;
    border-radius: 50%;
    width: calc(100% / 3);
    padding: 50px 10px;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.goal li + li {margin-left: 105px;}
.goal li > span {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000;
    font-size: 26px;
    line-height: 50px;
    text-align: center;
    color: #fff;
}
.goal li + li::after{
    content: "+";
    display: block;
    background: url('../img/content/icon_plus.png') center / 80px auto no-repeat;
    position: absolute;
    left: -92px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 100px;
    text-indent: -99999px;
}
.task {
    display: flex;
    justify-content: space-between;
}
.task li {
    width: calc(100% / 5);
    align-self: stretch;
    background: url('../img/content/ask_menu_line54.png') 0 bottom ;
}
.task li + li {margin-left: 42px;}
.task li > span{
    font-size: 55px;
    display: block;
    background-color: #f1f1f1;
}
.task li > p{
    font-size: 22px;
    color: #fff;
    background-color: #000;
    padding: 11px 10px;
}
.task li > ol > li{
    line-height:  54px;
    text-align: left;
    font-size: 19px;
}
.value {display: flex;}
.value li {
    width: calc(100% / 3);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 305px;
    padding: 70px 81px;
}
.value li + li {margin-left: 8px;}
.value li:nth-child(1){background-image: url('../img/content/value_01.png');}
.value li:nth-child(2){background-image: url('../img/content/value_02.png');}
.value li:nth-child(3){background-image: url('../img/content/value_03.png');}
.value li > p{font-size: 30px;}
.value li > span{font-size: 20px;}
.value li > div{
    border-top: #000 solid 1px;
    font-size: 17px;
    line-height: 28px;
    margin: 20px 0 0;
    padding: 15px 0 0;
}

/* 비전 2025 */
.vision > div {display: flex; align-items: flex-start;}
.vision > div + div {margin-top: 100px;}
.vision > div dt {
    margin-right: calc(20% - 100px);
    font-size: 28px;
    width: 100px;
    position: relative;
}
.vision > div dt span {
    font-size: inherit;
    position: absolute;
    left: 0;
    top: 85px;
    width: 100px;
}
.vision > div dd {width: 80%;}
.vision > div .tit {line-height: 130%; margin-top: -15px;}
.vision > div .tit.small {font-size: 60px;}
.vision > div.middle {align-items:center;}
.vision > div.middle dt {margin-bottom: 0;}

.vision .tit_color {display: flex;}
.vision .tit_color li {
    font-size: 40px;
    width: 100%;
    line-height: 130%;
}
.vision .tit_color li + li {margin-left: 30px;}
.vision .tit_color li:nth-child(1) span {background-color: #ffe800;}
.vision .tit_color li:nth-child(2) span {background-color: #7fd6ec;}
.vision .tit_color li:nth-child(3) span {background-color: #cd8a46;}
.vision .tit_color li:nth-child(4) span {background-color: #acacac;}

.diamond_color {display: flex;}
.diamond_color li {
    width: 100%;
    height: 180px;
    padding: 60px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}
.diamond_color li + li {margin-left: 30px;}
.diamond_color li:nth-child(1) {background: url('../img/content2/diamond_color01.png') center / 100% auto no-repeat;}
.diamond_color li:nth-child(2) {background: url('../img/content2/diamond_color02.png') center / 100% auto no-repeat;}
.diamond_color li:nth-child(3) {background: url('../img/content2/diamond_color03.png') center / 100% auto no-repeat;}
.diamond_color li:nth-child(4) {background: url('../img/content2/diamond_color04.png') center / 100% auto no-repeat;}

.vision.type2 .goal li + li {margin-left: 30px;}
.vision.type2 .goal li + li::after {display: none;}

.vision_list {display: flex;}
.vision_list > li {width: 100%;}
.vision_list > li + li {margin-left: 30px;}
.vision_list p {
    min-height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    font-size: 22px;
    word-break: keep-all;
    padding: 5px 10px;
}
.vision_list ol {text-align: left;}
.vision_list ol li {
    min-height: 82px;
    position: relative;
    font-size: 19px;
    padding: 12px 0 12px 22px;
    border-bottom: 1px solid #000;
}
.vision_list ol li span {position: absolute; left: 0;}

.vision.type2 > *:nth-child(n + 4) dd > * > li {position: relative;}
.vision.type2 > *:nth-child(n + 4) dd > * > li::before {
    content: '';
    width: 0;
    height: 100px;
    border-left: 1px dashed #a8a8a8;
    position: absolute;
    top: -100px;
}

@media screen and (max-width: 1800px) {
    .task {flex-wrap: wrap; gap: 20px 10px;}
    .task li {width: calc(100% / 3); flex: 1 1 40%;}
    .task li + li {margin-left: 0;}
}
@media screen and (max-width: 1440px) {
    .value, .goal:not(.type2) {flex-wrap: wrap;}
    .goal:not(.type2) li {width: 100%; padding: 100px 10px;}
    .goal:not(.type2) li + li {margin: 155px 0 0;}
    .goal:not(.type2) li + li::after {left: 50%; top: -140px; transform: translateX(-50%);}
    .value li {width: 100%; padding: 50px 71px 90px;}
    .value li + li {margin: 10px 0 0;}
}
@media screen and (max-width: 1260px) {
    .vision > div {display: block;}
    .vision > div dt {margin-right: 0;}
    .vision > div dt.type2 {margin-right: 105px; padding-right: 10px; width: 110px;}
    .vision > div dt span {top: -1px; left: 110px;}
    .vision > div dd {width: 100%;}
    .vision > div.middle dt {margin-bottom: 45px;}
    .vision.type2 > *:nth-child(n + 4) dd > * > li::before {display: none;}
}
@media screen and (max-width: 1024px) {
    .vision dd + dt {margin-top: 70px;}
    .vision_list ol li {min-height:auto}
    .goal li {padding: 50px 10px;}
    .goal li + li::after {
        width: 60px;
        height: 80px;
        background-size: 100% auto;
        top: -130px;
    }

    .vision.type2 > *:nth-child(n + 3) dd > * {flex-wrap: wrap;}
    .vision.type2 > *:nth-child(n + 3) dd > * > li {width: calc((100% - 30px) / 2);}
    .vision.type2 > *:nth-child(n + 3) dd > * > li:nth-child(2n + 1) {margin-left: 0;}
    .vision.type2 > *:nth-child(n + 3) dd > * > li:nth-child(n + 3) {margin-top: 30px;}

    .diamond_color li {height: auto;}
    .vision .tit_color, .diamond_color {max-width: 600px; margin: 0 auto;}
}
@media screen and (max-width: 768px) {
    .task li {width: 100%; flex: 1 1 50%;}

    .vision > div + div {margin-top: 60px;}
    .vision > div .tit.small {font-size: 30px;}
    .vision .tit_color li {font-size: 28px;}
    .diamond_color li {padding: 55px 10px;}
    .diamond_color li {font-size: 22px;}
    .vision .tit_color, .diamond_color {max-width: 500px;}
    .vision.type2 .goal li {font-size: 18px; padding: 25px 10px;}
    .vision.type2 .goal li > span {
        font-size: 18px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .vision_list p {font-size: 18px;}
    .vision_list ol li {font-size: 16px; padding: 8px 0 8px 18px;}
    .vision.type2 > *:nth-child(n + 3) dd > * > li {width: calc((100% - 15px) / 2);}
    .vision.type2 > *:nth-child(n + 3) dd > * > li:nth-child(2n) {margin-left: 15px;}
}
@media screen and (max-width: 500px) {
    .vision .tit_color, .diamond_color {max-width: 250px;}
    .vision.type2 > *:nth-child(n + 3) dd > * > li {width: 100%;}
    .vision.type2 > *:nth-child(n + 3) dd > * > li:nth-child(2n) {margin-left: 0;}
    .vision.type2 > *:nth-child(n + 3) dd > * > li:nth-child(n + 2) {margin-top: 30px;}
}
@media screen and (max-width: 375px) {
    .goal li {font-size: 22px; padding: 50px 10px 30px;}
    .goal li + li::after {width: 40px; height: 40px; top: -80px;}
    .goal li + li {margin-top: 100px;}
    .value li {background-size: auto 100%; padding: 30px 20px 50px;}
    .value li > p {font-size: 24px;}
    .value li > div{margin-top: 10px; padding-top: 10px; font-size: 16px; line-height: 24px;}
}
/*-- 기관소개 > 비전 */
/* 기관소개 > CI 소개 */
.videoBox iframe {
    width: 100%;
    height: 969px;
}
.videoBox.type2 iframe {height: 650px;}
.ci > dt {
    margin-top: 70px;
    font-size: 52px;
    font-family: 'classic';
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    padding: 7px 0 2px;
    min-height: 95px;
}
.ci > dt .txtR {
    text-align: right;
    margin-top: -85px;
}
.ci > dt .txtR > a{min-width: auto;}
.ci .cont {
    padding: 20px 0 0;
    font-size: 22px;
    line-height: 40px;
    word-break: keep-all;
}

.ci > dd > p{
    display: block;
    font-size: 26px;
    padding: 10px 0;
    border-bottom: #000 solid 1px;
}
.ci .goal {
    max-width: 1423px;
    margin: 55px auto 0;
}
.ci .goal > li {
    width: 406px;
    height: 406px;
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ci .goal > li > p {
    font-size: 60px;
}
.ci .goal > li > span {
    position: static;
    background-color: transparent;
    color: #000;
    border-radius: 0;
    font-size: 26px;
    width: 100%;
    height: auto;
    transform: none;
}
.imgBoxBlack {
    display: flex;
    background: #000;
    margin-top: 40px;
    justify-content: center;
}
.imgBoxBlack > *{position: relative;}
.imgBoxBlack > * + *::after{
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 46px);
    background-color: #fff;
    position: absolute;
    left: -1px;
    top: 23px;
}
.ciBox {
    background: url('../img/content/ci_bg.png');
    border: #000 solid 1px;
    min-height: 300px;
    display: flex;
    justify-content: center;
    gap: 0 220px;
    padding: 30px 30px 11px;
    margin-top: 60px;
}
.ciBox > div:nth-child(2){
    align-content: flex-end;
}
.ciList {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 45px;
    gap: 34px;
}
.ciList > li{
    width: calc(50% - 17px);
    text-align: center;
}
.ciList > li > p{font-size: 20px;}
.ciList > li > div{
    background: url('../img/content/ci_bg.png');
    border: #000 solid 1px;
    min-height: 300px;
    padding: 30px 10px 11px;
    align-content: center;
    margin: 15px 0 0;
}
.ciList.cnt3,
.ciList.cnt5{gap: 15px 40px;}
.ciList.cnt3 > li{width: calc((100% / 3) - 26.6666px);}
.ciList.cnt5 > li{width: calc((100% / 5) - 32px);}
.ciList.cnt3 > li > div{min-height: 200px;}
.ciList.cnt5 > li > div{min-height: 120px;}
.ciList.cnt5{padding-bottom: 30px;}
.color {
    display: flex;
    margin-top: 40px;
}
.color > li {
    flex-grow: 1;
}
.color > li > div {
    border: #000 solid 1px;
    height: 333px;
    font-size: 33px;
    font-family: "classic";
    padding: 25px 20px;
    align-content: flex-end;
}
.color > li + li > div {border-left: none;}
.color > li + li > ul {border-left: #fff solid 6px;}
.color > li:nth-child(1) {
    flex-shrink: 0;
    width: 495px;
}
.color > li:nth-child(1) > div {
    background-color: #000;
    color: #fff;
}
.color > li:nth-child(2) > div {background-color: #54c8e8;}
.color > li:nth-child(3) > div {background-color: #ffe800;}
.color > li:nth-child(4) > div {background-color: #c36d15;}
.color > li:nth-child(5) > div {background-color: #fff;}

.color > li > ul {
    margin-top: 25px;
    font-size: 22px;
}
.color > li > ul > li{
    border-bottom: #000 solid 1px;
    display: flex;
    padding: 3px 0 1px;
}
.color > li > ul > li > p{
    width: 85px;
}
@media screen and (max-width: 1820px) {
    .color > li {width: calc(100% / 5) !important;}
}
@media screen and (max-width: 1439px) {
    .ci .goal {display: block;width: 406px;}
    .ci .goal > li + li::after {top: -120px;}
    .videoBox iframe {height: 700px;}
    .videoBox.type2 iframe {height: 500px;}
    .ciList.cnt5 > li{width: calc((100% / 3) - 26.6666px);}

    .color {flex-wrap: wrap;}
    .color > li {width: calc(100% / 4) !important;margin-bottom: 30px;}
    .color > li:nth-child(1) {width: 100% !important;}
    .color > li:nth-child(2) > div {border-left: #000 solid 1px;}
    .color > li > ul > li > p {width: 70px;}
}
@media screen and (max-width: 1023px) {
    .videoBox iframe {height: 400px;}
    .videoBox.type2 iframe {height: 300px;}
    .ciBox {gap: 0 100px;}
    .ci > dt .txtR {margin: -20px 0 10px;text-align: left;}
    .color > li {width: calc(100% / 2) !important;}
    .color > li:nth-child(2) > div,
    .color > li:nth-child(4) > div {border-left: #000 solid 1px;}
    .color > li > ul > li > p {width: 85px;}
    .color > li > div {height: 200px}
}
@media screen and (max-width: 767px) {
    .imgBoxBlack {flex-wrap: wrap;}
    .imgBoxBlack > * {width: 100%;text-align: center;}
    .imgBoxBlack > * + *::after{
        width: calc(100% - 46px);
        height: 1px;
        left: 23px;
        top: -1px;
    }
    .ci > dt {margin-top: 50px;font-size: 42px;}
    .ci > dd > p {font-size: 24px;}
    .ci .cont {font-size: 20px;line-height: 30px;}
    .ciBox {gap: 0 20px;}
    .ciList {gap: 20px;}
    .ciList.cnt3, .ciList.cnt5 {gap: 15px 20px;}
    .ciList > li {width: 100% !important;}
    .color > li {width: 100% !important;}
    .color > li > div {border-left: #000 solid 1px !important;}
}
@media screen and (max-width: 500px) {
    .ci .goal {width: 100%;}
    .ci .goal > li {width: 100%;height: calc(100vw - 40px);}
    .videoBox iframe {height: 230px;}
}
@media screen and (max-width: 374px) {
    .ci .goal > li > p {font-size: 50px;}
    .ci .goal > li > span {font-size: 24px;line-height: 30px;word-break: keep-all;}
    .ci .goal > li + li::after {top: -70px;}
    .ciBox {padding: 20px;min-height: auto;}
    .ciList > li > div {min-height: auto;}
}
/*-- 기관소개 > CI 소개 */
/* 기관소개 > 뉴스레터 */
.newsLetter {
    border-top: #000 solid 1px;
}
.newsLetter > li{
    border-bottom: #000 solid 1px;
    padding: 40px 0 30px;
}
.newsLetter > li > a{
    display: flex;
    gap: 52px;
    align-items: flex-start;
}
.newsLetter > li > a > div > span{
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    font-size: 20px;
    display: block;
    padding: 5px 0 3px;
}
.newsLetter > li > a > div > div{
    margin: 35px 0;
    font-size: 30px;
}
.newsLetter > li > a:hover > div > div,
.newsLetter > li > a:hover > div > p{
    text-decoration: underline;
    text-underline-position: under;
}
.newsLetter > li > a > div:nth-child(1){
    position: relative;
    width: 450px;
    flex-shrink: 0;
}
.newsLetter > li > a > div:nth-child(1) img{
    display: block;
    width: 100%;
}
.newsLetter > li > a:hover > div:nth-child(1)::after,
.newsLetter > li > a:hover > div:nth-child(1)::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
}
.newsLetter > li > a:hover > div:nth-child(1)::before{
    content: "자세히보기";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url('../img/content/letter_zoom.png') center / 118px auto no-repeat;
    z-index: 1;
}
.newsLetter > li > a > div:nth-child(2){flex-grow: 1}
@media screen and (max-width: 1439px) {
    .newsLetter > li > a {gap: 30px}
    .newsLetter > li > a > div:nth-child(1) {width: 400px;}
}
@media screen and (max-width: 1023px) {
    .newsLetter > li > a {flex-wrap: wrap;}
    .newsLetter > li > a > div:nth-child(1) {width: 100%;}
    .newsLetter > li {padding: 20px 0;}
    .newsLetter > li > a > div > div {font-size: 24px;margin: 20px 0;}
}
/*-- 기관소개 > 뉴스레터 */
/* 기관소개 > 조직도 */
.organ_top{
    text-align: center;
    position: relative;
}
.organ_top:before{
    position: absolute;
    left: 50%;
    width: 1px;
    height: 600px;
    background: #000;
    content: ''
}
.organ_top .st1{
    display: block;
    font-size: 30px;
    font-weight: normal;
    width: 190.8px;
    height: 151.19px;
    line-height: 149.19px;
    margin: 0 auto;
    position: relative;
    background: #5fceea;
    border-radius:50%;
    border:1px solid #000;
    color: #000
}
.organ_top .st1.pur{
    background: #ffe800;
    margin-top:36px
}
.organ_top .l{
    padding-left: 463px;
    float: right;
    width: 50%;
    position: relative;
}
.organ_top .l:before{
    width: 463px;
    left: 0;
    top:50%;
    content: '';
    position: absolute;
    background: #000;
    height: 1px
}
.organ_top .st2{
    width: 100%;
    min-height: 52px;
    font-size: 22px;
    font-weight: normal;
    border:1px solid #000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color:#fff
}
.organ_top .st2.r{
    background: #e0e0e0;
    color:#000;
    max-width: 200px;
    line-height: 128px;
}
.organ_top .left{
    width: 18%;
    float: left;
    padding-top: 160px;
    position: relative;
}
.organ_top .right{
    width: 79.7%;
    float: right;
    margin-top: 69px;
    position: relative;
}
.organ_top .right:before{
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    height: 1px;
    background: #000;
    content: '';
    transform: translateX(-50%);
    z-index: 1;
}
.organ_top .left:after{
    position: absolute;
    left: 50%;
    top: 0;
    width: 228%;;
    height: 1px;
    background: #000;
    content: ''
}
.organ_top .right > ul{
    margin-left: -2%;
    display: flex;
    align-items: flex-start;
}
.organ_top .right > ul > li{
    width: 100%;
    margin: 0 0 0 2%;
    position: relative;
    padding-top: 37px;
    background-color: #f1f1f1;
}
.organ_top .right > ul > li:first-child::after,
.organ_top .right > ul > li:last-child::after {
    content: '';
    width: 50%;
    height: 1px;
    display: block;
    background-color: #f1f1f1;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.organ_top .right > ul > li:last-child::after {left: auto; right: 0;}
.organ_top .item_w .com:before{
    position: absolute;
    left: 50%;
    top:0;
    width: 1px;
    height: 100%;
    content: '';
    background: #000
}
.organ_top .box{
    background: #f1f1f1;
    border:1px solid #000;
    border-left: none;
    border-right: none;
    position: relative
}
.organ_top .box li {
    border-top: 1px solid #000;
    font-size: 19px;
    padding: 13px 5px 11px;
}
.organ_top .box li:first-child {border-top: 0;}
.organ_top .box a {display: block; font-size: inherit;}
.organ_top .small{
    display: block;
    font-size: 0.889em;
    margin-top: .3em;
    color:#999;
    font-weight:400
}
.oran .top .bul-mark{
    color:#999
}
.organ_top .box_w{
    background: #fff;
    padding-top: 1.5em;
    position: relative;
    z-index: 1;
}
.organ_top .box_w .st2:before{
    background: none;
    border:none;
    display: none;
}
.organ_top .st2.r a{
    display: block;
    font-size: 26px;
}
.lineBox {
    padding: 60px 50px 80px;
    border-bottom: #000 solid 1px;
}
@media screen and (max-width: 1546px) {
    .organ_top .l{padding-left: 36%;}
    .organ_top .l:before{width: 100%}
}
@media screen and (max-width: 1439px) {
    .organ_top .l{padding-left: 0;}
    .organ_top .st2.r {float: right;}
}
@media (max-width:768px){
    .organ_top .st2.r {line-height: 60px;max-width: 100px;}
    .organ_top .st2.r a {font-size: 20px;}
    .organ_top .item_w .st2 {font-size: 18px; line-height: 120%;}
    .organ_top .box li {font-size: 16px;padding: 8px 5px 5px;}
    .lineBox {padding: 30px 10px;}
}
@media screen and (max-width: 640px) {
    .organ_top{font-size: 1rem;margin-bottom: 1.5em;}
    .organ_top .box li {padding: 5px}
    .organ_top .st1{width: 5em;height: 4em;line-height: 4em;}
    .organ_top .item_w{padding-top: 3%;}
    .organ_top .left{padding-top: 10%;}
    .organ_top .right{margin-top: 8%;}
    .organ_top .right > ul > li{padding-top: 1.5em;}
}
/*-- 기관소개 > 조직도 */
/* 인권경영 > 인권경영이란? */
.humanMng {
    margin: 50px 0 0 0;
    display: flex;
    justify-content: center;
}
.humanMng > li {
    width: 410px;
    position: relative;
}
.humanMng > li + li {
    margin-left: 60px;
}
.humanMng > li + li::after {
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    position: absolute;
    left: -60px;
    top: 205px;
    background: url('../img/content/img_human_bg.png') 1px 0 no-repeat;
}
.humanMng > li div{
    background-color: #ffe800;
    border: #000 solid 1px;
    border-radius: 50%;
    width: 410px;
    height: 410px;
    background-position: center 100px;
    background-repeat: no-repeat;
    background-size: auto 131px;
    padding: 270px 0 0 0;
    font-size: 30px;
    font-family: 'classic';
}
.humanMng > li:nth-child(1) div{background-image: url('../img/content/img_human_01.png');}
.humanMng > li:nth-child(2) div{background-image: url('../img/content/img_human_02.png');}
.humanMng > li:nth-child(3) div{background-image: url('../img/content/img_human_03.png');}

.humanMng > li dl{
    margin: 35px 20px 0;
}
.humanMng > li dt{
    background-color: #000;
    color: #fff;
    font-size: 22px;
    padding: 11px 10px 10px;
}
.humanMng > li dd{
    background: url('../img/content/ask_menu_line54.png');
    line-height: 54px;
    word-break: keep-all;
}
@media screen and (max-width: 1440px) {
    .humanMng > li {width: 300px;}
    .humanMng > li div{
        width: 300px;
        height: 300px;
        background-size: auto 100px;
        background-position: center 70px;
        padding: 190px 0 0 0;
    }
    .humanMng > li + li::after {top: 150px;left: -30px;width: 30px;}
    .humanMng > li + li {margin-left: 30px;}
    .humanMng > li dd br{display: none}
}
@media screen and (max-width: 1023px) {
    .humanMng {display: block;margin: 30px 0 0;}
    .humanMng > li {width: 350px;margin: 0 auto;}
    .humanMng > li + li {margin: 15px auto 0;}
    .humanMng > li + li::after {display: none;}
    .humanMng > li div{
        width: 350px;
        height: 350px;
        background-size: auto 120px;
        background-position: center 70px;
        padding: 230px 0 0 0;
    }
}
@media screen and (max-width: 424px) {
    .humanMng > li {width: 240px}
    .humanMng > li div{
        width: 240px;
        height: 240px;
        background-size: auto 85px;
        background-position: center 60px;
        padding: 165px 0 0 0;
        font-size: 20px;
    }
    .humanMng > li dt{font-size: 18px;padding: 7px 5px 6px;}
    .humanMng > li dd{font-size: 15px;background-image: url('../img/content/ask_menu_line36.png');line-height: 36px;}
    .humanMng > li dl {margin: 15px 0;}
}
@media screen and (max-width: 319px) {
    .humanMng > li {width: 200px}
    .humanMng > li div{
        width: 200px;
        height: 200px;
        background-size: auto 65px;
        background-position: center 50px;
        padding: 125px 0 0 0;
    }
}
/*-- 인권경영 > 인권경영이란? */
/* 인권경영 > 인권경영헌장 */
.lawBox {
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    background: url('../img/content/img_law_bg.png') center 132px / 156px auto no-repeat;
    padding: 20px 11px;
    position: relative;
}
.lawBox::after,
.lawBox::before,
.lawBox > div::after,
.lawBox > div::before {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    background-color: #000;
    position: absolute;
    top: 20px;
}
.lawBox::after {left: 0;}
.lawBox::before {right: 0;}
.lawBox > div {
    border-left: #000 solid 1px;
    border-right: #000 solid 1px;
    position: relative;
    padding: 325px 160px 115px;
}
.lawBox > div::after {top: 0px;left: 11px;height: 100%;}
.lawBox > div::before {top: 0px;right: 11px;height: 100%;}
.lawBox .tit {
    font-size: 70px;
    font-family: 'classic';
    text-align: center;
}
.lawBox .tit + p{
    font-size: 26px;
    text-align: center;
    margin: 35px 0 75px;
    line-height: 46px;
}
.lawBox ul {
    border-top: #000 solid 1px;
    max-width: 960px;
    margin: 0 auto;
}
.lawBox ul > li{
    border-bottom: #000 solid 1px;
    display: flex;
    align-items: center;
    padding: 30px 9px;
    font-size: 26px;
}
.lawBox ul > li > span{
    display: block;
    color: #fff;
    background-color: #000;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    text-align: center;
    line-height: 82px;
    margin-right: 35px;
}
.lawBox ul > li > p{
    width: calc(100% - 82px - 35px);
    word-break: keep-all;
}
@media screen and (max-width: 1439px) {
    .lawBox > div {padding: 325px 50px 115px;}
}
@media screen and (max-width: 768px) {
    .lawBox {background-position: center 80px;background-size: 80px auto;}
    .lawBox > div {padding: 190px 30px 50px;}
    .lawBox .tit {font-size: 50px;}
    .lawBox .tit + p {font-size: 20px;line-height:  36px;}
    .lawBox ul > li {font-size: 20px;align-items: flex-start;}
    .lawBox ul > li > span {margin-right: 10px;width: 60px;height: 60px;line-height: 60px;}
    .lawBox ul > li > p {width: calc(100% - 70px);word-break: break-all;}
}
@media screen and (max-width: 374px) {
    .lawBox ul > li {display: block;}
    .lawBox ul > li > span {margin: 0 auto 15px;}
    .lawBox ul > li > p {width: 100%;}
}
/*-- 인권경영 > 인권경영헌장 */
/* 윤리규범 > 임직원행동강령 */
.scrollBox {
    border-left: #000 solid 1px;
    border-right: #000 solid 1px;
    padding: 0 9px;
}
.scrollBox > div {
    border-top: #000 solid 2px;
    border-bottom: #000 solid 2px;
}
.scrollBox .tit {
    border-bottom: #000 solid 1px;
    padding: 25px 10px ;
    font-size: 30px;
    font-family: 'classic';
}
.scrollBox .tit > div{
    margin-top: 0;
    float: right;
}
.scrollBox .tit::after{content: '';display: block;clear: both;}
.scrollBox .scroll {
    height: 560px;
    overflow-y: auto;
    margin: 10px 0;
    padding: 25px 10px;
}
.scrollBox .scroll::-webkit-scrollbar {width: 6px;}
.scrollBox .scroll::-webkit-scrollbar-thumb {background: #000; border-radius: 3px;}
.scrollBox .scroll h4{
    font-size: 24px !important;
    text-align: center;
    font-family: 'modern' !important;
}
.scrollBox .scroll .cont{
    margin: 40px 0 0;
    font-size: 18px;
    line-height: 32px;
}
.scrollBox .scroll .cont strong{
    font-weight: normal;
}
/*-- 윤리규범 > 임직원행동강령 */
/*-- 06 세종문화회관 */

/* 07 서울시예술단 */
.video_slide {position: relative;}
.video_slide .slick-track {display: flex;}
.video_slide iframe {height: 100%;}
.video_slide .slick-active {margin-left: 30px; height: 470px;}
.video_slide .slick-active * {width: 100%; height: 100%;}
.video_slide .slick-current {margin-left: 0 !important;}
.video_slide .slick-arrow {
    left: 0;
    top: 50%;
    transform: translateY(calc(-50% + 20px));
    background: url('../img/content/video_slide_prev.png') center / 46px auto #000 no-repeat;
    width: 88px;
    height: 70px;
    border: 2px solid #fff;
    z-index: 1;
}
.video_slide .slick-prev {border-left: none;}
.video_slide .slick-next {border-right: none; left: auto; right: 0; background-image: url('../img/content/video_slide_next.png');}

@media screen and (max-width: 1260px) {
    .video_slide .slick-active {height: 320px;}
}
@media screen and (max-width: 1024px) {
    .video_slide .slick-active {margin-left: 20px; height: 270px;}
    .video_slide .slick-arrow {transform: translateY(-50%); background-size: 23px auto; width: 50px; height: 40px;}
}
@media screen and (max-width: 768px) {
    .video_slide .slick-active {height: 320px;}
}
@media screen and (max-width: 425px) {
    .video_slide .slick-active {height: 270px;}
}
@media screen and (max-width: 375px) {
    .video_slide .slick-active {height: 220px;}
}

.cont_move p.tit.big {font-size: 52px; font-family: 'classic'; height: 96px; padding: 0;}
.cont_move p.tit.big + * {padding-top: 40px;}
.cont_move .show_sub .show_list {margin-top: 0;}

@media screen and (max-width: 768px) {
    .cont_move p.tit.big {font-size: 32px; height: 70px;}
    .cont_move p.tit.big + * {padding-top: 20px;}
}

li.show_sub {display: block;}
li.show_sub .show_list .slick-arrow {top: -66px;}

@media screen and (max-width: 768px) {
    li.show_sub .show_list .slick-arrow {top: -54px;}
}

.leader_info {display: flex; margin: 70px 0;}
.leader_info .imgBox {margin: 0 60px 0 0; height: 100%;}
.leader_info .imgBox img {width: 420px; height: 500px;}
.leader_info > div:last-child {
    border-top: 1px solid #000;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 480px);
}
.leader_info > div:last-child > div {width: 40%;}
.leader_info span {font-size: 26px;}
.leader_info .name {font-size: 60px; letter-spacing: 30px;}
.leader_info .desc {
    width: 60%;
    height: 450px;
    overflow: auto;
    margin-left: 40px;
    padding: 0 40px;
    border-left: 1px solid #000;
}
.leader_info .desc::-webkit-scrollbar {width: 6px;}
.leader_info .desc::-webkit-scrollbar-thumb {background: #d3d3d3; border-radius: 3px;}
.leader_info .desc * {border-bottom: 1px solid #000;}
.leader_info .desc dt {font-size: 24px; font-weight: 600; line-height: 36px; padding: 0 5px 13px;}
.leader_info .desc dd {font-size: 18px; padding: 7px 5px 7px 25px; position: relative;}
.leader_info .desc dd::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #000;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 15px;
}
.leader_info .desc dd + dt {padding-top: 28px;}
.leader_info .desc p {font-family: 'modern', serif !important;}

.art_list {display: flex; flex-wrap: wrap; text-align: center;}
.art_list li {width: calc((100% - 140px) / 7); margin: 0 10px 40px;}
.art_list .figure {position: relative; width: 180px; margin: 0 auto;}
.art_list .figure img {display: block; width: 100%; height: 220px;}
.art_list .figure a {
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    width: 40px;
    height: 40px;
    background: url('../img/content/art_list_add.png') center / 20px rgba(0, 0, 0, 0.5) no-repeat;
    position: absolute;
    right: 0;
    top: 180px;
}
.art_list .name {font-size: 20px; margin-top: 10px; font-weight: 600;}

.art_popup {
    border: 2px solid #000;
    max-width: 520px;
    width: 100%;
    padding: 25px 10px 25px 25px;
    background-color: #fff;
    display: flex;
}
.art_popup .figure {width: 180px; height: 220px;}
.art_popup .figure img {display: block; width: 100%; height: 100%;}
.art_popup .figure + div {width: calc(100% - 200px); margin-left: 20px;}
.art_popup .name {font-size: 22px; font-weight: 600; margin: 10px 0 5px;}
.art_popup ul {margin-top: 15px; padding-right: 15px; max-height: 133px; overflow: auto;}
.art_popup ul::-webkit-scrollbar {width: 6px;}
.art_popup ul::-webkit-scrollbar-thumb {background: #d3d3d3; border-radius: 3px;}
.art_popup li {padding: 8px 10px 8px 12px; border-bottom: 1px solid #000; font-size: 15px; position: relative;}
.art_popup li:first-child {border-top: 1px solid #000;}
.art_popup li::before {
    content: '';
    width: 6px;
    height: 6px;
    display: block;
    background-color: #5fceea;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 16px;
}
.art_popup .layerClose {
    background: url('../img/content/art_popup_close.png') center / 16px transparent no-repeat;
    top: 14px;
    right: 14px;
}

@media screen and (max-width: 1440px) {
    .leader_info .imgBox {margin-right: 40px;}
    .leader_info .imgBox img {width: 365px; height: 435px;}
    .leader_info > div:last-child {padding-top: 40px; width: calc(100% - 405px);}
    .leader_info .name {letter-spacing: 15px;}
    .leader_info .desc {height: 395px; margin-left: 20px; padding: 0 20px;}

    .art_list li {width: calc((100% - 120px) / 6);}
}
@media screen and (max-width: 1260px) {
    .leader_info .imgBox img {width: 315px; height: 375px;}
    .leader_info > div:last-child {width: calc(100% - 355px);}
    .leader_info .desc {height: 335px;}

    .art_list li {width: calc((100% - 100px) / 5);}
}
@media screen and (max-width: 1024px) {
    .leader_info {flex-direction: column; margin: 40px 0;}
    .leader_info .imgBox {margin: 0 0 40px;}
    .leader_info .imgBox img {width: 365px; height: 435px;}
    .leader_info > div:last-child {width: 100%;}
    .leader_info > div:last-child > div {padding-left: 10px;}

    .art_list li {width: calc((100% - 80px) / 4);}
    .art_list .figure {width: 160px;}
    .art_list .figure img {height: 195px;}
    .art_list .figure a {top: 155px;}

    .art_popup .figure {width: 160px; height: 195px;}
    .art_popup .figure + div {width: calc(100% - 180px);}
}
@media screen and (max-width: 768px) {
    .leader_info span {font-size: 22px;}
    .leader_info .name {font-size: 40px;}
    .leader_info .desc dt {font-size: 20px; line-height: 30px;}
    .leader_info .desc dd {font-size: 16px;}
    .leader_info .desc dd::before {top: 14px;}
    .leader_info .desc dd + dt {padding-top: 22px;}

    .art_list {font-size: 14px;}
    .art_list li {width: calc((100% - 40px) / 4); margin: 0 5px 20px;}
    .art_list .figure {width: 140px;}
    .art_list .figure img {height: 170px;}
    .art_list .figure a {width: 30px; height: 30px; background-size: 15px; top: 140px;}
    .art_list .name {font-size: 17px; margin-top: 5px;}

    .art_popup .figure {width: 140px; height: 170px;}
    .art_popup .figure + div {width: calc(100% - 160px);}
    .art_popup .name {font-size: 19px; margin-bottom: 3px;}
    .art_popup .work {font-size: 14px;}
    .art_popup li {font-size: 14px; padding: 6px 10px 6px 12px;}
    .art_popup li::before {top: 13px;}
}
@media screen and (max-width: 650px) {
    .leader_info > div:last-child {flex-direction: column;}
    .leader_info > div:last-child > div {width: 100%; padding: 0;}
    .leader_info .desc {width: 100%; padding: 0; margin: 30px 0 0; border: none;}

    .art_list li {width: calc((100% - 30px) / 3);}
}
@media screen and (max-width: 500px) {
    .leader_info .imgBox img {max-width: 315px; width: 100%; height: auto;}

    .art_list li {width: calc((100% - 20px) / 2);}

    .art_popup {flex-direction: column; align-items: center;}
    .art_popup .figure {margin-right: 15px;}
    .art_popup .figure + div {margin-left: 0; width: 100%;}
    .art_popup .name {text-align: center; margin: 5px 15px 3px 0;}
    .art_popup .work {text-align: center; margin-right: 15px;}
}
@media screen and (max-width: 350px) {
    .art_list li {width: 100%;}
}
/* --07 서울시예술단 */

/* 08 통합회원서비스 */
/* 로그인 */
.loginBox {
    display: flex;
    gap: 38px;
    position: relative;
    margin: 0 20px;
}
.loginBox::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 20px);
    position: absolute;
    left: 50%;
    top: 10px;
    background-color: #000;
}
.loginBox > div {
    width: 50%;
    border-top: #000 solid 2px;
    border-bottom: #000 solid 2px;
    padding: 95px 0 0;
}
.loginBox.al > div {padding: 95px 100px;}
.loginBox h4{
    font-size: 45px !important;
    text-align: center;
    font-weight: normal !important;
    word-break: keep-all;
}
.loginBox h4 span{
    font-size: 22px;
    font-family: 'modern' !important;
    display: block;
}

.loginBox.small {max-width: 1000px; margin: 50px auto 0;}
.loginBox.small > div {padding: 0;}
.loginBox.small a {display: block; padding-top: 275px; background: url('../img/content/age14_up.png') center 80px / 117px auto no-repeat;}
.loginBox.small > div:nth-child(2) a {background-image: url('../img/content/age14_down.png');}
.loginBox.small p {font-size: 30px; font-family: 'classic'; text-align: center; border-top: 2px solid #000; padding: 20px 0;}
.loginBox.small.history a {background: url('../img/content/icon_history01.png') center 72px / 122px auto no-repeat;}
.loginBox.small.history > div:nth-child(2) a {background: url('../img/content/icon_history02.png') center 82px / 82px auto no-repeat;}

.loginBox1 {max-width: 800px; min-height: 550px; margin: 120px auto 40px; border-top: 2px solid #000; border-bottom: 2px solid #000; display: flex; justify-content: center; align-items: center;}
.loginBox1 > div {margin: 80px 30px; max-width: 620px; width: 100%;}
.loginBox1 .line {margin-top: 10px;}
.loginBox1 input[type='text'],
.loginBox1 input[type='number'],
.loginBox1 input[type='password'],
.layerPopup input[type='text'] {width: 100%; border-bottom: 1px solid #000; padding: 14px 0; font-size: 20px; margin: 30px 0;}
.loginBox1 .line + [class^='btnArea'] {margin-top: 50px;}
.loginBox1 ul {border-top: 1px solid #000; margin: 50px 0 30px;}
.loginBox1 li {border-bottom: 1px solid #000; text-align: center; padding: 8px 10px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center;}
.loginBox1 li span {font-size: 24px; padding-left: 20px; margin-right: 15px; position: relative;}
.loginBox1 li span::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #5fceea;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.loginBox1 [class^='btn_'] {max-width: 280px; width: 100%; font-size: 22px; padding: 16px 0;}

.loginIn {
    width: 440px;
    margin: 0 auto;
}
.loginBox .form {margin-top: 20px;}
.loginBox .form.form1,
.loginBox .form.form2 {margin-top: 0;}
.loginBox .form > li {padding: 20px 0 0; position: relative;}
.loginBox .form.form1 > li,
.loginBox .form.form2 > li {padding: 30px 0 0;}
.loginBox .form input,
.loginBox .form select {
    font-size: 20px;
    display: inline-block;
    line-height: 47px;
    height: auto;
    font-weight: normal;
    width: 100%;
    border: none;
    border-bottom: #000 solid 1px;
    box-sizing: border-box;
    padding-top: 1px;
    padding-bottom: 1px;
}
.loginBox .form button.view {
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    overflow: hidden;
    background: url('../img/content2/icon_eye.png') center / 25px auto no-repeat;
    border: none;
    position: absolute;
    bottom: 0;
    right: 0;
}
.loginBox .form button.view.on {background-image: url('../img/content2/icon_eye_on.png');}
.loginBox .btn_line.blue {
    font-size: 22px !important;
    display: block !important;
    width: 100%;
    line-height: 61px;
    margin: 30px 0;
}
.loginBox p {word-break: keep-all;}

.layerPopup .loginBox {margin: 20px 0 !important;}
.layerPopup .loginBox div {
    text-align: center;
    padding: 200px 0 40px;
    background: url('../img/content/icon_certify01.png') 55% 60px / 98px auto no-repeat;
}
.layerPopup .loginBox div:nth-child(2) {background: url('../img/content/icon_certify02.png') center 55px / 122px auto no-repeat;}
.layerPopup .loginBox h4 {
    font-size: 30px !important;
    border-bottom: 1px solid #000;
    display: inline-block;
    padding: 0;
}
.layerPopup .loginBox h4::before {display: none;}
.layerPopup .loginBox p {font-size: 20px; max-width: 280px; margin: 0 auto 30px;}

@media screen and (max-width: 1024px) {
    .layerPopup .loginBox {display: flex;}
    .layerPopup .loginBox::after {display: block;}
    .layerPopup .loginBox > div {border-top: 2px solid #000;}
}
@media screen and (max-width: 768px) {
    .layerPopup .loginBox div {padding: 160px 0 40px; background-size: 78px auto; background-position: 55% 45px;}
    .layerPopup .loginBox div:nth-child(2) {background-size: 100px auto; background-position: center 40px;}
    .layerPopup .loginBox h4 {font-size: 25px !important;}
    .layerPopup .loginBox p {font-size: 17px;}
}
@media screen and (max-width: 600px) {
    .layerPopup .loginBox {display: block;}
    .layerPopup .loginBox::after {display: none;}
    .layerPopup .loginBox div {background-position-x: center;}
    .layerPopup .loginBox > div:nth-child(2) {border-top: none;}
}

.etcBtn {
    display: flex;
    margin: 80px 0 0 0;
    justify-content: space-between;
}
.etcBtn li + li {margin-left: 30px;}
.etcBtn li{
    width: 25%;
    border-top: #000 solid 1px;
    position: relative;
}
.etcBtn li + li::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    position: absolute;
    left: -15px;
    top: 20px;
    background-color: #000;
}
.etcBtn li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 150px;
    font-size: 22px;
}
.snsLogin {
    border-top: #000 solid 1px;
    margin-top: 90px;
}
.snsLogin li {
    border-bottom: #000 solid 1px;
    padding: 9px 0;
}
.snsLogin li a{
    display: block;
    font-size: 22px;
    padding: 0 0 0 155px;
    background-repeat: no-repeat;
    background-size: 96px;
    background-position: 0 center;
    line-height: 96px;
}
.snsLogin li.naver a{background-image: url('../img/content/sns_naver.png');}
.snsLogin li.kakao a{background-image: url('../img/content/sns_kakao.png');}
.snsLogin li.google a{background-image: url('../img/content/sns_google.png');}

.setBtn > ul:first-child {width: calc(100% - 150px); float: left;}
.setBtn > div:first-child {width: calc(100% - 180px); margin-right: 30px; float: left;}
.setBtn > *:last-child {width: 150px;}

@media screen and (max-width: 1440px) {
    .loginBox.al > div {padding: 95px 40px;}
}
@media screen and (max-width: 1260px) {
    .loginBox.al > div {padding: 95px 10px;}
}
@media screen and (max-width: 1024px) {
    .loginBox {display: block;}
    .loginBox > div {width: 100%;}
    .loginBox.al {margin: 0;}
    .loginBox.al > div {padding: 50px 10px;}
    .loginBox > div + div {border-top: none;}
    .loginBox::after {display: none;}
    .snsLogin {margin: 90px auto;}
}
@media screen and (max-width: 767px) {
    .loginBox.small {max-width: 1000px; margin: 25px auto 0;}
    .loginBox.small > div {padding: 0;}
    .loginBox.small a {padding-top: 175px; background-position: center 40px; background-size: 90px auto;}
    .loginBox.small p {font-size: 25px; padding: 10px 0;}
    .loginBox.small.history a {background-position: center 42px; background-size: 90px auto;}
    .loginBox.small.history > div:nth-child(2) a {background-position: center 42px; background-size: 67px auto;}


    .loginBox1 {margin: 60px auto 20px;}
    .loginBox1 > div {margin: 40px 15px;}
    .loginBox1 input[type='text'],
    .loginBox1 input[type='number'] {font-size: 18px; margin: 15px 0;}
    .loginBox1 ul {margin: 30px 0 10px;}

    .loginIn {width: 90%;}
    .loginBox > div {padding: 40px 0 0;}
    .loginBox h4 {font-size: 30px !important;}
    .loginBox .form > li {padding: 10px 0 0;}
    .loginBox .form input,
    .loginBox .form select {font-size: 16px; line-height: 42px;}
    .loginBox .form button.view {width: 45px; height: 45px; background-size: 20px auto;}
    .loginBox .btn_line.blue {margin: 20px 0;}
    .etcBtn {margin: 40px 0 0;}
    .etcBtn li + li {margin-left: 16px;}
    .etcBtn li a {font-size: 17px;}
    .etcBtn li + li::after {left: -8px;}
    .snsLogin {margin: 30px auto;}
    .snsLogin li a {padding-left: 80px;background-size: 60px;line-height: 60px;font-size: 17px;}

    .setBtn > * {float: none !important; width: 100% !important;}
    .setBtn > ul {width: calc(100% + 30px) !important;}
    .setBtn > *:last-child {margin-top: 20px;}
}
@media screen and (max-width: 374px) {
    .loginBox {margin: 0 10px;}
    .loginBox h4 {font-size: 25px !important;word-break: break-all;letter-spacing: -2px;}
    .etcBtn li + li {margin-left: 10px;}
    .etcBtn li + li::after {left: -5px;}
    .etcBtn li a {font-size: 15px;height: 100px;}
    .loginIn {width: 100%;}
}
@media screen and (max-width: 319px) {
    .etcBtn li a br {display: none;}
    .snsLogin li a {padding-left: 60px;background-size: 50px;line-height: 50px}
}
/*-- 로그인 */

/* 회원가입 > 약관동의 */
.join_agree .tit h4.big + P {margin: 15px 0 0; font-size: 22px; line-height: 34px;}
.join_agree .tit .ck {
    border: 2px solid #000;
    background-color: #f3f3f3;
    width: 100%;
    margin: 60px 0 0;
    padding: 33px 15px;
}
.join_agree .tit .ck input[type='checkbox'] + span {color: #000;}
.join_agree .input_check + span {
    font-size: 20px;
    padding-left: 38px;
    line-height: 30px;
    color: #727272;
}
.join_agree .input_check + span::after {
    border-radius: 50%;
    width: 26px;
    height: 26px;
    margin: 0;
    top: 0;
}
.join_agree .input_check:checked + span {color: #000;}
.join_agree .input_check:checked + span::after {
    background: url('../img/content/checkbox_on_black.png') center / 14px auto #ffe800 no-repeat;

}
.join_agree .group {margin-top: 40px; border: 2px solid #000; position: relative;}
.join_agree .group::before,
.join_agree .group::after {
    content: '';
    width: 10px;
    height: calc(100% + 4px);
    background-color: #fff;
    border-left: 1px solid #000;
    display: block;
    position: absolute;
    left: -1px;
    top: -2px;
}
.join_agree .group::after {left: auto; right: -1px; border-left: none; border-right: 1px solid #000;}
.join_agree .group .top {display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center; padding: 22px 20px; border-bottom: 1px solid #000;}
.join_agree .group .top h5 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 30px !important;
    font-weight: normal !important;
    font-family: 'classic';
    display: flex;
    align-items: center;
}
.join_agree .group .top h5::before {display: none !important;}
.join_agree .group .top h5 span {background-color: #5fceea; font-size: 18px; font-family: 'morden'; font-weight: 600; display: inline-block; padding: 2px 8px; margin-right: 10px;}
.join_agree .group .top h5 .gray {background-color: #e7e7e7;}
.join_agree .box {padding: 15px 10px; max-height: 330px; height: auto; font-size: 18px; border: none; margin: 10px;}
.join_agree .box::-webkit-scrollbar {width: 6px;}
.join_agree .box::-webkit-scrollbar-thumb {background: #000; border-radius: 3px;}
.join_agree .group .bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #000;
    font-size: 18px;
    line-height: 30px;
}
.join_agree .group .bottom > p {margin: 5px 50px 5px 0;}
.join_agree .group .bottom > div {display: flex; align-items: center; margin: 5px 0;}
.join_agree .group .bottom > div p {margin-right: 30px;}
.join_agree .group .bottom .checked_list.agree {
    border-left: 1px solid #000;
    margin-left: 25px;
    padding-left: 25px;
    display: none;
}
.join_agree .group .bottom .checked_list.agree input[type='checkbox'] + span::after {top: 4px;}
.join_agree [class^='tbl_info'] {width: 100%; margin: 20px 0;}

@media screen and (max-width: 768px) {
    .join_agree .tit h4.big + p {font-size: 20px;}
    .join_agree .tit .ck {margin-top: 30px; padding: 18px;}
    .join_agree .input_check + span {font-size: 18px; padding-left: 35px; line-height: 26px;}
    .join_agree .input_check + span::after {width: 22px; height: 22px;}
    .join_agree .group .top h5 {font-size: 25px !important; display: block;}
    .join_agree .group .top h5 span {font-size: 16px; padding: 1px 4px; margin-right: 8px;}
    .join_agree .box {font-size: 16px;}
}
@media screen and (max-width: 550px) {

    .join_agree .group .bottom > p {margin: 5px 0;}
    .join_agree .group .bottom > div {flex-direction: column; align-items: flex-start;}
    .join_agree .group .bottom > div p {margin: 0 0 5px 0;}
    .join_agree .group .bottom .checked_list.agree {border-left: none; margin-left: 0; padding-left: 0; margin-top: 5px;}
}
/* --회원가입 > 약관동의 */

/* 회원가입 > 정보입력 */
.member_join h4.big + p {font-size: 22px;}
.member_join .group {margin-top: 60px; font-size: 17px;}
.member_join .group .top {border-top: 2px solid #000; padding: 22px 0;}
.member_join .group h5 {
    margin: 0 !important;
    font-size: 30px !important;
    font-weight: normal !important;
    font-family: 'classic';
    text-align: center;
    padding: 0 !important;
}
.member_join .group h5::before {display: none !important;}
.member_join .group h5 span {background-color: #e2e2e2; word-break: keep-all; font-size: 18px; font-family: 'morden'; font-weight: 600; padding: 2px 6px; margin-left: 10px;}
.member_join .group h5 + * {float: right; margin-top: -35px;}
.member_join .sect {border-top: 2px solid #000; border-bottom: 1px solid #000;}
.member_join .item {display: flex; padding: 10px 0; border-bottom: 1px solid #000;}
.member_join .item .t {text-align: left; width: 310px; font-size: 24px; font-weight: 400; padding: 16px 20px 16px 0; border-right: 1px solid #000;}
.member_join .item .check {background: url('../img/content/icon_check.png') left 30px / 14px auto no-repeat; padding: 16px 20px;}
.member_join .item .cont {font-size: 24px; width: calc(100% - 310px); padding: 9px 40px; display: flex; flex-wrap: wrap; align-items: center;}
.member_join .item .cont.high {display: block;}

.member_join .inputCnt3 {font-size: 24px; min-width: 467px; width: 50%; line-height: 46px; display: inline-flex;}
.member_join .inputCnt3 input {min-width: auto;}
.member_join .inputCnt3 span {display: inline-block; width: 20px;}
.member_join .inputCnt3 input[type='checkbox'] + span {width: auto;}
.member_join .inputCnt3 input[type='checkbox'] + span::after {top: 12px !important;}
.member_join .inputCnt3.long {width: 80%;}
.member_join .inputCnt3.long.line input {width: calc(100% - 20px) !important;}
.member_join input[type='text'],
.member_join input[type='number'],
.member_join input[type='password'] {font-size: 24px; max-width: 550px; width: 60%; line-height: 46px; border:1px solid #ccc !important; padding-left:10px;}
.member_join select {font-size: 24px; font-weight: normal; height:50px; border:1px solid #ccc; padding-left: 10px;}
.member_join option {font-size: 18px;}
.member_join .inputCnt3 select, .member_join .inputCnt3 input[type='text'] {
    width: calc(100% - 50px) !important;
    min-width: auto;
    padding-left: 10px;
}

.member_join .item .address {width: 100%;}
.member_join .item .address input {max-width: none;}
.member_join .item .address .a1 input {min-width: auto; width: 30%;}
.member_join .item .address .a2 {margin-top: 20px;}
.member_join .item .address .a2 span {float: left; width: calc(50% - 10px);}
.member_join .item .address .a2 .l {margin-right: 20px;}
.member_join .item .address .a2 input {min-width: auto; width: 100%;}

.member_join .item input[type='radio'] + span,
.member_join .item input[type='checkbox'] + span {font-size: 20px; padding-left: 30px;}
.member_join .item input[type='radio'] + span::after,
.member_join .item input[type='checkbox'] + span::after {top: 4px;}

.member_join .caution_box {padding-left: 0; padding-right: 0; border: none;}

.member_join .info, .member_join .info2 {
    padding-left: 25px;
    font-size: 16px;
    background: url('../img/content/member_join_info.png') left 2px / 20px no-repeat;
    margin: 5px 0 5px 20px;
}

.member_join .info2 {
    background: url('../img/content/member_join_important.png') left 2px / 20px no-repeat;
}
@media screen and (max-width: 550px) {
    .member_join .info2 {
        width:100%;
        margin: 10px 0 0 0;
    }
}

.layerCont.member_join .item .t {width: 160px;}
.layerCont.member_join .item .cont {width: calc(100% - 160px);}
.layerCont.member_join input[type='text'],
.layerCont.member_join input[type='number'],
.layerCont.member_join input[type='password'] {
    width: 100%;
    max-width: none;
    border-bottom: none;
    padding: 1px 2px;
}

.agree_rdo {margin-top: 50px; font-size: 20px;}
.agree_rdo dl {margin-top: 20px; border: 2px solid #000; padding: 32px 40px; background-color: #f3f3f3; display: flex; gap: 20px; justify-content: space-between; align-items: center;}
.agree_rdo dl::after {display: none;}
.agree_rdo input[type='radio'] + span {font-size: 20px; padding-left: 30px;}
.agree_rdo input[type='radio'] + span::after {top: 3px;}

@media screen and (max-width: 1260px) {
    .member_join .group .top {display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;}
    .member_join .group h5 + * {float: none; margin-top: 0;}
    .member_join .item .t {width: 200px;}
    .member_join .item .cont {width: calc(100% - 200px); padding: 9px 0 9px 20px;}
}
@media screen and (max-width: 1024px) {
    .member_join .item .t {font-size: 20px;}
    .member_join .item .check {background-position: left 26px;}
    .member_join .item .cont {font-size: 20px;}

    .member_join .inputCnt3 {min-width: 337px; width: 60%; font-size: 20px;}

    .member_join input[type='text'],
    .member_join input[type='number'],
    .member_join input[type='password'] {font-size: 20px; min-width: 337px; width: 60%; line-height: 42px;}
    .member_join select {font-size: 20px;}
    .member_join .inputCnt3 select, .member_join .inputCnt3 input[type='text'] {
        width: calc(100% - 35px) !important;
    }
    .member_join .identify .info {width:100%;margin: 10px 0 0 0;}

    .member_join .item input[type='radio'] + span,
    .member_join .item input[type='checkbox'] + span {font-size: 18px;}
    .member_join .item input[type='radio'] + span::after,
    .member_join .item input[type='checkbox'] + span::after {top: 2px;}

    .layerCont.member_join .item .t {width: 100px;}
    .layerCont.member_join .item .cont {width: calc(100% - 100px);}

    .agree_rdo dl {padding: 25px 20px;}
}
@media screen and (max-width: 768px) {
    .member_join .group .top {padding: 17px 0;}
    .member_join .group h5 {font-size: 25px !important;}
    .member_join .group h5 + * {margin-top: 5px;}

    .btn-member_w {width: 100%;}
    .btn-member_w input[type='text'] {width: calc(100% - 106px) !important;}

    .member_join .item {padding: 15px 0;}
    .member_join .item .t {width: 110px; display: flex; align-items: center; padding: 5px 0; border-right: none; font-size: 18px;}
    .member_join .item .check {background-position: left center; padding-left: 20px;}
    .member_join .item .cont {padding: 0; width: calc(100% - 110px);}
    .member_join .item .cont.hasBtn input {max-width: 380px;}
    .member_join .item .cont.column {flex-direction: column; align-items: flex-start;}

    .member_join .checked_list {display: block;}
    .member_join .zipcode + .checked_list {margin-top: 10px;}

    .member_join .inputCnt3 {min-width: auto; width: 100%; max-width: 400px;}
    .member_join .inputCnt3.long {max-width: none; width: 100%; display: block;}
    .member_join .inputCnt3.long li {width: 100%;}
    .member_join .inputCnt3.long li + li {margin-top: 10px;}
    .member_join .inputCnt3.long.line input {width: 100% !important;}

    .member_join .inputCnt3.birthday {margin-bottom: 5px;}
    .member_join .inputCnt3.birthday li {width: 30% !important;}
    .member_join .inputCnt3.birthday li:first-child {width: 40% !important;}

    .member_join .inputCnt3 span {width: 15px;}

    .member_join select {height: 45px;}
    .member_join input[type='text'],
    .member_join input[type='number'],
    .member_join input[type='password']  {min-width: auto; width: 100%; font-size: 18px;}
    .member_join .inputCnt3 select, .member_join .inputCnt3 input[type='text'] {
        width: calc(100% - 28px) !important;
        font-size: 18px;
    }

    .member_join .item .address .a2 {margin-top: 0;}
    .member_join .item .address .a2 span {float: none; width: 100%; display: block; margin-top: 5px;}

    .member_join .info {margin-left: 0;}
    .member_join .item .cont {font-size: 16px;}
    .layerCont.member_join .item .cont {width: 100%;}

    /*.member_join .e1 input[type='text'],*/
    /*.member_join .e2 input[type='text'],*/
    /*.member_join .e3 select {border-bottom: 1px solid #000;}*/

    .agree_rdo {font-size: 18px;}
    .agree_rdo dl {display: block;}
    .agree_rdo dt {margin-bottom: 5px;}
    .agree_rdo input[type='radio'] + span {font-size: 18px; padding-left: 26px;}
}
@media screen and (max-width: 375px) {
    .member_join .item {margin-top: 5px;}

    .member_join .inputCnt3 {font-size: 18px;}
    .member_join input[type='text'],
    .member_join input[type='number'],
    .member_join input[type='password'] {font-size: 18px;}
    .member_join select {font-size: 18px; padding-right: 20px; background-position: calc(100% - 5px) center;}
}

.loginBox1 .member_join {max-width: 950px;}
.loginBox1 .member_join .blt_blue {margin: 40px auto; border-top: none; font-size: 22px;}
.loginBox1 .member_join li {justify-content: start; text-align: left; padding-left: 20px;}
.loginBox1 .member_join li::before {top: 20px;}

.loginBox1 .member_join .item {padding: 10px 0;}
.loginBox1 .member_join input[type='text'],
.loginBox1 .member_join input[type='number'],
.loginBox1 .member_join input[type='password'] {margin: 0; padding: 1px 2px; width: 100%; border: none;}

@media screen and (max-width: 768px) {
    .loginBox1 .member_join .blt_blue {margin: 20px auto; font-size: 18px;}
    .loginBox1 .member_join li::before {top: 16px;}
}

.member_join .snsLink {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    display: flex;
    width: 100%;
    padding: 10px 0;
}
.member_join .snsLink li {width: calc(100% / 3);}
.member_join .snsLink li + li {padding-left: 10px; margin-left: 10px; border-left: 1px solid #000;}
.member_join .snsLink li a {
    display: flex;
    align-items: center;
    height: 96px;
    font-size: 20px;
    padding-left: 110px;
    background: url('../img/content/sns_naver.png') left center / 96px no-repeat;
}
.member_join .snsLink .kakao a {background-image: url('../img/content/sns_kakao.png');}
.member_join .snsLink .google a {background-image: url('../img/content/sns_google.png');}

@media screen and (max-width: 768px) {
    .member_join .snsLink li a {
        background-size: 50px;
        background-position: center 10px;
        padding: 70px 0 10px;
        justify-content: center;
        height: auto;
        text-align: center;
    }
}
@media screen and (max-width: 425px) {
    .member_join .snsLink {flex-direction: column; padding: 0;}
    .member_join .snsLink li {width: 100%;}
    .member_join .snsLink li + li {padding-left: 0; margin-left: 0; border-left: none; border-top: 1px solid #000;}
    .member_join .snsLink li a {background-position: center 20px; padding: 80px 0 10px;}
}
/* --회원가입 > 정보입력 */
/* 개인정보처리방침 */
.policyBox > div{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    position: relative;
    margin: 20px auto;
    width: 1234px;
}
.policyBox > div > button{
    width: calc((100% / 3) - 20px);
    height: 210px;
    padding: 2rem 3rem;
    border: #000 solid 1px;
    display: flex;
    flex-flow:column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 2rem;
    background: #fff;
    position: relative;
}
.policyBox > div > button:hover{
    border: 2px solid #000000;
    box-shadow: rgba(0,0,0,0.15) 5px 5px 8px;
    margin-top: -50px;
}
.policyBox > div > button:hover::after{content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    background: #fff;
    transform:rotate(45deg);
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    position: absolute;
    left:50%;
    top:calc(100% - .45rem - 1px);
}
.policyBox > div > button:hover div[id^="label_layer_"],
.policyBox > div > button:focus div[id^="label_layer_"]{display: block; }
.policyBox > div > button > p {
    font-size: 20px;
    margin-top: 20px;
}
.policyBox > div > button div[id^="label_layer_"] {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #000;
    width: calc(100vw - 0.938rem - 0.938rem);
    max-width: 1234px;
    z-index: 1;
    box-shadow: rgba(0,0,0,0.15) 5px 5px 8px;
}
#label_layer_0, #label_layer_3{left:-2px;}
#label_layer_0, #label_layer_4{top:110%;}
#label_layer_1, #label_layer_3{top:110%;}
#label_layer_2, #label_layer_5{top:110%;right: -1px;}
.labelTop{
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    font-size: 20px;
}
.policyBox > div > button div > .tbl_info{
    width: 100%;
    padding: 30px 40px 40px;
    margin: 0;
}
.policyBox > div > button div > .tbl_info > p{
    font-size: 18px;
}
.policyBox > div > button div > .tbl_info > p + *{
    margin-top: 30px !important;
}
.indexBox {
    margin: 60px 0 90px;
    font-size: 18px;
}
.indexBox .classic{
    border: #000 solid 1px;
    text-align: center;
    line-height: 58px;
}
.indexBox > p {padding: 15px 0;}
.indexBox > ul {
    display: flex;
    flex-wrap: wrap;
}
.indexBox > ul > li:nth-child(1),
.indexBox > ul > li:nth-child(2),
.indexBox > ul > li:nth-child(3){
    border-top: #000 solid 1px;
}
.indexBox > ul > li{
    width: calc((100% / 3) - 26.6666px);
    border-bottom: #000 solid 1px;
    padding: 12px 0 10px 30px;
    text-indent: -30px;
}
.indexBox > ul > li + li {margin-left: 40px;}
.indexBox > ul > li:nth-child(3n + 1) {margin-left: 0px;}
.personBox {
    font-size: 18px;
}
.personBox strong{
    font-size: 24px;
    font-weight: normal;
    margin-top: 50px;
    display: block;
}
.personBox strong span {
    position: relative;
    margin-left: 5px;
    top: 7px;
}
.personBox strong + p{margin-top: 15px;}
.num {
    position: relative;
    padding: 10px 0 0 40px;
    font-size: 18px;
}
.num span{
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
    width: 28px;
    height: 28px;
    border: #000 solid 1px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 0;
    top: 10px;
}
.personBox .tbl_info{margin-top: 20px;}
.personBox ol.type2 > li {text-indent: -18px;padding-left: 18px;}
.personBox ol > li {font-size: 17px;text-indent: -23px;padding: 5px 0 5px 23px;}
.personBox ol > li > ul:not(.blt) > li{font-size: 16px;color: #444;padding: 5px 0 5px 0;}
.personBox ol > li > ul > li {text-indent: 0;font-size: 17px;}
@media screen and (max-width: 1294px) {
    .policyBox > div{width: 100%;}
}
@media screen and (max-width: 768px) {
    .policyBox {display: none;}
    .indexBox > ul > li{width: 100%;}
    .indexBox > ul > li + li {margin: 0;}
    .indexBox > ul > li:nth-child(2),
    .indexBox > ul > li:nth-child(3){
        border-top: none;
    }
}
/*-- 개인정보처리방침 */
/* 사이트맵 */
.siteMap {
    border-top: #000 solid 1px;
}
.siteMap a{display: block;}
.siteMap > li{
    border-bottom: #000 solid 1px;
    padding: 30px 25px;
    display: flex;
}
.siteMap > li > a{
    font-size: 38px;
    font-family: 'classic';
    width: 300px;
}
.siteMap li > a{
    flex-shrink: 0;
}
.siteMap li > ul {
    flex-grow: 1;
}
.siteMap > li > ul > li {
    display: flex;
    padding: 10px 0;
}
.siteMap > li > ul > li > a{
    font-size: 26px;
    width: 350px;
    position: relative;
}
.siteMap > li > ul > li:hover > a::after{
    content: "";
    display: block;
    background: url('../img/content/siteMap_arr.png') center / 100% no-repeat;
    width: 35.5px;
    height: 32.5px;
    position: absolute;
    right: 30px;
    top: 0;
}
.siteMap > li > ul > li > ul{
    display: flex;
    flex-wrap: wrap;
}
.siteMap > li > ul > li > ul > li{
    width: 25%;
    padding: 5px 0;
}
.siteMap > li > ul > li > ul > li > a{
    font-size: 20px;
}
.siteMap > li > ul > li > ul > li > a:hover{
    text-decoration: underline;
    text-underline-position: under;
    text-underline-offset: 1px;
    text-decoration-style: dashed;
}
.siteMap > li > ul > li > ul > li > ul {margin-top: 10px;}
.siteMap > li > ul > li > ul > li > ul > li {margin-top: 3px;}
.siteMap > li > ul > li > ul > li > ul > li > a:hover {text-decoration: underline;}

@media screen and (max-width: 1600px) {
    .siteMap > li > ul > li > ul > li{width: calc(100% / 3);}
}
@media screen and (max-width: 1440px) {
    .siteMap > li > ul > li > ul > li{width: calc(100% / 2);}
}
@media screen and (max-width: 1200px) {
    .siteMap > li > ul > li > ul > li{width: 100%;}
}
@media screen and (max-width: 1024px) {
    .siteMap > li > a {margin-bottom: 10px;}
    .siteMap > li > ul > li {display: block;}
    .siteMap > li > ul > li > a {display: inline-block;width: 100%; margin-bottom: 10px;}
    .siteMap > li > ul > li:hover > a::after{right: 0;}
    .siteMap > li > ul > li > ul > li {width: calc(100% / 2);}
}
@media screen and (max-width: 768px) {
    .siteMap > li {display: block; padding: 30px 0;}
    .siteMap > li > a {width: 100%; font-size: 28px;}
    .siteMap > li > ul > li {padding: 10px 0;}
    .siteMap > li > ul > li > a {display: block; width: 100%; font-size: 22px;}
    .siteMap > li > ul > li:hover > a::after{width: 25px; height: 25px;}
    .siteMap > li > ul > li > ul > li {width: calc(100% / 3);}
    .siteMap > li > ul > li > ul > li > a {font-size: 16px;}
}
@media screen and (max-width: 500px) {
    .siteMap > li > ul > li > ul > li {width: calc(100% / 2);}
}
@media screen and (max-width: 375px) {
    .siteMap > li > ul > li > ul > li {width: 100%;}
}
/*-- 사이트맵 */
/* --08 통합회원서비스 */

/* 09 마이페이지 */
/* 나의멤버십 */
.mypage {display: flex;}
.mypage .left {
    width: 400px;
    margin-right: 40px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 20px 0 50px;
    position: relative;
}
.mypage .left::before {
    content: '';
    width: 2px;
    height: 100%;
    display: block;
    background-color: #000;
    position: absolute;
    right: -21px;
    top: 0;
}
.mypage .left > div {position: sticky; top: 20px;}
.mypage .left .show_list {position: static; display: block; margin-top: 20px; border: none;}
.mypage .left .show_list ul {width: calc(100% - 5px);}
.mypage .slick-arrow {top: 3px;}

.mypage .right {
    width: calc(100% - 400px);
    padding-bottom: 50px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
.mypage .right h4 {padding-top: 20px;}
.mypage .right > div {padding-left: 20px;}
.mypage .etcBtn {position: relative; margin: 20px 20px 0;}
.mypage .etcBtn li {width: calc(60% / 3); text-align: center; padding: 40px 0; font-size: 18px;}
.mypage .etcBtn li + li {margin-left: 40px;}
.mypage .etcBtn li:first-child {width: 40%; text-align: left; padding-left: 100px; background: url('../img/content/icon_we.png') 15px 45px / 62px no-repeat;}
.mypage .etcBtn li:first-child p:first-child {font-size: 30px;}
.mypage .etcBtn li strong {font-size: 20px !important; font-weight: 400; display: block; word-break: break-all;}
.mypage .etcBtn li:first-child strong {display: inline;}
.mypage .etcBtn li span {font-size: 20px;}
.mypage .etcBtn li .num {font-size: 54px; padding-left: 0;}
.mypage .etcBtn li:last-child span {font-size: 28px; margin-top: 20px; display: block;}
.mypage .etcBtn li.st {background-image: url('../img/content/icon_st.png');}
.mypage .etcBtn li.sp {background-image: url('../img/content/icon_sp.png');}
.mypage .etcBtn li.si {background-image: url('../img/content/icon_si.png');}

.mypage .etcBtnMo p {padding: 5px 0 5px 50px; background: url(../img/content/icon_we.png) left center / 40px no-repeat;}
.mypage .etcBtnMo p.st {background-image: url('../img/content/icon_st.png');}
.mypage .etcBtnMo p.sp {background-image: url('../img/content/icon_sp.png');}
.mypage .etcBtnMo p.si {background-image: url('../img/content/icon_si.png');}

.mypage .etcBtn::before,
.mypage .etcBtn::after,
.mypage .etcBtn li + li::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 24px);
    position: absolute;
    left: -20px;
    top: 12px;
    background-color: #000;
}
.mypage .etcBtn::after {left: auto; right: -20px;}
.mypage .etcBtn li {border-bottom: 1px solid #000;}

.mypage .etcBtnMo {display: none;}

.detail_list {font-size: 18px; display: flex; flex-wrap: wrap;}
.detail_list li {margin: 10px 20px 10px 0; width: 100%; border: 1px solid #000;}
.detail_list li:first-child {margin-top: 0;}
.detail_list a {
    background: url('../img/content/page_next.png') calc(100% - 25px) center / 7px auto no-repeat;
    display: flex;
    align-items: center;
    padding: 0 40px 0 20px;
    height: 70px;
    word-break: keep-all;
}

.mypage .cont_move > li {padding-left: 20px; border-top: 2px solid #000;}
.mypage .cont_move > li > div {padding: 0; margin: 20px 0 40px; max-width: none; max-height: 600px; overflow: hidden;}
.mypage .cont_move > li > a {box-shadow: 0 -25px 50px rgba(255, 255, 255, 1);}
.mypage .right .show_list {border: none; position: static !important; margin: auto;}
.mypage .right .show_list > li {padding: 0 35px 0; width: calc(25% + 18px); border-bottom: none;}
.mypage .right .show_list > li:nth-child(4n + 1) {padding: 0 35px 0 0; width: calc(25% - 18px);}
.mypage .right .show_list > li:nth-child(4n) {padding: 0 0 0 35px; width: calc(25% - 18px);}
.mypage .right .show_list > li:nth-child(n + 5) {margin-top: 40px;}

.mypage .right .show_list .slick-list {align-items: normal;}

.mypage .show_list .slick-track {justify-content: center;}

.mypage .ticket {position:relative;}
.ticket_list {padding-bottom:50px}
.ticket_list li a {display: flex; align-items: stretch;}
.ticket_list .img {
    position: relative;
    width: 220px;
    height: 310px;
    margin-top: 0;
}
.ticket_list .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ticket_list ul {width: calc(100% - 220px); padding:0 0 0 40px; }
.ticket_list ul li {font-size:18px; }
.ticket_list ul li:first-child span {font-size:18px; vertical-align:middle;}
.ticket_list ul li:first-child span:first-child {font-size:14px; margin-right:5px;}
.ticket_list ul li.tit {
    font-size: 30px;
    margin: 15px 0 15px 0;
    padding: 15px 0 15px 0;
    display: block;
    border-top:1px solid #000;
    border-bottom:1px solid #000;
}
.ticket_list ul li.tit span {
    font-size: inherit;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.ticket_list ul li.tit span:last-child {display: none;}
.ticket_list ul li.flex {margin-top: 5px;}
.ticket_list ul li.flex span + span {padding-left:35px; position: relative;}
.ticket_list ul li.flex span + span:after {
    content: "";
    display: block;
    width: 1px;
    height: 11px;
    position: absolute;
    left: 13px;
    top: 5px;
    background-color: #c4c4c4;
}
.ticket_list .slick-arrow {top:-50px}

@media screen and (max-width: 1440px) {
    .mypage .left {width: 300px;}
    .mypage h4.tit .count {font-size: 17px; right: 30px; top: 25px;}
    .mypage h4.tit .count strong {font-size: 24px;}
    .mypage .slick-arrow {right: 0; background-size: 20px auto; width: 20px;}
    .mypage .slick-prev {right: 100px;}

    .detail_list a {background-position: calc(100% - 20px) center; padding-right: 30px;}

    .mypage .right {width: calc(100% - 300px);}
    .mypage .right .show_list > li {padding: 0 20px; width: calc(25% + 10px);}
    .mypage .right .show_list > li:nth-child(4n + 1) {padding: 0 20px 0 0; width: calc(25% - 10px);}
    .mypage .right .show_list > li:nth-child(4n) {padding: 0 0 0 20px; width: calc(25% - 10px);}

    .ticket_list .img {width: 180px; height: 254px;}
    .ticket_list ul {width: calc(100% - 180px);padding: 0 0 0 20px;}
}
@media screen and (max-width: 1260px) {
    .mypage .etcBtn {flex-wrap: wrap;}
    .mypage .etcBtn li {width: calc(50% - 20px) !important;}
    .mypage .etcBtn li:nth-child(2n + 1) {margin-left: 0;}
    .mypage .etcBtn li:nth-child(n + 3) {border-top: none;}
    .mypage .etcBtn li:first-child {padding: 90px 0 20px; text-align: center; background-position: center 20px;}

    .mypage .right .show_list {width: calc(100% + 10px);}
    .mypage .right .show_list > li {padding: 0 20px; width: calc((100% / 3) + 10px);}
    .mypage .right .show_list > li:nth-child(4n + 1) {padding: 0 20px; width: calc((100% / 3) + 10px);}
    .mypage .right .show_list > li:nth-child(4n) {padding: 0 20px; width: calc((100% / 3) + 10px); border-right: 1px solid #000;}
    .mypage .right .show_list > li:nth-child(3n + 1) {padding: 0 20px 0 0; width: calc((100% / 3) - 10px); border-left: none;}
    .mypage .right .show_list > li:nth-child(3n) {padding: 0 0 0 20px; width: calc((100% / 3) - 10px); border-right: none;}
    .mypage .right .show_list > li:nth-child(n + 4) {margin-top: 40px;}
}
@media screen and (max-width: 1024px) {
    .mypage {display: block;}
    .mypage .left {width: 100%; margin: 80px 0 0; border-bottom: none; padding-bottom: 0;}
    .mypage .left::before {display: none;}
    .mypage .left > div {position: static;}
    .mypage .right {width: 100%; border-top: none;}

    .mypage h4.tit .count {top: 25px;}
    .mypage .slick-arrow {top: 25px;}

    .detail_list {margin: 0;}
    .detail_list li {width: calc((100% - 20px) / 3); margin: 5px 10px 5px 0;}
    .detail_list li:first-child {margin-top: 5px;}
    .detail_list li:nth-child(4n) {margin-right: 10px;}
    .detail_list li:nth-child(3n) {margin-right: 0;}

    .mypage .cont_move > li {padding-left: 0;}
    .mypage .show_list {width: calc(100% + 40px); margin-left: -20px;}
    .mypage .show_list li {padding: 0 18px;}
    .mypage .show_list li li {padding: 8px 0;}
    .mypage .show_list .slick-active + .slick-active {border-left: 1px solid #000;}

    .mypage .right > div {padding-left: 0}
    .mypage .right .show_list > li {border-right: none !important;}
    .mypage .right .show_list > li:nth-child(n + 4) {margin-top: 0;}
    .mypage .cont_move .add {display: none;}

    .mypage .right .show_list .slick-active + .slick-active {border-left: 1px solid #000;}

    .ticket_list {padding: 0 18px 50px;}
    .ticket_list .slick-arrow {top: -51px;}
}
@media screen and (max-width: 768px) {
    .mypage .left {margin-top: 40px;}
    .mypage .cont_move > li {padding-top: 0; margin-top: 0;}

    .mypage .etcBtn li:first-child p:first-child {font-size: 25px;}
    .mypage .etcBtn li strong {font-size: 18px !important;}
    .mypage .etcBtn li span {font-size: 18px;}
    .mypage .etcBtn li .num {font-size: 35px;}
    .mypage .etcBtn li:last-child span {font-size: 24px; margin-top: 15px;}

    .mypage h4.tit .count {top: 22px;}
    .mypage .slick-arrow {top: 20px;}

    .detail_list a {height: 50px; font-size: 15px; padding-left: 15px; background-position: calc(100% - 15px) center;}

    .ticket_list {padding-bottom:30px;}
    .ticket_list ul li.tit {font-size:25px; padding: 10px 0; margin: 10px 0;}
    .ticket_list ul li {font-size: 18px; display: flex; align-items: center;}
    .ticket_list ul li:first-child span:first-child {margin-right: 8px;border-width: 1px;}
    .ticket_list ul li.flex {margin:0;}
    .ticket_list ul li.flex span + span {padding-left:20px; position: relative;}
    .ticket_list ul li.flex span + span:after {left: 9px; top: 7px;}

    .ticket_list .slick-arrow {top: -48px;}
}
@media screen and (max-width: 600px) {
    .mypage .etcBtn {margin: 15px 10px 0;}
    .mypage .etcBtn::before {left: -10px;}
    .mypage .etcBtn::after {right: -10px;}
    .mypage .etcBtn li {width: calc(100% / 3) !important; margin-left: 0 !important; padding: 20px 10px; border-top: 1px solid #000 !important;}
    .mypage .etcBtn li:first-child {display: none;}
    .mypage .etcBtn li:first-child + li::after {display: none;}
    .mypage .etcBtn li:nth-last-child(1)::after,
    .mypage .etcBtn li:nth-last-child(2)::after {left: 0;}
    .mypage .etcBtn li:nth-child(2) {padding-left: 0;}
    .mypage .etcBtn li:nth-child(4) {padding-right: 0;}
    .mypage .etcBtn li strong {font-size: 13px !important;}
    .mypage .etcBtn li .num {font-size: 20px; padding: 0;}
    .mypage .etcBtn li:last-child span {margin-top: 5px; font-size: 18px;}

    .mypage .etcBtnMo {display: block;}
    .mypage .etcBtnMo p {font-size: 16px;}

    .detail_list li {width: calc((100% - 10px) / 2);}
    .detail_list li:nth-child(3n) {margin-right: 10px;}
    .detail_list li:nth-child(2n) {margin-right: 0;}

    .mypage .right .show_list {width: 100%;}
    .mypage .right .show_list > li {width: calc(100% / 2) !important; border-left: 1px solid #000 !important; border-right: none;}
    .mypage .right .show_list > li:nth-child(4n) {border-right: none;}
    .mypage .right .show_list > li:nth-child(2n + 1) {padding: 0 20px 0 0; border-left: none !important;}
    .mypage .right .show_list > li:nth-child(2n) {padding: 0 0 0 20px;}
    .mypage .right .show_list > li:nth-child(n + 3) {margin-top: 40px;}

    .ticket_list li a {flex-direction: column;}
    .ticket_list .img {max-width: 270px; width: 100%; height: auto; margin: 0 auto;}
    .ticket_list .img img {position: static; transform: none;}
    .ticket_list ul {padding: 10px 0 0 0; width: 100%;}
    .ticket_list ul li.tit {font-size: 18px; display: flex; justify-content: space-between; flex-wrap: wrap;}
    .ticket_list ul li.tit span:last-child {display: block;}
    .ticket_list ul li.none {display: none;}
    .ticket_list ul li.flex span:first-child {text-align:left}
    .ticket_list ul li.flex span:last-child {text-align:right}
}
@media screen and (max-width: 425px) {
    .mypage .cont_move > li > div {max-height:none;}
    .mypage .right .show_list {width: 100%;}
    .mypage .right .show_list > li {width: 100% !important; border: none !important; padding: 0 !important;}
    .mypage .right .show_list > li:nth-child(n + 2) {margin-top: 40px;}
}
/* --나의멤버십 */

/* 교육수강내역 */
.eduList {
    width: 440px;
    margin: 0 auto;
    text-align: center;
}
.eduList h4 {
    font-size: 45px !important;
    margin: 130px 0 0;
}
.eduList > div{
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    background: url('../img/content/icon_eduList.png') center 80px / 124px auto no-repeat #ffea00;
    padding: 234px 109px 60px;
}
.eduList > div a{display: block;}
@media screen and (max-width: 535px) {
    .eduList {width: 100%;}
    .eduList h4 {font-size: 30px !important;margin: 30px 0 0;}
    .eduList > div {padding: 234px 20px 60px;}
}
/*-- 교육수강내역 */
/* SNS계정연결 */
.snsLink {
    width: 1290px;
    margin: 0 auto;
}
.snsLink > p{
    text-align: center;
    font-size: 45px !important;
    font-family: 'classic';
    margin: 130px 0 90px;
}
.snsLink > ul {
    display: flex;
    justify-content: space-between;
    margin: 0 -40px 0 20px;
}
.snsLink > ul > li {
    width: calc((100% / 3) - 40px);
    border-top: #000 solid 2px;
    border-bottom: #000 solid 2px;
    padding: 224px 0 97px 0;
    text-align: center;
    position: relative;
    background-position: center 87px;
    background-repeat: no-repeat;
    background-size: 96px;
}
.snsLink > ul > li:last-child::before,
.snsLink > ul > li::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    background-color: #000;
    position: absolute;
    left: -20px;
    top: 20px
}
.snsLink > ul > li:last-child::before {
    left: auto;
    right: -20px;
}
.snsLink > ul > li:nth-child(1) {background-image: url('../img/content/sns_naver.png');}
.snsLink > ul > li:nth-child(2) {background-image: url('../img/content/sns_kakao.png');}
.snsLink > ul > li:nth-child(3) {background-image: url('../img/content/sns_google.png');}
.snsLink > ul > li > span {
    font-size: 17px;
    color: #898989;
}
.snsLink > ul > li > span + a{
    color: #898989;
}
.snsLink > ul > li > a{
    display: block;
    border-top: #000 solid 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 23px 0;
    font-size: 22px;
}
@media screen and (max-width: 1440px) {
    .snsLink {width: 80%;}
}
@media screen and (max-width: 1024px) {
    .snsLink {width: 100%;}
    .snsLink > p {margin: 100px 0 70px;}
    .snsLink > ul > li:first-child{margin-left: 30px;}
}
@media screen and (max-width: 768px) {
    .snsLink > p {margin: 50px 0 30px;font-size: 30px !important;}
    .snsLink > ul {display: block;border-top: #000 solid 2px;border-bottom: #000 solid 2px;}
    .snsLink > ul > li {
        width: 100%;
        border: none;
        padding: 100px 0 80px;
        background-size: 50px;
        background-position: center 30px;
    }
    .snsLink > ul > li:last-child::before,
    .snsLink > ul > li::after {display: none;}
    .snsLink > ul > li:first-child {margin-left: 0;}
    .snsLink > ul > li + li {border-top: #000 solid 1px;}
    .snsLink > ul > li > a {font-size: 18px;padding: 15px;}
}
/*-- SNS계정연결 */
/* --09 마이페이지 */

/* 00 통합검색 */
.total_search {
    margin: 45px auto 60px;
}
.total_search > div {max-width: 1200px; width: 100%; margin: 0 auto;}
.total_search > div:first-child {display: flex; flex-wrap: wrap; position: relative;}
.total_search select {width: 30%; box-sizing: border-box; margin-right: 10px; font-size: 22px; padding: 18px 42px 18px 22px; height: auto; line-height: normal; background: url('../img/content/total_search_select.png') calc(100% - 20px) center / 17px auto no-repeat;}
.total_search option {font-size: 18px;}
.total_search input {width: calc(70% - 120px); font-size: 22px; line-height: 24px; box-sizing: border-box; border: 1px solid #000; padding: 18px 22px;}
.total_search button {width: 110px; background-color: #000; line-height: 24px; font-size: 20px; color: #fff; border: 1px solid #000;}
.total_search button:focus-visible {outline-offset: 1px}

.total_search .layer_w {
    width: calc(70% - 10px);
    padding: 22px;
    max-width: none;
    border-color: #000;
    font-size: 18px;
    right: 0;
    top: 63px;
}

.total_search .word_w {margin-top: 20px;}
.total_search .word_w::after {content: ""; display: block; clear: both;}
.total_search .word_w > span {display: inline-block; vertical-align: top; font-size: 20px; margin: 5px 8px 5px 0; padding: 0 18px; border-left: 1px solid #000; border-right: 1px solid #000;}
.total_search .word_w > ul {display: inline-block; width: calc(100% - 286px);}
.total_search .word_w > ul li {float: left;}
.total_search .word_w > ul a {font-size: 18px; padding: 0 10px; background-color: #ececec; line-height: 30px; margin: 5px 10px 5px 0; display: block;}
.total_search .word_w > a {font-size: 17px; background-color: #fff; padding: 0 35px 0 5px; margin-top: 5px; line-height: 28px; float: right; position: relative; border: 1px solid #000;}
.total_search .word_w > a::after {
    content: '';
    width: 30px;
    height: 30px;
    display: block;
    background: url('../img/content/history_del_btn.png') center / 14px #000 no-repeat;
    position: absolute;
    right: 0;
    top: -1px;
}

.total_search.en .word_w > ul {width: calc(100% - 376px);}

.search_sub .group {display: flex; position: relative; min-height: 320px;}
.search_sub h4 {
    width: 400px;
    margin: 40px 40px 0 0 !important;
    position: relative;
    padding-bottom: 20px;
}
.search_sub h4::before,
.search_sub h4::after {
    content: '';
    width: 2px;
    height: 100%;
    display: block;
    background-color: #000;
    position: absolute;
    right: -21px;
    top: 0;
}
.search_sub h4::after {width: 100%; height: 2px; right: 0; top: -21px;}
.search_sub h4 + * {width: calc(100% - 400px); padding-bottom: 40px; margin-top: 20px;}

.search_sub .group:first-child h4 {margin-top: 20px !important;}
.search_sub .group:first-child h4 + * {margin-top: 0 !important;}
.search_sub .group:last-child h4,
.search_sub .group:last-child h4 + * {border-bottom: 2px solid #000;}

.search_sub h4 .yellow {font-size: 26px !important; border: none !important; padding: 0 !important;}

.search_sub .show_list {border-top: 2px solid #000;}
.search_sub .show_list > li {padding: 30px 25px; width: calc(25% + 8px);}
.search_sub .show_list > li:nth-child(4n + 1) {padding: 30px 25px 30px 10px; width: calc(25% - 8px);}
.search_sub .show_list > li:nth-child(4n) {padding: 30px 10px 30px 25px; width: calc(25% - 8px);}

.search_sub [class^='tbl_'] tr:first-child td,
.search_sub .faq_list li:first-child > div {border-top: 2px solid #000;}

.search_sub .group .btn_s_plus {position: absolute; top: 100px;}
.search_sub .group:first-child .btn_s_plus {top: 80px;}

@media screen and (max-width: 1440px) {
    .search_sub h4 {width: 300px;}
    .search_sub h4 + * {width: calc(100% - 300px);}
}
@media screen and (max-width: 1260px) {
    .search_sub .show_list {flex-wrap: wrap;}
    .search_sub .show_list > li {width: calc((100% / 3) + 10px);}
    .search_sub .show_list > li:nth-child(4) {display: none;}
    .search_sub .show_list > li:nth-child(4n + 1) {padding: 30px 25px; width: calc((100% / 3) + 10px);}
    .search_sub .show_list > li:nth-child(4n) {padding: 30px 25px; width: calc((100% / 3) + 10px);}
    .search_sub .show_list > li:nth-child(3n + 1) {padding: 30px 25px 30px 10px; width: calc((100% / 3) - 5px);}
    .search_sub .show_list > li:nth-child(3n) {padding: 30px 10px 30px 25px; width: calc((100% / 3) - 5px); border-right: none;}
}
@media screen and (max-width: 1024px) {
    .search_sub .group {display: block;}
    .search_sub h4 {width: 100%; margin-right: 0 !important;}
    .search_sub h4::before {display: none;}
    .search_sub .group:last-child h4 {border-bottom: none;}
    .search_sub h4 + * {width: 100%;}

    .search_sub .group:first-child h4 + * {margin-top: 20px !important;}

    .search_sub .group .btn_s_plus {right: 0; top: 0 !important;}
}
@media screen and (max-width: 768px) {
    .total_search {margin: 15px auto 30px; padding-bottom: 30px;}
    .total_search > div:first-child {display: block;}
    .total_search select {font-size: 18px; padding: 12px 34px 12px 14px; width: 100%; margin: 0 0 10px 0; background-position: calc(100% - 14px) center; max-width: none;}
    .total_search input {font-size: 18px; padding: 12px 14px; width: calc(100% - 70px);}
    .total_search button {font-size: 18px; padding: 12px 14px; width: 70px; float: right;}

    .total_search .layer_w {top: 106px; width: 100%; font-size: 16px; padding: 22px 18px;}

    .total_search .word_w {margin-top: 10px;}
    .total_search .word_w > span {font-size: 14px; line-height: 18px; padding: 0 10px;}
    .total_search .word_w > ul {width: calc(100% - 127px);}
    .total_search .word_w > ul a {font-size: 14px; line-height: 18px; padding: 0 5px;}
    .total_search .word_w > a {font-size: 14px; line-height: 16px; padding-right: 23px; float: none;}
    .total_search .word_w > a::after {width: 18px; height: 18px; background-size: 9px;}

    .search_sub h4 {padding-bottom: 10px;}
    .search_sub .group:first-child h4 {margin-top: 80px !important;}
    .search_sub h4 .yellow {font-size: 22px !important;}

    .search_sub .show_list > li {padding: 30px 20px; width: calc((100% / 3) + 7px);}
    .search_sub .show_list > li:nth-child(3n + 1) {padding: 30px 20px 30px 10px; width: calc((100% / 3) - 3.5px);}
    .search_sub .show_list > li:nth-child(3n) {padding: 30px 10px 30px 20px; width: calc((100% / 3) - 3.5px);}

    .search_sub [class^='tbl_'] tr:first-child td,
    .search_sub .faq_list li:first-child > div {border-top: none;}

    .search_sub .noCont {border-top: none !important;}
    .search_sub td.noCont {display: block !important; border-top-width: 1px !important;}
}
@media screen and (max-width: 600px) {
    .search_sub .show_list > li {width: 50%;}
    .search_sub .show_list > li:nth-child(4) {display: block;}
    .search_sub .show_list > li:nth-child(3n + 1) {width: 50%;}
    .search_sub .show_list > li:nth-child(3n) {width: 50%; border-right: 1px solid #000;}
    .search_sub .show_list > li:nth-child(2n + 1) {padding: 30px 20px 30px 10px;}
    .search_sub .show_list > li:nth-child(2n) {padding: 30px 10px 30px 20px; border-right: none;}
}
@media screen and (max-width: 500px) {
    .search_sub h4 {text-align: center; padding-bottom: 40px;}

    .search_sub .group .btn_s_plus {top: 50px !important;}
}
@media screen and (max-width: 425px) {
    .search_sub .show_list > li {padding: 30px 20px !important; border-right: none !important;}
}
/* --00 통합검색 */

.tbl_info.fs20 * {font-size: 20px !important;}

/* 티켓몰 사이트 */
#ticket .show_list {margin-top: 60px;}
#ticket .show_list .btnAreaC {justify-content: space-between; margin-top: 20px;}
#ticket .show_list .btnAreaC > * {
    margin: 0;
    width: calc((100% - 15px) / 2);
    text-align: center;
    display: block;
    line-height: 48px;
}
#ticket .show_list .btn_yellow {background-color: #ffe800;}

@media screen and (max-width: 768px) {
    #ticket .show_list {margin-top: 40px;}
    #ticket .show_list .btnAreaC {margin-top: 15px;}
    #ticket .show_list .btnAreaC > * {font-size: 15px; line-height: 38px; width: calc((100% - 10px) / 2);}
}

/* 누구나 세종썸머페스티벌 */
.summer_list > p {padding-bottom: 55px; position: relative;}
.summer_list > p span {
    text-indent: -9999px;
    overflow: hidden;
    background: url('../img/content/tit_summer2.png') center center / auto 95px no-repeat;
    width: 310px;
    height: 310px;
    box-sizing: border-box;
    display: block;
    position: relative;
    border: 1px solid #000;
    border-radius: 50%;
    margin: 0 auto;
}
.summer_list > p::after {
    content: '';
    width: 1px;
    height: 55px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.summer_list > p span::before {
    content: '';
    display: block;
    width: 260px;
    height: 260px;
    background-color: #ffea1b;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.summer_list ul {display: flex; position: relative;}
.summer_list ul li {
    border: 1px solid #000;
    width: 20%;
    padding: 30px 15px;
    text-align: center;
    font-size: 18px;
    position: relative;
}
.summer_list ul::before,
.summer_list ul::after,
.summer_list ul li::before,
.summer_list ul li::after {
    content: '';
    width: 36px;
    height: 10px;
    background-color: #fff;
    display: block;
    position: absolute;
    left: -27px;
    top: -1px;
}
.summer_list ul::before,
.summer_list ul::after {left: auto; right: -8px; top: 0; width: 18px; z-index: 1;}
.summer_list ul::after {top: auto; bottom: 0;}
.summer_list ul li::after {top: auto; bottom: -1px;}
.summer_list ul li:first-child:before,
.summer_list ul li:first-child::after {width: 18px; left: -10px;}
.summer_list ul li:not(:last-child) {margin-right: 15px;}
.summer_list ul li p {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    padding: 8px 0;
    margin: 0 -5px 20px;
    word-break: keep-all;
}

@media screen and (max-width: 768px) {
    .summer_list > p {padding-bottom: 35px;}
    .summer_list > p span {width: 230px; height: 230px; background-size: auto 70px;}
    .summer_list > p::after {height: 35px;}
    .summer_list > p span::before {width: 200px; height: 200px;}
    .summer_list ul {flex-direction: column;}
    .summer_list ul::before {left: -9px;}
    .summer_list ul::after {bottom: auto; top: 0; left: auto; right: -9px;}
    .summer_list ul li {width: 100%; padding: 20px 15px;}
    .summer_list ul li:not(:last-child) {margin: 0 0 15px;}
    .summer_list ul li::before,
    .summer_list ul li::after {
        width: 18px;
        height: 35px;
        left: -10px;
        top: auto;
        bottom: -26px;
        z-index: 1;
    }
    .summer_list ul li::after {left: auto !important; right: -10px;}
}
/* --누구나 세종썸머페스티벌 */

/* 전자책 서비스 버튼 */
.ebook_list {display: flex; align-items: center; justify-content: center; margin: 30px auto;}
.ebook_list div {display: flex; margin-left: 25px;}
.ebook_list a {width: 63px; height: 63px;}
.ebook_list a:not(:last-child) {margin-right: 10px;}

@media screen and (max-width: 768px) {
    .ebook_list {text-align: center; max-width: 300px; word-break: keep-all; flex-direction: column;}
    .ebook_list div {margin: 10px 0 0;}
    .ebook_list a {width: 48px; height: 48px;}
}

/* 청년데이티켓 */
.two_step_list {display: flex;}
.two_step_list > div {width: 100%;}
.two_step_list > div h5 {padding-left: 15px !important; margin-top: 0 !important;}
.two_step_list > div:first-child h5 {padding-left: 0 !important;}
.two_step_list h5::before {display: none !important;}
.two_step_list ul {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
    padding: 20px 0;
    position: relative;
}
.two_step_list li {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-left: 1px solid #000;
    position: relative;
}
.two_step_list li::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 50%;
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../img/content/step_arr.png') center / 9px no-repeat #fff;
}
.two_step_list > div:first-child li:first-child::before {display: none;}
.two_step_list > div:first-child ul::before,
.two_step_list > div:first-child ul::after {
    content: '';
    width: 30px;
    height: 40px;
    background-color: #fff;
    display: block;
    position: absolute;
    right: -15px;
    z-index: 1;
}
.two_step_list > div:first-child ul::before {top: -20px;}
.two_step_list > div:first-child ul::after {bottom: -20px;}
.two_step_list > div:first-child li:first-child {border-left: none;}
.two_step_list li span {background-color: #5fceea; padding: 0 10px; font-size: 17px;}
.two_step_list li img {display: block; margin: 15px 0;}
.two_step_list li p {font-size: 26px; word-break: keep-all; text-align: center;}

@media screen and (max-width: 768px) {
    .two_step_list {flex-direction: column;}
    .two_step_list > div h5 {padding-left: 0 !important;}
    .two_step_list > div + div h5 {margin-top: 20px !important;}
    .two_step_list ul {padding: 15px 0;}
    .two_step_list li {padding: 15px;}
    .two_step_list li::before {width: 25px; height: 25px; background-size: 8px;}
    .two_step_list li:first-child {border-left: none;}
    .two_step_list li:first-child::before {display: none;}
    .two_step_list li span {font-size: 14px; line-height: 22px;}
    .two_step_list li img {width: 60px; margin: 10px 0;}
    .two_step_list li p {font-size: 20px;}
}

/* 정보공개 > esg경영체계 */
.esgCont {
    background-color: #f1f1f1;
    padding: 75px 50px 100px;
    text-align: center;
}
#content .esgCont > h4 {font-size: 70px; margin-bottom: 0;}
.esgCont dt {
    font-size: 36px;
    font-family: "classic";
    display: inline-block;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin: 80px 0 50px;
    line-height: 145%;
    padding: 0 7px;
}
.esgCont p {font-size: 60px; font-family: "classic";}
.esgList ul {display: flex; margin-top: 20px;}
.esgList ul li {
    width: calc((100% - 220px) / 3);
    text-align: center;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: #fff;
    font-size: 26px;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.esgList ul li + li {margin-left: 110px;}
.esgList ul li + li::before {
    content: '';
    width: 80px;
    height: 100px;
    background: url('../img/content2/esg_list_plus.png') center / 80px auto no-repeat;
    position: absolute;
    left: -95px;
}
.esgList ul li span {
    position: absolute;
    top: -20px;
    background-color: #000;
    color: #fff;
    width: 50px;
    line-height: 50px;
    display: block;
    border-radius: 50%;
}
.taskList {display: flex;}
.taskList ul {
    width: calc((100% - 90px) / 3);
    border: 1px solid #000;
    text-align: left;
    padding: 30px 40px 50px;
}
.taskList ul + ul {margin-left: 45px;}
.taskList ul:nth-child(1) {background-color: #ffe800;}
.taskList ul:nth-child(2) {background-color: #5fceea;}
.taskList ul:nth-child(3) {background-color: #c36d15;}
.taskList ul li {
    border-bottom: 1px solid #000;
    font-size: 24px;
    line-height: 180%;
    padding: 10px 0 10px 25px;
    position: relative;
}
.taskList ul li span {position: absolute; left: 0;}

@media screen and (max-width: 1024px) {
    .esgList ul li {width: calc((100% - 160px) / 3); padding: 50px 10px;}
    .esgList ul li + li {margin-left: 80px;}
    .esgList ul li + li::before {width: 50px; background-size: 50px auto; left: -65px;}
    .taskList {display: block;}
    .taskList ul {width: 100%;}
    .taskList ul + ul {margin: 40px 0 0;}
}
@media screen and (max-width: 768px) {
    .esgCont {padding: 50px 25px 80px;}
    #content .esgCont > h4 {font-size: 35px;}
    .esgCont dt {font-size: 24px; padding: 0 5px; margin: 60px 0 20px;}
    .esgCont p {font-size: 30px;}
    .esgList ul {display: block; max-width: 500px; margin: 15px auto 0;}
    .esgList ul li {font-size: 18px; width: 100%; padding: 30px 10px;}
    .esgList ul li + li {margin: 70px 0 0;}
    .esgList ul li + li::before {
        width: 40px;
        height: 50px;
        background-size: 40px auto;
        transform: translateX(-50%) rotate(90deg);
        left: 50%;
        top: -67px;
    }
    .esgList ul li span {
        width: 30px;
        line-height: 30px;
        font-size: 16px;
        top: -15px;
    }
    .taskList {max-width: 500px; margin: 0 auto;}
    .taskList ul {padding: 10px 20px 25px;}
    .taskList ul + ul {margin-top: 15px;}
    .taskList ul li {font-size: 15px; padding: 8px 0 8px 20px;}
}
/* --정보공개 > esg경영체계 */

/* tab 아래 btnArea */
.tab + [class^='btnArea'] {margin-top:-45px;}

@media screen and (max-width: 768px) {
    .tab + [class^='btnArea'] {margin-top:0;text-align:left;}
}
/* --tab 아래 btnArea */