@charset "utf-8";


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


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #111;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background: #fff url(../images/bg.jpg);	/*背景色、背景画像の読み込み*/
	border-top: 8px solid #1A81BA;	/*上の線の幅、線種、色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea,select {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

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

/*containerブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*サイトの最大幅*/
	padding: 0 3%;		/*上下、左右へのボックス内の余白*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;	/*内容をセンタリング*/
	padding: 20px 3%;	/*上下、左右へのブロック内の余白*/
}
/*ロゴ画像*/
header #logo img {
	width: 200px;	/*画像幅*/
	margin-bottom: 10px;
}
header p {
	text-align: center;
	color: #666;
	font-size: 16px;
}



/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	overflow: hidden;
	padding-bottom: 40px;	/*メニューブロックの下の余白。下のコンテンツとの間の余白です。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*メニュー幅。今回４個なので100÷4=25です。５個にしたいなら20%にして下さい。*/
}
#menubar li a {
	display:  block;
	text-decoration: none;
	line-height: 2.5;	/*行間を少し広く再設定。デフォルトは冒頭のbody内にあります。*/
	text-align: center;	/*内容をセンタリング*/
	font-size: 18px;	/*文字サイズ*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF 50%, #e7e7e7);	/*背景グラデーション*/
	margin-left: 10px;		/*メニューの左に空けるスペース。メニュー同士の余白になります。*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
	border-radius: 10px;	/*角丸のサイズ*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒のことで0.1は色が10%ついた状態のこと。*/
}
/*１個目のメニューへの追加設定*/
#menubar li:first-child a {
	margin-left: 0;	/*左に空けたスペースをリセット*/
}
/*英語表記（飾り文字）*/
#menubar li a span {
	display: block;
	font-size: 12px;			/*文字サイズ*/
	background: #1A81BA;	/*背景色*/
	color: #FFF;			/*文字色*/
	border-radius: 0px 0px 8px 8px;	/*角丸のサイズ。左上、右上、右下、左下への設定*/
	margin: 0 30px;			/*上、左右への飾り文字の外側に空けるスペース*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#FFF 50%, #e7e7e7);	/*背景グラデーション*/
	position: relative;
	top: 1px;		/*現在の場所から下に1pxずらす*/
	left: 1px;		/*現在の場所から右に1pxずらす*/
	color: #808080;		/*文字色*/
}
/*マウスオン時と、現在表示中メニューの飾り文字の設定*/
#menubar li a:hover span, #menubar li.current a span {
	background: #FBB03B;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*各メニューのアイコン設定*/
#menubar li a img{
	padding-bottom: 5px;
}

/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*コンテンツ（メニュー以降を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*左に回り込み*/
	width: 73%;		/*幅*/
	padding-bottom: 40px;
}
#main section{
	clear: both;
	overflow: hidden;
}

/*見出しタグの設定
---------------------------------------------------------------------------*/
/*h2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;/*見出しの下にとるスペース*/
	font-size: 22px;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);	/*テキストの影。右へ、下へ(マイナスがついているのでこの場合は上に向かう)、広げる幅、色。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする設定*/
	padding: 8px 20px 4px 50px;		/*上下、左右への余白*/
	background: #8d5f33 url(../images/bg1.png);	/*背景色と背景画像（※古いブラウザ用）*/
	background: url(../images/deco.png) no-repeat right center,url(../images/deco-2.png) no-repeat left center,url(../images/bg1.png) repeat,#8d5f33;
	background-size: contain,contain,auto;
	border-radius: 10px;	/*角丸の指定*/
	box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}
/*h3タグの設定*/
#main h3 {
	clear: both;
	margin-top: 20px;
	margin-bottom: 20px;/*見出しの下にとるスペース*/
	font-size: 22px;	/*文字サイズ*/
	line-height: 1.5;
	color: #603813;
	padding: 8px 10px 4px;		/*上下、左右への余白*/
	background: #fff;
	border: 2px solid #8c6239;
	border-radius: 30px;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}
#main h3::first-letter{
	background: url("../images/h3_back-left.png") no-repeat left center;
	background-size: 50px; 
	padding-left: 55px;
}

