/*
흰색 filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
프러시안 filter: invert(50%) sepia(13%) saturate(1646%) hue-rotate(191deg) brightness(89%) contrast(82%);
회색 filter: invert(68%) sepia(2%) saturate(10%) hue-rotate(13deg) brightness(91%) contrast(86%);
*/

/* 공통 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    color: #111;
    line-height: 1;
}

h1, h2, h3, h4, h5, p, ul, ol, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1 {
    font-size: 50px;
    font-weight: bold;
}

h2 {
    font-size: 44px;
    font-weight: bold;
}

h3 {
    font-size: 30px;
    font-weight: bold;
}

h4 {
    font-size: 26px;
    font-weight: bold;
}

h5 {
    font-size: 22px;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    align-content: center;
}

[class*="logo"] {
    width: 180px;
}

.icon {
    width: 14px;
}

.bold {
    font-weight: bold;
}

.bg-lightblue {
    background-color: #EBF2F9;
}

.bg-lightyellow {
    background-color: #FAFAF8;
}

.essential::after {
    content: "*";
    color: #FF4C4C;
    margin-left: 4px;
}

.container {
    max-width: 1400px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.none {
    display: none;
}

input[type="text"]:read-only {
    background-color: #FAFAFA;
    color: #999999;
    pointer-events: none;
}

/* button */
button {
    background: none;
    border: none;
}

button[class*="type"] {
    width: 160px;
    height: 50px;
}

button.type1 {
    border: 1px solid #D5DCE5;
    background: #FFF;
}

button.type1:is(:hover, :focus) {
    border: 2px dashed #111;
    font-weight: bold;
}

button.type2 {
    background: #111;
    color: #FFF;
}

button.type2 .icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
}

button.type2:is(:hover, :focus):not([disabled]) {
    background: #F37724;
    border-radius: 100px;
    transition: .2s ease-in-out;
    font-weight: bold;
}

button.type3 {
    background: #34489B;
    color: #FFF;
}

button.type3:hover:not([disabled]) {
    background: #F37724;
    font-weight: bold;
}

button.type4 {
    width: 300px;
    height: 60px;
    border: 1px solid #111;
    text-align: left;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
}

button.type4 .icon {
    width: 20px;
}

button.type4:hover {
    background: #111;
    transition: .2s;
    color: #FFF;
    font-weight: bold;
}

button.type4:hover .icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
}

button.type5 {
    background: #34489B;
    color: #FFF;
}

button.type5:hover:not([disabled]) {
    background: #F37724;
    font-weight: bold;
}

button[class*="type"][disabled],
button[class*="type"][disabled]:hover,
button[class*="type"][disabled]:focus {
    background: #D5DCE5;
    border-color: #D5DCE5;
    pointer-events: none;
    cursor: not-allowed;
}

button[class*="type"][disabled] .icon {
    filter: invert(68%) sepia(2%) saturate(10%) hue-rotate(13deg) brightness(91%) contrast(86%);
}

button.square {
    width: 50px;
    height: 50px;
}

button.square:has(.icon) {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s
}

button.square:has(.icon):hover, button.square:has(.icon).active {
    box-shadow: 0 0 0.52vw rgba(0, 0, 0, .2);
    border-radius: 1rem;
}

.btn-group {
    display: flex;
    border-radius: 0;
    position: relative;
}

/*.btn-group{border-radius: 0;}*/

/* dropdown */
.dropdown {
    position: relative;
}

.dropdown button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 40px;
}

.dropdown button:is(:hover, :focus) {
    font-weight: bold;
}

.dropdown button span {
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

.dropdown button span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #F8F9FA;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.dropdown:hover button span {
    font-weight: bold;
    outline: none;
}

.dropdown:hover button span::after {
    transform: scaleX(1);
}

.dropdown button .icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
    transition: ease-in-out .2s;
    margin-left: 10px;
}

.dropdown.active > button .icon {
    transform: rotate(180deg);
    transition: ease-in-out .2s;
}

.dropdown .wrap {
    position: absolute;
    width: 160px;
    display: none;
    background: #FFF;
    z-index: 11;
    overflow-y: auto;
    color: #FFF;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 14px;
    max-height: 150px;
}

.dropdown .wrap li {
    height: 30px;
    overflow: hidden;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.dropdown .wrap li a {
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

.dropdown .wrap li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #F8F9FA;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.dropdown .wrap li a:hover {
    font-weight: bold;
    outline: none;
}

.dropdown .wrap li a:hover::after {
    transform: scaleX(1);
}

.dropdown .wrap::-webkit-scrollbar {
    width: 6px;
}

.dropdown .wrap::-webkit-scrollbar-thumb {
    background: #F37724;
    border-radius: 10px;
}

.dropdown .wrap::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

/* skip */
.skip a {
    position: absolute;
    top: -50px;
    width: 200px;
    height: 50px;
    background: #111;
    color: #FFF;
    z-index: 20;
    align-content: center;
    text-align: center;
}

.skip a:focus {
    top: 0;
}

/* header */
header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.scrolled .gnb, header.active .gnb {
    background: #282E48;
}

header.scrolled .pc-menu, header.active .pc-menu {
    background: #FFF;
    color: #111;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

header.scrolled .depth1 .wrap, header.active .depth1 .wrap {
    border-top: 1px solid #D5DCE5;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.05);
}

header.scrolled .pc-menu .logo, header.active .pc-menu .logo {
    display: inline-block;
}

header.scrolled .pc-menu .logo_w, header.active .pc-menu .logo_w {
    display: none;
}

.container-fluid > ul > li > a > .icon {
    display: none;
}

.gnb {
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    font-size: 16px;
}

.gnb [class*="container"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.gnb ul {
    display: flex;
}

.gnb ul li {
    line-height: 1;
    align-content: center;
    padding: 0 10px;
}

.gnb ul li:not(:last-child) {
    margin-right: 10px;
}

.gnb ul li.dropdown {
    padding: 0;
}

.gnb .dropdown button {
    color: #FFF;
}

.gnb a {
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

.gnb a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #FFF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.gnb a:hover {
    font-weight: bold;
}

.gnb a:hover::after {
    transform: scaleX(1);
}

.pc-menu {
    height: 80px;
    position: relative;
    background: transparent;
    color: #FFF;
}

.pc-menu [class*="container"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
}

.pc-menu .brand .text {
    /*margin-left: 14px;*/
    padding-left: 14px;
    content: "";
    border-left: 1px solid #D5DCE5;
    display: inline-block;
    font-size: 22px;
    font-weight: 500;
}

.pc-menu .logo {
    display: none;
}

.pc-menu .logo_w {
    display: inline-block;
}

.pc-menu .depth1 {
    display: flex;
}

.pc-menu .depth1 > li {
    display: inline-block;
}

.pc-menu .depth1 > li > a {
    font-size: 22px;
    font-weight: 500;
    padding: 0 30px;
    height: 80px; /*pointer-events: none; cursor: default;*/
    position: relative;
}

.pc-menu .depth1 > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    background: #34489B;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pc-menu .depth1 > li:is(:hover, :focus-within) > a::after {
    transform: scaleX(1);
}

.pc-menu .depth1 .wrap {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    min-height: 400px;
    background: #FFF;
    display: none;
}

.pc-menu .depth1 .wrap .menu-title {
    background: url(/images/main/menu-title.jpg) center bottom;
    background-repeat: no-repeat;
    width: 400px;
    padding: 60px;
    font-size: 26px;
    color: #FFF;
    font-weight: bold;
    min-height: 400px;
}

.pc-menu .depth2 {
    position: relative;
    padding: 60px;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    align-content: baseline;
}

.pc-menu .depth2 > li {
    display: inline-block;
    margin: 0 20px 20px 0;
}

.pc-menu .depth2 > li > a {
    width: 240px;
    height: 50px;
    border: 1px solid #D5DCE5;
    border-radius: 4px;
    padding: 2px 20px;
    display: flex;
    align-items: center;
}

.pc-menu .depth2 > li > a .icon {
    margin-left: 6px;
    filter: invert(50%) sepia(13%) saturate(1646%) hue-rotate(191deg) brightness(89%) contrast(82%);
}

.pc-menu .depth2 > li > a:is(:hover, :focus) {
    font-weight: bold;
    background: #111;
    color: #FFF;
    transition: .2s;
    border-color: #111;
}

.pc-menu .depth2 > li > a:is(:hover, :focus) .icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
}

.pc-menu .depth3 {
    padding: 10px;
}

.pc-menu .depth3 > li::before {
    content: "⦁";
    margin-right: 6px;
    color: #BDC2C9;
}

.pc-menu .depth3 > li > a {
    position: relative;
    height: 30px;
}

.pc-menu .depth3 > li > a::after {
    content: "";
    display: block;
    height: 1px;
    background: #000;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.pc-menu .depth3 > li:hover:has(a:hover)::before {
    color: #34489B;
}

.pc-menu .depth3 > li:hover > a:hover {
    color: #34489B;
    font-weight: bold;
}

.pc-menu .depth3 > li:hover > a:hover::after {
    width: 100%;
}

.pc-menu .depth3 > li > a .icon {
    margin-left: 6px;
}

.pc-menu .btn-group button {
    width: 80px;
    height: 80px;
    background: #34489B;
}

.pc-menu .btn-group button:hover {
    background: #223275;
    transition: .2s;
}

.pc-menu .btn-group button img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
}

.pc-menu .btn-group button.search {
    background: #33944D;
}

.pc-menu .btn-group button.search:hover {
    background: #1c6931;
}

.pc-menu .btn-group button.menuclose {
    display: none;
}

