@charset "utf-8";


/*-----------------------------------------------
 common
-----------------------------------------------*/
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	background: #fff;
	font-family: Yu Mincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #000;
	line-height: 22px;
}

html {
    font-size: 100%;
    width: 100%;
    height: 100%;
}

body {
    font-size: .8rem;
}

h1 {
	color:#000;
	font-size: 1.4rem;
}

h2 {
	color:#ffffff;
	font-size: 1.2rem;
}

h3 {
	color:#ffffff;
	font-size: 1.2rem;
}

h4 {
	margin: 40px 0;
	padding: 0;
	font-weight: 700;
	font-size: 1.4rem;
}

img { 
	border-style: none; 
}

a img { 
	border-style: none; 
}

a { 
	text-decoration: none;
	outline: none;
}

a:link { 
	color: #000; 
}

a:visited { 
	color: #000; 
}

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

a:active { 
	color: #000; 
}

p { 
	text-align:left; 
}

.bold { 
	font-weight: bold; 
}

ul {
	margin: 0;
	padding: 0;
	list-style-type: disc; 
}

li {
	margin: 0;
	padding: 0;
}

.clear { 
	clear: both; 
}

.clear hr { 
	display: none; 
}


/*-----------------------------------------------
 header
-----------------------------------------------*/

#header hr {
	border-top: 2px solid #FFF;
	width: 95%;
}

/*-----------------------------------------------
 logo
-----------------------------------------------*/

#main_name {
	position: relative;
}
#main_name .om {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: 0.5s;
}

#main_name a:hover .om {
	opacity: 1;
	background-color: #000000;
	width: 100%;
}

/*-----------------------------------------------
 main menu
-----------------------------------------------*/

.om-effect {
	position: relative;
	background-color: #000000;
	border: none;
}
.om-effect .om {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: 0.5s;
}

.om-effect a:hover .om {
	opacity: 1;
	background-color: #000000;
	width: 100%;
	height: 100%;
	margin-top: 5px;
}

@media screen and (max-width: 768px) {
}

#nav-drawer {
    position: absolute;
    margin: 25px 0 0 20px;/* ハンバーガーアイコンの位置 */
    left: 10px;
	z-index: 9999;
}

#nav-drawer ul {
    list-style: none;
    font-size: 2rem;
    line-height: 4rem;
    padding-left: 40px;
}

#nav-drawer ul li a {
    color: #fff;/* ドロワー内文字色 */
    text-decoration: none;
}

/* チェックボックス等は非表示に */
.nav-unshown {
	display: none;
}

/* アイコンのスペース */
#nav-open {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
}

/* ハンバーガーアイコンをCSSだけで表現 */
#nav-open span, #nav-open span:before, #nav-open span:after {
	position: absolute;
	height: 2px;/* アイコンの線の太さ */
	width: 25px;/* アイコンの線の長さ */
	border-radius: 3px;
	background: #fff;/* アイコンの色 */
	display: block;
	content: '';
	cursor: pointer;
}

#nav-open span:before {
	bottom: -8px;
}

#nav-open span:after {
	bottom: -16px;
}

/* 閉じる用の薄黒カバー */
#nav-close {
	display: none;/* はじめは隠しておく */
	position: fixed;
	z-index: 99;
	top: 0;/* 全体に広がるように */
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}

/* 中身 */
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;/* 最前面に */
	width: 90%;/* 右側に隙間を作る（閉じるカバーを表示） */
	max-width: 340px;/* ドロワーの最大幅（調整してください） */
	height: 100%;
	background: #000000;/* ドロワーの背景色 */
	transition: .3s ease-in-out;/* 滑らかに表示 */
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/* 左に隠しておく */
}

/* チェックが入ったらもろもろ表示 */
#nav-input:checked ~ #nav-close {
	display: block;/* カバーを表示 */
	opacity: .5;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/* 中身を表示（右へスライド） */
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/*-----------------------------------------------
 container
-----------------------------------------------*/
.container{
	text-align: center;
}

.honbun{
	text-align: left;
	margin-bottom: 0px;
}

.honbun-title{
	text-align: left;
	margin: 30px 0;
	font-weight: bold;
}

section {
	margin: 30px 0;
}

section h5 {
	padding: 0;
	font-size: 1.2rem;
}

section .read{
	margin: 20px 0;
	font-weight: bold;
	font-size: 1rem;
}

section p {
	margin: 30px 0;
}

.title {
	color: #000;
}

.title-floor {
	color: #000;
	font-size: .8rem;
	line-height: 18px;
}

.photo{
	width: 70%;
	margin: 30px auto;
}

.floor-head{
	font-size: 1.1rem;
	line-height: 24px;
	text-align: left;
}

.fes-head{
	font-size: 1.1rem;
	line-height: 24px;
	text-align: left;
}