/* common */
.mbr, .tbr {
    display: none;
}

.wrap {
    position: relative;
    overflow: hidden;
}

.wrap .area {
    max-width: 1500px;
    margin: 0 auto;
}

/* visual */
#visual {
    position: relative;
}

#visual .vslide .vlist {
    overflow: hidden;
    position: relative;
    height: 800px;
}

#visual .vslide .vlist .vbg {
    margin-right: 100px;
    overflow: hidden;
}

#visual .vslide .vlist .vbgsgu {
    overflow: hidden;
    background: url('https://d3ahhveld6u9g3.cloudfront.net/images/main/sgu_main.webp') center center / cover no-repeat;
}

#visual .vslide .vlist.slick-current .vbg img {
    animation: mymove 5s;
}

@keyframes mymove {
    from {
        transform: scale(1.2)
    }
    to {
        transform: scale(1)
    }
}

#visual .vlist .vtxt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 180px;
    color: #fff;
    z-index: 2; /* 텍스트가 오버레이 위에 오도록 설정 */
}

#visual .vlist .vtxt ul li h5 {
    font-size: 24px;
    font-weight: 500;
}

#visual .vlist .vtxt ul li h1 {
    padding-top: 44px;
    font-size: 70px;
    line-height: 88px;
    font-weight: 500;
}

#visual .vlist .vtxt ul li h1 b {
    font-weight: 600;
}

/* 슬로건 애니메이션 */
#visual .vlist .vtxt ul li h5 .char, #visual .vlist .vtxt ul li h1 .char {
    animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-delay: calc(60ms * var(--char-index));
}

@keyframes text-active-animation {
    from {
        opacity: 0;
        transform: translateY(50%);
    }
    to {
        opacity: 1.0;
        transform: translateY(0px);
    }
}

#visual .vlist .vtxt ul li p {
    padding-top: 114px;
}

#visual .vlist .vtxt ul li p span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, .4);
}

#visual .vlist .vtxt ul li p span:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #1f43bb;
}

#visual .vlist .vtxt ul li p a {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
}

#visual .vlist .vtxt ul li p a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 3px;
    background: #fff;
}

#visual .vlist .vtxt ul li p a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 25px;
    background: #fff;
}

#visual .vlist.slick-current .vtxt ul li p span:after {
    animation: vloading 5s;
}
#visual .vlist .vtxt ul li h5,
#visual .vlist .vtxt ul li h1 {
    text-shadow:
        0 1px 2px rgba(0,0,0,.55),
        0 4px 12px rgba(0,0,0,.45);
}
@keyframes vloading {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

#visual .vcon {
    position: absolute;
    bottom: 26%;
    left: 0;
    width: 100%;
    color: #fff;
}

#visual .vcon .mv_control {
    display: inline-block;
    position: relative;
}

#visual .vcon .mv_control .mv_paging {
    padding: 0 24px;
}

#visual .vcon .mv_control .mv_paging > span {
    padding: 0 16px;
    font-weight: 600;
}

#visual .vcon .mv_control .mv_paging > span:nth-of-type(2) {
    position: relative;
    opacity: .4;
}

#visual .vcon .mv_control .mv_paging > span:nth-of-type(2):before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 2px;
    height: 13px;
    background: rgba(255, 255, 255, .5);
}

#visual .vcon .mv_control .mv_arrow {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -2px;
    width: 100%;
}

#visual .vcon .mv_control .mv_arrow button.slick-arrow {
    border: none;
    background: none;
}

/* 백그라운드 동영상 스타일 */
#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* 어두운 불투명 레이어 */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Quicklinks 스타일 */
#quicklinks {
    width: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    margin-bottom: 10px;
    margin-top: -160px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.quicklink-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 120px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.quicklink {
    flex: 1;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #fcf1f1;
    transition: color 0.3s ease;
    padding: 20px;
    border: 2px solid transparent;
}

.quicklink:not(:last-child) {
    border-right: 2px solid #bbbbbb;
}

.quicklink a {
    text-decoration: none;
    font-weight: 400;
    color: inherit;
    transition: color 0.3s ease;
}

.quicklink a:hover {
    color: #a0b1ff;
}

/* Singyeongju Now 스타일 */
#singyeongju-now {
    padding: 100px 20px 20px;
    background-color: #ffffff;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin-bottom: 50px;
}

.section-title .line_left {
    flex: 1;
    height: 3px;
    background-color: #000;
    margin: 0 15px 0 700px;
}

.section-title .line_right {
    flex: 1;
    height: 3px;
    background-color: #000;
    margin: 0 700px 0 15px;
}

#singyeongju-now .now-panel {
    display: none;
    margin-top: 50px;
}

#singyeongju-now .now-panel.is-active {
    display: block;
    margin-top: 50px;
}

#singyeongju-now .now-tabs {
    display: flex;
    justify-content: center; /* 가운데 */
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 16px;
}

#singyeongju-now .now-tab {
    border: 1px solid #ddd;
    padding: 6px 10px;
    background: #fff;
    font-size: 14px;
}


#singyeongju-now .now-tab.is-active {
    border-color: #111;
    font-weight: 700;
}

.thumbnail-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1360px;
    margin: 0 auto;
}

.thumbnail {
    width: 22%;
    height: auto;
    margin-bottom: 20px;
    text-align: left;
    padding: 10px;
    box-sizing: border-box;
}

.category {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}

