/* 헤더 */
.wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    margin-top: 90px;
    /* padding-top: 40px; */
    min-height: calc(100vh - 365px);
    min-height: calc(100vh - 275px);
    box-sizing: border-box;
}

#header {
    width: 100%;
    height: 90px;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 10000;
}

#header.show {
    transition: transform 0.16s ease;
    transform: translateY(0);
}

#header.hide {
    transition: transform 0.14s ease;
    transform: translateY(-100%);
}

#header>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    height: 90px;
    margin: auto;
    text-align: center;
}

#header .container::after {
    display: none;
}

#logo {
    position: relative;
    z-index: 1;
}

#logo a {
    display: flex;
}

#logo img {
    width: 180px;
    height: auto;
}

.gnb-bg {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    height: 260px;
    background: var(--background-color);
    filter: opacity(95%);
}

.gnb-bg .container{
    width: 1200px;
    margin: auto;
    text-align: left;
}

.gnb-bg .txt {
    width: 100%;
    height: 100%;
    margin-top: 30px;
    opacity: 0.8;
}

#gnb {
    height: 100%;
    margin-left: auto;
}

.gnb_depth1 {
    display: flex;
    height: 100%;
    align-items: center;
}

.gnb_depth1>li {
    height: 100%;
    position: relative;
    padding: 0 40px;
}

.gnb_depth1>li:last-child{
    padding-right: 0px;
}

.gnb_depth1>li:last-child .depth1::before{
    content: none;
}

.depth1 {
    font-weight: 600;
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
}

.depth1  span{
    font-size: var(--f-normal);
}

.gnb_depth1>li .depth1::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 0.8rem);
    height: 0;
    transition: height 0.1s linear;
    background: var(--primary-color);
}

.gnb_depth1>li.on .depth1::before {
    height: 5px;
}

.gnb_depth2 {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    padding: 30px 0;
}

.gnb_depth2>li:not(:first-child) {
    margin-top: 30px;
}

.gnb_depth2 a {
    display: block;
    line-height: 1.4;
    text-align: center;
}

.gnb_depth2 a span {
    font-size: var(--f-normal);
    color: var(--font-color);
    font-weight: 500;
}

.gnb_depth2 a:hover span {
    font-weight: 600;
    background: var(--primary-color);
    color: transparent;
    -webkit-background-clip: text;
}

#line-wrapper {
    cursor: pointer;
    width: 100%;
}

.line {
    background: var(--primary-color);
    margin-top: 6px;
    margin-bottom: 6px;
    width: 34px;
    height: 3px;
    border-radius: 2px;
}

.main-active span,.main-active a{
    color: #00886a !important;
}

/* 모바일헤더 */
.modal-content.sitemap-modal {
    margin: 0;
    width: 100vw;
    height: auto;
    background: var(--background-color);
    backdrop-filter: blur(6px);
    top: 0;
}

.modal-content.sitemap-modal .modal-header {
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: none;
    font-size: var(--f-normal);
    padding: 20px;
}

.modal-content.sitemap-modal .modal-inner {
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
}

.header-ham {
    width: 40px;
    height: 40px;
    font-size: 0;
    color: transparent;
    background: url(../images/icon/ic_ham.png) no-repeat center center / 28px var(--background-color);
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    margin-left: 24px;
    display: none;
}

.modal-content.sitemap-modal .close{
    background: url(/assets/images/icon/ic_x.png) no-repeat center center / 24px var(--background-color);
    right: 15px;
    top: 18px;
}

.site-menu ul li.sitemap-subtit {
    color: var(--primary-color);
    font-size: var(--f-normal);
    cursor: pointer;
    width: auto;
    display: inline-block;
    margin-right: auto;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 20px;
}

.site-menu{
    width: 100%;
}

.site-menu ul{
    width: 100%;
}

.site-menu ul li {
    margin-bottom: 20px;
    font-size: var(--f-small);
    font-weight: 500;
}

.dashed-line{
    border: 1px dashed var(--border-color);
    width: 100%;
    margin-bottom: 30px;
    margin-top: 10px;
}

.mode-mobile{
    display: none;
}

.mode-mobile{
    display: block;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    position: relative;
    padding: 36px 0 ;
    background-color: var(--background-color);
}

.footer .inner {
    width: 1200px;
    margin: auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer__branding {
    flex-shrink: 0;
    width: 180px;
    font-size: 0;
    line-height: 1;
}

.footer__branding img{
    width: 90%;
}

.footer__menu {
    display: flex;
}

.footer__menu-item:not(:last-child) {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}

.footer__menu-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 10px;
    background-color: var(--border-color);
    transform: translateY(-50%);
}

.footer__menu-link {
    color: var(--gray1-color);
    transition: color .3s;
    cursor: pointer;
}

.footer__menu-link:hover{
    color: var(--black-color);
}



.footer__menu-link a {
    color: var(--gray1-color);
    background: url(../images/icon/ic_my.png)no-repeat center left 10px / 20px;
    /* padding: 10px 16px 10px 36px; */
    padding-left: 36px;
    transition: .2s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.footer__menu-link a img{
    height: 20px;
}

.footer__menu-link a:hover{
    /* border-color: var(--primary-color); */
    /* background: url(../images/icon/ic_my_w.png)no-repeat center left 10px / 20px; */
    /* color: #FFF; */
    color: var(--primary-color);
}

.footer__menu li:last-child:hover{
    color: var(--gray1-color);
    cursor: initial;
}

.footer__cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #cccccc80;
    width: 100%;
}

