@charset "utf-8";


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


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 18px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: url("../images/bg.jpg");	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
video,audio {max-width: 100%;}

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

/*container（footer以外を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*サイトの最大幅*/
	margin: 0 auto;
	position: relative;
	padding: 0 10%;		/*上下、左右へのボックス内の余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅*/
}
/*ロゴ画像ブロック*/
header #logo {
	margin-bottom: 50px;	/*画像ブロックの下に空けるスペース*/
	background: #57bdfe;	/*背景色*/
	border-radius: 0px 0px 10px 10px;	/*角丸のサイズ。左上、右上、右下、左下の順番の指定。*/
}

/*メニューブロック
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
.submenu {
	overflow: hidden;
	border-radius: 10px;	/*角丸のサイズ*/
	border: 5px solid #57bdfe;	/*枠線の幅、線種、色*/
	margin-bottom: 20px;	/*ブロックの下に空けるスペース*/
}
/*メニュー１個あたりの設定*/
.submenu li {
	text-align: center;			/*文字をセンタリング*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
	font-size: 18px;			/*文字サイズ*/
}
.submenu li a {
	display: block;text-decoration: none;
	padding: 15px 5px;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
}
/*マウスオン時*/
.submenu li a:hover {
	background: #fbf6cc;	/*背景色*/
}
/*１つ目のメニューへの追加指定*/
.submenu li:first-child {
	border: none;	/*上の線を消す*/
}
/*飾り文字*/
.submenu li span {
	display: block;
	font-size: 11px;		/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	color: #57bdfe;			/*文字色*/
}

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

/*contents
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
}


/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainブロック全体の設定*/
#main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ブロックの幅*/
}
/*トップページでのmainコンテンツへの追加設定*/
.home #main {
	margin-top: 30%;	/*上に空けるスペース。スライドショーとのバランスをとって設定して下さい。*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	font-size: 24px;
	margin-bottom: 20px;
	padding: 20px 20px 20px 60px;	/*上、右、下、左への見出し内の余白*/
	color: #fff;		/*文字色*/
	background: #57bdfe;	/*背景色（古いブラウザ用）*/
	background: #57bdfe url(../images/arrow2.png) no-repeat 20px center / 35px;	/*背景色、背景画像の読み込み。左から20pxの場所に配置。画像の幅を25pxに。*/
	border-radius: 10px;	/*角丸のサイズ*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	margin-top:40px;
	margin-bottom: 20px;
	padding: 4px 20px;		/*上下、左右への見出し内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 10px;	/*角丸のサイズ*/
	background: #fff;	/*背景色*/
	font-size:130%;
}
#main h3::first-letter {
	border-left: 3px solid #57bdfe;
	padding-left: 15px;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	margin-top: 30px;
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック全体の設定*/
#sub {
	float: left;		/*左に回り込み*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.5;
	width: 20%;			/*ブロックの幅*/
}
#sub h2 {
	font-size: 18px;	/*文字サイズ*/
}
#sub h2::first-letter {
	border-left: 3px solid #57bdfe;
	padding-left: 10px;
}
#sub .box h2::first-letter {
	border-left: 3px solid #fff;
}

/*subコンテンツ内のbox
---------------------------------------------------------------------------*/
#sub .box {
	background: #57bdfe;	/*背景色*/
	color: #fff;			/*文字色*/
	padding: 20px;			/*ボックス内の余白*/
	border-radius: 10px;	/*角丸の指定*/
	margin-bottom: 20px;	/*ボックスの下(外側)に空けるスペース*/
}
/*リンクテキストの文字色*/
#sub .box a {
	color: #fff;
}



/*絵本　画像の設定*/
.book{
	float:left;
	width:40%;
	text-align:center;
}

.box span{
	font-size:70%;
}

/*subコンテンツ内のaddress
---------------------------------------------------------------------------*/
#sub address {
	font-style: normal;	/*デフォルトで斜体になるのでノーマルに*/
}

/*day.html　画像横並び*/
.yoko-image {
	margin:10px;
}

