@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #ff9 url(../images/bg.png) repeat center top/283px;	/*同上。背景画像サイズを50%(100px)に指定。*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,textarea,input {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				: #666;		/*リンクテキストの色*/
	transition	: 0.5s;	/*同上*/
	text-decoration: none;
}
a:hover {
	color: #f18200;			/*マウスオン時の文字色*/
	text-decoration: none;
}

/*container（全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 4%;	/*上下、左右へのブロック内の余白*/
}

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 180px;	/*高さ*/
	position: relative;
}
/*ロゴ画像（※logo.cssにもロゴの設定があります）*/
#logo {
	z-index: 1;
	width: 20%;	/*ロゴ画像の幅（※トップページ以外）*/
	position: absolute;
	left: 1%;	/*ヘッダーブロックに対して左から1%の場所に配置（※トップページ以外）*/
	bottom: -30px;	/*ヘッダーブロックに対して下から-30pxの場所に配置（※トップページ以外）*/
	background: #f18200;	/*背景色*/
	border-radius: 50%;		/*角丸のサイズ*/
	transform: none;	/*回転する角度のリセット（※トップページ以外）*/
	border: 10px solid #fff;	/*枠線の幅、線種、色*/
	box-shadow: 2px 3px 8px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.3が透明度30%の事。*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
	position: absolute;
	right: 3%;		/*ヘッダーブロックに対して右から3%の場所に配置*/
	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの場所に配置*/
	width: 72%;		/*ブロック幅*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 18.5%;	/*メニューの幅 12/23 23.5 -> 18.5 に変更 */
	padding-left: 1.5%;	/*メニューの左側に空ける余白（メニュー同士の余白）*/
}
#menubar li a {
	display:  block;
	text-decoration: none;
	text-align: center;	/*文字を中央に*/
	background: #333;	/*背景色*/
	font-size: 20px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	line-height: 1.5;	/*行間*/
	padding: 15px 0;	/*上下、左右へのメニュー内の余白*/
	border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下の順番。*/
}
/*マウスオン時、現在表示中(current)表示の設定（※800px以下の小さな端末#menubar-sも共通）*/
#menubar li a:hover, #menubar li.current a,
#menubar-s li a:hover, #menubar-s li.current a {
	background: #fff;	/*背景色*/
	color: #666;		/*文字色*/
}
/*装飾文字（※800px以下の小さな端末#menubar-sも共通）*/
#menubar li a span,
#menubar-s li a span {
	display: block;
	text-shadow: none;
	font-size: 10px;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広く*/
	color: #ffde00;		/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（メイン、サブブロックを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
	border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	background: #fff;	/*背景色*/
	padding: 3% 3% 0;	/*ボックス内の余白。上、左右、下。*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 75%;		/*幅*/
	padding-top: 3%;	/*上に空ける余白*/
}
/*メインコンテンツのh1タグの設定*/
#main h1 {
	clear: both;
	font-size: 22px;
	font-weight: 900;
	margin-bottom: 20px;
	padding: 16px 5px 16px 25px;
	background: #f18200;
	border-radius: 10px;  /* 角丸 */
	color: #fff;
	position: relative;
}

/*メインコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	font-size: 22px;
	font-weight: 900;
	margin-bottom: 20px;
	padding: 10px 5px 10px 50px;
	background: #f18200;	/*背景色*/
	border-radius: 30px;	/*角丸のサイズ*/
	color: #fff;			/*文字色*/
	position: relative;
}
/*装飾用画像の土台設定*/
#main h2::after, #main h3::after {
	display: block;
	position: absolute;
	right: 0px;	/*h2,h3タグに対して右から0pxの場所に配置*/
	top: -20px;	/*h2,h3タグに対して上から-20pxの場所に配置*/
}
/*装飾用画像（飛行機）*/
#main h2.bg1::after, #main h3.bg1::after {
	content: url(../images/bg1.png);
}
/*装飾用画像（木馬）*/
#main h2.bg2::after, #main h3.bg2::after {
	content: url(../images/bg2.png);
}
/*装飾用画像（列車）*/
#main h2.bg3::after, #main h3.bg3::after {
	content: url(../images/bg3.png);
	margin: 20px;
}