.footer__addr-list {
    overflow: hidden;
}

.footer__addr-item {
    display: flex;
    position: relative;
    float: left;
    padding: 3px 0;
    color: var(--gray1-color);
    line-height: 1.5;
}

.footer__addr-item.clear {
    clear: both;
}

.footer__addr-title {
    display: inline-block;
    flex-shrink: 0;
    margin-right: 5px;
    font-weight: 700;
    color: var(--gray1-color);
    line-height: 1.5;
}

.footer__copyright {
    margin-top:20px;
    color: var(--gray1-color);
    font-size: var(--f-caption);
}

.footer__family {
    position: relative;
}

.footer__family-btn {
    width: 200px;
    height: 55px;
    font-weight: 500;
    color: var(--gray1-color);
    background-color: none;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.footer__family-btn:hover{
    opacity: 0.8;
    transition: var(--transition);
}

.footer__family.active .footer__family-btn {
    color: var(--font-color);
    border-color: var(--border-color);
    border: 1px solid var(--border-color);
}

.footer__family.active .footer__family-btn .footer__family-icon {
    transform: rotate(180deg);
}

.footer__family-icon {
    transition: transform 0.3s;
}

.footer__family-list {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    border: 1px solid var(--white-color);
    background-color: var(--primary-color);
    transform: translateY(1px);
}

.footer__family-list a:hover{
    opacity: 0.6;
    transition: var(--transition);
}

.footer__family-link {
    display: block;
    padding: 7px 0;
    color: var(--white-color);
    transition: color .3s;
}

.footer__family-btn{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* 로그인 */
body:has(.login-wrapper) .wrapper{
    position: relative;
    background: url(/assets/images/icon/opacity2.png) right 37% top 1% no-repeat;
    background-size: 150px;
}

.login-wrapper{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.login-wrapper h1{
    width: 420px;
    margin: auto;
    margin-bottom: 30px; 
    font-size: var(--f-large);
    text-align: center;
}

.login-wrapper .panel{
    width: 420px;
    padding: 35px 40px;
    margin: 0 auto;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.login-wrapper .form-group label{
    font-weight: 500;
}

.login-wrapper .form-group input.form-control{
    margin: 10px 0;
    width: 100%;
}

.loginbox button{
    width: 100%;
}

.autologin-wp label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 400 !important;
    margin-bottom: 20px;
}

.autologin-wp [type='checkbox'] {
    width: 16px;
    height: 16px;
    margin: 0;
    margin-right: 10px;
}

.panel-footer .pull-right{
    text-align: center;
    margin-top: 30px;
    border-top: 1px dashed var(--border-color);
    padding-top: 30px;
}

.panel-footer .pull-right a{
    font-size: 14px;
    font-weight: 400;
}

.panel-footer .pull-right a:hover{
    transition: var(--transition);
    color: var(--primary-color);
}

/* modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #FFF;
    margin: 50px auto;
    border: 1px solid var(--border-color);
    width: 480px;
    height: calc(100vh - 150px);
    position: relative;
    overflow: hidden;
}

.close {
    display: block;
    width: 48px;
    height: 48px;
    background: url('/assets/images/icon/ic_x.png') no-repeat center center / 24px #FFF;
    position: absolute;
    right: 5px;
    top: 6px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    font-size: var(--f-normal);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    border-radius: 4px;
}

.modal-footer{
    font-size: var(--f-normal);
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.modal-footer button{
    padding:  0 10px;
    border-radius: 4px;
    font-size: var(--f-small);
    height: 40px;
}

.modal-inner {
    width: 100%;
    height: calc(100% - 61px);
    overflow-y: auto;
    padding: 20px;
}

.modal-inner::-webkit-scrollbar {
    width: 10px;
}

.modal-inner::-webkit-scrollbar-thumb {
    background-color: var(--gray1-color);
}

.modal-inner::-webkit-scrollbar-track {
    background-color: var(--border-color);
}


.modalH {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

/* 페이지네이션 */
.pagination{
    width: 100%;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.pagination li{
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid transparent;
    box-sizing: border-box;
    border-radius: 2px;
}

.pagination li:first-child{
    background-color: var(--white-color);
}

.pagination li:last-child{
    background-color: var(--white-color);
}

.pagination li:hover{
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pagination li.active{
    background-color: var(--primary-color);
}

.pagination li.active a{
    color: var(--white-color);
}

/*.pagination li:first-child a{
    color: transparent;
    background: url(/assets/images/icon/ic_arleft.png) no-repeat center center / 24px ;
}

.pagination li:last-child a{
    color: transparent;
    background: url(/assets/images/icon/ic_arright.png) no-repeat center center / 24px;
}

.pagination li.active:first-child,.pagination li.active:last-child{
    background-color: var(--white-color) !important;
}
*/

.pagination li:last-child a{
    color: transparent;
    background: url(/assets/images/icon/ic_arright.png) no-repeat center center / 24px;
}

/* 슬라이드 */
.home-slidewr {
    width: 100vw;
    height: 65vh;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--black-color);
    cursor: grab;
}

.home-slidewr .swiper-slide{
    cursor: grab;
}

.home-slidewr .swiper-slide img{
    width: 100vw;
}

.topTxt {
    position: absolute;
    left: calc(50% - 315px);
    transform: translate(-50%,-50%);
    z-index: 2;
    top: calc(50% - 130px);
}

.topTxt .stit-gy {
    display: block;
    font-size: var(--f-big);
    font-family: 'SCoreDream';
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.4;
    margin-bottom: 20px;
}

.topTxt .tit-wt {
    color: var(--white-color);
    font-size: var(--f-middle);
    font-weight: 400;
    line-height: 1.6;
}

.home-slidewr .control .swiper-pagination{
    background: var(--swiper-scrollbar-bg-color,rgba(255, 255, 255, 0.3));
    display: block;
    margin: 0 30px;
    width: 500px;
}

.control{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px; 
    z-index: 999;
}

.swiper-button-next,.swiper-button-prev{
    display: none;
}

.swiper-pagination{
    display: flex;
    align-items: center;
    position: relative;
}

.page-wrbox .page-number{
    color: var(--white-color);
    font-size: var(--f-small);
}

.page-wrbox{
    display: flex;
    display: flex;
    align-items: center;
}

.home-slidewr .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: var(--white-color);
}


.link-wrap {
    background-color: #1f2e2ab0;
    padding: 45px 0;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0px;
    z-index: 10;
}

.mBoxWp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-btween;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1200px;
}

.link-wrap ul {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.link-wrap li {
    position: relative;
    display: table-cell;
}

.link-wrap .item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    font-size: 1.25rem;
    text-align: center;
}

.link-wrap li:first-child .item{
    padding-left: 0px;
}

.link-wrap li:last-child .item{
    padding-right: 0px;
}

.link-wrap li:after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 75px;
    background-color: #ffffff1f;
    content: "";
}

.link-wrap li:last-child:after{
    display: none;
}

.link-wrap .ico {
    width: 60px;
}

.link-wrap .ico img{
    width: 100%;
}

.link-wrap .caption .subscript {
    display: block;
    font-size: var(--f-small);
    color: #ffffffad;
    word-break: keep-all;
    margin-top: 5px;
    text-align: left;
    line-height: 1.4;
    font-weight: 400;
}

.link-wrap .caption span.caption-title{
    color: var(--white-color);
    font-size: var(--f-middle);
    font-weight: 700;
    text-align: left;
}

.caption{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.link-wrap .caption:hover .caption-title{
    transition: var(--transition);
    color: var(--secondary-color);
}

/* 메인 */
#notice_wrap {
    padding: 80px 0;
}

#notice_wrap .in {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
}

