@charset "utf-8";


/*slide.cssの読み込み
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@import url(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: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background: #FFE4E1 ;	/*背景色、背景画像の読み込み*/
	border-top: 0px solid #fc9191;	/*トップ画面上の線の幅、線種、色*/
}
h1,h2,h3,h4,h5,h6,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%;}


/*文字色（span）
---------------------------------------------------------------------------*/

.red{
    color: #FF0000;
}


.green{
    color: #008000;
}

.blue{
    color: #0000FF;
}

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

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


/*container2共通
---------------------------------------------------------------------------*/
.container2 {
	max-width: 1200px;	/*サイトの最大幅　※下の方の「画面幅1200px以上の設定」にも関連するので変更の際は注意して下さい。*/
	margin: 0 auto;
}



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

}

header .container2 {
	position: relative;
	height: 100px;	/*ヘッダーの高さ*/
}


/*ロゴ画像*/
header #logo img {
	width: 300px;	/*画像幅*/
    float: left;	/*左に回り込み*/
	margin-top: 0;	/*上下のバランス画像を上にしたい場合数字を小さくする*/
	margin-left: 0;	/*左に空けるスペース*/
    margin-bottom: 15px;	
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	overflow: hidden;
	padding-bottom: 40px;	/*メニューブロックの下の余白。下のコンテンツとの間の余白です。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 16.6%;		/*メニュー幅。今回４個なので100÷4=25です。５個にしたいなら20%にして下さい。*/
}
#menubar li a {
	display:  block;text-decoration: none;
	line-height: 2.5;	/*行間を少し広く再設定。デフォルトは冒頭のbody内にあります。*/
	text-align: center;	/*内容をセンタリング*/
	font-size: 18px;	/*文字サイズ*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF 10%, #C4C4C4);	/*背景グラデーション*/
	margin-left: 10px;		/*メニューの左に空けるスペース。メニュー同士の余白になります。*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
	border-radius: 10px;	/*角丸のサイズ*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒のことで0.1は色が10%ついた状態のこと。*/
}
/*１個目のメニューへの追加設定*/
#menubar li:first-child a {
	margin-left: 0;	/*左に空けたスペースをリセット*/
}

/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #fc9191;	/*背景色*/
	position: relative;
	top: 1px;		/*現在の場所から下に1pxずらす*/
	left: 1px;		/*現在の場所から右に1pxずらす*/
	color: #fff;	/*背景色*/
}

/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}



/*ヘッダー内メニュー（「よいこネット」ボタン）
---------------------------------------------------------------------------*/

/*メニュー１個あたり*/
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 3%;		/*header のinnerに対して右から3%の場所に配置*/
	bottom: 15px;	/*header のinnerに対して下から15pxの場所に配置*/
}


#headermenu li {
	float: left;	/*左に回り込み*/
	margin-left: 10px;	/*左側にスペースを空ける*/
	margin-top: 5px;

}
#headermenu li a {
	display:  block;text-decoration: none;
	line-height: 2;	/*行間を少し広く再設定。デフォルトは冒頭のbody内にあります。*/
	text-align: center;	/*内容をセンタリング*/
	font-size: 18px;	/*文字サイズ*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF 10%, #C4C4C4);	/*背景グラデーション*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
	border-radius: 10px;	/*角丸のサイズ*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒のことで0.1は色が10%ついた状態のこと。*/

}
/*マウスオン時*/
#headermenu li a:hover {
	background: #fc9191;	/*背景色*/
	position: relative;
	top: 1px;		/*現在の場所から下に1pxずらす*/
	left: 1px;		/*現在の場所から右に1pxずらす*/
	color: #fff;	/*背景色*/

}


/*スマホ用メニューを表示させない*/
#headermenu-s {display: none;}
/*３本バーアイコンを表示させない*/
#headermenu_hdr {display: none;}


/*行事予定（「行事予定詳細」ボタン）
---------------------------------------------------------------------------*/