#main h2.bosyu {
  text-align: center;
  font-size: 200%;
}

/* 追加 : 2018/12/02 */
#main p.h1_p1 {
  font-size   : 24px; 
  font-weight : 900; 
  margin      : 10px 0px 0px 0px;
}

#main p.h1_p2 {
  font-size: 20px;
  font-weight: 900;
  margin: 0px 0px 0px 20px;
}

/* nico_template */

figure.item_left {
  border  : 0px solid #000;
  float: left;
  width: 500px;
  margin : 0px 0px 50px 0px;
}

figure.item_right {
  border  : 0px solid #000;
  float: left;
  width: 450px;
  margin : 0px 0px 50px 30px;
}

.text1  {
  font-size : 16px;
  padding   : 6px;
  width     : 80%;
}

.textarea1  {
  font-size : 16px;
  padding   : 6px;
  width     : 95%;
}


/* studen */

figure.gazo-box {
  float: left;
  width: 30%;
  margin-right : 10px;
  margin-bottom: 20px;
}

figcaption  {
  font-size: 14p;
  width  : 100%; 
  height : 100px;
}

#img_item { 
  width		: 100%;
  height	: auto;
  overflow: hidden;
  
  aspect-ratio	: 4 / 4;
}

.p_title { 
  font-size: 18px;
  font-weight: 900;
}

.p_title2 li { 
  font-weight: 900;
}


/* event */

figure.instaL {
  float: left;
  width: 48%;
  height: 400px;
  margin-right : 10px;
  margin-left  : 20px;
}

figure.instaR {
  float: left;
  width: 48%;
  height: 400px;
}



/*装飾用画像が入った場合、テキストと画像が重ならないように右側に余白をとる設定*/
#main h2.bg1, #main h3.bg1,
#main h2.bg2, #main h3.bg2,
#main h2.bg3, #main h3.bg3 {
	padding-right: 160px;
}
/*メインコンテンツのh3タグの設定*/
#main h3 {
	clear				: both;
	font-size		: 20px;
	font-weight	: 900;
	margin			: 0px 0px 20px 0px;
	padding			: 1em;
	border			: 2px solid #f18200;
	background	: #fffaf0;
	color				: #f18200;
	position		: relative;
	text-align	:	center;
	
	border-radius: 10px;	/*角丸のサイズ*/
}
/*メインコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*施設のご案内ページ用ボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;
	overflow: hidden;
	margin: 0 2.5% 15px;	/*上、左右、下へのボックスの外に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 3%;			/*ボックス内の余白*/
	background: #FFF;		/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF, #f1f1f1);			/*背景色グラデーション*/
	border-radius: 10px;	/*角丸のサイズ*/
}
/*ボックス内の写真設定*/
#main .list figure img {
	float: left;			/*画像を左へ回り込み*/
	background: #FFF;		/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 0.8%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 30%;	/*写真の幅*/
	box-shadow: 2px 2px 3px rgba(0,0,0,0.15);	/*ボックスの影の設定。右へ、下へ、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
/*ボックス内の写真設定 2*/
#main .list2 figure img {
	float: left;			/*画像を左へ回り込み*/
	background: #FFF;		/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 0.8%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 20%;	/*写真の幅*/
	box-shadow: 2px 2px 3px rgba(0,0,0,0.15);	/*ボックスの影の設定。右へ、下へ、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	font-size: 20px;	/*文字サイズ*/
	border-bottom: 4px dotted #f18200;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
	margin-left: 35%;	/*左の画像とバランスをとって設定する*/
	color: #f18200;		/*文字色*/
}
/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
	margin-left: 35%;	/*左の画像とバランスをとって設定する*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右に回り込み*/
	width: 22%;		/*幅*/
	padding-top: 3%;	/*上に空ける余白*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	text-align: center;		/*内容をセンタリング*/
	background: #f18200;	/*背景色*/
	color: #fff;			    /*文字色*/
	padding: 8px;
	font-size: 18px;
	font-weight: 900;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #dcdcdc;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
	border-left: solid 1px #dcdcdc;		/*左の線の線種、幅、色*/
	border-right: solid 1px #dcdcdc;	/*右の線の線種、幅、色*/
}
/*h2直下にsubmenuが続いた場合のみ、submenuの上の線を消す設定*/
#sub h2 + ul.submenu {
	border-top: none;
}

