@charset "utf-8";

/*google fontsの読み込み*/
@import url('https://fonts.googleapis.com/css?family=Poiret+One&display=swap');

/*slide.cssの読み込み*/
@import url(slide.css);

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: rgba(230, 230, 230, 1);	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: rgba(255,255,255,1);	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
/* table {border-collapse:collapse;font-size: 100%;border-spacing: 0;} */
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #fff;		/*リンクテキストの色*/
	transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。*/
}
a:hover {
	color: rgba(253,239,242,0.8);			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。*/
}

/*container。サイト全体を囲むブロック
---------------------------------------------------------------------------*/
/*containerブロック共通*/
#container {
	position: fixed;
	width: 100%;
	height: 100%;
}
/*history.htmlの背景画像指定*/
.history #container {
	background: url(../images/home-top2.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/home-top2.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*ossuary.htmlの背景画像指定*/
.ossuary #container {
	background: url(../images/ossuary1.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/ossuary1.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*ossuary2.htmlの背景画像指定*/
.ossuary2 #container {
	background: url(../images/sq-ossuary-i.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/sq-ossuary-i.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*ossuary3.htmlの背景画像指定*/
.ossuary3 #container {
	background: url(../images/sq-ossuary-ro.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/sq-ossuary-ro.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*ossuary4.htmlの背景画像指定*/
.ossuary4 #container {
	background: url(../images/sq-ossuary-ha.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/sq-ossuary-ha.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*ossuary5.htmlの背景画像指定*/
.ossuary5 #container {
	background: url(../images/sq-ossuary-kojin.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/sq-ossuary-kojin.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*festival.htmlの背景画像指定*/
.festival #container {
	background: url(../images/home-top1.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/home-top1.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*access.htmlの背景画像指定*/
.access #container {
	background: url(../images/home-top3.jpg) no-repeat center center / cover;
}

/*contentsブロック
---------------------------------------------------------------------------*/
#contents {
	height: 100%;
	width: 100%;
}
/*トップページのcontentsブロック。お知らせブロックの表示箇所*/
.home #contents {
	height: auto;
	position: absolute;
	width: 100%;
	bottom: 0px;
	right: 0%;
}

/*header（大きな端末用：左ブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header.pc {
	position: fixed;
	left: 0px;
	top:0px;
	z-index: 100;
	width: 100px;
	height: 100%;
	border-right: 1px solid #fff;	
	border-right: 1px solid rgba(255,255,255,0.5);
	transition: 1s;	/*hover時に１秒かけて動く*/
	background-color: rgba(200,200,200,0.7);
}
/*マウスオン時のheaderブロック*/
header.pc:hover {
	width: 20%;	/*幅*/
	overflow: auto;	/*ウィンドウの高さよりコンテンツが増えた場合に切れないように自動でスクロールバーを出す設定*/
	background-color: white;
	background-color: rgba(200,200,200,0.5);
}
/*ロゴ画像ブロック*/
header.pc .logo {
	text-align: center;	/*内容をセンタリング*/
	border-bottom: 1px solid #fff;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	height: 100px;
}
header.pc .logo img {
	width: 100px;	/*画像の幅。マウスオン時に同じ大きさを保つ為。*/
	padding-top: 25px;
}
/*header内のp(段落)タグ*/
header.pc p {
	padding: 10px;	/*余白*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	font-size: 14px;	/*文字サイズ*/
	position: relative;
}
#menubar li a {
	display:  block;text-decoration: none;
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色（古いブラウザ用）*/
	border-bottom: 1px solid rgba(255,255,255,0.5);	/*下線の幅、線種、色。255,255,255は白の事で0.3は色が30%出た状態の事。*/
	width: auto;	/*幅*/
	height: 100px;	/*高さ*/
	padding-left: 80px;	/*左に空ける余白*/
}
/*マウスオン時*/
header:hover #menubar li a:hover {
	background-color: rgba(200,200,200,0.5);
	color: black;				/*文字色*/
}
/*現在表示中メニュー（current）*/
#menubar li.current a {
	background-color: rgba(200,200,200,0.5);
}
/*テキスト*/
#menubar li a span {
	display: none;	/*通常時は非表示*/
}
/*マウスオン時のテキスト*/
header:hover #menubar li a span {
	display: block;	/*表示させる*/
	padding-top: 40px;
}
/*メニュー用アイコン設定（menu1〜memu4までの共通設定）*/
.menuimg a {
	width: 60px;
	height: 60px;
	display: inline-block;
	/* background-image: url(../images/icon.png); */
	background-repeat: no-repeat;
	background-size: 60px 300px;
}
/*menu1*/
.menu1 a {
	background-position: 42px 42px;
	background-image: url(../images/icon_home.png);
	background-size: 16px;
	}