/*行事予定１個あたり*/
#eventmenu li {
	float: left;	/*左に回り込み*/
	margin-left: 20px;	/*右側にスペースを空ける*/
    padding-right: 20px;	
}
#eventmenu li a {
	display:  block;text-decoration: none;
	line-height: 2;	/*行間を少し広く再設定。デフォルトは冒頭のbody内にあります。*/
	text-align: center;	/*内容をセンタリング*/
	font-size: 18px;	/*文字サイズ*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF 10%, #C4C4C4);	/*背景グラデーション*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
	border-radius: 10px;	/*角丸のサイズ*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒のことで0.1は色が10%ついた状態のこと。*/
    padding: 0px 15px;	/*上下、左右へのボックス内の余白*/

}



#eventmenu li a:hover {
	background: #fc9191;	/*背景色*/
	position: relative;
	top: 1px;		/*現在の場所から下に1pxずらす*/
	left: 1px;		/*現在の場所から右に1pxずらす*/
	color: #fff;	/*背景色*/
}

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

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左に回り込み*/
	width: 100%;		/*幅*/
	padding-bottom: 40px;
}
/*h2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;/*見出しの下にとるスペース*/
	font-size: 20px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	text-shadow: 0px -1px 1px #000;	/*テキストの影。右へ、下へ(マイナスがついているのでこの場合は上に向かう)、広げる幅、色。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする設定*/
	padding: 10px 20px;		/*上下、左右への余白*/
	background: #ab6723 url(../images/bg1.png);	/*背景色と背景画像（※古いブラウザ用）*/
	background: url(../images/deco.png) no-repeat right center, url(../images/bg1.png),#ab6723;	/*背景画像を２種類設定、背景色*/
	border-radius: 10px;	/*角丸の指定*/
}
/*h3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;/*見出しの下にとるスペース*/
	font-size: 18px;	/*文字サイズ*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF, #ededed);	/*背景グラデーション*/
	padding: 6px 20px;		/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 10px;	/*角丸の指定*/
}



#main h5{ 
    clear: both; 
    font-size: 20px;	/*文字サイズ*/
   	border-bottom: 4px dotted #fc9191;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
    font-weight: bold ;
    color: #fc9191;
}


#main h6{  
    clear: both; 
    font-size: 20px;	/*文字サイズ*/
    font-weight: bold ;
    margin-bottom: 1px;
}


/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #fc9191;	/*左の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との間の余白*/
}
/*段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他*/
#main p + p {
	margin-top: -10px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	clear: both;
	padding-top: 30px;
}


/*ボックス（about）設定 園についての箇所
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .about {
	position: relative;overflow: hidden;
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白。変更する際は、下の「#main .list a」のmarginとpaddingの数字も変更する。*/
	background: linear-gradient(#FFF 0%, #eee);	/*グラデーション*/
	box-shadow: 0px 2px 5px #ccc;	/*影の設定。右・下・ぼかし幅・色の設定*/
}
#main .about a {
	overflow: hidden;display: block;text-decoration: none;
	margin: -20px;	/*ボックス内の余白。変更する際は、上の「#main .list」のpaddingの数字も変更する。※必ずマイナス記号をつけておく。*/
	padding: 20px;	/*ボックス内の余白。変更する際は、上の「#main .list」のpaddingの数字も変更する。*/
	background: linear-gradient(#FFF 0%, #eee);	/*グラデーション*/
}
/*マウスオン時設定*/
#main .about a:hover {
	background: #fff;	/*マウスオン時の背景色*/
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
#main .about a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	top: 20px;		/*ボックスの上から20pxの場所に配置*/
	background: #999;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
}
#main .about a:hover::before {
	background: #000;	/*マウスオン時の「→」マークの背景色*/
}
/*ボックス内の画像設定*/
#main .about .img {
	width: 20%;	/*画像の幅*/
	float: left;
	margin-right: 10px;
}
/*ボックス内のh4（見出し）タグ設定*/
#main .about h4 {
	font-size: 20px;	/*文字サイズ*/
	border-bottom: 4px dotted #fc9191;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
	margin-left: 22%;	/*左の画像とバランスをとって設定する*/
	color: #fc9191;		/*文字色*/
}
/*ボックス内のp（段落）タグ設定*/
#main .about p {
	padding: 0;
}