/*h4タグ設定*/
#main h4 {
	font-size: 18px;	/*文字サイズ*/
	font-weight: bold;
	color: #333;
	background: url(../images/list_h4.png) no-repeat left center;
	background-size: contain;
	border-bottom: 2px dotted #333;	/*下側の線の幅、線種、色*/
	margin-bottom: 10px;
	line-height: 1.4;
	padding-left: 35px;
}
#main h4.text_p{
	color: #F46060;
	background: url(../images/list_h4_p.png) no-repeat left center;
	background-size: contain;
	padding-left: 35px;
}
#main h4.text_g{
	color: #74af17;
	background: url(../images/list_h4_g.png) no-repeat left center;
	background-size: contain;
	padding-left: 35px;
}
#main h4 small{
	color: #666;
	font-weight: normal;
	font-size: 12px;
}

/*h5タグ設定*/
#main h5{
	font-weight: bold;
	color: #333;
}
h5:before, h5:after { 
  position: relative;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-size: 1.0em;
}
h5:before {
  content:"＜";/*アイコン種類*/
  padding-right: 0.5em
}
h5:after {
  content:"＞";/*アイコン種類*/
  padding-left: 0.5em
}

/*段落タグの設定
---------------------------------------------------------------------------*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
	text-align: justify;
}

#main p.text_contact {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
	text-align: center;
	font-size: 18px;
}

/*他*/
#main p + p {
	margin-top: -10px;
}
#main h2 + h3{
	margin-top: 0;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main ul + h5 {
	margin-top: -20px;
}
#main section + section {
	clear: both;
	padding-top: 30px;
}


/*ul,olタグ
---------------------------------------------------------------------------*/
ul{
	margin-bottom: 20px;
}
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 40px;
}
ol {
	padding: 0 20px 15px 40px;
}

/*写真の回り込み
---------------------------------------------------------------------------*/
img.fr {
	float: right;
	margin-left: 20px;
	width: 40%;
	background: #FFF;
	padding: 0.8%;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}
img.fl {
	float: left;
	margin-right: 20px;
	width: 40%;
	background: #FFF;
	padding: 0.8%;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}
iframe.fr{
	float: right;
	margin-left: 20px;
	margin-bottom: 10px;
	width: 40%;
}
iframe.fl{
	float: left;
	margin-right: 20px;
	margin-bottom: 10px;
	width: 40%;
}

/*写真一覧の設定
---------------------------------------------------------------------------*/
.photo_list{
	clear: both;
	overflow: hidden;
	margin: auto 2%;
}
.photo_list figure{
	float: left;
	width: 48%;
	margin: 1% 1% 2%;
}
.photo_list figure img{
	background: #FFF;
	width: 96%;
	padding: 2%;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}
.photo_list figure figcaption{
	margin-top: 10px;
	padding-top:2px; 
	background: #fff;
	border: 1px solid #705036;
	border-radius: 20px;
	text-align: center;
	color:#705036;
	line-height: 1.5;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}


/*listボックスの設定
---------------------------------------------------------------------------*/
/*listボックスの設定*/
#main .list {
	position: relative;
	clear: both;
	overflow: hidden;
	margin: 0 1% 15px;	/*上、左右、下へのボックスの外に空けるスペース*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	padding: 3%;			/*ボックス内の余白*/
	background: #FFF;
	border-radius: 10px;	/*角丸のサイズ*/
}

/*ボックス内の写真設定*/
#main .list figure img {
	float: left;			/*画像を左へ回り込み*/
	background: #FFF;		/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 0.8%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 30%;	/*写真の幅*/
	box-shadow: 2px 2px 3px rgba(0,0,0,0.15);	/*ボックスの影の設定。右へ、下へ、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
#main .list .f-right{
	width: 65%;
	float: right;
}

/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
	font-size: 14px;
}

/*ボックス内のリストタグ設定*/
#main .list .price{
	clear: both;
	overflow: hidden;
	margin-top: 3%;
	margin-bottom: 2%;
}
#main .list .price li{
	float: left;
	margin-right: 1%;
	margin-bottom: 1%;
	padding: 2px 10px 0;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	background: #ef7878;
	border-radius: 6px;
}

