@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}

table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #57bff0;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	font-size: 10px;		/*文字サイズ*/
	color: #FFF;	/*背景色*/
	text-align: right;		/*右寄せ*/
	background-color: #666;
}
body > h1 a, body > h1 a:hover {
	color: #FFF;
	text-decoration: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 997px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ブロックの幅*/
}
/*h1ロゴの設定*/
header h1 {
	padding: 20px 0px 20px 20px;	/*上、右、下、左側へあける余白*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 141px;	/*メニュー幅*/
	border-right: 1px solid #dcdcdc;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
	margin-bottom: 20px;	/*メニューの下にあけるスペース*/
}
nav#menubar ul li a {
	color: #006;		/*文字色*/
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: 1px solid #dcdcdc;	/*左側に線を入れる*/
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	background-color: #57bff0;	/*背景色*/
	color: #FFF;	/*文字色*/
}
/*英語表記の設定*/
nav#menubar ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準にする設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	color: #999;	/*文字色*/
}
nav#menubar ul li a:hover span {
	color: #fffbc3;	/*マウスオン時*/
}

/*コンテンツ（main,sub,sideを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
}

/*コンテンツin（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents-in {
	width: 785px;
	margin-right: auto;
	margin-left: auto;
	float: left;
}
/*2カラム時*/
body.c2 #contents-in {
	float: none;
	width: 100%;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	width: 570px;	/*メインコンテンツ幅*/
	padding-bottom: 15px;
	float: right;
}
/*ZEH用
---------------------------------------------------------------------------*/
#main-z {
	width: 100%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
	float: right;
}
/*CONTACT用
---------------------------------------------------------------------------*/
#main-c {
	width: 700px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
	margin-right: auto;
	margin-left: auto;
}
/*2カラム時*/
body.c2 #main {
	width: 782px;	/*メインコンテンツ幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	background-color: #57bff0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#81d2ef), to(#57bff0));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#81d2ef, #57bff0);	/*同上*/
	background-image: linear-gradient(#81d2ef, #57bff0);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 10px;	/*左から、上下、左右への余白*/
	clear: both;
}
#main-c h2 {
	background-color: #57bff0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#75c9f0), to(#57bff0));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#75c9f0, #57bff0);	/*同上*/
	background-image: linear-gradient(#75c9f0, #57bff0);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 10px;	/*左から、上下、左右への余白*/
	clear: both;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	font-size: 100%;
	background-color: #ececec;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ececec));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #ececec);	/*同上*/
	background-image: linear-gradient(#FFF, #ececec);	/*線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影。右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;			/*同上*/
	padding: 3px 10px 3px 7px;	/*上、右、下、左への余白*/
	color: #006;		/*左の線の幅、線種、色*/
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 3px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #cfcfcf;
	border-right-color: #cfcfcf;
	border-bottom-color: #cfcfcf;
	border-left-color: #006;
}
#main-z h3 {
	font-size: 100%;
	background-color: #ececec;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ececec));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #ececec);	/*同上*/
	background-image: linear-gradient(#FFF, #ececec);	/*線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影。右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;			/*同上*/
	padding: 3px 10px 3px 7px;	/*上、右、下、左への余白*/
	color: #006;		/*左の線の幅、線種、色*/
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 3px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #cfcfcf;
	border-right-color: #cfcfcf;
	border-bottom-color: #cfcfcf;
	border-left-color: #006;
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
	line-height: 1.8em;
}
#main-c p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}
#main-z p {
	font-size: 12px;
	line-height: 1.5em;
	padding-top: 0.5em;
	padding-right: 10px;
	padding-bottom: 1em;
	padding-left: 10px;
}


