@charset "shift_jis";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 16px;
	font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}

#contents {
	width: 800px;
	margin: 0 auto;
}

header + #contents {
	padding-top: 10px;
}

.inner {
	position: relative;
	width: 800px;
	margin: 0 auto;
}

a {
	color: #007ac3;
	text-decoration: none;
}

a:hover {
	color: #FF5700;
}


/* 見出し
--------------------------------------------------*/

/* NHKカルロゴ */
h1 {
	font-size: 28px;
}

/* タイトル */
h2 {
	text-align: center;
}

/* リード文 */
h3 {
	margin: 2rem 0 1rem;
	padding: 0;
	font-size: 24px;
	font-weight: normal;
	text-align: center;
}
h3 span {
	color: #f00;
}
@media screen and (max-width:768px) {
	h3 {
		margin: 1rem 0 0;
		font-size: 18px;
	}
}

/* エリア */
h4 {
	border-radius: 5px;
	padding: 0.5rem 0;
	margin: 2rem auto 0.5rem;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}
@media screen and (max-width:768px) {
	h4 {
	width: 98%;
	}
}

h4.tohoku {
	background-color: #9D6739;
}
h4.kanto {
	background-color: #6B4EB8;
}
h4.chubu {
	background-color: #2C6DAD;
}
h4.kinki {
	background-color: #6CA530;
}
h4.chugoku {
	background-color: #A03480;
}


img {
	max-width: 100%;
	vertical-align: bottom;
}

em {
	font-weight: bold;
}

strong {
	font-weight: bold;
}

pre {
	margin:1em 0;
	padding:1em;
}

blockquote {
	margin-bottom: 1em;
	padding: 1em;
	border: 1px dotted #ddd;
	border-left: 5px solid #ddd;
}

ul,ol,dl {
	margin: 0 0 1em 0;
}
ul li {
	list-style: none;
}
ol li {
	list-style: decimal;
}
li {
	margin-left: 0;
}

dt {
	margin-bottom: 0.5em;
	border-bottom: 1px dotted #ddd;
}
dd {
	margin-bottom: 1em;
}



/*================================================
 *  汎用クラス
 ================================================*/
/* 中央寄せ */
.center {
	text-align: center;
}

/* 左寄せ */
.left {
	text-align: left;
}

/* 右寄せ */
.right {
	text-align: right;
}



/*================================================
 *  ヘッダー
 ================================================*/
header {
	width: 100%;
}
header:after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (max-width:768px) {
	header h1 {
		padding: 0 0 0 10px;
	}
	header h1 img {
		width: 40%;
	}
}

/*================================================
 *  フッター
 ================================================*/
.copyright {
	margin: 4rem 0 1rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.copyright {
		margin: 3rem 0 1rem;
		font-size: 14px;
	}
}


/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
	z-index:1;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	background:#111;
}
.totop img:hover {
	background:#222;
}



/*================================================
 *  タブレット・スマートフォン向けデザイン
 ================================================*/
/* テンプレートより小さくなった場合に適用 */
@media screen and (max-width:768px) {
	.inner {
		width: 100%;
	}

	#contents {
		box-sizing: border-box;
		width: 100%;
		padding: 0 10px;
	}
}



/*================================================
 *  コンテンツ
 ================================================*/
/* 横並び教室リスト */

*, *:before, *:after {
	box-sizing: border-box;
}

.schoollist {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
	font-size: 18px;
	margin-bottom: 3rem;
	width: 100%;
}

.schoollist > div {
	border-left: 5px solid #BCBCBC;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	width: 23%;
	margin: 0.5rem;
}

.schoollist > div > div {
	position: relative;
	overflow: hidden
}

.schoollist p{
	margin: 2px 0 0 8px;
}

@media screen and (max-width: 768px) {
	.schoollist > div{
		margin-left: 35px;
		width: 25%;
	}
}
@media screen and (max-width: 480px) {
    .schoollist{
        margin-bottom: 10px;
    }
	.schoollist > div{
		margin-left: 5px;
		width: 45%;
	}
}


/* バナー追加　	20260205
-----------------------------------------*/
.banner {
	background-color: #ececec;
	padding: 2.0rem 0;
	text-align: center;
}
@media screen and (max-width: 480px) {
	.banner {
		padding: 1.0rem;
		margin-top: 2.0rem;
	}
}