.title {
    font-size: 1em;
    height: 3em;
    line-height: 1.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.thumbnail-img {
    width: 100%;
    height: auto;
}

/* SGU Honors Club 스타일 */
#sgu-honors-club {
    width: 100%;
    height: 250px;
    background-image: url('https://d3ahhveld6u9g3.cloudfront.net/images/main/sgu_honors.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honors-content {
    width: 1360px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.honors-left {
    flex: 6;
    padding: 0 20px;
}

.honors-title {
    font-size: 2.5em;
    margin: 0;
}

.honors-subtitle {
    font-size: 1.5em;
    margin: 10px 0 0;
}

.honors-right {
    flex: 4;
    padding: 0 20px;
    border-left: 2px solid #ffffff;
}

.honors-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.0em;
    line-height: 2.2em;
}

.honors-links li {
    margin-bottom: 10px;
}

.honors-links a {
    color: #ffffff;
    text-decoration: none;
}

.honors-links a:hover {
    color: #cccccc;
}

/* SGU banner 스타일 */
#sgu-banner {
    width: 100%;
    height: 250px;
    background-image: url('https://d3ahhveld6u9g3.cloudfront.net/images/main/sgu_banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    width: 1360px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.banner-left {
    flex: 4;
    padding: 0 20px;
}

.banner-title {
    font-size: 2.5em;
    margin: 0;
}

.banner-subtitle {
    font-size: 1.5em;
    margin: 10px 0 0;
}

.banner-subtitle a {
    font-size: 0.8em;
    margin: 10px 0 0;
    color: wheat;
    font-style: oblique;
}

.banner-right {
    flex: 4;
    padding: 0 20px;
    border-left: 2px solid #ffffff;
}

.banner-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.3em;
    line-height: 1.5em;
}

.banner-links li {
    margin-bottom: 10px;
}

.banner-links a {
    color: #ffffff;
    text-decoration: none;
}

.banner-links a:hover {
    color: #cccccc;
}
/* Quick Access 스타일 */
#quick-access {
    width: 100%;
    background-color: #f0f0f0;
    margin: 100px 0;
    padding: 50px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quick-access-container {
    display: flex;
    align-items: flex-start; /* 핵심 */
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-access-left {
    flex: 0 0 320px; /* 고정폭 (핵심) */
    text-align: left;
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.quick-access-right {
    flex: 1;
}

.quick-access-links {
    display: flex;
    flex-wrap: wrap;          /* 줄바꿈 */
    gap: 20px 40px;           /* 세로 / 가로 간격 */
    align-content: flex-start;
}

.quick-access-links div {
    flex: none;
}

.quick-access-links a {
    text-decoration: none;
    font-weight: 400;
    color: #333;
    transition: color 0.3s ease;
    white-space: nowrap; /* 텍스트 쪼개짐 방지 */
}

.quick-access-links a:hover {
    color: #1f3485;
}

/* Banner Zone 스타일 */
#banner-zone {
    width: 100%;
    margin: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1360px;
    width: 75%;
    padding: 0 20px;
}

.banner {
    flex: 1;
    margin: 0 10px;
    aspect-ratio: 3.5 / 2;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*임시배너섹션*/
.section-bg {
    background-image: url('https://d3ahhveld6u9g3.cloudfront.net/images/sub/admission_hub.webp');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

.section-bg .content {
    border: 2px solid white;
    padding: 20px;
    color: white;
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.section-bg h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.section-bg h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.section-bg .underline-link {
    text-decoration: underline; /* 텍스트 밑줄 추가 */
    color: white; /* 텍스트 색상 */
    font-size: 1em; /* 글자 크기 */
}

.section-bg .underline-link:hover {
    text-decoration: none; /* 마우스 오버 시 밑줄 제거 */
    color: #007BFF; /* 마우스 오버 시 색상 변경 */
}

.section-bg ul {
    list-style: none;
    padding: 0;
    font-size: 1.3em;
}

.section-bg ul li {
    margin-bottom: 15px;
    font-weight: 400;
}

.section-bg ul li .title {
    font-weight: 500;
    margin-right: 10px;
    height: 1.3em;
}

.section-bg2 {
    background-image: url('https://d3ahhveld6u9g3.cloudfront.net/images/sub/admission_hub.webp');
    background-size: cover;
    background-position: center;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    flex-direction: column;
}

.section-bg2 .content {
    border: 2px solid white;
    padding: 20px;
    color: white;
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin-top: -5%;
}

.section-bg2 .content2 {
    padding: 20px;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.section-bg2 .content2 h3 a {
    text-decoration: underline; /* 텍스트 밑줄 추가 */
    color: white; /* 텍스트 색상 */
    font-size: 1.3em; /* 글자 크기 */
}

.section-bg2 .content2 h3 a:hover {
    text-decoration: none; /* 마우스 오버 시 밑줄 제거 */
    color: #007BFF; /* 마우스 오버 시 색상 변경 */
}

.section-bg2 h1 {
    font-size: 2.0em;
    margin-bottom: 20px;
}

.section-bg2 ul {
    list-style: none;
    padding: 0;
    font-size: 1.3em;
}

.section-bg2 ul li {
    margin-bottom: 15px;
    font-weight: 400;
}

.section-bg2 ul li .title {
    font-weight: 500;
    margin-right: 10px;
    height: 1.8em;
}

#notice, #faq {
    max-width: 1360px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin-bottom: 50px;
}

.section-title .line_left {
    flex: 1;
    height: 3px;
    background-color: #000;
    margin: 0 15px 0 250px;
}

.section-title .line_right {
    flex: 1;
    height: 3px;
    background-color: #000;
    margin: 0 250px 0 15px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-buttons button {
    margin: 5px 5px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
}

.category-buttons button:hover {
    background-color: #f0f0f0;
}

.category-buttons .active {
    background-color: #003686;
    border-color: #003686;
    color: white;
}

/* notice */
.notice {
    min-height: 560px;
    margin-bottom: 75px;
    background: url('https://d3ahhveld6u9g3.cloudfront.net/images/main/notice_bg.jpg') 0 0 no-repeat;
}

.notice .area:after {
    content: '';
    display: block;
    clear: both;
}

.notice .area > div {
    float: left;
}

.notice .notit {
    width: 21%;
    padding-top: 75px;
    color: #fff;
}

.notice .notit ul li h5 {
    font-size: 20px;
    font-weight: 600;
}

.notice .notit ul li h1 {
    padding: 20px 0 45px;
    font-size: 50px;
}

.notice .notit ul li p {
    padding-bottom: 110px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 100;
    opacity: .6;
    word-break: keep-all;
}

.notice .notit ul li a {
    display: inline-block;
    position: relative;
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
}

.notice .notit ul li a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 3px;
    background: #fff;
}

.notice .notit ul li a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 25px;
    background: #fff;
}

.notice .nocon {
    width: 79%;
    padding: 65px 0 20px;
    background: #fff;
}

.notice .nocon .notab {
    padding: 0 0 45px 75px;
}

.notice .nocon .notab button {
    margin-right: 40px;
    background: none;
    border: none;
}

.notice .nocon .notab button span {
    position: relative;
    font-size: 20px;
    color: #aaa;
}

.notice .nocon .notab button span i {
    margin-right: 5px;
    font-size: 24px;
    vertical-align: text-top;
}

.notice .nocon .notab button.active span {
    font-weight: 600;
    color: #1f43bb;
}

.notice .nocon .tab-content {
    display: none;
}

.notice .nocon .tab-content.active {
    display: block;
}

.notice .nocon .tab-content .slick-track {
    width: 100% !important;
}

.notice .nocon .tab-content .noline {
    width: 100% !important;
    padding-left: 75px;
}

.notice .nocon .tab-content .noline .noinn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.notice .nocon .tab-content .nobox {
    flex: 0 1 29%;
    position: relative;
    padding-bottom: 50px;
}

.notice .nocon .tab-content .nobox > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.notice .nocon .tab-content .nobox ul li h5 {
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #333;
    transition: all .6s;
}

.notice .nocon .tab-content .nobox ul li p {
    line-height: 24px;
    color: #888;
    word-break: keep-all;
}

.notice .nocon .tab-content .nobox:hover ul li h5 {
    color: #3fa8cb;
}

.notice .nocon .noplus {
    display: none;
    padding-top: 20px;
    text-align: center;
}

.notice .nocon .noplus a {
    display: inline-block;
    width: 220px;
    height: 55px;
    line-height: 55px;
    font-weight: 500;
    color: #fff;
    background: #3fa8cb;
}

.notice .nocon .noplus a i {
    margin-left: 10px;
}

/* major */
.major {
    position: relative;
    padding: 0 0 150px 100px;
    text-align: center;
}

.major .mjvg {
    height: 700px;
    overflow: hidden;
}

.major .mjvg video {
    width: 100%;
}

.major .mjwrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.major .mjwrap > h1 {
    padding: 60px 0 40px;
    font-size: 50px;
    color: #fff;
}

.major .mjwrap .mjtab {
    padding-bottom: 36px;
    text-align: center;
}

.major .mjwrap .mjtab ul li {
    display: inline-block;
    position: relative;
    float: none;
    width: auto !important;
    padding: 0 25px;
}

.major .mjwrap .mjtab ul li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, .2);
}

.major .mjwrap .mjtab ul li:nth-of-type(1):before {
    display: none;
}

.major .mjwrap .mjtab ul li p {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    opacity: .4;
    cursor: pointer;
}

.major .mjwrap .mjtab ul li p:before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    width: 6px;
    height: 6px;
    background: #fff;
    opacity: 0;
}

