@charset "utf-8";


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


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
    margin: 0px;
    padding: 0px;
    color: #111;	/*全体の文字色*/
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
    font-size: 16px;	/*文字サイズ*/
    line-height: 1.5;		/*行間*/
    background-color: #000000;	
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea,select {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%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #111;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #76b1f4;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*containerブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px;	/*サイトの最大幅*/
	padding: 0 3%;		/*上下、左右へのボックス内の余白*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;	/*内容をセンタリング*/
	padding: 40px 3%;	/*上下、左右へのブロック内の余白*/
}
/*ロゴ画像*/
header #logo img {
	width: 350px;	/*画像幅*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	overflow: hidden;
	padding-bottom: 40px;	/*メニューブロックの下の余白。下のコンテンツとの間の余白です。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 25%;		/*メニュー幅。今回４個なので100÷4=25です。５個にしたいなら20%にして下さい。*/
}
#menubar li a {
    display: block;
    text-decoration: none;
    line-height: 2.5;	/*行間を少し広く再設定。デフォルトは冒頭のbody内にあります。*/
    text-align: center;	/*内容をセンタリング*/
    font-size: 18px;	/*背景色（古いブラウザ用）*/
    background-position: 50%;
    background-color: #FEFEFE;	/*背景グラデーション*/
    margin-left: 10px;		/*メニューの左に空けるスペース。メニュー同士の余白になります。*/
    border-style: solid;
    border-width: 1px;	/*角丸のサイズ*/
    box-shadow: 1px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒のことで0.1は色が10%ついた状態のこと。*/
    -webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.1);
    font-weight: bold;
}
/*１個目のメニューへの追加設定*/
#menubar li:first-child a {
	margin-left: 0;	/*左に空けたスペースをリセット*/
}
/*英語表記（飾り文字）*/
#menubar li a span {
    display: block;
    font-size: 12px;			/*文字サイズ*/
    background: #9acd32;	/*背景色*/
    color: #FFF;	/*角丸のサイズ。左上、右上、右下、左下への設定*/
    margin: 0 30px;			/*上、左右への飾り文字の外側に空けるスペース*/
    letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #9acd32;	/*背景色*/
	position: relative;
	top: 1px;		/*現在の場所から下に1pxずらす*/
	left: 1px;		/*現在の場所から右に1pxずらす*/
	color: #fff;	/*背景色*/
}
/*マウスオン時と、現在表示中メニューの飾り文字の設定*/
#menubar li a:hover span, #menubar li.current a span {
	background: #fff;	/*背景色*/
	color: #76b1f4;		/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
    float: left;	/*左に回り込み*/
    width: 100%;		/*幅*/
    padding-bottom: 20px;
}
#contents #main .new {
}

#main .new h2 {
    clear: both;/*見出しの下にとるスペース*/
    font-size: 1.4em;	/*文字サイズ*/
    color: #fff;		/*文字色*/
    text-shadow: 0px 4px 5px #000;	/*テキストの影。右へ、下へ(マイナスがついているのでこの場合は上に向かう)、広げる幅、色。*/
    letter-spacing: 0.1em;
    background-position: right center, url(../../images/bg1.png) ,#ab6723;
    background-repeat: repeat;
    font-weight: bold;
    padding-top: 5px;
    padding-right: 10px;
    padding-left: 20px;
    padding-bottom: 5px;
    background-color: #B57171;
    margin-bottom: 10px;
}

/*段落タグ設定*/
#main p {
    padding-top: 0px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 10px;	/*上、左右、下への余白*/
    color: #FEFEFE;
}


/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list {
    overflow: hidden;
    width: 26.4%;	/*幅*/
    float: left;	/*左に回り込み*/
    margin: 0 0 20px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
    border: 1px solid #ccc;	/*枠線の幅、線種、色*/
    box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
    padding: 2%;	
}

/*h4（見出し）タグの設定*/
.list h4 {
	color: #ffffff;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}

.list h4 tume {
    font-size: 0.9em;
}

/*p（段落）タグの設定*/
.list p {
    padding: 0 !important;
    line-height: 150%;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
    font-size: 90%;		/*文字サイズを少し小さく*/
    color: #ffffff;		/*文字色*/
    height: 6em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
    overflow: hidden;	/*高さを超えた場合に非表示にする*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;		/*内容をセンタリング*/
	padding: 10px 0;		/*上下、左右へのボックス内の余白*/
	background: #9acd32;	/*背景色*/
	color: #000;			/*文字色*/
	margin-bottom: 40px;	/*フッターの下(外側)に空けるスペース*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーグレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
    display: block;
    text-decoration: none;
    text-align: center;
    z-index: 100;
    position: fixed;
    width: 50px;		/*幅*/
    line-height: 50px;	/*高さ*/
    bottom: 33px;		/*下から33pxの場所に配置*/
    right: 3%;			/*右から3%の場所に配置*/
    background: #666;	/*背景色（古いブラウザ用）*/
    background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
    color: #fff;	/*文字色*/
    border: 1px solid #fff;	/*枠線の幅、線種、色*/
    animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
    animation-duration: 1S;	/*アニメーションの実行時間*/
    animation-fill-mode: forwards;	/*円形にする設定*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

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

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 0px;	/*上から0pxの場所に配置*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;
	margin-left: -3%;
	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 30px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: rgba(0,0,0,0.8);	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
	color: rgba(255,255,255,0.5);
}
/*現在表示中(current)の文字色*/
#menubar-s li.current a {
	color: #ffde00;
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;position: absolute;z-index: 20;
	top: 20px;		/*上から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
    width: 50px;	/*幅*/
    height: 50px;	/*円形にする設定*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #76b1f4 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコン画像読み込み、画像の上半分を読み込む。幅50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #76b1f4 url(../../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコン画像読み込み、画像の下半分を読み込む。幅50px。*/
}

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





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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	line-height: 150%;	/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: left;	/*内容を左側に*/
}
/*ロゴ画像*/
header #logo img {
	width: 220px;	/*画像幅*/
}

    
.list {
    float: none;
    width: 91%;
    margin: 0 0 5 0; 
    padding: 20;
    text-align: center;
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
#main .new h2  {
	font-size:  100%;
	padding-left: 10px;
	padding-right: 10px;
}
    
/*段落タグ設定*/
#main p {
	font-size: 90%;
    padding: 0px 10px 15px;
    text-align: left;
}

/*施設のご案内ページ用ボックス
---------------------------------------------------------------------------*/
/*ボックス内のh4タグ設定*/
#main .list h4 {
	font-size: 90%;	/*文字サイズ*/
	border-bottom: 2px dotted #76b1f4;	/*下側の線の幅、線種、色*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 18px;letter-spacing: normal;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display:block;}
.pc {display:none;}

}
