@charset "utf-8";


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


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	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: #fafafa url(../images/bg.jpg) no-repeat center top / 100% fixed;	/*背景色、背景画像の読み込み*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,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;}
video {max-width: 100%;}
iframe {width: 100%;}

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

/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 3%;	/*ブロック内の余白*/
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック。ロゴとメニューブロックです。*/
header {
	overflow: auto;
	overflow-x: hidden;
	height: 100%;
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅*/
	padding: 0 2%;	/*h2がスイングするので、若干の左右の余白を作っておきます*/
	position: fixed;	/*スクロールしても固定表示させる指定*/
	top: 3%;		/*上からの配置場所指定*/
	left: 1%;		/*左からの配置場所指定*/
}
.c1 header {
	display: none;
}
/*ロゴ画像（はちまん認定こども園）*/
header #logo img {
	width: 45%;	/*幅*/
	position: absolute;z-index: 1;
	left: 10%;	/*左からの配置場所指定*/
	top: 0px;	/*上からの配置場所指定*/
	border-radius: 50%;	/*丸くする指定*/
}
/*h2タグ設定（ロゴの下に重なった左右にスイングする見出し）*/
header h2 {
	animation-name: rotate1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 8S;		/*アニメーションを実行する時間。「s」は秒の事。*/
	animation-iteration-count: infinite;	/*実行する回数。「infinite」は無限に繰り返す意味。*/
	animation-timing-function: linear;		/*アニメーションのパターン。速度を一定に変化させる指定。*/
	background: url(../images/menu1.png) no-repeat center center / 90% 90%;	/*背景画像の読み込み*/
	text-align: center;	/*文字をセンタリング*/
	color: #fff;		/*文字色*/
	font-size: 2vw;		/*文字サイズ*/
	padding: 48% 0 30% 0;		/*上下、左右へのタグ内の余白*/
	margin: 20px 0 0px;		/*上下、左右へのタグの外側へとる余白。ロゴや下のメニューとの余白バランスをとって下さい。*/
}
/*h2タグ内の小文字*/
header h2 span {
	display: block;
	font-size: 14px;	/*文字サイズ*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar {
	font-size: 21px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.3em;
}
/*メニュー１個あたりの設定*/
#menubar a {
	text-decoration: none;
	display: block;
	padding: 10px 0;	/*上下、左右へのメニュー内の余白*/
	border: 1px solid transparent;	/*マウスオン時にボーダーを出す際に、位置がずれないよう透明(transparent)のボーダーを引いておく。*/
	border-radius: 10px;	/*角丸の指定*/
	margin-bottom: 10px;	/*メニュー間の余白*/
}
/*色文字の指定（最初のspanタグ）*/
#menubar li span:first-child {
	color: #38c380;	/*文字色*/
}
/*小文字の指定（最後のspanタグ）*/
#menubar li span:last-child {
	display: block;
	font-size: 16px;	/*文字サイズ*/
	color: #999;		/*文字色*/
}
/*マウスオン時*/
#menubar a:hover {
	border: 1px solid #38c380;	/*枠線を出す指定。幅、線種、色。*/
	opacity: 0.8;	/*透過度（1=なし）*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainブロック*/
