@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("inview.css");


/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	min-height: 100vh;
	overflow-x: hidden;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #96DCED url(../images/bg_kazari.png) no-repeat left top / 100%;	/*背景色、背景壁紙の読み込み*/
	color: #57524b;		/*全体の文字色*/
	line-height: 2;		/*行間*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}

/*section全般の設定*/
section > div {
	padding: 50px 5%;	/*上下、左右に空ける余白*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #57524b;	/*文字色*/
	transition: 0.3s;
}

a:hover {
	color: #938a7d;	/*マウスオン時の文字色*/
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	max-width: 1400px;				/*最大幅*/
	margin: 0 auto;

}

/*ロゴ画像*/
header .logo {
	margin: 0;
	width: 300px;		/*ロゴ画像の幅*/
	margin-top: 10px;	/*ロゴの上部に空けるスペース*/
	margin-left: 100px;	/*ロゴの左側に空けるスペース*/
}

/*トップページのロゴ画像への追加設定*/
.home header .logo {
	width: 27%;			/*ロゴ画像の幅*/
	margin-left: 0px;	/*ロゴの左側に空けるスペース*/
	margin-top: 130px;	/*ロゴの上に空けるスペース*/
}

/*トップページ以外にある右上の電話番号画像の設定*/
header .tel {
	width: 300px;	/*幅*/
}

@media (min-width: 751px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: -15px;		/*上からの配置場所指定*/
	left: -20px;	/*左からの配置場所指定*/
	width: 100px;	/*幅*/
	height: 100px;	/*高さ*/
	cursor: pointer;
	background: #95ac43 url(../images/ham.png) no-repeat center top/100px;/*背景色、ハンバーガメニュー画像の読み込み。最後のpxは上のwidthとheightと#menubar_hdr.hamと揃えておいて下さい。*/
	border-radius: 58% 42% 61% 39% / 44% 55% 45% 56%;	/*角丸の指定*/
	box-shadow: 2px 2px 0px 4px rgba(0,0,0,0.1);		/*ボックスの影。右へ、したへ、ぼかし幅、広げる距離。0,0,0は黒の事で0.1は色が10%でた状態の事。*/
	transition: 0.2s;
}

/*マウスオン時*/
#menubar_hdr:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

/*×印が出ている状態の設定。*/
#menubar_hdr.ham {
	background: #ff0000 url(../images/ham.png) no-repeat center bottom/100px;
}


/*メニュー設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar {display: none;}
#menubar.db {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;width: 100%;height: 100%;
	display: flex;
	justify-content: center;
	padding-top: 80px;			/*上部にあける余白*/
	font-size: 1.3rem;			/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	animation: opa1 1s both;	/*フェードインのアニメーション*/
	background: #fff;			/*背景色*/
	box-shadow: #95ac43 0px 0px 500px inset;	/*ボックスの影。右へ、下へ、ぼかし幅、insetは内側への影という意味。*/
}

/*最後のメニューの下に余白をあける*/
#menubar.db li:last-of-type a {
	padding-bottom: 80px;
}

/*メニュー1個あたりの設定*/
#menubar ul a {
	display: block;text-decoration: none;
	padding: 20px;	/*メニュー内の余白*/
}

/*装飾文字（英語表記）*/
#menubar ul span {
	display: block;
	font-size: 0.7em;	/*文字サイズ。70%。*/
	opacity: 0.5;		/*透明度。50%色がでた状態。*/
}


/*decoブロック（色がついた装飾タイプのブロック）
---------------------------------------------------------------------------*/
/*decoブロックの設定*/
.deco {
	background: 
	url(../images/bg_deco_top.png) repeat-x center top / 1000px,		/*ブロック上部の背景画像の指定。1000pxは画像幅。*/
	url(../images/bg_deco_bottom.png) repeat-x center bottom / 1000px;	/*ブロック下部の背景画像の指定。1000pxは画像幅。*/
	padding-top: 199px;		/*上部の背景画像の本体の「幅」を1000pxにした際の画像の「高さ-1」をここで設定します*/
	padding-bottom: 54px;	/*下部の背景画像の本体の「幅」を1000pxにした際の画像の「高さ-1」をここで設定します*/
}

/*上で読み込む背景画像のカラーを抜き出して指定して下さい。*/
.deco > div {
	background: #95ac43;
}

/*decoブロックのh2見出し*/
.deco h2 {
	color: #f5f3e5;	/*文字色*/
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、距離、0,0,0は黒の事で0.3は30%色が出た状態。*/
}