#notice_wrap .in .notice_cont.action {
    top: 0;
    opacity: 1;
    transition: all 0.5s linear;
    width: calc(100% - 450px);
    margin-right: 50px;
}

.notice_cont .notice_tit_area {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--font-color);
    font-size: 0;
}

.notice_cont .notice_tit_area li {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.notice_cont .notice_tit_area li a {
    display: block;
    width: 150px;
    height: 60px;
    line-height: 60px;
    font-size: var(--f-middle);
    color: var(--gray1-color);
    text-align: center;
    box-sizing: border-box;
    font-weight: 500;
    transition: var(--transition);
}

.notice_cont .notice_tit_area li a.hover {
    height: 60px;
    line-height: 60px;
    font-size: var(--f-middle);
    color: var(--white-color);
    background: var(--primary-color);
    box-sizing: border-box;
    border-radius: 6px 6px 0 0;
}

.notice_cont .notice {
    border-top: 1px solid var(--border-color);
}

.notice_cont .notice dl a {
    font-size: 0;
    display: block;
    padding: 25px 20px;
    border-bottom: 1px solid var(--border-color);
}

.notice_cont .notice dl a:hover{
    background-color: var(--background-color);
    transition: var(--transition);
}


.notice_cont .notice dl:first-child dt {
    display: inline-block;
}

.notice_cont .notice dl dt {
    display: none;
    width: 85px;
    height: 85px;
    vertical-align: middle;
    border-radius: 100%;
    border: 2px dashed var(--primary-color);
    font-size: 14px;
    text-align: center;
    color: var(--gray1-color);
    line-height: 1;
    padding: 18px 0;
    box-sizing: border-box;
    background-color: var(--white-color);
}

.notice_cont .notice dl dt b {
    font-size: 24px;
    display: block;
    color: var(--primary-color);
    line-height: 1;
    margin: 0 0 5px;
}

.notice_cont .notice dl:first-child dd {
    padding-left: 25px;
}

.notice_cont .notice dl dd {
    display: inline-block;
    width: calc(100% - 110px);
    vertical-align: middle;
    padding-left: 0;
    box-sizing: border-box;
}

.notice_cont .notice dl:first-child dd h4 {
    font-size: var(--f-middle);
    font-weight: 600;
}

.notice_cont .notice dl dd h4 {
    font-size: var(--f-small);
    font-weight: 500;
    color: var(--font-color);
    letter-spacing: -0.5pt;
    line-height: 1.4;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
    transition: all var(--transition);
}

.notice_cont .notice dl:first-child dd .stxt {
    display: -webkit-box;
}

.notice_cont .notice dl dd .stxt {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
    /* height: 38px; */
    display: none;
    margin: 10px 0 0;
}

.notice_cont .notice dl dd.notice-date{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.notice_cont .notice dl dd.notice-date .sdate{
    font-size: 14px;
    color: var(--gray1-color);
}

.notice_tit_area .more{
    position: absolute;
    right: 0px;
    top: 15px;
}

.notice_tit_area .more img{
    width: 24px;
    height: 24px;
}

.notice_cont .notice_tit_area li a:hover {
    height: 60px;
    line-height: 60px;
    font-size: var(--f-middle);
    color: var(--font-color);
    background: var(--background-color);
    box-sizing: border-box;
    border-radius: 6px 6px 0 0;
    transition: var(--transition);
}

.notice_cont .notice_tit_area li a.hover:hover{
    background-color: var(--primary-color);
    color: #fff;
}

#notice_wrap .in .rollBn_cont {
    position: relative;
    width: 400px;
}


.notice_tit_area .more > img{
    width: 28px;
    height: 28px;
}

.photo-gallerywr .photo-header{
    width: 100%;
    display: flex;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
}

.photo-gallerywr .photo-header h1{
    font-size: 22px;
}

.photo-gallerywr .photo-header img{
    width: 22px;
    height: 22px;
}

.photo-gallerywr .photo-header img:hover,.notice_tit_area .more img:hover{
    transform: rotate(90deg);
    cursor: pointer;
    transition: var(--transition);
}

.photo-slider{
    background-image: linear-gradient(120deg, #EBF5EB 0%, #E6F0F8 100%);
    border-top: 1px solid var(--font-color);
    margin: auto;
    padding: 20px 30px;
    text-align: center;
    /* height: 360px; */
    cursor: grab;
}

.photo-slider .swiper-slide{
    background-color: var(--white-color);
    height: 200px;
    overflow: hidden;
}

.photo-text{
    width: 100%;
    background-color: var(--white-color);
    text-align: left;
    padding: 15px 20px;
}

.photo-text h3{
    margin-bottom: 10px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
}

.photo-text p{
    text-align: right;
    color: var(--gray1-color);
}

.photo-slider .swiper-slide img{
    width: 100%;
}

.photo-control{
    margin-top: 15px;
}

.photo-control .swiper-pagination{
    margin: 10px;
}

.photo-control .swiper-pagination-progressbar {
    background: var(--border-color);
}

.photo-control .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background-color: var(--primary-color);
}

.photo-control .page-number{
    color: var(--gray1-color);
    font-size: var(--background-color);
}


.Abanner .bnZone {
    height: 100px;
}

.Abanner .bnZone .inner {
    position: relative;
    width: 1200px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.Abanner .bnZone .inner {
    position: relative;
    width: 1200px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.Abanner .bnZone .obj {
    height: 60px;
    margin: 10px 0;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    width: 1200px;
}

.Abanner .bnZone .obj li {
    text-align: center;
    float: left;
}

.Abanner .bnZone .obj li:hover{
    opacity: 0.7;
    transition: var(--transition);
}

.Abanner .bnZone .obj li a {
    display: block;
    margin: 0 5px;
    border: 1px solid var(--border-color);
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
}

.Abanner .bnZone .obj li img{
    width: 100%;
    height: auto;
}

.cooperate-slidewr{
    border: 1px solid var(--border-color);
    border-left-width: 0;
    border-right-width: 0;
    box-sizing: border-box;
    height: 80px;
    margin-top: 0px;
}

.cooperate-slidewr .swiper-slide a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px; */
    overflow: hidden;
}

.cooperate-slidewr .swiper-slide a img{
    max-width: 400px;    
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 재단소개 */
.sub-top-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

body:has(.sub-top-wrap) .wrapper{
    margin-top: 0px;
}

.sub-top-img01 {
    background: url(/assets/images/sub1.png)no-repeat center center;
    background-size: cover;
}

.sub-top-imgs {
    height: 300px;
    -webkit-animation: kenburns-bottom 1s ease-out both;
    animation: kenburns-bottom 1s ease-out both;
}

@keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
            transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.1) translateY(15px);
            transform: scale(1.1) translateY(15px);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

.sub-top-tit {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    font-size: 2.75rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.sub-top-tit::after {
    content: '';
    display: block;
    width: 60px;
    border-top: 2px solid var(--white-color);
    margin: 25px auto;
}

.subConBox {
    margin: 0 auto;
    max-width: 1200px;
}

.subConBox #sideMenu {
    width: 18%;
    margin-top: 50px;
    position: sticky;
    top: 30px;
    padding-bottom: 100px;
    height: 550px;
}

#sideMenu .left_title {
    margin-bottom: 10px;
    line-height: 100px;
    text-align: center;
    border-radius: 0 30px 0 0;
    background: #a0a0a0;
    overflow: hidden;
}

#sideMenu .left_title h2 {
    font-size: var(--f-middle);
    color: #fff;
    background: url(/assets/images/icon/opacity.png) right no-repeat;
    background-size: 150px;
}