/*サブコンテンツ、サイドコンテンツ
---------------------------------------------------------------------------*/
/*サブコンテンツ（左側ブロック）*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 200px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*サイドコンテンツ（右側ブロック）*/
#side {
	float: right;
	width: 200px;
	padding-bottom: 5px;
}
/*2カラム時にサイドコンテンツを非表示にする設定*/
body.c2 #side {
	display: none;
}
/*sub,sideコンテンツ内のh2タグ設定*/
#sub h2,
#side h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f2f2f2, #FFF);	/*同上*/
	background-image: linear-gradient(#f2f2f2, #FFF);		/*左の線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影。右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;			/*同上*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #006;	/*文字色*/
	border-top-width: 3px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #006;
	border-right-color: #cfcfcf;
	border-bottom-color: #cfcfcf;
	border-left-color: #cfcfcf;
}
/*sub,sideコンテンツ内のbox1設定*/
#sub .box1,
#side .box1 {
	background-color: #eeeeee;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#eeeeee));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f9f9f9, #eeeeee);	/*同上*/
	background-image: linear-gradient(#f9f9f9, #eeeeee);			/*同上*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 0px 1px #FFF inset;	/*内側への影。右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;			/*同上*/
	padding: 5px;	/*ボックス内の余白*/
	margin-bottom: 1em;	/*ボックスの下にあけるスペース*/
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#side h2 + ul,
#sub h2 + .box1,
#side h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul,
#side .box1 > ul {
	margin-bottom: 0;
}
#side h4 {
	font-size: 13px;		/*文字サイズ*/
	text-align: center;		/*中央寄せ*/
	background-color: #FFF;
}

/*sub,sideコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul,
#side ul {
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 1em;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a,
#side ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background: #FFF;	/*背景色*/
}
/*マウスオン時の設定*/
#sub ul li a:hover,
#side ul li a:hover {
	background-color: #57bff0;	/*背景色*/
	color: #FFF;	/*文字色*/
}

#sub .fb {
	padding-left: 15px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;	/*背景色*/
	background-color: #666;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	position: relative;
	margin-bottom: 25px;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 1em;		/*ボックス間のスペース*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
}
#main section.list article a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
#main section.list article a:hover {
	background-color: #FFF;	/*マウスオン時のボックス色*/
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #57bff0;	/*文字色*/
}

/*トップページ内「イベント情報」ブロック
---------------------------------------------------------------------------*/
#event p {
	clear: both;
	margin-left: 5px;
}

#event a {
	color: #285294;	/*リンクテキストの色*/
	font-size:12px;
	margin-left: 10px;
}
#event a:hover {
	color: #57bff0;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

#event-text01 {
	float: left;
	width: 500px;
	color: #666;
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
}

#event-text01 p {
	text-align: center;
}

#event-img01 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 10px;
	padding: 10px;
	width: 500px;
}
#event-img {
	float: right;
	margin-right: 15px;
	width: 160px;
	text-align: center;
	margin-top: 10px;
}
#event-text2 {
	clear: both;
	color: #333;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333;
	text-align: center;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #333;
}
#event-textC {
	text-align: center;
	margin-bottom: 20px;
	margin-top: 10px;
	clear: both;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333;
}
#event-textC a {
	font-size:14px;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 130px;
	padding-left: 10px;
}
/*日付設定*/
#new dt {
	padding-top:7px;
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em
}
/*記事設定*/
#new dd {
	padding-top:7px;
	padding-bottom:7px;
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 160px;
	padding: 10px;
	text-align: center;
	background-color: #f8f9fb;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #f5f5f5;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #57bff0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#75c9f0), to(#57bff0));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#75c9f0, #57bff0);	/*同上*/
	background-image: linear-gradient(#75c9f0, #57bff0);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 14px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	border: none;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #75c9f0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#57bff0), to(#75c9f0));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#57bff0, #75c9f0);	/*同上*/
	background-image: linear-gradient(#57bff0, #75c9f0);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #666;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.mb05em {
	margin-bottom: 0.5em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #f61468;
}
.big1 {
	color: #f61468;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: bold;
}
.pr {
	font-size: 10px;
}
.pr2 {
	font-size: 11px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.mini1 {
	font-size: 12px;
	line-height: 1.5;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
}
#menubar_hdr {
	display: none;
}

#renewal {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	color: #333;
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-bottom: 30px;
	clear: both;
	padding-right: 40px;
	padding-left: 30px;
	background-image: none;
	background-repeat: no-repeat;
	background-size: contain;
	margin-bottom: 20px;
	background-position: 20px;
}