/*menu2*/
.menu2 a {
	background-position: 42px 42px;
	background-image: url(../images/icon_book.png);
	background-size: 16px;
}
/*menu3*/
.menu3 a {
	background-position: 42px 42px;
	background-image: url(../images/icon_oss.png);
	background-size: 16px;
}
/*menu4*/
.menu4 a {
	background-position: 42px 42px;
	background-image: url(../images/icon_fes.png);
	background-size: 16px;
}
/*menu5*/
.menu5 a {
	background-position: 42px 42px;
	background-image: url(../images/icon_about.png);
	background-size: 16px;
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*SNSアイコンブロック
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	text-align: center;	/*内容をセンタリング*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色（古いブラウザ用）*/
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding: 10px 0;
}
/*アイコン１個あたりの設定*/
header .icon li {
	display: inline;	/*横並びにさせる指定*/
}
/*アイコン画像の設定*/
header .icon img {
	width: 20%;
}

/*mainブロック
---------------------------------------------------------------------------*/
/*アニメーション設定------------------------*/
@keyframes main {
/*0コマ目*/
	0% {
		opacity: 0;
		top: 20px;
	}
/*100コマ目*/
	100% {
		opacity: 1;
		top: 0px;
	}
}
/*mainブロック*/
#main {
	overflow: auto;
	padding: 2% 5% 0 15%;
	height: 98%;
	animation-duration: 0.5S;	/*アニメーションの実行時間。秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを、完了後は最後のキーフレームを維持する*/
	animation-name: main;		/*上のアニメーション設定で使っているkeyframesの名前。contents。*/
	animation-delay: 0.5s;		/*アニメーションを遅れて開始させる指定。
	*/
	position: relative;
}
/*h2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	font-size: 24px;
	letter-spacing: 0.2em;
	color: #fff;
}
/*h2タグの１文字目への指定*/
#main h2::first-letter {
	border-left: 3px solid #fff;
	padding-left: 20px;
}
/*h2タグにclass="title"をつけたタイプ。大見出し。*/
#main h2.title {
	font-family: 'Poiret One';	/*冒頭のgoogle fontsの指定*/
	font-size: 60px;
	margin-bottom: 40px;
	border-bottom: 1px solid #fff;
}
#main h2.title::first-letter {
	border-left: none;
	padding-left: 0;
}
/*h2タグにclass="title"をつけたタイプ内にあるspanタグ*/
#main h2.title span {
	display: block;
	font-size: 15px;
	float: right;		/*右に回り込み*/
	margin-top: 60px;
}
/*段落(p)タグ*/
#main p {
	padding: 0 20px 20px;
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	clear: both;
	padding-top: 40px;
}

/*listブロック（ossuary.htmlで使用）
---------------------------------------------------------------------------*/
/*各ボックスの指定*/
.list {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 30%;
	margin-left: 2.5%;
	margin-bottom: 20px;
	background: #000;
}
.list a {
	display: block;
	text-decoration: none;
}
/*マウスオン時*/
.list a:hover {
	color: #fff;
}
/*リンクを指定した際に右上に出る「→」*/
.list a::after {
	content: "→";	/*この文字を出力。変更不可*/
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 12px;
	line-height: 30px;	/*行間。下のwidthと揃える。*/
	width: 30px;		/*幅。上のline-heightと揃える。*/
	border-radius: 50%;
	background: #ccc;	
	color: #000;
	text-align: center;
}
/*figure画像*/
.list a figure {
	opacity: 0.6;	/*リンクを指定した際は60%だけ色を出す。*/
}
/*マウスオン時のfigure画像*/
.list a:hover figure {
	opacity: 1;		/*リンクを指定した際のマウスオン時に色を100%出す。*/
	transform:scale(1.02, 1.02);
  transition:1s all;
  z-index: 1;
}
/*h4タグ*/
.list h4 {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	background: #000;
	background: rgba(0,0,0,0.8);
	text-align: center;
	padding: 10px 0;
	font-size: 15px;
}

/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;
	padding: 30px 0;
}
.home footer {padding-bottom: 10px;}
footer a {text-decoration: none;}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/