#lnb li {
    position: relative;
    font-size: var(--f-small);
}

#lnb > ul > li {
    margin-bottom: 8px;
}

#lnb > ul > li > a {
    display: block;
    font-size: var(--f-small);
    padding: 15px 30px;
    text-decoration: none;
    background-color: var(--background-color);
    background-position: right 20px top 27px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    font-weight: 500;
    color:#555;
}

#lnb > ul > li > a:hover {
    text-decoration: none;
    color: var(--white-color) !important;
    font-weight: bold;
    background-color: var(--primary-color);
    background-image: url(/assets/images/icon/lnb_arrow.png);
    background-repeat: no-repeat;
    background-position-y: center;
}

#lnb li a {
    position: relative;
    display: block;
    word-break: keep-all;
}

.subConBox #content {
    position: relative;
    width: 78%;
    max-width: 1200px;
    margin-bottom: 120px;
    margin-top: 80px;
}

#content {
    letter-spacing: -0.5px;
}

.location {
    position: absolute;
    top: 0px;
    right: 0px;
}

.location ul li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    vertical-align: middle;
}

.location ul li a{
    color: var(--gray1-color);
}

.location ul li:last-child{
    margin-right: 0px;
    padding-right: 0px;
    font-weight: 500;
}

.location ul li:last-child a{
    color: var(--font-color);
}