.yoko-image img{
	width:48%;
	margin:1%;
}
/*box1,box2共通設定
---------------------------------------------------------------------------*/
.box1, .box2 {
	text-shadow: none;position: relative;
	background: #fff;	/*背景色*/
	color: #666;		/*文字色*/
	line-height: 1.5;	/*行間*/
}
/*box内のh4(見出し)タグの文字色*/
.box1 h4, .box2 h4 {
	color: #177DD1;
	font-weight:bold;
}
/*box内のp(段落)タグ*/
.box1 p, .box2 p {
	padding: 0 !important;
	
}
/*段落タグにリンクが設定された場合の文字色*/
.box1 p a {
	color: #666;
	text-decoration: none;
}
/*マーク*/
.mark {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 60px;			/*幅*/
	line-height: 60px;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/
	transform: rotate(-20deg);	/*回転の角度*/
}
.box1::after,.box2::after {content: "";display: block;clear: both;}

/*box1（３カラムコンパクトボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	width: 24.5%;		/*ボックスの幅*/
	float: left;		/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	padding: 3%;		/*ボックス内の余白*/
	margin: 0 0 20px 2%;		/*上、右、下、左へのボックスの外に空けるスペース*/
	font-size: 12px;	/*文字サイズ（古いブラウザ用）*/
	font-size: 1vw;		/*文字サイズ（ウィンドウ幅に合わせて文字サイズも自動で変動します）*/
}
/*box2内のfigure(画像)タグ*/
.box1 figure {
	margin-bottom: 5px;	/*下に空けるスペース*/
}
/*box2内のh4(見出し)タグ*/
.box1 h4 {
	height: 1.5em;		/*高さ*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
}


/*box2内のp(段落)タグ*/
.box1 p {
	height: 4.5em;		/*高さ。*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	text-align: left;	/*文字を左よせ*/
}


/*box2（event.html 2カラムコンパクトボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	width: 42%;		/*ボックスの幅*/
	float: left;		/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	padding: 3%;		/*ボックス内の余白*/
	margin: 0 0 20px 2%;		/*上、右、下、左へのボックスの外に空けるスペース*/
	/*font-size: 12px;	/*文字サイズ（古いブラウザ用）*/
	/*font-size: 1vw;		/*文字サイズ（ウィンドウ幅に合わせて文字サイズも自動で変動します）*/
}
/*box2内のfigure(画像)タグ*/
.box2 figure {
	margin-bottom: 5px;	/*下に空けるスペース*/
}


/*box2内のh4(見出し)タグ*/
.box2 h4 {
	height: 1.5em;		/*高さ*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
}
.box2 h4 a{text-decoration: none!important;}
.box2 h4 a :hover{
	color:#3656D1;
}


/*box2内のp(段落)タグ*/
.box2 p {
	height: 6.0em;		/*高さ。*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	text-align: left;	/*文字を左よせ*/
	font-size:16px;
}
.box2 p a{text-decoration: none!important;}
.box2 p a :hover{
	color:#3656D1;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	padding-top: 40px;
	text-align: center;
	font-size: 85%;
}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	padding: 10px;
}
/*メニュー１個あたり*/
#footermenu li {
	display: inline-block;	/*横並びにさせる*/
	padding: 2px 10px;	/*上下、左右への余白*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	background: #1e2187;	/*背景色*/
	color: #fff;		/*文字色*/
}
#copyright a {
	text-decoration: none;
	color: #fff;		/*文字色*/
}

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

/*一日ページ、イベントページ　コメントブロック
---------------------------------------------------------------------------*/
/*費用について*/
.price ul {
	padding:0 0 30px 30px;
}
.price ul li{
	list-style-type:circle;
	line-height:1.3em;
	margin:10px 0;
}


/*ブロック全体の設定*/
#new01 dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*タイトル設定*/
#new01 dt {
	float: left;
	width: 10em;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
/*文字設定*/
#new01 dd {
	padding-left: 10em;
	margin-bottom: 20px;
	/*border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
/*キッズのページ　一覧ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new02 dl {
	padding: 15px;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
	background:#fff;
	border-radius:10px;
}
/*タイトル設定*/
#new02 dt {
	float: left;
	width: 7em;
	margin-bottom: 20px;
	font-weight:bold;
	color:#CD3A3A;
	text-align:justify;