/*ZEH用
-----------------------------------------------------*/
#contents-zeh {
	width: 977px;
	padding: 10px;
	clear: left;
}
#zeh-s1 {
	float: left;
	width: 235px;
	height:153px;
	background-image: url(../images/zeh-1.png);
	background-repeat: no-repeat;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #960;
	text-align: center;
	padding-top: 265px;
	padding-left: 20px;
}
#zeh-s2 {
	float: left;
	width: 233px;
	height:153px;
	background-image: url(../images/zeh-2.png);
	background-repeat: no-repeat;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #960;
	text-align: center;
	padding-top: 265px;
	margin-left: 5px;
}
#zeh-s3 {
	float: left;
	width: 233px;
	height:153px;
	background-image: url(../images/zeh-3.png);
	background-repeat: no-repeat;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #960;
	text-align: center;
	padding-top: 265px;
	margin-left: 5px;
}
#zeh-s4 {
	float: left;
	width: 233px;
	height:153px;
	background-image: url(../images/zeh-4.png);
	background-repeat: no-repeat;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #960;
	text-align: center;
	padding-top: 265px;
	margin-left: 5px;
}
.zeh-b {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	line-height: 1.5em;
}
.zeh-s {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 8px;
	line-height: 2em;
	margin-top: 5px;
	margin-bottom: 30px;
}
.right {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 9px;
	color: #960;
	text-align: right;
	clear: both;
	margin-bottom: 10px;
}
#zehfoot {
	text-align: left;
	height: 200px;
	margin: 0px;
}
#contents-zeh img {
	margin-top: 5px;
	margin-left: 350px;
}
#zeh-bro {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
}

#sns_btn {
	width: 200px;
	text-align: center;
	float:right;
}

/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	display: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	text-align: center;
}
/*h1ロゴの設定*/
header h1 {
	padding: 20px 0px 20px 0px;	/*上、右、下、左側へあける余白*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	border-top: 1px solid #dcdcdc;	/*メニューブロックの上側の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 50%;	/*メニュー幅*/
	margin-bottom: 0;
	border-bottom: 1px solid #dcdcdc;	/*メニューの下側の線の幅、線種、色*/
	box-sizing: border-box;
}
nav#menubar ul li a {
	padding: 10px 0px;	/*メニュー内の余白。上下、左右。*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: none;
}
/*奇数番目のメニューの設定*/
nav#menubar ul li:nth-child(odd) {
	border-left: 1px solid #dcdcdc;	/*奇数番目のメニューの左側へ入れる線の設定*/
}
/*英語表記の設定*/
nav#menubar ul li a span {
	display: none;	/*表示させない設定*/
}
/*最後のメニューの設定*/
nav#menubar ul li:last-child {
	margin-bottom: 20px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*contents-in,main,subコンテンツ
---------------------------------------------------------------------------*/
#contents-in, #main, body.c2 #main, #sub {
	float: none;
	width: auto;
}

/*sideコンテンツ
---------------------------------------------------------------------------*/
#side {
	display: none;	/*表示させない設定*/
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}

/*ZEH用
---------------------------------------------------------------------------*/
#contents-zeh {
	width:100%;
}

#event-img {
	display:none;
}

#sns_btn {
	clear:both;
	float:none;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	display: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	text-align: center;
}
/*h1ロゴの設定*/
header h1 {
	padding: 20px 0px 20px 0px;	/*上、右、下、左側へあける余白*/
}
header h1 img {
	width: 70%;	/*画面に対して画像を70％の幅に*/
	height: auto;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	border-top: 1px solid #dcdcdc;	/*メニューブロックの上側の線の幅、線種、色*/
	margin-bottom: 20px;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: none;
	width: 100%;	/*メニュー幅*/
	margin-bottom: 0;
	border-right: none;
	border-bottom: 1px solid #dcdcdc;	/*メニューの下側の線の幅、線種、色*/
	box-sizing: border-box;
}
nav#menubar ul li a {
	padding: 10px 0px;	/*メニュー内の余白。上下、左右。*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: none;
}
/*英語表記の設定*/
nav#menubar ul li a span {
	display: none;	/*表示させない設定*/
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*contents-in,main,subコンテンツ
---------------------------------------------------------------------------*/
#contents-in, #main, body.c2 #main, #sub {
	float: none;
	width: auto;
}