.major .mjwrap .mjtab ul li.slick-current p {
    opacity: 1;
}

.major .mjwrap .mjtab ul li.slick-current p:before {
    opacity: 1;
}

.major .mjwrap .mjtab ul.mtslide .slick-list .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
}

.major .slick-arrow {
    position: absolute;
    top: 30%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    font-size: 0;
    border: none;
}

.major .slick-prev {
    left: 21%;
    background: rgba(0, 0, 0, .6) url('https://d3ahhveld6u9g3.cloudfront.net/images/main/maleft.png') center no-repeat;
    z-index: 9;
}

.major .slick-next {
    right: 21%;
    background: rgba(0, 0, 0, .6) url('https://d3ahhveld6u9g3.cloudfront.net/images/main/maright.png') center no-repeat;
}

.major .mjwrap .mjimg .mibox {
    margin: 0 75px;
}

.major .mjwrap .mjimg .mibox .mibimg {
    box-shadow: 20px 20px 30px 0 rgba(0, 0, 0, .2);
    overflow: hidden;
}

.major .mjwrap .mjimg .mibox .mibimg img {
    width: 100%;
    margin: 0 auto;
}

.major .mjwrap .mjimg .mibox .mibtxt {
    display: none;
    position: relative;
    max-width: 800px;
    margin: -60px auto 0;
    padding: 40px 40px 0;
    background: #fff;
}

.major .mjwrap .mjimg .mibox .mibtxt h3 {
    padding-bottom: 25px;
    font-size: 36px;
    color: #333;
}

.major .mjwrap .mjimg .mibox .mibtxt p a {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    margin: 4px 3px;
    padding: 0 30px;
    font-size: 18px;
    font-weight: 500;
    color: #3fa8cb;
    border: 1px solid #3fa8cb;
    border-radius: 100px;
    transition: all .6s;
}

.major .mjwrap .mjimg .mibox .mibtxt p a:hover {
    color: #fff;
    background: #3fa8cb;
}

.major .mjwrap .mjimg .mibox .mibtxt p a i {
    margin-left: 4px;
}

.major .mjwrap .mjimg .mibox.slick-current .mibtxt {
    display: block;
}

.major .mjwrap .mjimg .mibox.slick-current .mibimg img {
    animation: mymove 3s;
}

@keyframes mymove {
    from {
        transform: scale(1.1)
    }
    to {
        transform: scale(1)
    }
}

/* gallery */
.gallery {
    height: 770px;
    text-align: center;
    background: url('https://d3ahhveld6u9g3.cloudfront.net/images/main/gall_bg.jpg') 0 0 no-repeat;
}

.gallery .gatit h1 {
    padding: 60px 0 24px;
    font-size: 50px;
    color: #333;
}

.gallery .gatit p {
    font-size: 18px;
    color: #bbb;
}

.gallery .gacon .slick-arrow {
    position: absolute;
    top: 30%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    font-size: 0;
    border: none;
}

.gallery .gacon .slick-prev {
    left: -45px;
    background: rgba(0, 0, 0, .6) url('https://d3ahhveld6u9g3.cloudfront.net/images/main/maleft.png') center no-repeat;
    z-index: 9;
}

.gallery .gacon .slick-next {
    right: -15px;
    background: rgba(0, 0, 0, .6) url('https://d3ahhveld6u9g3.cloudfront.net/images/main/maright.png') center no-repeat;
}