/*施設のご案内ページ用ボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#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%の事。*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	font-size: 20px;	/*文字サイズ*/
	border-bottom: 4px dotted #fc9191;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
	margin-left: 35%;	/*左の画像とバランスをとって設定する*/
	color: #fc9191;		/*文字色*/
}
/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
	margin-left: 35%;	/*左の画像とバランスをとって設定する*/
}




/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 20px;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの外(下)に空けるスペース*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}










/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*質問と答えのボックス全体を囲むブロック*/
.faq {
	padding: 0 20px 10px;	/*上、左右、下へのボックス内余白*/
}
/*質問*/
.faq dt {
	font-weight: bold;	/*太字にする設定*/
	color: #ed7692;		/*文字色*/
}
/*回答*/
.faq dd {
	padding-bottom: 10px;	/*下に空けるスペース*/
　　
}



/*テーブル（ta0）会社概要
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta0 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	background: #eee;		/*背景色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
    margin-top: 20px;
}
/*ta0設定*/
.ta0 {
	width: 100%;
	table-layout: fixed;
	margin-bottom: 20px;	/*テーブルの下(外側)に空けるスペース*/
}
.ta0, .ta0 td, .ta0 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 2px;			/*ボックス内の余白*/
}
/*ta0の左側ボックス*/
.ta0 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta0 td img {
	width: 100%;
}

/*テーブル（ta1）採用情報
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	background: #eee;		/*背景色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
    margin-top: 20px;
}
/*ta1設定*/
.ta1 {
	width: 100%;
	table-layout: fixed;
	margin-bottom: 20px;	/*テーブルの下(外側)に空けるスペース*/
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}

/*画像*/
.ta1 img {
	vertical-align: bottom;
    width: 20%;	/*幅*/
    padding:1%;
    box-sizing:border-box; 
    float: left;	/*左よせ*/
}


.box1 {
   
    padding:　5px　20px　;
    margin: 10px　20px　;
    background: #ffeaea;
    border: solid 3px #ffc3c3;
    border-radius: 8px;
   
}

.box1, .box-title{
    font-size: 20px;
    color: #ff7d6e;
    font-weight: bold;
}



.box1, .box-title p{
    margin: 0 ;
    padding: 0 ;
    font-size: 16px;
    color: #000000;
    margin-bottom: 30px;
}


/*テーブル
採用募集要項詳細---------------------------------------------------------------------------*/
/*saiyou1設定*/
/*ブロック１個あたりの設定*/
#main .saiyou1 {
	overflow: hidden;position: relative;
	border: 5px solid #f43c74;	/*枠線の幅、線種、色*/
	border-radius: 10px;		/*角丸の指定。この１行を削除すれば通常の長方形になります。*/
	padding: 20px;				/*ブロック内の余白*/
	margin-bottom: 20px;		/*ブロック同士の余白。*/
}
#main .saiyou1 a {
	text-decoration: none;display: block;overflow: hidden;
	padding: 20px;	/*ブロック同士の余白。*/
	margin: -20px;	/*ブロック同士の余白。上のlistのpaddingの相殺用。*/
}
/*マウスオン時*/
#main .saiyou1 a:hover {
	background: #fae6ec;	/*背景色*/
}
/*h4見出しタグ設定*/
#main .saiyou1 h4 {
	color: #f43c74;		/*文字色*/
	font-size: 22px;	/*文字サイズ*/
}
/*リンク設定がある場合のh4見出しタグの追加設定*/
#main .saiyou1 a h4::before {
	display: inline-block;text-align: center;
	content: "→";	/*このテキストを出力させます。変更しても構いませんが機種依存文字は化ける可能性があるので使わない。*/
	background: #f43c74;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 24px;			/*幅*/
	line-height: 24px;		/*高さ*/
	font-size: 12px;		/*文字サイズ*/
	border-radius: 50%;		/*円形にする指定*/
	margin-right: 5px;		/*右側のテキストとの間にとる余白*/
	position: relative;bottom: 3px;	/*位置の微調整*/
}

