@charset "utf-8";
/* 上 | 右 | 下 | 左 */
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position:fixed;
	z-index: 999;
	/*ナビのスタート位置と形状*/
	top:0;
	left: -120%;
	width:100%;
	height: 100vh;/*ナビの高さ*/
	/*background:#999;*/
	background:#f4f5b5;
	/*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    left: 0;
}


/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width:100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}


/*リストのレイアウト設定*/
#g-nav li{
	display: list-item;
	list-style: none;
	text-align: center; 
}

#g-nav li a{
  color: #333;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS(ハンバーガー) ===============*/
.openbtn1{
	position:fixed;
	z-index: 9999;/*ボタンを最前面に*/
/*	top:15px;*/
	top:8px;
	left: 10px;
	cursor: pointer;
	width: 50px;
	height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #666;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}







/*========= レイアウトのためのCSS ===============*/

h1{
  font-size:1.2rem;
  line-height: 0;
/*  margin: 0;*/
}

h1 img{
  vertical-align: bottom;
}




h2{
  font-size:1.2rem;
  text-align: center;
/*margin: 190px 0 10px 0;*/
}

p{
  margin-top:20px;  
}

small{
  color:#fff;
  display: block;
  text-align: center;
}

#header{
  width:100%;
/*background:#333;*/
  background:#71c762;
  color:#fff;
  text-align: center;
  padding: 20px;
}

section{
  padding:100px 30px;
}

section:nth-child(2n){
  background:#f3f3f3; 
}

/*
#footer{
  background:#333;
  padding:20px;
}
*/


/*==================================================
スライダーのためのcss
===================================*/
.slider {
    width:94%;				/*横幅94%で左右に余白を持たせて中央寄せ*/
    margin:0 auto;
}