.gallery .gacon .slick-active {
    margin-top: 30px;
}

.gallery .gacon .slick-active + .slick-active {
    margin-top: 100px;
}

.gallery .gacon .slick-active + .slick-active + .slick-active {
    margin-top: 70px;
}

.gallery .gacon .slick-active + .slick-active + .slick-active + .slick-active {
    margin-top: 0px;
}

.gallery .gacon .gabox {
    position: relative;
    margin-right: 30px;
    transition: all .6s;
}

.gallery .gacon .gabox > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gallery .gacon .gabox .gatop {
    position: relative;
    background: #3fa8cb;
    box-shadow: 15px 15px 20px 0 rgba(0, 0, 0, .15);
    overflow: hidden;
}

.gallery .gacon .gabox .gatop img {
    width: 100%;
    transition: all .6s;
}

.gallery .gacon .gabox .gatop p {
    position: absolute;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 50px;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    word-break: keep-all;
    opacity: 0;
    transition: all .6s;
}

.gallery .gacon .gabox h5 {
    padding: 26px 50px 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #333;
    word-break: keep-all;
    transition: all .6s;
}

.gallery .gacon .gabox:hover .gatop img {
    opacity: .1;
    transform: scale(1.1);
}

.gallery .gacon .gabox:hover .gatop p {
    top: 50%;
    opacity: 1;
}

.gallery .gacon .gabox:hover h5 {
    padding: 0 50px;
    opacity: 0;
}

/* merit */
.merit {
    position: relative;
}

.merit .metitle {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.merit .metitle h1 {
    font-size: 52px;
}

.merit .metitle p {
    padding-top: 10px;
    font-size: 20px;
    font-weight: 100;
    opacity: .4;
}

.merit .metitle p b {
    font-weight: 400;
}

.merit .mecon .slick-arrow {
    position: absolute;
    top: 50%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    font-size: 0;
    border: none;
}

.merit .mecon .slick-prev {
    left: 8%;
    background: rgba(255, 255, 255, .1) url('https://d3ahhveld6u9g3.cloudfront.net/images/main/maleft.png') center no-repeat;
    z-index: 9;
}

.merit .mecon .slick-next {
    right: 8%;
    background: rgba(255, 255, 255, .1) url('https://d3ahhveld6u9g3.cloudfront.net/images/main/maright.png') center no-repeat;
}

.merit .mecon .melist {
    position: relative;
    height: 810px;
    overflow: hidden;
}

.merit .mecon .melist:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: mymove 5s;
}

.merit .mecon .melist .area {
    padding-top: 210px;
}

.merit .mecon .melist h3 {
    padding-bottom: 35px;
    text-align: center;
    font-weight: 400;
}

.merit .mecon .melist h3 span {
    display: inline-block;
    height: 66px;
    line-height: 66px;
    padding: 0 60px;
    font-size: 26px;
    color: #fff;
    background: #3fa8cb;
    border-radius: 100px;
}

.merit .mecon .metop {
    display: flex;
    justify-content: space-between;
}

.merit .mecon .mebot {
    padding-top: 40px;
}

.merit .mecon .mebot ul {
    display: flex;
    flex-wrap: wrap;
}

.merit .mecon .mebot ul li {
    flex: 0 1 25%;
    margin-bottom: 10px;
}

.merit .mecon .mebot ul li p {
    position: relative;
    padding: 0 30px 0 14px;
    line-height: 24px;
    color: #fff;
    opacity: .8;
    word-break: keep-all;
}

.merit .mecon .mebot ul li p:before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .8);
    border-radius: 50%;
}

@keyframes mymove {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

.merit .mecon .melist1:before {
    background: url('https://d3ahhveld6u9g3.cloudfront.net/images/main/merit_bg1.jpg') 0 0 no-repeat;
}

.merit .mecon .melist1 .mebox1 {
    flex: 0 1 19%;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .4);
}

.merit .mecon .melist1 .mebox1 h5 span {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.merit .mecon .melist1 .mebox1 h5 span:before {
    content: '';
    position: absolute;
    top: 3px;
    left: -18px;
    width: 8px;
    height: 8px;
    background: #3fa8cb;
}

.merit .mecon .melist1 .mebox1 h5 span:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, .3);
}

.merit .mecon .melist1 .mebox1 p {
    line-height: 26px;
    word-break: keep-all;
}

.merit .mecon .melist1 .mebox1 p b {
    font-weight: 600;
    color: #25baec;
}

.merit .mecon .melist2:before {
    background: url('https://d3ahhveld6u9g3.cloudfront.net/images/main/merit_bg2.jpg') 0 0 no-repeat;
}

.merit .mecon .melist2 .mebox2 {
    flex: 0 1 16%;
    padding: 35px 30px 30px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .4);
}

.merit .mecon .melist2 .mebox2 img {
    margin: 0 auto 30px;
}

.merit .mecon .melist2 .mebox2 p {
    line-height: 26px;
    word-break: keep-all;
}

.merit .mecon .melist2 .mebox2 p b {
    font-weight: 600;
    color: #25baec;
}

.merit .mecon .melist3:before {
    background: url('https://d3ahhveld6u9g3.cloudfront.net/images/main/merit_bg3.jpg') 0 0 no-repeat;
}

.merit .mecon .melist3 .mebox3 {
    display: flex;
    flex: 0 1 32%;
    background: #fff;
}

.merit .mecon .melist3 .mebox3 > div {
    flex: 0 1 50%;
}

.merit .mecon .melist3 .mebox3 .mb3img img {
    max-width: 100%;
    height: 100%;
}

.merit .mecon .melist3 .mebox3 .mb3txt {
    padding: 25px 30px;
}

.merit .mecon .melist3 .mebox3 .mb3txt h5 {
    padding-bottom: 12px;
    font-size: 26px;
    color: #333;
}

.merit .mecon .melist3 .mebox3 .mb3txt ul li + li {
    margin-top: 12px;
}

.merit .mecon .melist3 .mebox3 .mb3txt ul li p {
    font-size: 15px;
    line-height: 19px;
    color: #888;
    word-break: keep-all;
}

/* main-button-field */
.mabufi {
    padding: 75px 0;
    background: #f9f9f9;
}

