@charset "utf-8";


/*slide.cssの読み込み*/
@import url(slide.css);

/*アニメーションのキーフレーム設定。透明(0%)から色を100%出す指定。*/
@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 18px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff url(../images/bg.png);	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,textarea {margin: 0px;padding: 0px;font-size: 100%;}
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;}
iframe {width: 100%;}
video,audio {max-width: 100%;}

/*リンク（全般）設定
-------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #cc9999;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
#main a {
	color: #3366cc;		/*リンクテキストの色*/
	transition: 0;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
#main a:hover {
	color: #3366cc;			/*マウスオン時の文字色*/
	text-decoration: underline;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}


/*サイトの最大幅の設定
-------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅。これ以上大きくならない。*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: #fff linear-gradient(#e5e5e5, rgba(255,255,255,0) 25%);/*背景色、背景グラデーション*/
}
header .inner {
	position: relative;overflow: hidden;
	margin: 0 auto;
	height: 110px;	/*ヘッダーの高さ*/
	background: linear-gradient(#e5e5e5, rgba(255,255,255,0) 25%), #fff url(../images/header_bg.jpg) no-repeat right center;/*背景グラデーション、背景画像の読み込み*/
}
h1{ display:none;}

header #logo{
	width: 350px;		/*ロゴ画像の幅*/
	position: absolute;
	left: 2%;		/*headerのinnerに対しての左からの配置指定*/
	bottom: 12px;	/*headerのinnerに対しての下からの配置指定*/
}
header h1#logo{
	display: block;
}

/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
-------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 2%;	/*headerのinnerに対しての右からの配置指定*/
	top: 60px;	/*headerのinnerに対しての上からの配置指定*/
}
/*メニュー１個あたり*/
#headermenu li {
	float: left;		/*左に回り込み*/
	margin-left: 10px;	/*左側にスペースを空ける*/
}
#headermenu li a {
	text-decoration: none;display: block;
	background: #a05858;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#c38080, #a05858);	/*背景グラデーション*/
	color: #FFF;		/*文字色*/
	padding: 3px 15px;	/*上下、左右へのボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #a05858;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
#headermenu li a:hover {
	color: #a05858;	/*文字色*/
	background: #fff;	/*背景色*/
}

/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	position: absolute;
	right: 2%;		/*headerのinnerに対して右からの配置指定*/
	top: 0px;		/*headerのinnerに対して上からの配置指定*/
	width: 250px;	/*ブロック幅*/
	background: #fff;	/*背景色*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は20%色がついた状態の事。*/
	border-radius: 0px 0px 5px 5px;	/*角丸のサイズ。左上、右上、右下、左下への順。*/
	line-height: 50px;	/*高さ*/
	padding: 10px 0px;	/*上下、左右へのボックス内の余白*/
}

/*「文字サイズ」のテキスト*/
#fsize p {
	float: left;
	font-size: 18px;	/*文字サイズ*/
	padding: 0 20px;	/*上下、左右への余白*/
}

/*文字サイズボタン１個あたり*/
#fsize ul li {
	float: left;	/*左に回り込み*/
}
#fsize ul a {
	overflow: hidden;display: block;text-decoration: none;text-align: center;
	color: #fff;	/*文字色*/
}

/*「小」ボタン設定*/
#fsize ul li#small a::before {
	display: block;
	content: "小";		/*「小」の文字を出力*/
	font-size: 16px;	/*文字サイズ*/
	background: #e34c7e;	/*背景色*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
	margin-top: 5px;
	margin-right: 10px;
}

/*「大」ボタン設定*/
#fsize ul li#large a::before {
	display: block;
	content: "大";		/*「大」の文字を出力*/
	font-size: 30px;	/*文字サイズ*/
	background: #ccc;	/*背景色*/
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
}

/*マウスオン時の「大」ボタン設定*/
#fsize ul li#large a:hover::before {
	background: #e34c7e;	/*背景色*/
}

