/*
흰색 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%);
청회색 filter: invert(49%) sepia(10%) saturate(724%) hue-rotate(193deg) brightness(94%) contrast(95%);
*/

/* 공통 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    color: #111;
}

h1, h2, h3, h4, h5, p, ul, ol, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1 {
    font-size: 48px;
    font-weight: bold;
}

h2 {
    font-size: 44px;
    font-weight: bold;
}

h3 {
    font-size: 34px;
    font-weight: bold;
}

h4 {
    font-size: 26px;
    font-weight: bold;
}

h5 {
    font-size: 22px;
    font-weight: bold;
}

h6 {
    font-size: 18px;
    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-blue {
    background-color: #34489B;
}

.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;
}

.cnsu {
    font-style: italic;
    color: #34489B;
}

.cnsu_blue {
    color: #34489B;
}

/* button */
button {
    background: none;
    border: none;
}

button[class*="type"] {
    width: 160px;
    height: 50px;
}

button.more, button.prev, button.next {
    width: 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:hover: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: 100%;
    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.type4 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

button.type5 {
    border: 2px solid #727791;
    background: #FFF;
    color: #727791;
}

button.type5 .icon {
    filter: invert(49%) sepia(10%) saturate(724%) hue-rotate(193deg) brightness(94%) contrast(95%);
    transition: .2s;
}

button.type5:hover .icon {
    transform: translate(6px, -6px);
    transition: .1s;
}

button.type5[disabled] {
    display: none;
}

button.more .icon {
    width: 20px;
}

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;
}

/* dropdown */
.dropdown {
    position: relative;
    line-height: 1;
}

.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;
}

.gnb {
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    font-size: 16px;
    line-height: 1;
}

.gnb [class*="container"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.gnb ul {
    display: flex;
}

.gnb ul li {
    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;
    height: 100%;
}

.pc-menu .logo-section {
    display: flex;
    align-items: center;
    width: auto;
}

.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 {
    position: relative;
    display: inline-block;
}

.pc-menu .depth1 > li > a {
    font-size: 22px;
    font-weight: 500;
    padding: 0 30px;
    height: 80px;
    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 .depth2 {
    position: absolute;
    width: 100%;
    background: #FFF;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    left: 50%;
    transform: translateX(-50%);
}

.pc-menu .depth2 > li > a {
    /*padding: 0 10px;*/
    padding: 12px 10px;
    width: 100%;
    text-align: center;
}

.pc-menu .depth2 > li > a:hover {
    font-weight: bold;
    background: #34489B;
    color: #FFF;
}


.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.popup-open {
    background: #3093A8;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pc-menu .btn-group button.popup-open:hover {
    background: #1E7386;
}

.pc-menu .btn-group button.popup-open .icon {
    width: 30px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(103%) contrast(102%);
    margin-bottom: 6px;
}

.pc-menu .btn-group button.popup-open .alarm {
    background-color: #FF4C4C;
    padding: 2px 4px;
    color: #FFF;
    position: absolute;
    top: 14px;
    right: 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.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 .depth1 {
    /*width: 160px;*/
    width: 320px;
    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: 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;
    overflow-y: auto;
}

.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;
}

/* section */
section {
    padding: 120px 0;
}

section .title {
    margin-bottom: 50px;
}

section.sub .title {
    margin-bottom: 100px;
}

section .subtitle {
    margin-bottom: 20px;
}

section .subtitle > *:not(:last-child) {
    margin-bottom: 20px;
}

section .content > *:not(:last-child) {
    margin-bottom: 50px;
}

section.sub .content > *:not(:last-child) {
    margin-bottom: 80px;
}

section .content-div > *:not(:last-child) {
    margin-bottom: 30px;
}

section .subcontent > *:not(:last-child) {
    margin-bottom: 20px;
}

.intro_top {
    padding: 0;
    overflow: hidden;
    color: #FFF;
    text-align: center;
}

.intro_top .row > * {
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro_top .row > *:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/images/intro/intro_bg1.jpg);
}

.intro_top .row > *:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/images/intro/intro_bg2.jpg);
}

.intro_top .row > *:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/images/intro/intro_bg3.jpg);
}

.intro_top .row > *:hover {
    background: #34489B;
}

.intro_top .row > *:hover ul {
    display: block;
}

.intro_top a {
    width: 100%;
    height: 100%;
}

.intro_top h2 {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro_top h2::after {
    background: #F6FBFF;
    width: 60px;
    height: 4px;
    content: "";
    align-self: center;
    margin-top: 10px;
}

.intro_top h2 > *:nth-child(1) {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 10px;
}

.intro_top h2 > *:nth-child(2) {
    font-size: 46px;
    font-weight: bold;
}

.intro_top ul {
    font-size: 22px;
    /*display: none;*/
}

.intro_top ul li:not(:last-child) {
    margin-bottom: 10px;
}

#intro1 {
    background: #1A2A44;
}

