﻿@charset "utf-8";

html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
/*	font-weight: normal;*/
	font-size: 100%;
	vertical-align:baseline;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
article, header, footer, aside, figure, figcaption, nav, section { 
	display:block;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
br.sp {
	display:none;
}
br.pc {
	display:block;
}


body {
                                font-size:16px;
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color:#333;
}
ol, ul {
	list-style: none;
	list-style-type: none;
}

a {
	color:#005773;
}
a:hover {
	color:#005773;
                                opacity:0.5;
}


header,
section,
footer {
	width:100%;
	margin:0 auto;
	clear:both;
}



/*ハンバーガーメニューの設定↓*/

div.hamburger-menu {
	display:none;
}

/*ハンバーガーボタン*/
.menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #99bcc7;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display:black;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

/*ハンバーガーメニュー*/
.menu-content {
    width: 100%;
    height: 1000px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 0 0 0;
	text-align:center;
    background-color: #fff;
    height: 1000px;
}
.menu-content ul li {
                                display: table;
                                height:60px;
                                border-bottom: solid 1px #9abcc8;
                                border-right: solid 1px #9abcc8;
                                list-style: none;
                                padding:0 0;
                                float:left;
}
.menu-content ul li a {
                                display: table-cell;
                                vertical-align:middle;
                                width: 100%;
                                font-size: 15px;
                                font-weight:bold;
                                box-sizing: border-box;
                                text-decoration: none;
}

.menu-content ul li.w50 {
                                width:50%;
}
.menu-content ul li.w50 a.w50 {
                                width:50%;
}
.menu-content ul li.w50 a.w33 {
                                width:33%;
}
.menu-content ul li.w50 img {
                                width:30px;
                                height:30px;
                                margin:0;
                                padding:0;
}

.menu-content ul li.w33 {
                                width:33%; 
                                float:left;
}
.menu-content ul li.w34 {
                                width:34%; 
                                float:left;
}

.menu-content ul li.w34 a.ticket  {
                                background:url(../images/icon_ticket2.png) no-repeat 15px center;
                                background-size:22px 19px;
                                padding-left:15px;
}
.menu-content ul li.w33 a.access  {
                                background:url(../images/icon_access2.png) no-repeat 20px center;
                                background-size:14px 21px;
                                padding-left:15px;
}
.menu-content ul li.w33 a.note  {
                                background:url(../images/icon_note2.png) no-repeat 20px center;
                                background-size:14px 18px;
                                padding-left:15px;
}
.menu-content ul li.lang  {
                                display:inline;
                                width:100%;
                                vertical-align:middle;
                                text-align:center;
                                padding-top:20px;
}
.menu-content ul li.lang a  {
                                display:inline;
                                padding:0 0;
}

.menu-content ul li.search  {
                                height:80px;
                                display:table-cell;
                                width:100%;
                                vertical-align:middle;
                                text-align:center;
                                padding-top:23px;
}
.menu-content ul li.search input[type="text"] {
                               margin:0;
                                padding:0;
                                width:70%;
                                height:30px;
                                vertical-align:middle;
                                border:0;
                                border-radius:5px 0 0 5px;
                               background-color:#ddd;
}
.menu-content ul li.search input[type="submit"] {
                                width:auto;
                                height:30px;
                                background:url(../images/icon_search.png) no-repeat center center;
                                 background-size:15px 15px;
                               background-color:#fff;
                                padding:0 15px;
                                border-radius:0 5px 5px 0;
                                vertical-align:middle;
                                border:0;
                               background-color:#ddd;
}
.menu-content ul li.search input[type="submit"]:hover {
                                cursor: pointer;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 80px;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #fff;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
/*ハンバーガーメニューの設定終わり↑*/


/*メインビジュアル*/
/*section#mainvisual{
	width: 100%;
	height: 697px;
	background-color: #e7e6e6;
	padding: 50px 0 50px 0;
}

.slide{
	position: relative;
	overflow: hidden;
	width: 1080px;
	height: 450px;
	margin: auto;


}
 
.slide img{
	display: block;
	position: absolute;
	width: inherit;
	height: inherit;
	opacity: 0;
	animation: slideAnime 9s ease infinite;
}
 
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 3s }
.slide img:nth-of-type(3) { animation-delay: 6s }
.slide img:nth-of-type(4) { animation-delay: 9s }
.slide img:nth-of-type(5) { animation-delay: 12s }
 
@keyframes slideAnime{
	0% { opacity: 0 }
	3% { opacity: 1 }
	33% { opacity: 1 }
	36% { opacity: 0 }
	100% { opacity: 0 }
}*/


/*CSSスライドショー設定
---------------------------------------------------------------------------*/
/*2枚目*/
@keyframes slide1 {
	0% { opacity: 0 }
	10% { opacity: 0 }
	20% { opacity: 1 }
	30% { opacity: 1 }
	40% { opacity: 0 }
	50% { opacity: 0 }
	60% { opacity: 0 }
	70% { opacity: 0 }
	80% { opacity: 0 }
	90% { opacity: 0 }
	100% { opacity: 0 }
}
/*3枚目*/
@keyframes slide2 {
	0% { opacity: 0 }
	10% { opacity: 0 }
	20% { opacity: 0 }
	30% { opacity: 0 }
	40% { opacity: 1 }
	50% { opacity: 1 }
	60% { opacity: 0 }
	70% { opacity: 0 }
	80% { opacity: 0 }
	90% { opacity: 0 }
	100% { opacity: 0 }
}
/*4枚目*/
@keyframes slide3 {
	0% { opacity: 0 }
	10% { opacity: 0 }
	20% { opacity: 0 }
	30% { opacity: 0 }
	40% { opacity: 0 }
	50% { opacity: 0 }
	60% { opacity: 1 }
	70% { opacity: 1 }
	80% { opacity: 0 }
	90% { opacity: 0 }
	100% { opacity: 0 }
}
/*5枚目*/
@keyframes slide4 {
	0% { opacity: 0 }
	10% { opacity: 0 }
	20% { opacity: 0 }
	30% { opacity: 0 }
	40% { opacity: 0 }
	50% { opacity: 0 }
	60% { opacity: 0 }
	70% { opacity: 0 }
	80% { opacity: 1 }
	90% { opacity: 1 }
	100% { opacity: 0 }
}

/*mainimg
---------------------------------------------------------------------------*/
/*画像ブロック*/
#top_mainimg {
	height:450px;
                                background-color:#e6eff1;
}
#top_mainimg, #slide {
	clear: both;
	margin: 0 auto;
	position: relative;	/*※マニュアル用に追加*/
                                background-color:#e6eff1;
                                text-align:center;
}
/*subimgブロックの画像*/
#top_mainimg img {
                                display:block;
	width: 1080px;
	margin: 0 auto;
}
.slide1,.slide2,.slide3,.slide4 {
	animation-duration: 20s;
	animation-iteration-count:infinite;
	position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                width: 1080px;
	margin: 0 ;
	animation-fill-mode: both;
	animation-timing-function: linear;
	animation-delay: 1s;
}
/*1枚目*/
.slide0 {
                                display:block;
	position: relative;
                                width: 1080px;
                                height: 450px;
	margin: 0 auto;
}
/*2枚目*/
.slide1 {animation-name: slide1;}
/*3枚目*/
.slide2 {animation-name: slide2;}
/*4枚目*/
.slide3 {animation-name: slide3;}
/*5枚目*/
.slide4 {animation-name: slide4;}