.mabufi .area {
    display: flex;
    flex-wrap: wrap;
}

.mabufi .mbfbox {
    flex: 0 1 14.28%;
    position: relative;
    padding: 40px 20px;
    text-align: center;
}

.mabufi .mbfbox:nth-child(odd) {
    background: #fff;
}

.mabufi .mbfbox:nth-child(even) {
    background: #f2f2f2;
}

.mabufi .mbfbox > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mabufi .mbfbox h5 {
    padding-top: 17px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

/* footer */
.ftop {
    padding: 18px 0;
    background: #003686;
}

.ftop a {
    color: #fff;
}

.ftop .area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ftop .ftleft ul {
    display: flex;
}

.ftop .ftleft ul li {
    position: relative;
    margin-right: 20px;
    padding-right: 20px;
}

.ftop .ftleft ul li:after {
    content: '';
    position: absolute;
    top: 6px;
    right: 0;
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, .2);
}

.ftop .ftleft ul li:nth-last-of-type(1):after {
    display: none;
}

.ftop .ftleft ul li a:hover {
    text-decoration: underline;
}

.ftop .ftleft ul li span {
    color: #fff;
    cursor: pointer;
}

.ftop .ftright > ul {
    display: flex;
}

.ftop .ftright .select_footer {
    position: relative;
    width: 200px;
    margin-left: 10px;
}

.ftop .ftright .select_footer ul {
    display: none;
    position: absolute;
    bottom: 47px;
    left: 0;
    width: 200px;
    padding: 10px 20px;
    background: #3fa8cb;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ftop .ftright .select_footer ul.open {
    display: block;
}

.ftop .ftright .select_footer ul li {
    text-align: left;
    line-height: 30px;
    color: #fff;
}

.ftop .ftright .select_footer ul li a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    transition: all .6s;
}

.ftop .ftright .select_footer ul li a:hover {
    color: #fff;
}

.ftop .ftright .select_footer .select_f_btn {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    text-align: left;
    line-height: 45px;
    color: #fff;
    background: none;
    border: 1px solid rgba(255, 255, 255, .4);
}

.ftop .ftright .select_footer .select_f_btn:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 8px;
    height: 6px;
    background: url('https://d3ahhveld6u9g3.cloudfront.net/images/common/sfarrow.png') 0 0 no-repeat;
}

.ftop .select_footer .select_f_btn.on {
    background: #3fa8cb;
    border-color: #3fa8cb;
}

.ftop .select_footer .select_f_btn.on:before {
    transform: rotate(-180deg) translateY(50%);
}

.fbot {
    padding: 40px 0;
}

.fbot .area {
    display: flex;
    justify-content: space-between;
}

.fbot .fbtxt p {
    line-height: 28px;
    font-weight: 500;
    color: #555;
    word-break: keep-all;
}

.fbot .fbtxt p a {
    color: #555;
}

.fbot .fbsns a {
    margin-left: 6px;
}
/* 보도자료 */
#press-section {
    padding: 100px 20px 20px;
    background-color: #ffffff;
}

/* 공지사항 */
#main-notice-section {
    padding: 60px 20px 100px;
    background: #f7f7f7;
}

#main-notice-section .now-panel {
    display: none;
    margin-top: 40px;
}

#main-notice-section .now-panel.is-active {
    display: block;
}

#main-notice-section .now-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

#main-notice-section .now-tab {
    border: 1px solid #ddd;
    padding: 8px 14px;
    background: #fff;
    font-size: 14px;
}

#main-notice-section .now-tab.is-active {
    border-color: #111;
    font-weight: 700;
}

.notice-card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1360px;
    margin: 0 auto;
}

.notice-card {
    background: #fff;
}

.notice-card a {
    display: block;
    min-height: 190px;
    padding: 32px 28px;
}

.notice-card__category {
    display: block;
    margin-bottom: 18px;
    color: #d80027;
    font-size: 14px;
    font-weight: 700;
}

.notice-card h3 {
    height: 3em;
    font-size: 1.05em;
    line-height: 1.5em;
    font-weight: 600;
    color: #111;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.notice-card p {
    margin-top: 36px;
    color: #888;
    font-size: 0.95em;
}