/*段落タグ*/
#main .saiyou1 p {
	padding: 0;
}


/*YouTube設定*/



.youtube {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/*求人票PDF用ボックス
応募フォーマット---------------------------------------------------------------------------*/

.background_btn01 {
  display: inline-block;
  width: 100%;
  max-width: 350px; /* ボタン幅 */
  position: relative;
  background: #4D9BC1; /* 背景色 */
  border: 2px solid #4D9BC1;
  padding: 1em 2em;
  font-weight: bold;
  color: #fff; /* 文字色 */
  text-decoration: none;
  text-align: center;
  transition-duration: 0.3s;
}

.background_btn01:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff; /* 矢印の色 */
  border-right: 2px solid #fff; /* 矢印の色 */
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}

/* マウスオーバーした際のデザイン */
.background_btn01:hover {
  background: #fff; /* 背景色 */
  color: #4D9BC1; /* 文字色 */
}

.background_btn01:hover:before {
  border-top: 2px solid #4D9BC1; /* 矢印の色 */
  border-right: 2px solid #4D9BC1; /* 矢印の色 */
}



/*テーブル
応募フォーマット---------------------------------------------------------------------------*/
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #dc143c;
  color: #fff;
  font-size: 14px;
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;

}

.Form-Item-Textarea2 {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
  height: 54px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #545454;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

input[type="submit"]:hover{
    background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF 10%, #C4C4C4);	/*背景グラデーション*/
	position: relative;
	top: 1px;		/*現在の場所から下に1pxずらす*/
	left: 1px;		/*現在の場所から右に1pxずらす*/
	color: #000000;	/*背景色*/

  
}

.Form-radio {
  border: 1px solid
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  flex: 1;
  width: 100%;
  max-width: 410px;
  font-size: 18px;
}


.Form-radio1 {
  border: 1px solid
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  flex: 1;
  width: 100%;
  max-width: 410px;
  font-size: 18px;
 
}









/*テーブル
行事予定詳細---------------------------------------------------------------------------*/
/*ta2設定*/
.ta2 {
	width: 50%;
	margin-bottom: 15px;
    float: left;	/*左よせ*/
}
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cce6f6;	/*背景色*/
}
/*ta2の左側ボックス*/
.ta2 th {
	width: 70px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f5f5f5;	/*背景色*/
}



/*施設紹介
---------------------------------------------------------------------------*/
/*ul2設定*/
.ul2 {
	width: 100%;

}
.ul2 li {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
    width: 25%;	/*幅*/
    word-break: break-all;
    padding:1%;
    box-sizing:border-box; 
	text-align: center;	/*センタリング*/
	background: #f7f7f7;	/*背景色*/
    float: left;	/*左よせ*/
    margin-bottom: 40px;	/*テーブルの下(外側)に空けるスペース*/
    overflow: hidden;	/*ボックスから飛び出た場合、非表示にする設定*/
}

/*画像*/
.ul2 img {
	vertical-align: bottom;
}






/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;		/*内容をセンタリング*/
	padding: 10px 0;		/*上下、左右へのボックス内の余白*/
	background: #fc9191;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 10px;	/*角丸のサイズ*/
	margin-bottom: 20px;	/*フッターの下(外側)に空けるスペース*/
}
footer a {
	text-decoration: none;
	color: #fff;	/*リンクテキストの色*/
}
footer a:hover {
	color: #fff;	/*マウスオン時のリンクテキストの色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 980px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 20px 0px;
	background: url(../images/footer_bg.png) no-repeat right center;	/*古いブラウザ用（IE8以下）は原寸大表示*/
	background: url(../images/footer_bg.png) no-repeat right center/auto 80%;	/*;右側の上下中央に配置。ブロックの高さに対して80%で表示。*/
}
/*１行分の設定*/
#footermenu li {
	float: left;	/*左に回り込み*/
	width: 14%;		/*幅*/
	padding-right: 2%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}