/*decoブロック、フッターブロック内にあるcolor-themeの文字色*/
.deco .color-theme, .deco .color-theme a,
#footer .color-theme {
	color: #ffe13d !important;
}

/*リンクテキストのマウスオン時の文字色*/
.deco a:hover {
	color: #726b62;
}

/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック内のh2タグ*/
main h2 {
	position: relative;
	color: #0C7789;			/*文字色*/
	font-size: 2.8rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くする*/
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
	line-height: 1.5;		/*行間*/
}

/*mainブロック内のh3タグ*/
main h3 {
	position: relative;
	font-size: 1.8rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
}

/*mainブロック内のh3タグ内のulineタグ*/
main h3 .uline {
	display: inline-block;
	background: url(../images/u_line1.png) repeat-x center bottom / 100px;	/*下線のイラスト*/
	padding: 0 15px 10px;	/*上、左右、下への余白*/
}

/*装飾文字(small)の指定*/
h2 .small {
	display: block;
	font-size: 0.4em;		/*文字サイズを40%にする*/
}

/*mainブロックのpタグ*/
main p {
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
}

/*微調整*/
main h2 + p,main h3 + p {
	margin-top: -10px;
}


/*２カラム利用時
---------------------------------------------------------------------------*/
.c2 {
	display: flex;
	flex-direction: column;
}


/*２カラム利用時のmainブロック（※冒頭に「.(ドット)」がついていない「main」とは全く異なるので注意して下さい）
---------------------------------------------------------------------------*/
.main {
	order: 0;	/*.mainと.subの配置指定。数字が小さい順に並びます。*/
}


/*２カラム利用時のsubブロック
---------------------------------------------------------------------------*/
.sub {
	order: 1;	/*.mainと.subの配置指定。数字が小さい順に並びます。*/
}


/*subブロックで使っているメニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
.submenu {
	background: #fff;			/*背景色*/
	border-radius: 10px;		/*角丸のサイズ*/
	border: 5px solid #95ac43;	/*枠線の幅、線種、色*/
	padding: 10px 0;			/*上下、左右へのメニュー内の余白*/
}

/*色のついたブロックでの枠線の色*/
.deco .submenu {
	border-color: #c3cf99;
}

/*メニュー一個あたりの設定*/
.submenu li {
	border-bottom: 2px dotted #ccc;	/*下線の幅、線種、色*/
}

/*リンクテキスト*/
.submenu a {
	display: block;text-decoration: none;
	padding: 10px 20px;	/*上下、左右へのメニュー内の余白*/
}

/*マウスオン時*/
.submenu a:hover {
	background: #95ac43;	/*背景色*/
	color: #fff;			/*文字色*/
}


/*footer（フッターメニューとコピーライトを囲むブロック。下にあるfooterとは異なるタグなので間違えないで下さい。）
---------------------------------------------------------------------------*/
/*フッターブロック*/
#footer {
	background: #95ac43;	/*背景色*/
	color: #fff;			/*文字色*/
	margin-top: 50px;		/*フッターの上部(外側)に空けるスペース。上にあるコンテンツとのバランス調整です。*/
	font-size: 0.85rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*リンクテキスト*/
#footer a {
	color: #fff;text-decoration: none;
}

/*フッター内のロゴ画像*/
#footer .logo img {
	display: block;
	position: relative;z-index: 1;	/*下の地図よりも前面に出るようにする設定。地図をロゴより前面に出したいならこの１行を削除。*/
	width: 150px;					/*幅*/
	margin: -120px auto 30px;		/*最初の数字は上へ移動する距離。フッターより上部に飛び出させる為。最後の数字はロゴの下に空けるスペース。地図がない場合のバランス用。*/
	background: #fff;				/*背景色*/
	border-radius: 50%;				/*画像が正方形であれば、正円になります。例えばここを30pxとかにすれば角が丸くなった四角形になります。*/
	padding: 30px;					/*余白*/
	border: 5px solid #95ac43;		/*枠線の幅、線種、色*/
}