#intro2 {
    background: #004D40;
}

#intro3 {
    background: #2C3E50;
}

.intro .title {
    text-align: center;
    color: #FFF;
}

.intro .row {
    transition: transform 0.5s ease-in-out;
}

.intro .wrap {
    width: 25%;
    padding-bottom: calc(var(--bs-gutter-x));
}

.intro .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);
}

.intro .image {
    overflow: hidden;
}

.intro .image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: .2s ease-in-out;
}

.intro .wrap:hover .image img {
    transform: scale(1.1);
    transition: .2s ease-in-out;
}

.intro .text {
    padding: 30px 30px 20px;
    display: flex;
    flex-direction: column;
}

.intro .text .name {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    word-break: keep-all;
}

.intro .text .name img {
    width: 36px;
    margin-right: 4px;
}

.intro .text p {
    line-height: 1.3;
    margin-top: 10px;
}

.intro .text p.bold {
    color: #6675B2;
    margin-top: 0;
    padding-left: 40px;
}

.intro .bottom {
    margin-top: auto;
    padding: 0 30px 30px;
}

.intro .bottom > *:not(:last-child) {
    margin-bottom: 6px;
}

.intro .bottom > *:nth-last-child(2) {
    margin-bottom: 20px;
}

.intro .bottom p {
    background: #EBF2F9;
    height: 36px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro .bottom p span:not(:last-child)::after {
    content: "｜";
    color: #BAD1E8;
    padding: 0 2px;
}

.intro .bottom .btn-group {
    width: 100%;
}

.intro .bottom .btn-group button {
    width: 100%;
}

.main1 {
    padding: 0;
    position: relative;
}

.main1 > * {
    height: 800px;
}

.main1 .video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.main1 .video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.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: 120px 10px 10px;
}

.main1 .text > *:not(:last-child) {
    margin-bottom: 10px;
}

.main2 .notice .row > *:not(:last-child) {
    padding-bottom: calc(var(--bs-gutter-x));
}