/*subコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	overflow: hidden;
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: solid 1px #dcdcdc;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1) inset;	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
#sub h2 + .box1 {
	border-top: none;
}
/*box1内のサブメニュー*/
#sub ul.submenu {
	margin-bottom: 0;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #f18200;	/*背景色*/
	color: #fff;	/*文字色*/
	text-align: center;
	border-radius: 0px 0px 10px 10px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	margin-bottom: 50px;
	padding: 15px 0;
}
footer a {
	color: #fff;
	text-decoration: none;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	color: #f18200;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
.faq {
	padding: 0 20px;
}
.faq dt {
	font-weight: bold;	/*太字にする設定*/
	color: #f18200;	/*文字色*/
}
.faq dd {
	padding-bottom: 15px;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;	/*テーブル幅*/
	margin: 0px;
	border: 3px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
}
.ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブル内側の線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/* コメントテーブルの見出し */
.ta1 th.seikaku {
	text-align: center;	/*左よせ*/
	background: #eee;	/*背景色*/
	font-size: 16px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 120px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*テーブルta1内にリストタグを入れた場合の設定*/
.ta1 td ul.disc {padding-bottom: 0;padding-left: 20px;}
.ta1 td ol {padding-bottom: 0;padding-left: 22px;}


.ta1 th.bosyu {
	width:  80px;
	text-align: center;	/*左よせ*/
	background: #eee;	  /*背景色*/
	color    :  #00f;
	font-weight : 900;
}
.ta1 td.bosyu {
	width: 300px;
	text-align: left;	/*左よせ*/
	background: #fff;	/*背景色*/
	color    :  #00f;
	font-weight : 900;
}


/*ta2設定*/
.ta2 {
	width: 100%;	/*テーブル幅*/
	margin: 0px;
	border: 3px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
}
.ta2 td, .ta2 th {
	border: 1px solid #ccc;	/*テーブル内側の線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	font-size: 180%;	/*文字サイズ*/
	width: auto;
	text-align: left;	/*左よせ*/
	background: #eee;	/*背景色*/
  background-color  : #dcdcdc;
  text-align: center;
}

#bosyu_title1 {
  font-size   : 160%;
  font-weight : 900;
  color       : #000;
  margin      : 30px 0px 0px 0px;
  text-align  : left;
}

#bosyu_txt {
  font-size   : 140%;
  font-weight : 900;
  line-height : 180%;
  color       : #666;
  margin      : 0px 0px 0px 40px;
  text-align  : left;
}

.bosyuL {
  border  : 0px;
  float   : left;
  width   : 350px;
  margin  : 2px 0px 0px 0px;
  padding : 0px 0px 0px 0px;
  text-align: left;
}

.bosyuR {
  border  : 0px;
  width   : 550px;
  height  : 450px;
  
  float: left;
  font-size   : 120%;
  line-height : 180%;
  text-align: left;
  margin  : 2px 0px 0px 0px;
  padding : 0px 0px 0px 0px;
  vertical-align: top;
}

.bosyu_comment  {
  font-size : 100%;
  width     : 500px;
  color     : #666;
}


.bosyu_img {
  max-width   : 640px; 
  border      : 1px solid #666;
  padding     : 10px;
  margin      : 30px 0px 0px 0px;
  text-align  : left;
}


.bosyu_img2 {
  max-width   : 300px; 
  border      : 1px solid #666;
  border-top  : 2px solid #666;
  padding     : 10px;
  margin      : 0px 0px 0px 0px;
}



/* コメントテーブルの見出し */
.ta2 th.seikaku {
	text-align: center;	/*左よせ*/
	background: #eee;	/*背景色*/
	font-size: 16px;	/*文字サイズ*/
}