/*footer内にある地図。
---------------------------------------------------------------------------*/
#map {
	margin-top: -50px;		/*フッターのロゴに重ねる為の指定。この行を削除すれば、ロゴの下に通常通り配置されます。*/
	margin-bottom: 30px;	/*地図の下に空けるスペース。フッターメニューとの間の余白バランスをとって下さい。*/
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
	margin-bottom: 50px;			/*メニューブロックと、下のコピーライトとの間にとる余白*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 5px;
	display: flex;
	list-style: none;
}

#footermenu li {
	margin-left: 2em;
}

/*リンクテキスト*/
#footermenu a {
	opacity: 0.9;	/*透明度。90%色がついた状態。*/
}
#footermenu a:hover {
	opacity: 1;		/*マウスオン時に色を100%にする*/
}

@media screen and (max-width:700px) {
	#footermenu {
		flex-wrap: wrap;
	}
	
	#footermenu li {
		width: 50%;
	}
}


/*フッター設定（最下部のコピーライトの部分）
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {text-align: center;}
footer .pr {display: block;}


/*listブロック（３カラムタイプ、横長タイプ）、list2ブロック（枠が動く３カラムタイプ）の設定
---------------------------------------------------------------------------*/
/*１個あたりのボックスの指定。「３カラムタイプ」「横長タイプ」共通に適用されます。*/
.list {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;
	align-items: center;			/*垂直揃えの指定。上下中央に配置されるように。*/
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
	background: #fff;				/*背景色。*/
	padding: 30px;					/*ボックス内の余白*/
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.15は色が15%出た状態。*/
	border-radius: 8px;				/*角を丸くする指定*/
	overflow: hidden;				/*はみ出た要素を非表示にする。画像の角が飛び出ないようにする為の指定です。*/
}

/*h4タグの指定。「２カラムタイプ」「横長タイプ」「３カラムタイプ（フレームが動く）」共通に適用されます。*/
.list h4,
.list2 h4 {
	margin: 0;
	font-size: 1.2em;		/*文字サイズを120%に*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする。太字がいいならこの１行を削除。*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}

/*pタグの指定。「２カラムタイプ」「横長タイプ」「３カラムタイプ（フレームが動く）」共通に適用されます。*/
.list p,
.list2 p {
	margin: 0;
}

/*「３カラムタイプ」と「３カラムタイプ（フレームが動く）」のlistボックス全体を囲むボックス*/
.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
}

/*「２カラムタイプ」のlistボックス。１個あたりのボックスの指定です。*/
.list-container .list {
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: stretch;			/*垂直揃えをデフォルトに戻す指定。*/
}

/*「２カラムタイプ」のfigure画像の上書き。*/
.list-container .list figure {
	margin: -30px -30px 30px;	/*１つ目と２つ目は画像周りの余白を埋める指定で、上の.listのpaddingの数字にマイナスをつければOKです。３つ目は画像下に空けるスペース。*/
	width: auto;
}


/*list2ブロック（枠が動く３カラムタイプ）への追加設定
---------------------------------------------------------------------------*/
/*１個あたりのボックスの指定*/
.list2 {
	text-align: center;		/*中身をセンタリング*/
	margin-bottom: 30px;	/*下(ボックスの外側)に空けるスペース。*/
}

/*画像の指定*/
.list2 figure .mask1,.list2 figure .mask2,.list2 figure .mask3 {
	margin-bottom: 30px;	/*画像の下に空ける余白。h4見出しとの余白バランスです。*/
}


/*mask（フレームが動くタイプのアニメーション設定。３タイプ用意しています。）
---------------------------------------------------------------------------*/
/*３タイプ共通設定*/
.mask1,.mask2,.mask3 {
	position: relative;z-index: 10;		/*トップページのスライドショーを動画にする場合、動画が飾りの下に隠れないようにする為*/
	box-shadow: 10px 10px 0px #e2ddc0;	/*ボックスの影。右へ、下へ、ぼかし幅、色。*/
}

/*mask1のアニメーション設定。animation.cssのアニメーションを使っています。*/
.mask1 {
	animation: mask 12s linear infinite;
}

/*mask2のアニメーション設定。animation.cssのアニメーションを使っています。*/
.mask2 {
	animation: kazari1 8s linear infinite;
}

/*mask3のアニメーション設定。animation.cssのアニメーションを使っています。*/
.mask3 {
	animation: kazari2 10s linear infinite;
}

/*トップページのスライドショーを動画にした場合に、影を消す設定*/
#mainimg .mask1,#mainimg .mask2,#mainimg .mask3 {
	box-shadow: none;
}

/*保護者の声ページ
---------------------------------------------------------------------------*/
/*保護者の声ブロック*/
.voice-box {
	margin-top: 75px;
}

.voice-box ul li {
	list-style: none;
}