/*--------------------header--------------------*/

header{
	height:215px;
                                background:url(../images/header_bg.jpg) repeat center center;
}
header div#header {
                                width:1080px;
 	height:215px;
                               margin:0 auto;
	position:relative;
}
header div#header h1 {
	position:absolute;
                                top:34px;
                                left:0;
}
header div#header p.language {
	position:absolute;
                                top:15px;
                                right:0;
                                font-size:14px;
	color:#fff;
                                opacity:0.7;
}
header div#header p.language a {
	color:#fff;
                                text-decoration:none;
                                opacity:0.9;
}
header div#header p.language a:hover {
                                text-decoration:underline;
                                opacity:0.5;
}
header div#header ul.submenu {
	position:absolute;
                                top:85px;
                                right:0;
}
header div#header ul.submenu li {
	float:left;
                                font-size:14px;
	color:#fff;
                                opacity:0.7;
                                margin-left:20px;
}
header div#header ul.submenu li.text {
                                margin-top:5px;
}
header div#header ul.submenu li a {
	color:#fff;
                                text-decoration:none;
                                vertical-align:top;
}

header div#header ul.submenu li a.ticket {
                                background:url(../images/icon_ticket.png) no-repeat left center;
                                background-size:22px 19px;
                                padding:5px 0 5px 30px;
}
header div#header ul.submenu li a.access {
                                background:url(../images/icon_access.png) no-repeat left center;
                                background-size:14px 21px;
                                padding:5px 0 5px 20px;
}
header div#header ul.submenu li a.note {
                                background:url(../images/icon_note.png) no-repeat left center;
                                background-size:14px 18px;
                                padding:5px 0 5px 20px;
}
header div#header ul.submenu li input {
                               margin:0;
                                padding:0;
                                height:25px;
                                vertical-align:top;
                                border:0;
                                border-radius:5px 0 0 5px;
}
header div#header ul.submenu li input[type="submit"] {
                                background:url(../images/icon_search.png) no-repeat center center;
                                 background-size:15px 15px;
                               background-color:#fff;
                                padding:0 15px;
                                border-radius:0 5px 5px 0;
}
header div#header ul.submenu li input[type="submit"]:hover {
                                cursor: pointer;
}