.slider img {
    width:60vw;				/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
  transform: scale(0.8);	/*左右の画像のサイズを80%に*/
  transition: all .5s;		/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
  transform: scale(1);		/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
  margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

/*ドットボタン*/
.slick-dots button {
	color: transparent;
	outline: none;
	width:6px;		/*サイズ*/
	height:14px;	/*サイズ*/
	display:block;
	border-radius:50%;
	background:#ccc;/*ボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}





/*========= 全体のレイアウト ===============*/
body{
/*	background:#eee;*/
	background:#fff;
	margin: 0;			/*画面最上位*/
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴシック', sans-serif;
}

h2,p {
	text-align:center;
	padding:20px;
}

ul{
	margin:0;
	padding: 0;
	list-style: none;

	z-index:1
}

a{
	color: #333;
}

a:hover,
a:active{
text-decoration: none;
}


/*メニュー*/
header{
/*  position: relative;*/
    position: fixed;		/*ヘッダ固定*/
	top: 0;
	left: 0;
/*	width: auto;*/
	width: 100%;
/*  margin-bottom: 13em;*/
    margin-bottom: 1px;
/*  background-color: #efeba0;*/
    background-color: #8cce64;		/*#444;*/
	z-index: 2;
}


ul > li{
    display: inline-block;
}
ul > li > a{
	padding: 15px 15px;
	display: block;
	font-size: 0.9em;
	text-transform: uppercase;
	letter-spacing: .2em;
	font-weight: bold;
}
ul > li > span{
    margin-left: 1.2em;
}
ul > li:hover > a{
    background-color: #efefef;
    color: #444;
}


/*
テーブルのデザイン--------------------------*/
table, td, th {
  background-color: transparent !important;
  border: none !importan;
  border-bottom: 1px solid black !importan;
}

/*行の幅、テキスト位置、境界線色*/
.design03 {
 width: 80%;
 text-align: center;
 border-collapse: collapse;
 border-spacing: 0;
 border-top: solid 1px #778ca3;
}
/*行の色*/
.design03 tr:nth-child(2n+1) {
 background: #e9faf9;
}
/*境界線色*/
.design03 th,
.design03 td {
 padding: 10px;
 border-bottom: solid 1px #778ca3;
}


.design04 {
 width: 80%;
 text-align: center;
 border-collapse: collapse;
 border-spacing: 0;
 border-top: solid 1px #778ca3;
}
.design04 tr:nth-child(2n+1) {
 background: #F2F5A9;
}
.design04 th,
.design04 td {
 padding: 10px;
 border-bottom: solid 1px #778ca3;
}





.table_box {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  border-collapse: collapse;
  width: 600px;
  border-collapse:separate;
  border-spacing: 0;
}

.table_box th:first-child{
  border-radius: 6px 0 0 0;
}

.table_box th:last-child{
  border-radius: 0 6px 0 0;
  border-left: 0.6px solid #ffffff;
}

.table_box th{
  text-align: center;
  color:white;
  background: linear-gradient(#86ace2,#0065f4);
  border-left: 0.3px solid #ffffff;
  width: 20%;
  padding: 10px 0;
}

.table_box td{
  text-align: center;
  border-left: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
  border-top:none;
  box-shadow: 0px -3px 8px 1px #eee inset;
  width: 20%;
  padding: 12px 0;
}

.table_box td:last-child{
  border-right: 1px solid #c3c3c3;
}

.table_box tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.table_box tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}





/*
文字飾り------------------------------------*/
.sample {
  font-size:1.5em;
  text-align:center;
  line-height:0.95em;
  font-weight:bold;
  color: transparent;
  background: repeating-linear-gradient( 0deg, #A1887F 0 0.1em, #6D4C41 0.1em 0.2em );
  -webkit-background-clip: text;
}

p .sample {
	padding: 5px;
	margin: 5px 0 5px 0;

}





/*
ブロック画像２つ並び------------------------*/
.item-list{
	display: flex;
	justify-content: center; /* 中央寄せ */
	padding: 0 0 0px 10px;
}


.item-list .item{
  box-sizing: border-box;
  padding: 40px 40px;  
}

/* 装飾用 */
.item{
/*	background: #EEE;*/
	background: #fff;
	margin: 10px;
}

/*
コース紹介 --------------------------------*/
h1.titol01 {
	background: #dfefff;
	box-shadow: 0px 0px 0px 5px #f3e4e4;
	border: dashed 1px #96c2fe;
	padding: 0.2em 0.5em;
	color: #454545;
	font-size: 30px;
	line-height: 1;
}


/*
コース紹介２ -----------------------------*/
h1.titol02 {
	background: #d1eda3;
	box-shadow: 0px 0px 0px 5px #f3f09b;
	border: dashed 1px #96c2fe;
	padding: 0.2em 0.5em;
	color: #454545;
	font-size: 30px;
	line-height: 1;
}





/*
おといあわせ------------------------------- */
.obi_002 {
	width: 100%;
/*	height: auto;*/
	height: 70%;
	background-image: url(../img/obi_002.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0 0 50%;
	position: relative;
}

.obi_002 .box_in {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-flow: column;
	flex-flow: column;
	position: absolute;
	color: #FFF;
	background-color: rgba(54,190,173,0.8);

}

.obi_002 h2 {
	font-size: 36px;
}
.obi_002 p {
	line-height: 2;
	font-weight: bold;
}



.textiner{
  line-height:30px;
  background-color:#fec;
  text-align:center;
}
.textiner .target{
  display:inline-block;
  vertical-align: middle;
  line-height:normal;
}


/*
コンテンツ大ボタン
-------------------------------------------*/
.btn_cnt a {
	font-size: 16px;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	display: block;
	width: 240px;
	background-color: #11BBDD;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	line-height: 22px;
	padding-top: 10px;
	padding-bottom: 10px;
	clear: both;
	font-weight: bold;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
.btn_cnt a i {
	padding-right: 10px;
}
.btn_cnt a:hover {
	color: #11BBDD;
	background-color: #FFF;
}

.btn_cnt.rt a {
	float: right;
	max-width: 220px;
	margin-right: 10px;
}


/*
コンテンツ小ボタン
-------------------------------------------*/
.btn_cnt2 a {
	font-size: 14px;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	display: block;
	width: auto;
	background-color: #3bb553;		/* 緑色 */
	margin-top: 0px;
/*	margin-right: auto;*/
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: auto;
/*	line-height: 22px;*/
	padding-top: 5px;
	padding-bottom: 5px;
	clear: both;
	font-weight: bold;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
.btn_cnt2 a i {
	padding-right: 10px;
}
.btn_cnt2 a:hover {
	color: #0D0000;
	background-color: #FFFF77;		/* マウスで 黄色 */
}

.btn_cnt2.rt a {
	float: right;
	max-width: 140px;
	margin-right: 0px;
}



/*
コンテンツ小ボタン
-------------------------------------------*/
.btn_cnt3 a {
	font-size: 16px;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	display: block;
	width: 20%;
	height: 40px;
	background-color: #3bb553;		/* 緑色 */
	margin-top: 0px;
/*	margin-right: auto;*/
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
/*	line-height: 22px;*/
	padding-top: 18px;
	padding-bottom: 5px;
	clear: both;
	font-weight: bold;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
.btn_cnt3 a i {
	padding-right: 10px;
}
.btn_cnt3 a:hover {
	color: #0D0000;
	background-color: #FFFF77;		/* マウスで 黄色 */
}

.btn_cnt3.rt a {
	float: right;
	max-width: 140px;
	margin-right: 0px;
}




.blink {
  -webkit-animation: blink 1s ease infinite;
  animation: blink 1s ease infinite;
}
@-webkit-keyframes blink {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes blink {
  0% {opacity: 0;}
  100% {opacity: 1;}
}





/*
フッター
-------------------------------------------*/
footer {
	background-color: #DCE7E9;
	color: #345;
	clear: both;
	width: 100%;
	display: block;
	padding-top: 20px;
	border-bottom-width: 20px;
	border-bottom-style: solid;
	border-bottom-color: #D2E1E3;
}

footer .cont_wrap {
/*	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;*/
	display: flex;
/*	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;*/
}

footer .cont_wrap .f_box {
/*	width: 20%;*/
	padding: 10px;
}

footer .cont_wrap .f_box.lg {
/*	width: 60%;*/
	width: 400px;
}

footer .f_box {
/*	width: 60%;*/
	width: 230px;
}



footer .cont_wrap p {
	font-size: 13px;
}

footer .cont_wrap ul {
	padding: 20px;
}

footer .cont_wrap ul li a {
	display: block;
	text-decoration: none;
	font-size: 13px;
	color: #555;
}

footer .cont_wrap ul li.contact a {
	text-align: center;
	color: #FFF;
	background-color: #1BD;
	font-size: 14px;
	padding: 2px;
	margin-top: 5px;
}

footer .cont_wrap ul li.contact a:hover {
	color: #1BD;
}
footer .cont_wrap ul li.contact a::before {
	display: none;
}

footer .cont_wrap ul li a::before {
	content: "・ ";
	color: #999;
}

footer .cont_wrap ul li a:hover {
	color: #111;
	background-color: #FFF;
}

address {
	clear: both;
	font-size: 12px;
	font-style: normal;
	padding: 20px;
	text-align: center;
	letter-spacing: 1px;
}

footer .box_pr {
	clear: both;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 10px;
	color: #55838A;
	letter-spacing: 1px;
	background-color: #D2E1E3;
	padding-top: 18px;
	line-height: 22px;
}


/*
ライン---------------------------------------*/
hr {
   border-width: 1px 0px 0px 0px; /* 太さ */
   border-style: solid; /* 線種 */
   border-color: red;   /* 線色 */
   height: 1px;         /* 高さ(※古いIE用) */
}



/*
文字飾り
----------------------------------------------*/
.font_typ1 {
	font-size: 1.8em;
	text-shadow: 2px 2px 1px #FFC7AF;
	font-weight:bold;
}




/*
テキストファイル出力後の飾り------------------*/
#insertText {
white-space: pre;
color: #ab2b2b;
font-size: 1.5em;
}

#insertText2 {
white-space: pre;
color: #ab2b2b;
font-size: 1.5em;
}

#insertText3 {
white-space: pre;
color: #ab2b2b;
font-size: 1.5em;
}

#insertText4 {
white-space: pre;
color: #ab2b2b;
font-size: 1.5em;
}



/* table02 */
#tblcol3 th, #tblcol3 td {
  text-align: center;
  width: 20%;
  min-width: 130px;
  padding: 0px;
  height: 60px;
}

/* tab */
@media only screen and (max-width: 1230px) {
  #tblcol3 {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
  }
}


#tblcol4 {
  table-layout:fixed;
  margin-left: 60px;
  margin-right: 60px;"
}

#tblcol4 th, #tblcol4 td {
  text-align: left;
  width: 20%;
  min-width: 130px;
  padding: 0px;
  height: 60px;
  border: solid 1px;
}