/*sideコンテンツ
---------------------------------------------------------------------------*/
#side {
	display: none;	/*表示させない設定*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../../tp_biz26_skyblue/images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#75c9f0), to(#57bff0));
	background: url(../../tp_biz26_skyblue/images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#75c9f0, #57bff0);
	background: url(../../tp_biz26_skyblue/images/btn_minus.png) no-repeat right center, linear-gradient(#75c9f0, #57bff0);
}
section#new h2.close {
	background: url(../../tp_biz26_skyblue/images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#75c9f0), to(#57bff0));
	background: url(../../tp_biz26_skyblue/images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#75c9f0, #57bff0);
	background: url(../../tp_biz26_skyblue/images/btn_plus.png) no-repeat right center, linear-gradient(#75c9f0, #57bff0);
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	padding-left: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*service.html内の一覧の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list article p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list article figure img {
	width: 40%;
	height: auto;
	margin-right: 5px;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}

/*ZEHの設定
---------------------------------------------------------------------------*/
#contents-zeh {
	width:100%;
}

#zeh-s1 {
	float:none;
	margin-left:auto;
	margin-right:auto;
}

#zeh-s2 {
	float:none;
	margin-left:auto;
	margin-right:auto;
}

#zeh-s3 {
	float:none;
	margin-left:auto;
	margin-right:auto;
}

#zeh-s4 {
	float:none;
	margin-left:auto;
	margin-right:auto;
}
table.z-table01 thead {
	display:none;
}
table.z-table01 tbody th {
	display:block;
}
table.z-table01 tbody td {
	display:block;
}
table.z-table01 tbody td::before {
	content:attr(label);
	float:left;
	clear:both;
	font-weight:bold;
}
table.z-table01 tbody td p {
	padding-left:6em;
}
table.z-table02 thead {
	display:none;
}
table.z-table02 tbody th {
	display:block;
}
table.z-table02 tbody td {
	display:block;
}
table.z-table02 tbody td::before {
	content:attr(label);
	float:left;
	clear:both;
	font-weight:bold;
}
table.z-table02 tbody td p {
	padding-left:6em;
}

#event-text01 {
	clear:both;
	float:none;
	width:auto;
}

#event-img {
	display:none;
}

#sns_btn {
	clear:both;
	float:none;
}

}
/*----ここまでスマホ用設定----*/

.z-center {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	color: #630;
	text-align: center;
	font-style: italic;
}

.z-center a {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	color: #630;
	text-align: center;
	font-style: italic;
}

.z-center a:hover {
	color: #630;
}

#z-title {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #039;
	text-decoration: underline;
	text-align: center;
	padding-bottom: 10px;
}

#z-main-sentence {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	color: #333;
	margin-right: 50px;
	margin-left: 50px;
	margin-bottom: 30px;
}

