/* font */
@font-face {
    font-family: 'S-CoreDream-4Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream-3Light';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    font-size: 15px;
    box-sizing: border-box;
    font-family: 'S-CoreDream-4Regular';
}

a {
    text-decoration: none;
    color: #333;
}

ul, li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

img {
    max-width: 100%;
}

.wrap {
    width: 1440px;
    margin: 0 auto;
}

/* header */

header {
    height: 110px;
    display: flex;
    border-bottom: 2px solid rgba(0, 0, 0, 0.199);
    position: relative;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    width: 700px;
    text-align: center;
}

.menu {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.menu>li>a {
    font-size: 15px;
    line-height: 100px;
    font-weight: bold;
    transition: all .3s;
}

.menu>li>a:hover {
    color: #0059a9;
}

.sub_menu {
    position: fixed;
    display: none;
    position: absolute;
    top: 125px;
}

.sub05 {
    display: block;
}

.sub_menu ul {
    display: flex;
    align-items: center;
}

.sub_menu ul li {
    margin-right: 20px;
}

.sub_menu ul li.on {
    color: #0059a9;
}

.sub_menu a {
    transition: all .3s;
}

.sub_menu a:hover {
    font-weight: bold;
    color: #0059a9;
}

.header_right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 15%;
    position: relative;
}

.lang a {
    font-weight: bold;
}

.lang a:hover {
    font-weight: bold;
    color: rgb(0, 84, 153);
}

.lang a::after {
    content: '/';
    padding-left: 6px;
}

.lang a:last-child::after {
    display: none;
}

.search i {
    font-size: 25px;
    font-weight: bold;
    color: rgb(0, 84, 153);
}

.menu_right {
    padding: 10px 15px;
    background-color: rgb(0, 84, 153);
}

.menu_right span {
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 20px;
    background-color: #fff;
    margin: 5px 0;
}

.headerBg {
    position: absolute;
    top: 100px;
    width: 100%;
    height: 70px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.199);
    z-index: -10;
}

/* content */

#container {
    margin: 120px 0;
}

#container > p {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0 0 100px;
}

#container > p > span {
    color: #005ead;
    font-size: 25px;
    font-weight: bold;
}

#container > p > span::after {
    content: '';
    display: block;
    width: 2px;
    height: 50px;
    background-color: rgb(179, 179, 179);
    position: absolute;
    left: 50%;
}

.news {
    width: 100%;
    max-width: 1440px;
    margin: 60px auto 45px;
}

table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

colgroup {
    display: table-column-group;
}

.news .col1,
.news .col2 {
    width: 15%;
}

thead {
    display: table-header-group;
    vertical-align: middle;
}

tr {
    display: table-row;
    vertical-align: inherit;
}

.news th {
    border-top: 4px solid #000;
    border-bottom: 2px solid rgba(0, 0, 0, 0.164);
    font-size: 18px;
    padding: 20px 0;
}

tbody {
    width: 100%;
    text-align: center;
}

tbody td {
    padding: 20px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.164);
    font-weight: bold;
}

tbody td:nth-child(2) {
    text-align: left;
}

tbody td:last-child {
    font-weight: normal;
    font-size: 13px;
}

.pager {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto 60px;
}

.pager ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .pager ul li { */
/*     margin: 0 15px; */
/* } */

.pager ul li a {
    padding: 3px 8px;
    font-weight: bold;
    transition: all .3s ease;
}

.pager ul li a:hover {
    background-color: #0059a9;
    color: #fff;
}

/* footer */

footer {
    width: 100%;
    background-color: #0059a9;
    color: #fff;
}

.footer_inner {
    width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_inner .footer_right {
    display: flex;
    justify-content: space-evenly;
}

.copyright {
    font-weight: normal;
}

.copyright b {
    font-style: 12px;
    padding: 10px 0;
    display: block;
    font-weight: normal;
}

.copyright p {
    font-family: 'S-CoreDream-3Light';
    font-size: 12px;
}

.sns {
    display: flex;
    justify-content: space-evenly;
    width: 100px;
    height: 30px;
    margin-top: 25px;
}

.sns img {
    display: block;
    width: 23px;
}

.sns02 img {
    width: 24px;
}

.family_site_01,
.family_site_02 {
    width: 140px;
    height: 30px;
    margin: 25px 5px 0 10px;
}

.family_site_01 select,
.family_site_02 select {
    border: 1px solid #fff;
    width: 140px;
    outline: none;
    padding: 5px;
    font-size: 13px;
    color: #fff;
    border-radius: 30px;
    background-color: transparent;
    text-align: center;
}

select::-ms-expand {
    display: none;
}

.select {
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#Cooperation option {
    background: #0059a9;
    color: #fff;
    outline: none;
}

#goverment option {
    background: #0059a9;
    color: #fff;
    outline: none;
}

@media screen and (max-width: 1400px) {
    .footer_inner {
        justify-content: space-around;
    }
}

@media screen and (max-width: 1200px) {
    nav {
        display: none;
    }

    .headerBg {
        display: none;
    }

    .header_right {
        width: 20%;
        margin-right: 30px;
    }

    .logo {
        margin-left: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .header_right {
        justify-content: flex-end;
    }

    .lang,
    .search {
        display: none;
    }

    #container {
        padding: 0 30px;
    }

    .copyright b {
        font-size: 14px;
    }
    
    .copyright li {
        font-size: 12px;
    }	
}

@media screen and (max-width: 800px) {
    .footer_inner {
        display: block;
    }

    .copyright {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 30px 50px;
    }
}


@media screen and (max-width:414px){
    tbody td:nth-child(2)
    {text-align:center;}
}