.main-empty {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    background: #fff;
    color: #888;
}
@media (max-width: 1540px) {
    .wrap .area {
        padding: 0 20px;
    }

    #visual .vslide .vlist .vbg {
        height: 650px;
        margin-right: 0;
    }

    #visual .vslide .vlist .vbg img {
        height: 650px;
    }

    #visual .vlist .vtxt {
        padding-top: 120px;
    }

    #visual .vlist .vtxt ul li h1 {
        padding-top: 32px;
        font-size: 56px;
        line-height: 72px;
    }

    #visual .vcon {
        bottom: 30%;
    }

    .notice {
        background: none;
    }

    .notice .area > div {
        float: none;
        width: 100% !important;
    }

    .notice .notit {
        padding-top: 65px;
        text-align: center;
        color: #333;
    }

    .notice .notit ul li h5 {
        color: #3fa8cb;
    }

    .notice .notit ul li h1 {
        padding: 10px 0 45px;
        font-size: 40px;
    }

    .notice .notit ul li p, .notice .notit ul li a {
        display: none;
    }

    .notice .nocon {
        padding: 0;
    }

    .notice .nocon .notab {
        padding: 0 0 40px;
        text-align: center;
    }

    .notice .nocon .notab button {
        margin: 0 20px;
    }

    .notice .nocon .tab-content .noline {
        padding: 0 10px;
    }

    .notice .nocon .tab-content .nobox {
        flex: 0 1 32%;
        margin-bottom: 30px;
        padding: 30px;
        border: 1px solid #eee;
    }

    .notice .nocon .noplus {
        display: block;
    }

    .major {
        padding: 0 0 150px;
    }

    .major .mjwrap > h1 {
        font-size: 40px;
    }

    .major .slick-prev {
        left: 8%;
    }

    .major .slick-next {
        right: 8%;
    }

    .major .mjwrap .mjimg .mibox {
        margin: 0 50px;
    }

    .major .mjwrap .mjimg .mibox .mibtxt h3 {
        padding-bottom: 15px;
        font-size: 30px;
    }

    .gallery {
        height: auto;
        padding-bottom: 75px;
    }

    .gallery .gatit h1 {
        padding: 60px 0 40px;
        font-size: 40px;
    }

    .gallery .gatit p {
        display: none;
    }

    .gallery .gacon .slick-arrow {
        top: 50%;
        transform: translateY(-50%);
    }

    .gallery .gacon .slick-active {
        margin-top: 0 !important;
    }

    .gallery .gacon .slick-prev {
        left: 10px;
    }

    .gallery .gacon .slick-next {
        right: 40px;
    }

    .merit .metitle {
        top: 60px;
    }

    .merit .metitle h1 {
        font-size: 42px;
    }

    .merit .metitle p {
        padding-top: 4px;
        font-size: 18px;
    }

    .merit .mecon .slick-arrow {
        top: 12%;
    }

    .merit .mecon .slick-prev {
        left: 20px;
    }

    .merit .mecon .slick-next {
        right: 20px;
    }

    .merit .mecon .melist {
        height: 700px;
    }

    .merit .mecon .melist .area {
        padding-top: 170px;
    }

    .merit .mecon .melist h3 {
        padding-bottom: 20px;
    }

    .merit .mecon .melist h3 span {
        height: 54px;
        line-height: 56px;
        padding: 0 40px;
        font-size: 22px;
    }

    .merit .mecon .mebot {
        padding: 40px 0 60px;
    }

    .merit .mecon .mebot ul li p {
        font-size: 14px;
        line-height: 20px;
    }

    .merit .mecon .melist1 .mebox1 {
        padding: 30px 20px;
    }

    .merit .mecon .melist1 .mebox1 h5 span {
        margin-bottom: 12px;
        padding-bottom: 12px;
        font-size: 24px;
    }

    .merit .mecon .melist1 .mebox1 h5 span:before {
        left: -12px;
        width: 6px;
        height: 6px;
    }

    .merit .mecon .melist1 .mebox1 p {
        font-size: 14px;
        line-height: 20px;
    }

    .merit .mecon .melist2 .mebox2 {
        padding: 30px 20px;
    }

    .merit .mecon .melist2 .mebox2 img {
        height: 50px;
        margin: 0 auto 20px;
    }

    .merit .mecon .melist2 .mebox2 p {
        font-size: 14px;
        line-height: 20px;
    }

    .merit .mecon .melist3 .mebox3 .mb3txt {
        padding: 20px;
    }

    .merit .mecon .melist3 .mebox3 .mb3txt h5 {
        font-size: 22px;
    }

    .merit .mecon .melist3 .mebox3 .mb3txt ul li + li {
        margin-top: 6px;
    }

    .merit .mecon .melist3 .mebox3 .mb3txt ul li p {
        font-size: 14px;
        line-height: 18px;
    }

    .ftop .area {
        display: block;
    }

    .ftop .ftleft {
        margin-bottom: 18px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .ftop .ftleft ul {
        justify-content: center;
    }

    .ftop .ftright > ul {
        justify-content: center;
    }

}
@media (max-width: 1024px) {
    .tbr {
        display: inline;
    }
}