.location ul li::before {
    position: absolute;
    top: 50%;
    right: -5px;
    margin-top: -3px;
    width: 6px;
    height: 9px;
    content: '';
    background: url(/assets/images/icon/ic_location_arrow.png) no-repeat;
}

.location ul li:last-child:before{
    display: none;
}

.location ul li.home a {
    display: block;
    width: 20px;
    height: 20px;
    text-indent: -999px;
    overflow: hidden;
    background: url(/assets/images/icon/ic_home.png) no-repeat center center;
}

#content h1.title {
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: var(--f-large);
    line-height: 1;
    border-bottom: 1px solid var(--border-color);
}

.sub-bg {
    background: #077960 url(/assets/images/sub_banner0.png) right 30px top /cover no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    padding: 50px;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 6px;
}

.sub-bg .txt p{
    color: var(--white-color);
    font-size: 26px;
    line-height: 1.6;
}

.intro-text{
    margin-top: 30px;
    margin-top: 60px;
    width: 60%;
    /* width: 100%; */
    /* text-align: center; */
}

/* .text-wrapper .intro-text h3{
    font-size: var(--f-large);
} */

.intro-text p{
    font-size: var(--f-small);
    line-height: 1.6;
}

.intro-text span{
    font-size: var(--f-small);
    font-weight: 600;
}

.text-wrapper h3{
    font-size: var(--f-middle);
    color: var(--primary-color);
}

p.right-text{
    text-align: right;
    font-size: var(--f-small);
    font-weight: 500;
}

.text-wrapper{
    position: relative;
}

.intro-imgbox {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-imgbox img{
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray2-color);
    margin-bottom: 15px;
    width: 120px;
}

.subConBox{
    display: flex;
    justify-content: space-between;
}

.sign-box{
    display: flex;
    align-items: center;
}

.sign-box p.sign-name{
    font-size: var(--f-large);
    margin-left: 15px;
    font-weight: 500;
}

/* 설립취지, 연혁 */
.sub-history {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
}

.sub-history .img {
    flex-shrink: 0;
    width: calc(50% - 100px);
    margin-right: 80px;
}

.sub-history .img .subject {
    font-size: var(--f-middle);
    font-weight: 600;
    margin-bottom: 40px;
}

.sub-history .txt {
    position: relative;
    border-left: 4px solid var(--gray2-color);
    width: 50%;
    padding-left: 70px;
    padding-top: 30px;
}

.sub-history .txt:before {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    content: '';
    left: -9px;
    bottom: 0;
}

.sub-history .txt .subject:first-child {
    margin-top: 0;
}

.sub-history .txt .subject {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'SCoreDream';
}

.sub-history .txt ul li {
    margin-bottom: 20px;
    font-size: var(--f-normal);
}

.li_dot3 li {
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

.li_dot3 li em {
    color: var(--gray1-color);
    display: block;
    font-weight: 500;
    font-size: var(--f-normal);
    font-style: initial;
    margin-bottom: 5px;
}

.li_dot3 li:after {
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border: 3px solid var(--primary-color);
    font-size: var(--f-small);
    content: '';
    display: inline-block;
}

.sub-history .txt:after {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    content: '';
    left: -9px;
    top: 0;
}

.history-textbox .history-box1 p span{
    font-size: var(--f-small);
    font-weight: 600;
}

.history-box2 img{
    width: 100%;
}

.sub-history .img img:nth-child(1){
    margin-bottom: 30px;
}

.sub-history .img img{
    width: 370px;
}

.sub-h1title{
    font-size: var(--f-middle);
    position: relative;
    padding-left: 15px;
    margin-bottom: 20px;
}

.sub-h1title::before{
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 50%;
    content: '';
    background: var(--primary-color);
}

.history-box1{
    margin-bottom: 50px;
}

.history-box1 p{
    font-size: var(--f-small);
    word-break: break-all;
    line-height: 1.6;
}

/* 장학회 정관 */
.association-textwr h1{
    margin-top: 30px;
}

.association-textwr p{
    font-size: var(--f-small);
}

.association-textwr h5{
    margin-bottom: 5px;
}

/* 찾아오시는 길 */
.map-box {
    margin: 30px 0 50px 0;
}

.map-box-inner {
    padding: 15px 0;
    border-bottom: 1px dotted var(--border-color);
    box-sizing: border-box;
}

.map-box-inner>li.map-box-tit {
    width: 10%;
    font-weight: 600;
    margin-right: 35px;
    font-size: var(--f-small);
}

.map-box-inner li {
    float: left;
    font-size: var(--f-small);
}

.map-box-inner li a{
    font-size: var(--f-small);
}

.clearfix:after {
    clear: both;
    display: block;
    content: '';
}

/* 활용실적 */
.sub-top-img01.perform {
    background: url(/assets/images/sub4.png)no-repeat center center;
}

span.utilperform-title{
    color: var(--primary-color);
    font-size: var(--f-caption);
    font-weight: 400;
    margin-left: 15px;
}

.business_list {
    width: 100%;
}

.business_list .business_item {
    padding: 40px 0 20px 0;
    border-bottom: 1px dotted var(--border-color);
    overflow: hidden;
}

.business_list .business_item .tit {
    float: left;
}

.business_item h4 {
    margin-bottom: 10px;
    font-size: var(--f-middle);
    font-weight: 700;
    color: var(--primary-color);
}

.business_list .business_item .con {
    float: right;
    width: calc( 100% - 220px);
}

.business_list .business_item .con ul {
    margin-bottom: 20px;
}

.business_list .business_item .con li {
    font-weight: 400;
    font-size: var(--f-small);
    line-height: 24px;
    padding-left: 18px;
    position: relative;
    word-break: keep-all;
}

.business_list .business_item .con li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 11px;
    left: 5px;
    background-color: var(--gray1-color);
}