header div#header p.menu {
                               display:none;
}


/*--------------------globalmenu--------------------*/

header div#globalmenu {
                                position:absolute; 
                                bottom:0;
                                left:0;
                                width:1078px;
                                background-color:#fff;
}
header div#globalmenu li {
                                 width:154px;
	float:left;
                                font-weight:bold;
                                background:url(../images/header_shikiri.gif) no-repeat right center;
                                padding-bottom:5px;
}
header div#globalmenu li:last-child {
                               background:none;
}
header div#globalmenu li a {
                                display:block;
                                text-align:center;
                               text-decoration:none;
                                padding:27px 0 22px 0;
}
header div#globalmenu li.active {
                                 width:154px;
	float:left;
                                font-weight:bold;
                                background:url(../images/header_shikiri.gif) no-repeat right center;
                                padding-bottom:5px;
	background-color:#003140;
}
header div#globalmenu li.active a {
                                display:block;
                                text-align:center;
                               text-decoration:none;
                                padding:27px 0 22px 0;
	color:#fff;
}




/*--------------------top_mainimg--------------------*/

section#top_mainimg{
	height:450px;
                                background-color:#e6eff1;
}
section#top_mainimg p {
                                width:1080px; 
                                margin:0 auto;
}




/*--------------------top_cal--------------------*/

section#top_cal{
	height:90px;
                                margin-bottom:50px;
                                box-shadow: 0 3px 5px rgba(0,0,0,0.1);;
}
div#top_calender{
                                width:1080px; 
	height:90px;
                               margin:0 auto;              
                                display: table;
}
div#top_calender p.today{
                                display: table-cell;
                                vertical-align: middle;
                                font-size:18px;
                                line-height:1.4;
                                font-weight:bold;
}
div#top_calender p.today span.open {
                                font-size:18px;
                                font-weight:bold;
	background-color:#e6eff1;
	padding:2px 5px;
}
div#top_calender p.today span.close {
                                font-size:18px;
                                font-weight:normal;
	background-color:#aaaaaa;
	color:#fff;
	padding:2px 5px;
}
div#top_calender p.today span{
                                font-size:14px;
                                font-weight:normal;
}
div#top_calender p.cal_link{
                                display: table-cell;
                                vertical-align: middle;
                                text-align:right;
                                font-size:14px;
}
div#top_calender p.cal_link a {
                                background:url(../images/icon_cal.gif) no-repeat left center;
                                background-size:20px 18px;
                                text-decoration:none;
                                padding:5px 0 5px 26px;
}


/*--------------------top_important--------------------*/

section#top_important{
	width:1080px;
	margin:0 auto 50px auto;
}
section#top_important h2 {
	display:inline-block;
                                background-color:#d00000;
                                color:#fff;
                                font-size:22px;
                                padding:15px 50px;
}
section#top_important ul {
                                background-color:#fdf2f2;
                                color:#d00000;
                                font-size:20px;
                                line-height:1.5;
                                padding:25px 30px;
}
section#top_important ul a {
                                color:#d00000;
                                text-decoration:none;
}



/*--------------------top_exhibition--------------------*/

section#top_exhibition{
	width:1080px;
	margin:0 auto;
}

h4.top_exhibition_category {
	display:none;
}


section#top_exhibition div.category_title {
                                padding-bottom:8px;
	border-bottom:5px solid #003140;
}
section#top_exhibition div.category_title h2 {
                                font-size:22px;
                                float:left;
}
section#top_exhibition div.category_title p {
                                font-size:14px;
                                padding-top:5px;
                                float:right;
}
section#top_exhibition div.category_title p a {
                                background:url(../images/icon_arrow.png) no-repeat left center;
                                 background-size:15px 13px;
                                padding-left:20px;
                               text-decoration:none;
}