/*メインメニュー
-------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	overflow: hidden;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff 30%, #eee);	/*背景グラデーション*/
	border-bottom: 1px solid #cfcfcf;	/*下線の幅、線種、色*/
	margin-bottom: 30px;	/*下のコンテンツとの間に空けるスペース*/
	padding-bottom: 10px;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 16.66%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
	text-decoration: none;display: block;text-align: center;
	padding: 5px 0;	/*上下、左右へのメニュー内の余白*/
	margin: 10px 5px;	/*上下、左右へのメニューの外への余白*/
	border-radius: 5px;	/*角丸のサイズ*/
	background: #ffcccc;	/*背景色*/
	color: #560c0c;			/*文字色*/
}

/*マウスオン時のメニューの設定*/
#menubar li a:hover{
	background: #ffdada;	/*背景色*/
	color: #560c0c;			/*文字色*/
}
/*現在表示中(current)のメニューの設定*/
#menubar li.current a {
	background: #a05858;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/

#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;padding-top: 1px;
	width: 16.66%;		/*幅。上の「#menubar li」と合わせる。*/
	top: 166px;
	/*font-size: 12px;	文字サイズ*/
}

/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}

#menubar ul.ddmenu li a {
	/*width: 100%;*/
	height: auto;font-weight: normal;
	border: none;	/*線を一旦リセット*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #a25a5a;	/*背景色（古いブラウザ用）*/
	background: rgba(162,90,90,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	color: #fff;		/*文字色*/
	padding: 5px 10px 5px 25px;	/*上下、左右への余白*/
	margin: 0 5px;	/*上下、左右へのメニューの外への余白*/
	text-align: left;
}
/*ドロップダウンメニュー内の見出し*/
#menubar ul.ddmenu li.title a {
	background: #d5000a;	/*背景色*/
	cursor: default;		/*カーソルをリンク用でなくデフォルトの矢印にしておく*/
	padding: 3px 0;			/*上下、左右への余白*/
}


/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: red;	/*背景色*/
}
/*見出しのマウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #a25a5a;
}


/*トップページ
---------------------------------------------------------------------------*/
/* mainimg
-------------------------------------*/
#mainimg {
	clear: both;
	position: relative;
	width: 100%;
	margin-bottom: 20px;
}

/*コンテンツ（mainとsubブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	box-sizing: border-box;
	padding: 2%;	/*ボックス内の余白*/
	background: #fff;	/*背景色*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.1);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.1は10%色がついた状態の事。*/
	margin-bottom: 40px;	/*下のフッターブロックとの間に空けるスペース*/
}

/*メインコンテンツ
-------------------------------------*/
#main {
	float: left;	/*右に回り込み*/
	width: 75%;		/*ボックス幅*/
	padding-bottom: 40px;
}
/*１カラム時のメインコンテンツ*/
.c1 #main {
	float: none;
	width: auto;
}

#main section + section {
	padding-top: 30px;
}

/* breadcrumb
-------------------------------------*/
#main nav{
	margin: -5px 0 5px;
	padding: 0;}
#main .breadcrumb {
  /**/display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 80%;
  background: url(../images/breadcrumb.png) 0 5px no-repeat;
  margin: 0 0 0 10px;
  padding: 0 0 0 20px;
}

#main .breadcrumb li{
  margin: 0;
  padding: 0;
}

#main .breadcrumb li:not(:last-of-type)::after {
  content: "»";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}

/* hx p
-------------------------------------*/
#main h2 {
	clear: both;
	margin-bottom: 30px;
	padding: 10px 20px;	/*上下、左右への余白*/
	font-size: 130%;	/*文字サイズ*/
	color: #a05858;		/*文字色*/
	background: #ffcccc;	/*背景色*/
	border-radius: 5px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
	line-height: 170%;
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #c27e7e;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツのh3タグ設定*/

#main h3 {
  clear: both;
  background: #fff3f3;
  border-bottom: solid 3px #e1a3a3;
  margin: 0 0 40px;
  padding: 7px 20px 5px;
  color: #666666;
}

#main h4 {
  padding: 0.1em 0.5em;/*文字の上下 左右の余白*/
  color: #666666;/*文字色*/
  background: #f4f4f4;/*背景色*/
  border-left: solid 5px #67c8c2;/*左線*/
  border-bottom: solid 3px #d7d7d7;/*下線*/
  margin: 0 0 30px;
}