.business_list p{
    color: var(--primary-color);
    margin-top: 30px;
    text-align: right;
}

/* 사이트맵 */
.sub-top-img01.site{
    background: url(/assets/images/sub5.png)no-repeat center center;
}

.sitemap-box .sitemap-box-inner {
    width: 48%;
    margin-bottom: 30px;
}

.sitemap-box, .sitemap-box2 {
    margin: 30px 0;
}

.top-menu {
    box-sizing: border-box;
    border: 1px solid var(--gray2-color);
}

.top-menu >li:first-child {
    font-size: var(--f-normal);
    color: var(--primary-color);
    padding-left: 18px;
    border-top: 2px solid var(--primary-color);
    background-color: var(--background-color);
    font-weight: 500;
}

.top-menu >li {
    padding: 15px;
    border-bottom: 1px dotted var(--border-color);
}

.top-menu >li:hover a{
    color: var(--primary-color);
    transition: var(--transition);
}

.tm li a {
    display: inline-block;
    width: 50%;
    font-size: var(--f-small);
}

.sitemap-box{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 장학사업 안내 */
.sub-top-img01.guide {
    background: url(/assets/images/sub2.png)no-repeat center center;
}

#body_content {
    clear: both;
    position: relative;
}

.bgbox1 {
    background: var(--background-color);
    padding: 10px;
}

.bgbox1 .wrap1 {
    position: relative;
    background: url(/assets/images/box1_patt.gif) repeat;
}

.bgbox1 .box-in {
    position: relative;
    z-index: 2;
    padding: 80px 70px;
}

.bgbox1 .h1 {
    margin: 0;
    text-align: center;
    font-size: 24px;
    letter-spacing: -.075em;
    line-height: 1;
    font-family: 'SCoreDream';
    font-weight: normal;
    font-weight: 500;
    padding-bottom: 20px;
    color: var(--primary-color);
}

.bgbox1 .t1 {
    font-size: var(--f-normal);
    font-family: 'SCoreDream';
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    text-align: left;
    margin-bottom: 40px;
    margin-top: 20px;
    line-height: 1.6;
    font-weight: 500;
    word-break: keep-all;
}

.bgbox1 p{
    font-size: var(--f-small);
    line-height: 1.6;
    word-break: keep-all;
}

.bgbox1 p span{
    font-size: var(--f-small);
    font-weight: 600;
}

.bgbox1 .wrap1:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 5px;
    content: "";
    display: block;
    background: var(--white-color);
}

.bgbox1 p.tac{
    text-align: right;
}

.bgbox1 p.tac strong{
    font-size: var(--f-normal);
    padding-left: 10px;
}

.con-subtit02{
    text-align: center;
    margin-bottom: 35px;
    margin-top: 60px;
}

.con-subtit02 p{
    font-size: var(--f-middle);
    font-weight: 500;
    font-family: 'SCoreDream';
    line-height: 1.6;
}

.con-subtit02 span{
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    font-family: 'SCoreDream';
}

.con-thumbnail .con-thumb {
    float: left;
    width: 50%;
    padding: 5px;
    box-sizing: border-box;
}

.con-thumbnail .con-thumb img {
    width: 100%;
    height: 100%;
}

.con-thumbnail:after {
    content: "";
    display: block;
    clear: both;
}

.con-box {
    padding: 5px;
    margin: 5px;
    box-sizing: border-box;
    background: url(/assets/images/box1_patt.gif);
    margin-top: 0px;
}

.con-box .con-box-inner {
    padding: 15px 20px;
    background: var(--white-color);
}

.sub-list li {
    position: relative;
    margin: 5px 0;
    padding-left: 12px;
    line-height: 1.6;
    box-sizing: border-box;
    font-weight: 600;
    font-size: var(--f-small);
}

.sub-list li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    top: 9px;
    left: 0;
    background-color: var(--gray1-color);
}

.sub-list-txt {
    margin-bottom: 20px;
    font-size: var(--f-small);
    line-height: 1.6;
    word-break: keep-all;
}