section#top_exhibition div.top_exhibition {
                                background-color:#e6eff1;
                                margin-top:20px;
}
section#top_exhibition div.top_exhibition p.img {
                                float:left;
                                line-height:0;
                                display:block;
                                width:300px;
/*                                width:200px;*/
}
section#top_exhibition div.top_exhibition p.img img {
                                width:300px;
                                height:109px;
/*                                width:200px;
                                height:200px;*/
}
section#top_exhibition div.exhibition_title {
                                width:780px; 
/*                                width:820px; */
                                float:left; 
                                padding:20px 25px;
}
section#top_exhibition div.top_exhibition h4 {
                                background-color:#003140;
                                color:#fff;
                                display:inline-block;
                                padding:5px 8px;
                                font-size:13px;
}
section#top_exhibition div.top_exhibition h3,
section#top_exhibition div.top_exhibition p {
                                font-size:20px;
                                line-height:1.5;
}
section#top_exhibition div.top_exhibition span {
                                font-size:16px;
}
section#top_exhibition div.exhibition_title a {
                                text-decoration:none;
}
section#top_exhibition p.top_exhibition_link {
                                display:none;
}



/*--------------------top_submenu--------------------*/

section#top_submenu{
	width:1080px;
	margin:50px auto;
}
section#top_submenu div {
	width:320px;
	margin:0 60px 0 0;
                                float:left;
                                background-color:#e6eff1;
}

section#top_submenu div:last-child {
                               margin-right:0;
}

section#top_submenu div p.top_submenu_img {
	width:320px; 
                                height:170px; 
}
section#top_submenu div p.permanent {
                                background:url(../images/top_permanent.jpg) no-repeat center center;
                                background-size:cover;
}
section#top_submenu div p.museumshop {
                                background:url(../images/top_museumshop.jpg) no-repeat center center;
                                background-size:cover;
}
section#top_submenu div p.cafe {
                                background:url(../images/top_cafe.jpg) no-repeat center center;
                                background-size:cover;
}

section#top_submenu div p.top_submenu_title {
                                font-size:18px;
                               display:block;
                                padding:15px;
                                background:url(../images/icon_arrow.png) no-repeat 14px center;
                                 background-size:15px 13px;
                                padding-left:35px;
                               text-decoration:none;
}
section#top_submenu a {
                                text-decoration:none;
}



/*--------------------top_infoevent--------------------*/

section#top_infoevent{
                                background:url(../images/text_bg.jpg) repeat center center;
}
div#top_infoevent{
                                width:1080px; 
                                margin:0 auto; 
                                padding:40px 0;
}

div#top_info{
	width:520px;
                                margin-right:40px;
                                float:left;
}
div#top_info h2 {
	display:inline-block;
                                background-color:#ad5d1c;
                                color:#fff;
                                font-size:22px;
                                padding:15px 50px;
}
div#top_info p.list {
	float:right;
                                 margin-top:25px;
                                font-size:14px;
}
div#top_info p.list a {
                                background:url(../images/icon_arrow.png) no-repeat left center;
                                 background-size:15px 13px;
                                 padding:0 5px 0 20px;
                              text-decoration:none;

}

div#top_info div.top_info_list,
div#top_event div.top_info_list {
	display:none;
}

div#top_info dl {
	background-color:#fff; 
                                padding:20px; 
                                font-size:16px; 
                                line-height:1.5;

}
div#top_info dt {
	width:23%;
                                float:left;

}
div#top_info dd {
	width:77%;
                                float:left;
                                margin-bottom:25px;
}
div#top_info dd:last-child {
                               margin-bottom:0;
}
div#top_info dd a {
	text-decoration:none;
}


div#top_event{
	width:520px;
                                float:left;
}
div#top_event h2 {
	display:inline-block;
                                background-color:#a38f0d;
                                color:#fff;
                                font-size:22px;
                                padding:15px 50px;
}
div#top_event p.list {
	float:right;
                                 margin-top:25px;
                                font-size:14px;
}
div#top_event p.list a {
                                background:url(../images/icon_arrow.png) no-repeat left center;
                                 background-size:15px 13px;
                                 padding:0 5px 0 20px;
                              text-decoration:none;

}