#main h5 {
  margin: 0 0 20px;
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 30px 25px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p {	margin-top: -10px;}
#main h3 + p {	margin-top: -10px;}
#main h4 + p {	margin-top: -10px;}
#main h5 + p {	margin-top: -10px;}

#main h3 + h4 {	margin-top: -10px;}
#main h4 + h5 {	margin-top: -10px;}
#main h3 + ul {	margin-top: -20px;}
#main h3 + ol {	margin-top: -15px;}

/* ul li
-------------------------------------*/
#main ul{
	margin: 0 0 30px 15px;
}

#main ul.attention{
	margin: 50px 0 20px 15px;
}

#main .waku ul{
	margin: 0 0 30px 45px;
}
#main .waku p + ul {	margin-top: -15px;}

#main ul li{
	list-style: none;
	margin: 0;
	padding: 4px 8px 2px 40px;
	background: url(../images/li_icon.png) no-repeat 13px 12px;
}

#main ul.link li{
	list-style: none;
	margin: 0;
	padding: 4px 8px 2px 35px;
	background: url(../images/li_link_icon.png) no-repeat 10px 7px;
}

#main ul.attention li{
	list-style: none;
	margin: 0;
	padding: 4px 8px 2px 40px;
	background: url(../images/li_link_attention.png) no-repeat 10px 12px;
}

/* ol li
-------------------------------------*/
#main ol {
	padding: 0 20px 20px 60px;
}
#main ol.kanji {
	list-style-type: cjk-ideographic;
	padding: 0 20px 20px 60px;
}
#main ol.kakko {
	margin: 0 20px 10px 30px;
}
#main ol.kakko li {
  position: relative;
  list-style-type: none;
}

#main ol.kakko li:before {
  position: absolute;
  right: calc(100% + 0.5rem);  /* 0.5remは連番とテキストとの余白 */
  content: "(" counter(list-item) ")";
}

/* kiyaku
-------------------------------------*/
/*mainコンテンツの段落タグ設定*/
#main .kiyaku p {
	padding: 0px 30px 25px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main .kiyaku p + ol {
	margin-top: -25px;
}
#main .kiyaku ol {
	padding: 0 30px 20px 55px;
}
#main .kiyaku ol.kanji {
	list-style-type: cjk-ideographic;
	padding: 0 30px 20px 90px;
}

#main .kiyaku ol ol.kanji {
	padding: 0 30px 20px 37px;
}

/*dl
-------------------------------------*/
dl.new,
dl.archive  {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin: 0 15px 60px;	/*ブロックの下(外側)に空ける余白*/
}
dl.letter  {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin: 0 15px 60px;	/*ブロックの下(外側)に空ける余白*/
	font-size: 90%;
}
/*日付設定*/

.new dt  {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/

.new dd  {
	padding-left: 12em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}

#main .new dd ul{
	margin: 0 0 30px 0;
}

.archive dt{
	float: left;
	width: 11em;
	letter-spacing: 0.1em;
	margin: 0 0.3em 0 0;
	padding: 0 0 0 0;
}
.archive dd  {
	padding-left: 14em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin: 0 0 7px;	
}
.letter dt{
	float: left;
	width: 12em;
	letter-spacing: 0.1em;
	margin: 0 0.3em 0 0;
	padding: 0 0 0 0;
}
.letter dd {
	padding-left: 13em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin: 0 0 7px;	
}
#main .letter dd ul{
	margin-left: 0;
}
.archive dd.news{	background: url(../images/icon_news.png) 10em 5px no-repeat;}
.archive dd.study{	background: url(../images/icon_study.png) 10em 5px no-repeat;}
.archive dd.event{	background: url(../images/icon_event.png) 10em 5px no-repeat;}
.letter dt.latest{	background: url(../images/icon_new.png) 7.5em 5px no-repeat;}

dl.word{
	margin: 0px 20px 20px 20px;
	font-size: 80%;
}

dl.word dt{
	overflow: hidden;
	float: left;
	width: 5.5em;
	white-space: nowrap;
	margin: 0 0 2px 0;
	padding: 0;
	border-right: 3px solid #CCC;
}