#main {
	float: right;		/*右に回り込み*/
	width: 76%;			/*幅*/
	padding: 40px 0;	/*上下、左右へのブロック内の余白*/
	animation-name: opa2;	/*keyframes.cssで使う@keyframesの指定*/
	animation-fill-mode: both;
	animation-duration: 0.8S;	/*アニメーションを実行する時間。「s」は秒の事。*/
	animation-delay: 0.8s;	/*出現するタイミング（秒後）*/
	position: relative;
}
.c1 #main {
	float: none;
	width: auto;
}
/*メインコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	color: #38c380;	/*文字色*/
	margin-bottom: 35px;	/*見出しの下に空けるスペース*/
	padding: 0 20px 20px;	/*上、左右、下へのタグ内の余白*/
	font-size: 36px;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	background: url(../images/line1.png) repeat-x left bottom / 400px;	/*下線の画像の読み込み*/
	text-align: center;	/*テキストをセンタリング*/
}
/*メインコンテンツのh3タグ設定*/
#main h3 {
	color: #38c380;	/*文字色*/
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	font-size: 26px;		/*文字サイズ*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
	text-align: justify;
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	margin-top: 30px;
}

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

/*写真フレーム・傾き設定
---------------------------------------------------------------------------*/
.pframe,.pframe1,.pframe2,.pframe3 { /* HTMLで使用するクラス名 */
	float: right;	/*左に回り込み*/
	margin: 5px 20px 20px 40px;	/*上 右 下 左 に空けるスペース*/
	width: 30%; /* 画像サイズ、値は適宜 */
	border: 7px solid #fff; /* 写真の枠の太さと色 */
	box-shadow: 0 0 5px #BABABA; /* 写真の枠の影の太さと色 */
/*	transform: rotate(0deg); /* 全体を回転、今回はは9度 */
	overflow: hidden; /* 不要部分は消す */
}
.dpframe,.dpframe1,.dpframe2,.dpframe3 { /* HTMLで使用するクラス名 */
	margin: 5px 5% 20px 5%;	/*上 右 下 左 に空けるスペース*/
	width: 35%; /* 画像サイズ、値は適宜 */
	border: 7px solid #fff; /* 写真の枠の太さと色 */
	box-shadow: 0 0 5px #BABABA; /* 写真の枠の影の太さと色 */
}
.pframe1,.dpframe1 {
	transform: rotate(-2deg); /* 全体を回転、今回はは9度 */
}
.pframe2,.dpframe2 {
	transform: rotate(2deg); /* 全体を回転、今回はは9度 */
}
.pframe3,.dpframe3 {
	transform: rotate(-3deg); /* 全体を回転、今回はは9度 */
}
 
.pframe img { /* HTMLで使用するクラス名の画像 */
/* transform-origin: 20％ 20％; /* 左上からの回転の中心点の位置 */
/*  transform: rotate(-9deg);  枠だけ傾け写真は傾けない、今回は適用しない */
}

/*画像*/
#main .list figure {
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	margin-right: 20px;	/*右に空けるスペース*/
}
/*段落タグ*/
#main .list p {
	padding: 0;
}

/*枠線なしリスト*/
#main .list2 {
	overflow: hidden;
	position: relative;
	border: 1px solid transparent;	/*枠線の幅、線種、色*/
	border-radius: 10px;		/*角丸の指定。この１行を削除すれば通常の長方形になります。*/
	padding: 20px;				/*ブロック内の余白*/
	margin-bottom: 10px;		/*ブロック同士の余白。*/
}
/*画像*/
#main .list2 figure {
	float: right;	/*右に回り込み*/
	width: 30%;		/*幅*/
	margin-left: 30px;	/*左に空けるスペース*/
}
/*段落タグ*/
#main .list2 p {
	padding: 0;
}

/*年間行事リスト*/
.eventcal {
	overflow: hidden;
	position: relative;
	border: 1px solid transparent;	/*枠線の幅、線種、色*/
	border-radius: 10px;		/*角丸の指定。この１行を削除すれば通常の長方形になります。*/
	padding: 20px;				/*ブロック内の余白*/
	margin-bottom: 10px;		/*ブロック同士の余白。*/
}
/*画像*/
.eventcal figure {
	float: right;	/*右に回り込み*/
	width: 30%;		/*幅*/
	margin-left: 30px;	/*左に空けるスペース*/
}
/*段落タグ*/
.eventcal p::first-letter {
	border-left: 4px dotted #f46e97;
	padding-left: 7px;
}
.eventcal p {
	display: inline-block;
	line-height: 1.5em;
}

/*mainコンテンツの角丸囲み
---------------------------------------------------------------------------*/
#main .list H5 {
	clear: both;
	float: left;	/*左に回り込み*/
	width: 105px;			/*幅*/
	height: 105px;			/*高さ*/
	border-radius: 8px;		/*角丸*/

	font-size: 21px;		/*文字サイズ*/
	color: #fff;	/*文字色*/
	padding: 15px;	/*上下、左右へのメニュー内の余白*/
	display:flex;
	justify-content:center; /*横中央*/
	align-items:center; /*縦中央*/
	text-align:center; /*行揃えを中央*/
	
	margin-right: 20px;	/*右の余白*/
}
#main .list2 H5 {
	clear: both;
	float: left;	/*左に回り込み*/
	width: 100px;			/*幅*/
	height: 100px;			/*高さ*/
	border-radius: 100px;		/*角丸*/

	font-size: 21px;		/*文字サイズ*/
	color: #fff;	/*文字色*/
	padding: 15px;	/*上下、左右へのメニュー内の余白*/
	display:flex;
	justify-content:center; /*横中央*/
	align-items:center; /*縦中央*/
	text-align:center; /*行揃えを中央*/
	
	margin-right: 20px;	/*右の余白*/
}
.bgc1 {
	background-color: #FF77C2;
}
.bgc2 {
	background-color: #5BC7CF;
}
.bgc3 {
	background-color: #87DC5B;
}