/* tab 保護者枠の個別のスクロール(横)
@media only screen and (max-width: 1230px) {
  #tblcol4 {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
  }
}
*/


.kanban {
/*	padding-left: 90px;padding-right: 90px;margin-top: 190px;*/
	width: 100%;
	height: auto;
	padding-top: 16%;
}
.kanban span{
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}



/*
画面サイズによる制御 1 960以下
--------------------------------------------*/
@media screen and (max-width:1180px){
	body {
		font-size: 16px;
	}
	/*
	ヘッダー
	----------------------------------------*/
	header {
		height: 170px;
	}

	.item-list .item{
		padding: 40px 20px;  
	}

	.item > img {
		width: 90%;
	}

	.tbl01 {
		width: 70%;
	}



	/*
	フッター
	-------------------------------------------*/

	footer .cont_wrap .f_box {
	/*	width: 20%;*/
		padding: 1px;
	}

	footer .cont_wrap .f_box.lg {
	/*	width: 60%;*/
		width: 350px;
	}

	footer .f_box {
	/*	width: 60%;*/
		width: 240px;
	}


	/*
	PCグローバルナビ
	-------------------------------------------*/
	#g_navi {
		position: absolute;
		right: 10px;
		top: 20px;
		width: auto;
		margin-left: 200px;
		display: block !important;
		z-index: 1000;
	}

	#g_navi ul li{
		display: inline;
	}

	#g_navi li a {
		width: auto;
		padding: 10px;
		line-height: 30px;
		display: block;
		color: #111;
		text-decoration: none;
		text-align: center;
		position: relative;
		float: left;
		letter-spacing: 1px;
		font-size: 14px;
		font-weight: bold;
	}

	#g_navi li a::before {
		display: block;
		height: 2px;
		position: absolute;
		top: 2px;
		width: 70%;
		left: 15%;
		background-color: rgba(17,187,221,0);
		content: '';
		-webkit-transition: 0.2s linear;
		-moz-transition: 0.2s linear;
		transition: 0.2s linear;
	}

	#g_navi li a:hover::before {
		background-color: rgba(17,187,221, 1);
		top:0px;
		width: 80%;
		left: 10%;
	}

	#g_navi li a:hover {
		color: #1BD !important;
	}

	#g_navi.txt_w li a {
		color: #FFF;
	}

	header.fixed #g_navi.txt_w li a {
		color: #111;
	}

	#g_navi li.contact a {
		background-color: #1BD;
		color: #FFF !important;
		padding-left: 20px;
		padding-right: 20px;
		margin-left: 10px;
		border-radius: 4px;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
	}
	#g_navi li.contact a:hover {
		background-color: #FFF;
		color: #1BD !important;
	}
	#g_navi li.contact a::before {
		display: none;
	}

}