dl.word dd{
	margin: 0 0 5px 6em;
	padding: 0 0 0 6px;
}


/*「NEW」アイコン
-------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.9;
	padding: 2px 5px 1px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}
.endicon {
	background: #666;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.9;
	padding: 2px 5px 1px;
	border-radius: 2px;
	margin: 0px 7px 0 0;
	vertical-align: text-top;
}

/*ボタンの設定
-------------------------------------*/
#main a.btn_small {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 50%;
	margin: 20px auto 40px;
	padding: 1rem 1rem;
	font-weight: bold;
	background: linear-gradient(to top, rgb(5, 130, 174), #27acd9);
	color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	transition: 0.5s;
	border-radius: 8px;
}
a.btn_smallG {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 300px;
	margin: 20px auto 40px;
	padding: 1rem 4rem;
	font-weight: bold;
	background: linear-gradient(to top, rgb(1, 146, 28), #27d966);
	color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	transition: 0.5s;
	border-radius: 8px;
}
a.btn_smallLeft {
	display: block;
	/*text-align: center;
	vertical-align: middle;*/
	text-decoration: none;
	width: 300px;
	margin: 20px 0 40px;
	padding: 1rem 4rem;
	font-weight: bold;
	background: linear-gradient(to top, rgb(5, 130, 174), #27acd9);
	color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	transition: 0.5s;
	border-radius: 8px;
}
a.btn_smallCenter:hover,
a.btn_smallLeft:hover {
	color: #fff;
	opacity: 0.5;
}

.newsButton{
    font-size: 80%;
	border-radius: 10px;
    display: block;
    padding: 5px 10px;
    box-sizing: border-box;
	background: linear-gradient(to top, rgb(5, 130, 174), #27acd9);
    color: #FFF;
    text-decoration: none;
    text-align: center;
    margin: 5px 0;
}

#main a.newsButton{
    color: #FFF;
}

/*ボタン付きボックスの設定
-------------------------------------*/
.menuarea{
  float:left;
  width:42%;
  margin: 0 4% 2em;
  }

.box{
  margin:0 auto 0 auto;
  padding:1em;
  background:#fff;
  border:#ddd 5px solid;
  border-radius:10px;
}
.box img{
  width:100%;
  height:auto;
  border-radius:30px 0;
}
.box span{
  display:inline-block;
  margin:1em 1em 0 0;
  background:gold;
  font-size:12px;
  padding:.5em 1em;
  border-radius:.5em;
}
.box h5{
  margin:1em 0;
  font-size:20px;
  font-weight:bold;
}
#main .box p{
  line-height:1.2;
  padding: 0;
  font-size: 90%;
}
#main .box a{
  display:block;
  height:50px;
  margin:1em 0;
  line-height:50px;
	background: linear-gradient(to top, rgb(5, 130, 174), #27acd9);
  color:#fff;
  border-radius:25px;
  box-shadow:0 5px 0 #CCC;
  text-decoration:none;
  text-align:center;
  font-size: 90%;
}

/* Youtube　レスポンシブ対応
-------------------------------------*/
.movie-wrap {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
 
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 86%;
     height: 100%;
	 margin : 0 7%;
}

/* listブロック
-------------------------------------*/
/*ブロック１個あたりの設定*/
#main .list {
	overflow: hidden;position: relative;
	width: 90%;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 10px 20px 0;	/*ボックス内の余白*/
	margin: 0 auto 20px;	/*ボックス同士に空けるスペース*/
}

.sadokuBanner{
	text-align: center;
	margin: 2em auto;
}


/*画像*/
#main .list figure {
	float: left;	/*左に回り込み*/
	width: 30%;		/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}
/*h4（見出し）タグの設定*/
#main .list h4 {
	color: #ffcccc;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
}
/*p（段落）タグの設定*/
#main .list p {
	padding: 0;
}