/*保護者の声リスト*/
.voice-list {
	max-width: 900px;
	margin: 0 auto 140px auto;
}

.voice-list dl {
	display: flex;
	justify-content: space-between;
}

.voice-list dl dt {
	width: 115px;
}

.voice-list dl dd {
	width: calc(100% - 138px);
}

/*保護者の声テキスト*/
.voice-text {
	margin-bottom: 10px;
	font-size: 1.5rem;
}

.voice-name {
	color: #F75757;
	font-size: 1.0rem;
	text-align: right;
}

.voice-item {
	margin-top: 20px;
	background: #F9F7DC;
	padding: 30px;
	border-radius: 10px;
}

@media screen and (max-width:700px) {
	.voice-list dl dt {
		display: none;
	}

	.voice-list dl dd {
		width: 100%;
		margin: 0;
		padding: -3px;	
	}
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.new_con {
	background: #F9F5ED;
	max-width: 1000px;
	margin: 0 auto 30px;
	padding: 30px;
	box-shadow: 2px 2px 10px rgba(0,0,0, 0.15);
	border-radius: 8px;
	overflow: hidden;
}

.new {
    display: grid;	/*gridを使う指定*/
    grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	max-width: 700px;	/*最大幅*/
	margin: 0 auto;
}

/*日付、記事（共通）*/
.new dt,.new dd {
	padding-top: 0.5rem;				/*上の余白*/
	padding-bottom: 0.5rem;			/*下の余白*/
}

/*日付*/
.new dt {
	padding-left: 1rem;			/*左の余白*/
	padding-right: 4rem;			/*右の余白*/
}

@media screen and (max-width:700px) {
	.new dt {
		padding-left: 0rem;			/*左の余白*/
		padding-right: 0.7rem;			/*右の余白*/
	}
	
}

/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
.btn {
	text-align: center;	/*内容をセンタリング*/
}

/*ボタン*/
.btn a,
.btn input {
	display: inline-block;text-decoration: none;border: none;
	color: #fff;			/*文字色*/
	border-radius: 3px;		/*角丸のサイズ。ほんの少しだけ角が丸くなります。*/
	padding: 15px 40px;	/*上下、左右への余白。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.2は色が20%出た状態。*/
	font-size: 1rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #F75757;	/*背景色*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする指定*/
}

/*ボタンのマウスオン時*/
.btn a:hover,
.btn input:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
	cursor: pointer;
	color: #fff;			/*文字色*/
}

/*list、list2内で使う場合のボタン*/
.list .btn a,
.list2 .btn a {
	display: block;		/*幅一杯にとる*/
	margin-top: 20px;	/*ボタンの上に空けるスペース*/
}

/*矢印アイコン（Font Awesome）*/
.btn.arrow a::after {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0a9";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #fff;		/*アイコンの色*/
	font-weight: bold;
	display: inline-block;
	padding-left: 15px;		/*テキストとの間に空けるスペース*/
	transform: scale(1.4);	/*サイズを1.4倍にする設定*/
	transition: 0.3s;
}

/*矢印アイコン（Font Awesome）のマウスオン時*/
.btn.arrow a:hover::after {
	transform: scale(1.6);	/*サイズを少し大きくする*/
}

/*学童についてブロック
---------------------------------------------------------------------------*/
.about_con {
	background: #F9F5ED;
	max-width: 1000px;
	margin: 0 auto 30px;
	padding: 30px;
	box-shadow: 2px 2px 10px rgba(0,0,0, 0.15);
	border-radius: 8px;
	overflow: hidden;
}

/*入所についてブロック
---------------------------------------------------------------------------*/
.join_con {	
	justify-content: center;
	align-items: center;
	background: #F9F5ED;
	max-width: 1000px;
	margin: 0 auto 30px;
	padding: 30px;
	box-shadow: 2px 2px 10px rgba(0,0,0, 0.15);
	border-radius: 8px;
	overflow: hidden;
}

.join_con ul {
  padding: 0;
}

.join_con li {
  list-style-type: none;
}

.join_con dd {
  margin-left: 0;
}

.join > li {
  position: relative;
  list-style: none;
}

.join > li:not(:last-child) {
  margin-bottom: 40px;
}

.join > li dl {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #F88400;
  border-radius: 10px;
  position: relative;
}

.join > li:not(:last-child) dl::before,
.join > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.join > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #F88400;
}

.join > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #F9F5ED;
}