/*inputボタン
---------------------------------------------------------------------------*/
#main input[type="submit"].btn,
#main input[type="button"].btn,
#main input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #fff;		/*背景色*/
}
/*マウスオン時の設定*/
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

/*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;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	border-radius: 50%;	/*円形にする設定*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}
/*トップページの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;
}

/*ul,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 40px;
}
.ta1 ul, .ta1 ol {
	padding-bottom: 0;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;color: #333;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #f87373;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;width: 30%;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;width: 30%;}
.big1 {font-size: 40px;
       margin-bottom: 20px;
       text-align: center;
       }
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

    
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/


header {
	text-align: left;	/*内容を左側に*/
}
/*ロゴ画像*/
header #logo img {
	width: 220px;	/*画像幅*/
}

header .container2 {
	position: relative;
	height: 180px;	/*ヘッダーの高さ*/
    
}

/*ヘッダー（よい子ネット）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/

#headermenu  {
	position: absolute;
	left: 3px;		/*header のinnerに対して右から3%の場所に配置*/
	bottom: 15px;	/*header のinnerに対して下から15pxの場所に配置*/
    width: auto;
}



#headermenu li a {
 　text-align: right;	/*左に回り込み*/
	position: static;
   display: block;
}










/*container2共通
---------------------------------------------------------------------------*/
. container2 {
	width: auto;
}


/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定*/
#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;	/*文字サイズ*/
}



/*現在表示中(current)の文字色*/
#menubar-s li.current a {
	color: #ffde00;
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*ヘッダースライドを非表示にする*/
#mainimg {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;	/*高さ*/
	border-radius: 50%;	/*円形にする設定*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fc9191 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコン画像読み込み、画像の上半分を読み込む。幅50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fc9191 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコン画像読み込み、画像の下半分を読み込む。幅50px。*/
}

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


/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 90%;
	background: none;
}
/*１行分の設定*/
#footermenu li {
	width: 23%;
	padding-right: 2%;
}


/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}

}







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

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









/*mainコンテンツ
---------------------------------------------------------------------------*/
#main h2, #main h3 {
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
}
/*段落タグ設定*/
#main p {
	padding: 0px 10px 15px;
}

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

/*ボックス（about）設定
---------------------------------------------------------------------------*/
/*ボックス内のh4（見出し）タグ設定*/
#main .about h4 {
	font-size: 14px;	/*文字サイズ*/
}



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

/*テーブル(ta1)
---------------------------------------------------------------------------*/
/*余白の上書き*/
.ta1 caption,.ta1 th,.ta1 td {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
}


/*会社概要ボックス*/
/*テーブル内の左側*/
.ta0 th {
	width: 50px;
}
/*テーブル内の右側*/
.ta0 td {
	width: auto;
}




/*行事2019ta2のボックス*/
.ta2 th {
	width: 20px;
}
/*テーブル内の右側*/
.ta2 td {
	width: auto;
}


/*施設紹介(ul2)
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ul2  {
	width: auto;
	padding: 5px;

    
}
/*テーブル内の右側*/
.ul2 li {
	width: auto;
	padding: 5px;
}


.ul2 img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;


}



/*採用ページ
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .saiyou1 {
	border: 3px solid #f43c74;	/*枠線の幅、線種、色*/
	padding: 10px;				/*ブロック内の余白*/
}
#main .saiyou1 a {
	padding: 10px;	/*ブロック同士の余白。*/
	margin: -10px;	/*ブロック同士の余白。上のlistのpaddingの相殺用。*/
}
/*h4見出しタグ設定*/
#main .saiyou1 h4 {
	font-size: 18px;	/*文字サイズ*/
}




/*応募フォームページ
---------------------------------------------------------------------------*/
.Form {
    margin-top: 40px;
  }

.Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }

.Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }

.Form-Item-Label.isMsg {
    margin-top: 0;
  }

.Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }

.Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }

.Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }

.Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }



/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

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

}