/*詳細ページのサムネイル画像（CMS用）
---------------------------------------------------------------------------*/
.thumb {
	width: 70px;	/*画像の幅*/
	height: 70px;	/*画像の高さ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}
/*マウスオン時*/
.thumb:hover {
	border: 1px solid #999;
}

/*sub column
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*左に回り込み*/
	width: 22%;		/*ブロックの幅*/
	padding-bottom: 40px;
}
/*１カラム字のサブコンテンツ*/
.c1 #sub {display: none;}
/*h2見出しタグ設定*/
#sub h2 {
	 text-indent: -1em;
  padding-left: 1em;
	margin-bottom: 10px;
	font-size: 110%;	/*文字サイズ*/
	line-height: 150%;
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	border-left: 3px solid #ffcccc;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}


#sub ul + h2 {	margin-top: 2em;}
#sub p + h2 {	margin-top: 2em;}
#sub img + h2 {	margin-top: 2em;}

/*段落タグ（p）設定*/
#sub p {
	line-height: 1.6;	/*行間を少し狭く*/
}
#google{
	width: auto;
	margin: 0 0 1em;
	padding: 10px;
	background: #fff;}

/*　メニュー全体の設定
-------------------------------------*/
#sub .submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li {
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
#sub .submenu li a {
	text-decoration: none;display: block;
	padding: 5px 10px;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
}

#sub .submenu .submenu{
	margin: -10px auto 10px; 	/*メニューブロックの下に空けるスペース*/
	border: none;	/*上の線の線種、幅、色*/
	background: #fff;
}

#sub .submenu .submenu li{
	list-style: none;
	margin: 0 0 0 20px;
	padding: 0px 10px 0px;	
	background: url(../images/li_submenu.png) no-repeat 0px 4px;
	
	border-bottom: none;
	font-size: 85%;
	line-height: 140%;
}
#sub .submenu .submenu li a{
	padding: 0px 10px 10px;	
}

#sub ul.link{
	margin: 0.5em 0 0 0;
}
#sub ul.link li{
	list-style: none;
	margin: 0;
	padding: 0px 8px 0px 35px;
	background: url(../images/li_link_icon.png) no-repeat 10px 2px;
	font-size: 80%;
	line-height: 170%;
}
/*サブコンテンツ内のbox1
-------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	background: #f5f5f5;	/*背景色*/
	border: solid 1px #dbdbdb;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
}
/*box1内のメニューの設定*/
#sub .box1 .submenu {
	margin-bottom: 0px;
}

/*　メニュー全体の設定
-------------------------------------*/
#sub .submenuNews {
	margin-top: 20px;	/*メニューブロックの下に空けるスペース*/
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
	line-height: 140%;
}
/*メニュー１個ごとの設定*/
#sub .submenuNews li {
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
	padding: 10px 10px;	/*上下、左右へのメニュー内の余白*/
}
#sub .submenuNews li a {
	text-decoration: none;display: block;
	background: #fff;	/*背景色*/
}


/*サブコンテンツ内のbox2（「サンプルホームとは？」と「スタッフ募集中」のバナー）
-------------------------------------*/
#sub .banner{
	margin: 1em 0 20px;

}
#sub .box2 {
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	font-size: 120%;	/*文字サイズ*/
	box-shadow: 0px 0px 2px 5px #fff inset;	/*影の設定。右・下・ぼかし幅・距離・色の設定。insetは内側に向かっての影。*/
	background: #edf5fa;	/*背景色*/
}
#sub .box2 a {
	text-decoration: none;
	display: block;
	padding: 40px 15px;			/*上下、左右へのボックス内の余白*/
	border: solid 3px #e4e4e4;	/*枠線の線種、幅、色*/
}
/*マウスオン時*/
#sub .box2 a:hover {
	border: solid 3px #ffcccc;	/*枠線の線種、幅、色*/
}
/*「サンプルホームとは？」の背景設定*/
#sub .box2.about {
	background: #ededed url(../images/logo_mark.png) no-repeat right center / 100px;	/*背景色、背景画像の読み込み。高さ100px。*/
}
/*「スタッフ募集中」の背景設定*/
#sub .box2.recruit {
	background: #ededed url(../images/recruit_img.png) no-repeat right top / 110px;		/*背景色、背景画像の読み込み。高さ110px。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;overflow: hidden;
	background: #ffcccc;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*フッターメニュー