table.z-table01 {
    width: 78%;
    border-right: #3eb1c6 solid 1px;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

table.z-table01 thead th {
	background:#3eb1c6;
	color:#FFF;
	padding:10px 15px;
	border-right:#FFF solid 1px;
	border-bottom:#FFF solid 1px;
}

table.z-table01 thead th:last-child {
	border-right:#3eb1c6 solid 1px; 
}

table.z-table01 tbody th {
	background: #3eb1c6;
	color:#FFF;
	padding:10px 15px;
	border-bottom:#FFF solid 1px;
	vertival-align:top;
}

table.z-table01 tbody tr:last-child th {
	border-bottom:#3eb1c6 solid 1px;
}

table.z-table01 tbody td{
	background: #FFF;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	border-left: #3eb1c6 solid 1px;
	border-bottom: #3eb1c6 solid 1px;
	vertical-align: top;
}

table.z-table02 {
    width: 78%;
    border-right: steelblue solid 1px;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

table.z-table02 thead th {
	background:steelblue;
	color:#FFF;
	padding:10px 15px;
	border-right:#FFF solid 1px;
	border-bottom:#FFF solid 1px;
}

table.z-table02 thead th:last-child {
	border-right:steelblue solid 1px; 
}

table.z-table02 tbody th {
	background: steelblue;
	color:#FFF;
	padding:10px 15px;
	border-bottom:#FFF solid 1px;
	vertival-align:top;
}

table.z-table02 tbody tr:last-child th {
	border-bottom:steelblue solid 1px;
}

table.z-table02 tbody td{
	background: #FFF;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	border-left: steelblue solid 1px;
	border-bottom: steelblue solid 1px;
	vertical-align: top;
}

#z-lux {
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #333;
	text-align: center;
	margin-bottom: 50px;
}

#z-lux img {
	border: 1px solid #CCC;
	padding: 10px;
}

/*facebookボタンお試し用*/
.fb_btn {
	color: #FFF;
	border-radius: 3px;
	position: relative;
	display: inline-block;
	height: 30px;
	width: 98px;
	text-align: center;
	font-size: 10px;
	line-height: 30px;
	vertical-align: middle;
	background: #3b5998;
	overflow: hidden;
	text-decoration: none;
	float:left;
}

/*instagramボタンお試し用*/
.insta_btn2 {
	color: #FFF;
	border-radius: 3px;
	position: relative;
	display: inline-block;
	height: 30px;
	width: 98px;
	text-align: center;
	font-size: 10px;
	line-height: 30px;
	vertical-align: middle;
	background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%)no-repeat;
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%)no-repeat;
	overflow: hidden;
	text-decoration: none;
	margin-bottom: 5px;
	margin-left:3px;
	float:left;
}

.insta_btn2:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76)25%, rgba(255,77,64,0)50%)no-repeat;
}

.fb_btn .fa-facebook {
	font-size: 20px;
	position: relative;
	top:3px;
}

.insta_btn2 .fa-instagram {
	font-size: 20px;
	position: relative;
	top:3px;
}

.fb_btn span, .insta_btn2 span {
	display: inline-block;
	position: relative;
	transition: .5s
}

.fb_btn:hover, .insta_btn2:hover {
	color: #FFF;	
}

.fb_btn:hover span, .insta_btn2:hover span {
	-webkit-transform: rotateX(360deg);
	-ms-transform: rotateX(360deg);
	transform: rotateX(360deg);
}

.square_btn {
	display: inline-block;
	text-decoration: none;
	background: #f7f7f7;
	color: #663333;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.29);
	float: right;
	margin-top: 5px;
	margin-bottom: 50px;
	padding-top: 0.2em;
	padding-right: 1em;
	padding-bottom: 0.2em;
	padding-left: 1em;
	border-left-width: 6px;
	border-left-style: solid;
	border-left-color: #663333;
	margin-right: 80px;
}

.square_btn2 {
	display: inline-block;
	text-decoration: none;
	background: #f7f7f7;
	color: #57bff0;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.29);
	float: right;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right:2px;
	padding-top: 0.2em;
	padding-right: 1em;
	padding-bottom: 0.2em;
	padding-left: 1em;
	border-left-width: 6px;
	border-left-style: solid;
	border-left-color: #57bff0;
}

.square_btn:hover {
	color:#cc9966;
}

.square_btn2:hover {
	color:#94d2ef;
}

.square_btn:active{
	box-shadow: inset 0 0 2px rgba(128,128,128,0.1);
	transform: translateY(2px);
}

.square_btn2:active{
	box-shadow: inset 0 0 2px rgba(128,128,128,0.1);
	transform: translateY(2px);
}