.main2 .notice a {
    padding: 40px;
    background: #F8F9FA;
    width: 100%;
    border-radius: 10px;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.main2 .notice a > *:first-child {
    font-weight: bold;
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.main2 .notice a > *:last-child {
    color: #707070;
    margin-top: auto;
}

.main2 .notice a:hover > *:first-child {
    text-decoration: underline;
}

.main2 .date {
    position: relative;
}

.main2 .date .content {
    padding: 36px;
    background: #34489B;
    border-radius: 10px;
    color: #FFF;
    height: 100%;
}

.main2 .date .title {
    margin-bottom: 50px;
}

.main2 .date .content ul li:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #6675B2;
}

.main2 .date .content ul li > *:first-child {
    color: #EBF2F9;
}

.main2 .date .content ul li > *:last-child {
    font-size: 20px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.main3 {
    background: #EBF2F9;
}

.main3 .content .box {
    align-content: baseline;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main3 .content .box .thumbnail {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 5/3;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 10px;
}

.main3 .content .box .text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.main3 .content .box .text p:nth-child(1) {
    font-size: 20px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
}

.main3 .content .box:hover .text p:nth-child(1) {
    text-decoration: underline;
}

.main3 .content .box .text p:nth-child(2) {
    margin-top: auto;
}

.main3 .content .row .row:not(:last-child) {
    margin-bottom: calc(var(--bs-gutter-x));
}

.main3 .content .row .row .box .thumb {
    aspect-ratio: 5/3;
}

.main4 {
    padding: 120px 0;
}

.main4 .wrap {
    background: #F8F9FA;
    border-radius: 10px;
    padding: 60px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main4 .wrap > .icon {
    width: 80px;
    margin-bottom: 20px;
}

.main4 .wrap > *:nth-child(2) {
    background: #34489B;
    color: #FFF;
    padding: 4px 20px;
    border-radius: 100px;
}

.main4 .wrap > *:nth-child(3) {
    font-weight: bold;
    font-size: 30px;
}

.main4 .wrap > *:nth-child(3) span {
    font-size: 48px;
}

footer {
    background: #12172B;
    color: #F8F9FA;
    font-size: 16px;
}

footer .top {
    background: #282E48;
    padding: 20px 0;
    line-height: 1;
}

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;
}

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 h2 {
    padding-bottom: 30px;
    background-image: url(/images/sub/sub_h2.svg);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: left bottom;
}

.sub h3 {
    padding-left: 30px;
    background-image: url(/images/sub/sub_h3.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left top 10px;
}

.sub h4 {
    color: #34489B;
}

.sub h5 {
    border-left: 5px solid #6675B2;
    padding-left: 10px;
}

.sub img {
    max-width: 100%;
}

.sub-header {
    color: #FFF;
    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 .department .top {
    border: 1px solid #D5DCE5;
    padding: 40px;
}

.sub .department .top .row {
    justify-content: center;
}

.sub .department .top .logo {
    width: 160px;
}

.sub .department .top .wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
}

.sub .department .top .wrap > *:nth-child(2) {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sub .department .top .wrap > *:nth-child(3) {
    padding: 2px 20px;
    border: 2px solid #34489B;
    display: inline-block;
    width: fit-content;
    border-radius: 100px;
    color: #34489B;
}

.sub .department .top .wrap > *:nth-child(4) {
    color: #34489B;
    font-weight: bold;
    font-size: 20px;
    margin-top: 10px;
}

.sub .professor > .row > * {
    padding-bottom: calc(var(--bs-gutter-x));
}

.sub .professor .box {
    border: 1px solid #BDC2C9;
    padding: 40px;
}

.sub .professor .box .wrap {
    position: relative;
}

.sub .professor .box .wrap .image {
    width: 180px;
}

.sub .professor .box .wrap .image img {
    aspect-ratio: 3/4;
    object-fit: cover;
    overflow: hidden;
}

.sub .professor .box .wrap .text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sub .professor .box .wrap .text > *:nth-child(1) {
    background: #34489B;
    padding: 2px;
    color: #FFF;
    border-radius: 4px;
    display: inline-block;
    width: 80px;
    text-align: center;
    margin-bottom: 10px;
}

.sub .professor .box .wrap .text > *:nth-child(2) {
    font-size: 30px;
    font-weight: bold;
}

.sub .professor .box .wrap .text > .info {
    margin-top: auto;
}

.sub .professor .box .wrap .text > .info > *:not(:last-child) {
    margin-bottom: 4px;
}

.sub .professor .box .wrap .text > .info > p {
    display: flex;
    gap: 10px;
}

.sub .professor .box .wrap .text > .info span:first-of-type {
    display: inline-block;
    flex-basis: 80px;
    font-weight: bold;
    color: #6675B2;
}

.sub .professor .box .wrap .text > .info span:last-of-type {
    flex-basis: calc(100% - 80px);
}

.sub .professor .box .wrap .text > .info span:first-of-type::before {
    content: "· ";
}

.sub .professor .box .wrap .text > button {
    position: absolute;
    top: 0;
    right: 0;
}

.sub .image-box {
    padding: 100px 60px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
    font-size: 24px;
    font-weight: bold;
    border-radius: 4px;
}

.image-box p:first-child {
    font-size: 18px;
    padding-bottom: 2rem;
}

.image-box span {
    color: #F37724;
}

.sub .with-icon .wrap {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    height: 100%;
    border: 3px solid #D5DCE5;
    border-radius: 500px;
    line-height: 1.2;
}

.sub .with-icon .wrap > *:not(:last-child) {
    margin-bottom: 10px;
}

.sub .with-icon .wrap .icon {
    width: 50px;
}

.sub .plus-list .list {
    flex: 1;
}

.sub .plus-list .list .wrap {
    background: #F8F9FA;
    height: 100%;
    padding: 60px 20px;
    text-align: center;
    border-radius: 4px;
}

.sub .plus-list .list .wrap > *:not(:last-child) {
    margin-bottom: 20px;
}

.sub .plus-list .list .icon {
    width: 80px;
}

.sub .plus-list .list .text p {
    font-size: 26px;
    font-weight: bold;
}

.sub .plus-list .list .capsule {
    display: inline-block;
    padding: 8px 20px;
    color: #FFF;
    border-radius: 100px;
    line-height: 1;
}

.sub .plus-list .list:nth-child(1) .wrap .capsule {
    background: #3093A8;
}

.sub .plus-list .list:nth-child(3) .wrap .capsule {
    background: #33944D;
}

.sub .plus-list .plus {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub .plus-list .plus .icon {
    width: 30px;
}

.sub .step > *:not(:last-child) {
    margin-bottom: 20px;
}

.sub .step .list {
    flex: 1;
    margin-bottom: 20px;
}

.sub .step .next {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub .step .wrap {
    border: 1px solid #BDC2C9;
    height: 100%;
    text-align: center;
}

.sub .step .wrap > *:nth-child(1) {
    padding: 10px;
    font-weight: bold;
    background: #EBF2F9;
}

.sub .step .wrap > *:nth-child(2) {
    padding: 10px;
    align-content: center;
}

.sub .step .wrap > *:nth-child(2) li:has(.icon) {
    padding-bottom: 10px;
}

.sub .step .wrap > *:nth-child(2) .icon {
    width: 50px;
}

.sub .step .wrap ul li:has(button):not(:first-child) {
    margin-top: 6px;
}

.sub .table-list .row > * {
    padding-bottom: calc(var(--bs-gutter-x));
}

.sub .table-list .wrap > * {
    padding: 10px;
    border-bottom: 1px solid #BDC2C9;
}

.sub .table-list .wrap > *:first-child {
    font-weight: bold;
    border-top: 2px solid #727791;
    background: #EBF2F9;
    border-bottom: 0;
}

.sub .table-list .down {
    text-align: center;
}

.content-table {
    margin-top: 2rem;
}

.content-table > tbody > tr > td:first-child,
.content-table > tbody > tr > th {
    background-color: #EBF2F9;
    font-weight: bold;
}

.content-table3 > tbody > tr > td:not(:first-child) {
    width: 40%;
}

.step-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.step-content > div {
    background-color: #F8F9FA;
    flex-basis: 33.33%;
    padding: 4rem;
    position: relative;
}

.step-content > div::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 1.5rem solid transparent;
    border-top: 1.5rem solid transparent;
    border-left: 1.5rem solid #F8F9FA;
    border-right: 1.5rem solid transparent;
    top: 50%;
    right: -3rem;
    transform: translate(0, -50%);
}

.step-content > div:last-child::after {
    border: none;
}

.step-content p {
    padding: 1rem 0;
    font-weight: 700;
    color: #34489B;
    font-size: 1.2rem;
}

.step-content img {
    display: block;
    width: 4rem;
    margin: 0 auto;
}

.sub .img-content {
    border: 1px solid #D5DCE5;
    padding: 40px;
    text-align: center;
}

.sub .img-content img {
    max-width: 100%;
}

.sub .img-content > *:not(:last-child) {
    margin-bottom: 20px;
}

.sub .box-content {
    border: 1px solid #D5DCE5;
    padding: 40px;
    /*height: 100%;*/
}

.sub .box-content > *:not(:last-child) {
    margin-bottom: 10px;
}

.sub .box-content > .subcontent:not(:last-child) {
    margin-bottom: 30px;
}

.sub .sub-list {
    background: #F8F9FA;
    padding: 10px;
}

.sub .sub-list p {
    font-weight: bold;
}

.sub .sub-list li::before {
    content: "- ";
}

.sub .image-caption .wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    object-fit: cover;
}

.sub .image-caption .wrap p {
    text-align: center;
    padding: 4px 0;
}

.sub .box-list > *:not(:last-child) {
    margin-bottom: 20px;
}

.sub .box-list ul {
    background: #F8F9FA;
    padding: 20px;
}

.sub .box-list ul li::before {
    content: "⦁";
    margin-right: 6px;
    color: #BDC2C9;
}

.sub .pdf-select {
    display: flex;
}

.sub .pdf-select select {
    flex: 1;
    height: 60px;
    border-color: #111;
    padding: 0 20px;
    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;
}

.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;
}

.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-question {
    display: block;
    width: 4rem;
    margin: 0 auto;
}

.search-box > .subcontent span {
    font-weight: 700;
    color: #34489b;
}

.search-box h3 span {
    color: #FF7F00;
    text-decoration: underline;
}

.search-box h6 {
    font-size: 20px;
    color: #34489b;
}

.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;
}

.search-modal {
    display: none;
    /*display: flex;*/
    position: absolute;
    left: 0;
    top: 120px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #33944D;
}

.search-modal.active {
    display: flex;
}

form.search-modal input {
    width: 40rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 0 1rem;
}

.search-modal 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;
}

.success {
    width: 100dvw;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success .success-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.success .success-wrap img {
    width: 800px;
}

.success .success-wrap p {
    font-size: 40px;
    font-weight: bold;
}

.success .success-wrap .btn-area {
    margin-top: 30px;
}

.sub .board .board-list {
    border-top: 2px solid #707070;
    line-height: 1;
}

.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 > 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 .pagination button a {
    display: block;
    width: 100%;
    height: 100%;
}

.sub .board .board-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub .board .board-form img {
    width: 28px;
}

.sub .board .board-gallery .row > * {
    padding-bottom: calc(var(--bs-gutter-x));
}

.sub .board .board-gallery a {
    width: 100%;
}

.sub .board .board-gallery .box {
    border: 1px solid #D5DCE5;
}

.sub .board .board-gallery .box:hover {
    outline: 2px solid #111;
}

.sub .board .board-gallery .box:hover p {
    text-decoration: underline;
}

.sub .board .board-gallery .box .thumbnail {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.sub .board .board-gallery .box .text {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.sub .board .board-gallery .box .text:has(button) {
    min-height: 160px;
}

.sub .board .board-gallery .box .text > *:nth-child(1) {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sub .board .board-gallery .box .text > *:nth-child(2) {
    margin-top: auto;
    text-align: right;
    color: #707070;
}

.sub .board .board-gallery .box .text > *:nth-child(2):has(button) {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub .board .board-webzine li:not(:last-child) {
    margin-bottom: calc(var(--bs-gutter-x));
}

.sub .board .board-webzine a {
    border: 1px solid #D5DCE5;
    padding: 20px;
    width: 100%;
}

.sub .board .board-webzine a:hover {
    outline: 2px solid #111;
}

.sub .board .board-webzine a:hover .text > *:nth-child(1) {
    text-decoration: underline;
}

.sub .board .board-webzine a:hover .text > *:nth-child(2) {
    text-decoration: underline;
}

.sub .board .board-webzine .thumbnail {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.sub .board .board-webzine .text {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sub .board .board-webzine .text > *:not(:last-child) {
    margin-bottom: 10px;
}

.sub .board .board-webzine .text > *:nth-child(1) {
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.sub .board .board-webzine .text > *:nth-child(2) {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.sub .board .board-webzine .text > *:nth-child(3) {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    color: #707070;
}

.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;
    flex-wrap: wrap;
    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;
}

.sub .table-wrap {
    overflow-x: auto;
}

.sub table {
    width: 100%;
    border-top: 2px solid #727791;
    line-height: 1.2;
    font-size: inherit;
}

.sub table tr {
    height: 50px;
}

.sub table tr > * {
    border: 1px solid #BDC2C9;
    padding: 10px;
}

.sub table tr > *:nth-of-type(1) {
    text-align: center;
}

.sub table thead {
    background: #EBF2F9;
    text-align: center;
}

/* .sub table ul li::before{content: "· ";} */
/* 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 .rate4 {
    background: #F6FBFF;
}

.sub .sum {
    background: #F8F9FA;
}

.sub .subcontent {
    border-bottom: 1px solid #D5DCE5;
    padding-bottom: 30px;
}

.sub table.table-same {
    table-layout: fixed;
    text-align: center;
}

.sub table.table-same tr > *:first-child {
    width: auto;
}

.sub table.table-same tr > * {
    word-break: break-all;
}

.sub table.l2_center tr > td:nth-child(2) {
    text-align: center;
}

.sub .subcontent form > *:not(:last-child) {
    margin-bottom: 30px;
}

.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;
}

.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 .table-wrap table tr > * {
    min-width: 80px;
}

.sub .table-accept {
    font-size: 16px;
    text-align: center;
}

.sub .table-accept tr {
    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 .accordion {
    border-top: 2px solid #727791;
}

.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;
    border-top: 1px solid #D5DCE5;
}

.sub .date .top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub .date .top > *:not(:last-child) {
    margin-right: 20px;
}

.sub .date .top span {
    font-size: 28px;
    font-weight: bold;
    align-content: center;
    width: 120px;
    text-align: center;
}

.sub .date-list {
    border-top: 2px solid #727791;
}

.sub .date-list li {
    display: flex;
}

.sub .date-list > li {
    border-bottom: 1px solid #D5DCE5;
}

.sub .date-list .month {
    width: 300px;
    font-weight: bold;
    background: #EBF2F9;
    text-align: center;
    align-content: center;
    padding: 10px 20px;
}

.sub .date-list .list {
    flex: 1;
}

.sub .date-list .list li {
    padding: 10px 20px;
}

.sub .date-list .list li:not(:last-child) {
    border-bottom: 1px solid #D5DCE5;
}

.sub .date-list .list li span:last-child {
    flex: 1;
}

.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;
}

.gallery .row {
    gap: 20px 0;
}

.gallery .card4 {
    padding: 10px;
    border: 1px solid #D5DCE5;
}

.gallery .card4:hover {
    outline: 2px solid #111111;
}

.gallery .card4 img {
    width: 420px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
}

.gallery .card4 .text {
}

.gallery .card4 .text .notice {
    background-color: #34489b;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 16px;
    padding: 6px 18px;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 8px;
    display: inline-block;
}

.gallery .card4 .text h6 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.gallery .card4 .text p {
    font-size: 16px;
    margin-top: 4px;
    color: #707070;
    text-align: right;
}

.list4 .card3 {
    width: 100%;
    border: 1px solid #D5DCE5;
    padding: 20px;
    box-sizing: border-box;
}

.list4 .card3:not(:last-of-type) {
    margin-bottom: 1.5rem;
}

.list4 .card3:hover {
    outline: 2px solid #111111;
}

.list4 .card3:hover h6, .list4 .card3:hover p:not(:last-of-type) {
    text-decoration: underline;
}

.list4 .card3 img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.list4 .card3 .col-xl-9 {
    padding: 30px;
}

.list4 .card3 .col-xl-9 .text {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.list4 .card3 .col-xl-9 .text h6 {
    margin-bottom: 10px;
}

.list4 .card3 .col-xl-9 .text p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.list4 .card3 .col-xl-9 .text p:last-of-type {
    margin-top: auto;
    color: #707070;
    text-align: right;
}

.list4 .deco6, .list4 .deco3 {
    margin-bottom: 10px;
}

.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;
}

.intro-modal {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    gap: 10px;
}

.intro-modal .modal-wrap {
    width: 800px;
}

.intro-modal .close-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333333;
    padding: 10px 20px;
}

.intro-modal .close-section button {
    color: #FFFFFF;
}

.intro-modal .img-wrap {
    position: relative;
}

.intro-modal .img-wrap .uway {
    display: block;
    width: 329px;
    height: 44px;
    position: absolute;
    top: 582px;
    left: 56px;
}

.intro-modal .img-wrap .jinhak {
    display: block;
    width: 329px;
    height: 44px;
    position: absolute;
    top: 582px;
    right: 59px;
}

.intro-modal .img-wrap .detail {
    display: block;
    width: 610px;
    height: 50px;
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
}


@media screen and (min-width: 1200px) {
    .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;
    }

    .sub .with-icon .wrap {
        font-size: 22px;
        font-weight: bold;
    }

    .sub .table-list .wrap {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .sub .table-list .wrap > * {
        display: flex;
        flex-direction: column;
    }

    .sub .table-list .wrap > ul {
        height: 100%;
    }

    .sub .date-list .list li span:first-child {
        width: 300px;
    }

    .sub .image-caption .wrap p {
        margin-bottom: 10px;
    }

    .sub .step .list {
        flex: none;
        width: calc((100% - 180px) / 3);
    }

    .m-only {
        display: none !important;
    }

    .pc-menu .brand, .pc-menu .btn-group {
        /*min-width: 300px;*/
    }

    .pc-menu .btn-group {
        justify-content: right;
    }

    .main2 [class*="container"] > .row > *:first-child {
        padding-right: 50px;
    }

    .main2 .notice {
        position: relative;
    }

    .main2 .notice .row > *:nth-child(4) {
        padding-bottom: 0;
    }

    .main2 .notice .row > *:nth-child(5) {
        padding-bottom: 0;
    }

    .main2 .notice .row > *:nth-child(6) {
        padding-bottom: 0;
    }

    .main2 .notice .btn-group,
    .main2 .date .btn-group {
        position: absolute;
        top: 0;
        right: 0;
    }

    .main3 [class*="container"] {
        position: relative;
    }

    .main3 .content > *:not(:last-child) {
        margin-bottom: 0;
    }

    .main3 .btn-group {
        position: absolute;
        top: 0;
        right: calc(var(--bs-gutter-x) * .5);
    }
}


@media screen and (max-width: 1799px) {
    .pc-menu .depth1 > li > a {
        padding: 0 10px;
        font-size: 20px;
    }

    .pc-menu .depth2 {
        width: 160%;
    }
}


@media screen and (max-width: 1199px) {
    .pc-only {
        display: none !important;
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 20px;
    }

    [class*="logo"] {
        width: 160px;
    }

    [class*="logo"].m-only {
        width: 40px;
    }

    button[class*="type"] {
        width: 120px;
        height: 40px;
    }

    button.more, button.prev, button.next {
        width: 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 {
        font-size: 18px;
    }

    .pc-menu .btn-group button {
        width: 60px;
        height: 60px;
    }

    .pc-menu .btn-group button img {
        width: 24px;
    }

    section {
        padding: 80px 0;
    }

    section .title {
        margin-bottom: 30px;
    }

    section[class*="main"] .title {
        text-align: center;
        background-position: center top;
    }

    section.sub .title {
        margin-bottom: 50px;
    }

    section .subtitle {
        margin-bottom: 20px;
    }

    section.sub .content > *:not(:last-child) {
        margin-bottom: 50px;
    }

    .row > .col-6 {
        padding-bottom: calc(var(--bs-gutter-x) * .5);
    }

    .row > .col-6:nth-child(odd) {
        padding-right: calc(var(--bs-gutter-x) * .25);
    }

    .row > .col-6:nth-child(even) {
        padding-left: calc(var(--bs-gutter-x) * .25);
    }

    .intro_top .row > * {
        height: auto;
        padding: 100px 0;
    }

    .intro_top .row > *:nth-child(1) {
        padding-top: 160px;
    }

    .intro_top h2 {
        margin-bottom: 30px;
    }

    .intro_top h2::after {
        width: 30px;
        height: 3px;
    }

    .intro_top h2 > *:nth-child(1) {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .intro_top h2 > *:nth-child(2) {
        font-size: 30px;
    }

    .intro_top ul {
        font-size: 16px;
        display: block;
    }

    .intro_top ul li:not(:last-child) {
        margin-bottom: 4px;
    }

    .intro .wrap {
        width: 33.33%;
    }

    .intro .image img {
        aspect-ratio: 2/1;
    }

    .intro .text {
        padding: 20px 20px 10px;
    }

    .intro .text > *:first-child img {
        width: 30px;
    }

    .intro .text .name {
        font-size: 20px;
    }

    .intro .text p.bold {
        padding-left: 34px;
    }

    .intro .bottom {
        padding: 0 20px 20px;
    }

    .intro .bottom > *:nth-last-child(2) {
        margin-bottom: 10px;
    }

    .main1 > * {
        height: 400px;
    }

    .main1 .btn-group button:not(.todayClose) {
        width: 40px;
    }

    .main1 .btn-group button.todayClose {
        width: 180px;
    }

    .main1 .text {
        color: #FFF;
        align-content: center;
        text-align: center;
        padding-top: 60px;
        word-break: keep-all;
    }

    .main1 .text > *:not(:last-child) {
        margin-bottom: 10px;
    }

    .main2 .notice {
        margin-bottom: 50px;
    }

    .main2 .notice a {
        padding: 20px;
        height: 120px;
        border-radius: 4px;
    }

    .main2 .notice a > *:first-child {
        font-size: 16px;
    }

    .main2 .notice .row > *:not(:last-child) {
        padding-bottom: calc(var(--bs-gutter-x) * .5);
    }

    .main2 .notice .btn-group,
    .main2 .date .btn-group {
        justify-content: center;
        margin-top: 30px;
    }

    .main2 .date {
        padding: 20px;
        border-radius: 4px;
    }

    .main2 .date .content ul li > *:last-child {
        font-size: 16px;
    }

    .main2 .date .content ul li:not(:last-child) {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .main3 .content > .row > *:nth-child(1) {
        padding-bottom: calc(var(--bs-gutter-x) * .5);
    }

    .main3 .content > .row > *:nth-child(1) .box .thumb {
        aspect-ratio: 5/3;
    }

    .main3 .content .row .row:not(:last-child) {
        margin-bottom: 0;
    }

    .main3 .content .box .thumb {
        margin-bottom: 10px;
        border-radius: 4px;
    }

    .main3 .content .box .text {
        margin-bottom: calc(var(--bs-gutter-x) * .5);
    }

    .main3 .content .box .text p:nth-child(1) {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .main3 .btn-group {
        justify-content: center;
    }

    .main4 {
        padding: 80px 0;
    }

    .main4 .row > *:not(:last-child) {
        margin-bottom: calc(var(--bs-gutter-x) * .5);
    }

    .main4 .wrap {
        border-radius: 4px;
        padding: 20px 10px;
    }

    .main4 .wrap > .icon {
        width: 40px;
        margin-bottom: 10px;
    }

    .main4 .wrap > *:nth-child(2) {
        padding: 2px 14px;
    }

    .main4 .wrap > *:nth-child(3) {
        font-weight: bold;
        font-size: 18px;
    }

    .main4 .wrap > *:nth-child(3) span {
        font-size: 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;
    }

    .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 .professor > .row > * {
        padding-bottom: calc(var(--bs-gutter-x) * .5);
    }

    .sub .professor .box {
        padding: 20px;
    }

    .sub .professor .box .wrap .image {
        width: 100%;
        margin-bottom: 20px;
    }

    .sub .professor .box .wrap .image img {
        aspect-ratio: 1;
    }

    .sub .professor .box .wrap .text > *:nth-child(1) {
        width: 70px;
        text-align: center;
        margin-bottom: 4px;
    }

    .sub .professor .box .wrap .text > *:nth-child(2) {
        font-size: 24px;
    }

    .sub .professor .box .wrap .text > .info {
        margin-top: 10px;
    }

    .sub .professor .box .wrap .text > .info > *:not(:last-child) {
        margin-bottom: 2px;
    }

    .sub .professor .box .wrap .text > .info span:first-of-type {
        flex-basis: 60px;
    }

    .sub .professor .box .wrap .text > button {
        position: absolute;
        top: 0;
        right: 0;
    }

    .sub .image-box {
        padding: 40px 20px;
        font-size: 16px;
    }

    .sub .with-icon .row > *:not(:last-child) {
        padding-bottom: calc(var(--bs-gutter-x) * .25);
    }

    .sub .with-icon .wrap {
        padding: 20px 0;
        border-radius: 4px;
    }

    .sub .with-icon .wrap > *:not(:last-child) {
        margin-bottom: 6px;
    }

    .sub .with-icon .wrap .icon {
        width: 30px;
    }

    .sub .plus-list .list .wrap {
        padding: 20px 10px;
    }

    .sub .plus-list .list .icon {
        width: 50px;
    }

    .sub .plus-list .list .wrap > *:not(:last-child) {
        margin-bottom: 10px;
    }

    .sub .plus-list .list .text p {
        font-size: 18px;
    }

    .sub .plus-list .list .capsule {
        padding: 4px 10px;
    }

    .sub .plus-list .plus {
        width: 100%;
        padding: 20px 0;
    }

    .sub .plus-list .plus .icon {
        width: 20px;
    }

    .sub .step .next {
        width: 100%;
        padding: 10px 0;
    }

    .sub .step .next .icon {
        transform: rotate(90deg);
    }

    .sub .step .wrap > *:nth-child(2) .icon {
        width: 40px;
    }

    .sub .step .list {
        margin-bottom: 0;
    }

    .sub .table-list .row > * {
        padding-bottom: calc(var(--bs-gutter-x) * .5);
    }

    .sub .table-list .wrap > * {
        padding: 2px 4px;
    }

    .sub .img-content {
        padding: 20px;
    }

    .sub .box-content > .subcontent:not(:last-child) {
        margin-bottom: 20px;
    }

    .sub .song .row > *:not(:last-child) {
        margin-bottom: 20px;
    }

    .sub .symbol .name {
        margin: 10px 0 10px;
    }

    .sub .symbol .name button {
        width: 24px;
        height: 24px;
    }

    .sub .employee table tr > *:not(:nth-child(3)) {
        width: 70px;
        text-align: center;
    }

    .sub .employee-search .subcontent table tr > *:not(:nth-child(4)) {
        width: 70px;
        text-align: center;
    }

    .sub .rule table tr > *:not(:nth-child(1)) {
        width: 50px;
    }

    .sub .scholarship table tr > td:nth-child(1) {
        width: 80px;
    }

    .sub .scholarship table tr > td:nth-child(2) {
        width: 60px;
        text-align: center;
    }

    .sub .scholarship table tr > td:nth-child(4) {
        width: 80px;
    }

    .sub .club table tr > td:nth-child(1) {
        width: 60px;
    }

    .sub .club table tr > td:nth-child(3) {
        width: 60px;
        text-align: center;
    }

    .sub .club table tr > td:nth-child(4) {
        width: 60px;
        text-align: center;
    }

    form textarea {
        height: 100px;
    }

    .sub .pdf .row > *:not(:last-child) {
        margin-bottom: 50px;
    }

    .sub .pdf-select select {
        height: 40px;
        background-position: right 10px center;
        padding: 0 10px;
    }

    .sub .pdf-select button {
        width: 80px;
        height: 40px;
    }

    .sub .pdf-index .index button {
        height: 40px;
        padding: 0 40px 0 10px;
    }

    .sub .pdf-index .index button:hover {
        background-position: center right 10px;
    }

    .sub .bottom button {
        width: 80px;
        height: 40px;
    }

    .sub .department .top {
        padding: 20px;
    }

    .sub .department .top .row {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sub .department .top .logo {
        width: 100px;
    }

    .sub .department .top .wrap {
        align-items: center;
    }

    .sub .department .top .wrap > *:nth-child(2) {
        font-size: 26px;
    }

    .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 .download-btn {
        width: 40px;
        height: 40px;
    }

    .sub .board .board-list a > span .download-btn .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 .board-webzine .text {
        padding: 20px 0 0;
    }

    .sub .board .pagination li button {
        width: 40px;
        height: 40px;
    }

    .sub .board .board-form img {
        width: 20px;
    }

    .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;
    }

    .sub table tr {
        height: 30px;
    }

    .sub table tr > * {
        border: 1px solid #BDC2C9;
    }

    .sub .table-accept {
        font-size: 12px;
    }

    .sub .table-accept tr {
        height: 24px;
    }

    .sub .subcontent form .wrap > div {
        min-height: 60px;
    }

    .sub .subcontent form .wrap > div > label {
        width: 100px;
    }

    .sub .subcontent form button {
        height: 40px;
    }

    .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 .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 .campusmap .row > *:last-child > *:not(:last-child) {
        margin-bottom: 10px;
    }

    .sub .date .top span {
        font-size: 20px;
        width: 80px;
    }

    .sub .date-list li {
        flex-direction: column;
    }

    .sub .date-list .month {
        width: 100%;
        padding: 10px;
    }

    .sub .date-list .list li {
        padding: 10px;
    }

    .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;
    }

    .gallery .card4 img {
        width: 100dvw;
    }

    .list4 .card3 .col-xl-9 {
        padding: 0 calc(1.5rem * 0.5);
    }

    .list4 .card3 .col-xl-9 .text {
        padding-top: 20px;
    }

    .sub .chip-menu {
        gap: 10px;
    }

    .sub .chip-menu li a {
        padding: 10px 22px;
    }

    .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;
    }

    .search-box .box-content p {
        white-space: inherit;
    }

    .image-box p:first-child {
        font-size: 14px;
        padding-bottom: 2rem;
    }

    .step-content {
        flex-direction: column;
    }

    .step-content > div::after {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -3rem;
        transform: translate(-50%, 0);
        border-top: 1.5rem solid #F8F9FA;
        border-left: 1.5rem solid transparent;
    }

    .intro-modal {
        width: 90%;
        top: 80px;
        flex-wrap: wrap;
    }

    .intro-modal .wrap {
        padding: 20px;
    }

    .intro-modal .img-wrap .uway {
        width: 42%;
        height: 5%;
        top: 51%;
        left: 7%;
    }

    .intro-modal .img-wrap .jinhak {
        width: 42%;
        height: 5%;
        top: 51%;
        right: 7%;
    }

    .intro-modal .img-wrap .detail {
        width: 80%;
        height: 5%;
        top: 83%;
    }
}


@media screen and (max-width: 991px) {
    .intro .wrap {
        width: 100%;
        padding-bottom: calc(var(--bs-gutter-x) * .5);
    }

    .popup .slide .wrap {
        width: 100%;
    }
}


@media print {
    header, footer {
        display: none;
    }
}