div#top_event ul {
	background-color:#fff; 
                                padding:20px; 
                                font-size:16px; 
                                line-height:1.5;

}
div#top_event li {
                                margin-bottom:25px;
                                list-style-type:disc;
                                margin-left:20px;
}
div#top_event li:last-child {
                               margin-bottom:0;
}
div#top_event li a {
	text-decoration:none;
}




/*--------------------top_banner--------------------*/

section#top_banner{
	width:1080px;
	margin:0 auto;
	padding:80px 0 50px 0;
}
section#top_banner ul {
}
section#top_banner li {
                                float:left;
	margin:0 26px 30px 0;
                                line-height:0;
}
section#top_banner li:nth-of-type(4n) {
	margin-right:0;
}
section#top_banner li img {
                                width:250px;
                                height:80px;
}



/*--------------------pagetop--------------------*/

section#pagetop{
                                background-color:#e6eff1;
}
section#pagetop p a {
                                display:block;
                                width:100%;
                                padding:18px;
                                text-align:center;
                                text-decoration:none;
                                font-size:14px;
}
section#pagetop a span {
                                background:url(../images/pagetop_arrow.png) no-repeat 0 0;
                                background-size:13px 15px;
                                padding-left:18px;
}



/*--------------------footer--------------------*/

footer{
                                background-color:#00445a;
                                color:#fff;
                                font-size:16px;
                                line-height:1.7;
                                padding:50px 0;
}

footer div#footer{
                                width:1080px; 
                                margin:0 auto;
}
footer div#footer_left{
                                width:50%; 
                                float:left;
}
footer div#footer_left h1,
footer div#footer_left p {
                                margin-bottom:2em;
}
footer div#footer_left p img {
                                margin:2em 2em 0 0;
}
footer div#footer_left p a img {
                                opacity:0.8;
}
footer div#footer_center,
footer div#footer_right {
                                width:25%; 
                                float:left;
}




footer ul {
                                margin-bottom:27px;
}
footer a {
                                color:#fff;
                                text-decoration:none;
}
footer a:hover {
                                color:#fff;
                                opacity:0.5;
}
footer p.copyright {
                                width:1080px;
                                margin:0 auto;
                                font-size:14px;
                                color:#ccdde3;
                                opacity:0.5;
}






@media screen and (max-width: 767px) {

body{
}

br.pc {
	display:none;
}
br.sp {
                                display:block;
}
div.hamburger-menu {
	display:block;
}


/*--------------------sp-header--------------------*/
header{
	height:80px;
                                position:fixed;
                                z-index:100;
}
header div#header {
                                width:100%;
	height:auto;
}
header div#header h1 {
                                top:15px;
                                left:2.5%;
}
header div#header h1 img {
	height:50px;
}
header div#header p.language,
header div#header ul.submenu,
header div#globalmenu,
section#top_mainimg {
	display:none;
}

header div#header p.menu {
	display:block;
                                float:right;
}
header div#header p.menu img {
                                width:80px;
                                height:80px;
}



/*--------------------sp-top_cal--------------------*/
section#top_cal{
	height:80px;
                                padding-top:80px;
                                margin-bottom:15px;
}
div#top_calender{
                                width:100%; 
	height:80px;
                                position:relative;
}
div#top_calender p.today{
                                font-size:16px;
                                line-height:1.2;
                                padding-left:2.5%;
}
div#top_calender p.today span{
                                font-size:13px;
}

div#top_calender p.cal_link {
}


div#top_calender p.cal_link{
                                text-align:center;
                                font-size:8px;
                                line-height:1.1;
                                padding-top:18px;
                                position:absolute;
                                top:23px; right:2.5%;
                                font-feature-settings: "palt";
                                z-index:99;
}
div#top_calender p.cal_link a {
                                background:url(../images/icon_cal.gif) no-repeat 6px 11px;
                                background-size:20px 18px;
                                text-decoration:none;
                                padding:33px 0 5px 0;
                                font-weight:bold;
}


/*--------------------sp-top_important--------------------*/
section#top_important{
	width:95%;
	margin:0 auto 0 auto;
}
section#top_important h2 {
                                font-size:16px;
                                padding:10px 15px;
}
section#top_important ul {
                                font-size:18px;
                                padding:15px 20px;
}


/*--------------------sp-top_exhibition--------------------*/
section#top_exhibition{
                                width:95%;
	margin:0 auto;
}

section#top_exhibition div.top_exhibition {
                                margin-top:0px;
}