#new {
	background-color: rgba(0,0,0,0.3);
}

/*見出しを含まないお知らせブロック*/
#new dl {
	height: 100px;		/*高さ*/
	overflow: hidden;	/*高さを超えるコンテンツ量部分は非表示に*/
}
/*ブロックのマウスオン時*/
#new dl:hover {
	overflow: auto;	/*スクロールバーを自動で表示*/
}
/*日付設定*/
#new dt {
	float: left;	/*左に回り込み*/
	width: 9em;
	letter-spacing: 0.2em;
	font-size: 12px;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	font-size: 12px;
}



/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*トップページでは非表示に。*/
.home .nav-fix-pos-pagetop a {
	display: none;
}
/*設定*/
.nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 40px;
	line-height: 40px;
	bottom: 20px;		/*ウィンドウの下から20pxの場所に配置*/
	right: 3%;			/*ウィンドウの右から3%の場所に配置*/
	background: rgba(255,255,255,1);
	color: black;
	border-radius: 50%;
}
/*マウスオン時の背景色*/
.nav-fix-pos-pagetop a:hover {
	background: rgba(255,255,255,0.6);
	color: black;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*box
---------------------------------------------------------------------------*/
.box {
	background: #000;		/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);
	padding: 5%;
	margin-bottom: 30px;
	border: 1px solid #fff;		/*線の幅、線種、色（古いブラウザ用）*/
	border: 1px solid rgba(255,255,255,0.3);
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #000;padding: 5px 10px;border-radius: 4px;border: 1px solid #666;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #448db3 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
#pagetop {display: block;margin-top: -2%;padding-top: 2%;}



/*追記
---------------------------------------------------------------------------*/

.fade {
	opacity: 0;
	transition: 2s;
}
	
.fade-in {
	opacity: 1;
}

.history-upper-container {
	border-bottom: 1px solid white;
	padding-bottom: 15px;
}

.preface {
	padding-bottom: 30px;
}

.preface h1 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}

.preface p {
	font-size: 18px;
	margin-left: 5px;
}

.history-middle-container {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 60px;
	padding-bottom: 45px;
}

.history-image {
	width: 45%;
	text-align: center;
}

.history-image img {
	vertical-align: middle;
}

.history-image .wrap {
	overflow: hidden;
}

.history-image p {
	font-size: 12px;
}

.history-downer-container1 {
	margin-top: 45px;
	border-bottom: 1px solid white;
}

.history-downer-container2 {
	padding-bottom: 45px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	border-bottom: 1px solid white;
}

.history-downer-container2 .downer-contents {
	width: 45%;
}

.downer-contents-image p {
	font-size: 12px;
}


.flex {
	display: flex;
	height: auto;
	align-items: flex-start;
}

.downer-contents p {
	font-size: 16px;
}

.sources-container {
	margin-top: 45px;
	padding-bottom: 45px;
}

.sources-container h1 {
	font-size: 20px;
	padding-bottom: 10px;
}

.sources-container h3{
	font-size: 18px;
	padding-bottom: 10px;
}

.sources-container p {
	font-size: 16px;
}

.greet-container {
	border-bottom: 1px solid white;
	padding-bottom: 30px;
}

.greet-title {
	margin-left: 20px;
}

.greet-title h1 {
	font-size: 20px;
	font-weight: bold;
}

.greet-contents {
	display: flex;
	margin-top: 20px;
	height: auto;
	align-items: flex-start;
}

.greet-contents img {
	width: 45%;
	margin-left: auto;
	margin-right: auto;
}

.greet-contents img:hover {
	transform:scale(1.02, 1.02);
  transition:1s all;
  z-index: 1;
}

.greet-contents p {
	width: 47.5%;
	font-size: 16px;
	margin-left: auto;
	margin-right: auto;
}

.season-container {
	border-bottom: 1px solid white;
	padding-bottom: 45px;
}

.season-contents {
	display: flex;
	padding-top: 20px;
}

.contents {
	width: 47.5%;
	margin-left: auto;
	margin-right: auto;
}

.contents h1 {
	font-size: 20px;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 20px;
	text-align: center;
}

.contents p {
	font-size: 16px;
}

.access-container {
	margin-top: 30px;
	border-bottom: 1px solid white;
	padding-bottom: 30px;
}

.access-description {
	padding-bottom: 20px;
}

.access-description:last-child {
	padding: 0;
}

.access-description h1 {
	width: 90%;
	padding-bottom: 20px;
	font-weight: bold;
	font-size: 20px;
}

.access-description p {
	width: 90%;
	font-size: 16px;
}

.map-title {
	width: 90%;
	font-weight: bold;
	font-size: 20px;
}

.access-map {
	margin-top: 20px;
	display: flex;
}

.access-map img {
	width: 45%;
	margin-left: auto;
	margin-right: auto;
}

.access-map iframe {
	width: 45%;
	margin-left: auto;
	margin-right: auto;
}

.temp-name {
	font-size: 20px;
	font-weight: bold;
	padding: 0 0 15px 15px;
}

.address {
	font-size: 16px;
	padding-bottom: 15px;
}

.outlink-container h1 {
	font-size: 20px;
	font-weight: bold;
	padding: 30px 0 15px 15px;
}

.outlink-container p {
	font-size: 18px;
}

.outlink-container a {
	text-decoration: none;
}

.ossuary-description {
	font-size: 16px;
	background-color: rgba(0,0,0,0.7);
	padding-top: 20px;
	margin-bottom: 20px;
}

.shelf-title {
	font-size: 16px;
	padding-bottom: 30px;
	border-bottom: 1px solid white;
}

.shelf-contents {
	width: 95%;
	padding-top: 30px;
	display: flex;
	height: auto;
	align-items: flex-start;
}

.shelf-contents img {
	width: 40%;
	margin-left: auto;
	margin-right: auto;
}

.shelf-contents ul {
	width: 40%;
	margin-left: auto;
	margin-right: auto;
	font-size: 15px;
}

.shelf-contents li:first-child {
	font-size: 20px;
	font-weight: bold;
}

.shelf-contents a {
	text-decoration: none;
}

.fes-text {
	border-bottom: 1px solid white;
	padding-bottom: 30px;
}

.fes-text h1 {
	font-size: 20px;
	font-weight: bold;
	padding-top: 30px;
	padding-bottom: 10px;
}

.fes-text p{
	font-size: 18px;
}

.contents-container {
	border-bottom: 1px solid white;
}

.fes-contents {
	margin-bottom: 20px;
}

.fes-contents h1 {
	margin-top: 50px;
	font-size: 20px;
	font-weight: bold;
}

.fes-content {
	display: flex;
	height: auto;
	align-items: flex-start;
	margin-top: 10px;
}

.fes-content p {
	width: 65%;
	font-size: 18px;
	margin-left: auto;
	margin-right: auto;
}

.fes-content img {
	width: 35%;
	margin-left: auto;
	margin-right: auto;
}

.fes-contents:last-child {
	margin-bottom: 45px;
}

.schedule-container {
	margin-top: 45px;
	width: 80%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

	#new dl {overflow: auto;}

	/*header（小さな端末用：上部ブロック）
	---------------------------------------------------------------------------*/
	/*ロゴ画像ブロック*/
	header.sh .logo {
		width: 100px;	/*ロゴ画像の幅*/
	}

	header.sh .logo img {
		padding-top: 25px;
	}

	/*メインメニュー
	---------------------------------------------------------------------------*/
	/*アニメーションのフレーム設定。
	透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
	@keyframes menubar {
		0% {opacity: 0;}
		100% {opacity: 1;}
	}
	/*スマホ用メニューブロック*/
	#menubar-s {
		display: block;
		position: fixed;
		z-index: 3;
		top: 0px;
		width: 100%;
		height: 100%;
		overflow: auto;
		background: rgba(0,0,0,0.8);
		animation-name: menubar;		/*上のkeyframesの名前*/
		animation-duration: 0.5s;
		animation-fill-mode: both;		/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
		border-top: 1px solid #fff;
	}
	/*navブロックのみの追加指定*/
	#menubar-s nav {
		border-bottom: 1px solid #fff;
		overflow: auto;
	}
	/*メニュー１個あたりの設定*/
	#menubar-s nav li a {
		display: block;text-decoration: none;width: 100%;
		border-bottom: 1px solid #fff;
		font-size: 16px;
		height: 100px;
		height: 60px;
	}
	/*最後のnavメニューの下線を消す*/
	#menubar-s nav li:last-child a {
		border-bottom: none;
	}
	/*テキスト*/
	#menubar-s nav li a span {
		display: block;
		padding-top: 15px;
		padding-left: 80px;
	}
	/*menu1*/
	.menu1 a {
		background-position: 20px 0px;
	}
	.menu1 a {
		background-image: none;
	}
	/*menu2*/
	.menu2 a {
		background-position: 20px -60px;
	}
	.menu2 a {
		background-image: none;
	}
	/*menu3*/
	.menu3 a {
		background-position: 20px -120px;
	}
	.menu3 a {
		background-image: none;
	}
	/*menu4*/
	.menu4 a {
		background-position: 20px -180px;
	}
	.menu4 a {
		background-image: none;
	}
	/*menu5*/
	.menu5 a {
		background-position: 20px -240px;
	}
	.menu5 a {
		background-image: none;
	}
	/*PC用メニューを非表示にする*/
	#menubar {display: none;}

	/*３本バーアイコン設定
	---------------------------------------------------------------------------*/
	/*３本バーブロック*/
	#menubar_hdr {
		display: block;
		position: fixed;
		z-index: 50;
		top: 10px;
		right: 10px;
	}
	/*アイコン共通設定*/
	#menubar_hdr.close,
	#menubar_hdr.open {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		border: 1px solid #fff;
	}
	/*三本バーアイコン*/
	#menubar_hdr.close {
		background: rgba(0,0,0,0.2) url(../images/icon_menu.png) no-repeat center top/50px;
	}
	/*閉じるアイコン*/
	#menubar_hdr.open {
		background: rgba(0,0,0,0.2) url(../images/icon_menu.png) no-repeat center bottom/50px;
		top: 10px;	/*配置場所の再指定*/
	}

	/*SNSのアイコンブロック
	---------------------------------------------------------------------------*/
	/*アイコンを囲むブロック全体の設定*/
	header .icon {
		clear: left;
		border-bottom: 1px solid #fff;
	}
	/*アイコン画像の設定*/
	header .icon img {
		width: 50px;
	}

	/*mainブロック
	---------------------------------------------------------------------------*/
	/*mainブロック*/
	#main {
		padding-left: 3%;
		padding-right: 3%;
	}
	/*h2タグ*/
	#main h2 {
		font-size: 20px;
		letter-spacing: normal;	/*文字間隔を標準に戻す*/
	}
	/*h2タグにclass="title"をつけたタイプ。大見出し。*/
	#main h2.title {
		font-size: 30px;
		margin-bottom: 20px;
	}
	/*h2タグにclass="title"をつけたタイプ内にあるspanタグ*/
	#main h2.title span {
		margin-top: 20px;
	}

	/*footerブロック
	---------------------------------------------------------------------------*/
	footer {padding-bottom: 100px;}
	footer .pr {display: block;}

	/*「更新情報・お知らせ」ブロック
	---------------------------------------------------------------------------*/
	/*見出しを含まないお知らせブロック*/
	#new dl {
		overflow: auto;
	}

	/*その他
	---------------------------------------------------------------------------*/
	.sh {display:block;}
	.pc {display:none;}

		/*追記
	---------------------------------------------------------------------------*/

	.history-upper-container {
		border-bottom: 1px solid white;
		padding-top: 15px;
	}

	.preface h1 {
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 10px;
	}
	
	.preface p {
		font-size: 16px;
		margin-left: 5px;
	}
	
	.history-middle-container {
		display: flex;
		flex-direction: column;
	}
	
	.history-image {
		width: 90%;
	}

	.history-image:first-child {
		margin-bottom: 30px;
	}

	.history-downer-container2 {
		padding-bottom: 45px;
		display: flex;
		flex-direction: column;
		border-bottom: 1px solid white;
	}
	
	.history-downer-container2 .downer-contents {
		width: 100%;
	}

	.downer-contents:first-child {
		width: 90%;
		margin-bottom: 30px;
	}

	.downer-contents p {
		font-size: 16px;
	}
	
	.sources-container {
		margin-top: 30px;
		padding-bottom: 15px;
		padding-left: 15px;
	}
	
	.sources-container h1 {
		font-size: 16px;
		padding-bottom: 10px;
	}
	
	.sources-container h3{
		font-size: 14px;
		padding-bottom: 10px;
	}
	
	.sources-container p {
		font-size: 14px;
	}
	

	.greet-title {
		text-align: center;
	}
	
	.greet-title h1{
		font-size: 18px;
		font-weight: bold;
	}
	
	.greet-contents {
		display: flex;
		flex-direction: column-reverse;
		margin-top: 20px;
		height: auto;
		align-items: flex-start;
	}
	
	.greet-contents img {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.greet-contents p {
		width: 90%;
		font-size: 16px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.season-container {
		border-bottom: 1px solid white;
		padding-bottom: 45px;
	}
	
	.season-contents {
		display: flex;
		flex-direction: column;
		height: auto;
		align-items: flex-start;
		padding-top: 20px;
	}
	
	.contents {
		width: 95%;
		margin-left: auto;
		margin-right: auto;
	}

	.contents:first-child {
		padding-bottom: 30px;
	}
	
	.contents h1 {
		font-size: 18px;
		font-weight: bold;
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: center;
	}
	
	.contents p {
		font-size: 16px;
	}
	
	.access-container {
		border-bottom: 1px solid white;
	}
	
	.access-description {
		padding-bottom: 30px;
	}
	
	.access-description h1 {
		width: 90%;
		padding-bottom: 20px;
		font-weight: bold;
		font-size: 16px;
	}
	
	.access-description p {
		width: 90%;
		font-size: 14px;
	}
	
	.map-title {
		width: 90%;
		padding-top: 20px;
		font-weight: bold;
		font-size: 16px;
	}
	
	.access-map {
		padding: 20px 0 20px;
		display: flex;
		flex-direction: column;
	}
	
	.access-map img {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 20px;
	}
	
	.access-map iframe {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

	.temp-name {
		font-size: 18px;
		font-weight: bold;
		padding: 0 0 15px 15px;
	}
	
	.address {
		font-size: 16px;
		padding-bottom: 15px;
	}
	
	.outlink-container h1 {
		font-size: 18px;
		font-weight: bold;
		padding: 30px 0 15px 15px;
	}
	
	.outlink-container p {
		font-size: 16px;
	}
	
	.outlink-container a {
		text-decoration: none;
	}
	
	
	.ossuary-contents {
		display: flex;
		flex-direction: column;
	}

	.ossuary-contents .list {
		width: 90%;
	}

	.shelf-contents {
		width: 95%;
		padding-top: 30px;
		display: flex;
		flex-direction: column;
	}
	
	.shelf-contents img {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
		padding-left: 5%;
	}

	.shelf-contents ul {
		width: 95%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 20px;
		font-size: 16px;
	}
	
	.shelf-contents li:first-child {
		font-size: 20px;
		font-weight: bold;
	}
	
	.shelf-contents a {
		text-decoration: none;
	}
	
	.box .fes-text p {
		font-size: 16px;
	}

	.fes-contents {
		padding-bottom: 15px;
	}

	.contents-container .fes-contents h1 {
		font-size: 18px;
	}
	
	.fes-content {
		display: flex;
		flex-direction: column;
	}
	
	.contents-container .fes-content p {
		width: 90%;
		font-size: 16px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.fes-content img {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 15px;
	}

	.fes-contents:last-child {
		margin-bottom: 45px;
	}
	
}

/*画面を横向きにした場合の高さが500px以下の場合の設定。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

	/*メインメニュー。小さな端末用メニューを２列に。
	---------------------------------------------------------------------------*/
	/*メニュー１個あたりの設定*/
	#menubar-s nav li a {
		float: left;		/*左に回り込み*/
		width: 50%;
	}

}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

	/*mainブロック
	---------------------------------------------------------------------------*/
	/*h2タグ*/
	#main h2 {
		font-size: 16px;
	}
	/*h2タグにclass="title"をつけたタイプ。大見出し。*/
	#main h2.title {
		font-size: 20px;
	}
	/*h2タグにclass="title"をつけたタイプ内にあるspanタグ*/
	#main h2.title span {
		font-size: 11px;
		margin-top: 10px;
	}
	/*h3タグ*/
	#main h3 {
		font-size: 14px;
	}
	/*段落(p)タグ*/
	#main p {
		padding: 0 10px 20px;
	}
	/*他。微調整。*/
	#main section + section {
		padding-top: 20px;
	}

	/*listブロック
	---------------------------------------------------------------------------*/
	/*リンクを指定した際に右上に出る「→」*/
	.list a::after {
		right: 2px;
		top: 2px;
		line-height: 20px;	/*行間。下のwidthと揃える。*/
		width: 20px;		/*幅。上のline-heightと揃える。*/
	}
	/*h4タグ*/
	.list h4 {
		padding: 0;
	}

	/*その他
	---------------------------------------------------------------------------*/
	.ws,.wl {width: 94%;}
}
