@import 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap';

@charset "UTF-8";

:root {
    --main-color: #9C6;
    --gray-color: #666;
    --th-color: #D9D9D9;
    --border-color: #333;
    --hovercolor: #F7F7F7;
    --catevent: #A26BD0;
    --catmonthly: #6BB4CF;
    --catconsortium: #464F3E;
    --catrepository: #CF6BA9;
    --catbooks: #4F3E48;
    --catother: #CF9F6B;
}

html {
    box-sizing: border-box
}

*,
*::after,
*::before {
    box-sizing: inherit
}

html {
    font-family: sans-serif;
    font-size: 62.5%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif, Arial, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 1.8rem;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    line-height: 1.8
}

h1 {
    display:grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 8rem 4rem;
    margin: 0;
    font-size: 3.2rem;
    font-weight: normal;
    line-height: 1;
    color: var(--main-color);
    text-align: left;
}

h2 {
    display:grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 0 4rem;
    margin: 0;
    font-size: 3rem;
    font-weight: normal;
    line-height: 1.2;
    text-align: left;
}

h3 {
    display:grid;
    grid-template-columns: 1fr;
    padding: 2rem 0;
    margin: 0;
    font-size: 2rem;
    font-weight: normal;
    text-align: left;
}

ul {
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    color: black;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a:hover {
    color: var(--main-color);
}

.link_pointer-events {
    pointer-events: none;
}

img {
    max-width: 100%;
    height: auto;
}

.cleared {
    clear: both;
}

.red {
    color: red;
}

.header-toplogo{
    display:grid;
    grid-template-columns: 1fr;
    gap: .5rem;
    justify-items:center;
    width: 100%;
    padding: 5rem 2rem;
    margin: 0 auto;
    line-height: 1.1;
    border-bottom: 1px solid var(--border-color);
}

.header-toplogo .en{
    display:grid;
    grid-template-columns: 1fr;
    font-family: Raleway, sans-serif;
    font-size: 15rem;
    font-weight: 600;
    text-align: center;
}

.header-toplogo .sub{
    display:grid;
    grid-template-columns: 1fr;
    font-family: Raleway, sans-serif;
    font-size: 2.5rem;
    color: var(--gray-color);
}

.header-toplogo .jp{
    display:grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: .5rem 0 0;
    font-size: 3.5rem;
    text-align: center;
}

/* header */

header {
    display:grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    display:grid;
    grid-template-columns: 180px 1fr 30px;
    gap: 2rem;
    align-items:center;
    width: 100%;
    padding: 2rem 4rem;
    margin: 0 auto;
}

.top .header-top {
    grid-template-columns: 1fr 30px;
}

.top .fixed .header-top {
    grid-template-columns: 180px 1fr 30px;
}

.header-logo {
    display:grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0;
    margin: 0;
}

.header-logo a{
    display:grid;
    grid-template-columns:34px 1fr;
    gap:1rem;
    align-items:center;
    font-family: Raleway, sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: black;
}

.header-logo a:hover{
    color: black;
}

.top .header-top .header-logo {
    display:none;
}

.top .fixed .header-top .header-logo {
    display:grid;
    transition: all 0.5s ease-in-out;
}

.mail-icon{
    display:grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    text-align: right;
}

.mail-icon a{
    display:grid;
    align-items: center;
}

.mail-icon a:hover img{
    filter: invert(86%) sepia(12%) saturate(1608%) hue-rotate(40deg) brightness(88%) contrast(90%);
}

/* global-navi */

nav {
    display:grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
}

#global-navi {
    display:grid;
    grid-template-columns:repeat(6,1fr);
    width: 100%;
}

#global-navi li {
    display:grid;
    grid-template-columns: 1fr;
}

#global-navi a {
    display:grid;
    grid-template-columns: 1fr;
    place-content: center;
    color: black;
    text-align: center;
}

#global-navi a:hover {
    color: var(--main-color);
}

#global-navi .children {
    position: absolute;
    z-index: 99999;
    width: 100%;
    visibility: hidden;
}

#global-navi .children li {
    width: 100%;
    border: none;
}

#global-navi li:hover>.children {
    visibility: visible;
}

#global-navi .children a {
    box-sizing: border-box;
    -webkit-justify-content: left;
    justify-content: left;
    padding: 8px;
    font-weight: normal;
    color: #FFF;
    text-align: left;
    background-color: rgb(4 0 0 / 40%);
    border-bottom: 1px solid #FFF;
}

#global-navi .children a:hover {
    background-color: rgb(4 0 0 / 60%);
}

