@charset "utf-8";

/* *******************************************************************
	common
******************************************************************* */
.inner-wrap {
    display: flex;
    justify-content: space-between;
    max-width: 1820px;
    width: 100%;
    padding: 0 10px;
    gap: 44px;
    margin:0 auto;
}

.highlight-blue {
    color: #08b1cd;
}
.highlight-red {
    color: #f33;
}
.bg-highlight-blue {
    background-color: #f0f7fd !important;
}
.text-primary {
    color: #33f !important;
}
.text-danger {
    color: #f33 !important;
}

/* *******************************************************************
	header - top-area : utility-area
******************************************************************* */
#header {
}

/* top-area */
.top-area {
}
.top-area .utility-area {
    background-color: transparent;
}
.top-area .utility li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;

}
.top-area .utility li:first-child {
    margin-left: 0;
}
.top-area .utility li:nth-child(4) {
    margin-left:0;
}
.top-area .utility li:nth-child(n+4) {
    margin-top: 10px
}
.top-area .utility li.divline {
    margin: 0 12px;
}
.top-area .utility li.divline span {
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #ccc;
}

.top-area .utility li,
.top-area .utility li a {
    font-size: 14px;
    font-weight: 800;
    color: #333;
}
.top-area .utility li a:hover {
    color: #006EF3;
}
.top-area .utility li a .feather {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
.top-area .utility li.go-sitemap a .feather {
    width: 24px;
    height: 24px;
    margin-right: 0px;
    margin-left: 70px;
    text-align: right;
}

/* login-title */
.top-area .utility li.login-title {
    margin-left:0;
}
.top-area .utility li.login-title b {
    max-width: 120px;
    float:left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    color: #006EF3;

}
.top-area .utility li.login-title .feather {
    float: left;
    vertical-align: middle;
    width: 17px;
    height: 17px;
    margin: -2px 6px 0 0;
}

/* *******************************************************************
	header - logo-area : logo
******************************************************************* */

.logo-area > .inner-wrap,#footer .inner-wrap {
    max-width: 1820px;
    width: 100%;
}

.logo-area > .inner-wrap {
    padding: 20px 0px;
    align-items: center;
}
.logo-area > .inner-wrap > span.line {
    width: calc( 100% - 205px );
    height: 1px;
    top: 73px;
    right: 40px;
    position: absolute;
    background-color: #000;
}
.logo-area h1 img {
    display: block;
}
/* *******************************************************************
	header - logo-area : gnb
******************************************************************* */
/* gnb */
.logo-area .gnb-bg {
    position: absolute;
    top: 100px;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    border-top: 0px solid #eee;
    background-color: rgba(255,255,255,1);
    z-index: 1000;
    transition: all 0.25s;
}
.logo-area .gnb-bg.active {
    height: 363px;
    border-top: 1px solid #eee;
    border-bottom: 2px solid #006EF3;
    /*box-shadow: 0 3px 8px rgba(0,0,0,0.15);*/
}

.gnb-area {
}


.gnb-area dl {
    position: relative;
    float: left;
    width: 135px;
}
.gnb-area dl dt a {
    display: block;
    padding: 20px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    background-color: transparent;
}
.gnb-area dl dd ul li.double a {
    line-height: 1.3;
    padding: 11px 2px;
}
.gnb-area dl dt a:hover {
    color: #2e9e4e;
}
.gnb-area dl dt.active a,
.gnb-area dl dt.active a:hover {
    color: #284096;
}