/*h4見出しタグ設定
---------------------------------------------------------------------------*/
#main H4 {
	font-size: 20px;		/*文字サイズ*/
	font-weight:900;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*テキストを右寄せ*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;
}
/*リンクテキスト*/
footer a {text-decoration: none;}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
dl.faq,.faq_b {
	padding: 0 20px;	/*上下、左右へのブロック内の余白*/
	line-height: 1.8em;
}
/*質問（Q）ブロック*/
dl.faq dt {
	color: #38c380;		/*文字色*/
	font-size: 105%;
	font-weight: 600;	/*太字にする*/
	background: url("../images/outline_q.png") no-repeat left top / 25px;	/*Qアイコンの読み込み。幅を30pxに。*/
	padding-left: 35px;		/*左に空ける余白*/
	margin-bottom: 8px;	/*下に空ける余白*/
}
/*回答（A）ブロック（アイコン無）*/
dl.faq dd {
	background: url(../images/) no-repeat left top / 25px;	/*Aアイコンの読み込み。幅を30pxに。*/
	padding-left: 35px;		/*左に空ける余白*/
	margin-bottom: 35px;	/*下に空ける余白*/
}
/*回答（A）ブロック（アイコンあり）*/
dl.faq_b dd {
	background: url("../images/outline_a.png") no-repeat left top / 25px;	/*Aアイコンの読み込み。幅を30pxに。*/
	padding-left: 35px;		/*左に空ける余白*/
	margin-bottom: 15px;	/*下に空ける余白*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*園の概要（about.html）のテーブルの設定*/
.outline1, .outline1 td, .outline1 th,
.outline2, .outline2 td, .outline2 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 12px;
	margin-bottom: 70px;
}
/*テーブル１行目に入った見出し部分*/
.outline1 h1,.outline2 h1 {
	font-size: 20px;	/*文字サイズ*/
	letter-spacing: 0.4em;	/*文字間隔を少し広めにとる設定。*/
	font-weight: 900;
}
/*テーブル内の左側*/
.outline1 th,.outline2 th {
	width: 28%;
	background: #EEF9E8;	/*背景色*/
}
/*テーブル内の左側*/
.outline2 th,.outline2 th {
	width: 28%;
	background: #FCE5F2;	/*背景色*/
}
/*テーブル内の右側*/
.outline1 td,.outline1 td,
.outline2 td,.outline2 td {
	width: inherit;
	background: #fff;	/*背景色*/
}

/*園の1日・行事（daylylife.html）ページのテーブルの設定*/
.daylylife1, .daylylife1 td, .daylylife1 th,
.daylylife2, .daylylife2 td, .daylylife2 th,
.daylylife3, .daylylife3 td, .daylylife3 th {
	border-bottom: 1px dotted#38c380;	/*テーブルの枠線の幅、線種、色*/
	padding: 12px;
	margin-bottom: 70px;
}
/*テーブル１行目に入った見出し部分*/
.daylylife1 h1,.daylylife2 h1,.daylylife3 h1 {
	font-size: 20px;	/*文字サイズ*/
	letter-spacing: 0.4em;	/*文字間隔を少し広めにとる設定。*/
	font-weight: 900;
}
/*テーブル内の左側*/
.daylylife1 th {
	width: 25%;
	color: #f46e97;
}
.daylylife2 th {
	width: 25%;
	color: #5B7EFF;
}
.daylylife3 th {
	width: 25%;
}
/*テーブル内の右側*/
.daylylife1 td, .daylylife2 td, .daylylife3 td {
	width: inherit;
}

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

