@charset "UTF-8";
/* CSS Document */

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
	font-weight: 500;
    line-height: 210%;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Verdana, Meiryo, sans-serif;
/*    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;*/
     -moz-font-feature-settings: "palt";
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
    background-color: #FFF;
    color: #333333;
	text-align: left;
}

wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 70%;
    
    pointer-events: none;
    
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

a {
    color: #327DD5;
    text-decoration: underline;
}

button {
    font-family: "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "Helvetica", Arial, "メイリオ", Meiryo, sans-serif;
    border: none;
    cursor: pointer;
}

.pc-no {
    display: none;
}

.sp-no {
    display: inline-block;
}

.fade {
	opacity: 1.0;
	transition: all 0.3s ease-in-out;
}

.fade:hover {
    opacity: 0.5;
}

.korean {
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
}

.header {
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0;
    position: fixed;
    overflow: visible;
    top: 0;
    left: 0;
    z-index: 10;
    line-height: 100%;
    background-color: #FFF;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.3);
}

.header a {
    text-decoration: none;
    color: #000;
}

.header .hdr-top,.header .hdr-bot {
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;
    overflow: visible;  
    line-height: 70%;
    display: flex;
    align-items: flex-end;
}

.header .hdr-wrap {
    width: 98%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .hdr-logo {
    width: 20%;
    max-width: 250px;
}

.header .hdr-logo a {
    width: 100%;
    display: block;
}

.header .hdr-right {
    width: 70%;
    display: flex;
    justify-content: flex-end;
}

.sub-nav {
    display: none;
}

.header ul.hdrsns-list {
    width: 20%;
    max-width: 200px;
    margin: 0 2% 0 0;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.header ul.hdrsns-list li {
    width: 18%;
}

.header ul.hdrsns-list li a {
    width: 100%;
    display: block;
}

.lang-dropdown {
    width: 15%;
    max-width: 120px;
    margin: 0;
    padding: 0;
    position: relative;
}

.lang-dropdown .lang-btn {
    width: 100%;
    margin: 0 auto;
    padding: 10px 8%;
    position: relative;
    overflow: hidden;
    z-index: 6;
    text-align: left;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.lang-dropdown .lang-btn:hover {
    background-color: #999999;
}
.lang-dropdown .lang-btn:after {
    content: "";
    width: 10px;
    height: 10px;
    margin: 0 0 0 10px;
    display: inline-block;
    background-image: url("../img/common/hdr_lang-arr-d.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-dropdown .lang-dropdown-list {
    width: 100%;
    height: 0%;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 1;
    top: 35px;
    left: 0;
    overflow: hidden;
    font-size: 80%;
    background-color: #F5F4EA;
    
    display: block;
    opacity: 0;
    transition: all 0.2s;
}

.lang-dropdown.active .lang-dropdown-list {
    height: auto;
    opacity: 1.0;
    transition: all 0.2s;
}

.header .lang-dropdown .lang-dropdown-list a {
    width: 90%;
    margin: 0 auto;
    padding: 10px 5%;
    display: block;
    transition: all 0.2s;
}
.header .lang-dropdown .lang-dropdown-list a:hover {
    color: #FFF;
    background-color: #000;
}
.header .lang-dropdown .lang-dropdown-list .korean {
    font-family: "Noto Sans KR", sans-serif;
    font-weight: bold;
}

.main-nav {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 70%;
}

.header ul.nav-list {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1.1em;
}

@media screen and (min-width: 961px) and (max-width: 1050px) {

.header ul.nav-list {
    font-size: 0.9em;
}

}

.header ul.nav-list > li.nav-expand {
    width: calc(100%/7);
    text-align: center;
    background-color: transparent;    
    transition: all 0.3s ease-in-out;
}

.header ul.nav-list li.nav-expand:hover {
    background-color: #999999;
}

li.nav-expand input.expand-check[type=checkbox] {
    display: none;
}

li.nav-expand .dropbtn {
    width: 100% !important;
    padding: 15px 0;
    display: block;
    cursor: pointer;
    transition: all 0.3s;
}

li.nav-expand:hover .dropbtn {
    color: #FFF;
}

.header ul.nav-list > li.no-ex {
    display: none;
}

li.nav-expand .dropdown {
    width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    overflow: hidden;
    list-style: none;
    background-color: rgb(00 00 00 / 90%);
    color: #FFF;
    
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

li.nav-expand:hover .dropdown {
    padding: 30px 0;
    height: 180%;
    opacity: 100%;
}

li.nav-expand .dropdown a {
    color: #FFF;
}

.dropdown .dd-wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.dropdown .dd-wrap .dd-title {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    position: relative;
    overflow: hidden;    
    font-size: 210%;
    line-height: 120%;
    text-align: left;
}

.dropdown .dd-wrap .dd-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;   
}

.dropdown .dd-wrap .dd-list ul.dd-nav {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;    
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.dropdown .dd-wrap .dd-list ul.dd-nav li {
    width: 23%;
    margin: 0 1% 20px 0;
    border: solid 1px #FFF;
    text-align: center;
}

.dropdown .dd-wrap .dd-list ul.dd-nav li:nth-child(4n+4) {
    margin: 0 0 20px;
}

.dropdown .dd-wrap .dd-list ul.dd-nav li a {
    width: 100%;
    display: block;
    padding: 15px 0;
    transition: all 0.3s;
}

.dropdown .dd-wrap .dd-list ul.dd-nav li:hover a{
    background-color: #FFF;
    color: #000;
}

.sp-nav {
    display: none;
}

/***MAIN****/

.main {
    width: 100%;
    min-height: 1000px;
    margin: 90px 0 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.main-wrap {
    width: 100%;
    margin: 0;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section.sec {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
}
section.beige-sec {
    background-color: #F5F4EA;
}
section.sub-sec {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
}
section.sub-sec:last-child {
    margin: 0;
}

.sec-wrap {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.page .sec:first-child .sec-wrap {
    padding: 0 0 100px;
}

.page-header {
    width: 100%;
    margin: 0;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-color: #333333;
    background-size: cover;
    background-position: center;
}
.page-header#ph-about {/***歴民館について***/
    background-image: url("../img/common/page-header/about_bk.jpg");
}
.page-header#ph-collection {/***収蔵資料***/
    background-image: url("../img/common/page-header/collection_bk.jpg");
}
.page-header#ph-contact {/***お問い合わせ***/
    background-image: url("../img/common/page-header/contact_bk.jpg");
}
.page-header#ph-events {/***講座・模様し***/
    background-image: url("../img/common/page-header/events_bk.jpg");
}
.page-header#ph-exhibits {/***展示***/
    background-image: url("../img/common/page-header/exhibits_bk.jpg");
}
.page-header#ph-guide {/***ご利用案内***/
    background-image: url("../img/common/page-header/guide_bk.jpg");
}
.page-header#ph-news {/***お知らせ***/
    background-image: url("../img/common/page-header/news_bk.jpg");
}
.page-header#ph-publications {/***刊行物・グッズ***/
    background-image: url("../img/common/page-header/publications_bk.jpg");
}
.page-header#ph-sites {/***岡豊城跡・山村民家***/
    background-image: url("../img/common/page-header/sites_bk.jpg");
}
.page-header#ph-other {/***その他***/
    background-image: url("../img/common/page-header/other_bk.jpg");
}
.page-header#ph-sitemap {/***サイトマップ***/
    background-image: url("../img/common/page-header/sitemap_bk.jpg");
}