text-align-last:justify;
line-height:1.5em;
}
/*文字設定*/
#new02 dd {
	margin-left:9em;
	margin-bottom: 20px;
	line-height:1.5em;
	/*border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
/*.bgcolor2{background:#ddd;}*/

/*キッズルーム開催予定*/
table .tbl-r02{
  margin: 20px auto;
}
.tbl-r02 th {
  background: #57bdfe;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
}
.tbl-r02 td {
　border: solid 1px #ccc;
  padding: 10px;
}
 
.bg{background:#ddd;}


/*listブロック（event.htmlで使用）
---------------------------------------------------------------------------*/
/*各ボックスの指定*/
.list {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 30%;			/*幅*/
	margin-left: 2.5%;	/*左に空けるスペース*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	/*background: #000;	/*背景色*/
}
.list a {
	display: block;
	text-decoration: none;
}
/*マウスオン時*/
.list a:hover {
	color: #fff;	/*文字色*/
}
/*リンクを指定した際に右上に出る「→」*/
.list a::after {
	content: "→";	/*この文字を出力します。変更してもかまいませんが機種依存文字は使わないで下さい。*/
	position: absolute;
	right: 10px;	/*右からの配置場所指定*/
	top: 10px;		/*上からの配置場所指定*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 30px;	/*行間。下のwidthと揃えて下さい。*/
	width: 30px;		/*幅。上のline-heightと揃えて下さい。*/
	border-radius: 50%;	/*角丸の指定。円形になります。*/
	background: #ccc;	/*背景色*/
	color: #000;		/*文字色*/
	text-align: center;
}
/*figure画像*/
.list a figure {
	opacity: 1.0;	/*リンクを指定した際は60%だけ色を出す。*/
}
/*マウスオン時のfigure画像*/
.list a:hover figure {
	opacity: 0.8;		/*リンクを指定した際のマウスオン時に色を100%出す。*/
}

/*マウスオン時の文字*/
.list a:hover p {
	color: #57bdfe;			/*マウスオン時の文字色*/	/*リンクを指定した際のマウスオン時に色を100%出す。*/
}

/*マウスオン時のタイトル*/
.list a:hover h4 {
	color: #57bdfe;			/*マウスオン時の文字色*/	/*リンクを指定した際のマウスオン時に色を100%出す。*/
}
/*h4タグ*/
.list h4 {
	/*position: absolute;
	bottom: 0px;	/*下からの配置場所指定。*/
	left: 0px;		/*左からの配置場所指定。*/
	width: 100%;
	/*background: #000;	/*背景色（古いブラウザ用）*/
	/*background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は色が50%出た状態。*/
	text-align: center;	/*内容をセンタリング*/
	padding: 10px 0;	/*上下、左右への余白*/
	font-weight:bold;
}
/*h5タグ*/
h5 {
	left: 0px;		/*左からの配置場所指定。*/
	width: 100%;
	text-align: left;	/*内容をセンタリング*/
	padding: 10px 0 0 10px;	/*上下、左右への余白*/
	margin-bottom:20px;
	font-weight:bold;
	color:#002A9C;
	font-size:110%;
	border-bottom:dotted 1px #999;
	float:left;
}

/*h6タグ*/
h6 {
	left: 0px;		/*左からの配置場所指定。*/
	width: 100%;
	text-align: left;	/*内容をセンタリング*/
	padding: 10px 0 5px 0;	/*上下、左右への余白*/
	font-weight:bold;
	color:#3A8F0C;
	font-size:110%;
	border-bottom:dotted 1px #999;
}

.seifuku-sub img{
	width:45%;
	float:left;
	margin:10px 5px;
}


.title-sub{
	float:left;	/*左からの配置場所指定。*/
	width: 100%;
	text-align: center;	/*内容をセンタリング*/
	padding: 8px 0;	/*上下、左右への余白*/
	margin-bottom:20px;
	font-weight:bold;
	color:#002A9C;
	font-size:110%;
	background:#B1EDFC;
	border-radius:4px;
}

/*サムネイル画像の設定
---------------------------------------------------------------------------*/
.thumbnail {
	width: 70px;	/*サムネイル画像の幅*/
	margin: 5px;	/*画像同士に空けるスペース*/
	opacity: 0.7;	/*透明度。色が70%出た状態。*/
}
/*マウスオン時*/
.thumbnail:hover {
	opacity: 1;	/*透明度。色が100%出た状態。*/
}

/*よく頂く質問
---------------------------------------------------------------------------*/
/*外側ブロック*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問*/
.faq dt {
	color: #57bdfe;		/*文字色*/
	font-weight: bold;	/*太字にする設定*/
	padding-left: 30px;	/*背景アイコンに重ならないよう左に余白を作る*/
	background: url(../images/faq_q.png) no-repeat left top / 30px;	/*「Q」アイコン*/
}
/*回答*/
.faq dd {
	padding-left: 30px;		/*背景アイコンに重ならないよう左に余白を作る*/
	margin-bottom: 20px;	/*ボックスの下側（外側）に空けるスペース*/
	padding-bottom: 20px;	/*ボックス内の下側に空けるスペース*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	background: url(../images/faq_a.png) no-repeat left top / 30px;	/*「A」アイコン*/
}

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

/*テーブル（ta2）サブブロックの受付テーブルに使用。
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	border: 1px solid #b7b7b7;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;
	background: #fff;		/*背景色*/
	color: #333;
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta2設定*/
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 20px;
	text-align: left;	/*センタリング*/
	background: #fff;	/*背景色*/
	color: #333;
	
}
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #b7b7b7;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
}
/*曜日*/
.ta2 th {
	background: #fffbe3;
	width:20%;
}