/*
画面サイズによる制御 2 780以下
--------------------------------------------*/
@media screen and (max-width:1100px){
	body {
		font-size: 16px;
	}
	/*
	ヘッダー
	----------------------------------------*/
	header {
		height: 170px;
	}

	.kanban {
	/*	padding-left: 90px;padding-right: 90px;margin-top: 190px;*/
		width: 100%;
		height: auto;
		padding-top: 19%;
	}
	.kanban span{
		position:absolute;
		top:50%;
		left:50%;
		transform: translate(-50%, -50%);
	}

}



/*
画面サイズによる制御 2 780以下
--------------------------------------------*/
@media screen and (max-width:960px){
	body {
		font-size: 14px;
	}
	/*
	ヘッダー
	----------------------------------------*/
	header {
		height: 150px;
	}
}


/*
画面サイズによる制御 2 780以下
--------------------------------------------*/
@media screen and (max-width:830px){
	body {
		font-size: 12px;
	}
	/*
	ヘッダー
	----------------------------------------*/
	header {
		height: 150px;
	}

	.kanban {
	/*	padding-left: 90px;padding-right: 90px;margin-top: 190px;*/
		width: 100%;
		height: auto;
		padding-top: 21%;
	}
	.kanban span{
		position:absolute;
		top:50%;
		left:50%;
		transform: translate(-50%, -50%);
	}

}


