@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --breakpoint-xs: 0;
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1366px;

    /* Font Family */
    --first-kr: 'Noto Sans KR', sans-serif;
    --second-kr: 'Noto Serif', serif;
    --first-eng: 'Noto Sans', sans-serif;
    --second-eng: 'Noto Serif', serif;

    /* Main Color */
    --first-color: #009c75;
    --second-color: #0094d7;  
    --third-color: #006785;

    /* Object Color */
    --text-color: #333333;
    --border-color: #dee2e6;
    --point-color: #FF7518;
    --title-color: #104E8B;
    --tag-cloud: #448aca;
    --gostwhite-color: #f8f8ff

    /* Basic Color */

}


/*---------- common ----------*/
* {
    font-family: var(--first-kr);
    color: var(--text-color);
    word-break: keep-all;
    word-wrap: break-word;
}

h1,h2,h3,h4,h5,h6 {font-family: var(--second-kr);}

.NotoSans  {font-family: var(--first-kr);}
.NotoSerif {font-family: var(--second-kr);}

.custom-select {
    padding-right: 2.5rem !important;
    background: var(--white) url(../images/icon-select.png) no-repeat right 1rem center;
}

.clear {clear: both;}

.font-gray {color: var(--gray);}

.bold {font-weight: 300;}


/*---------- header ----------*/
.logo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.logo a {color: var(--text-color);}
.logo a:hover {text-decoration: none;}
.logo a>img {font-family: var(--second-kr); width: 100%;}

.search-area {text-align: right;}
.search-area label {font-family: var(--second-kr);  margin: .5rem;}
.search-area label:last-of-type {margin-right: 0;}

.search-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    font-size: .85rem;
}

.search-box .input-group {height: 45px;}
.search-box .form-group {margin-bottom: 0;}

.search-box select {
    height: 45px;
    min-width: 164px;
    margin-right: .25rem;
    border: 1px solid;
    border-color: var(--border-color);
    border-radius: 0;
    background: var(--white) url(../images/icon-select2.png) no-repeat right center;
}

.search-box input {
    border: 1px solid;
    border-color: var(--border-color);
    font-size: .85rem;
    color: var(--text-color);
}

.search-box button {
    width: 44px;
    background: url(../images/icon-search.png) center no-repeat;
    border: 1px solid;
    border-color: var(--border-color);
    border-radius: 0;
    text-indent: -9999em;
}


/*---------- nav ----------*/
nav {background: var(--first-color);}

.navbar {padding: .75rem 0;}
.navbar>* {font-size: 1rem;}

.navbar-brand {
    color: var(--white);
    padding: .25rem .75rem;
}

.navbar-nav {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 1rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.navbar-nav:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
}

.navbar-nav .nav-link {
    color: var(--white);
    padding-right: .75rem;
    padding-left: .75rem;
}
.navbar-nav .nav-link.on {color: var(--white);}

.navbar-toggler:focus {outline: 0;}
.navbar-toggler-icon  {background: url(../images/icon-navbar-btn.png) center no-repeat;}

.navbar-nav .dropdown-menu {
    /*background-color: transparent;
    border: 0 none;
    padding-top: 0;*/
}

.navbar-nav .dropdown-menu a {color: var(--text-color);  font-size: .95rem;}
.navbar-nav .dropdown-menu a:hover {color: var(--first-color);}

.dropdown-item {color: var(--white);}
.dropdown-item:hover {
    background: transparent;
    color: var(--white);
    font-weight: 500;
}

@media (min-width:1024px) {
    .navbar-nav {margin-top: 0;  padding: 0;}
    .navbar-nav:after {
        left: 0;
        width: 0;
        height: 0;
        background: transparent;
    }

    /* .dropdown-toggle::after {display: none;} */
}


/*---------- footer ----------*/
footer {padding: 1.5rem 0; font-size: .85rem;}

footer .left {display: block;}