/*テーブル（ta2）サブブロックの受付テーブルに使用。
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta3 caption {
	border: 1px solid #b7b7b7;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;
	background: #fff;		/*背景色*/
	color: #333;
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta3設定*/
.ta3 {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 20px;
	text-align: left;	/*センタリング*/
	background: #fff;	/*背景色*/
	color: #333;
	
}
.ta3, .ta3 td, .ta3 th {
	word-break: break-all;
	border: 1px solid #b7b7b7;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	text-align:center;
}

.ta3 th {
	background: #fffbe3;
	width:20%;
	line-height:1.5em;
}

.ta3 tr .month{width:20%!important;}
.ta3 tr .day{width:40%!important;}

/*inputボタン
---------------------------------------------------------------------------*/
#main input[type="submit"].btn,
#main input[type="button"].btn,
#main input[type="reset"].btn {
	padding: 5px 10px;
	border: 1px solid #ccc;
	font-size: 18px;
	border-radius: 3px;
	background: #eee;
}
/*マウスオン時の設定*/
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
	border: 1px solid #999;
	background: #fff;
}

/*box（info1.htmlやstaff.htmlで使っている枠色がついたタイプのボックス）
---------------------------------------------------------------------------*/
/*box*/
#main .box {
	overflow: hidden;
	border: 3px solid #57bdfe;	/*枠線の幅、線種、色*/
	padding: 20px;				/*ボックス内の余白*/
	border-radius: 10px;		/*角丸のサイズ。この１行を削除すれば角のとれた長方形になります。*/
	margin-bottom: 20px;		/*ボックスの下に空けるスペース*/
	background: #fff;			/*背景色*/
	clear:both;
}
/*box内のh4タグ*/
#main .box h4 {
	color: #57bdfe;		/*文字色*/
	font-size: 130%;	/*文字サイズ*/
	float:right;
	width:55%;
}
/*box内のpタグ*/
#main .box p {
	padding: 0 !important;
	float:right;
	width:55%;
}
/*box内のfrとflスタイルのリセット*/
#main .box .fr,#main .box .fl {margin-bottom: 0;}