/*
画面サイズによる制御 2 780以下
--------------------------------------------*/
@media screen and (max-width:780px){
	body {
		font-size: 12px;
	}
	/*
	ヘッダー
	----------------------------------------*/
	header {
		height: 170px;
	}

	.kanban {
	/*	padding-left: 90px;padding-right: 90px;margin-top: 190px;*/
		width: 100%;
		height: auto;
		padding-top: 30%;
	}
	.kanban span{
		position:absolute;
		top:50%;
		left:50%;
		transform: translate(-50%, -50%);
	}

	.obi_002 h2 {
		font-size: 25px;
	}

	.btn_cnt a {
		font-size: 16px;
		color: #FFF;
		text-align: center;
		text-decoration: none;
		display: block;
		width: 240px;
		background-color: #11BBDD;
		margin-top: 1px;
		margin-right: auto;
		margin-bottom: 5px;
		margin-left: auto;
		line-height: 22px;
		padding-top: 10px;
		padding-bottom: 10px;
		clear: both;
		font-weight: bold;
		border-radius: 4px;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
	}




}


/*
画面サイズによる制御 2 780以下
--------------------------------------------*/
@media screen and (max-width:600px){
	body {
		font-size: 12px;
	}
	/*
	ヘッダー
	----------------------------------------*/
	header {
		height: 170px;
	}

	.kanban {
	/*	padding-left: 90px;padding-right: 90px;margin-top: 190px;*/
		width: 100%;
		height: auto;
		padding-top: 35%;
	}
	.kanban span{
		position:absolute;
		top:50%;
		left:50%;
		transform: translate(-50%, -50%);
	}

	.obi_002 h2 {
		font-size: 16px;

	.btn_cnt a {
		font-size: 16px;
		color: #FFF;
		text-align: center;
		text-decoration: none;
		display: block;
		width: 240px;
		background-color: #11BBDD;
		margin-top: 1px;
		margin-right: auto;
		margin-bottom: 5px;
		margin-left: auto;
		line-height: 22px;
		padding-top: 1px;
		padding-bottom: 1px;
		clear: both;
		font-weight: bold;
		border-radius: 4px;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
	}


	.box_in p {
		margin-top: 0px;
		padding-top: 0px;
	}
}


/*
画面サイズによる制御 3 460以下
--------------------------------------------*/
@media screen and (max-width:460px){

	body {
		font-size: 10px;
	}
	/*
	ヘッダー
	----------------------------------------*/
	header {
		height: 140px;
	}

}