.join > li dl dt {
	font-size: 1.2em;
	font-weight: 600;
	-ms-flex-preferred-size: 20%;
	width: 20%;
	margin-right: 2vw;
	text-align: center;
}

@media screen and (max-width:700px) {
	.join > li dl dt {
		width: 100%;
}

}

.join > li dl dt .icon {
  font-size: 0.6em;
  color: #fff;
  background: #F88400;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

@media(max-width: 700px) {
  .join > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .join > li dl {
    display: block;
    padding: 10px 15px;
  }

  .join > li dl dt {
    margin-right: 0;
  }

  .join > li dl dt .icon {
    font-size: 0.7em;
  }
}

/*指導員募集バナー
---------------------------------------------------------------------------*/
.recruit-bn {
	justify-content: center;
	align-items: center;
	max-width: 1000px;
	margin: 30px auto;
	text-align: center;
}

.recruit-bn img {
	max-width: 600px;
}

@media(max-width: 700px) {
	.recruit-bn img {
		max-width: 100%;
	}
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;			/*太字に*/
	padding: 10px 5px;			/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #57524b;		/*背景色*/
	color: #fff;				/*文字色*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #d3c99f;	/*テーブルの一番上の線。幅、線種、色*/
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
	background: rgba(255,255,255,0.5);	/*背景色。255,255,255は白のことで0.5は色が50%出た状態のこと。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #d3c99f;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
}


/*イベントページ上部の横並びの「月」メニュー
---------------------------------------------------------------------------*/
/*メニューを囲むブロック*/
.inline-menu {
	text-align: center;
	margin-bottom: 50px;	/*下に空けるスペース*/
}

/*メニュー１個あたりの設定*/
.inline-menu li {
	display: inline-block;	/*横並びにする*/
	margin-bottom: 10px;	/*メニューが２段以上になった場合の、上下の間に空けるスペース*/
}

.inline-menu li a {
	display: block;text-decoration: none;
	padding: 0 10px;			/*上下、左右へのメニュー内の余白*/
	background: #fff;			/*背景色*/
	border: 3px solid #87CEFA;	/*枠線の幅、線種、色*/
	border-radius: 3px;			/*角丸のサイズ*/
}

/*マウスオン時*/
.inline-menu li a:hover {
	background: #87CEFA;
	color: #fff;
}


/*イベントページの「1日の過ごし方」部分
---------------------------------------------------------------------------*/

/*ここから*/
.flow_con {
	background: #F9F5ED;
	width: 1000px;
	margin: 0 auto;
	padding: 30px;
	box-shadow: 2px 2px 10px rgba(0,0,0, 0.15);
	border-radius: 8px;
	overflow: hidden;
}
.flow_con .flow_area {
	position:relative;
	overflow: hidden;
	width:900px;
	margin: 0 auto;
	padding-left:152px;
	box-sizing:border-box;
}

.flow_con .flow_area .lb {
	display:block;
	position:absolute;
	width:10px;
	height:100%;
	background:#57524b;
	border-radius:16px;
	border:2px solid #57524b;
	left:58px;	
}

.flow_con .flow_area .step {
	position:relative;
	margin-bottom:60px;
}

.flow_con .flow_area .step2,
.flow_con .flow_area .step3,
.flow_con .flow_area .step4,
.flow_con .flow_area .step5,
.flow_con .flow_area .step6,
.flow_con .flow_area .step7,
.flow_con .flow_area .step8,
.flow_con .flow_area .step9,
.flow_con .flow_area .step10 {
	margin-bottom:25px;
}

.flow_con .flow_area .step h4 {
	font-size: 20px;
	font-weight: bold;
	line-height: 20px;	
}

.flow_con .flow_area .step h4 span {
	display:inline-block;
	width:80px;
	height:30px;
	background:#57524b;
	color:#fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
	padding-top:7px;
	line-height:16px;
	font-size:16px;
	text-align:center;
	box-sizing:border-box;
	margin-right:10px;
}

.flow_con .flow_area .step p{
	margin-top:18px;
	color: #57524b;
	}
	

.flow_con .flow_area .step:before{
	content:"";
	display:block;
	width:59px;
	height:59px;
	position:absolute;
	left:-118px;
	top:-14px;
	z-index:10;
	}
.flow_con .flow_area .step:after{
	content:"";
	display:block;
	width:58px;
	height:1px;
	background: #000;
	position:absolute;
	left:-58px;
	top:14px;
	}
	
.flow_con .flow_area .step1:before{
	background:url("../images/event/step1_icon.png");
	background-size:cover;
	}
.flow_con .flow_area .step2:before{
	background:url("../images/event/step2_icon.png");
	background-size:cover;
	}
.flow_con .flow_area .step3:before{
	background:url("../images/event/step3_icon.png");
	background-size:cover;
	}
.flow_con .flow_area .step4:before{
	background:url("../images/event/step4_icon.png");
	background-size:cover;
	}
.flow_con .flow_area .step5:before{
	background:url("../images/event/step5_icon.png");
	background-size:cover;
	}
.flow_con .flow_area .step6:before{
	background:url("../images/event/step6_icon.png");
	background-size:cover;
	}
.flow_con .flow_area .step7:before{
	background:url("../images/event/step7_icon.png");
	background-size:cover;
	}
.flow_con .flow_area .step8:before{
	background:url("../images/event/step8_icon.png");
	background-size:cover;
	}
.flow_con .flow_area .step9:before{
	background:url("../images/event/step9_icon.png");
	background-size:cover;
	}
.flow_con .flow_area .step10:before{
	background:url("../images/event/step10_icon.png");
	background-size:cover;
	}

.flow_con .flow_area h5{
	position:relative;
	border:2px solid #3c3939;
	height:60px;
	box-sizing:border-box;
	font-size:15px;
	font-weight:bold;
	text-align:center;
	padding-top:20px;
    -moz-border-radius: 60px;
    -webkit-border-radius: 60px;
    border-radius: 60px;
	background:#fff;
	}
	
.flow_con .flow_area h5:before{
	content:"";
	display:block;
	position:absolute;
	width:22px;
	height:20px;
	bottom:-19px;
	background:url(../image/half_step_ar.png);
	background-size: cover;
	
	}
	
.flow_con .flow_area .step .step-img {
	width: 100%;
	text-align: right;
	margin-top: -25px;
}

@media screen and (max-width:900px) {
	.flow_con {
		width: 98%;
		padding: 15px 5px;
	}
	
	.flow_con .flow_area{
		width:100%;
		position:relative;
		padding:0 15px 0 50px;
		box-sizing:border-box;
	}

	.flow_con .flow_area .lb{
		width:6px;
		border-radius:10px;
		left:16px;
	}
	.flow_con .flow_area .step{
		position:relative;
		margin-bottom:30px;
	}
	.flow_con .flow_area .step2,
	.flow_con .flow_area .step3,
	.flow_con .flow_area .step4,
	.flow_con .flow_area .step5,
	.flow_con .flow_area .step6,
	.flow_con .flow_area .step7,
	.flow_con .flow_area .step8,
	.flow_con .flow_area .step9,
	.flow_con .flow_area .step10 {
		margin-bottom:20px;
	}
	
	.flow_con .flow_area .step:before{
		width:36px;
		height:36px;
		left:-50px;
		top:-5px;
		z-index:10;
	}
	
	.flow_con .flow_area .step:after{
		width:14px;
		height:1px;
		left:-14px;
		top:12px;
	}
	
	.flow_con .flow_area h4{
	}

	.flow_con .flow_area .step h4 span{
		padding-top:10px;
		line-height:13px;
		margin-right:0;
		margin-bottom:5px;
	}

	.Android .flow_area .step h4 span,
	.iPhone .flow_area .step h4 span{
		padding-top:11px;
	}
	
	.flow_con .flow_area .step:before{
		width:36px;
		height:36px;
		left:-48px;
		top:-5px;
		z-index:10;
	}

	.flow_con .flow_area .step:after{
		width:12px;
		height:1px;
		left:-12px;
		top:12px;
	}

}

/*ここまで*/

/*イベントページのフォトアルバム
---------------------------------------------------------------------------*/

*, *:before, *:after {
    box-sizing: border-box;
}

.album {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.album > *{
    width: calc( 32.33333% - 8px ) ;
    margin-right: 7px;
    margin-bottom: 14px;
}
.album > *:nth-child(3n){
    margin-right: auto;
}
.album > * > *{
    background: #ff0000;
    height: 120px;
    position: relative;
    overflow: hidden
}
@media screen and (max-width: 960px) {
    .album > *{
        width: calc( 47% - 5px ) ;
    }
    .album > *:nth-child(3n){
        margin-right: 12px;
    }
    .album > *:nth-child(2n){
        margin-right: auto;
    }
}
@media screen and (max-width: 580px) {
    .album > *{
        width: 100%;
        margin-right: auto;
        margin-bottom: 0;
    }
    .album > *:nth-child(3n){
        margin-right: auto;
    }
}

/*イベントページのスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
	overflow-x: hidden;
	padding-left: 0;
	padding-right: 0;
}

/*各スライドショーブロックを囲むブロック*/
.slide-thumbnail1 {
	margin-bottom: 6vw;	/*下に空けるスペース。スライドショーを２個以上置く場合に上下の画像が重ならないようにする為。*/
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 0 1rem;	/*上下、左右への画像の余白*/
}

/*偶数番目の画像の垂直位置を少しずらす。垂直位置を並べたいならこのブロックを削除。*/
/*.slide-thumbnail1 .img div:nth-of-type(even) {
	transform: translateY(3vw);
}*/

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}

.attentionBOX {
	padding: 20px;
}
.attention {
	margin: 0 auto;
}
.attention h4 {
	color: red;
	font-size: 0.9rem;
}

.attention ul {
	list-style: none;
	padding-left: 1.5em;
	margin-left: 0.5em;
}

.attention li {
	font-size: 0.8rem;
	text-indent: -1.5em;
}

.attention li:before {
	content: "※";
	margin-right: 0.5em;
}


/*FAQ
---------------------------------------------------------------------------*/
.faq .faq_actab {
	position: relative;
	overflow: hidden;
	width: 900px;
	margin: 0 auto;
	color: #ffffff;
}

@media screen and (max-width:700px) {
.faq .faq_actab {
	width: 95%;
}
	
}
.faq .faq_actab input {
	display: none;
}

/* 質問 */
.faq .faq_actab label {
	position: relative;
	display: block;
	margin: 0 0.5em 0.5em 2em;
	padding: 1em 0 2em 0;
	cursor: pointer;
	border-radius: 5px;
	background: #F6A444;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
}
.faq .faq_actab label span {
	font-weight: bold;
	display: block;
	padding: 0 2em 1em 2em;
	border-bottom: 1px solid #ffffff;
}
/* --?アイコン */
.faq .faq_actab label::before {
	position: absolute;
	left: -30px;
	content: 'Q';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-size: 2em;
	font-weight: bold;
	z-index: 99;
	border: 3px solid #ffffff;
	border-radius: 50%;
	background: #F6A444;
}
/* --▼アイコン */
.faq .faq_actab label::after {
	position: absolute;
	right: 10px;
	bottom: 10px;
	content: '';
	width: 15px;
	height: 8px;
	background: #ffffff;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	transition: all 0.5s ease;
}
/* 答え */
.faq .faq_actab .answer-content {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	max-height: 0;
	margin: 0 0 0.5em 0;
	padding: 0 0 0 2.5em;
	transition: max-height 0.5s ease;
	color: #ffffff;
}
/* --!アイコン */
.faq .faq_actab .answer-content::before {
	position: absolute;
	left: 20px;
	content: 'A';
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-size: 2em;
	font-weight: bold;
	z-index: 99;
	border: 3px solid #ffffff;
	border-radius: 50%;
	background: #95AC42;
}
.faq .faq_actab .answer-content p {
	margin: 0.5em 0.5em 0.5em 0;
	padding: 1em 1em 1em 3em;
	border-radius: 0.3em;
	background: #95AC42;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.faq .faq_actab input:checked ~ .answer-content {
	max-height: 40em;
}
/* 質問をクリックした時の▼アイコンの動き */
.faq .faq_actab input[type=checkbox]:checked + label::after {
	transform: scale(1, -1);
}

/*問い合わせフォーム用
--------*/
#formWrap {
	max-width:900px;
	margin:0 auto;
}

#formWrap p {
	text-align: center;
	color:#555;
	line-height:120%;
}

