@charset "utf-8";

/* ========== すべて共通 ========== */
/* font-size 16px の時は、0.7rem->11.2px 0.9rem->14.4px 1.3rem->20.8px 1.4rem->22.4px 1.6rem->25.6px 2.4rem->38.4px */
/* font-size 14px の時は、0.7rem->9.8px 0.9rem->12.6px 1.3rem->18.2px 1.4rem->19.6px 1.6rem->22.4px 2.4rem->33.6px */
html, body {
	font-size: 14px;
	font-family: sans-serif;
	color: #393939;
	background: #fffffa;
}
body, div, p, h1, h2, h3, h4, ul, figure {
	margin: 0;
	padding: 0;
}
p, td, th, li {
	line-height: 1.8;
}
table {
    border-collapse: collapse;
}
th, td {
    border: 1px solid #c7c2af;
    padding: 8px;
}
img {
	width: 100%;
	height: auto;
}
a {
	color: #709a00;
}
a:hover {
	color: #95cd00;
}
a:active {
	color: #4b6700;
}
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}
.slideshow {
/*  background-color: rgb(0,0,0); */
/*	height: 465px; */
    min-width: 960px;
    height: 465px;
    overflow: hidden;
    position: relative;

}
.slideshow img {
    display: none;
    position: absolute;
    left: 50%;
    margin-left: -800px;
}
.slideshow-slides {
	height: 100%;
    position: absolute;
    width: 100%;
    /* left は　JavaScript で指定 */
}
.slideshow-slides .slide {
	height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    /* left は　JavaScript で指定 */
}
.slideshow-slides .slide img {
	left: 50%;
    margin-left: -800px;
    position: absolute;
}
.slideshow-nav a,
.slideshow-indicator a {
    overflow: hidden;
}
.slideshow-nav a:before,
.slideshow-indicator a:before {
    content: url(../images/sprites.png);
    display: inline-block;
    font-size: 0;
    line-height: 0;
}
.slideshow-nav a {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    margin-top: -36px;
}
.slideshow-nav a.prev {
    margin-left: -480px;
}
.slideshow-nav a.prev:before {
    margin-top: -20px;
}
.slideshow-nav a.next {
    margin-left: -408px;
}
.slideshow-nav a.next:before {
    margin-left: -80px;
    margin-top: -20px;
}
.slideshow-nav a.disabled {
    display: none;
}
.slideshow-indicator {
    bottom: 30px;
    height: 16px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
}
.slideshow-indicator a {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 3px;
    margin-right: 3px;
}
.slideshow-indicator a.active {
    cursor: default;
}
.slideshow-indicator a:before {
    margin-left: -110px;
}
.slideshow-indicator a.active:before {
    margin-left: -130px;
}
/* JavaScript 無効時 */
.no-js .slideshow img:first-child {
    display: none;
}
.no-js .slideshow {
    height: auto;
}
.no-js .slideshow-slides {
    height: auto;
    position: static;
}
.no-js .slideshow-slides .slide {
    display: block;
    height: auto;
    position: static;
}
.no-js .slideshow-slides .slide img {
    margin: auto;
    position: static;
}
.no-js .slideshow-nav,
.no-js .slideshow-indicator {
    display: none;
}

/* 共通の見出し */
main h1 {
    margin-bottom: 1rem;
	border-bottom: 1px dashed #2d6662;
	font-weight: normal;
	font-size: 1.6rem;
}

.container {
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	max-width: 1000px;
}
section .container {
    display: flex;
    flex-flow: column;
}
@media screen and (min-width: 768px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
    section .container {
        flex-flow: row;
    }
    main {
        flex: 1 1 auto;
    }
    .sidebar {
        flex: 0 0 340px;
    }
}

/* ========== ヘッダー ========== */
header {
	background: #fffffa;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	padding: 10px 0;
	width: 160px;
	height: 37px;
}
.menu-btn {
	padding: 10px 0;
	border: 1px solid #435495;
	border-radius: 4px;
	width: 30px;
	height: 30px;
	background: url(../images/hamburger.png) no-repeat center center;
	background-size: contain;
}

@media screen and (min-width: 768px) {
.header-logo {
	padding: 10px 0;
	width: 200px;
	height: 46px;
}
.menu-btn {
	display: none;
	}
}

/* ========== ナビゲーション ========== */
nav {
	background: #fffffa;
    margin-bottom: 2px;
}
.navbar {
	display: none;
	list-style-type: none;
}
.navbar a {
	display: block;
	padding: 0.6rem 0;
	color: #000;
	text-decoration: none;
}
.navbar a:hover {
    opacity: 0.5;
}

@media screen and (min-width: 768px) {
	.navbar {
		display: flex !important;
	}
	.navbar li {
		flex: 1 1 auto;
		text-align: center;
	}
	.navbar a.nav-current {
		background: #2d6662;
	}
}

/* ========== メインエリア基本レイアウト ========== */
main {
	/* padding-top: 10px; */
	/* padding-bottom: 10px; */
	background: #fffffa;
}

@media screen and (min-width: 768px) {
	main {
		/* padding-top: 10px; */
		/* padding-bottom: 10px; */
	}
}

/* ========== フッター ========== */
footer {
	background: #fffffa;
	font-size: 0.9rem;
	color: #fff;
}
.footer-container {
	padding-top: 20px;
	padding-bottom: 20px;
}
.footer-nav {
	list-style-type: none;
}
.footer-nav li {
	display: inline;
	padding: 0 1rem 0 0;
}
.footer-nav a {
	color: #000;
	text-decoration: none;
}
.footer-nav a:hover {
	opacity: 0.5;
}
.footer-copyright {
    color: #000;
}