/*box（幼稚園概要）
---------------------------------------------------------------------------*/
/*box*/
#main .box-about {
	overflow: hidden;
	border: 3px solid #57bdfe;	/*枠線の幅、線種、色*/
	padding: 20px;				/*ボックス内の余白*/
	border-radius: 10px;		/*角丸のサイズ。この１行を削除すれば角のとれた長方形になります。*/
	margin-bottom: 20px;		/*ボックスの下に空けるスペース*/
	background: #fff;			/*背景色*/
	clear:both;
}
/*box内のh4タグ*/
#main .box-about h4 {
	color: #57bdfe;		/*文字色*/
	font-size: 130%;	/*文字サイズ*/
	float:left;
	width:100%;
}
/*box内のpタグ*/
#main .box-about p {
	padding: 0 !important;
	float:left;
	width:100%;
}



/*ページ内メニュー（info.htmlで使用）
---------------------------------------------------------------------------*/
/*ブロック全体*/
.menu {
	overflow: hidden;
	margin-bottom: 20px;	/*下に空けるスペース*/
	text-align: center;		/*内容をセンタリング*/
}
/*メニュー１個あたりの指定*/
.menu li {
	display: inline;	/*横並びになる指定*/
	border-right: 1px solid #999;	/*右側の線の幅、線種、色*/
}
.menu li a {
	padding: 10px;	/*メニュー内余白*/
}
/*最初のメニューへの追加指定*/
.menu li:first-child {
	border-left: 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;z-index: 100;position: fixed;
	width: 100px;		/*幅*/
	bottom: 55px;		/*下からの配置場所指定*/
	right: 3%;			/*右からの配置場所指定*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 0.5S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	border-radius: 50%;
	border: 3px solid #57bdfe;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.5);	/*背景色。255,255,255は白のことで0.3は色が30%出た状態のこと。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #fff;
}

/*pdfアイコン
---------------------------------------------------------------------------*/
a[href$=".pdf"]{
	display: inline-block;
	background: url(../images/PDF_32.png) no-repeat right center;
	padding: 5px 40px 5px 0px;
}

/*トップページの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;
}


/*下に罫線*/
.border-b{
	border-bottom:solid 1px #ccc;
	margin-bottom:10px;
	padding-bottom:5px;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
.check {
	background: #FF3B3F;
	color:#fff;
	padding: 10px 0px!important;
	margin-bottom: 20px;
	border-radius:5px;
	text-align:center;
}

.check a{
	color:#fff;
}
.check a:hover{
	color:#F7E992;
}
#sub p.check {
	padding: 5px !important;
}
p.check a {color: #fff;}

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

/*listブロック
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding:0 0 40px;
	align-items: flex-start;
}

/*１個あたりのボックス設定*/
.list {
	display: flex;				/*flexボックスを使う指定*/
	flex-direction: column;		/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 30px;	/*ボックス同士の上下間に空けるスペース*/
	padding: 5px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.6);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	width: 30%;				/*幅*/
	margin:1%;	/*空けるスペース*/
	position:relative;
}

/*２の倍数のlistブロックへの追加設定*/
.list:nth-of-type(3n) {
	margin-right: 0;	/*右側の余白をなくす*/
}

/*ボックス内のfigure画像*/
.list figure {
	margin: 0;	/*上の.listで設定しているpadding分を相殺して画像をブロックいっぱいに出す*/
}
.list figure img{
	width:100%;
	object-fit: cover; 
}


/*ボックス内のh4タグ*/
.list h4 {
	margin: 0em 0 0.5em;	/*上、左右、下への余白*/
	text-align:center;
	color:#ae121f;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight:bold;
	font-size:140%;
}

/*ボックス内のtextブロック*/
.list .text {
	flex: 1;
	text-align:center;
}

/*ボックス内のpタグ*/
.list p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #FF9E00;border: 1px solid #FF9E00;padding: 5px 10px;border-radius: 4px; color:#fff;}/*オレンジ*/
.look01 {background: #F56E6E;border: 1px solid #F56E6E;padding: 5px 10px;border-radius: 4px; color:#fff;}/*ピンク*/
.look02 {padding: 5px 10px;border-radius: 4px; color:#000; font-weight:bold;}/*太字*/
.mb15,.mb1em {margin-bottom: 15px;}
.mb10 {margin-bottom: 10px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
.color1, .color1 a {color: #57bdfe;}/*ブルー*/
.bgcolor1 {background: #f2f2f2 !important;} 
.bgcolor2 {background: #dbebf7 !important;} 
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.w40p {width: 40%;}
.w30p {width: 30%;}
.w25p {width: 25%;}
.w20p {width: 20%;}
.w100p {width: 100%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fr {float: right;margin-left: 2%;margin-bottom: 20px;}
.fl {float: left;margin-right: 2%;margin-bottom: 20px;}
.big1 {font-size: 24px;letter-spacing: 0em;}
#sub .big1 {font-size: 20px;letter-spacing: normal;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.dn {display: none;}
.fwb{font-weight:bold;}
.fwn{font-weight:normal;}
.small{font-size:85%;}
.small1{font-size:18px;}
.color2{color:#2058AD; font-size:140%; line-height:1.2em; margin-bottom:10px!important; border-bottom:dotted 1px #666; margin-top:20px!important;}
.color3{color:#28ADF7; font-size:120%; line-height:1.3em; margin-bottom:20px;}
.color4, .color4 a {color: #FF5F00; font-weight:bold; font-size:100%!important;}
.color5{color:#ff0000;}
.color6{color:#2058AD; font-size:100%;}
.star{color:#ff0000;font-weight:bold;font-size:120%;}
/*ボーダートップ*/
.bd{
	border-top:solid 1px #ccc;
	padding:10px 0px;
	margin-top:20px;
	clear:both;
}
.em{font-weight:bold;}


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

/*container（footer以外を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 0 3%;		/*上下、左右へのボックス内の余白*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*トップページでのmainコンテンツへの追加設定*/
.home #main {
	margin-top: 23%;	/*上に空けるスペース。スライドショーとのバランスをとって設定して下さい。*/
}
	
	
	/*box2内のp(段落)タグ*/
.box2 p {
	height: 6.0em;		/*高さ。*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	text-align: left;	/*文字を左よせ*/
	font-size:15px!important;
}

}



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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: absolute;
	left: 3%;	/*画面の左からの配置場所指定*/
	top: 0px;	/*画面の上からの配置場所指定*/
}
/*ロゴ画像ブロック*/
header #logo {
	width: 170px;	/*ロゴ画像の幅*/
}

/*contents
---------------------------------------------------------------------------*/
/*トップページのcontentsブロック*/
.home #contents {
	padding-top: 25%;	/*上のスライドショーとのバランスをとって下さい*/
}
/*トップページ以外のcontentsブロック*/
#contents {
	padding-top: 200px;
}

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

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

/*header,main,sub
---------------------------------------------------------------------------*/
header, #main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

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

}



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

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツのh2タグ設定*/
#main h2 {
	font-size: 18px;	/*文字サイズ*/
	padding: 10px 20px 10px 60px;	/*上、右、下、左への見出し内の余白*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	width: 60px;	/*幅*/
}
	
/*box1（３カラムコンパクトボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	width: auto;		/*ボックスの幅*/
	float: none;		/*左に回り込み*/
	text-align: left;	/*内容をセンタリング*/
	margin: 0 2% 20px;		/*上、左右、下へのボックスの外に空けるスペース*/
}
/*box1内のfigure(画像)タグ*/
.box1 figure {
	width: 20%;		/*画像の幅*/
	float: left;	/*画像を左に回り込み*/
	margin-right: 3%;	/*右にあけるスペース*/
}
/*box1内のh4(見出し)タグ*/
.box1 h4 {
	height: auto;
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*box1内のp(段落)タグ*/
.box1 p {
	height: auto;
}	
/*box2（３カラムコンパクトボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	width: auto;		/*ボックスの幅*/
	float: none;		/*左に回り込み*/
	text-align: left;	/*内容をセンタリング*/
	margin: 0 2% 20px;		/*上、左右、下へのボックスの外に空けるスペース*/
}
/*box2内のfigure(画像)タグ*/
.box2 figure {
	width: 20%;		/*画像の幅*/
	float: left;	/*画像を左に回り込み*/
	margin-right: 3%;	/*右にあけるスペース*/
}
/*box2内のh4(見出し)タグ*/
.box2 h4 {
	height: auto;
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*box2内のp(段落)タグ*/
.box2 p {
	height: auto;
}
	
/*絵本　画像の設定*/
.book{
	float:left;
	width:100%;
	text-align:center;
	margin-bottom:20px;
}


}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 14px;
	/*font-size: 2.93vw;*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像ブロック*/
header #logo {
	width: 120px;	/*ロゴ画像の幅*/
}
/*contents
---------------------------------------------------------------------------*/
/*トップページのcontentsブロック*/
.home #contents {
	padding-top: 60%;	/*上のスライドショーとのバランスをとって下さい*/
}
/*トップページ以外のcontentsブロック*/
#contents {
	padding-top: 140px;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツのh2タグ設定*/
#main h2 {
	font-size: 16px;
	padding: 10px 20px;	/*上下、左右への見出し内の余白*/
	background-image: none;
}
/*mainコンテンツのh3タグ設定*/
#main h3::first-letter {
	border-left: none;
	padding-left: 0;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 0px 20px;	/*上、左右、下への余白*/
}

/*listブロック（event.htmlで使用）
---------------------------------------------------------------------------*/
/*各ボックスの指定*/
.list {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 100%;			/*幅*/
	margin-left: 0%;	/*左に空けるスペース*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	/*background: #000;	/*背景色*/
}
/*リンクを指定した際に右上に出る「→」*/
.list a::after {
	right: 2px;			/*右からの配置場所指定*/
	top: 2px;			/*上からの配置場所指定*/
	line-height: 20px;	/*行間。下のwidthと揃えて下さい。*/
	width: 20px;		/*幅。上のline-heightと揃えて下さい。*/
}
/*h4タグ*/
.list h4 {
	padding: 0;
}
	
	
/*box内のh4タグ*/
#main .box h4 {
	color: #57bdfe;		/*文字色*/
	font-size: 130%;	/*文字サイズ*/
	float:left;
	width:100%;
	line-height:1.3em;
	margin-top:10px;
}
	