.red {
	color: #ff0000;
	font-weight: bold;
}

table.formTable{
	border-top: 1px solid #d3c99f;
	table-layout: fixed;
	width:100%;
	margin:0 auto 30px;
	background: rgba(255,255,255, 0.5);
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	font-weight: bold;
	color: #fff;
	background: #57524b;
	width: 30%;
	text-align:left;
}

@media screen and (max-width:700px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	z-index: 99;
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: rgba(0,0,0,0.3);	/*背景色。0,0,0は黒の事で0.3は色が30%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 58% 42% 61% 39% / 44% 55% 45% 56%;	/*角丸の指定*/
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は色が50%出た状態。*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #F75757 !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 0px 10px;background: rgba(0,0,0,0.05);border-radius: 5px;margin: 5px 0;}
.deco .look {background: rgba(255,255,255,0.2);}



/*---------------------------------------------------------------------------
ここから下は画面幅700px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:700px) {


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header .logo {
	margin-top: 20px;	/*ロゴの上部に空けるスペース*/
	margin-left: 150px;	/*ロゴの左側に空けるスペース*/
}

/*トップページのロゴ画像への追加設定*/
.home header .logo {
	width: 30%;			/*ロゴ画像の幅*/
	margin-left: 20px;	/*ロゴの左側に空けるスペース*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: -20px;		/*上からの配置場所指定*/
	width: 130px;	/*幅*/
	height: 130px;	/*高さ*/
	background-size: 130px;	/*サイズのみ、変更*/
}