/*ボックス内のリンクタグ設定*/
#main .list a{
	display: block;
	text-decoration: none;
}
#main .list a:hover{
	opacity: 0.5;
	color: #000;
}
#main .list a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;		/*ボックスの上から20pxの場所に配置*/
	background: #BC9B82;	/*背景色（古いブラウザ用）*/
	background: rgba(112,80,54,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
}

/*list2ボックスの設定*
---------------------------------------------------------------------------*/
#main .list2 {
	float: left;
	width: 40.5%;
	position: relative;
	margin: 0 1% 15px;	/*上、左右、下へのボックスの外に空けるスペース*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	padding: 3%;			/*ボックス内の余白*/
	background: #FFF;
	border: 4px solid #fcbbbb;
	border-radius: 10px;	/*角丸のサイズ*/
}

/*ボックス内の写真設定*/
#main .list2 figure {
	background: #FFF;		/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding-bottom: 10px;			/*余白。ここに上の行で設定した背景色が出ます。*/

}
#main .list2 figure img {
	background: #FFF;		/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 0.8%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	box-shadow: 2px 2px 3px rgba(0,0,0,0.15);	/*ボックスの影の設定。右へ、下へ、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
#main .list2 .f-right{
	width: 100%;
}

/*ボックス内の段落タグ設定*/
#main .list2 p {
	overflow: hidden;
	height: 10em;
	padding: 0px;
	font-size: 14px;
}

/*ボックス内のリンクタグ設定*/
#main .list2 a{
	display: block;
	text-decoration: none;
}
#main .list2 a:hover{
	opacity: 0.5;
	color: #000;
}
#main .list2 a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	bottom: 20px;		/*ボックスの上から20pxの場所に配置*/
	background: #BC9B82;	/*背景色（古いブラウザ用）*/
	background: rgba(112,80,54,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
}


/*list3ボックスの設定*
---------------------------------------------------------------------------*/
#main .list3{
	margin: 0 2% 15px;
}
#main .list3 figure img{
	width: 38%;
	background: #FFF;
	padding: 0.8%;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.15);
}
#main .list3 figure iframe {
	width: 38%;
	background: #FFF;
	padding: 0.8%;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.15);
}
#main .list3 h4{
	margin-left: 42%; 
}
#main .list3 p{
	padding: 0;
	line-height: 2.1;
}
#main .list3 ul{
	padding-left: 42%;
}

#main .list3 .profile{
	float:left;
	width: 47%;
	margin: 1% 5% 0 0;
	border-radius: 15px;
}
#main .list3 .pro_margin{
	margin-right: 0;
}
#main .list3 .profile ul{
	padding: 0 0 0 5%;
	font-size: 14px;
	margin-bottom: 0;
}
#main .list3 .profile p{
	font-size: 14px;
	line-height: 2;
}

#main .list3 .profile2{
	width:96%;
	margin: 1% 0 0;
	border-radius: 15px;
}
#main .list3 .profile2 ul{
	padding: 0 0 0 3%;
	font-size: 14px;
	margin-bottom: 0;
}
#main .list3 .profile2 p{
	font-size: 14px;
	line-height: 2;
}

/*英語コースごとの設定
---------------------------------------------------------------------------*/
/*Massageコースの設定*/
#main .massage{
	border: 4px solid #ffba76;
}
#main .massage h4{
	color: #f9893d;
}
#main .massage .price li{
	border: 2px solid #f98d43;
	color: #f9893d;
	background: #fff;
}
#main .massage a::before {
	background: #f9ae7a;	/*背景色（古いブラウザ用）*/
	background: rgba(244,129,52,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
}

/*Babyコースの設定*/
#main .baby{
	border: 4px solid #bca6f4;
}
#main .baby h4.text_p{
	color: #8668d8;
}
#main .baby .price li{
	border: 2px solid #9174e2;
	color: #8668d8;
	background: #fff;
}
#main .baby a::before {
	background: #b3a3ef;	/*背景色（古いブラウザ用）*/
	background: rgba(145,116,226,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
}

/*Kidsコースの設定*/
#main .kids{
	border: 4px solid #f9a7ab;
}
#main .kids h4.text_p{
	color: #ed5f73;
}
#main .kids .price li{
	border: 2px solid #f77c8d;
	color: #ed5f73;
	background: #fff;
}
#main .kids a::before {
	background: #f9acb4;	/*背景色（古いブラウザ用）*/
	background: rgba(247,124,141,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
}