-------------------------------------*/
#footermenu {
	clear: both;overflow: hidden;
	font-size: 80%;	/*文字サイズを少し小さく*/
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
}
/*１列分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 24%;		/*今回は４列作ったので、下のmarginを含めて25%になるよう指定。５列にしたいならこの行は19%にする。*/
	margin-left: 1%;
}
/*メニュー１個あたりの設定*/
#footermenu ul li {
	padding: 0 10px;	/*上下、左右への余白*/
}
#footermenu a {
	text-decoration: none;
	color: #631c1c;	/*文字色*/
	opacity: 0.7;	/*透明度。色を70%出した状態。*/
}
#footermenu a:hover {
	opacity: 1;	/*透明度。色を100%出した状態。*/
}

/*コピーライト
-------------------------------------*/
#copyright {
	clear: both;text-align: center;
	background: #666666;	/*背景色*/
	padding: 10px;		/*余白*/
}
#copyright a {text-decoration: none;color: #fff;}
#copyright .pr {display: block;}

/*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: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	bottom: 40px;		/*下から40pxの場所に配置*/
	right: 1%;			/*右から1%の場所に配置*/
	background: #fff;	/*背景色*/
	color: #631c1c;		/*文字色*/
	border: 1px solid #631c1c;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*円形にする*/
	animation-name: opa1;	/*冒頭のkeyframesの名前*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #ffefef;	/*背景色*/
}

/*よく頂く質問
---------------------------------------------------------------------------*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問*/
.faq dt {
	color: #ffcccc;		/*文字色*/
	font-weight: bold;	/*太字にする設定*/
	padding-left: 35px;	/*背景アイコンに重ならないよう左に余白を作る*/
	background: url(../images/faq_q.png) no-repeat left top / 34px;	/*「Q」アイコン*/
}
/*回答*/
.faq dd {
	padding-left: 35px;		/*背景アイコンに重ならないよう左に余白を作る*/
	margin-bottom: 20px;	/*ボックスの下側（外側）に空けるスペース*/
	padding-bottom: 20px;	/*ボックス内の下側に空けるスペース*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	background: url(../images/faq_a.png) no-repeat left top / 34px;	/*「A」アイコン*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption,
.ta2 caption,
.ta3 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi,
.ta2 th.tamidashi,
.ta3 th.tamidashi {
	width: auto;
}
/*ta1,ta2共通設定*/
.ta1,
.ta2,
.ta3 {
	table-layout: fixed;
	width: 95%;
	margin: 0 auto 60px;
}
.ta1, .ta1 td, .ta1 th,
.ta2, .ta2 td, .ta2 th,
.ta3, .ta3 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi,
.ta2 th.tamidashi,
.ta3 th.tamidashi  {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cce6f6;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	background: #f0f0f0;	/*背景色*/
}.ta1 th.left {
	text-align: left;
}
.ta1 th.width20 {
	width: 6em;
}
/*ta2の左側ボックス*/
.ta2 th {
	background: #fffeba;	/*背景色*/
}
/*ta2の右側ボックス*/
.ta2 td {
	text-align: center;	/*センタリング*/
}
/*ta3の左側ボックス*/
.ta3 th {
	background: #f0f0f0;	/*背景色*/
}.ta3 th.left {
	text-align: left;
}
.ta3 td {
	background: #fff;	/*背景色*/
	line-height: 120%;
    vertical-align: top;
}
.ta3 td .caption{
	font-size: 70%;
}
/*料金ページの追加設定（CMS用）*/
.ta1.price td {
	text-align: right;
}
.ta1.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta1.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}
#main .ta1 h4,
#main .ta2 h4{
	margin: 15px auto 10px 15px;
}
#main .ta1 p,
#main .ta2 p{
	margin: 0 auto 10px 25px;
	padding: 0;
}

