@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/bg111.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秒。*/
}
a:hover {
	color: #f43c74;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

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

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック。ロゴとメニューブロックです。*/
header {
	overflow: auto;height: 100%;
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅*/
	padding: 0 2%;	/*h2がスイングするので、若干の左右の余白を作っておきます*/
	position: fixed;	/*スクロールしても固定表示させる指定*/
	top: 3%;		/*上からの配置場所指定*/
	left: 1%;		/*左からの配置場所指定*/
}
.c1 header {
	display: none;
}
/*ロゴ画像（SAMPLE KID'S CLUB）*/
header #logo img {
	width: 35%;	/*幅*/
	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 / 100% 100%;	/*背景画像の読み込み*/
	text-align: center;	/*文字をセンタリング*/
	color: #fff;		/*文字色*/
	font-size: 2vw;		/*文字サイズ*/
	padding: 30% 0;		/*上下、左右へのタグ内の余白*/
	margin: 20px 0;		/*上下、左右へのタグの外側へとる余白。ロゴや下のメニューとの余白バランスをとって下さい。*/
}
/*h2タグ内の小文字*/
header h2 span {
	display: block;
	font-size: 13px;	/*文字サイズ*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar {
	font-size: 20px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
}
/*メニュー１個あたりの設定*/
#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: #f43c74;	/*文字色*/
}
/*小文字の指定（最後のspanタグ）*/
#menubar li span:last-child {
	display: block;
	font-size: 12px;	/*文字サイズ*/
	color: #999;		/*文字色*/
}
/*マウスオン時*/
#menubar a:hover {
	border: 1px solid #f43c74;	/*枠線を出す指定。幅、線種、色。*/
}
/*スマホ用メニューを表示させない*/
#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: #556B2F;	/*文字色*/
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	padding: 0 20px 10px;	/*上、左右、下へのタグ内の余白*/
	font-size: 36px;		/*文字サイズ*/
	background: url(../images/line1.png) repeat-x left bottom / 400px;	/*下線の画像の読み込み*/
	text-align: center;	/*テキストをセンタリング*/
}
/*メインコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	color: #6B8E23;	/*文字色*/
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	font-size: 24px;		/*文字サイズ*/
}


#main h4 {
	clear: both;
	margin-bottom: 15px;
	padding: 6px 20px;	/*上下、左右への余白*/
	border: 1px solid #f43c74;	/*枠線の幅、線種、色*/
	border-radius: 10px;		/*角丸のサイズ*/
}





/*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;
}

/*listブロック（corse.html コース紹介ページで使っています）
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list {
	overflow: hidden;position: relative;
	border: 5px solid #f43c74;	/*枠線の幅、線種、色*/
	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: #fae6ec;	/*背景色*/
}
/*h4見出しタグ設定*/
#main .list h4 {
	color: #f43c74;		/*文字色*/
	font-size: 22px;	/*文字サイズ*/
}
/*リンク設定がある場合のh4見出しタグの追加設定*/
#main .list 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 .list figure {
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	margin-right: 20px;	/*右に空けるスペース*/
}
/*段落タグ*/
#main .list p {
	padding: 0;
}

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

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
dl.faq {
	padding: 0 20px;	/*上下、左右へのブロック内の余白*/
}
/*質問（Q）ブロック*/
dl.faq dt {
	color: #f43c74;		/*文字色*/
	font-weight: bold;	/*太字にする*/
	background: url(../images/faq_q.png) no-repeat left top / 30px;	/*Qアイコンの読み込み。幅を30pxに。*/
	padding-left: 40px;		/*左に空ける余白*/
	margin-bottom: 10px;	/*下に空ける余白*/
}
/*回答（A）ブロック*/
dl.faq dd {
	background: url(../images/faq_a.png) no-repeat left top / 30px;	/*Aアイコンの読み込み。幅を30pxに。*/
	padding-left: 40px;		/*左に空ける余白*/
	margin-bottom: 20px;	/*下に空ける余白*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※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: 300px;		/*幅*/
	text-align: center;	/*センタリング*/
}



/*テーブル（ta2）
---------------------------------------------------------------------------*/
/*ta2設定*/
.ta2 {
	width: 100%;
	margin: 0 auto 20px;
	border-bottom: 1px solid #ccc;	/*テーブルの下の枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事*/
}
/*td,th共通*/
.ta2 td, .ta2 th {
	border-top: 1px solid #ccc;	/*tdタグとthタグの上側の枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cac8c2;	/*背景色*/
	font-size: 20px;	/*文字サイズ*/
}
/*ta2の左側ボックス*/
.ta2 th {
	width: 140px;	/*幅*/
	text-align: left;	/*右寄せ*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta2 th img {
	width: 100%;
}



/*フォーム関連
---------------------------------------------------------------------------*/
/*ボタン（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;
}

/*「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;
}

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


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



/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 55px;
}
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: #321907;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin: 10px;}
img.fl {float: left;margin: 10px;}
.fr {float: right;}
.fl {float: left;}
.big1 {font-size: 28px;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;}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
	line-height: 1.5;
}

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

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

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#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: 12px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#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: #f43c74 url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #f43c74 url(../images/icon_menu.png) no-repeat center bottom/50px;
}

/*listブロック（corse.html コース紹介ページで使っています）
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list {
	border: 3px solid #f43c74;	/*枠線の幅、線種、色*/
	padding: 10px;				/*ブロック内の余白*/
}
#main .list a {
	padding: 10px;	/*ブロック同士の余白。*/
	margin: -10px;	/*ブロック同士の余白。上のlistのpaddingの相殺用。*/
}
/*h4見出しタグ設定*/
#main .list h4 {
	font-size: 18px;	/*文字サイズ*/
}
/*画像*/
#main .list figure {
	margin-right: 10px;	/*右に空けるスペース*/
}

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

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

/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.big1 {font-size: 18px;letter-spacing: normal;}

}