/*Elementaryコースの設定*/
#main .elementary{
	border: 4px solid #8addb5;
}
#main .elementary h4.text_p{
	color: #25ad6c;
}
#main .elementary .price li{
	border: 2px solid #32ba79;
	color: #25ad6c;
	background: #fff;
}
#main .elementary a::before {
	background: #89dbb3;	/*背景色（古いブラウザ用）*/
	background: rgba(50,186,121,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
}


/*Intermediateコースの設定*/
#main .intermediate{
	border: 4px solid #fcd56b;
}
#main .intermediate h4.text_p{
	color: #f4a416;
}
#main .intermediate .price li{
	border: 2px solid #f7aa21;
	color: #f4a416;
	background: #fff;
}
#main .intermediate a::before {
	background: #fcc949;	/*背景色（古いブラウザ用）*/
	background: rgba(255,195,46,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
}

/*Advancedコースの設定*/
#main .advanced{
	border: 4px solid #acdd5e;
}
#main .advanced h4.text_p{
	color: #75af1b;
}
#main .advanced .price li{
	border: 2px solid #86bc31;
	color: #75af1b;
	background: #fff;
}
#main .advanced a::before {
	background: #acd860;	/*背景色（古いブラウザ用）*/
	background: rgba(134,188,49,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
}

/*Teensコースの設定*/
#main .teens{
	border: 4px solid #9ad9ef;
}
#main .teens h4.text_p{
	color: #32a0c6;
}
#main .teens .price li{
	border: 2px solid #4cb4d8;
	color: #32a0c6;
	background: #fff;
}
#main .teens a::before {
	background: #a0daea;	/*背景色（古いブラウザ用）*/
	background: rgba(76,180,216,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
}

/*習字コースごとの設定
---------------------------------------------------------------------------*/
/*美文字キッズコースの設定*/
#main .bimoji_kids{
	border: 4px solid #f9a7ab;
}
#main .bimoji_kids h4.text_g{
	color: #ed5f73;
}
#main .bimoji_kids .price li{
	border: 2px solid #f77c8d;
	color: #ed5f73;
	background: #fff;
}
#main .bimoji_kids a::before {
	background: #f9acb4;	/*背景色（古いブラウザ用）*/
	background: rgba(247,124,141,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
}


/*書き方コースの設定*/
#main .kakikata{
	border: 4px solid #8addb5;
}
#main .kakikata h4.text_g{
	color: #25ad6c;
}
#main .kakikata .price li{
	border: 2px solid #32ba79;
	color: #25ad6c;
	background: #fff;
}
#main .kakikata a::before {
	background: #89dbb3;	/*背景色（古いブラウザ用）*/
	background: rgba(50,186,121,0.5);	/*rgb指定での背景色。「0,0,0」は黒の事で「0.5」が透明度50%の事。*/
}


/*テーブルの設定（dl）
---------------------------------------------------------------------------*/
/*質問と答えのボックス全体を囲むブロック*/
.e_faq {
	padding: 0 20px;	/*上下、左右へのボックス内余白*/
}
.c_faq {
	padding: 0 20px;	/*上下、左右へのボックス内余白*/
}
/*質問*/
.e_faq dt {
	font-weight: bold;	/*太字にする設定*/
	color: #db0928;		/*文字色*/
	background: url(../images/list_h4_p.png) no-repeat left center / 22px;
	padding-left: 30px;
	border-bottom: 1px dotted #333;
}
.c_faq dt {
	font-weight: bold;	/*太字にする設定*/
	color: #3e8400;		/*文字色*/
	background: url(../images/list_h4_g.png) no-repeat left center / 22px;
	padding-left: 30px;
	border-bottom: 1px dotted #333;
}
/*回答*/
.e_faq dd {
	margin-bottom: 15px;
	padding-bottom: 15px;	/*下に空けるスペース*/
}
.c_faq dd {
	margin-bottom: 15px;
	padding-bottom: 15px;	/*下に空けるスペース*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	background: #eee;		/*背景色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta1設定*/
.ta1 {
	width: 96%;
	table-layout: fixed;
	margin: 0 20px 50px;	/*テーブルの下(外側)に空けるスペース*/
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: left;	/*センタリング*/
	font-weight: normal;
}

.ta1 ul, .ta1 ol {
	padding-bottom: 0;
}

/*facebookコンテンツ
---------------------------------------------------------------------------*/
#main .facebook{
	height: 400px;
	margin: 0 2.5% 15px;
	background: url(../images/facebook_back.jpg) no-repeat;
	background-size: cover;
}
#main .facebook .facebook_w{
	width: 60%;
	height: 380px;
	margin: 0 auto;
	padding: 10px 0;
}