/*ta2の左側ボックス*/
.ta2 th {
	width: 120px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta2 th img {
	width: 100%;
}
/*テーブルta2内にリストタグを入れた場合の設定*/
.ta2 td ul.disc {padding-bottom: 0;padding-left: 20px;}
.ta2 td ol {padding-bottom: 0;padding-left: 22px;}


.ta2 th.bosyu {
	width:  80px;
	text-align: center;	/*左よせ*/
	background: #eee;	  /*背景色*/
	color    :  #00f;
	font-weight : 900;
}

.ta2 td.bosyu {
	width: 50%;
	text-align: right;	/*左よせ*/
	color    :  #00f;
	font-size: 120%;
	font-weight : 900;
}


.ta_bosyu {
  width : auto;
	margin: 0px 0px 0px 40px;
	border: 3px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
}

.ta_bosyu th.bosyu_th {
	background-color  : #eee;
	font-weight       : 900;
	border            : 3px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
	width             : 150px;
	text-align        : cneter;
}

.ta_bosyu td.bosyu_td {
	font-weight       : 900;
	border            : 3px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
	width             : 150px;
	text-align        : cneter;
}


/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #f18200;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 50px;	/*幅*/
	line-height: 50px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ*/
	margin-bottom: 10px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
}

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

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0 20px 15px 40px;list-style: disc;}

.color1, .color1 a { 
	color: #f18200;
	
}