/* mobile-navi */

.mobile-navi {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
    width: 60px;
    height: 100%;
    padding: 0;
    margin: 0 0 0 5px;
    background: var(--main-color);
}

.mobile-navi a {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    color: #FFF;
    text-align: center;
}

.mobile-navi ul {
    display:grid;
    grid-template-columns: 1fr;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-navi li {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.mobile-navi li a {
    display:grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 1rem 2rem !important;
    margin: 0 !important;
    list-style: none !important;
}

.menu-sp-switch,
.menu-sp-switch span {
    display: inline-block;
    cursor: pointer;
    transition: all 0.4s ease 0s;
}

.menu-sp-switch {
    position: relative;
    z-index: 2;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.menu-sp-switch span {
    position: absolute;
    right: 0;
    left: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background: #FFF;
}

.menu-sp-switch span:nth-of-type(1) {
    top: 15px;
}

.menu-sp-switch span:nth-of-type(2) {
    top: 0;
    bottom: 0;
}

.menu-sp-switch span:nth-of-type(3) {
    bottom: 16px;
}

.menu-sp-switch.active span:nth-of-type(1) {
    -webkit-transform: translateY(13px) rotate(-45deg);
    transform: translateY(13px) rotate(-45deg);
}

.menu-sp-switch.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-sp-switch.active span:nth-of-type(3) {
    -webkit-transform: translateY(-13px) rotate(45deg);
    transform: translateY(-13px) rotate(45deg);
}

.mobile-navi-list {
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 99999;
    display: none;
    width: 100%;
    height: auto;
    padding: 0 0 2px;
    margin: 0;
    background: var(--main-color);
    border: none;
}

.mobile-navi-list ul {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
}

.mobile-navi-list li {
    display: block;
}

.mobile-navi-list li a {
    width: 100%;
    padding: 1rem 1.2rem;
    margin: 0;
    color: #FFF;
    border-bottom: 1px solid white;
}

.bn_area{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    border-top:1px solid var(--border-color);
    border-bottom:1px solid var(--border-color);
}

.bn_area li{
    display:grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.bn_area li + li{
    border-left:1px solid var(--border-color);
}

.bn_area li a{
    display:grid;
    grid-template-columns: 1fr;
    gap:0 1rem;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color:black;
    text-align: center;
}

.bn_area li:first-child a{
    grid-template-columns: auto auto;
    place-content: center; 
}

.bn_area li a img{
    width: auto;
    height: 45px;
    margin-inline: auto;
}

.bn_area li:first-child a img{
    height: 80px;
}

.bn_area li a:hover{
    background-color: var(--hovercolor);
}

.bn_area li a::after{
    display: none!important;
}

.top_add{
    font-size: 2.2rem;
    line-height: 2.2;
    text-align: center;
}

.top_add h2{
    font-size: 3.4rem!important;
    line-height: 1!important;
    border-bottom: none!important;
}

/* footer */

.back_to_top {
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 10000;
    display:grid;
    grid-template-columns: 1fr;
    place-content: center;
    width: 50px;
    aspect-ratio: 1;
    padding: 0;
    margin: 0;
    color: white;
    text-align: center;
    background: var(--main-color);
    border-radius: 100%;
}

.back_to_top:hover {
    -moz-transform: translate(0, 0) scale(1.2, 1.2) !important;
    -webkit-transform: translate(0, 0) scale(1.2, 1, 2) !important;
    transform: translate(0, 0) scale(1.2, 1.2) !important;
}

.back_to_top img {
    width: 24px;
    margin-inline: auto;
    filter: invert(1);
}

.back_to_top a {
    display:grid;
    grid-template-columns: 1fr;
    place-content: center;
    width: 100%;
    color: var(--white-color);
}

.back_to_top a:hover {
    color: var(--white-color);
}

.effect_v {
    opacity: 0;
    transition: .3s all ease-in-out 0s;
    transform: translate(0, 30px);
}

.effect_v.fade_In {
    opacity: 1;
    transform: translate(0, 0);
}

.effect_v.fade_Out {
    opacity: 0;
    transform: translate(0, 30px);
}

footer {
    display:grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 4rem 4rem 2rem;
    margin: 0;
    border-top: 1px solid var(--border-color)
}

footer .footer-inner {
    display:grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100%;
    margin: 0 auto;
}

footer .footer-inner .footer-logo{
    display:grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-items:center;
    width: 100%;
    margin: 0 auto;
    line-height: 1.1;
}

footer .footer-inner .footer-logo img{
    width: 34px;
}

footer .footer-inner .footer-logo .en{
    display:grid;
    grid-template-columns: 1fr;
    font-family: Raleway, sans-serif;
    font-size: 6rem;
    font-weight: 600;
    text-align: center;
}

footer .footer-inner .footer-logo .sub{
    display:grid;
    grid-template-columns: 1fr;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    color: var(--gray-color);
}

footer .footer-inner .footer-logo .jp{
    display:grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: .5rem 0 0;
    font-size: 1.4rem;
    text-align: center;
}

footer .footer-inner .footer-info {
    display:grid;
    grid-template-columns: 1fr 1fr;
    justify-items:center;
    width: 100%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
    font-size: 1.4rem;
}

footer .footer-inner .footer-info strong {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    padding: 0 0 1rem;
    margin: 0;
}

footer .footer-inner .footer-info a {
    color: black;
}

footer .footer-inner .footer-info a:hover {
    color: black;
}

footer .footer-link {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 4rem 0 0;
    font-size: 1.2rem;
    text-align: center;
}

footer .footer-link a {
    color: black;
}

footer .footer-link a:hover {
    color: black;
}

footer .footer-link span {
    display: block;
    text-align: center;
}


section {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

/* js 動き */

/* .news_view{
    opacity: 0;
}

.news_view.animate{
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.top:has(#top) #top{
    opacity: 0;
    pointer-events: none;
    height: 0;
} */

.top:has(#top) #top.fixed{
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    background-color: white;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

/* 子ページ
*/

/* content */
.main-content {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 8rem 4rem;
    margin: 0;
    border-top: 1px solid var(--border-color);
}

.main-content section+section {
    padding: 8rem 0 0;
}

.main-content section .tar {
  text-align: right;
}

.main-content section .page_link{
    display:grid;
    grid-template-columns: repeat(3, 1fr); 
    justify-items:center;
    max-width: 800px;
    margin: 0 auto;
}

.main-content section .page_link li{
    display:grid;
    grid-template-columns: 1fr; 
}

.main-content section .page_link li a{
    display:grid;
    grid-template-columns: 160px;
    padding: 1rem;
    color: black;
    text-align: center;
    background-color: var(--th-color);
    border-radius: 100vmax;
}

.main-content section .page_link li a.active{
    color:white;
    background-color: var(--main-color);
}

.main-content section table {
    width: 100%;
    padding: 0;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.main-content section table tbody th {
    padding: 1rem;
    font-weight: normal;
    text-align: left;
    background-color: var(--th-color);
    border: 1px solid var(--gray-color);
}

.main-content section table tbody td {
    padding: 1rem;
    border: 1px solid var(--gray-color);
}

.center .main-content section table tbody th{
    width:30%;
}

.main-content a[target="_blank"]::after {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 0 0 1rem;
    vertical-align: middle;
    content: '';
    background-image: url("/file.jsp?id=623864");
    background-repeat: no-repeat;
    background-size: contain;
}

.main-content a[href$=".pdf"]::after {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 0 0 1rem;
    vertical-align: middle;
    content: '';
    background-image: url("/file.jsp?id=623858");
    background-repeat: no-repeat;
    background-size: contain;
}

.main-content a[href$=".docx"]::after {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 0 0 1rem;
    vertical-align: middle;
    content: '';
    background-image: url("/file.jsp?id=623866");
    background-repeat: no-repeat;
    background-size: contain;
}

.main-content a:hover[target="_blank"]::after,.main-content a:hover[href$=".docx"]::after,.main-content a:hover[href$=".pdf"]::after{
    filter: invert(86%) sepia(12%) saturate(1608%) hue-rotate(40deg) brightness(88%) contrast(90%);
}

.main-content .right_img {
    display: block;
    float: right;
    margin: 0 0 4rem 4rem;
}

.main-content .news_box{
    display:grid;
    grid-template-columns: 1fr;
}

.main-content .news_box a{
    position: relative;
    display:grid;
    grid-template-columns: 160px 90px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0;
    font-size: 1.6rem;
    border-bottom: 1px dotted var(--border-color);
}

.main-content .news_box a::after{
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    width: 20px;
    height: 20px;
    content: "";
    background-image: url("/image.jsp?id=620843");
    filter: grayscale(1);
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

.main-content .news_box a:hover{
    background-color: var(--hovercolor);
}

.main-content .news_box a.title{
    pointer-events: none;
}

.main-content .news_box a h3{
    box-sizing: border-box;
    display: block;
    padding: 0;
    margin: 0;
}

.news_area .cat{
    padding: 1rem 2rem;
    line-height: 1;
    color: white;
    text-align: center;
    background-color: var(---catmonthly);
}

.news_area .cat.event{
    background-color: var(--catevent);
}

.news_area .cat.monthly{
    background-color: var(--main-color);
}

.news_area .cat.consortium{
    background-color: var(--catconsortium);
}

.news_area .cat.repository{
    background-color: var(--catrepository);
}

.news_area .cat.books{
    background-color: var(--catbooks);
}

.news_area .cat.other{
    background-color: var(--catother);
}

.news_area.sub{
    display: none;
}

.newslist .news_area.sub{
    display:grid;
    grid-template-columns: 160px 90px 1fr;
    gap:2rem;
    padding: 0 0 2rem;
}

.main-content .link{
    display:grid;
    grid-template-columns: 1fr;
    justify-content: center;
    padding: 8rem 0;
}

.main-content .link a{
    display:grid;
    grid-template-columns: 1fr;
    width: fit-content;
    padding: 2rem 10rem;
    margin-inline: auto;
    border: 1px solid var(--border-color);
}

.main-content .link a:hover{
    background-color: var(--hovercolor);
}

.top .main-content{
    padding: 0 0 8rem;
    border-top:none;
}

.top .main-content h2{
    padding: 4rem 0;
    font-size: 3.8rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.top .main-content .news_box{
    display:grid;
    grid-template-columns: 1fr 1fr;
}

.top .main-content .news_box a{
    display:grid;
    grid-template-rows: subgrid;
    grid-template-columns: 160px 1fr;
    gap: 1rem;
    padding: 4rem 8rem;
    font-size: 1.6rem;
    border-bottom: 1px solid var(--border-color);
}

.top .main-content .news_box .news_area:nth-of-type(odd) a{
    border-right: 1px solid var(--border-color);
}

.top .main-content .news_box a .news-date{
    font-size: 1.4rem;
    text-align: right;
}

.top .main-content .news_box a h3{
    display: -webkit-box;
    grid-column: span 2;
    min-height: 72px;
    max-height: 72px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-size: 2rem;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.event .main-content .news_box a{
    grid-template-columns: 90px 1fr;
    padding: 2rem;
}


/* PCでサイズが大きい時
---------------------------------------------------------------- */

@media handheld,
only screen and (min-width: 1600px),
only screen and (min-device-width: 1600px) and (orientation:portrait) {
    .header-top {
        max-width: 1600px;
    }

    .main-content section{
        max-width: 1600px;
    }

    .top .main-content section{
        max-width: 100%;
    }

    h1{
        max-width: 1600px;
        margin-inline: auto;
    }

    footer .footer-inner {
        max-width: 1600px;
    }
}

/* PCでサイズを縮小した時
---------------------------------------------------------------- */

@media handheld,
only screen and (max-width: 960px),
only screen and (max-device-width: 960px) and (orientation:portrait) {
    .header-top {
        gap: 1rem;
        padding: 2rem;
    }

    #global-navi a{
        font-size: 1.4rem;
    }

    .header-toplogo{
        padding: 6rem 2rem;
    }
    
    .header-toplogo .en{
        font-size: 14rem;
    }
    
    .header-toplogo .sub{
        font-size: 2.4rem;
    }
    
    .header-toplogo .jp{
        font-size: 3.1rem;
    }

    .main-content .link{
        padding: 6rem 0;
    }
    
    .main-content .link a{
        padding: 2rem 8rem;
    }
    
    .top .main-content{
        padding: 0 0 6rem;
    }
    
    .top .main-content h2{
        font-size: 3rem;
    }
    
    .top .main-content .news_box a{
        padding: 2rem 4rem;
    }
}

/* スマートフォンサイト
---------------------------------------------------------------- */

@media handheld,
only screen and (max-width: 768px),
only screen and (max-device-width: 768px) and (orientation:portrait) {

    /* 共通設定 */
    html,
    body {
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    .main-area {
        width: 100%;
    }

    h1 {
        padding: 3rem 2rem;
        font-size: 2.4rem;
    }

    h2 {
        padding: 0 0 2rem;
        font-size: 2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    .header-toplogo{
        padding: 4rem 1rem;
    }
    
    .header-toplogo .en{
        font-size: 8rem;
    }
    
    .header-toplogo .sub{
        font-size: 1.5rem;
    }
    
    .header-toplogo .jp{
        font-size: 2rem;
    }

    /* header */
    header {
        grid-template-columns: 1fr 60px;
        height: 60px;
    }

    .top:has(#top) #top.fixed{
        height: 60px;
    }

    .header-top {
        grid-template-columns: 1fr 20px;
        padding: 0 1rem;
        line-height: 1;
    }

    .top:not(:has(.fixed)) .header-top{
        grid-template-columns: 1fr
    }

    .top:not(:has(.fixed)) .mail-icon a{
        justify-content: end;
    }

    .top:not(:has(.fixed)) .mail-icon a img{
        width: 20px;
    }

    .top .fixed .header-top {
        grid-template-columns: 1fr 20px;
    }

    .mobile-navi {
        display: block;
    }

    .pc_navi,
    .pc_only {
        display: none;
    }

    /* footer */
    .back_to_top {
        right: 20px;
        bottom: 20px;
        width: 30px;
    }

    .back_to_top img {
        width: 16px;
    }

    footer .footer-inner {
        gap: 2rem;
    }

    footer .footer-inner .footer-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        font-size: 1.2rem;
    }

    footer .footer-inner .footer-info strong{
        padding: 0 0 .5rem;
        text-align: center;
    }

    footer .footer-link {
        padding: 2rem 0 0;
        font-size: 1rem;
    }

    .bn_area{
        grid-template-columns: 1fr;
    }
    
    .bn_area li + li{
        border-top:1px solid var(--border-color);
        border-left:none;
    }

    .bn_area li a{
        grid-template-columns: auto auto;
        padding: 1rem;
    }

    /* contents */

    .main-content {
        padding: 4rem 2rem;
    }

    .main-content section table{
        display: block;
        overflow-x: scroll;
    }

    .main-content section table th {
        white-space: nowrap;
    }

    .main-content section table td {
        white-space: nowrap;
    }

    .center .main-content section table{
        overflow-x: unset;
    }

    .center .main-content section table th {
        display: block;
        width: 100%!important;
        white-space: wrap;
        border-top: none;
        border-bottom: none;
    }

    .center .main-content section table tr:first-child th {
        border-top: 1px solid var(--border-color);
    }

    .center .main-content section table td {
        display: block;
        width: 100%;
        white-space: wrap;
        border-top: none;
    }

    .books .main-content section table{
        overflow-x: unset;
    }

    .books .main-content section table th {
        display: block;
        width: 100%!important;
        text-align: center;
        white-space: wrap;
        border-top: none;
        border-bottom: none;
    }

    .books .main-content section table tr:first-child th {
        border-top: 1px solid var(--border-color);
    }

    .books .main-content section table td {
        display: block;
        width: 100%;
        white-space: wrap;
        border-top: none;
    }

    .main-content section+section {
        padding: 4rem 0 0;
    }

    .main-content .right_img {
        float: none;
        margin: 0 auto 1rem
    }

    .main-content section .page_link{
        gap: 1rem;
    }
    
    .main-content section .page_link li{
        width: 100%;
    }
    
    .main-content section .page_link li a{
        grid-template-columns: 1fr;
        padding: .8rem .5rem;
        font-size: 1.2rem;
    }

    .main-content .link{
        padding: 4rem 0;
    }
    
    .main-content .link a{
        padding: 2rem 6rem;
    }

    .main-content .news_box a{
        gap: 1rem;
        padding: 2rem 0;
    }
    
    .main-content .news_box a h3{
        grid-column: span 2;
    }
    
    .top .main-content{
        padding: 0 0 4rem;
        border-top:none;
    }
    
    .top .main-content h2{
        padding: 2rem 0;
        font-size: 2rem;
    }
    
    .top .main-content .news_box{
        grid-template-columns: 1fr;
    }


    .top .main-content .news_box a {
        display: grid;
        grid-template-rows: subgrid;
        grid-template-columns: 160px 1fr;
        gap: .5rem;
        height: 140px;
        padding: 0 2rem 2rem;
        font-size: 1.4rem;
    }
    
    .top .main-content .news_box a:nth-child(odd){
        border-right: none;
    }
    
    .top .main-content .news_box a .news-date{
        font-size: 1.2rem;
    }
    
    .top .main-content .news_box a h3{
        min-height: unset;
        font-size: 1.8rem;
        text-overflow: unset;
        -webkit-line-clamp: unset;
        -webkit-box-orient: unset;
    }

    .top_add{
        padding: 0 1rem;
        font-size: 1.8rem;
        line-height: 1.8;
    }
    
    .top_add h2{
        font-size: 2.4rem!important;
    }
}