footer .left .publisher {
    font-family: var(--second-kr);
    font-size: .95rem;
    font-weight: 300;
    margin-top: .25rem;
    margin-bottom: .25rem;
}

footer .left address {margin-bottom: 0;}
footer .left address span {
    display: block;
    opacity: .8;
    margin-top: .25rem;
    margin-bottom: .25rem;
}
footer .left address span a {color: var(--text-color);}
footer .left address span a:hover {text-decoration: underline;}

footer .right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .75rem;
    margin-top: .5rem;
}

footer .right span {margin-top: .5rem;  margin-bottom: .5rem;}
footer .right .copyright {opacity: .6;}
footer .right .by {opacity: .4;}

@media (min-width: 768px) {
    footer .left address span {
        display: inline-block;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    footer .left address span:first-child {padding-left: 0;}
}

@media (min-width: 1024px) {
    footer .right {display: block;  text-align: right;}
}


/*---------- main ----------*/
.main-cont {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* journal */
.journal-cover {
    text-align: center;
    border: 1px solid;
    border-color: var(--border-color);
}

.main-cont .tagMove {
    font-size: 1.5rem;
    word-break: keep-all;
    letter-spacing: -1px;
    line-height: 1.4;
}

.journal-info .dl-list {
    margin: 1rem 0;
    font-size: .95rem;
}

.journal-info .dl-list dt {
    float: left;
    min-width: 6.5rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: .25rem;
}

.journal-info .dl-list dd {
    color: var(--info);
    margin-bottom: .25rem;
}

.journal-info .dl-list a {color: var(--info);}

@media (min-width: 768px) {
    .main-cont .tagMove {font-size: 1.75rem;}
}


/*---------- aside ----------*/
.aside_wrap {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.aside_wrap hr {margin: 2rem 0;} 
.aside_wrap div>h4 {font-size: 1.35rem;}

/* submit btn */
.submit a {
    display: block;
    color: var(--white);
    font-family: var(--second-kr);
    border-radius: 0;
    margin-bottom: .5rem;
}
.submit a:last-child {margin-bottom: 0;}

.submit a.submit-btn1 {font-size: 1.25rem;  background: #b93d46;  font-weight: 700;}
.submit a.submit-btn1:hover {background: #bb2b36; color: var(--white);}

.submit a.submit-btn2 {font-size: 1.125rem;  background: #47509a;}
.submit a.submit-btn2:hover {background: #3e4896; color: var(--white);}

/* archives */
.archive small {
    font-size: .85rem;
    color: var(--gray);
}

.archive .select {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    margin: 1rem 0 .5rem;
}

.archive .select .custom-select {
    font-size: 0.85rem;
    height: 2.25rem;
    margin-bottom: .25rem;
    padding: 0.25rem 1rem;
    border: 1px solid;
    border-color: var(--border-color);
    border-radius: 0;
}

.archive .select .custom-select:last-child {margin-bottom: 0;}

/* tag cloud */
.tag-cloud .tag {margin: 1rem 0 .5rem;}

.tag-cloud .tag a.btn {
    font-size: .75rem;
    margin: .25rem 0;
    padding: .25rem .75rem;
    color: var(--tag-cloud);
    background: var(--white);
    border: 1px solid;
    border-color: var(--tag-cloud);
    border-radius: 25px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tag-cloud .tag a.btn:hover {background: #f5f5ff;}

/* other info */
.other .info {margin: 1rem 0 .5rem;}

.dot-blue {
    position: relative;
    padding-left: .65rem;
    font-size: .85rem;
    margin-bottom: .5rem;
}

.dot-blue:before {
    content: "";
    position: absolute;
    left: 0;
    top: .625rem;
    width: 4px;
    height: 4px;
    background-color: var(--info);
    border-radius: 50%;
}

.dot-blue span {color: var(--info);}

.order {
    display: block;
    margin-top: 1rem;
    padding: .5rem;
    font-size: .85rem;
    background: var(--first-color);
    color: var(--white);
    border-radius: 2px
}

.order:hover {color: rgba(255, 255, 255, .75);}

@media (min-width: 1024px) {
    .aside_wrap {
        height: 100%;
        background-color: #f8f8f8;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* banner */
.banner a {
    display: flex;
    justify-content: center;
    align-items: center;
	border: 1px solid;
    border-color: var(--border-color);
	height: 50px;
    margin: .125rem 0;
    padding: .25rem;
}

.side-banner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.foot-banner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.side-banner a {
    background: var(--white);
	width: calc(100% / 2 - 2px);
}

.foot-banner a {
    background: var(--gostwhite-color);
    width: calc(100% / 2 - 2px);
}



@media (max-width: 374.98px) {
    .side-banner a,
    .foot-banner a {width: calc(100% / 1);}
}

@media (min-width: 1024px) {
    .side-banner a {width: calc(100% / 1);}
    .foot-banner a  {width: calc(100% / 5 - 16px);}
}


/* -------- Journal Archive  -------- */
/* archive */
.jour_vol {
    text-align: center;
    margin: .5rem 0;
}

.jour_vol .txt_vol {
    font-family: var(--second-kr);
    font-size: .85rem;
    background-color: #E5E5E5;
    border: 1px solid;
    border-color: var(--border-color);
    padding: .5rem 0;
    margin-bottom: .1rem;
    line-height: 1.8;
}

.jour_vol .txt_no {
    display: block;
    overflow: hidden;
    padding: 0;
    margin-bottom: .1rem;
}

.jour_vol .txt_no .issue {
    float: left;
    display: block;
    overflow: hidden;
    border: 1px solid;
    border-color: var(--border-color);
    padding: .5rem 1rem;
    width: calc(100% / 4);
}

.jour_vol .txt_no .issue:hover {
    background-color: var(--gostwhite-color);
}

.jour_vol .txt_no .issue a {font-size: .85rem;  line-height: 1.8;}

/* book */
.sub-section {
    padding: 1.25rem 1rem;
    border: 1px solid;
    border-color: #cfd5e4;
    background-color: #f5f7fa;
}

.title {
    font-size: 1.125rem;
    font-weight: 300;
    font-family: var(--second-kr);
    font-style: italic;
}

.label-min {
    min-width: auto;
    padding-right: 0.5rem;
}

.articles-list {
    padding: 0 1.25rem 1.5rem;
    border: 1px solid;
    border-color: var(--border-color);
    border-radius: 2px;
}

.articles-list h4 {
    padding: 1rem 0;
    font-size: 1.35rem;
}

.articles-list a {color: var(--title-color);}

.articles-list .list {padding: 1rem 0;}
.articles-list .list a {font-family: var(--second-kr);}
.articles-list .list b {color: var(--point-color);}

.articles-list small {
    display: block;
    margin-top: .5rem;
    color: var(--gray);
}

.articles-list a,
.articles-list button {
    margin-top: 1.5rem;
    min-width: 100px
}

.view-All {
    display: block;
    color: var(--gray);
    font-size: .8rem;
    padding: .25rem;
    border-radius: 0;
    border: 1px solid;
    border-color: var(--border-color);
    background: linear-gradient(to top, rgb(239 239 239) 0%, rgb(255 255 255) 50%, rgb(255 255 255) 100%);
}

/* detail */
.articles {font-size: .95rem;}

.articles-info h2 {
    font-size: 1.5rem;
    color: var(--title-color);
}

.articles-info h2.bg-line {
    position: relative;
    padding-left: 1.25rem
}

.articles-info h2.bg-line:before {
    content: "";
    position: absolute;
    left: 0;
    top: .25rem;
    width: 7px;
    height: calc(100% - .375rem);
    background-color: var(--point-color)
}

.articles-info dl {
    display: flex;
    margin: .25rem 0;
    font-size: .95rem;
}

.articles-info dt {
    padding-right: 1rem;
    min-width: 80px;
    color: var(--gray);
    font-weight: 400;
    float: left;
}

.articles-info dd {
    margin-bottom: 0;
    overflow: hidden;
    word-break: break-word;
}

.btn-pdf {
    position: relative;
    padding-left: 1.875rem;
    font-size: .875rem;
    border-radius: .1875rem;
}

.btn-pdf:before {
    content: "";
    position: absolute;
    left: .75rem;
    top: .625rem;
    width: 14px;
    height: 14px;
    background: url(../images/icon_pdf.png) center no-repeat;
}

.abstract h4 {
    font-size: 1.3rem;
    border-bottom: 1px solid;
    border-color: var(--border-color);
    padding-bottom: 1rem;
}

.abstract p {text-align: justify;}

.keyword dl {
    display: flex;
    flex-direction: column;
}

.keyword dt {
    padding-right: 1rem;
    color: var(--gray);
    font-weight: 400;
    margin: .25rem 0;
}

.keyword dd {
    margin-bottom: 0;
    overflow: hidden;
    word-break: break-word;
}

.keyword-group a {
    display: inline-block;
    margin: .15rem 0;
    padding: .125rem .5rem;
    font-size: .8rem;
    color: var(--white);
    background-color: #b3b3b3;
    border-radius: .125rem;
}

.keyword-group a:hover {
    color: var(--white);
    background-color: var(--gray);
    text-decoration: none
}

@media (max-width:639.98px) {
    .label-min {
        min-width: 3.75rem;
        padding-right: 0.125rem;
    }
}


/* -------- sub  -------- */
h1 {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

h1:after {
    display: block;
    content: '';
    width: 100%;
    height: 10px;
    margin-top: 20px;
    background: url(https://hakjisa-assets.s3.ap-northeast-2.amazonaws.com/jr/images/sub_tit_line.png) repeat;
}

/* subWrap */
.subWrap {font-size: .95rem;}

.subWrap h5, h6 {
    margin-bottom: 1rem;
}

.subWrap ol, ul {padding-left: 1.5rem;}

.subWrap li {margin: .5rem 0;}

.subWrap table {
    border-collapse: collapse;
    border: 1px solid;
    border-color: var(--border-color);
    font-size: .815rem;
    width: 100%;
}

.subWrap th {
    padding: 2px 5px;
    background-color: #F8F9FD;
    color: #517AB8;
    border-top: 1px solid;
    border-right: 1px solid;
    border-color: var(--border-color);
    font-weight: 300;
}

.subWrap td {
    padding: 10px 5px;
    border-top: 1px solid;
    border-right: 1px solid;
    border-color: var(--border-color);
}

/* About the Journal */
.list-board ul {
    margin: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
}

.list-board li {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: .5rem .5rem;
    border-bottom: 1px solid;
    border-color: var(--border-color);
    list-style: none;
}

.list-board li:first-child {
    border-top: 1px solid;
    border-color: var(--border-color);
}

.list-board li span {padding: .125rem 0;}

ul.about-journal .info {color: var(--info);}

ul.editorial li {
    padding: .75rem .5rem;
    background-color: #f8f8f8;
}

ul.editorial li span.name {
    font-weight: 300;
}

ul.editorial li span.info {
    font-size: .8rem;
    color: var(--gray);
}

ul.editorial li:first-child {
    border-top: 1px solid;
    border-color: var(--border-color);
}

ul.editorial li:nth-child(2n) {
    background-color: transparent;
}

/* Guideline */
.ex li {
    font-size: .8rem;
    margin: .25rem 0;
}

@media (min-width: 768px) {
    .list-board li {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .list-board li span.name {
        min-width: 10rem;
        margin-right: 1rem;
    }
}

/* xslt css */
#article-front .row {
    display: block;
}

#article-front h1, #article-front h2, #article-front h3, #article-front h4, #article-front h5 {
    padding: 1rem;
}