/*その他
---------------------------------------------------------------------------*/
.pcOnly{display: block;}
.phoneOnly{display: none;}
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.fontred {color: #f04848 !important;}
.color2 {color: #ff0000 !important;}
.pr {font-size: 10px;}


/*.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}*/

.center{text-align: center !important;}
.r {text-align: right !important;}
.right {text-align: right !important;}
.l {text-align: left !important;}
.left {text-align: left !important;}
.fr {float: right;margin-left: 2%;margin-bottom: 20px;}
.fl {float: left;margin-right: 2%;margin-bottom: 20px;}
.big1 {font-size: 200%;letter-spacing: 0.2em;}
.mini1 {font-size: 80%;}
.caption{ font-size: 80%; font-weight: normal;}
.sh {display: none;}
.clear{ clear: both;}

.margin5{margin:5px;}
.margin10{margin:10px;}
.margin15{margin:15px;}
.margin20{margin:20px;}

.marginTop0{margin-top:0px;}
.marginTop5{margin-top:5px;}
.marginTop10{margin-top:10px;}
.marginTop15{margin-top:15px;}
.marginTop20{margin-top:20px;}
.marginTop25{margin-top:25px;}
.marginTop30{margin-top:30px;}
.marginTop35{margin-top:35px;}
.marginTop40{margin-top:40px;}
.marginTop45{margin-top:45px;}
.marginTop50{margin-top:50px;}

.marginBtm0{margin-bottom:0px;}
.marginBtm5{margin-bottom:5px;}
.marginBtm10{margin-bottom:10px;}
.marginBtm15{margin-bottom:15px;}
.marginBtm20{margin-bottom:20px;}
.marginBtm25{margin-bottom:25px;}
.marginBtm30{margin-bottom:30px;}
.marginBtm35{margin-bottom:35px;}
.marginBtm40{margin-bottom:40px;}
.marginBtm45{margin-bottom:45px;}

.marginRight5{margin-right:5px;}
.marginRight10{margin-right:10px;}
.marginRight15{margin-right:15px;}
.marginRight20{margin-right:20px;}
.marginRight25{margin-right:25px;}
.marginRight30{margin-right:30px;}
.marginRight35{margin-right:35px;}

.marginLeft5{margin-left:5px;}
.marginLeft10{margin-left:10px;}
.marginLeft15{margin-left:15px;}
.marginLeft20{margin-left:20px;}
.marginLeft25{margin-left:25px;}
.marginLeft30{margin-left:30px;}
.marginLeft35{margin-left:35px;}

.floatLeft{float:left}
.floatRight{float:right;}
.center{text-align:center;}

.clearLeft{clear:left;}
.clearRight{clear:right;}
.clearBoth{clear:both;}

.imgRight{ float: right; margin: 0 10px 10px 20px;}
.imgLeft{ float: left; margin: 20px 20px 10px 0;}

img.imgRight{margin-bottom: 20px;}
img.imgLeft{ margin-bottom: 20px;}

.imgBorder{border: 1px solid #ccc;}
.waku{
	border: 1px solid #CCCCCC;
	background: #fefff0;
	padding: 15px 10px 0px 10px;
	margin: 15px 15px 30px;
}
.waku h5 {
  color: #505050;/*文字色*/
  padding: 0.6em 0.5em 0.4em 0.7em;/*文字周りの余白*/
  display: inline-block;/*おまじない*/
  line-height: 1.3;/*行高*/
  vertical-align: middle;
  margin: 5px 10px 15px 20px;
  width: 97%;
  border-bottom: 1px dashed #CCCCCC;
}

/*pdfアイコン
-----------------------------------
a[href$=".pdf"]{
	display: inline-block;
	background: url(../images/icon_pdf.png) no-repeat -2px 7px;
	padding: 0px 0 5px 25px;
	margin: 0 0 0 3px;
}*/

@media screen and (min-width:1201px){
/*inner共通
---------------------------------------------------------------------------*/

	/*メインメニューとドロップダウンメニューの設定変更。
メニュー数が6個なので、1301÷6=216pxになります。
---------------------------------------------------------------------------*/
#menubar li, #menubar ul.ddmenu {
	width: 200px;
}
}


/*画面幅900px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	/*display: none;	非表示にする*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
	animation-name: opa1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px;	/*メニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #ffcccc;	/*背景色*/
	font-size: 18px;		/*文字サイズ*/
	color: #560c0c;		/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	font-size: 12px;	/*文字サイズ*/
	margin-left: 20px
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;position: absolute;z-index: 2;
	top: 15px;	/*上からの配置場所指定*/
	right: 2%;	/*右からの配置場所指定*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;		/*幅*/
	height: 50px;		/*高さ*/
	border-radius: 50%;	/*円形にする。この行削除すれば正方形になります。*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #ffcccc url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコンの読み込み、上半分(top)を表示、幅50px*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #333 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコンの読み込み、上半分(bottom)を表示、幅50px*/
}

/*main,sub
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

#sub .banner{
	margin: 1em auto 20px;
	text-align: center;

}

/* mainimg
-------------------------------------*/
#mainimg {
	clear: both;
	position: relative;
	width: 100%;
	margin-bottom: 0.7em;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side {display: none;}
.big1 {font-size: 150%;letter-spacing: normal;}
.sh {display:block;}
.pc {display:none;}

.phoneCenter{text-align: center;}
img.imgRight{ float: none; margin: 0 auto 1.5em;}
img.imgLeft{ float: none; margin: 20px auto 1.5em;}

}