.page-header h1.page-title {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 2.6em;
    line-height: 140%;
    color: #FFF;
}

.pankuzu {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 80%;
}

.page h2,
.page h3,
.page h4,
.page h5 {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-weight: bold;
    line-height: 160%;
}
section.event-space h2 {
    margin: 0 0 20px;
}

.page h2 {font-size: 2.6em;}
.page h3 {font-size: 2.4em;}
.page h4 {font-size: 2.2em; margin: 0 0 30px;}
.page h5 {font-size: 2.0em;}
.page h6 {font-size: 1.4em; margin: 0 0 10px;}

.page h2.exhibit-title {margin: 0 0 20px;}
.page h4.exhibit-mds {font-size: 1.8em;}

.mds-l {
    text-align: left !important;
}

.hd-mincho {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

h6.box-mds {
    width: 100%;
    margin: 0 0 5px;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 120%;
    line-height: 160%;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
h6.box-mds:before {
    content: "";
    width: 15px;
    height: 15px;
    margin: 8px 5px 0 0;
    display: inline-block;
    background-color: #000;
    flex-shrink: 0;
}
.page p {
    margin: 0 0 20px;
}
section.event-space p {
    margin: 0;
}
.layout_parts p {
    margin: 0;
}

.page ul {
    list-style: disc;
}
.page ul li {
    margin: 0 0 5px;
    padding: 0;
}
.page ul li:last-child {
    margin: 0;
}

.page dl {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1px;
}
.page dl dt,.page dl dd {
    margin: 0;
    padding: 10px;
    margin-inline-start: 0;
    display: block;
}
.page dl dt {
    width: 30%;
    background-color: #EBDEB2;
    color: #333333;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page dl dd {
    width: 60%;
    background-color: #F5F4EA;
    text-align: left;
}

.page table {
    width: 90%;
    margin: 10px 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    border-spacing: 1px;
    color: #333333;
    font-size: 90%;
}

.page table th,table td {
    padding: 20px 15px;
}

.page table th {
    background-color: #EBDEB2;
    font-weight: bold;
    text-align: center;
}

.page table td {
    background-color: #F5F4EA;
}

.btn {
    width: 80%;
    max-width: 300px;
    margin: 30px auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #327DD5;
    border-radius: 60px;
    text-align: center;
    font-size: 110%;
    line-height: 110%;
    font-weight: bold;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    color: #FFF;
}
.btn:hover {
    letter-spacing: 0.05em;
    background-color: #00418d;
}
.btn a {
    width: 100%;
    display: block;
    padding: 20px 0;
    color: #FFF;
    text-decoration: none;
}
button.btn {
    padding: 20px 0;
}

.side-btn {
    max-width: 220px;
    margin: 0;
    font-size: 100%;
}


.top-img {
    width: 100%;
    margin: 0 auto 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.intro-txt {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

ul.list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    background-color: #F5F4EA;
}
ul.list > li {
    width: 95%;
    margin: 0 auto;
    padding: 15px 2.5%;
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #CCCCCC;
    display: flex;
    justify-content: space-between;
    line-height: 180%;
}
ul.list > li:first-child {
    border-top: solid 1px #CCCCCC;
}
ul.list > li .list-l {
    width: 10%;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
ul.list > li .list-r {
    width: 90%;
}

ul.box-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
}
ul.box-list li {
    width: 98%;
    margin: 0 0 10px 2%;
    padding: 0;
    position: relative;
    overflow: visible;
}
ul.box-list li:last-child {
    margin: 0 0 10px 2%;
}
ul.box-list li:before {
    content: "";
    width: 10px;
    height: 10px;
    margin: 5px 5px 0 -15px;
    
    display: inline-block;
    background-color: #000;
    flex-shrink: 0;
}

.flex-2 {
    width: 100%;
    margin: 0 0 60px; 
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.flex-2 > div {
    width: 49%;
}

.flex-2 .flex-item {
}

.flex-2 .flex-item a {
    width: 100%;
    display: block;
    text-decoration: none;
    color: #000;
    transition: all 0.3s;
}

.flex-2 .flex-item a:hover {
    opacity: 0.5;
}

.flex-item .flex-img {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    line-height: 70%;
}

.flex-item .img-txt {
    font-size: 80%;
    text-align: center;
}

.flex-item .flex-info {
    width: 90%;
    min-height: 150px;
    margin: 0 auto;
    padding: 20px 5%;
    position: relative;
    overflow: hidden;
    background-color: #F5F4EA;
}

.flex-item .flex-info h4.flex-mds {
    width: 100%;
    margin: 0 0 10px;
    text-align: left;
    font-size: 1.8em;
    line-height: 120%;
}

a.link {
    color: #327DD5 !important;
    text-decoration: underline !important;
}


/***FOOTER***/

.pagetop {
    width: 10%;
    max-width: 100px;
    position: fixed;
    right: 0%;
    bottom: 25%;
    z-index: 10;
    line-height: 0%;
    opacity: 1.0;
	cursor: pointer;
    
    transition: all 0.3s;
}

.pagetop:hover {
    opacity: 0.5;
}

.sticky {
	position: fixed;
    bottom: 2%;
}

.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #EDEDED;
}

.footer .ftr-wrap {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.footer .ftr-top {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.footer .ftr-top .ftr-logo {
    width: 20%;
}

.footer .ftr-top ul.ftr-sns {
    width: 40%;
    max-width: 400px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 0 10px;
}
.footer .ftr-top ul.ftr-sns li {
    width: 10%;
}
.footer .ftr-top ul.ftr-sns li a {
    width: 100%;
    display: block;
}

.footer .ftr-bot {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.footer .ftr-bot .ftrb-left {
    width: 48%;
    display: flex;
    justify-content: space-between;
    font-size: 80%;
    line-height: 160%;
}

.footer .ftr-bot .ftrb-left .ftrb-contact {
    width: 42%;
}

.footer .ftr-bot .ftrb-left .ftrb-info {
    width: 55%;
}

.footer .ftr-bot .ftrb-right {
    width: 48%;
}

ul.ftrnav-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-between;
    font-size: 80%;
    line-height: 180%;
}

ul.ftrnav-list li {
    width: 22%;
    margin: 0 auto;
    padding: 0 2%;
    border-right: solid 1px #000;
}

ul.ftrnav-list li:first-child {
    border-left: solid 1px #000;
}

ul.ftrnav-list li a {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
}
ul.ftrnav-list li a:hover {
    color: #327DD5;    
}

.footer .copyright {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    text-align: center;
    font-size: 70%;
    letter-spacing: 0.1em;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/***SEARCHBOX***/

.search {
    width: 80%;
    margin: 0 auto 60px;
    padding: 20px 5%;
    position: relative;
    overflow: hidden;
    background-color: #F5F4EA;
    border-radius: 10px;
}
input.search-opener[type=checkbox] {
    display: none;
}
.search-open {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: all 0.3s;
}
.search-open:hover {
    opacity: 0.5;    
}
h3.search-hd {
    width: 98%;
    margin: 0 auto;
    padding: 10px 1%;
    position: relative;
    overflow: hidden;
    color: #333333;
    font-size: 180%;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
h3.search-hd:after {
    content: "";
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url("../img/common/search_d-arr.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s;
}
input.search-opener[type=checkbox]:checked ~ .search-open h3.search-hd:after {
    transform: rotateX(-180deg);
}
.search-box {
    margin:0;
	padding: 0;
    height: 0;
    transition: all 0.3s;
    opacity: 0;
}
input.search-opener[type=checkbox]:checked ~ .search-box {
    height: 100%;
	padding: 20px 0;
	opacity: 1.0;
}

.search ul.search-list {
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    font-size: 90%;
}
.search ul.search-list li {
    width: 96%;
    margin: 0 auto;
    padding: 10px 2%;
    position: relative;
    overflow: hidden;
    border-bottom: dotted 1px #707070;
    display: flex;
    justify-content: space-between;
}
.search ul.search-list li .s-l {
    width: 25%;
    font-weight: bold;
}
.search ul.search-list li .s-r {
    width: 75%;
}
.s-r select.pulldown {
    min-width: 200px;
    padding: 5px 10px;
    border: solid 1px #333333;
    border-radius: 5px;
}
.s-r .s-cat-box {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 100%;
    line-height: 120%;
}
.s-r .s-cat-box .s-cat {
    margin: 0 5px 10px 0;
    padding: 5px 10px;
    border: solid 1px #333333;
    background-color: #FFF;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.s-r .s-keyword {
    width: 80%;
    padding: 10px;
    border: solid 1px #333333;
    border-radius: 5px;
}

.search .enter-space {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
}
.search .enter-space .btn {
    width: 40%; 
    font-size: 90%;
    padding: 15px 0;
}
.search .enter-space .btn.wh-btn {
    border: solid 2px #327DD5;
    background-color: #FFF;
    color: #327DD5;
}

/***NEWS***/

ul.news-list {
    width: 100%;
    min-height: 300px;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    font-size: 100%;
}

ul.news-list li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #707070;
}

ul.news-list li a {
    width: 95%;
    margin: 0 auto;
    padding: 10px 2.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;    
/*    background-color: #FFF;*/
    color: #333333;
    text-decoration: none;
    transition: all 0.3s;
}
ul.news-list li a:hover {
    background-color: #f1f1f1;
}

ul.news-list li a .date {
    width: auto;
    font-size: 90%;
}

ul.news-list li a .cat {
    width: 10%;
    max-width: 90px;
    padding: 5px 0;
    text-align: center;
    background-color: grey;
    font-size: 80%;
    line-height: 110%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cat.cat-news {
    background-color: #C6DDF4 !important;
}
.cat.cat-imp {
    background-color: #F78D8D !important;
}

ul.news-list li a .title {
    width: 73%;
}

.article-info {
    width: 80%;
    max-width: 500px;
    margin: 0 auto 100px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}
.article-info:nth-child(2n) {
    margin: 0 auto 30px;
}
.article-info .cat {
    width: 40%;
    margin: 0 auto 20px;
    text-align: center !important;
}
.article-info .date,.article-info .location,.article-info .gakugeiin {
    width: 100%;
    font-size: 110%;
    font-weight: bold;
    text-align: center !important;
}
.article-info:nth-child(3n) .date {
    width: 100%;
    font-size: 140% !important;
    font-weight: normal !important;
    margin: 30px 0 0;
}

.article-info .gakugeiin:before {
    content: "学芸員：";
    display: inline-content;
    margin: 0 10px 0 0;
}

.article-contents {
    width: 90%;
    min-height: 500px;
    margin: 0 auto 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #c4c4c4;
}

button.article-btn {
    margin: 30px auto 0;
    padding: 10px 0;
    display: block;
    
}

/***EVENTS***/

ul.event-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

ul.event-pc {
    display: flex;
}

ul.event-sp {
    display: none;
}

ul.event-list li {
    width: 23%;
    margin: 0 0 30px;
    padding: 0 1%;
    transition: all 0.3s;
}

ul.event-list li:hover {
    opacity: 0.5;
}

ul.event-list li a {
    width: 100%;
    display: block;
}

ul.event-list li a .event-img {
    width: 100%;
    line-height:70%;
    border: solid 1px #d5d5d5;
}

ul.event-list li a .event-info {
    width: 90%;
    min-height: 170px;
    margin: 0 auto;
    padding: 10px 5%;
    background-color: #FFF;
    border: solid 1px #FFF;
}

ul.event-list li a .event-info .cat {
    width: 50%;
    padding: 5px 0;
    background-color: grey;
    text-align: center;
    font-size: 80%;
    line-height: 120%;
    color: #FFF;
}

ul.event-list li a .event-info .date {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 90%;
}

ul.event-list li a .event-info h3.title {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 100%;
    font-weight: bold;
}

/***EXHIBIT CATEGORIES****/

/**企画展**/
.cat-kikaku {background-color:#D3EAC0 !important;}
/**コーナー展**/
.cat-corner {background-color:#FFD2A0 !important;}
/**ミニギャラリー**/
.cat-mini {background-color:#BDD8F4 !important;}

.cat-kikaku,.cat-corner,.cat-mini { color: #000 !important;}




/***EVENT CATEGORIES***/

/**展示関連企画**/
.cat-exhibit {background-color:#523930 !important;}
/**教育普及**/
.cat-edu {background-color:#283B6F !important;}
/**地域との連携**/
.cat-comm {background-color:#817448 !important;}
/**山村民家**/
.cat-yama {background-color:#4B6F40 !important;}
/**その他**/
.cat-other {background-color:#7A5583 !important;}

.cat-exhibit,.cat-edu,.cat-comm,.cat-yama,.cat-other { color: #FFF !important;}



/***PUBLICATION CATEGORIES***/

/**年報**/
.cat-report {background-color:#4B6F40 !important;}
/**館だより**/
.cat-dayori {background-color:#283B6F !important;}
/**紀要・資料目録**/
.cat-research {background-color:#7B5583 !important;}
/**図録**/
.cat-illust {background-color:#598C91 !important;}
/**オリジナルグッズ**/
.cat-goods {background-color:#C46B4A !important;}

.cat-report,.cat-dayori,.cat-research,.cat-illust,.cat-goods { color: #FFF !important;}

/***PAGINATION***/

.pagination-area {
	width: 80%;
	max-width: 300px;
	margin:60px auto 0;
	padding: 0;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.pagination-area .pagination {
	width: 14%;
	height: 40px;
	margin: 0;
	text-align: center;
	color: #0065A4;
	border: solid 1px #327DD5;
    background-color: #327DD5;
	font-size: 100%;
	line-height: 240%;
    border-radius: 60px;
}
.pagination-area .pagination a {
	width: 100%;
	height: 100%;
	display: block;
	color:#FFF;
    text-decoration: none;
    transition: all 0.3s;
}
.pagination-area .page-here {
	color: #327DD5;
    background-color: #FFF;
}
.pagination-area .page-here a {
    color: #FFF;
}

/***OTHER CONTENT***/

ul.contents-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0 10px;
}

ul.contents-list li {
    width: 32%;
    margin: 0 0 30px;
    position: relative;
    overflow: visible;
}
ul.contents-list li:last-child {
    margin: 0 0 30px
}

ul.contents-list li a {
    width: 100%;
    display: block;
    transition: all 0.3s;
}
ul.contents-list li a:hover {
    opacity: 0.5;
}

ul.contents-list li a .img {
    width: 100%;
    line-height: 70%;
}

ul.contents-list li a .cont-name {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgb(0 0 0 / 70%);
    text-align: center;
    color: #FFF;
    font-size: 120%;
    font-weight: bold;
    z-index: 5;
}

/***OTHER CONTENT (SUB CONTENT) ***/

ul.sub-content {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

ul.sub-content li {
    width: 25%;
    margin: 0;
    padding: 0;
    overflow: visible;
    border-right: solid 1px #707070;
}

ul.sub-content li:last-child {
    border-right: none;
}

ul.sub-content li a {
    width: 75%;
    margin: 0 auto;
    padding: 20px 5%;
    display: block;
    transition: all 0.3s;
    background-color: #FFF;
}
ul.sub-content li a:hover {
    background-color: #f1f1f1;
}

ul.sub-content li a .img {
    width: 100%;
    margin: 0 0 10px;
    display: block;
    line-height: 70%;
}

ul.sub-content li a .title {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 110%;
    font-weight: bold;
    text-align: center;
}

ul.sub-content li a .txt {
    width: 100%;
    min-height: 100px;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 90%;
    line-height: 210%;
}


.underconstruction {
    width: 80%;
    max-width: 800px;
    margin: 100px auto 0;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border: solid 5px #d6d6d6;
    text-align: center;
    font-size: 120%;
    font-weight: bold;
}