@charset "utf-8";

body {
	margin: 0px;
	padding: 0px;
	color: #000;
	font-family: 'Noto Serif JP', serif;
	font-size: 15px;	
	line-height: 2;		
	background: #ffffff;
	-webkit-text-size-adjust: none;
	background-repeat: no-repeat;
	background-position: 400px;
}

@media screen and (max-width:480px){
body {
	font-size: 13px;
	line-height: 1.5;
}}


h1,h2,h3,h4,h5,h6,h7,h8,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}



@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;
	transition: 0.5s;	
}
a:hover {
	color: #ba0d0d;			
	text-decoration: none;
}
a:hover img{
    cursor:pointer;
    filter: alpha(opacity=60);        /* ie lt 8 */
    -ms-filter: "alpha(opacity=60)";  /* ie 8 */
    -moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
    -khtml-opacity: 0.6;              /* Safari 1.x */
    opacity:0.6;
    zoom:1;
}

a:hover .overwhite{
    filter: alpha(opacity=100);        /* ie lt 8 */
    -ms-filter: "alpha(opacity=100)";  /* ie 8 */
    -moz-opacity:1;                 /* FF lt 1.5, Netscape */
    -khtml-opacity: 1;              /* Safari 1.x */
    opacity:1;
    zoom:1;
}

/*containerブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1300px;	
	padding: 0 3%;
	margin: 0 auto;
}

/*ヘッダー
---------------------------------------------------------------------------*/

header {
	position: relative;
	color: #000;
	height: 110px;
}

header a {
	color: #fff;
}

header #logo img {
	max-width: 420px;
	width: 50%;
	position: absolute;
	left: 0%;
	top: 18px;
	bottom: 10px;
}

header #tel {
	position: absolute;
	right: 0%;
	top: 25px;
	width: 250px;
}

@media screen and (max-width:800px){
header {
	height: 90px;
}
header #logo img {
	width: 280px;
	top: 10px;
	bottom: 10px;
}

header #tel {
	display: none;
}}

@media screen and (max-width:480px){
header {
	height: 70px;
}
header #logo img {
	width:50%;
	top: 15px;
}}

/*フッター
---------------------------------------------------------------------------*/

footer {
	clear: both;
	text-align: center;
	padding: 10px 0;
	color: #000;
}

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



/*PCメニュー
---------------------------------------------------------------------------*/

#menubar ul {
	margin-left: 0.8%;	
}
#menubar li {
	float: left;
	width: 16%;	
	margin-left: 0.5%;
	font-size: 14px;	
}
#menubar li a {
	display:  block;text-decoration: none;
	color: #000;
	text-align: center;		
	padding: 10px 0px;		
	border-top: 1px solid #525d53;
	border-right: 1px solid #525d53;
	border-left: 1px solid #525d53;	
}
#menubar li a:hover, #menubar li.current a {
	background: #DCDDDD;
	background: linear-gradient(#DCDDDD, #cccece);	
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}


/*タブレットサイズ版メニュー
---------------------------------------------------------------------------*/

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

/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 90px;
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 94%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色（古い端末用に念のため）*/
	background: rgba(0,0,0,0.9);	/*背景色。0,0,0は黒の事で0.9は透明度90%の事。*/
	color: #fff;	/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}


/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 20px;	/*上から36pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(images/icon_menu.png) no-repeat center bottom/50px;
}
}

/*スマホサイズ版メニュー
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){
	
#menubar-s {
	top: 70px;
}
#menubar_hdr {
	top: 15px;
	right: 3%;
}
#menubar_hdr.close,
#menubar_hdr.open {
	width: 40px;	/*幅*/
	height: 40px;	/*高さ*/
}
#menubar_hdr.close {
	background: #fff url(images/icon_menu.png) no-repeat center top/40px;
}
#menubar_hdr.open {
	background: #fff url(images/icon_menu.png) no-repeat center bottom/40px;
}	
	
}


/*コンテンツ（mainブロック外枠）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	background: #fff;	
	padding: 3%;
	border: 1px solid #525d53;
}

@media screen and (max-width:480px){
#contents {
	border-bottom-style: 1px solid #525d53;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	padding-top: 0%;
	padding-right: 0%;
	padding-bottom: 30px;
	padding-left: 0%;
}}


/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: none;
	width: auto;
}

#main p {
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	font-weight: normal;
}

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

#main p {
	padding-right: 10px;
	padding-left: 10px;
}
}

/*mainコンテンツ内タイトル
---------------------------------------------------------------------------*/

/*各ページメインタイトル*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	font-size: 18px;	
	letter-spacing: 0.1em;
	color: #000;		
	background: #EFEFEF;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
}
#main h2 + p{
	margin-top: -10px;
	}

/*ミニタイトル*/
#main h3 {
	margin-left: 20px;
	font-size: 120%;
	margin-top: 0px;
	margin-bottom: 5px;
	font-weight: bold;
	}


/*ページ内大きい文字*/	
#main h5 {
	font-size: 30px;
	padding-right: 15px;
	padding-left: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 130%;
	}

/*タイトルに使ってる分*/	
#main h5.tit {
	font-size: 24px;
	}
/*タイトル上のサブキャッチ*/	
#main h5.subtit {
	padding-top: -10px;
	}	
#main h5.subtit span {
	font-size: 16px;
	}
	
/*チェックインに使ってる分*/	
#main h5.check {
	font-size: 28px;
	padding-left:30px;
	padding-right: 15px;
	margin-top: -20px;
	line-height: 150%;
	}

	
	
@media screen and (max-width:800px){
	
/*ページ内大きい文字*/	
#main h5 {
	font-size: 24px;
}

#main h3 {
	margin-left: 10px;
	}
/*チェックインに使ってる分*/	
#main h5.check {
	font-size: 24px;
	padding-left:25px;
	padding-right: 5px;
	}	
	}
	
@media screen and (max-width:480px){
#main h2, #main h4, #main h7 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}
/*段落タグ設定*/

#main h5 {
	font-size: 20px;
	padding-right: 10px;
	padding-left: 10px;
	}
/*タイトルに使ってる分*/	
#main h5.tit {
	font-size: 18px;
	}
/*タイトル上のサブキャッチ*/	
#main h5.subtit span {
	font-size: 14px;
	}
/*チェックインに使ってる分*/	
#main h5.check {
	font-size: 20px;
	}
}



/*ページの上部へ「↑」ボタン
---------------------------------------------------------------------------*/

body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;
	z-index: 100;
	text-align: center;
	width: 50px;
	line-height: 50px;	
	position: fixed;
	bottom: 50px;
	right: 0%;
	background: #000;	
	background: rgba(0,0,0,0.6);
	color: #fff;
	border: 1px solid #fff;
	animation-name: scroll;	
	animation-duration: 1S;
	animation-fill-mode: forwards;	
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}



/*その他
---------------------------------------------------------------------------*/

.mt30 {margin-top: 30px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.clear {clear: both;}
.p0 {padding:0 !important;}

ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #F00;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}





/*改行設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*PCでは改行させたい＆スマホで改行させたくないときはpcを使用
PCでは改行させたくない＆スマホで改行させたいときはshを使用
*/
.sh {display:none;}
.pc {display:block;}
.br-sp {display: block;}


@media screen and (max-width:800px){
.pc {display:none;}
.sh {display:block;}
.br-sp {display: none;}

}