@media (max-width: 991px) {


    #visual .vslide .vlist {
        height: 550px;
    }

    #visual .vslide .vlist .vbg {
        height: 550px;
    }

    #visual .vslide .vlist .vbg img {
        height: 550px;
    }

    #visual .vlist .vtxt ul li h5 {
        font-size: 20px;
    }

    #visual .vlist .vtxt ul li h1 {
        padding-top: 32px;
        font-size: 42px;
        line-height: 60px;
    }

    #visual .vlist .vtxt ul li p {
        padding-top: 90px;
    }

    #visual .vcon {
        bottom: 27%;
    }

    .notice .nocon .tab-content .nobox {
        flex: 0 1 49%;
        margin-bottom: 20px;
    }

    .major .mjvg video {
        width: auto;
        height: 100%;
    }

    .major .mjwrap {
        padding: 0 20px;
    }

    .major .slick-prev {
        left: 10px;
    }

    .major .slick-next {
        right: 10px;
    }

    .major .mjwrap .mjimg .mibox {
        margin: 0;
    }

    .major .mjwrap .mjimg .mibox .mibtxt {
        max-width: 100%;
        margin: 0;
        padding: 40px 20px;
    }

    .mabufi .mbfbox {
        flex: 0 1 20%;
        padding: 20px 10px;
    }

    .mabufi .mbfbox img {
        height: 40px;
    }

    .mabufi .mbfbox h5 {
        padding-top: 10px;
        font-size: 16px;
        line-height: 18px;
    }

    .merit .mecon .melist {
        height: 880px;
    }

    .merit .mecon .melist:before {
        background-size: cover;
    }

    .merit .mecon .mebot {
        padding: 20px 0 60px;
    }

    .merit .mecon .mebot ul li {
        flex: 0 1 33.33%;
    }

    .merit .mecon .melist1 .metop {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1%;
    }

    .merit .mecon .melist1 .mebox1 {
        flex: 0 1 32.666%;
        margin-bottom: 10px;
    }

    .merit .mecon .melist2 .metop {
        flex-wrap: wrap;
        gap: 1%;
    }

    .merit .mecon .melist2 .mebox2 {
        flex: 0 1 32.666%;
        margin-bottom: 10px;
    }

    .merit .mecon .melist3 .mebox3 {
        display: block;
    }

    .merit .mecon .melist3 .mebox3 .mb3img img {
        margin: 0 auto;
    }

    .ftop .ftleft ul {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ftop .ftleft ul li {
        flex: 0 1 33%;
        margin: 0 0 5px;
        padding: 10px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .2);
    }

    .ftop .ftleft ul li:after {
        display: none;
    }

    .ftop .ftright .select_footer .select_f_btn {
        border-color: rgba(255, 255, 255, .2);
    }

    .fbot .area {
        display: block;
        text-align: center;
    }

    .fbot .fbtxt p {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    /* SGU banner 스타일 */
    /* mobile line break on */
    .mbr {
        display: inline;
    }

    .banner-title {
        font-size: 1.8em;
        margin: 0;
    }

    .banner-subtitle {
        font-size: 1.2em;
        margin: 10px 0 0;
    }

    .banner-subtitle a {
        font-size: 0.8em;
        margin: 10px 0 0;
        color: wheat;
        font-style: oblique;
    }

    .banner-links {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 1.3em;
        line-height: 1.5em;
    }


    #visual .vslide .vlist {
        height: 600px;
    }

    #visual .vslide .vlist.vbg_sgu img {
        overflow: hidden;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    /* Quicklinks 모바일 스타일 */
    #quicklinks {
        padding: 0;
        margin-top: -200px;
    }

    .quicklink-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        position: relative;
        height: auto;
    }

    .quicklink {
        border: 1px solid #bbbbbb;
        font-size: 0.9em;
        box-sizing: border-box;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .quicklink:nth-child(1) {
        border-right: 0;
        border-bottom: 0;
    }

    .quicklink:nth-child(2) {
        border-left: 0;
        border-bottom: 0;
    }

    .quicklink:nth-child(3) {
        border-top: 0;
        border-right: 0;
    }

    .quicklink:nth-child(4) {
        border-top: 0;
        border-left: 0;
    }

    .quicklink-container:before, .quicklink-container:after {
        content: '';
        position: absolute;
        background-color: #bbbbbb;
    }

    .quicklink-container:before {
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        transform: translateY(-50%);
    }

    .quicklink-container:after {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        transform: translateX(-50%);
    }


    /* Honors Club 모바일 스타일 */
    #sgu-honors-club {
        height: auto;
        padding: 20px 0;
    }

    .honors-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .honors-left, .honors-right {
        flex: none;
        width: 100%;
        border-left: none;
        padding: 0;
    }

    .honors-right {
        margin-top: 20px;
    }

    /* banner 모바일 스타일 */
    #sgu-banner {
        height: auto;
        padding: 20px 0;
    }

    .banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner-left, .honors-right {
        flex: none;
        width: 100%;
        border-left: none;
        padding: 0;
    }

    .banner-right {
        margin-top: 20px;
    }

    /* Quick Access 모바일 스타일 */

    .quick-access-container {
        flex-direction: column;
        align-items: center;
    }

    .quick-access-left {
        margin-bottom: 20px;
        flex: 0 0 0px;
    }

    .quick-access-links {
        flex-direction: column;
        align-items: center;
        margin-top: 25px;
        gap: 30px 0;
    }

    .quick-access-links div {
        flex: none;
        width: 100%;
        text-align: left;
        font-weight: 400;
    }

    .quick-access-links div a {
        font-weight: 400;
    }

    /* Banner Zone 모바일 스타일 */
    #banner-zone {
        margin: 50px 0;
    }

    .banner-container {
        flex-direction: column;
        align-items: center;
    }

    .banner {
        width: 100%;
        margin: 10px 0;
    }

    .section-title .line_left {
        flex: 1;
        height: 3px;
        background-color: #000;
        margin: 0 15px 0 25px;
    }

    .section-title .line_right {
        flex: 1;
        height: 3px;
        background-color: #000;
        margin: 0 25px 0 15px;
    }

    .press-card-container,
    .notice-card-container {
        grid-template-columns: 1fr;
    }

    .press-card:nth-child(n+5),
    .notice-card:nth-child(n+5) {
        display: none;
    }
    /* Press 모바일 */
    #press-section .thumbnail-container {
        flex-direction: column;
        align-items: center;
    }

    #press-section .thumbnail {
        width: 100%;
        margin-bottom: 20px;
    }

    #press-section .thumbnail:nth-child(n+5) {
        display: none;
    }

    #press-section .thumbnail-img {
        width: 100%;
        height: auto;
    }

}