/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
#sub {
	float: left;	/*右に回り込み*/
	width: 22%;		/*幅*/
	padding-bottom: 40px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	padding: 10px 15px;		/*上下、左右への余白*/
	background: #1A81BA;	/*背景色*/
	color: #FFF;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	border-radius: 10px 10px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下の順番。*/
}

/*subコンテンツのbox
---------------------------------------------------------------------------*/
#sub .box {
	background-color: #98D5EA;
	background-image: radial-gradient(#eee 10%, transparent 20%), radial-gradient(#eee 10%, transparent 20%);
	background-position: 0 0, 10px 10px;
	background-size: 20px 20px;
	box-shadow: 1px 2px 5px rgba(0,0,0,0.3);
	border-radius: 10px;	/*角丸のサイズ*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	padding: 15px;			/*ボックス内の余白*/
}
#sub .box h2 {
	border-radius: 5px 5px 0 0;	/*角丸のサイズ。左上、右上、右下、左下の順番。*/
}

#sub .submenu {
	margin-bottom: 20px;		/*ブロックの下に空けるスペース*/
	border-top: solid 1px #ccc;	/*上の線の線種、幅、色*/
	background: #fff;		/*背景色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li a {
	text-decoration: none;
	display: block;
	padding: 10px 10px 8px 35px;	/*メニュー内の余白。上下、左右への設定。*/
	border-bottom: dotted 2px #ccc;	/*線の線種、幅、色*/
	border-top: none;		/*上の線だけ消す*/
	background: url(../images/submenu_li-back.png) no-repeat 10px;		/*背景色*/
}
#sub .submenu li a:hover {
	color: #FFDF24;
}
#sub .submenu li:last-child a {
	border-bottom: 0;	/*線の線種、幅、色*/
}
/*box内のメニューブロックの設定*/
#sub .box ul.submenu {
	margin-bottom:  0;
}

#sub .box div{
	background: #fff;
}
#sub .box p {
	width: 180px;
	line-height: 1.5;
	text-align: center;
	margin: 0 auto;
	padding-top: 10px; 
}
#sub .box p strong{
	font-size: 22px;
}
#sub .box p.text_min {
	font-size: 14px;
	text-align: left;
	padding: 10px 0 20px;
}
	
/*subコンテンツのbox2
---------------------------------------------------------------------------*/
#sub .box2{
	background: #fff;
	border-radius: 20px 20px 0 0;
}
#sub .box2 h2{
	margin-bottom: 10px;
}
#sub .box2 p {
	width: 180px;
	line-height: 1.5;
	text-align: center;
	margin: 0 auto;
	padding-top: 10px; 
}
#sub .box2 p strong{
	font-size: 18px;
}
#sub .box2 p.text_min {
	font-size: 14px;
	text-align: left;
	padding: 10px 0 20px;
}

/*subコンテンツのbox3
---------------------------------------------------------------------------*/
#sub .box3 {
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
}
#sub .box3 ul li{
	margin-right: 1%;
	margin-bottom: 10px;
}
#sub .box3 ul li a{
	display: block;
}
#sub .box3 ul li a:hover{
	opacity: 0.8;
}
#sub .box3 ul li a img{
	width: 100%;
}


/*subコンテンツのbox4
---------------------------------------------------------------------------*/
#sub .box4 {
	margin-bottom: 10px;	/*ボックスの下に空けるスペース*/
}
#sub .box4 ul{
	overflow: hidden;
}
#sub .box4 ul li{
	float: left;
	width: 48%;
	margin-right: 1%;
	margin-bottom: 10px;
}
#sub .box4 ul li a{
	display: block;
}
#sub .box4 ul li a:hover{
	opacity: 0.7;
}
#sub .box4 ul li a img{
	width: 100%;
}