.color2, .color2 a {color: #6666ff;}

.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;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}

  
/*TOP 全てを表示 */
.alldisp { width: 400px; margin: 20px 0px 20px 0px; }





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


  /*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
  ---------------------------------------------------------------------------*/
  /*ヘッダーブロック*/
  header {
  	height: 130px;	/*高さ*/
  }
  
  /*メインメニュー
  ---------------------------------------------------------------------------*/
  /*メニュー１個あたりの設定*/
  #menubar li a {
  	font-size: 15px;	/*文字サイズ*/
  }
  
  /*main,subコンテンツ
  ---------------------------------------------------------------------------*/
  #main, #sub {
  	float: none;
  	width: auto;
  	padding: 3% 0 0;	/*上、左右、下へのボックス内の余白*/
  }
  
  /*subコンテンツ内のメニュー
  ---------------------------------------------------------------------------*/
  /*メニュー１個ごとの設定*/
  #sub ul.submenu li {
  	width: 50%;		/*半分の幅にする*/
  	float: left;	/*左に回り込み*/
  }
  /*偶数番目のメニューの左のラインを消す設定*/
  #sub ul.submenu li:nth-child(even) a {
  	border-left: none;
  }
  
  #main p.h1_p1 {
    font-size   : 20px; 
    font-weight : 900; 
    margin      : 10px 0px 0px 0px;
  }
  
  #main p.h1_p2 {
    font-size: 16px;
    font-weight: nomal;
    margin: 0px 0px 0px 10px;
  }
  
  #bosyu_txt {
    font-size   : 120%;
    line-height : 180%;
    color       : #666;
    margin      : 0px 0px 0px 0px;
    text-align  : left;
  }
  
}




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

  /*メインメニュー
  ---------------------------------------------------------------------------*/
  /*スマホ用メニューを非表示から表示に切り替える*/
  #menubar-s {
  	display: block;
  	overflow: hidden;
  }
  /*メニュー１個あたりの設定*/
  #menubar-s li {
  	margin-bottom: 10px;	/*メニュー同士の距離*/
  }
  #menubar-s li a {
  	display: block;
  	text-decoration: none;
  	text-align: center;	/*文字をセンタリング*/
  	background: #333;	/*背景色*/
  	color: #fff;		/*文字色*/
  	border-radius: 10px;	/*角丸のサイズ*/
  	padding: 5px 0px;	/*上下、左右へのボックス内の余白*/
  	font-size: 20px;	/*文字サイズ*/
  }
  /*PC用メニューを非表示にする*/
  #menubar {
  	display: none;
  }
  
  /*３本バーアイコン設定
  ---------------------------------------------------------------------------*/
  /*３本バーブロック*/
  #menubar_hdr {
  	display: block;
  	position: absolute;
  	top: 38px;		/*上から32pxの場所に配置*/
  	right: 4%;		/*右から4%の場所に配置*/
  	width: 30px;	/*幅*/
  	border: 1px solid #000;	/*枠線の幅、線種、色*/
  	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
  	background: #fff;		/*背景色*/
  }
  /*３本のバー（1本あたり）*/
  #menubar_hdr span {
  	display: block;
  	border-top: 3px solid #000;	/*枠線の幅、線種、色*/
  	margin-bottom: 7px;			/*バー同士の余白*/
  }
  
  /*その他
  ---------------------------------------------------------------------------*/
  body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
  .fl-half{float:left;width:45%;margin-left:3%;}
  .sh {display:block;}
  .pc {display:none;}
  
  
  #main h1 {
  	font-size			: 22px;
  	margin-bottom	: 20px;
  	padding				: 0.5em;
  	text-align		:	center;
  }
  
  #main h2 {
  	font-size		: 20px;
  	padding			: 1em 1em 1em 2em;
  }
  
  ##main h3 {
  	font-size		: 20px;
  	padding			: 1em;
  	background	:	#fffaf0;
  }
  
}



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

  /*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
  ---------------------------------------------------------------------------*/
  /*ロゴ画像（※logo.cssにもロゴの設定があります）*/
  #logo {
  	width: 30%;	/*ロゴの幅（※トップページ以外）*/
  	bottom: -20px;	/*ヘッダーブロックに対して下から-20pxの場所に配置（※トップページ以外）*/
  }
  
  /*メインコンテンツ
  ---------------------------------------------------------------------------*/
  /*装飾用画像を非表示にする*/
  #main h2.bg1::after, #main h3.bg1::after,
  #main h2.bg2::after, #main h3.bg2::after,
  #main h2.bg3::after, #main h3.bg3::after {
  	content: url(none);
  }
  /*装飾用画像が入った場合、テキストと画像が重ならないように右側に入れていた余白をリセットする*/
  #main h2.bg1, #main h3.bg1,
  #main h2.bg2, #main h3.bg2,
  #main h2.bg3, #main h3.bg3 {
  	padding-right: 20px;
  }
  
  #main p.h1_p1 {
    font-size   : 16px; 
    font-weight : 900; 
    margin      : 10px 0px 0px 0px;
  }
  
  #main p.h1_p2 {
    font-size: 12px;
    font-weight: nomal;
    margin: 0px 0px 0px 10px;
  }
  
  #main h2.bosyu {
    font-size: 140%;
  }
  
  .ta_bosyu {
    width : auto;
  	margin: 0px 0px 0px 0px;
  	border: 3px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
  }
  
  .ta2 th.tamidashi {
  	font-size: 140%;	/*文字サイズ*/
  	width: auto;
  	text-align: left;	/*左よせ*/
  	background: #eee;	/*背景色*/
    background-color  : #dcdcdc;
    text-align: center;
  }
  
  .bosyu_comment  {
    font-size : 100%;
    width     : 100%;
    color     : #666;
  }


}



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

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100px;	/*高さ*/
}

}



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

  /*全体の設定
  ---------------------------------------------------------------------------*/
  body {
  	font-size: 16px;	/*文字サイズ*/
  	line-height: 2;	/*行間*/
  }

  /*メインコンテンツ
  ---------------------------------------------------------------------------*/
  /*メインコンテンツのh2とh3タグ*/
  
  
  /*メインコンテンツの段落タグ設定*/
  #main p {
  	padding: 0px 10px 15px;	/*上、左右、下への余白*/
  }

  /*施設のご案内ページ用ボックス
  ---------------------------------------------------------------------------*/
  /*ボックス内のh4タグ設定*/
  #main .list h4 {
  	font-size: 14px;	/*文字サイズ*/
  }

  /*subコンテンツ内のメニュー
  ---------------------------------------------------------------------------*/
  /*メニュー１個ごとの設定*/
  #sub ul.submenu li {
  	width: auto;
  	float: none;
  }
  /*偶数番目のメニューの左のラインを戻す設定*/
  #sub ul.submenu li:nth-child(even) a {
  	border-left: 1px solid #dcdcdc;
  }

  /*subコンテンツ内のメニュー
  ---------------------------------------------------------------------------*/
  #sub ul.submenu li a {
  	padding: 10px;	/*メニュー内の余白*/
  }

  /*トップページ内「更新情報・お知らせ」ブロック
  ---------------------------------------------------------------------------*/
  /*ブロック全体の設定*/
  #new dl {
  	padding: 0 10px;
  }

  /*テーブル
  ---------------------------------------------------------------------------*/
  /*テーブル内の左側*/
  .ta1 th {
  	width: 25%;
  	padding: 5px;
  }
  /*テーブル内の右側*/
  .ta1 td {
  	width: auto;
  	padding: 5px;
  }
  /*テーブル１行目に入った見出し部分*/
  .ta1 th.tamidashi {
   	font-size: 14px;	/*文字サイズ*/
  }

  /*その他
  ---------------------------------------------------------------------------*/
  .ws,.wl {width: 94%;}
  img.fr,img.fl {float: none;margin: 0;width: 100%;}
  .fl-half{float:none;width:100%;margin-left:0;}

}



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