.gnb-area dl dd {
    position: absolute;
    top: 101px;
    left: 0;
    width: 135px;
    height: 0;
    overflow: hidden;
    background-color: transparent;
    z-index: 1200;
    transition: 0.25s;
    border-right: 1px dashed #eee ;
}
.gnb-area dl dd:hover {
    background-color: #fafcfe;
}
.gnb-area dl:first-child dd {
    border-left: 1px dashed #eee ;
}
.gnb-area.hover dl dd {
    height: 360px;
}
.gnb-area dl dd.active {
    background-color: #fafcfe;
}
.gnb-area dl dd ul {
    padding: 10px 0 20px 0;
}
.gnb-area dl dd ul li a {
    display: block;
    padding: 18px 2px;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    color: #555;
    font-weight: 700;
}
.gnb-area dl dd ul li.double a {
    line-height: 1.3;
}
.gnb-area dl dd ul li a i {
    padding-left: 5px;
}
.gnb-area dl dd.active ul li a:hover,
.gnb-area dl dd ul li a:hover {
    font-weight: 700;
    color: #fff;
    background-color: #006EF3;
}
.breadcrumb-area h1 > img {
    margin-bottom: 35px;
    margin-left: -20px;
}
.btn > svg {
    width: 15px;
    vertical-align: middle;
}
/* *******************************************************************
	footer
******************************************************************* */
#footer {
}
#footer > .inner-wrap {
    padding: 40px 10px;
    border-top: 1px solid #000;
}
#footer .footer-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#footer .address-area .inner-wrap {
    margin: 0 auto;
    line-height: 1.5;
    font-size: 15px;
    font-weight: 400;
}
#footer .footer-area .contact-info > li.divline {
    margin: 0 10px;
}
/*푸터 - 학회정보*/
#footer .footer-area > address {
    display: flex;
    flex-direction: column;
    font-size: 17px;
}
#footer .footer-area > address p {
    line-height: 1.7;
    font-weight: 600;
}
#footer .footer-area > address p:last-child span:first-child::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 13px;
    margin: 0px 11px -1px 13px;
    background-color: #000;
}
/*copyright*/
#footer p.copyright {
    font-size: 13px;
    color: #888;
    font-weight: 400;

}

/* *******************************************************************
	site map
******************************************************************* */
.sitemap {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/bg/bg_sitemap.png) left top;
    z-index: 99999;
}
.sitemap .inner {
    position: relative;
    width: auto;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
}
.sitemap .btn-close {
    display: block;
    margin-top: 30px;
    text-align: right;
    cursor: pointer;
}
.sitemap .btn-close .feather {
    width: 60px;
    height: 60px;
    color: rgba(255,255,255,0.75);
    transition: color 0.35s;
    -moz-transition: color 0.35s;
    -webkit-transition: color 0.35s;
    -o-transition: color 0.35s;
    -ms-transition: color 0.35s;
}
.sitemap .btn-close .feather:hover {
    color: #fff;
}
.sitemap .inner dl {
    width: 100%;
    margin: 0;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.sitemap.sitemap-eng .inner dl {
    padding: 40px 0 !important;
}
.sitemap .inner dl.sitemap1 {
    border-top: 1px solid rgba(255,255,255,0.25);
}
.sitemap .inner dl dt {
    display: block;
    margin: 0 0 10px;
}
.sitemap .inner dl dt {
    display: block;
    margin: 0 0 10px;
}
.sitemap .inner dl dt a {
    color: #499bff;
    font-size: 30px;
    font-weight: 700;
}
.sitemap .inner dl dd {
    display: block;
}
.sitemap .inner dl dd ul {
    margin: 0;
    padding: 0;
}
.sitemap .inner dl dd ul li {
    display: inline-block;
    list-style: none;
    margin: 0 30px 0 0;
    line-height: 1.8;
}
.sitemap .inner dl dd ul li a {
    color: #dfdfdf;
    font-size: 18px;
    font-weight: 500;
}
.sitemap .inner dl dd ul li a i {
    margin-left: 5px;
    font-weight: 300;
}
.sitemap .inner dl dd ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.article .section .img-area img {
    max-width: 100%;
    margin: 0 auto;
}


/*관련기관*/
#footer .quick-button {
    align-self: flex-start;
    align-items: center;
    position: relative;
    display: flex;
    width: 200px;
    height: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
    cursor: pointer;
    border-bottom: 1px solid #fff;
}
#footer .quick-button li.related-organ {
    width: 100%;
    z-index: 102;
    color: #333;
}
#footer .quick-button li.related-organ span.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #000;
}
#footer .quick-button li.related-organ span.title b {
    height: 43px;
    line-height: 45px;
    font-size: 17px;
    font-weight: 700;
}
#footer .quick-button li.related-organ span.title .feather {
    width: 24px;
    height: 24px;
}
#footer .quick-button li.related-organ ul {
    display: none;
    position: absolute;
    left: 0;
    bottom: 40px;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #000;
    border-radius: 5px;
    background-color: #fff;
}
#footer .quick-button li.related-organ ul li a {
    display: block;
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    background-color: #fff;
}
#footer .quick-button li.related-organ ul li a:hover {
    color: #83cc05;
    background-color: #faffef;
}