/*subコンテンツのbox5
---------------------------------------------------------------------------*/
#sub .box5 {
	margin-bottom: 10px;	/*ボックスの下に空けるスペース*/
}
#sub .box5 ul{
	overflow: hidden;
}
#sub .box5 ul li{
	float: left;
	width: 24%;
	margin-right: 1%;
	margin-bottom: 10px;
}
#sub .box5 ul li a{
	display: block;
}
#sub .box5 ul li a:hover{
	opacity: 0.7;
}
#sub .box5 ul li a img{
	width: 100%;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;		/*内容をセンタリング*/
	padding: 10px 0;		/*上下、左右へのボックス内の余白*/
	background: #1A81BA;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 10px;
	margin-bottom: 10px;
}
footer a {
	text-decoration: none;
	color: #fff;	/*リンクテキストの色*/
}
footer a:hover {
	color: #fff;	/*マウスオン時のリンクテキストの色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}


/*inputボタン
---------------------------------------------------------------------------*/
#main input[type="submit"].btn,
#main input[type="button"].btn,
#main input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボタン内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #fff;		/*背景色*/
}
/*マウスオン時の設定*/
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーグレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
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: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	bottom: 33px;		/*下から33pxの場所に配置*/
	right: 3%;			/*右から3%の場所に配置*/
	background: #36BBEA;	/*背景色（古いブラウザ用）*/
	background: rgba(54,187,234,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	border-radius: 50%;	/*円形にする設定*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #24A4D1;	/*背景色*/
}


/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;color: #333;padding: 5px 10px;border-radius: 4px;}
.mb1em {margin-bottom: 16px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #f87373;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 30px;letter-spacing: 0.1em;line-height: 1.5;}
.sh {display: none;}



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
	overflow: hidden;
	position: absolute;
	top: 0px;	/*上から0pxの場所に配置*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	width: 100%;
	margin-left: -3%;
	z-index: 10;
	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 30px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #D3DEE2;	/*下の線の幅、線種、色*/
	background: rgba(255,255,255,0.95);	/*背景色*/
	color: #424C61;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
	color: #7E889B;
}
/*現在表示中(current)の文字色*/
#menubar-s li.current a {
	color: #ffde00;
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	z-index: 20;
	top: 20px;		/*上から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border-radius: 50%;	/*円形にする設定*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #1A81BA url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコン画像読み込み、画像の上半分を読み込む。幅50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #1A81BA url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコン画像読み込み、画像の下半分を読み込む。幅50px。*/
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*h2タグの設定*/
#main h2 {
	font-size: 16px;
	padding: 5px 20px 5px 35px;
	border-radius: 5px;	/*角丸の指定*/
}
/*h4タグ設定*/
#main h4.text_p{
	margin-bottom: 10px;
	margin-left: 0;	/*左の画像とバランスをとって設定する*/
}
#main h4.text_g{
	margin-bottom: 10px;
	margin-left: 0;	/*左の画像とバランスをとって設定する*/
}

/*写真一覧の設定
---------------------------------------------------------------------------*/
.photo_list figure{
	margin: 0.5% 1% 2%;
}
.photo_list figure figcaption{
	margin-top: 10px;
	padding-top:0; 
	line-height: 1.5;
	font-size: 10px;
}
	
/*listボックス
---------------------------------------------------------------------------*/
/*listボックス内の写真設定*/
#main .list figure img {
	float: none;			/*画像を左へ回り込み*/
	width: 98%;
	margin-bottom: 10px;
}
#main .list .f-right{
	width: 100%;
	float: right;
}
	
/*list2ボックスの設定*
---------------------------------------------------------------------------*/
#main .list2 {
	float: none;
	width: 90%;
	border-radius: 10px;	/*角丸のサイズ*/
}

/*ボックス内の写真設定*/
#main .list2 figure img{
	width: 98%;
}
	
/*list3ボックスの設定*
---------------------------------------------------------------------------*/
#main .list3 figure img{
	width: 96%;
	padding: 2%;
	float:none;
}
#main .list3 figure iframe{
	width: 96%;
	padding: 2%;
	float:none;
}
#main .list3 h4{
	margin-top: 10px;
	margin-left: 0; 
}
#main .list3 ul{
	padding-left: 0;
}