@media (max-width: 640px) {
    #visual .vslide .vlist {
        height: 550px;
    }

    #visual .vslide .vlist .vbg {
        height: 450px;
    }

    #visual .vslide .vlist .vbg img {
        height: 450px;
    }

    #visual .vlist .vtxt {
        padding-top: 90px;
    }

    #visual .vlist .vtxt ul li h5 {
        font-size: 18px;
    }

    #visual .vlist .vtxt ul li h1 {
        padding-top: 32px;
        font-size: 36px;
        line-height: 48px;
    }

    #visual .vlist .vtxt ul li p {
        padding-top: 80px;
    }

    #visual .vlist .vtxt ul li p {
        padding-top: 80px;
    }

    #visual .vlist .vtxt ul li p span {
        width: 180px;
    }

    #visual .vlist .vtxt ul li p a {
        width: 60px;
        height: 60px;
    }

    #visual .vcon {
        bottom: 26%;
    }

    .notice .notit ul li h5 {
        display: none;
    }

    .notice .notit ul li h1 {
        padding: 0 0 30px;
        font-size: 28px;
    }

    .notice .nocon {
        padding: 0;
    }

    .notice .nocon .notab {
        padding: 0 0 20px;
    }

    .notice .nocon .notab button {
        margin: 0 10px;
    }

    .notice .nocon .notab button span {
        font-size: 16px;
    }

    .notice .nocon .notab button span i {
        margin-right: 2px;
        font-size: 18px;
    }

    .notice .nocon .tab-content .noline {
        margin: 0;
    }

    .notice .nocon .tab-content .nobox {
        flex: 0 1 100%;
        margin-bottom: 10px;
        padding: 25px 20px;
    }

    .notice .nocon .tab-content .nobox:nth-of-type(4), .notice .nocon .tab-content .nobox:nth-of-type(5), .notice .nocon .tab-content .nobox:nth-of-type(6) {
        display: none;
    }

    .notice .nocon .tab-content .nobox ul li h5 {
        padding-bottom: 2px;
        font-size: 16px;
    }

    .notice .nocon .tab-content .nobox ul li p {
        font-size: 14px;
        line-height: 20px;
    }

    .notice .nocon .noplus a {
        width: 180px;
        height: 50px;
        line-height: 50px;
    }

    .major {
        padding: 0 0 110px;
    }

    .major .mjvg {
        height: 480px;
    }

    .major .mjwrap > h1 {
        padding: 60px 0 30px;
        font-size: 28px;
    }

    .major .mjwrap .mjtab {
        padding-bottom: 20px;
    }

    .major .mjwrap .mjtab ul li {
        padding: 0 8px;
    }

    .major .mjwrap .mjtab ul li:nth-of-type(1) {
        padding: 0 8px 0 0;
    }

    .major .mjwrap .mjtab ul li:nth-last-of-type(1) {
        padding: 0 0 0 8px;
    }

    .major .mjwrap .mjtab ul li:before {
        top: 6px;
        height: 15px;
    }

    .major .mjwrap .mjtab ul li p {
        font-size: 16px;
    }

    .major .mjwrap .mjtab ul li.slick-current p:before {
        top: 4px;
        left: -7px;
        width: 5px;
        height: 5px;
    }

    .major .slick-arrow {
        width: 50px;
        height: 50px;
        background-size: 12px 18px;
    }

    .major .mjwrap .mjimg .mibox .mibtxt {
        padding: 20px 20px 30px;
    }

    .major .mjwrap .mjimg .mibox .mibtxt h3 {
        padding-bottom: 10px;
        font-size: 22px;
    }

    .major .mjwrap .mjimg .mibox .mibtxt p a {
        height: 36px;
        line-height: 34px;
        margin: 2px 0;
        padding: 0 16px;
        font-size: 14px;
    }

    .major .mjwrap .mjimg .mibox .mibtxt p a i {
        margin-left: 2px;
    }

    .gallery .gatit h1 {
        padding: 60px 0 30px;
        font-size: 28px;
    }

    .gallery .gacon .slick-arrow {
        width: 50px;
        height: 50px;
        background-size: 12px 18px;
    }

    .gallery .gacon .slick-next {
        right: 10px;
    }

    .gallery .gacon .gabox {
        margin-right: 0;
    }

    .mabufi {
        padding: 50px 0;
    }

    .mabufi .mbfbox {
        flex: 0 1 33.33%;
    }

    .mabufi .mbfbox img {
        height: 35px;
    }

    .mabufi .mbfbox h5 {
        padding-top: 6px;
        font-size: 14px;
        line-height: 18px;
    }

    .merit .metitle h1 {
        font-size: 30px;
    }

    .merit .metitle p {
        padding-top: 0;
        font-size: 16px;
    }

    .merit .mecon .slick-arrow {
        top: 9%;
        width: 50px;
        height: 50px;
        background-size: 12px 18px;
    }

    .merit .mecon .melist {
        height: 1000px;
    }

    .merit .mecon .melist .area {
        padding-top: 150px;
    }

    .merit .mecon .melist h3 span {
        height: 44px;
        line-height: 46px;
        padding: 0 25px;
        font-size: 18px;
    }

    .merit .mecon .mebot ul {
        display: block;
    }

    .merit .mecon .mebot ul li {
        margin-bottom: 5px;
    }

    .merit .mecon .mebot ul li p {
        padding: 0 0 0 10px;
    }

    .merit .mecon .mebot ul li p:before {
        top: 8px;
        width: 4px;
        height: 4px;
    }

    .merit .mecon .melist1 .mebox1 {
        flex: 0 1 100%;
        margin-bottom: 5px;
        padding: 20px;
    }

    .merit .mecon .melist1 .mebox1 h5 span {
        margin-bottom: 0;
        padding-bottom: 6px;
        font-size: 18px;
    }

    .merit .mecon .melist1 .mebox1 h5 span:after {
        display: none;
    }

    .merit .mecon .melist2 .mebox2 {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 1 100%;
        margin-bottom: 5px;
        padding: 20px;
    }

    .merit .mecon .melist2 .mebox2 img {
        height: 40px;
        margin: 0 20px 0 0;
    }

    .merit .mecon .melist3 .metop {
        display: block;
    }

    .merit .mecon .melist3 .mebox3 {
        max-height: 160px;
        margin-bottom: 5px;
    }

    .merit .mecon .melist3 .mebox3 .mb3img {
        flex: 0 1 30%;
    }

    .merit .mecon .melist3 .mebox3 .mb3txt {
        flex: 0 1 70%;
    }

    .merit .mecon .melist3 .mebox3 .mb3txt h5 {
        padding-bottom: 8px;
        font-size: 18px;
    }

    .ftop a {
        font-size: 14px;
    }

    .ftop .ftleft {
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

    .ftop .ftleft ul li {
        flex: 0 1 49%;
    }

    .ftop .ftright > ul {
        justify-content: space-between;
    }

    .ftop .ftright .select_footer {
        flex: 0 1 49%;
        margin-left: 0;
    }

    .ftop .ftright .select_footer .select_f_btn span {
        font-size: 14px;
    }

    .fbot .fbtxt p {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    #visual .vslide .vlist {
        height: 500px;
    }

    #visual .vslide .vlist .vbg {
        height: 400px;
    }

    #visual .vslide .vlist .vbg img {
        height: 400px;
    }

    #visual .vlist .vtxt {
        padding-top: 70px;
    }

    #visual .vlist .vtxt ul li h5 {
        font-size: 16px;
    }

    #visual .vlist .vtxt ul li h1 {
        padding-top: 32px;
        font-size: 28px;
        line-height: 40px;
    }

    #visual .vlist .vtxt ul li p {
        padding-top: 60px;
    }

    #visual .vlist .vtxt ul li p span {
        width: 180px;
    }

    #visual .vlist .vtxt ul li p a {
        width: 50px;
        height: 50px;
    }

    #visual .vlist .vtxt ul li p a:before {
        width: 19px;
    }

    #visual .vlist .vtxt ul li p a:after {
        height: 19px;
    }

    #visual .vcon {
        bottom: 27%;
    }

    #visual .vcon .mv_control .mv_paging {
        padding: 0 16px;
    }

    #visual .vcon .mv_control .mv_paging > span {
        padding: 0 10px;
        font-size: 14px;
    }

    #visual .vcon .mv_control .mv_arrow button.slick-arrow img {
        height: 12px;
    }

    .major .mjvg {
        height: 400px;
    }

    .merit .mecon .melist {
        height: 1050px;
    }
}