/*box内のpタグ*/
#main .box p {
	padding: 0 !important;
	float:left;
	width:100%;
}
	
/*box1,box2共通設定
---------------------------------------------------------------------------*/
/*box内のfigure(画像)タグ*/
.box1 figure,.box2 figure {
	width: 100%;
}
	
	/*box2（３カラムコンパクトボックス）
---------------------------------------------------------------------------*/

/*box2内のh4(見出し)タグ*/
.box2 h4 {
	height: auto;
	margin-bottom: 10px;	/*下に空けるスペース*/
	float:left;
	width:100%;
}
/*box2内のp(段落)タグ*/
.box2 p {
	height: auto;
	float:left;
}

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

/*よく頂く質問
---------------------------------------------------------------------------*/
.faq {
	padding: 0px;
}
.faq dt,.faq dd {
	background-size: 25px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 18px;letter-spacing: normal;}
.sh {display:block;}
.pc {display:none;}
.small1{font-size:12px;}
.color2{margin-top:5px!important; font-size:110%;}
	
/*一日ページ、イベントページ　コメントブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new01 dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*タイトル設定*/
#new01 dt {
	float: left;
	width: 100%;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
/*文字設定*/
#new01 dd {
	padding-left: 0em;
	margin-bottom: 20px;
	float:left;
	/*border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
	
.w40p{width:100%;}	
	
	
	/*キッズのページ　一覧ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new02 dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*タイトル設定*/
#new02 dt {
	float: left;
	width: 7em;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
/*文字設定*/
#new02 dd {
	padding-left: 0em;
	margin-bottom: 20px;
	float:left;
	/*border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
	
/*キッズルーム開催予定*/
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r02 {
    width: 100%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
　　border-bottom: none;
    display: block;
    width: 100%;
	  padding:3px ;
	  line-height:1.3em;
  }
 .tbl-r02 td {padding-bottom:10px}
	.bg{background:none;}

	/*コロナ対策ページ*/
.yoko-image img{
	width:98%;
	margin:1%;
}	
	
}