#main .list3 .profile{
	float:none;
	width: 100%;
	margin: 2% 0 0;
	border-radius: 8px;
}
#main .list3 .profile2{
	float:none;
	width: 100%;
	margin: 2% 0 0;
	border-radius: 8px;
}
#main .list3 .profile ul{
	padding: 0 0 0 3%;
	font-size: 14px;
	margin-bottom: 0;
}

	
/*facebookコンテンツ
---------------------------------------------------------------------------*/
#main .facebook .facebook_w{
	width: 75%;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: left;	/*内容を左側に*/
}
/*ロゴ画像*/
header #logo img {
	width: 150px;	/*画像幅*/
}
header p {
	display: none;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*h2タグの設定*/
#main h2 {
	font-size: 16px;
	padding: 5px 20px 5px 35px;
	border-radius: 8px;	/*角丸の指定*/
}
/*h3タグの設定*/
#main h3 {
	margin-top: 0px;
	font-size: 16px;	/*文字サイズ*/
	line-height: 1.5;
	padding: 3px 10px 0px;		/*上下、左右への余白*/
}
#main h3::first-letter{
	background: url("../images/h3_back-left.png") no-repeat left center;
	background-size: 35px; 
	padding-left: 40px;
}
/*h4タグの設定*/
#main h4 {
	font-size: 15.5px;	/*文字サイズ*/
	padding-left: 25px; 
}
#main h4 small{
	font-size: 10.5px;	/*文字サイズ*/
}

/*ul,olタグ
---------------------------------------------------------------------------*/
ol {
	padding: 0 5px 15px 25px;
}	
	
/*段落タグ設定
---------------------------------------------------------------------------*/
#main p {
	padding: 0px 10px 15px;
}

#main p.text_contact {
	padding: 5px 10px 15px;
	font-size: 11.5px;
}

/*list内 h4タグの設定
---------------------------------------------------------------------------*/
#main .list .f-right p {
	font-size: 12px;
}	
#main .list a::before {
	right: 10px;	/*ボックスの右から20pxの場所に配置*/
	bottom: 10px;		/*ボックスの上から20pxの場所に配置*/
	width: 20px;		/*幅*/
	line-height: 20px;	/*高さ*/
}
/*ボックス内のh4タグ設定*/
#main .list h4.text_p{
	padding-left: 25px; 
}
#main .list h4.text_g{
	padding-left: 25px;
}	

/*ボックス内のリストタグ設定*/
#main .list .price li{
	float: left;
	padding: 2px 10px 0;
	font-size: 12.5px;
}
	
	
/*list2ボックスの設定*
---------------------------------------------------------------------------*/
#main .list2 h4{
	padding-left: 25px; 
}
#main .list2 p {
	font-size: 12px;
}
#main .list2 a::before {
	right: 10px;	/*ボックスの右から20pxの場所に配置*/
	bottom: 10px;		/*ボックスの上から20pxの場所に配置*/
	width: 20px;		/*幅*/
	line-height: 20px;	/*高さ*/
}
	
	
/*list3ボックスの設定*
---------------------------------------------------------------------------*/
#main .list3 p{
	line-height: 1.5;
}
#main .list3 .profile ul{
	font-size: 12px;
	padding: 0 0 0 5%;
}
#main .list3 .profile p{
	font-size: 12px;
}
#main .list3 .profile2 ul{
	font-size: 12px;
	padding: 0 0 0 5%;
}
#main .list3 .profile2 p{
	font-size: 12px;
}
	
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 10px;
	padding-right: 10px;
}

/*facebookコンテンツ
---------------------------------------------------------------------------*/
#main .facebook .facebook_w{
	width: 90%;
}

/*テーブル(ta1)
---------------------------------------------------------------------------*/
/*余白の上書き*/	
.ta1 {
	margin: 0 8px 20px;	/*テーブルの下(外側)に空けるスペース*/
}
.ta1 caption,.ta1 th,.ta1 td {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 18px;letter-spacing: normal;}
.sh {display:block;}
.pc {display:none;}

}