/*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 80px;	/*高さ*/
	margin-bottom: 30px;	/*ヘッダーの下に空けるスペース*/
}

}



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

  /*ヘッダー（ロゴとメインメニューが入った最上段のブロック）
  ---------------------------------------------------------------------------*/
  /*ロゴ画像（※logo.cssにもロゴの設定があります）*/
  #logo {
  	width: 40%;		/*ロゴ画像の幅*/
  	bottom: -35px;	/*ヘッダーブロックに対して下から-35pxの場所に配置（※トップページ以外）*/
  }
  
  /*TOP 全てを表示 */
  .alldisp { width: 350px; margin: 20px 0px 20px 0px; }
  
  
}



@media screen and (max-width:900px){
  
  .ta1 {
  	margin: 0px 0px 20px 0px;
  	font-size: 14px;
  }
  
  .ta1 th.seikaku {
  	width: 80px;
  	text-align: center;	/*左よせ*/
  	background: #eee;	/*背景色*/
  	font-size: 14px;
  }
  
  
  .ta2 {
  	margin: 0px 0px 20px 0px;
  	font-size: 14px;
  }
  
  .ta2 th.seikaku {
  	width: 80px;
  	text-align: center;	/*左よせ*/
  	background: #eee;	/*背景色*/
  	font-size: 14px;
  }
  
  .text1  {
    font-size : 14px;
    padding   : 6px;
    width     : 95%;
  }
  
  .textarea1  {
    font-size : 14px;
    padding   : 4px;
  }
  
  figure.item_left {
    float		: none;
    width		: 100%;
    margin 	: 0px;
    border	: 0px solid #000;
  }
  
  figure.item_right {
    float: none;
    width: 100%;
    margin : 20px auto;
  }
  
  figure.gazo-box {
    width				: 100%;
    margin 			: 0px auto 10px auto;
    padding			:	0px;
  }
  
  figcaption  a{
    font-size		:	18px;
    font-weight	:	bold;
    color				:	#00f;
  }
  
  figcaption  {
    width		: 100%;
    height	: 5em;
    padding	:	0.5em;
    background	:	#fffffe;
  }
  
  #img_item { 
    width		: 98%;
    height	: auto;
    border	: 2px solid #999;
  }
  
  .p_title { 
    font-size: 16px;
    font-weight: 900;
  }
  
  figure.instaL {
    float: left;
    width : 100%;
    height: auto;
    margin-right : 10px;
    margin-bottom : 10px;
  }

  figure.instaR {
    float: left;
    width: 100%;
    height: auto;
    margin-right : 10px;
    margin-bottom : 10px;
  }
  
  figure.bosyuL {
    float: left;
    width: 100%;
    margin-right : 10px;
    margin-left  : 10px;
  }
  
  figure.bosyuR {
    float: left;
    width: 100%;
    height: auto;
    margin-right : 10px;
    margin-bottom : 10px;
    padding : 20px 0px 0px 0px;
  }
  
  #bosyu {
    font-size   : 140%;
    line-height : 180%;
    margin      : 0px 10px 0px 10px;
  }
  
  #bosyu_title1 {
    font-size   : 120%;
    font-weight : 900;
    color       : #000;
    margin      : 10px 0px 0px 0px;
    padding     : 0px;
    text-align  : left;
  }
  
}

/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
  
  img.bosyu_img {
    max-width   : 70%; 
    border      : 1px solid #666;
    padding     : 2px;
    margin      : 20px 0px 0px 0px;
  }
  
  img.bosyu_img2 {
    max-width   : 96%; 
    border      : 1px solid #999;
    margin      : 20px 0px 40px 0px;
  }
  
}