table.aTbl {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

table.aTbl th {
    padding: 20px;
    font-weight: 600;
    vertical-align: top;
    line-height: 1.6;
    background: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    font-size: var(--f-small);
    border-top: 2px solid var(--primary-color);
}

table.aTbl th:first-child{
    border-right: 1px solid var(--border-color);
}

.aTbl td.al {
    vertical-align: middle;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

table.aTbl td {
    padding: 20px;
    vertical-align: top;
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
}

.orange {
    color: var(--red-color);
}

/* 알림마당 */
.sub-top-img01.notice {
    background: url(/assets/images/sub3.png)no-repeat center center;
}

.notice-headerbox{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 20px 10px;
    background: var(--background-color);
}

.header-searchbox{
    display: flex;
}

.search-btn{
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.search-btn .hydrated{
    font-size: 24px;
    color: var(--white-color);
}

.notice-headerbox .form-group{
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-headerbox select,.notice-headerbox input{
    margin-right: 5px;
}

.selectric {
    border: 1px solid var(--border-color) !important;
    background: var(--white-color) !important;
    margin-right: 5px !important;
    height: 50px !important;
}

.selectric-items li.selected{
    background-color: var(--background-color) !important;
}

.selectric-items li{
    background-color: var(--white-color)!important;
}

.selectric .label{
    height: 50px !important;
    line-height: 50px !important;
}

.selectric .button{
    height: 50px !important; 
}

.selectric .button{
    background-color: var(--white-color) !important;
}

.notice-headerbox select{
    padding-right: 40px;
    background-color: var(--white-color);
    font-size: var(--f-caption);
}

.notice-headerbox select:focus{
    outline: 1px solid var(--primary-color);
}

.notice-headerbox input:focus{
    outline: 1px solid var(--primary-color);
}

select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(/assets/images/icon/ic_ardown.png) no-repeat right 10px center / 20px;
}

select::-ms-expand{ display: none; }

.notice-total{
    margin: 20px 0;
}

.notice-total span{
    font-weight: 600;
}

.notice-table{
    border-top: 2px solid var(--primary-color);
    width: 100%;
    box-sizing: border-box;
    border-collapse : collapse;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.notice-table td .label{
    display: none;
}

.notice-table th{
    background-color: var(--background-color);
    font-weight: 400;
    padding: 18px 20px;
    line-height: 24px;
}

.notice-table tr td{
    padding: 18px 0;
    line-height: 24px;
    display: table-cell !important;
}

.nopost{
    width: 100%;
    padding: 18px;
    text-align: center;
}

.notice-table tr{
    line-height: 60px;
    height: 60px;
    border-bottom: 1px solid var(--border-color);
}

.notice-table tr:hover{
    background-color: var(--background-color);
    transition: var(--transition);
}

.notice-table td a:hover{
    text-decoration: underline;
    transition: var(--transition);
}

.notice-table tr td:nth-child(2){
    font-weight: 500;
    text-align: left;
}

.notice-table .nopost{
    text-align: center;
    padding: 20px 0;
}

.notice-bottombox{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 50px;
}

.notice-bottombox .pull-left,.notice-bottombox .pull-right{
    background-color: var(--gray1-color);
    color: var(--white-color);
    border-radius: 2px;
    padding: 10px 30px;
}

.notice-bottombox .pull-left a,.notice-bottombox .pull-right a{
    color: var(--white-color);
    font-size: var(--f-small);
    font-weight: 500;
}

.notice-bottombox .pull-left:hover{
    opacity: 0.8;
    transition: var(--transition);
    cursor: pointer;
}

.notice-bottombox .pull-right{
    margin-left: 15px;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.notice-bottombox .pull-right a{
    color: var(--primary-color);
}

.notice-bottombox .pull-right:hover{
    opacity: 0.8;
    transition: var(--transition);
    background-color: var(--primary-color);
    cursor: pointer;
}

.notice-bottombox .pull-right:hover a,.notice-bottombox .pull-right:hover{
    color: var(--white-color);
}

.admin-notice-wr{
    padding-top: 50px;
    padding-bottom: 80px;
}

.admin-notice-wr > h3{
    font-size: var(--f-large);
    margin-bottom: 30px;
}

.admin-notice-wr form{
    background-color: var(--background-color);
    padding: 30px;
    border-top: 2px solid var(--primary-color);
}

.admin-notice-wr .notice-bottombox{
    justify-content: center;
}

.admin-notice-wr input{
    background-color: var(--white-color);
    width: 100%;
    margin: 10px 0;
}

.admin-notice-wr textarea{
    width: 100% !important;
    margin: 10px 0;
    height: 300px;
}

.admin-notice-wr .form-group label{
    font-weight: 500;
}

body:has(.admin-writelist) .board:last-child{
    display: none;
}

body:has(.admin-writelist) .wrapper{
    margin-bottom: 80px;
}

.admin-writelist > h1{
    padding: 50px 0px;
    text-align: center;
    font-size: var(--f-large);
}

.admin-headerall{
    border-top: 2px solid var(--primary-color);
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    padding: 30px 50px;
}

.list-group-item{
    padding: 16px 50px ;
    text-align: right;
    position: relative;
    border-bottom: 1px solid var(--gray2-color);
}

.list-group-item:hover{
    opacity: .8;
    transition: var(--transition);
}

.list-group-item a{
    padding-left: 12px;
    color: var(--gray1-color);
}

.header-adminwr{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-headerall h3{
    font-size: var(--f-normal);
    margin-bottom: 15px;
}

.eyeicon{
    margin-right: 7px;
    font-size: var(--f-normal);
    color: #666;
}

.header-adminwr li:nth-child(1){
    font-size: var(--f-small);
    display: flex;
    align-items: center;
    color: #666;
}

.header-adminwr li:nth-child(2) .date{
    font-size: var(--f-small);
    color: #666;
}

.admin-writelist #post-content {
    padding: 50px 30px;
    margin-bottom: 50px;
    font-size: var(--f-small);
}

.admin-writelist #post-content p{
    font-size: var(--f-small);
}

.admin-modifybtn{
    width: 100%;
    text-align: center;
}

.admin-modifybtn button{
    background-color: var(--border-color);
    color: var(--white-color);
    padding: 10px 30px;
    border-radius: 2px;
    font-size: var(--f-small);
    font-weight: 500;
    height: 50px;
}

.admin-modifybtn button:first-child{
    background-color: var(--primary-color);
    margin-right: 15px;
}

.admin-modifybtn button a{
    color: var(--white-color);
    font-size: var(--f-small);
}

.admin-listbtn{
    text-align: center;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 10px 40px;
    border-radius: 2px;
    height: 50px;
    width: fit-content;
    margin: 50px auto;
    margin-bottom: 80px;
    line-height: 30px;
}

.admin-listbtn a{
    font-size: var(--f-small);
    font-weight: 500;
    color: var(--primary-color);
}

.next-prevbtn{
    width: 100%;
}

.arrowicon{
    width: 20px;
    height: 15px;
}

.next-prevbtn dl dt {
    width: 200px;
    text-indent: 40px;
    font-size: 16px;
    padding: 15px 10px;
    font-size: var(--f-small);
    color: var(--gray1-color);
}

.next-prevbtn .next,.next-prevbtn .prev{
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.next-prevbtn{
    margin-top: 50px;
    border-bottom: 1px solid #666;
}

.next-prevbtn dl dd {
    width: calc( 100% - 200px);
    padding: 15px 10px;
    line-height: 2;
    cursor: pointer;
}

.next-prevbtn dl dd a{
    font-weight: 500;
    font-size: var(--f-small);
    color: var(--gray1-color);
    cursor: pointer;
}

.arrowicon{
    margin-left: 20px;
    font-size: var(--f-normal);
    color: var(--gray1-color);
}

.photo-imgwrapper{
    padding: 40px 10px 0px 10px;
    border-top: 2px solid #ccc;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
    margin-bottom: 40px;
}

.photo-imgwrapper .gallery-box {
    float: left;
    position: relative;
    margin-bottom: 30px;
    border: 1px solid var(--gray2-color);
    border-bottom: 4px solid var(--gray2-color);
    box-sizing: border-box;
    overflow: hidden;
    transition: var(--transition);
    display: block;
}

.photo-imgwrapper .gallery-box > div {
    text-align: center;
    overflow: hidden;
    height: 180px;
    position: relative;
    background-color: var(--background-color);
}

.photo-imgwrapper .gallery-box img {
    display: inline-block;
    vertical-align: middle;
    width: 100% !important;
    height: 100% !important;
}

.photo-imgwrapper .photo-title{
    display: block;
    height: 68px;
    font-size: var(--f-normal);
    line-height: 1.4;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 10px 20px;
}

.photo-imgwrapper .date-title{
    padding: 15px 20px;
    padding-top: 0px;
    text-align: right;
    color: var(--gray1-color);
}

.photo-imgwrapper .gallery-box:hover{
    border-bottom: 4px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.autosize{
    padding-bottom: 20px !important;
}

.autosize iframe{
    width: 100%;
    height: 620px;
}

#smart_editor2 #smart_editor2_content{
    background-color:#FFF !important;
}
s
#smart_editor2 .se2_inputarea{
    width: 100% !important;
    background-color: #FFF  !important;
}

.alert-info{
    font-size: var(--f-small);
    margin-bottom: 20px;
}

.contents-view-img{
    width: 100%;
    margin: auto;
    display: block;
    text-align: center;
}

.contents-view-img > img{
    margin: 50px 30px !important;
}

.admin-notice-wr input[type=checkbox]{
    width: initial;
    margin: 0;
    height: auto;
    margin-left: 15px;
}

.file-uploadbox{
    margin: 15px 0;
}

.admin-notice-wr input::placeholder{
    color:#666;
}

.no-posttext{
    width: 100%;
    display: block;
    padding: 25px 20px;
    text-align: center;
}

#smart_editor2{
    background-color: #fff !important;
}

.photo-imgwrapper.roaster-gall{
    gap: 1%;
    display: flex;
    flex-wrap: wrap;
}

.photo-imgwrapper.roaster-gall .gallery-box{
    width: calc(100% / 3 - 2% / 3);
    margin-bottom: 1%;
}

.photo-imgwrapper.roaster-gall .gallery-box > div{
    height: 78px;
    background: linear-gradient(-45deg, #f9f9f9 50%, #ffffff 50%);
    display: flex;
    align-items: center;
}

.cooperate-header{
    width: 100%;
    display: flex;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    margin-top: 22px;
}

.cooperate-header h1{
    font-size: 22px;
}

.cooperate-header img{
    width: 22px;
    height: 22px;
}

.cooperate-header img:hover{
    transform: rotate(90deg);
    cursor: pointer;
    transition: var(--transition);
}

.photo-imgwrapper.roaster-gall .gallery-box img{
    width: 100% !important;
    height: auto !important;
}

.photo-imgwrapper.roaster-gall .gallery-box a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