/*画面幅800px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header .inner {
	position: static;
	height: auto;
	padding: 10px;
	background-position: left center;	/*背景画像の配置場所の変更。右側に寄せる。*/
}



/*ロゴ画像*/
header #logo {
	position: static;
	margin: 0 auto;
}

/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: static;
	margin: 0 auto;
}
/*メニュー１個あたり*/
#headermenu li {
	float: none;
	max-width: 300px;	/*最大幅*/
	margin: 10px auto;
	text-align: center;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
dl.new,
dl.archive  {
	margin: 0 0 60px;	/*ブロックの下(外側)に空ける余白*/
}
.new dt  {
	float: none;
	font-weight: bold;
	padding: 5px 0 0 0;
	width: auto;
}

.new dd  {
	padding-left: 0;
}

dl.archive dt{
	float: none;
	width: 11em;
	letter-spacing: 0.1em;
}
dl.archive dd  {
	padding: 0 0 0 0em;
	text-indent: 4em;
}
dl.letter dt{
	float: none;
	width: 11em;
	letter-spacing: 0.1em;
	font-weight: bold;
}
dl.letter dd  {
	padding: 0 0 0 0em;

}
dl.archive dd.news{	background: url(../images/icon_news.png) 0 5px no-repeat;}
dl.archive dd.study{	background: url(../images/icon_study.png) 0 5px no-repeat;}
dl.archive dd.event{	background: url(../images/icon_event.png) 0 5px no-repeat;}
dl.archive dd.latest{	background: url(../images/icon_new.png) 0 5px no-repeat;}



#main .list {
	padding: 15px 15px 10px 20px;	/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックス同士に空けるスペース*/
}
#main .list ul{
	padding: 0;	/*ボックス内の余白*/
	margin: 0 0 1em;	/*ボックス同士に空けるスペース*/
}
#main .list ul.link li{
	padding: 4px 8px 2px 30px;
	background: url(../images/li_link_icon.png) no-repeat 5px 8px;
}
#main .list h5 + ul {	margin-top: -15px;}

/*フッターメニュー
-------------------------------------*/
#footermenu {
	clear: both;
	overflow: hidden;
	font-size: 80%;	/*文字サイズを少し小さく*/
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
}
/*１列分の設定*/
#footermenu ul {
	float: none;
	width: 100%;
}

/*その他メニュー
-------------------------------------*/
.pcOnly{display: none;}
.phoneOnly{display: block;}

.waku{
	padding: 15px 0 0px 0;
	margin: 15px 0 30px;
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*文字サイズ指定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
	font-size: 14px;
	font-size: 3.93vw;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 220px;
	padding: 10px 0;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption,
.ta2 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1,ta2共通設定*/
.ta1, .ta1 td, .ta1 th,
.ta2, .ta2 td, .ta2 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}
.ta1 th.width20 {
	width: 6em;
}

/*ボタンの設定
---------------------------------------------------------------------------*/
#main a.btn_small {
	width: 80%;
	margin: 0em auto 40px;
	padding: 1rem 0.5rem;
}
a.btn_smallLeft {
	width: 240px;
	margin: 20px 0 40px;
	padding: 1rem 1.5rem;
}

/*その他
---------------------------------------------------------------------------*/
/*.ws,.wl {width: 94%;}*/



}