/* ========== index トップページ ========== */
/* ホーム */
/* 01facility 施設紹介 */
/* 02guide ご利用案内 */

/* キャッチコピー */
.home-maincopy {
	text-align: center;
	font-size: 2.0rem;
}
/* 削除予定 */
.home-maincopy strong {
	color: #393939;
}

@media screen and (min-width: 768px) {
	.home-maincopy {
		font-size: 2.4rem;
	}
}

.home-color1 {
	color: #f8b173;
}
.home-color2 {
	color: #74b9d9;
}
.home-color3 {
	color: #8bca85;
}
.home-color4 {
	color: #f8817e;
}

/* 見出し */
.home-h2 {
	padding-bottom: 5px;
	margin: 30px 0 10px 0;
	color: #393939;
	border-bottom: 1px dashed #2d6662;
	font-size: 1.3rem;
}

/* お知らせ */
.home-news {
	padding: 30px;
	border-radius: 10px;
    color: #393939;
	background: #fffffa;
}
/* SNS　*/
.sns {
	padding: 20px;
	background: #fffffa;
	border-radius: 10px;
}
.sns-container {
	display: flex;
	flex-flow: column;
}
.sns-item {
    float: left;
    margin: 1px 6px 1px 6px;
    padding: 8px;
    width: 40px;
 	flex-flow: column;
}
.sns-item a {
    text-decoration: none;
}
.sns-item a:hover img {
    opacity: 0.5;
}
.sns-item a:hover .frame {
    border: 1px solid #ccc;
}
.sns-item p {
	margin: 0;
	font-size: 6px;
	color: #666;
}
@media screen and (min-width: 768px) {
	.sns-container {
		flex-flow: row;
	}
	.sns-image {
		flex: 1 1 400px;    
		margin-right: 20px;
	}
	.sns-text {
		flex: 1 1 580px;
	}
}
/* ========== news ニュース ========== */
.wrapper {
    overflow: hidden;    
}
.news-item {
    float: left;
    margin: 6px 0 6px 6px;
    border: 1px solid #ccc;
    padding: 8px;
    width: 160px;
 	flex-flow: column;
}
.news-item h3 {
	margin: 0.5em 0 0.5em 0;
	font-size: 14px;
}
.news-item p {
	margin: 0;
	font-size: 12px;
	color: #666;
}
.news-item a {
    text-decoration: none;
}
.news-item a:hover img {
    opacity: 0.5;
}
.news-item a:hover .frame {
    border: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
	.news-item {
		flex-flow: row;
	}
	.news-text {
		flex: 1 1 580px;
	}    
}

/* ========== 01facility 施設紹介 ========== */
.facility-item {
    float: left;
    margin: 6px 0 6px 6px;
    border: 1px solid #ccc;
    padding: 8px;
    width: 160px;
 	flex-flow: column;
}
.facility-item h3 {
	margin: 0.5em 0 0.5em 0;
	font-size: 14px;
}
.facility-item p {
	margin: 0;
	font-size: 12px;
	color: #666;
}
.facility-item a {
    text-decoration: none;
}
.facility-item a:hover img {
    opacity: 0.5;
}
.facility-item a:hover .frame {
    border: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
	.facility-item {
		flex-flow: row;
	}
	.facility-text {
		flex: 1 1 580px;
	}    
}

/* ========== 02guide ご利用案内 ========== */
.guide-spec a {
    text-decoration: none;
}
.guide-color4 {
	color: #680807;
}

/* ========== 03reserve 予約状況 ========== */
/* 無し */

/* ========== 04service サービス ========== */
/* 未提供 */

/* ========== 05consert 公演 ========== */
.consert {
	padding: 20px;
	background: #fffffa;
	border-radius: 10px;
}
.consert-container {
	display: flex;
	flex-flow: column;
}
.consert-h2 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
.consert-image img {
	border-radius: 10px;
}
.consert-item {
    float: left;
    margin: 6px 0 6px 6px;
    border: 1px solid #ccc;
    padding: 8px;
    width: 120px;
 	flex-flow: column;
}
.consert-item a {
    text-decoration: none;
}
.consert-item a:hover img {
    opacity: 0.5;
}
.consert-item a:hover .frame {
    border: 1px solid #ccc;
}
.consert-item h3 {
	margin: 0.5em 0 0.5em 0;
	font-size: 14px;
}
.consert-item p {
	margin: 0;
	font-size: 12px;
	color: #666;
}
@media screen and (min-width: 768px) {
	.consert-container {
		flex-flow: row wrap;
	}
	.consert-image {
		flex: 1 1 400px;    
		margin-right: 20px;
	}
	.consert-text {
		flex: 1 1 580px;
	}
}

/* ========== 06access アクセス ========== */
/* map */
.map-container {
	display: flex;
	flex-flow: column;
}
.map-image img {
	border-radius: 10px;
}
.map-h2 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
.map-spec {
	list-style-type: none;
}
@media screen and (min-width: 768px) {
	.map-container {
		flex-flow: row;
	}
	.map-image {
		flex: 1 1 400px;    
		margin-right: 20px;
	}
	.map-text {
		flex: 1 1 580px;
	}
}

/* ========== 07contact お問合せ ========== */
.contact-container {
	display: flex;
	flex-flow: column;
    padding: 0;
}
.contact-image img {
	border-radius: 10px;
}
.contact-h2 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
}
.contact-spec {
	list-style-type: none;
}
@media screen and (min-width: 768px) {
	.contact-container {
		flex-flow: row;
        padding: 0;
	}
	.contact-image {
		flex: 1 1 400px;    
		margin-right: 20px;
	}
	.contact-text {
		flex: 1 1 580px;
	}
}