section#top_exhibition div.category_title,
section#top_exhibition div.top_exhibition h4.pc {
	display:none;
}
h4.top_exhibition_category {
                                display:block;
                                color:#fff;
                                font-size:13px;
                                border-bottom:4px solid #003140;
                                margin-top:20px;
}
h4.top_exhibition_category span {
                                display:inline-block;
                                background-color:#003140;
                                padding:5px 12px;
}

section#top_exhibition div.top_exhibition p.img {
                                float:none;
                                display:block;
                                width:100%;
	margin:0 auto 0 auto;
}
section#top_exhibition div.top_exhibition p.img img{
                                width:100%;
                                height:auto;
	margin:0 auto 0 auto;
}
section#top_exhibition div.exhibition_title {
                                width:100%;
                                float:none; 
                                padding:15px 20px;
}

section#top_exhibition div.top_exhibition h4 {
                                background-color:#003140;
                                color:#fff;
                                display:inline-block;
                                padding:5px 8px;
                                font-size:13px;
}

section#top_exhibition div.top_exhibition h3 {
                                font-size:18px;
                                line-height:1.5;
}
section#top_exhibition div.top_exhibition p {
                                font-size:16px;
                                line-height:1.5;
}
section#top_exhibition div.top_exhibition a {
                                text-decoration:none;
}

section#top_exhibition p.top_exhibition_link {
                                display:block;
                                width:100%; 
                                margin:20px 0;
}
section#top_exhibition p.top_exhibition_link a {
                                display:block; 
                                text-align:center; 
                                padding:20px 0; 
                                border:2px solid #005773; 
                                background-color:#e6eff1; 
                                border-radius:10px; 
                                text-decoration:none;
                                font-weight:bold;
                                 background-size:15px 13px;
}
section#top_exhibition p.top_exhibition_link a img {
                                width:15px;
                                height:13px;
                                margin-right:5px;
}

/*--------------------sp-top_submenu--------------------*/
section#top_submenu{
	width:95%;
	margin:50px auto;
}
section#top_submenu div {
	width:100%;
	margin:10px auto;
}
section#top_submenu div p.top_submenu_img {
	width:100%; 
}


/*--------------------sp-top_infoevent--------------------*/
div#top_infoevent{
                                width:95%; 
                                padding:30px 0 30px 0;
}
div#top_info,
div#top_event{
	width:100%;
                                margin-right:0;
                                margin-bottom:0;
                                float:none;
}
div#top_info{
                                margin-bottom:20px;
}
div#top_info h2,
div#top_event h2 {
                                font-size:16px;
                                padding:10px 15px;
}

div#top_info p.list,
div#top_event p.list {
	display:none;
}

div#top_info div.top_info_list,
div#top_event div.top_info_list {
                                display:block;
	background-color:#fff;
}
div#top_info div.top_info_list p,
div#top_event div.top_info_list p {
                                display:block;
                                width:95%; 
                                margin:0 auto;
                                padding:20px 0;
}
div#top_info div.top_info_list p a,
div#top_event div.top_info_list p a {
                                display:block; 
                                text-align:center; 
                                padding:20px 0; 
                                border:2px solid #005773; 
                                background-color:#e6eff1; 
                                border-radius:10px; 
                                text-decoration:none;
                                font-weight:bold;
                                 background-size:15px 13px;
}
div#top_info div.top_info_list p a img,
div#top_event div.top_info_list p a img {
                                width:15px;
                                height:13px;
                                margin-right:5px;
}

div#top_info dt {
	width:100%;
                                float:none;
                                font-weight:bold;
}
div#top_info dd {
	width:100%;
                                float:none;
}


/*--------------------sp-top_banner--------------------*/
section#top_banner{
	width:90%;
	margin:0 auto;
	padding:80px 0 50px 0;
}
section#top_banner li {
                                float:left;
                                width:48%;
	margin:0 4% 30px 0;
                                line-height:0;
}
section#top_banner li img {
                                width:100%;
                                height:auto;
}
section#top_banner li:nth-of-type(2n) {
	margin-right:0;
}


/*--------------------sp-footer--------------------*/
footer{
                                padding-bottom:25px;
}

footer div#footer{
                                width:90%; 
}
footer div#footer_left{
                                width:100%; 
                                float:none;
}
footer div#footer_center,
footer div#footer_right {
                                margin-top:20px;
                                margin-bottom:50px;
                                width:45%; 
                                float:left;
}
footer div#footer_center {
                                margin-right:10%;
}

footer p.copyright {
                                width:90%;
                                padding-top:0;
                                font-size:14px;
                                color:#ccdde3;
}
























}