/*×印が出ている状態の設定。*/
#menubar_hdr.ham {
	background-size: 130px;	/*サイズのみ、変更*/
}


/*２カラム利用時
---------------------------------------------------------------------------*/
.c2 {
	flex-direction: row;
	justify-content: space-between;
}


/*２カラム利用時のmainブロック（※冒頭に「.(ドット)」がついていない「main」とは全く異なるので注意して下さい）
---------------------------------------------------------------------------*/
.main {
	order: 1;	/*.mainと.subの左右への配置指定。数字が小さい順に並びます。*/
	width: calc(100% - 250px);	/*幅。250pxの数字は、.subで指定しているwidthに余白を50px含めて設定しています。*/
}


/*２カラム利用時のsubブロック
---------------------------------------------------------------------------*/
.sub {
	order: 0;	/*.mainと.subの左右への配置指定。数字が小さい順に並びます。*/
	width: 200px;	/*幅。大幅に変更する際は、上の.mainのwidthの250pxの値も調整して下さい。*/
}

/*.subブロックのpタグ*/
.sub p {
	margin: 0 0 30px;	/*上、左右、下へ空けるスペース*/
}


/*footer（フッターメニューとコピーライトを囲むブロック。下にあるfooterとは異なるタグなので間違えないで下さい。）
---------------------------------------------------------------------------*/
/*フッターブロック*/
#footer {
	margin-top: 100px;		/*フッターの上部(外側)に空けるスペース。上にあるコンテンツとのバランス調整です。*/
}