/*フォーム関連
---------------------------------------------------------------------------*/
/*ボタン（btn）*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;	/*背景色*/
}
/*input,textarea共通*/
input,textarea {
	outline: none;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: transparent;
}
/*input,textareaのフォーカス時*/
input:focus,textarea:focus {
	background: #fff;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*デフォルトでは非表示に*/
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: 100px;		/*幅*/
	line-height: 100px;	/*高さ*/
	bottom: 30px;		/*下からの配置場所指定*/
	right: 1%;			/*右からの配置場所指定*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;		/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
body.is-fixed-pagetop .nav-fix-pos-pagetop img {
	opacity: 0.7;
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop img:hover {
	opacity: 1;
}

/*アイコン
---------------------------------------------------------------------------*/
.icon1 {
	display: inline-block;
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 80%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin-left: 10px;
	vertical-align: 0.15em;
}
.icon2 {
	display: inline-block;
	background: #FFF;	/*背景色*/
	border: solid 1px #F00;
	color: #F00;		/*文字色*/
	font-size: 80%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin-left: 10px;
	vertical-align: 0.15em;
}
.icon3 {
	display: inline-block;
	background: #FF77C2;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 75%;		/*文字サイズ*/
	letter-spacing: 1px;		/*文字間隔*/
	line-height: 1.5;
	padding: 5px 15px;
	border-radius: 5px;
	margin-left: 30px;
	vertical-align: 0.2em;
}
/*概要（guidance.html）の見出し囲み*/
.icon4 {
	background: #5B7EFF;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 80%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 7px 15px;
	border-radius: 5px;
	margin-left: 0px;
}
.icon41 {
	background: #FFF;	/*背景色*/
	border: solid 2px #5B7EFF;
	color: #5B7EFF;		/*文字色*/
	font-size: 80%;		/*文字サイズ*/
	font-weight: 900;
	line-height: 1.5;
	padding: 7px 15px;
	border-radius: 5px;
	margin-left: 0px;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

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

/*その他
---------------------------------------------------------------------------*/
.look {background: rgba(0,0,0,0.1);border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.clear {clear: both;}
.color1, .color1 a {color: #f46e97;}
.color2, .color2 a {color: #5B7EFF;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin: 10px;}
img.fl {float: left;margin: 10px;}
.fr {float: right;}
.fl {float: left;}
.big1 {font-size: 25px;letter-spacing: 0.1em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.clearfix::after {content: "";display: block;clear: both;}
.ofh {overflow: hidden;}
.btm {margin-bottom: 50px;}


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 16px;
	line-height: 1.6;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック。ロゴとメニューブロックです。*/
header {
	position: absolute;
	top: 0%;
	left: 0%;
}
/*ロゴ画像（SAMPLE KID'S CLUB）*/
header #logo img {
	width: 90%;
	top: 28px;
	left: 10px;
	transform: rotate(-10deg);
}
/*h2タグ設定（ロゴの下に重なった左右にスイングする見出し）*/
header h2 {
	display: none;	/*非表示にする*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: none;
	width: auto;
}
/*メインコンテンツのh2タグ設定*/
#main h2 {
	font-size: 26px;		/*文字サイズ*/
}
/*メインコンテンツのh3タグ設定*/
#main h3 {
	font-size: 25px;		/*文字サイズ*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 0px 20px;	/*上、左右、下への余白*/
}

/*mainコンテンツの角丸囲み*/
#main .list H5 {
	font-size: 19px;		/*文字サイズ*/
	padding: 10px;	/*上下、左右へのメニュー内の余白*/
}
#main H4 {
	font-size: 18px;		/*文字サイズ*/
	font-weight:900;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
	overflow: auto;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;
	z-index: 1;
	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;	/*文字色*/
}
/*小文字の指定（最後のspanタグ）*/
#menubar-s li span:last-child {
	display: block;
	font-size: 13px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.5;
}

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

/*listブロック（program.html で使っています）
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list {
	border: 2px solid #38c380;	/*枠線の幅、線種、色*/
	padding: 10px;				/*ブロック内の余白*/
}
#main .list a {
	padding: 10px;	/*ブロック同士の余白。*/
	margin: -10px;	/*ブロック同士の余白。上のlistのpaddingの相殺用。*/
}
/*h4見出しタグ設定*/
#main .list h4 {
	font-size: 18px;	/*文字サイズ*/
}
/*写真フレーム・傾き設定
---------------------------------------------------------------------------*/
.pframe,.pframe1,.pframe2,.pframe3 { /* HTMLで使用するクラス名 */
	clear: both;
	margin: 20px 10% 20px 10%;	/*上 右 下 左 に空けるスペース*/
	width: 80%; /* 画像サイズ、値は適宜 */
}

/*画像*/
#main .list figure {
	margin-right: 10px;	/*右に空けるスペース*/
}
#main .list2 figure {
	margin-left: 20px;	/*左に空けるスペース*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の余白の変更*/
.ta1 caption,
.ta1, .ta1 td, .ta1 th {
	padding: 5px;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 0px 20px 25px;
}
ol {
	padding: 0 0px 20px 25px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.big1 {font-size: 20px;}
.eventcal p {
	margin-left: 20px;
}