.pc-menu .btn-group button img {
    width: 40px;
}

.m-menu {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    z-index: 9;
    background: #FFF;
    width: 100%;
    max-width: 400px;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.m-menu.active {
    display: flex;
}

.m-menu .m-quick {
    position: absolute;
    width: 100%;
    display: flex;
    background: #F8F9FA;
    height: 40px;
}

.m-menu .m-quick .menu {
    display: flex;
    padding: 0 10px;
    flex-wrap: wrap;
}

.m-menu .m-quick .menu li {
    align-content: center;
}

.m-menu .m-quick .menu li:not(:last-child)::after {
    border-right: 1px solid #D5DCE5;
    content: "";
    padding-right: 10px;
    margin-right: 10px;
}

.m-menu .depth1 { /*margin-top: 40px;*/
    width: 160px;
    background: #282E48;
}

.m-menu .depth1 a {
    width: 100%;
    padding: 4px 10px;
    display: flex;
    align-items: center;
}

.m-menu .depth1 a .icon {
    margin-left: 4px;
}

.m-menu .depth1 > li {
    width: 100%;
}

.m-menu .depth1 > li.active {
    background: #12172B;
}

.m-menu .depth1 > li > a {
    color: #FFF;
    height: 50px;
}

.m-menu .depth1 > li.active > a {
    font-weight: bold;
}

.m-menu .depth2 {
    position: absolute;
    left: 160px; /*top: 40px;*/
    top: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    display: none;
}

.m-menu .depth2 > li {
    border-bottom: 1px solid #D5DCE5;
}

.m-menu .depth2 > li > a {
    height: 40px;
}

.m-menu .active .depth2 {
    display: block;
}

.m-menu .depth2 li:has([class*="depth"]) > a {
    background: url(/images/icon/icon_down.svg) right 10px center;
    background-size: 12px;
    background-repeat: no-repeat;
}

.m-menu .depth2 li.active:has([class*="depth"]) > a {
    background: url(/images/icon/icon_up.svg) right 10px center;
    background-size: 12px;
    background-repeat: no-repeat;
}

.m-menu .depth3 {
    background: #F8F9FA;
    display: none;
}

.m-menu .depth3.active {
    display: block;
}

.m-menu .depth3 > li > a {
    height: 34px;
}

.container-fluid > a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.side-btn {
    z-index: 5;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #FFF;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.side-btn li {
    width: 80px;
    height: 80px;
    background: #34489B;
}

.side-btn li:hover {
    background: #223275;
    transition: .2s;
}

.side-btn li:last-child {
    height: 36px;
    background: #282E48;
}

.side-btn li:not(:last-child) {
    border-bottom: 1px solid #6675B2;
}

.side-btn li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.side-btn li .icon {
    width: 24px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
    margin-bottom: 6px;
}

.side-btn a {
    position: relative;
}

.side-btn a .alarm {
    background-color: #FF4C4C;
    padding: 2px 4px;
    color: #FFF;
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* section */
section {
    padding: 120px 0;
}

section .title {
    margin-bottom: 50px;
    background-image: url(/images/main/title-deco.jpg);
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: left top;
    padding: 20px 0 0;
}

section.sub .title {
    margin-bottom: 80px;
    background-position: left bottom;
    padding: 0 0 20px 0;
}

section .subtitle {
    margin-bottom: 20px;
}

section .subtitle > *:not(:last-child) {
    margin-bottom: 20px;
}

section .content > *:not(:last-child) {
    margin-bottom: 50px;
}

section .content-div > *:not(:last-child) {
    margin-bottom: 30px;
}

section .subcontent > *:not(:last-child) {
    margin-bottom: 20px;
}

.main1 {
    border-bottom: 1px solid #D5DCE5;
    padding: 0;
}

.main1 .top {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/main/entra_main1_bg.jpg) center center / cover no-repeat;
}

.main1 .top > * {
    height: 900px;
}

.main1 .video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.main1 .video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.main1 .video video {
    width: 100%;
    height: 900px;
    object-fit: cover;
}

.main1 .btn-group {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    align-items: end;
    height: auto;
}

.main1 .btn-group button:not(:last-child) {
    margin-right: 4px;
}

.main1 .btn-group button.pause {
    display: none;
}

.main1 .btn-group button:not(.todayClose) {
    width: 50px;
}

.main1 .btn-group button.todayClose {
    width: 220px;
}

.main1 .btn-group button.todayClose .icon {
    margin-left: 10px;
}

.main1 .text {
    color: #FFF;
    align-content: center;
    text-align: center;
    padding-top: 120px;
    line-height: 1.2;
}

.main1 .text > *:not(:last-child) {
    margin-bottom: 10px;
    font-size: 24px;
}

.main1 .bottom {
    padding: 20px 0;
}

.main1 .bottom a {
    display: block;
    word-break: keep-all;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    padding: 30px 0;
    border-radius: 4px;
}

.main1 .bottom a img {
    width: 50px;
    margin-bottom: 10px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.main1 .bottom a:is(:hover, :focus) {
    background: #34489B;
    color: #FFF;
    font-weight: bold;
}

.main1 .bottom a:is(:hover, :focus) img {
    transform: rotateY(360deg);
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
}

[class*="main"] .tabmenu {
    position: relative;
}

[class*="main"] .tabmenu .wrap {
    display: none;
    position: absolute;
}

[class*="main"] .tabmenu .active .wrap {
    display: block;
}

[class*="main"] .tabmenu .category button {
    font-size: 22px;
    color: #707070;
}

[class*="main"] .tabmenu .category button:hover {
    font-weight: bold;
}

[class*="main"] .tabmenu .active .category button {
    font-weight: bold;
}

.main2 .tabmenu > div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.main2 .category button {
    width: 100%;
    height: 50px;
    border-radius: 100px;
    background-position: right 30px center;
    background-repeat: no-repeat;
    background-size: 14px;
}

.main2 .category button:hover {
    background-color: #F8F9FA;
    color: #111;
}

.main2 .category button.active {
    background-color: #EBF2F9;
    color: #34489B;
}

.main2 .wrap {
    left: 300px;
    top: 0;
    background: #FFF;
    position: static !important;
}

.main2 .wrap.active {
    display: block;
}

.main2 .wrap a {
    display: flex;
    height: 60px;
    align-items: center;
    border-bottom: 1px solid #D5DCE5;
    padding: 0 10px;
}

.main2 .wrap a:nth-child(1) {
    border-top: 2px solid #707070;
}

.main2 .wrap a > *:nth-child(1) {
    color: #FFF;
    border-radius: 100px;
    text-align: center;
    margin-right: 10px;
    flex-basis: 80px;
    padding: 6px 10px;
    font-weight: bold;
}

.main2 .wrap a > *:nth-child(1).tag1 {
    background: #34489B;
}

.main2 .wrap a > *:nth-child(1).tag2 {
    background: #33944D;
}

.main2 .wrap a > *:nth-child(1).tag3 {
    background: #F37724;
}

.main2 .wrap a > *:nth-child(2) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 20px;
}

.main2 .wrap a:hover > *:nth-child(2) {
    text-decoration: underline;
}

.main2 .wrap a > *:nth-child(3) {
    color: #727791;
    margin-left: auto;
    text-align: right;
    flex-basis: 120px;
    min-width: 120px;
}

.main2 .tabmenu .category {

}

.main2 .tabmenu .category button.active {
    background-color: #EBF2F9;
    color: #34489b;
    font-weight: bold;
    border-radius: 50px;
    background-image: url(../../images/icon/icon_right.svg);
}

.main2 .tabmenu .wrap {
    position: static;
}

.main2 .tabmenu .wrap.active {
    display: block;
}

.main3 .tabmenu {
    /*display: flex;*/
    /*justify-content: center;*/
}

.main3 .category {
    height: 50px;
    padding: 0 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.main3 .category button {
    position: relative;
    display: inline-block;
    padding: 10px;
}

.main3 .category button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: #111;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.main3 .category button:is(:hover, :focus) {
    color: #111;
    outline: none;
}

.main3 .category button:is(:hover, :focus)::after {
    transform: scaleX(1);
}

.main3 .category button.active {
    outline: none;
    color: #34489B;
}

.main3 .category button.active::after {
    background: #34489B;
    transform: scaleX(1);
}

.main3 .tabmenu .wrap {
    width: 100%;
    left: 0;
    position: static;
}

.main3 .tabmenu .wrap.active {
    display: block;
}

.main3 .tabmenu .wrap .row > * {
    padding: calc(var(--bs-gutter-x) * .5);
}

.main3 .tabmenu .card {
    padding: 40px;
    height: 100%;
    border: none;
}

.main3 .tabmenu .card > *:nth-child(1) {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main3 .tabmenu .card > *:nth-child(1)::before {
    color: #FFF;
    padding: 4px 10px;
    display: inline-block;
    border-radius: 100px;
    font-size: 18px;
}

.main3 .tabmenu .wrap.early-first .card > *:nth-child(1)::before {
    background: #3093A8;
    content: "수시 1차";
}

.main3 .tabmenu .wrap.early-second .card > *:nth-child(1)::before {
    background: #33944D;
    content: "수시 2차";
}

.main3 .tabmenu .wrap.regular .card > *:nth-child(1)::before {
    background: #F37724;
    content: "정시";
}

.main3 .tabmenu .category button {
    position: relative;
}

.main3 .tabmenu .category button.active {
    font-weight: bold;
    color: #34489B;
}

.main3 .tabmenu .category button.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: #34489B;
    transform: scaleX(1);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.main3 .tabmenu .wrap {
    position: static;
}

.main3 .tabmenu .wrap.active {
    display: block;
}

.main4 [class*="container"] {
    overflow: hidden;
}

.main4 .slide .row {
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
}

.main4 .slide .wrap {
    width: 25%;
}

.main4 .slide .box {
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main4 .slide .image {
    overflow: hidden;
}

.main4 .slide .image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: .2s ease-in-out;
}

.main4 .slide .wrap:hover .image img {
    transform: scale(1.1);
    transition: .2s ease-in-out;
}

.main4 .slide .text {
    padding: 30px 30px 20px;
    display: flex;
    flex-direction: column;
}

.main4 .slide .text .name {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    word-break: keep-all;
}

.main4 .slide .text .name img {
    width: 36px;
    margin-right: 4px;
}

.main4 .slide .text p {
    line-height: 1.3;
    margin-top: 10px;
}

.main4 .slide .text p.bold {
    color: #6675B2;
    margin-top: 0;
    padding-left: 40px;
}

.main4 .bottom {
    margin-top: auto;
    padding: 0 30px 30px;
}

.main4 .bottom > *:not(:last-child) {
    margin-bottom: 6px;
}

.main4 .bottom > *:nth-last-child(2) {
    margin-bottom: 20px;
}

.main4 .bottom p {
    background: #EBF2F9;
    height: 36px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main4 .bottom p span:not(:last-child)::after {
    content: "｜";
    color: #BAD1E8;
    padding: 0 2px;
}

.main4 .bottom .btn-group {
    width: 100%;
}

.main4 .bottom .btn-group button {
    width: 100%;
}

.main4 .slide-btn {
    display: flex;
    justify-content: space-between;
}

.main4 .slide-btn .index {
    display: flex;
    width: 80px;
    align-items: center;
    justify-content: center;
}

.main4 .slide-btn .index .current {
    font-weight: bold;
}

.main4 .slide-btn .index > * {
    margin: 0 4px;
}

.main4 .slide-btn .btn-group button {
    width: 50px;
}

.main5 {
    padding: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.main5 .row > div {
    height: 600px;
}

.main5 .box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    color: #FFF;
    height: 100%;
    background: url(/images/main/main5_img4.svg) center center;
    background-size: 340px;
    background-repeat: no-repeat;
}

.main5 .row > div {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main5 .row > div:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(/images/main/main5_img1.jpg);
}

.main5 .row > div:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(/images/main/main5_img2.jpg);
}

.main5 .row > div:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(/images/main/main5_img3.jpg);
}

.main5 .box > * {
    line-height: 1.2;
}

.main5 .box > *:nth-child(1) {
    font-size: 24px;
}

.main5 .box > *:nth-child(2) {
    font-size: 34px;
    font-weight: bold;
    color: #eecd63;
    margin-bottom: 10px;
}

.main5 .box > *:nth-child(2) span {
    font-size: 50px;
}

.main5 .box > h6 {
    margin-bottom: 0;
    font-weight: normal;
}

.main6 .box {
    border-radius: 4px;
    overflow: hidden;
    padding: 40px;
    background: #EBF2F9;
}

.main6 .box:not(:last-of-type) {
    margin-bottom: calc(var(--bs-gutter-x));
}

.main6 .box h4 {
    font-size: 22px;
    border-bottom: 1px solid #BAD1E8;
    padding-bottom: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.main6 .box p {
    line-height: 1.5;
}

.main6 .sns {
    display: flex;
}

.main6 .sns a {
    width: 60px;
    height: 60px;
    background: #FFF;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main6 .sns a:not(:last-child) {
    margin-right: 10px;
}

.main6 .sns a img {
    width: 40px;
}

.main6 .sns a:hover {
    border: 2px dashed #111;
}

.main6 .col-xxl-7 {
    aspect-ratio: 2 / 1;
}

.main6 iframe {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border: none;
}

footer {
    background: #12172B;
    color: #F8F9FA;
    font-size: 16px;
}

footer .top {
    background: #282E48;
    padding: 20px 0;
}

footer .top [class*="container"] {
    display: flex;
    justify-content: space-between;
}

footer .top .group {
    display: flex;
}

footer .top .group > *:not(:last-child) {
    margin-right: 10px;
}

footer .dropdown {
    width: 160px;
}

footer .dropdown button {
    background: #12172B;
    color: #FFF;
}

footer .dropdown .wrap {
    bottom: 40px;
}

footer .bottom {
    padding: 60px 0;
    color: #BDC2C9;
    line-height: 1.2;
}

footer .bottom [class*="container"] {
    display: flex;
    justify-content: space-between;
}

footer .bottom .footer-info > *:not(:last-child) {
    margin-bottom: 10px;
}

footer .list {
    display: flex;
    flex-wrap: wrap;
}

footer .list li {
    align-content: center;
}

footer .list li:not(:last-child) {
    margin-right: 30px;
}

footer a {
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #F8F9FA;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

footer a:hover {
    font-weight: bold;
    outline: none;
}

footer a:hover::after {
    transform: scaleX(1);
}

.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 20;
    justify-content: center;
    align-items: center;
    display: none;
}

.popup .slide {
    position: relative;
    padding: 10px;
    overflow: hidden;
}

.popup .slide .row {
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.popup .slide .wrap {
    width: 33.33%;
}

.popup .slide .wrap a {
    width: 100%;
}

.popup .slide .wrap img {
    width: 100%;
}

.popup .bottom {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.popup .bottom > * {
    align-content: center;
    text-align: center;
    border-radius: 100px;
    color: #FFF;
    height: 50px;
}

.popup .bottom > *:not(:last-child) {
    margin-right: 10px;
}

.popup .bottom .count {
    width: 200px;
    background: #34489B;
}

.popup .bottom .count span {
    font-weight: bold;
}

.popup .bottom button {
    width: 50px;
    background: #111;
}

.popup .bottom button:hover {
    background: #F37724;
    font-weight: bold;
    transition: .2s;
}

.popup .bottom button[disabled] {
    background: #707070;
}

.popup .bottom .close {
    width: 100px;
}

.popup .bottom button .icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
}

.popup .no-popup {
    background: #FFF;
    padding: 20px;
    text-align: center;
    align-content: center;
    width: 50%;
    min-height: 200px;
    margin: 0 auto;
    border-radius: 20px;
}

.sub h3 {
    padding-left: 30px;
    background-image: url(/images/sub/sub_h3.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left top 8px;
}

.sub h4 {
    color: #34489B;
}

.sub h5 {
    border-left: 5px solid #6675B2;
    padding-left: 10px;
}

.sub-header {
    color: #FFF;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/main/entra_main1_bg.jpg) center center / cover no-repeat;
    position: relative;
    height: 400px;
}

.sub-header [class*="container"] {
    height: 100%;
    align-content: center;
    padding-top: 120px;
    text-align: center;
}

.sub-nav {
    border-bottom: 1px solid #D5DCE5;
}

.sub-nav [class*="container"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.sub-nav [class*="container"] > * {
    display: flex;
}

.sub-nav .location > * {
    align-content: center;
}

.sub-nav .location > *:not(:last-child) {
    background: url(/images/icon/icon_right.svg);
    background-position: center right 10px;
    background-size: 14px;
    background-repeat: no-repeat;
    padding-right: 34px;
}

.sub-nav button .icon {
    width: 20px;
}

.sub-nav .dropdown button span::after {
    height: 2px;
    background: #111;
}

.sub-nav .dropdown .wrap {
    z-index: 8;
}

.sub .bottom {
    display: flex;
    justify-content: center;
}

.sub .bottom button:not(:last-child) {
    margin-right: 10px;
}

.sub .bottom button {
    width: 160px;
    height: 50px;
    color: #FFF;
}

.sub .bottom button[type="submit"] {
    background: #34489B;
    border-color: #34489B;
}

.sub .bottom button[type="button"] {
    background: #111;
    border-color: #111;
}

.sub .bottom button:hover {
    background: #F37724;
    border-color: #F37724;
    font-weight: bold;
    transition: .2s ease-in-out;
}

.sub .tabmenu {
    display: flex;
    flex-wrap: wrap;
}

.sub .tabmenu li {
    flex: 1;
    max-width: 12.5%;
}

.sub .tabmenu li a {
    width: 100%;
    height: 60px;
    text-align: center;
    border: 1px solid #BDC2C9;
}

.sub .tabmenu li a:hover {
    background: #F8F9FA;
    font-weight: bold;
}

.sub .tabmenu li.active a {
    font-weight: bold;
    background: #34489B;
    color: #FFF;
    border-color: #34489B;
}

.sub .chip-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: -30px;
}

.sub .chip-menu li {
    background-color: #F7F7F7;
    border-radius: 50px;
}

.sub .chip-menu li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 32px;
    box-sizing: border-box;
}

.sub .chip-menu li.active {
    background-color: #EBF2F9;
}

.sub .chip-menu li.active a {
    color: #34489b;
    font-weight: 600;
}

.sub .pdf-btn {
    margin-bottom: 50px;
}

.sub .pdf-btn button {
    width: 100%;
}

.sub .pdf-btn button:not(:last-child) {
    margin-bottom: 10px;
}

.sub .pdf-index .index {
    border-top: 3px solid #707070;
}

.sub .pdf-index .index button {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #D5DCE5;
    align-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 50px 0 20px;
    text-align: left;
}

.sub .pdf-index .index button:hover {
    font-weight: bold;
    background-image: url(/images/icon/icon_right.svg);
    background-position: center right 20px;
    background-repeat: no-repeat;
    background-size: 14px;
}

.sub .pdf-viewer iframe {
    width: 100%;
    aspect-ratio: 4/5;
}

.sub .pdf-select {
    display: flex;
}

.sub .pdf-select select {
    /*flex: 1;*/
    width: calc(100% - 100px);
    height: 60px;
    border-color: #111;
    border-radius: 0;
    margin-bottom: 50px;
    background-image: url(/images/icon/icon_down.svg);
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 14px;
    appearance: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 20px;
    padding-right: 40px;
}

.sub .pdf-select:focus {
    background-image: url(/images/icon/icon_up.svg);
}

.sub .pdf-select button {
    margin-left: 10px;
    width: 100px;
    height: 60px;
}

.sub .pdf-btn {
    margin-bottom: 50px;
}

.sub .pdf-btn button {
    width: 100%;
}

.sub .pdf-btn button:not(:last-child) {
    margin-bottom: 10px;
}

.sub .pdf-index .index {
    border-top: 3px solid #707070;
}

.sub .pdf-index .index button {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #D5DCE5;
    align-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 50px 0 20px;
    text-align: left;
}

.sub .pdf-index .index button:hover {
    font-weight: bold;
    background-image: url(/images/icon/icon_right.svg);
    background-position: center right 20px;
    background-repeat: no-repeat;
    background-size: 14px;
}

.sub .pdf-viewer iframe {
    width: 100%;
    aspect-ratio: 4/5;
}

form select {
    height: 40px;
    border-radius: 0;
    border: 1px solid #BDC2C9;
    padding: 0 10px;
    background-image: url(/images/icon/icon_down.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 14px;
    appearance: none;
}

form select:focus {
    background-image: url(/images/icon/icon_up.svg);
}

form input:not([type="radio"]) {
    height: 40px;
    border-radius: 0;
    border: 1px solid #BDC2C9;
    padding: 0 10px;
    align-content: center;
}

form textarea {
    height: 200px;
    border-radius: 0;
    border: 1px solid #BDC2C9;
    padding: 10px;
}

.sub .board .top {
    display: flex;
}

.sub .board .search {
    display: flex;
}

.sub .board .search button:not(:last-child) {
    margin-right: 10px;
}

.sub .board .search button {
    color: #FFF;
    height: 40px;
}

.sub .board .search button[type="submit"] {
    background: #34489B;
    border-color: #34489B;
}

.sub .board .search button[type="button"] {
    background: #111;
    border-color: #111;
}

.sub .board .search button:hover {
    background: #F37724;
    border-color: #F37724;
    font-weight: bold;
    transition: .2s ease-in-out;
}

.sub .board .board-list {
    border-top: 2px solid #707070;
}

.sub .board .board-list > li {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D5DCE5;
}

.sub .board .board-list > li.nodata {
    justify-content: center;
}

.sub .board .board-list a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.sub .board .board-list a:has(.notice) {
    background: #F6FBFF;
}

.sub .board .board-list a:hover {
    outline: 2px solid #111;
}

/* .sub .board .board-list a:has(.waiting){background: #F6FBFF;} */
.sub .board .board-list a > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
}

.sub .board .board-list a > span.notice::after {
    border: 1px solid #6675B2;
    color: #6675B2;
    content: "공지";
    padding: 4px;
    font-weight: bold;
}

.sub .board .board-list a > span.category {
    color: #34489B;
    width: 120px;
}

.sub .board .board-list a > span.category.empty {
    display: none;
}

.sub .board .board-list a > span.lock {
    width: 60px;
}

.sub .board .board-list a > span.lock .icon {
    width: 20px;
}

.sub .board .board-list a > span.none {
    display: none;
}

.sub .board .board-list a > span .download-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub .board .board-list a > span .download-btn .icon {
    width: 20px;
}

.sub .board .board-list a > span.waiting::after {
    border: 2px solid #34489B;
    content: "대기";
    color: #34489B;
    font-weight: bold;
    padding: 4px 10px;
}

.sub .board .board-list a > span.answer::after {
    border: 2px solid #BDC2C9;
    content: "완료";
    color: #BDC2C9;
    font-weight: bold;
    padding: 4px 10px;
}

.sub .board .board-list .board-title {
    flex: 1;
    overflow: hidden;
    padding: 0 10px;
}

.sub .board .board-list .board-title p {
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    align-content: center;
}

.sub .board .board-list .board-title p.lock {
    color: #BDC2C9;
}

.sub .board .board-list .board-title > *:not(:last-child) {
    margin-bottom: 10px;
}

.sub .board .board-list .board-title ul {
    display: flex;
    color: #707070;
    font-size: 14px;
}

.sub .board .board-list .board-title ul li:not(:last-child)::after {
    content: "｜";
    margin: 0 2px;
    color: #D5DCE5;
}

.sub .board .pagination {
    justify-content: center;
}

.sub .board .pagination li button {
    width: 50px;
    height: 50px;
    border-bottom: 3px solid transparent;
}

.sub .board .pagination li.active button {
    font-weight: bold;
    border-color: #111;
}

.sub .board .pagination button[disabled] {
    display: none;
}

.sub .board-view a:hover {
    text-decoration: underline;
}

.sub .board-view a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.sub .board-view .subtitle {
    text-align: center;
    border-top: 2px solid #727791;
    border-bottom: 1px solid #D5DCE5;
    padding: 40px 0;
}

.sub .board-view .subtitle .category {
    color: #34489B;
    display: inline-block;
    font-weight: bold;
}

.sub .board-view .subtitle h3 {
    background: none;
    padding: 0;
}

.sub .board-view .subtitle ul {
    display: flex;
    justify-content: center;
}

.sub .board-view .subtitle ul li {
    display: flex;
}

.sub .board-view .subtitle ul li:not(:last-child)::after {
    margin: 0 10px;
    content: "｜";
    color: #D5DCE5;
}

.sub .board-view .subtitle > *:not(:last-child) {
    margin-bottom: 10px;
}

.sub .board-view .subtitle > *:nth-child(2) {
    margin-bottom: 20px;
}

.sub .board-view .view-file {
    padding: 0;
    background: none;
}

.sub .board-view .view-file li {
    background: #EBF2F9;
    height: 40px;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.sub .board-view .view-file li:not(:last-child) {
    margin-bottom: 6px;
}

.sub .board-view .view-file li::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(/images/icon/icon_link.svg);
    background-size: 16px;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: center center;
}

.sub .board-view .view-navi li {
    padding: 0 10px;
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #727791;
}

.sub .board-view .view-navi li:first-child {
    border-top: 1px solid #727791;
    border-bottom: 1px solid #D5DCE5;
}

.sub .board-view .view-navi li::before {
    display: inline-block;
    background-size: 14px;
    padding-left: 24px;
    background-repeat: no-repeat;
    background-position: left center;
    width: 100px;
}

.sub .board-view .view-navi li:first-child::before {
    content: "이전글";
    background-image: url(/images/icon/icon_up.svg);
}

.sub .board-view .view-navi li:last-child::before {
    content: "다음글";
    background-image: url(/images/icon/icon_down.svg);
}

.sub .board-view .answer {
    padding: 40px;
    background: #F8F9FA;
    border-top: 2px solid #727791;
}

.sub .board-view .waiting {
    padding: 40px;
    background: #F8F9FA;
    border-top: 2px solid #727791;
}

/* 시설물예약 */
.content .reservation {
    display: flex;
    align-items: center;
    border: 3px solid #34489b;
    position: relative;
}

.content .reservation::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 80%;
    background-color: #cccccc;
}

.content .reservation .content-wrap {
    flex-basis: 50%;
    padding: 3rem;
    margin: 0;
}

.content .reservation .content-wrap li {
    text-align: center;
}

.content .reservation .content-wrap li:nth-of-type(1) {
    font-size: 24px;
    font-weight: bold;
}

.content .reservation .content-wrap li:nth-of-type(2) {
    /*background-color: #e9e9e9;*/
    border-radius: 50%;
    width: 15rem;
    height: 15rem;
    margin: 2rem auto;
    position: relative;
    box-shadow: 3px 3px 8px #e9e9e9;
}

.content .reservation .content-wrap li:nth-of-type(2) img {
    width: 10rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content .reservation .content-wrap li:nth-of-type(4) {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.content .reservation .content-wrap li:nth-of-type(4) a,
.content .reservation .content-wrap li:nth-of-type(4) button {
    padding: 12px;
    background-color: #34489b;
    color: #FFFFFF;
    width: 80%;
    transition: 0.2s;
}

.content .reservation .content-wrap li:nth-of-type(4) a:hover,
.content .reservation .content-wrap li:nth-of-type(4) button:hover {
    background-color: #F37724;
    font-weight: bold;
}

.content .reservation .content-wrap li:nth-of-type(4) a span,
.content .reservation .content-wrap li:nth-of-type(4) button span {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.content .reservation .content-wrap li:nth-of-type(4) a img,
.content .reservation .content-wrap li:nth-of-type(4) button img {
    width: 18px;
    filter: invert(1);
}
/* 시설물예약 */

.sub .table-wrap {
    overflow-x: auto;
}

.sub table {
    width: 100%;
    line-height: 1.2;
    border-top: 2px solid #727791;
}

.sub table tr {
    height: 50px;
}

.sub table tr > * {
    border: 1px solid #BDC2C9;
    padding: 10px 6px;
    word-break: keep-all;
}

.sub table thead {
    background: #EBF2F9;
    text-align: center;
}

/* table caption{width: 0; height: 0; padding: 0; font-size: 0; opacity: 0;} */
.sub .rate1 {
    background: #FFF6E2;
}

.sub .rate2 {
    background: #FFEFE9;
}

.sub .rate3 {
    background: #EDEDF4;
}

.sub .sum {
    background: #F8F9FA;
}

.sub .subcontent {
    border-bottom: 1px solid #D5DCE5;
    padding-bottom: 30px;
}

.sub .subcontent ul {
    background: #F8F9FA;
    padding: 20px;
}

.sub .subcontent ul li {
    line-height: 1.2;
}

.sub .subcontent ul li::before {
    content: "⦁ ";
}

.sub .subcontent ul li:not(:last-child) {
    margin-bottom: 6px;
}

.sub .subcontent table tr > td:nth-of-type(1) {
    width: 400px;
    text-align: center;
}

.sub .subcontent table tr > * {
    padding: 4px 10px;
}

.sub .subcontent form > *:not(:last-child) {
    margin-bottom: 30px;
}

.sub .subcontent form .wrap {
    display: flex;
    flex-wrap: wrap;
}

.sub .subcontent form .wrap > div:first-child {
    border-top: 2px solid #707070;
}

.sub .subcontent form .wrap > div {
    display: flex;
    align-items: center;
    min-height: 80px;
    border-bottom: 1px solid #D5DCE5;
    padding: 10px 0;
    flex-basis: 100%;
}

.sub .subcontent form .wrap > div > label {
    width: 300px;
}

.sub .subcontent form .wrap > div > *:last-child {
    flex: 1;
}

.sub .subcontent form .wrap > div > *:last-child > p {
    margin-top: 10px;
    font-size: 16px;
}

.sub .subcontent form input[type="text"] {
    width: 100%;
}

.sub .subcontent form .checkbox > * {
    margin-right: 20px;
    display: inline;
}

.sub .subcontent form .btn-group {
    display: flex;
    justify-content: center;
}

.sub .subcontent form .rrn-div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.sub .subcontent form .rrn-div input {
    width: calc(20% - 5px);
}

.sub .subcontent.result form .wrap {
    justify-content: space-between;
    border-top: 2px solid #727791;
}

.sub .subcontent.result form .wrap > div:first-child {
    border-top: none;
}

.sub .subcontent.result form .wrap > div:nth-of-type(1),
.sub .subcontent.result form .wrap > div:nth-of-type(2),
.sub .subcontent.result form .wrap > div:nth-of-type(3),
.sub .subcontent.result form .wrap > div:nth-of-type(4),
.sub .subcontent.result form .wrap > div:nth-of-type(5),
.sub .subcontent.result form .wrap > div:nth-of-type(6) {
    flex-basis: 50%;
}

.sub .subcontent.result form .wrap > div > label {
    margin-left: 20px;
}

.sub .subcontent.result form .wrap > div > input[type="text"] {
    margin-right: 20px;
}

.sub .table-wrap table tr > * {
    min-width: 80px;
}

.sub .table-accept {
    font-size: 16px;
    text-align: center;
}

.sub .table-accept tr {
    height: 40px;
}

/* 학과별경쟁률 */
.sub .table-div-wrap {
    display: flex;
    font-size: 16px;
    overflow-x: auto;
    min-height: 817px;
}

.sub .table-div-wrap > ul {
    border-top: 2px solid #727791;
}

.sub .table-div-wrap .table-head {
    font-weight: bold;
    background-color: #EBF2F9;
    text-align: center;
}

.sub .table-div-wrap .engineering {
    background-color: #FFF6E2;
}

.sub .table-div-wrap .engineering + .humanities {
    height: 80px;
}

.sub .table-div-wrap .humanities {
    background-color: #ffefe9;
}

.sub .table-div-wrap .humanities ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub .table-div-wrap .humanities ul li:first-of-type {
    flex-basis: calc(100% - 50px);
    width: calc(100% - 50px);
    border: none;
}

.sub .table-div-wrap .humanities ul li:last-of-type {
    flex-basis: 50px;
    width: 50px;
    display: block;
    border: none;
    border-left: 1px solid #BDC2C9;
}

.sub .table-div-wrap .humanities ul li p {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub .table-div-wrap .humanities ul li p:first-of-type {
    border-bottom: 1px solid #BDC2C9;
}

.sub .table-div-wrap .natural-science {
    background-color: #ededf4;
}

.sub .table-div-wrap li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    /*outline: 1px solid #BDC2C9;*/
}

.sub .table-div-wrap .table-head ul {
    height: 40px;
    min-width: 80px;
    min-height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #BDC2C9;
    border-right: 1px solid #BDC2C9;
    background-color: #ebf2f9;
}

.sub .table-div-wrap .table-head ul + ul {
    border: none;
}

.sub .table-div-wrap .table-head ul.table-80 {
    height: 80px;
    line-height: 80px;
    background-color: #EBF2F9;
}

.sub .table-div-wrap .table-head ul.table-120 {
    height: 120px;
    line-height: 120px;
    background-color: #EBF2F9;
}

.sub .table-div-wrap .table-affiliation {
    position: relative;
}

.sub .table-div-wrap .table-affiliation li {
    width: 100px;
    border: 1px solid #BDC2C9;
    border-top: none;
}

.sub .table-div-wrap .table-affiliation .table-head,
.sub .table-div-wrap .table-department .table-head,
.sub .table-div-wrap .table-year .table-head,
.sub .table-div-wrap .table-entra-p .table-head,
.sub .table-div-wrap .table-reserve-p .table-head,
.sub .table-div-wrap .table-recruit-p .table-head {
    height: 200px;
}

.sub .table-div-wrap .table-affiliation .engineering {
    height: 240px;
}

.sub .table-div-wrap .table-affiliation .engineering.contract {
    height: 40px;
}

.sub .table-div-wrap .table-affiliation .humanities {
    height: 160px;
}

.sub .table-div-wrap .table-affiliation .natural-science {
    height: 160px;
}

.sub .table-div-wrap .table-affiliation .total {
    position: absolute;
    width: 300px;
    left: 0;
    /*bottom: 0;*/
}

.sub .table-div-wrap .table-department li {
    width: 160px;
    border-bottom: 1px solid #BDC2C9;
    border-right: 1px solid #BDC2C9;
}

.sub .table-div-wrap .table-year li {
    border-bottom: 1px solid #BDC2C9;
    border-right: 1px solid #BDC2C9;
}

.sub .table-div-wrap .table-entra-p li,
.sub .table-div-wrap .table-reserve-p li,
.sub .table-div-wrap .table-recruit-p li {
    width: 80px;
    border-bottom: 1px solid #BDC2C9;
    border-right: 1px solid #BDC2C9;
}

.sub .table-div-wrap .table-entra-p,
.sub .table-div-wrap .table-entra-p li,
.sub .table-div-wrap .table-reserve-p,
.sub .table-div-wrap .table-reserve-p li,
.sub .table-div-wrap .table-recruit-p,
.sub .table-div-wrap .table-recruit-p li {
    width: 100%;
}

.sub .table-div-wrap .table-body li {
    width: 80px;
    height: 40px;
    background-color: #FFFFFF;
    font-weight: normal;
    border-bottom: 1px solid #BDC2C9;
    border-right: 1px solid #BDC2C9;
}

.sub .table-div-wrap .table-body li.sum {
    background-color: #F8F9FA;
}

.sub .preparing {
    text-align: center;
    height: calc(100dvh - 600px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sub .preparing img {
    width: 442px;
}

.sub .preparing p {
    font-size: 40px;
    font-weight: bold;
    margin-top: 30px;
}

.sub .preparing .btn-section {
    margin-top: 200px;
}

.sub .table-div-wrap.reg-out {
    min-height: 202px;
}

.sub .table-div-wrap.reg-out .table-affiliation .table-head,
.sub .table-div-wrap.reg-out .table-department .table-head,
.sub .table-div-wrap.reg-out .table-year .table-head,
.sub .table-div-wrap.reg-out .table-entra-p .table-head {
    height: 80px;
}

.sub .table-div-wrap.reg-out .table-body li {
    width: 100%;
}

.sub .table-div-wrap.reg-out .table-affiliation li {
    width: 160px;
}

.sub .table-div-wrap.reg-out .table-department li {
    width: 240px;
}

.sub .table-div-wrap.reg-out .table-entra-p {
    width: inherit;
}

.sub .table-div-wrap.reg-out .table-entra-p li {
    width: 80px;
}

.sub .table-div-wrap.reg-out .table-affiliation .total {
    width: 440px;
}

.sub .table-div-wrap.reg-out .table-regular {
    width: calc(100% - 440px);
}

.sub .table-div-wrap.reg-out .table-regular > li > ul {
    width: 100%;
}

.sub .table-div-wrap.reg-out .table-regular > li > ul > li {
    flex-basis: calc(100% / 3);
}

.sub .table-div-wrap.reg-out .humanities.h-sm {
    height: 80px;
}

/* 계약학과 */
.sub .table-div-wrap.reg-contract {
    min-height: 202px;
}

.sub .table-div-wrap.reg-contract .table-affiliation .table-head,
.sub .table-div-wrap.reg-contract .table-department .table-head,
.sub .table-div-wrap.reg-contract .table-year .table-head,
.sub .table-div-wrap.reg-contract .table-entra-p .table-head {
    height: 40px;
}

.sub .table-div-wrap.reg-contract .table-body li {
    width: 100%;
}

.sub .table-div-wrap.reg-contract .table-affiliation li {
    width: 160px;
}

.sub .table-div-wrap.reg-contract .table-department li {
    width: 240px;
}

.sub .table-div-wrap.reg-contract .table-entra-p {
    width: inherit;
}

.sub .table-div-wrap.reg-contract .table-entra-p li {
    width: 80px;
}

.sub .table-div-wrap.reg-contract .table-affiliation .total {
    width: 440px;
}

.sub .table-div-wrap.reg-contract .table-regular {
    width: calc(100% - 440px);
}

.sub .table-div-wrap.reg-contract .table-regular > li > ul {
    width: 100%;
}

.sub .table-div-wrap.reg-contract .table-regular > li > ul > li {
    flex-basis: calc(100% / 3);
}

.sub .table-div-wrap.reg-contract .engineering.h-sm {
    height: 40px;
}

/* 학과별경쟁률 */


.sub .apply-btn {
    display: flex;
    padding: 20px;
    background: #EBF2F9;
}

.sub .apply-btn button:not(:last-of-type) {
    margin-right: 10px;
}

.sub .apply-confirm .top {
    text-align: center;
    background: #F8F9FA;
    padding: 40px;
}

.sub .apply-confirm .top > *:not(:last-child) {
    margin-bottom: 10px;
}

.sub .apply-confirm .top .icon {
    width: 50px;
}

.sub .apply-confirm table {
    text-align: center;
}

.sub .apply-confirm table tr > td:nth-of-type(1) {
    width: auto;
}

.sub .apply-confirm textarea {
    width: 100%;
    min-height: 150px;
    line-height: 1.5;
    resize: none;
    border: none;
    outline: none;
    background: #F8F9FA;
    padding: 20px;
}

.sub .accordion {
    border-top: 2px solid #727791;
    line-height: 1.2;
}

.sub .accordion li {
    width: 100%;
    border-bottom: 1px solid #BDC2C9;
}

.sub .accordion li > * {
    width: 100%;
    align-content: center;
    padding: 20px 60px 20px 20px;
}

.sub .accordion li > button {
    display: flex;
    align-items: center;
    text-align: left;
    min-height: 80px;
    font-size: 20px;
    background-image: url(/images/icon/icon_plus.svg);
    background-position: right 20px center;
    background-size: 20px;
    background-repeat: no-repeat;
}

.sub .accordion li button:hover {
    outline: 2px solid #111;
    font-weight: bold;
}

.sub .accordion li > button.active {
    background-image: url(/images/icon/icon_minus.svg);
    font-weight: bold;
}

.sub .accordion li > .wrap {
    background-color: #F6FBFF;
    display: none;
}

.sub .sitemap h3 {
    width: 25%;
    background: none;
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.sub .sitemap .depth2 {
    width: 75%;
}

.sub .sitemap .depth2 > ul > li {
    width: 33.33%;
    padding-bottom: calc(var(--bs-gutter-x) * .5);
}

.sub .sitemap .depth2 > ul > li > a {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    border: 1px solid #111;
}

.sub .sitemap .depth3 {
    padding: 10px 0;
}

.sub .sitemap .depth3 > li > a {
    width: 100%;
    height: 30px;
    padding: 0 10px;
}

.sub .sitemap a {
    display: flex;
    align-items: center;
}

.sub .sitemap a .icon {
    margin-left: 4px;
}

.sub .sitemap a:hover {
    background: #111;
    color: #FFF;
    font-weight: bold;
}

.sub .sitemap a:hover::before {
    content: "";
    background-image: url(/images/icon/icon_check.svg);
    width: 20px;
    height: 20px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 4px;
}

.sub .sitemap a:hover .icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
}

/* 공유하기 버튼 */
.link-content {
    position: absolute;
    top: 66px;
    right: 0;
    background-color: #F8F9FA;
    padding: 1rem;
    align-items: center;
    gap: 0.5rem;
    display: none;
    box-shadow: 0 0 0.52vw rgba(0, 0, 0, .2);
    border-radius: 1rem;
}

.link-content.active {
    display: flex;
}

.link-content input {
    height: 40px;
    padding: 8px 12px;
    color: #727791;
    font-size: 14px;
    border: 1px solid #ccc;
    background-color: #FFFFFF;
    border-radius: 4px;
}

.link-content input:focus {
    border-color: #34489B;
    outline: none;
}

.link-content button {
    padding: 8px 12px;
    font-size: 14px;
    transition: 0.2s;
    width: max-content;
    height: 40px;
    border-radius: 4px;
}

.link-modal {
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.link-modal-content {
    background-color: #FFFFFF;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    border-radius: 16px;
}

.link-close {
    display: block;
    margin: 0 auto;
    transition: 0.2s;
}

.link-close img {
    width: 1.2rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.link-modal-content > div {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.link-modal-content > div img {
    width: 2rem;
}

.content-summary {
    display: none;
}

.search-box > form.search {
    flex-direction: column;
    gap: 1rem;
    margin: 2rem auto;
    text-align: center;
    width: 100%;
    position: relative;
    background-color: #EBF2F9;
    padding: 3rem;
}

.search-box > .search > div {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.search-box > .search > div > #search-input {
    width: 40rem;
}

.search-box .box-list .search-question {
    display: block;
    width: 4rem;
    margin: 0 auto 20px;
}

.search-box h3 span {
    color: #FF7F00;
    text-decoration: underline;
}

.search-box h6 {
    font-size: 20px;
    color: #34489b;
    font-weight: bold;
}

.search-box .text-gray {
    color: #727791;
}

.search-more {
    text-align: right;
}

.search-more > button {
    display: block;
    background-color: #34489b;
    color: #FFFFFF;
    padding: 1rem 3rem;
    margin: 0 auto;
    transition: .2s ease-in-out;
}

.search-more > button:hover {
    font-weight: 700;
    background-color: #F37724;
}

.search-box h4 {
    padding: 20px 0;
}

.search-box table tr > *:not(:nth-of-type(4)) {
    text-align: center;
}

.search-box span.highlight {
    background-color: #ffff00;
    font-weight: bold;
}

.search-box .subcontent {
    border-bottom: none !important;
}

.search-box .subcontent > a {
    display: block;
    margin-bottom: 0;
}

.search-box .subcontent > a:first-of-type {
    border-top: 2px solid #34489b;
}

.search-box .box-content {
    border: none;
    border-bottom: 1px solid #D5DCE5;
    padding: 20px 10px;
}

.search-box .box-content p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.5;
}

.search-modal {
    display: flex;
    position: absolute;
    left: 0;
    top: 120px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0;
    background-color: #33944D;
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

.search-modal.active {
    height: 150px;
}

.search-modal form input {
    width: 40rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 0 1rem;
}

.search-modal form input::placeholder {
    color: #FFFFFF;
}

.search-modal button img {
    width: 2rem;
    filter: invert(1);
}

.search-modal-input {
    position: relative;
}

.search-modal-btn {
    position: absolute;
    top: 50%;
    right: -3rem;
    transform: translateY(-50%);
    display: flex;
    gap: 2rem;
}

.sub .box-list {
    background: #F8F9FA;
    padding: 20px;
}

.sub .box-content > *:not(:last-child) {
    margin-bottom: 10px;
}

/** 입학홈페이지 게시글 비밀번호 입력 팝업 */
.ntc-check {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 20;
    justify-content: center;
    align-items: center;
    display: none;
    margin-bottom: 0 !important;
}

.ntc-check [class*="container"] {
    max-width: 500px;
}

.ntc-check [class*="container"] > .wrap {
    background: #FFF;
    padding: 40px;
    position: relative;
}

.ntc-check .title {
    margin-bottom: 50px !important;
}

.ntc-check .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*background-image: inherit;*/
}

.ntc-check .title h2 {
    font-size: 36px;
}

.ntc-check .close .icon {
    width: 30px;
}

.ntc-check form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.ntc-check form label {
    font-size: 18px;
    margin: 0 auto 20px;
}

.ntc-check form input {
    width: calc(100% - 170px);
    height: 50px;
    line-height: 50px;
}

.ntc-check form input::placeholder {
    font-size: 16px;
}

#ntc_form .p-mark {
    color: #FF4C4C;
    font-size: 16px;
    margin-top: 10px;
}

#ntc_form .fake-label {
    width: 300px;
}

#ntc_form #qna-open {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
/** 입학홈페이지 게시글 비밀번호 입력 팝업 끝*/


@media screen and (min-width: 1200px) {
    .m-only {
        display: none !important;
    }

    .pc-menu .brand, .pc-menu .btn-group {
        min-width: 300px;
    }

    .pc-menu .btn-group {
        justify-content: right;
    }

    .main2 .tabmenu {
        margin: 0 calc(-.5 * var(--bs-gutter-x));
    }

    .main2 .tabmenu > div > * {
        padding: 0 calc(var(--bs-gutter-x) * .5);
    }

    .main2 .category {
        width: 300px;
    }

    .main2 .category button {
        padding: 0 30px;
        text-align: left;
    }

    .main2 .category button:hover {
        background-image: url(/images/icon/icon_right.svg);
    }

    .main2 .active .category button {
        background-image: url(/images/icon/icon_right.svg);
    }

    .main2 .wrap {
        width: calc(100% - 300px);
    }

    .main3 .title {
        text-align: center;
        background-position: center top;
    }

    .main3 .tabmenu .card {
        text-align: center;
    }

    .main3 .tabmenu .card > *:nth-child(1)::before {
        margin: 0 auto 10px;
    }

    .main4 .title {
        text-align: center;
        background-position: center top;
    }

    .sub .board .top {
        justify-content: space-between;
        align-items: center;
    }

    .sub .board .search > *:not(:last-child) {
        margin-right: 10px;
    }

    .sub .board .search select {
        width: 140px;
    }

    .sub .board .search input {
        width: 240px;
    }

    .sub .board .search button {
        width: 100px;
    }
}


@media screen and (max-width: 991px) {
    .main4 .slide .wrap {
        width: 100%;
    }

    .popup .slide .wrap {
        width: 100%;
    }
}


@media screen and (max-width: 1199px) {
    .pc-only {
        display: none !important;
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 20px;
    }

    [class*="logo"] {
        width: 160px;
    }

    button[class*="type"] {
        width: 120px;
        height: 40px;
    }

    button.type4 {
        width: 100%;
        padding: 0 10px;
    }

    button.type4 .icon {
        width: 18px;
    }

    button.square {
        width: 40px;
        height: 40px;
    }

    .dropdown .wrap {
        font-size: 12px;
        width: 120px;
    }

    .dropdown .wrap li {
        height: 24px;
    }

    .pc-menu {
        height: 60px;
    }

    .pc-menu .brand .text {
        /*margin-left: 8px;*/
        padding-left: 8px;
        /*font-size: 18px;*/
        font-size: 15px;
    }

    .pc-menu .btn-group button {
        width: 60px;
        height: 60px;
    }

    .pc-menu .btn-group button img {
        width: 24px;
    }

    .container-fluid > a {
        gap: 10px;
    }

    section {
        padding: 80px 0;
    }

    section .title {
        margin-bottom: 30px;
        background-size: 30px;
        padding: 14px 0 0;
    }

    section[class*="main"] .title {
        text-align: center;
        background-position: center top;
    }

    section.sub .title {
        margin-bottom: 50px;
        padding: 0 0 14px 0;
    }

    section .subtitle {
        margin-bottom: 20px;
    }

    .main1 .top {
        position: relative;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/main/entra_main1_bg.jpg) center center / cover no-repeat;
    }

    .main1 .top > * {
        height: 500px;
    }

    .main1 .video video {
        height: 500px;
        object-fit: contain;
        background-color: #111111;
    }

    .main1 .video .btn-group button:not(.todayClose) {
        width: 40px;
    }

    .main1 .video .btn-group button.todayClose {
        width: 180px;
    }

    .main1 .text {
        color: #FFF;
        align-content: center;
        text-align: center;
        padding-top: 60px;
    }

    .main1 .text > *:not(:last-child) {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .main1 .bottom {
        padding: 10px 0;
    }

    .main1 .bottom a {
        display: block;
        word-break: keep-all;
        text-align: center;
        font-weight: 500;
        line-height: 1.2;
        padding: 20px 0;
        border-radius: 4px;
    }

    .main1 .bottom a img {
        width: 40px;
    }

    [class*="main"] .tabmenu .category button {
        font-size: 18px;
    }

    .main2 .tabmenu {
        display: flex;
    }

    .main2 .category button {
        height: 40px;
    }

    .main2 .wrap {
        left: 0;
        width: 100%;
    }

    .main2 .wrap a {
        height: 50px;
    }

    .main2 .wrap a > *:nth-child(1) {
        padding: 4px 10px;
        flex-basis: 60px;
    }

    .main2 .wrap a > *:nth-child(2) {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        font-size: 16px;
    }

    .main2 .wrap a > *:nth-child(3) {
        display: none;
    }

    .main2 .tabmenu .category {
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .main2 .tabmenu .category button.active {
        background-image: inherit;
    }

    .main3 .category {
        height: 40px;
        padding: 0 10px;
    }

    .main3 .category button {
        padding: 6px 4px;
    }

    .main3 .category button::after {
        height: 2px;
    }

    .main3 .tabmenu .wrap .row {
        padding: 0 calc(var(--bs-gutter-x) * .25);
    }

    .main3 .tabmenu .wrap .row > * {
        padding: calc(var(--bs-gutter-x) * .25);
    }

    .main3 .tabmenu .card {
        padding: 20px;
    }

    .main3 .tabmenu .card > *:nth-child(1) {
        font-size: 20px;
        margin-bottom: 10px;
        flex-direction: row;
    }

    .main3 .tabmenu .card > *:nth-child(1)::before {
        font-size: 16px;
        margin-right: 4px;
    }

    .main4 .slide .wrap {
        /*width: 33.33%;*/
    }

    .main4 .slide .image img {
        aspect-ratio: 2/1;
    }

    .main4 .slide .text {
        padding: 20px 20px 10px;
    }

    .main4 .slide .text > *:first-child img {
        width: 30px;
    }

    .main4 .slide .text .name {
        font-size: 20px;
    }

    .main4 .slide .text p.bold {
        padding-left: 34px;
    }

    .main4 .bottom {
        padding: 0 20px 20px;
    }

    .main4 .bottom > *:nth-last-child(2) {
        margin-bottom: 10px;
    }

    .main4 .slide-btn .btn-group button {
        width: 40px;
    }

    .main5 .row > div {
        height: 260px;
    }

    .main5 .box {
        background-size: 260px;
    }

    .main5 .box > *:nth-child(1) {
        font-size: 18px;
    }

    .main5 .box > *:nth-child(2) {
        font-size: 26px;
    }

    .main5 .box > *:nth-child(2) span {
        font-size: 34px;
    }

    .main6 iframe {
        border-radius: 4px;
        aspect-ratio: 5/3;
    }

    .main6 .box {
        padding: 20px;
    }

    .main6 .box:nth-of-type(1) {
        margin-top: calc(var(--bs-gutter-x) * .5);
    }

    .main6 .box:not(:last-of-type) {
        margin-bottom: calc(var(--bs-gutter-x) * .5);
    }

    .main6 .box p.bold {
        font-size: 18px;
    }

    .main6 .box .sns a {
        width: 50px;
        height: 50px;
    }

    .main6 .box .sns a img {
        width: 30px;
    }

    footer {
        font-size: 14px;
    }

    footer .top {
        padding: 20px 0;
    }

    footer .top [class*="container"] {
        flex-direction: column;
    }

    footer .top [class*="container"] > *:not(:last-child) {
        margin-bottom: 10px;
    }

    footer .dropdown {
        width: 100%;
    }

    footer .dropdown .wrap {
        width: 100%;
    }

    footer .bottom {
        padding: 40px 0;
    }

    footer .bottom [class*="container"] {
        flex-direction: column;
    }

    footer .bottom [class*="container"] > *:not(:last-child) {
        margin-bottom: 10px;
    }

    footer .list li {
        margin-bottom: 4px;
    }

    footer .list li:not(:last-child) {
        margin-right: 20px;
    }

    .popup .slide .wrap {
        width: 50%;
    }

    .popup .bottom > * {
        height: 40px;
    }

    .popup .bottom > *:not(:last-child) {
        margin-right: 6px;
    }

    .popup .bottom .count {
        width: 140px;
    }

    .popup .bottom button {
        width: 40px;
    }

    .popup .bottom .close {
        width: 70px;
    }

    .popup .bottom button .icon {
        filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
    }

    .search-box form select, .search-box button[type="submit"],
    .search-box > .search > div > #search-input {
        width: 100%;
    }

    .search-box > .search > div {
        display: flex;
        flex-direction: column;
    }

    .search-box .box-list {
        background-color: inherit;
        padding: 0;
    }

    .search-box .box-content p {
        white-space: inherit;
    }

    .sub h3 {
        padding-left: 24px;
        background-size: 16px;
        background-position: left top 6px;
    }

    .sub-header {
        height: 240px;
    }

    .sub-header [class*="container"] {
        padding-top: 60px;
    }

    .sub-nav [class*="container"] {
        height: 40px;
    }

    .sub-nav .location {
        font-size: 12px;
    }

    .sub-nav .location > *:not(:last-child) {
        background-position: center right;
        background-size: 10px;
        padding-right: 10px;
    }

    .sub-nav button .icon {
        width: 14px;
    }

    .sub .tabmenu li {
        min-width: 33.33%;
    }

    .sub .tabmenu li a {
        height: 50px;
    }

    .sub .chip-menu {
        gap: 10px;
    }

    .sub .chip-menu li a {
        padding: 10px 22px;
    }

    form textarea {
        height: 100px;
    }

    .sub .pdf .row > *:not(:last-child) {
        margin-bottom: 50px;
    }

    .sub .pdf-index .index button {
        height: 40px;
        padding: 0 40px 0 10px;
    }

    .sub .pdf-index .index button:hover {
        background-position: center right 10px;
    }

    .sub .pdf-select select {
        width: calc(100% - 80px);
        height: 40px;
        background-position: right 10px center;
        padding-left: 10px;
        padding-right: 30px;
    }

    .sub .pdf-select button {
        width: 80px;
        height: 40px;
    }

    .sub .bottom button {
        width: 100px;
        height: 40px;
    }

    .sub .board .top {
        flex-direction: column;
    }

    .sub .board .top > *:not(:last-child) {
        margin-bottom: 20px;
    }

    .sub .board .search {
        flex-direction: column;
        padding: 20px;
        background: #F8F9FA;
    }

    .sub .board .search > *:not(:last-child) {
        margin-bottom: 6px;
    }

    .sub .board .search button:not(:last-child) {
        margin-right: 0;
    }

    .sub .board .board-list > li {
        height: 80px;
    }

    .sub .board .board-list a {
        font-size: 14px;
    }

    .sub .board .board-list a > span {
        width: 40px;
    }

    .sub .board .board-list a > span.category {
        width: 60px;
    }

    .sub .board .board-list a > span.lock {
        width: 30px;
    }

    .sub .board .board-list a > span.lock .icon {
        width: 16px;
    }

    .sub .board .board-list a > span button {
        width: 40px;
        height: 40px;
    }

    .sub .board .board-list a > span button .icon {
        width: 16px;
    }

    .sub .board .board-list a > span.waiting::after {
        padding: 2px 4px;
    }

    .sub .board .board-list a > span.answer::after {
        padding: 2px 4px;
    }

    .sub .board .board-list .board-title p {
        font-size: 16px;
    }

    .sub .board .board-list .board-title > *:not(:last-child) {
        margin-bottom: 4px;
    }

    .sub .board .board-list .board-title ul li:not(:last-child) {
        display: none;
    }

    .sub .board .pagination li button {
        width: 40px;
        height: 40px;
    }

    .sub .board-view .subtitle {
        padding: 20px 0;
    }

    .sub .board-view .subtitle > *:not(:last-child) {
        margin-bottom: 4px;
    }

    .sub .board-view .subtitle > *:nth-child(2) {
        margin-bottom: 10px;
    }

    .sub .board-view .view-file li {
        height: 30px;
    }

    .sub .board-view .view-navi li {
        padding: 0 10px;
        height: 40px;
    }

    .sub .board-view .view-navi li::before {
        width: 80px;
    }

    .sub .board-view .answer {
        padding: 20px;
    }

    .sub .board-view .waiting {
        padding: 20px;
    }

    /* 시설물 예약 */
    .content .reservation {
        flex-direction: column;
    }

    .content .reservation::after {
        width: 80%;
        height: 1px;
    }
    /* 시설물 예약 */

    .sub table tr {
        height: 30px;
    }

    .sub table tr > * {
        border: 1px solid #BDC2C9;
        padding: 2px 4px;
    }

    .sub .table-accept {
        font-size: 12px;
    }

    .sub .table-accept tr {
        height: 24px;
    }

    .sub .subcontent table tr > td:nth-of-type(1) {
        width: 120px;
    }

    .sub .subcontent form .wrap > div {
        min-height: 60px;
    }

    .sub .subcontent form .wrap > div > label {
        width: 100px;
    }

    .sub .subcontent form .rrn-div input {
        width: calc(40% - 5px);
    }

    .sub .subcontent.result form .wrap > div:not(:nth-last-of-type(1), :nth-last-child(2)) {
        flex-basis: 100%;
    }

    .sub .subcontent.result form .wrap > div > label {
        margin-left: 0;
    }

    .sub .subcontent.result form .wrap > div > input[type="text"] {
        margin-right: 0;
    }

    .sub .subcontent form button {
        height: 40px;
    }


    /* 학과별경쟁률 */
    .sub .table-div-wrap {
        font-size: 12px;
        min-height: 485px;
    }

    .sub .table-div-wrap li {
        min-height: 24px;
    }

    .sub .table-div-wrap .table-affiliation .table-head,
    .sub .table-div-wrap .table-department .table-head,
    .sub .table-div-wrap .table-year .table-head,
    .sub .table-div-wrap .table-entra-p .table-head,
    .sub .table-div-wrap .table-reserve-p .table-head,
    .sub .table-div-wrap .table-recruit-p .table-head {
        height: 120px;
    }

    .sub .table-div-wrap .table-head ul {
        min-width: 60px;
        height: 24px;
        min-height: 24px;
        line-height: 24px;
    }

    .sub .table-div-wrap .table-head ul.table-80 {
        height: 48px;
        line-height: 48px;
    }

    .sub .table-div-wrap .table-head ul.table-120 {
        height: 72px;
        line-height: 72px;
    }

    .sub .table-div-wrap .table-department li {
        width: 120px;
    }

    .sub .table-div-wrap .engineering + .humanities {
        height: 48px;
    }

    .sub .table-div-wrap .humanities ul li:first-of-type {
        flex-basis: calc(100% - 40px);
        width: calc(100% - 40px);
    }

    .sub .table-div-wrap .humanities ul li:last-of-type {
        flex-basis: 40px;
        width: 40px;
    }

    .sub .table-div-wrap .table-affiliation li {
        width: 80px;
    }

    .sub .table-div-wrap .table-affiliation .engineering {
        height: 144px;
    }

    .sub .table-div-wrap .table-affiliation .natural-science {
        height: 96px;
    }

    .sub .table-div-wrap .table-affiliation .humanities {
        height: 96px;
    }

    .sub .table-div-wrap .table-affiliation .total {
        width: 240px;
    }

    .sub .table-div-wrap .humanities ul li p {
        height: 24px;
    }

    .sub .table-div-wrap .table-body li {
        width: 60px;
        height: 24px;
    }

    .sub .table-div-wrap .table-entra-p li,
    .sub .table-div-wrap .table-reserve-p li,
    .sub .table-div-wrap .table-recruit-p li {
        width: 60px;
    }
    
    .sub .preparing {
        height: calc(100dvh - 200px);
    }

    .sub .preparing img {
        width: 200px;
    }

    .sub .preparing p {
        font-size: 24px;
        margin-top: 0;
    }

    .sub .preparing .btn-section {
        margin-top: 100px;
    }

    .sub .table-div-wrap.reg-out {
        min-height: 122px;
    }

    .sub .table-div-wrap.reg-out .table-affiliation .table-head,
    .sub .table-div-wrap.reg-out .table-department .table-head,
    .sub .table-div-wrap.reg-out .table-year .table-head,
    .sub .table-div-wrap.reg-out .table-entra-p .table-head {
        height: 48px;
    }

    .sub .table-div-wrap.reg-out .table-affiliation li {
        width: 80px;
    }

    .sub .table-div-wrap.reg-out .table-department li {
        width: 120px;
    }

    .sub .table-div-wrap.reg-out .table-affiliation .total {
        width: 240px;
    }

    .sub .table-div-wrap.reg-out .table-regular {
        /*width: calc(100% - 320px);*/
        width: 180px;
    }

    .sub .table-div-wrap.reg-out .humanities.h-sm {
        height: 24px;
    }
    /* 학과별경쟁률 */


    .sub .apply-btn {
        flex-direction: column;
    }

    .sub .apply-btn button:not(:last-of-type) {
        margin-right: 0;
        margin-bottom: 6px;
    }

    .sub .apply-confirm .top {
        padding: 20px;
    }

    .sub .apply-confirm textarea {
        min-height: 250px;
    }

    .sub .accordion li > * {
        padding: 10px 40px 10px 10px;
    }

    .sub .accordion li > button {
        min-height: 40px;
        font-size: 16px;
        background-position: right 10px center;
        background-size: 16px;
    }

    .sub .sitemap .content-div {
        flex-direction: column;
    }

    .sub .sitemap .content-div > * {
        width: 100%;
    }

    .sub .sitemap .depth2 > ul > li {
        width: 50%;
    }

    .sub .sitemap .depth2 > ul > li:nth-child(odd) {
        padding-right: calc(var(--bs-gutter-x) * .25);
    }

    .sub .sitemap .depth2 > ul > li:nth-child(even) {
        padding-left: calc(var(--bs-gutter-x) * .25);
    }

    .sub .sitemap .depth2 > ul > li > a {
        height: 40px;
    }

    .sub .sitemap .depth3 > ul > li > a {
        height: 24px;
    }

    .sub .sitemap h3 {
        width: 100%;
        margin-bottom: 20px;
    }

    .sub .sitemap .depth2 {
        width: 100%;
    }

    .sub .sitemap .depth2 > ul > li {
        width: 50%;
    }

    .sub .sitemap .depth2 > ul > li:nth-child(odd) {
        padding-right: calc(var(--bs-gutter-x) * .25);
    }

    .sub .sitemap .depth2 > ul > li:nth-child(even) {
        padding-left: calc(var(--bs-gutter-x) * .25);
    }

    .sub .sitemap .depth2 > ul > li > a {
        height: 40px;
    }

    .sub .sitemap .depth3 > li > a {
        height: 30px;
    }

    .link-content {
        top: 45px;
        padding: 0.5rem;
        flex-direction: column;
    }

    .link-content button {
        width: 100%;
    }

    .link-modal-content {
        width: 80%;
        padding: 1rem;
    }

    .link-modal-content > div {
        flex-direction: column;
    }

    .link-modal-content > div img {
        width: 3rem;
    }

    /* 검색 */
    .search-modal {
        top: 60px;
    }

    .search-modal.active {
        height: 100px;
    }

    .search-modal form input {
        width: 100%;
        height: 40px;
        padding: 0 10px;
    }

    .search-modal button img {
        width: 1.5rem;
    }

    .search-box form select, .search-box button[type="submit"],
    .search-box > .search > div > #search-input {
        width: 100%;
    }

    .search-box > .search > div {
        display: flex;
        flex-direction: column;
    }

    .search-box .subcontent:first-of-type .box-list {
        background-color: inherit;
        padding: 0;
    }

    .search-box .box-content p {
        white-space: inherit;
    }

    .ntc-check .title {
        margin-bottom: 30px !important;
    }

    .ntc-check .title h2 {
        font-size: 24px;
    }

    .ntc-check [class*="container"] > .wrap {
        padding: 30px;
    }

    .ntc-check .close .icon {
        width: 24px;
    }

    .ntc-check form label {
        font-size: 16px;
    }

    .ntc-check form input {
        width: calc(100% - 130px);
        height: 40px;
    }

    .ntc-check form input::placeholder {
        font-size: 14px;
    }

    #ntc_form .p-mark {
        font-size: 14px;
    }

    #ntc_form .fake-label {
        width: 100px;
    }
}


@media screen and (max-width: 1799px) {
    .pc-menu .depth1 > li > a {
        padding: 0 10px;
        font-size: 20px;
    }
}


@media print {
    header, footer {
        display: none;
    }
}