/*フッター内のロゴ画像*/
#footer .logo img {
	width: 250px;					/*幅*/
	border: 10px solid #95ac43;		/*枠線の幅、線種、色*/
}


/*footer内にある地図。
---------------------------------------------------------------------------*/
#map {
	margin-top: -100px;		/*フッターのロゴに重ねる為の指定。この行を削除すれば、ロゴの下に通常通り配置されます。*/
}


/*listブロック（３カラムタイプ、横長タイプ）、list2ブロック（枠が動く３カラムタイプ）の設定
---------------------------------------------------------------------------*/
/*１個あたりのボックスの指定。「２カラムタイプ」「横長タイプ」共通に適用されます。*/
.list {
	flex-direction: row;
}

/*画像の指定。「３カラムタイプ」「横長タイプ」共通に適用されます。*/
.list figure {
	width: 30%;			/*幅*/
	margin-right: 20px;	/*画像とテキストブロックの間にとる余白*/
}

/*「３カラムタイプ」のlistボックス全体を囲むボックス*/
.list-container {
	flex-direction: row;	/*子要素を横並びにする*/
}

/*「３カラムタイプ」のlistボックス。１個あたりのボックスの指定です。*/
.list-container .list {
	width: 32%;	/*ボックスの幅*/
}
.list-container .list2 {
	width: 30%;	/*ボックスの幅*/
}

/*2023/01/19追記*/
.list div {
	flex: 1;
}

	
/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*ボタンの設定*/
.pagetop a {
	width: 100px;		/*幅*/
	line-height: 100px;	/*高さ*/
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 16px;	/*基準となるフォントサイズの上書き*/
}


/*contentsブロック
---------------------------------------------------------------------------*/
/*トップページのみ、コンテンツ上部に余白をとります。お好みで数値は調整して下さい。*/
.home #contents {
	margin-top: 250px;
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.9em;		/*文字サイズを90%に。*/
	text-align: center;		/*文字をセンタリング*/
	border-radius: 3px;		/*角を少しだけ丸くする*/
	margin-right: 1.2em;	/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定。サンプルテンプレートでは「求人情報」と書いてあるマーク*/
#new dt span.icon-bg1 {
	background: #F75757;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}
