@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	background-color: #FFF;	/*全体の背景色*/
	/* background-image: url(../images/bg.gif);	*背景画像の読み込み*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ/行間、フォントファミリー*/
}
h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 989px;	/*コンテナー幅*/
	margin: 0px auto;
	background: #FFF;	/*背景色*/
	border-top: 1px solid #d2d2d2;		/*上の線の幅、線種、色*/
	border-right: 1px solid #d2d2d2;	/*右の線の幅、線種、色*/
	border-bottom: 1px solid #d2d2d2;	/*下の線の幅、線種、色*/
	border-left: 1px solid #d2d2d2;		/*左の線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 8px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 0px 8px #999;			/*同上*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 50px;	/*ヘッダーの高さ*/
	width: 100%;	/*ヘッダーの幅*/
	position: relative;
	background-color: #FFF;
}
/*h1タグの設定*/
header h1 {
	background-color:  #34c7e6;
	font-size: 9px;		/*文字サイズ*/
	line-height: 13px;	/*行間*/
	/* position: absolute;
	top: 0px;			/*ヘッダーブロックに対して上から34pxの位置に配置*
	right: 34px;			*ヘッダーブロックに対して右から34pxの位置に配置*/
	/* font-weight: normal;	/* hタグのデフォルトの太字を標準に。太字がいいならこの１行削除。*/
	color: #fff;	/*文字色*/
	text-align: right;
	padding-right: 20px
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: 20px;	/*ヘッダーブロックに対して左から20pxの位置に配置*/
	top: 20px;	/*ヘッダーブロックに対して上から24pxの位置に配置*/
}
/*言語表示の設定(header)*/
header section.lang_chg {
	float: right;
	font-size: 14px;	/*文字サイズ*/
	display: block;
	font-weight: bold;
	padding: 0px;
	margin-top: 20px;
	margin-right: 2em;
	background-color: #34c7e6;
}

header section.lang_chg a {
	padding: 0px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	height: auto;
	overflow: hidden;
	color: #FFF;	/*文字色*/
	padding: 0px 15px;
}
/*マウスオン時*/
header section.lang_chg a:hover {
	background-color: #FFF;	/*背景色*/
	color: #34c7e6;	/*文字色*/
}

/*言語表示の設定02(header)*/
header section.lang_chg2 {
	float: right;
	font-size: 14px;	/*文字サイズ*/
	display: block;
	font-weight: bold;
	padding: 0px;
	margin-top: 20px;
	margin-right: 2em;
	background-color: #FFF;
}

header section.lang_chg2 a {
	padding: 0px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	height: auto;
	overflow: hidden;
	color: #34c7e6;	/*文字色*/
	padding: 0px 15px;
}
/*マウスオン時*/
header section.lang_chg2 a:hover {
	background-color: #34c7e6;	/*背景色*/
	color: #FFF;	/*文字色*/
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 164px;	/*幅*/
	border-top: 1px solid #d2d2d2;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #d2d2d2;	/*下の線の幅、線種、色*/
	border-left: 1px solid #d2d2d2;		/*左側の線の幅、線種、色*/
}
nav#menubar ul li a {
	height: 46px;	/*高さ*/
	padding-top: 12px;
	line-height: 1.4;
	text-decoration: none;
	display: block;
	font-size: 14px;	/*文字サイズ*/
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	letter-spacing: 0.1em;		/*文字間隔を少し広めにとる設定。*/
	text-align: center;	/*文字をセンタリング*/
	background-color: #fff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fff, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#fff, #e5e5e5);			/*同上*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: none;	/*左側の線を消す設定*/
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li#current a {
	background: #eaf9fc url(../images/menu_bg_on.png) no-repeat left center;	/*背景色、背景画像の読み込み*/
}
/*英語表記の設定*/
nav#menubar ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;
	color: #34c7e6;			/*文字色*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
}
#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;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 950px;	/*コンテンツ幅*/
	padding-top: 30px;
	margin: 0px auto;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	background-color: #24b6dd;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/midashi_bg1.png) no-repeat left center, -webkit-gradient(linear, left top, left bottom, from(#4dd1eb), to(#24b6dd));	/*背景画像の読み込みとグラデーション*/
	background: url(../images/midashi_bg1.png) no-repeat left center, -webkit-linear-gradient(#4dd1eb, #24b6dd);	/*同上*/
	background: url(../images/midashi_bg1.png) no-repeat left center, linear-gradient(#4dd1eb, #24b6dd);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	font-size: 100%;
	color: #FFF;		/*文字色*/
	padding: 7px 15px 7px 30px;	/*左から、上、右、下、左への余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	clear: both;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/* background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f4f4f4));	*グラデーション*/
	/* background-image: -webkit-linear-gradient(#FFF, #e8e8e8);	*同上*/
	/* background-image: linear-gradient(#FFF, #e8e8e8);			*同上*/
	-webkit-box-shadow: 1px 2px 5px #e2e2e2;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #e2e2e2;			/*同上*/
	font-size: 140%;
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	clear: both;
	white-space: pre;
	/* border: 1px solid #CCC;	*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグ内　英語表記の設定*/
#main h3 span {
	float: right;
	font-size: 12px;	/*文字サイズ*/
	display: block;
	font-weight: normal;
	padding: 1em;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 1em 1em 1em;	/*左から、上、左右、下への余白*/
	overflow: hidden;
}
/*mainコンテンツ内の写真設定*/
#main figure img {
	float: left;			/*画像を左へ回り込み*/
	margin: 1em 1em 0.5em 2em;	/*左から、上、右、下、左への余白*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 35%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	text-align: center;
	-webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
    transition: all 2s ease;
}
/*mainコンテンツ内の写真設定*/
#main figure2 img {
	margin: 0.5em;	/*左から、上、右、下、左への余白*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: auto;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	/*text-align: center;*/
	-webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
    transition: all 2s ease;
}
/*mainコンテンツ内の写真設定*/
#main picture img {
	/* margin: 0.5em;	*左から、上、右、下、左への余白*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: auto;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	/*text-align: center;*
	-webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
    transition: all 2s ease; */
}

/* ボックス内のキャプション設定　*/
#main figure2 figcaption {
	font-size: 75%;
	margin: 0.5m 0em;
}
/*ボックス内h1-h6タグ内　sub-title表記の設定*/
#main section span2 {
	float: right;
	font-size: 12px;	/*文字サイズ*/
	display: block;
	font-weight: bold;
	padding: 2px;
	margin-right: 0.5em;
}
#main section span2 a {
	padding: 0px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	height: auto;
	overflow: hidden;
}
/*マウスオン時*/
#main section span2 a:hover.clor {
	background-color: #df8c09;	/*背景色*/
	color: #FFF;	/*文字色*/
}
#main section span2 a:hover.clsb {
	background-color: #34c7e6;	/*背景色*/
	color: #FFF;	/*文字色*/
}
#main section span2 a:hover.clob {
	background-color: #0078c5;	/*背景色*/
	color: #FFF;	/*文字色*/
}
/*パンくずリスト
---------------------------------------------------------------------------*/
.breadcrumb {
	margin-left: 0;
	padding-left: 0;
}

.breadcrumb li{
	display:inline;/*横に並ぶように*/
	list-style: none;
	font-weight: bold;/*太字*/
	font-size: 90%;
}

.breadcrumb li:after{/* 矢印を表示*/
	font-family: FontAwesome;
	content: '\f0da';
	padding: 0 3px;
	color: silver;
	font-size: 1.1em;
}

.breadcrumb li:last-child:after{
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #888;
}

.breadcrumb li:first-child a:before{/*家アイコン*/
	font-family: FontAwesome;
	content: '\f015';
	font-weight: normal;
	font-size: 1.1em;
	color: #34c7e6;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}

/*メインコンテンツ内のバナー枠
---------------------------------------------------------------------------*/
/*バナー枠の設定*/
#main section.list2 section {
	/*border: 1px solid #CCC;	*枠線の幅、線種、色*/
	margin: 5px 5px 15px ;	/*ボックスの上、左右、下に空けるスペース*/
	/*background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#eaf9fc));	グラデーション*/
	/*background-image: -webkit-linear-gradient(#FFF, #eaf9fc);  同上*/
	/*background-image: linear-gradient(#FFF, #eaf9fc);  	   同上*/
	/*-webkit-box-shadow: 0px 2px 5px #CCC;	影の設定。右・下・ぼかし幅・色の設定*/
	/*box-shadow: 0px 2px 5px #CCC;			同上*/
	display: flex;   /* boxレイアウトの指定 */
	justify-contents: center;
	/*display: -webkit-box;
	display: -moz-box;*/

	box-pack: center;    * 配置したボックスを等間隔自動配列にする */
	-webkit-box-pack: center;
	-moz-box-pack: center;
}
/* #main section.list2 section a {
	padding: 10px;	*ボックス内の余白*
	text-decoration: none;
	display: block;
	overflow: hidden;
} */

/*メインコンテンツ内のbox31
---------------------------------------------------------------------------*/
#main .box31 article{
	/* width:30%; */
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	/*padding: 10px;			ボックス内の余白*/
	margin: 15px 10px;	/*ボックスの下に空けるのスペース*/
	/* background-color: #FFF;	*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#c5e8ff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #c5e8ff);	/*同上*/
	background-image: linear-gradient(#FFF, #c5e8ff);			/*同上*/
	/*-webkit-box-shadow: 0px 0px 1px #FFF inset;	内側への影を右・下・ぼかし幅・距離・色を設定*/
	/*box-shadow: 0px 0px 0px 1px #FFF inset;		同上*/
	border-radius: 6px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	position: relative;		/*位置決め*/
	display: block;
}
#main .box31 article a {
	display: block;
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	overflow: hidden;
}
/*マウスオン時*/
#main .box31 article a:hover {
	background-color: #fff;	/*背景色*/
}
/*mainコンテンツの段落タグ設定*/
#main .box31 article p {
	/* padding: 0.5em 0px 0em 5px;	*左から、上、左、右、下への余白*/
	clear: both;
	position: relative;
	padding: 0px;
    line-height: 1.4em;
    height: 4.2em;				/* 3 times the line-height to show 3 lines */
	overflow: hidden;
	display: block;
	z-index: 1;
}
#main .box31 article p::after{
	position: absolute;
	display: block;
	content: "...";
	line-height: 1.4em;
	width: 1.4em;
	height: 1.4em;
    font-weight: bold;
    bottom: 0;
    right: 0;
    padding: 0px 0px 4px 0px;
    background: #c5e8ff;
	z-index: 2;
}
/*sub3コンテンツ内のh5タグ設定*/
#main .box31 article h5 {
	font-size: 130%;
	padding: 5px 10px;		/*左から、上下、左右への余白*/
	background: #eee;		/*背景色*/
	border-bottom: 1px solid #d2d2d2;	/*下部の線の幅、線種、色*/
	border-top: 5px solid #0078c5;		/*上部の線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	color: #666;	/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.2;
}
/*sub3_h5内の英語表記の設定*/
#main .box31 article h5 span {
	font-size: 12px;	/*文字サイズ*/
	display: block;
	font-weight: normal;
	color: #0078c5;			/*文字色*/
}
/*ボックス内のh6タグ設定*/
#main .box31 article h6 {
	clear: both;
	display: block;
	padding: 2px 0px 2px 5px;	/*左から、上、右、下、左側への余白*/
	font-size: 78%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #0078c5;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.4em;
	margin-top: 0px;
	color: #0078c5;	/*文字色*/
}
/*sub3内の写真設定*/
#main .box31 article figure img {
	/* float: left;		画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 93%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	display: block;
 	margin-left: auto;
 	margin-right: auto;
	margin-bottom: 5px;
}

/*メインコンテンツ内のbox32
---------------------------------------------------------------------------*/
#main .box32 article{
	/* width:30%; */
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	/*padding: 10px;			ボックス内の余白*/
	margin: 15px 10px;	/*ボックスの下に空けるのスペース*/
	/* background-color: #FFF;	*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#eaf9fc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #eaf9fc);	/*同上*/
	background-image: linear-gradient(#FFF, #eaf9fc);			/*同上*/
	/*-webkit-box-shadow: 0px 0px 1px #FFF inset;	内側への影を右・下・ぼかし幅・距離・色を設定*/
	/*box-shadow: 0px 0px 0px 1px #FFF inset;		同上*/
	border-radius: 6px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	position: relative;		/*位置決め*/
	display: block;
}
#main .box32 article a {
	display: block;
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	overflow: hidden;
}
/*マウスオン時*/
#main .box32 article a:hover {
	background-color: #fff;	/*背景色*/
}
/*mainコンテンツの段落タグ設定*/
#main .box32 article p {
	/* padding: 0.5em 0px 0em 5px;	*左から、上、左、右、下への余白*/
	clear: both;
	position: relative;
	padding: 0px;
    line-height: 1.4em;
    height: 4.2em;				/* 3 times the line-height to show 3 lines */
	overflow: hidden;
	display: block;
	z-index: 1;
}
#main .box32 article p::after{
	position: absolute;
	display: block;
	content: "...";
	line-height: 1.4em;
	width: 1.4em;
	height: 1.4em;
    font-weight: bold;
    bottom: 0;
    right: 0;
    padding: 0px 0px 4px 0px;
    background: #eaf9fc;
	z-index: 2;
}
/*sub3コンテンツ内のh5タグ設定*/
#main .box32 article h5 {
	font-size: 130%;
	padding: 5px 10px;		/*左から、上下、左右への余白*/
	background: #eee;		/*背景色*/
	border-bottom: 1px solid #d2d2d2;	/*下部の線の幅、線種、色*/
	border-top: 5px solid #34c7e6;		/*上部の線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	color: #666;	/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.2;
}
/*sub3_h5内の英語表記の設定*/
#main .box32 article h5 span {
	font-size: 12px;	/*文字サイズ*/
	display: block;
	font-weight: normal;
	color: #34c7e6;			/*文字色*/
}
/*ボックス内のh6タグ設定*/
#main .box32 article h6 {
 	clear: both;
	display: block;
	padding: 2px 0px 2px 5px;	/*左から、上、右、下、左側への余白*/
	font-size: 80%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #34c7e6;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.4em;
	margin-top: 0px;
	color: #34c7e6;	/*文字色*/
}
/*sub3内の写真設定*/
#main .box32 article figure img {
	/* float: left;		画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 93%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	display: block;
 	margin-left: auto;
 	margin-right: auto;
	margin-bottom: 5px;
}

/*メインコンテンツ内のbox33
---------------------------------------------------------------------------*/
#main .box33 article{
	/* width:30%; */
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	/*padding: 10px;			ボックス内の余白*/
	margin: 15px 10px;	/*ボックスの下に空けるのスペース*/
	/* background-color: #FFF;	*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#fffbcc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #fffbcc);	/*同上*/
	background-image: linear-gradient(#FFF, #fffbcc);			/*同上*/
	/*-webkit-box-shadow: 0px 0px 1px #FFF inset;	内側への影を右・下・ぼかし幅・距離・色を設定*/
	/*box-shadow: 0px 0px 0px 1px #FFF inset;		同上*/
	border-radius: 6px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	position: relative;		/*位置決め*/
	display: block;
}
#main .box33 article a {
	display: block;
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	overflow: hidden;
}
/*マウスオン時*/
#main .box33 article a:hover {
	background-color: #fff;	/*背景色*/
}
/*mainコンテンツの段落タグ設定*/
#main .box33 article p {
	/* padding: 0.5em 0px 0em 5px;	*左から、上、左、右、下への余白*/
	clear: both;
	position: relative;
	padding: 0px;
    line-height: 1.4em;
    height: 4.2em;				/* 3 times the line-height to show 3 lines */
	overflow: hidden;
	display: block;
	z-index: 1;
}
#main .box33 article p::after{
	position: absolute;
	display: block;
	content: "...";
	line-height: 1.4em;
	width: 1.4em;
	height: 1.4em;
    font-weight: bold;
    bottom: 0;
    right: 2px;
    padding: 0px 0px 4px 0px;
    background: #fffbcc;
	z-index: 2;
}
/*sub3コンテンツ内のh5タグ設定*/
#main .box33 article h5 {
	font-size: 130%;
	padding: 5px 10px;		/*左から、上下、左右への余白*/
	background: #eee;		/*背景色*/
	border-bottom: 1px solid #d2d2d2;	/*下部の線の幅、線種、色*/
	border-top: 5px solid #df8c09;		/*上部の線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	color: #666;	/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.2;
}
/*sub3_h5内の英語表記の設定*/
#main .box33 article h5 span {
	font-size: 12px;	/*文字サイズ*/
	display: block;
	font-weight: normal;
	color: #df8c09;			/*文字色*/
}
/*ボックス内のh6タグ設定*/
#main .box33 article h6 {
	clear: both;
	display: block;
	padding: 2px 0px 2px 5px;	/*左から、上、右、下、左側への余白*/
	font-size: 78%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #df8c09;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.4em;
	margin-top: 0px;
	color: #df8c09;	/*文字色*/
}
/*sub3内の写真設定*/
#main .box33 article figure img {
	/* float: left;		画像を左へ回り込み*/
	clear: both;
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 93%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	display: block;
 	margin-left: auto;
 	margin-right: auto;
	margin-bottom: 5px;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list section {
	border: 3px double #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	/* 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;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 2px 5px #CCC;			/*同上*/
}
#main section.list section a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時*/
#main section.list section a:hover {
	background-color: #fff;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
#main section.list section p {
	display: block;
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list section figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 30%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
}
/*ボックス内のh4タグ設定(SkyBlue)*/
#main section.list section h4 {
	padding: 2px 0px 2px 10px;	/*左から、上、右、下、左側への余白*/
	font-size: 120%;
	border-bottom: 1px solid #34c7e6;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #34c7e6;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #34c7e6;	/*文字色*/
	/* text-shadow: 1px 1px 3px rgba(0,0,0,0.3); */
}
/*ボックス内のh5タグ設定(OceanBlue)*/
#main section.list section h5 {
	padding: 2px 0px 2px 10px;	/*左から、上、右、下、左側への余白*/
	font-size: 120%;
	border-bottom: 1px solid #0078c5;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #0078c5;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #0078c5;	/*文字色*/
	/* text-shadow: 1px 1px 3px rgba(0,0,0,0.3); */
}
/*ボックス内のh6タグ設定(Orang)*/
#main section.list section h6 {
	padding: 2px 0px 2px 10px;	/*左から、上、右、下、左側への余白*/
	font-size: 120%;
	border-bottom: 1px solid #df8c09;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #df8c09;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #df8c09;	/*文字色*/
	/* text-shadow: 1px 1px 3px rgba(0,0,0,0.3); */
}
/*service2.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/* ボックス内の設定 */
#main section.list3 {
	clear: both;
}
/* ボックス内の設定 */
#main section.list4 {
	clear: both;
}
/* ボックス内の設定 */
#main section.list5 {
	clear: both;
}
/*ボックス内の段落タグ設定*/
#main section.list3 p {
	display: block;
	padding: 0.5em 0em 2em;
	margin-right: 50%;	/*左の写真とのバランスをとって設定*/
	margin-left: 1em;
	overflow: hidden;
	line-height: 1.6em;
}
/*ボックス内の段落タグ設定*/
#main section.list31 p {
	display: block;
	padding: 0.5em 0em 2em;
	margin-right: 50%;	/*左の写真とのバランスをとって設定*/
	margin-left: 2em;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.list5 p {
	display: block;
	padding: 0.5em 0em 2em;
	margin-right: 1em;	/*左の写真とのバランスをとって設定*/
	margin-left: 45%;
	overflow: hidden;
	line-height: 1.6em;
}
/*ボックス内のh6タグ設定(Orang)*/
#main section.list4 section h6 {
	padding: 2px 0px 2px 10px;	/*左から、上、右、下、左側への余白*/
	font-size: 120%;
	border-bottom: 1px solid #df8c09;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #df8c09;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #df8c09;	/*文字色*/
	/* text-shadow: 1px 1px 3px rgba(0,0,0,0.3); */
}
/*ボックス内の写真設定*/
#main section.list3 figure img {
	float: right;
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 50%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	margin-right: 0px;
	margin-left: 10px;
	text-align: center;
	-webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
    transition: all 2s ease;
}
/*ボックス内の写真設定*/
#main section.list31 figure img {
	float: right;
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 40%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	margin-right: 10px;
	margin-left: 20px;
	-webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
    transition: all 2s ease;
}
/*ボックス内の写真設定*/
#main section.list4 figure img {
	clear: both;
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: auto;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	margin-right: 1em;
	margin-left: 10px;
	text-align: center;
	-webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
    transition: all 2s ease;
}
/*ボックス内の写真設定*/
#main section.list5 figure img {
	float: left;
	display: block;
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 45%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	margin-right: 20px;
	margin-left: 10px;
	text-align: center;
	-webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
    transition: all 2s ease;
}
/* ボックス内のキャプション設定　*/
#main section.list3 figure figcaption {
	font-size: 75%;
	margin: 0.5m 0em;
}

/*introduction.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list6 section {
	border: 3px double #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	/* 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;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 2px 5px #CCC;			/*同上*/
}

#main section.list6 section a {
	padding: 0px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	height: auto;
	overflow: hidden;
}
/*マウスオン時*/
#main section.list6 section a:hover.clor {
	background-color: #df8c09;	/*背景色*/
	color: #FFF;	/*文字色*/
}
#main section.list6 section a:hover.clsb {
	background-color: #34c7e6;	/*背景色*/
	color: #FFF;	/*文字色*/
}
#main section.list6 section a:hover.clob {
	background-color: #0078c5;	/*背景色*/
	color: #FFF;	/*文字色*/
}
*ボックス内の段落タグ設定*
#main section.list6 section p {
	clear: right;
	display: block;
	padding: 0px;
	margin-left: 40%;	*左の写真とのバランスをとって設定*
	margin-right: 1em;
	margin-bottom: 10px;
} */
/*ボックス内の写真設定*/
#main section.list6 section figure img {
	display: block;
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 30%;		/*写真の幅*/
	height: 30%;	/*写真の高さ*/
	margin: 10px 0px 1em 2em;
}
/*ボックス内のh4タグ設定(SkyBlue)*/
#main section.list6 section h4 {
	padding: 2px 0px 2px 10px;	/*左から、上、右、下、左側への余白*/
	font-size: 120%;
	border-bottom: 1px solid #34c7e6;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #34c7e6;	/*左側の線の幅、線種、色*/
	margin: 10px 1em 0.5em;
	color: #34c7e6;	/*文字色*/
	/* text-shadow: 1px 1px 3px rgba(0,0,0,0.3); */
}
/*ボックス内のh5タグ設定(OceanBlue)*/
#main section.list6 section h5 {
	padding: 2px 0px 2px 10px;	/*左から、上、右、下、左側への余白*/
	font-size: 120%;
	border-bottom: 1px solid #0078c5;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #0078c5;	/*左側の線の幅、線種、色*/
	margin: 10px 1em 0.5em;
	color: #0078c5;	/*文字色*/
	/* text-shadow: 1px 1px 3px rgba(0,0,0,0.3); */
}
/*ボックス内のh6タグ設定(Orang)*/
#main section.list6 section h6 {
	padding: 2px 0px 2px 10px;	/*左から、上、右、下、左側への余白*/
	font-size: 120%;
	border-bottom: 1px solid #df8c09;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #df8c09;	/*左側の線の幅、線種、色*/
	margin: 10px 1em 0.5em;
	color: #df8c09;	/*文字色*/
	/* text-shadow: 1px 1px 3px rgba(0,0,0,0.3); */
}
/*ボックス内h4-h6タグ内　sub-title表記の設定*/
#main section.list6 span2 {
	float: right;
	font-size: 12px;	/*文字サイズ*/
	display: block;
	font-weight: bold;
	padding: 2px;
	margin-right: 0.5em;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 220px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	padding: 15px 10px;		/*左から、上下、左右への余白*/
	background: #eee;		/*背景色*/
	border-bottom: 1px solid #d2d2d2;	/*下部の線の幅、線種、色*/
	border-top: 5px solid #34c7e6;		/*上部の線の幅、線種、色*/
}
/*subコンテンツ内の写真設定*/
#sub figure5 img {
	/* margin: 0.5em;	*左から、上、右、下、左への余白*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 60%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	text-align: center;
}
/*subコンテンツ内の写真設定*/
#sub figure6 img {
	/* margin: 0.5em;	*左から、上、右、下、左への余白*/
	float: left;
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 2px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: auto;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	text-align: center;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;			/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	border-bottom: 1px solid #d2d2d2;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*左から、上下、左右への余白*/
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background-color: #34c7e6;	/*背景色*/
	color: #fff;				/*文字色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるのスペース*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#eaeaea));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #eaeaea);	/*同上*/
	background-image: linear-gradient(#FFF, #eaeaea);			/*同上*/
	-webkit-box-shadow: 0px 0px 1px #FFF inset;	/*内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;		/*同上*/
}
/*sub box1内ボタン枠表記の設定*/
#sub .box1 span3 {
	float: right;
	font-size: 12px;	/*文字サイズ*/
	display: block;
	font-weight: bold;
	padding: 2px;
	/* margin-right: 5px; */
}

#sub .box1 span3 a {
	padding: 0px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	height: auto;
	overflow: hidden;
}
/*マウスオン時*/
#sub .box1 span3 a:hover.clor {
	background-color: #df8c09;	/*背景色*/
	color: #FFF;	/*文字色*/
}
#sub .box1 span3 a:hover.clsb {
	background-color: #34c7e6;	/*背景色*/
	color: #FFF;	/*文字色*/
}
#sub .box1 span3 a:hover.clob {
	background-color: #0078c5;	/*背景色*/
	color: #FFF;	/*文字色*/
}
#sub .box1 span3 a:hover.clgr {
	background-color: #4cb833;	/*背景色*/
	color: #FFF;	/*文字色*/
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #FFF;	/*背景色*/
}
#sub ul li a:hover {
	background-color: #fff8c7;	/*マウスオン時のボックス色*/
}


/*サブコンテンツ　物件ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub section.box2 {
	font-size: 11px;	/*文字サイズ*/
	/*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);											*同上*/
	border-bottom: 1px solid #999;	/*下の線の幅、線種、色*/
	border-right: 1px solid #999;	/*右の線の幅、線種、色*/
	border-left: 1px solid #999;	/*左の線の幅、線種、色*/
	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
}
#sub section.box2 a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
#sub section.box2 a:hover {
	background-color: #FFF;	/*マウスオン時のボックス色*/
}
/*h4見出しタグ*/
#sub section.box2 h4 {
	/* color: #00ade6;		*文字色*/
	margin-left: 70px;	/*左の画像とバランスをとって設定する*/
	font-size: 100%;
}
/*p段落タグ*/
#sub section.box2 p {
	display: block;
	margin-left: 70px;	/*左の画像とバランスをとって設定する*/
}
/*サムネイル画像設定*/
#sub section.box2 figure {
	float: left;	/*左に回り込みさせる設定*/
}
/*サムネイル画像のフチ*/
#sub section.box2 figure img {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
ul#footermenu {
	clear: both;
	margin: 0px auto;
	text-align: center;
	font-size: 12px;
}
ul#footermenu li {
	display: inline;
	padding: 0px 5px;
}

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

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	font-size: small;
	/* background: #333;	背景色*/
}
#copyright a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 400px;	/*ボックスの高さ*/
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	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 20px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #e2e2e3;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background-image: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブルのキャプション設定*/
.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;	/*文字を太字にする設定*/
}
/*関連会社サイトへのリンクバナー設定(SkyBlue)*/
.ta1 section.slsb {
	float: right;
	font-size: 14px;	/*文字サイズ*/
	display: block;
	margin-left: 110px;
	padding: 0px;
	background-color: #FFF;
}
.ta1 section.slsb a {
	padding: 5px;	/*ボックス内の余白*/
	display: block;
	height: auto;
	overflow: hidden;
}
/*マウスオン時*/
.ta1 section.slsb a:hover {
	background-color: #34c7e6;	/*背景色*/
}
/*関連会社サイトへのリンクバナー設定(Orange)*/
.ta1 section.slor {
	float: right;
	font-size: 14px;	/*文字サイズ*/
	display: block;
	margin-left: 110px;
	padding: 0px;
	background-color: #FFF;
}
.ta1 section.slor a {
	padding: 5px;	/*ボックス内の余白*/
	display: block;
	height: auto;
	overflow: hidden;
}
/*マウスオン時*/
.ta1 section.slor a:hover {
	background-color: #fffbcc;	/*背景色*/
}
/*関連会社サイトへのリンクバナー設定(OceanBlue)*/
.ta1 section.slob {
	float: right;
	font-size: 14px;	/*文字サイズ*/
	display: block;
	margin-left: 110px;
	padding: 0px;
	background-color: #FFF;
}
.ta1 section.slob a {
	padding: 5px;	/*ボックス内の余白*/
	display: block;
	height: auto;
	overflow: hidden;
}
/*マウスオン時*/
.ta1 section.slob a:hover {
	background-color: #c5e8ff;	/*背景色*/
}

/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}
/*テーブル2
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}
.ta2, .ta2 td, .ta2 th{
	/* border: 1px solid #CCC;	*テーブルの枠線の幅、線種、色*/
	line-height: 1.4;
}
/*テーブル内の右側*/
.ta2 td{
	padding: 10px 10px 5px;
	vertical-align: bottom;
}
/*テーブル内の左側*/
.ta2 th{
	width: 90px;
	padding: 15px 0px 0px;
	text-align: right;
	vertical-align: bottom;
	/* background-color: #e2e2e3;	*背景色*/
}
.ta2 th img {
	width: 60px;
	height: 60px;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi img{
	clear: both;
	width: auto;
	padding: 15px 0px 0px;
	text-align: center;
	vertical-align: bottom;
}	
/*テーブルのキャプション設定*
.ta2 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;	/*文字を太字にする設定*
} */

/*テーブル3
---------------------------------------------------------------------------*/
.ta3 {
	width: 48%;
}
.ta3, .ta3 td, .ta3 th{
	/* border: 1px solid #CCC;	*テーブルの枠線の幅、線種、色*/
	line-height: 1.4;
}
/*テーブル内の右側*/
.ta3 td{
	padding: 5px 5px 5px;
	vertical-align: bottom; 
}
/*テーブル内の左側*/
.ta3 th{
	/* width: 90px; */
	/* padding: 15px 0px 0px;*/
	width: 100%;
	padding: 0px;
	/* text-align: right; */
	vertical-align: bottom;
	/* background-color: #e2e2e3;	*背景色*/
}
.ta3 th img {
	/* width: 60px;
	height: 60px; */
}
.ta3 figure3 img {
	float: left;			/*画像を左へ回り込み*/
	margin: 20px 5px 5px 5px;	/*左から、上、右、下、左への余白*/
	background-color: #FFF;		/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 4px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 43%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	text-align: center;
	-webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
    transition: all 2s ease;
}
.ta3 figure4 img {
	float: left;			/*画像を左へ回り込み*/
	margin: 20px 5px 10px 5px;	/*左から、上、右、下、左への余白*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 4px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	width: 95%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
	text-align: center;
	-webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -o-transition: all 2s ease;
    -ms-transition: all 2s ease;
    transition: all 2s ease;
}
/*テーブル１行目に入った見出し部分*/
.ta3 th.tamidashi img{
	clear: both;
	width: auto;
	padding: 15px 0px 0px;
	text-align: center;
	vertical-align: bottom;
}	
/*テーブル4
---------------------------------------------------------------------------*/
.ta4 {
	width: 89%;
	float: right;
	table-layout: fixed;
}
.ta4, .ta4 td, .ta4 th{
	/* border: 1px solid #CCC;	*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta4 td{
	padding: 0px 0px 5px 29px;
}
/*テーブル内の左側*/
.ta4 th{
	width: 180px;
	padding: 0px;
	text-align: center;
	/* background-color: #e2e2e3;	*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta4 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background-image: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブルのキャプション設定*/
.ta4 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: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}
/*テーブル5
---------------------------------------------------------------------------*/
.ta5 {
	width: 100%;
	float: left;
	table-layout: fixed;
}
.ta5, .ta5 td, .ta5 th{
	/* border: 1px solid #CCC;	*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta5 td{
	padding-left: 1.5px;
}
/*テーブル内の左側*/
.ta5 th{
	width: 180px;
	padding: 0px;
	text-align: center;
	/* background-color: #e2e2e3;	*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta5 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background-image: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブルのキャプション設定*/
.ta5 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: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #34c7e6;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.mt15,
.mt1em {
	margin-top: 15px;
}
.mt10 {
	margin-top: 10px;
}
.mb10 {
	margin-bottom: 10px;
}
.mt20 {
	margin-top: 20px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb5 {
	margin-bottom: 5px;
}
.mt5 {
	margin-top: 5px;
}
.mbr515 {
	margin-bottom: 5px;
	margin-right: 15px;
}
.clear {
	clear: both;
}
.flleft {
	float: left;
}
.flright {
	float: right;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #34c7e6;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.lh16 {
	line-height: 1.6em;
}
.lh20 {
	line-height: 2em;
}
.wl {
	width: 96%;
}
.wl2 {
	width: 80%;
}
.wl3 {
	width: 75%;
}
.ws {
	width: 50%;
}
.ws2 {
	width: 45;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.l {
	text-align: left;
}
.mglt1 {
	margin-left: 1em;
}
.mgrt1 {
	margin-right: 1em;
}
.mglt2 {
	margin-left: 2em;
}
.mgrt2 {
	margin-right: 2em;
}
.mglt3 {
	margin-left: 3em;
}
.mgrt3 {
	margin-right: 3em;
}
.mglt4 {
	margin-left: 4em;
}
.mgrt4 {
	margin-right: 4em;
}
.mglt10p {
	margin-left: 10%;
}
.mgrt10p {
	margin-right: 10%;
}
.mglt5p {
	margin-left: 5%;
}
.mgrt5p {
	margin-right: 5%;
}
.mglt10 {
	margin-left: 10px;
}
.mgrt10 {
	margin-right: 10px;
}
.mglt15 {
	margin-left: 15px;
}
.mgrt15 {
	margin-right: 15px;
}
.mglt20 {
	margin-left: 20px;
}
.mgrt20 {
	margin-right: 20px;
}
.mglt60 {
	margin-left: 60px;
}
.mgrt60 {
	margin-right: 60px;
}
.mglt120 {
	margin-left: 120px;
}
.mgrt120 {
	margin-right: 120px;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
.ftlg1 {
	font-size: 130%;
}
#menubar_hdr {
	display: none;
}
.br0 {
	border-style: hidden;
}
.blsb {
	border-bottom: solid 3px #34c7e6;
	padding-bottom: 5px;
}
.blgr {
	border-bottom: solid 3px #4cb833;
	padding-bottom: 5px;
}
.blob {
	border-bottom: solid 3px #0078c5;
	padding-bottom: 5px;
}
.blor {
	border-bottom: solid 3px #df8c09;
	padding-bottom: 5px;
}
.blst2 {
	border-bottom: solid 1px #CCC;
	padding-bottom: 5px;
}
.blsb2 {
	border-bottom: solid 1px #34c7e6;
	padding-bottom: 5px;
}
.blgr2 {
	border-bottom: solid 1px #4cb833;
	padding-bottom: 5px;
}
.blob2 {
	border-bottom: solid 1px #0078c5;
	padding-bottom: 5px;
}
.blor2 {
	border-bottom: solid 1px #df8c09;
	padding-bottom: 5px;
}
.blst3 {
	border: solid 1px #CCC;
	padding: 0px;
	border-radius: 3px;	/*角丸のサイズ*/
}
.blsb3 {
	border: solid 1px #34c7e6;
	padding: 0px;
	border-radius: 3px;	/*角丸のサイズ*/
}
.blgr3 {
	border: solid 1px #4cb833;
	padding: 0px;
	border-radius: 3px;
}
.blob3 {
	border: solid 1px #0078c5;
	padding: 0px;
	border-radius: 3px;	/*角丸のサイズ*/
}
.blor3 {
	border: solid 1px #df8c09;
	padding: 0px;
	border-radius: 3px;	/*角丸のサイズ*/
}
.blsb4 {
	border: solid 2px #34c7e6;
	padding: 0px;
	border-radius: 5px;	/*角丸のサイズ*/
}
.blgr4 {
	border: solid 2px #4cb833;
	padding: 0px;
	border-radius: 5px;	/*角丸のサイズ*/
}
.blob4 {
	border: solid 1px #0078c5;
	padding: 0px;
	border-radius: 3px;	/*角丸のサイズ*/
}
.blor4 {
	border: solid 1px #df8c09;
	padding: 0px;
	border-radius: 3px;	/*角丸のサイズ*/
}
.clsb {
	color: #34c7e6;

}
.clgr {
	color: #4cb833;
}
.clob {
	color: #0078c5;
}
.clor {
	color: #df8c09;
}
.tbf1 {
	overflow: auto;
	zoom: 1;
}
.scale img:hover {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -o-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
}
.scale2 img:hover {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -o-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
}
.scale3 img:hover {
    -webkit-transform: scale(2.0);
    -moz-transform: scale(2.0);
    -o-transform: scale(2.0);
    -ms-transform: scale(2.0);
    transform: scale(2.0);
}
.scale4 img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.bgst1 {
	background-color: #EEE;
}
.bggr1 {
	background-color: #e4f4e1;			/*背景色*/
}
.bgob1 {
	background-color: #c5e8ff;			/*背景色*/
}
.bgsb1 {
	background-color:  #eaf9fc;		/*背景色*/
}
.bgor1 {
	background-color: #fffbcc;			/*背景色*/
}
.embs {
	text-shadow: -1px -1px 0px rgba(255,255,255,0.6), 1px 1px 0px rgba(0,0,0,0.6);	/* エンボス加工 */
}
.bgst {
	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);			/*同上*/
}
.bggr {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e4f4e1));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e4f4e1);	/*同上*/
	background-image: linear-gradient(#FFF, #e4f4e1);			/*同上*/
}
.bgob {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#c5e8ff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #c5e8ff);	/*同上*/
	background-image: linear-gradient(#FFF, #c5e8ff);			/*同上*/
}
.bgsb {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#eaf9fc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #eaf9fc);	/*同上*/
	background-image: linear-gradient(#FFF, #eaf9fc);			/*同上*/
}
.bgor {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#fffbcc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #fffbcc);	/*同上*/
	background-image: linear-gradient(#FFF, #fffbcc);			/*同上*/
}
.bgst2 {
	background-image: -webkit-gradient(linear, left bottom, right top, from(#e3e3e3), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(left bottom, #FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(to top right, #FFF, #e3e3e3);			/*同上*/
}
.bggr2 {
	background-image: -webkit-gradient(linear, left bottom, right top, from(##e4f4e1), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(left bottom,#FFF, #e4f4e1);	/*同上*/
	background-image: linear-gradient(to top right, #FFF, #e4f4e1);			/*同上*/
}
.bgob2 {
	background-image: -webkit-gradient(linear, left bottom, right top, from(#c5e8ff), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(left bottom,#FFF, #c5e8ff);	/*同上*/
	background-image: linear-gradient(to top right, #FFF, #c5e8ff);			/*同上*/
}
.bgsb2 {
	background-image: -webkit-gradient(linear, left bottom, right top, from(#eaf9fc), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(left bottom, #FFF, #eaf9fc);	/*同上*/
	background-image: linear-gradient(to top right, #FFF, #eaf9fc);			/*同上*/
}
.bgor2 {
	background-image: -webkit-gradient(linear, left bottom, right top, from(#fffbcc), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(left bottom, #FFF, #fffbcc);	/*同上*/
	background-image: linear-gradient(to top right, #FFF, #fffbcc);			/*同上*/
}
.bgst3 {
	background-image: -webkit-gradient(linear, right top, left bottom , from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(right top, #FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(to left bottom, #FFF, #e3e3e3);			/*同上*/
}
.bggr3 {
	background-image: -webkit-gradient(linear,  right top, left bottom, from(#FFF), to(##e4f4e1));	/*グラデーション*/
	background-image: -webkit-linear-gradient(right top, #FFF, #e4f4e1);	/*同上*/
	background-image: linear-gradient(to left bottom, #FFF, #e4f4e1);			/*同上*/
}
.bgob3 {
	background-image: -webkit-gradient(linear,  right top, left bottom, from(#FFF), to(#c5e8ff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(right top, #FFF, #c5e8ff);	/*同上*/
	background-image: linear-gradient(to left bottom, #FFF, #c5e8ff);			/*同上*/
}
.bgsb3 {
	background-image: -webkit-gradient(linear,  right top, left bottom, from(#FFF), to(#eaf9fc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(right top, #FFF, #eaf9fc);	/*同上*/
	background-image: linear-gradient(to left bottom, #FFF, #eaf9fc);			/*同上*/
}
.bgor3 {
	background-image: -webkit-gradient(linear,  right top, left bottom, from(#FFF), to(#fffbcc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(right top, #FFF, #fffbcc);	/*同上*/
	background-image: linear-gradient(to left bottom, #FFF, #fffbcc);			/*同上*/
}
.bgst4 {
	background-image: -webkit-gradient(linear, left top, right bottom , from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(left top, #FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(to right bottom, #FFF, #e3e3e3);			/*同上*/
}
.bggr4 {
	background-image: -webkit-gradient(linear,  left top, right bottom, from(#FFF), to(##e4f4e1));	/*グラデーション*/
	background-image: -webkit-linear-gradient(left top, #FFF, #e4f4e1);	/*同上*/
	background-image: linear-gradient(to right bottom, #FFF, #e4f4e1);			/*同上*/
}
.bgob4 {
	background-image: -webkit-gradient(linear,  left top, right bottom, from(#FFF), to(#c5e8ff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(left top, #FFF, #c5e8ff);	/*同上*/
	background-image: linear-gradient(to right bottom, #FFF, #c5e8ff);			/*同上*/
}
.bgsb4 {
	background-image: -webkit-gradient(linear,  left top, right bottom, from(#FFF), to(#eaf9fc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(left top, #FFF, #eaf9fc);	/*同上*/
	background-image: linear-gradient(to right bottom, #FFF, #eaf9fc);			/*同上*/
}
.bgor4 {
	background-image: -webkit-gradient(linear,  left top, right bottom, from(#FFF), to(#fffbcc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(left top, #FFF, #fffbcc);	/*同上*/
	background-image: linear-gradient(to right bottom, #FFF, #fffbcc);			/*同上*/
}
.bgsbor1 {
	background-image: -webkit-gradient(linear,  right top, left bottom, from(#fffbcc),50%(#FFF), to(#eaf9fc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(right top, #fffbcc, #FFF 50%, #eaf9fc);	/*同上*/
	background-image: linear-gradient(to left bottom, #fffbcc, #FFF 50%, #eaf9fc);			/*同上*/
}
.bgsbob1 {
	background-image: -webkit-gradient(linear,  right top, left bottom, from(#c5e8ff),50%(#FFF), to(#eaf9fc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(right top, #c5e8ff, #FFF 50%, #eaf9fc);	/*同上*/
	background-image: linear-gradient(to left bottom, #c5e8ff, #FFF 50%, #eaf9fc);			/*同上*/
}
.sutibdst {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
.sutibdsb {
	border: 1px solid #34c7e6;	/*枠線の幅、線種、色*/
}
.sutibdob {
	border: 1px solid #0078c5;	/*枠線の幅、線種、色*/
}
.sutibdgr {
	border: 1px solid #4cb833;	/*枠線の幅、線種、色*/
}
.sutibdor {
	border: 1px solid #df8c09;	/*枠線の幅、線種、色*/
}
.sutibdsb2 {
	border-top: 5px solid #34c7e6;	/*枠線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-bottom: 1px solid #34c7e6;	/*枠線の幅、線種、色*/
}
.sutibdob2 {
	border-top: 5px solid #0078c5;	/*枠線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-bottom: 1px solid #0078c5;	/*枠線の幅、線種、色*/
}
.sutibdgr2 {
	border-top: 5px solid #4cb833;	/*枠線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-bottom: 1px solid #4cb833;	/*枠線の幅、線種、色*/
}
.sutibdor2 {
	border-top: 5px solid #df8c09;	/*枠線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-bottom: 1px solid #df8c09;	/*枠線の幅、線種、色*/
}
/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*h1見出しタグ設定*/
header h1 {
	display: none;
}

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

/*メインメニュー
---------------------------------------------------------------------------*/
nav#menubar {
	border-bottom: 1px solid #d2d2d2;
	overflow: hidden;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;
	border-bottom: none;
	border-left: none;
}
/*奇数番目のメニューの設定*/
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #d2d2d2;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

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

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

/*Google Mapレスポンシブ対応
---------------------------------------------------------------------------*/
.google_maps {
position: relative;
padding-bottom: 75%; // これが縦横比
height: 0;
overflow: hidden;
}
.google_maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}

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

}



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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 110px;
	text-align: center;
}
/*h1見出しタグ設定*/
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo {
	position: static;
	margin-right: 20px;
}
header #logo img {
	width: 75%;	/*ロゴ画像の幅*/
	height: auto;
	margin-top: 10px;
}

/*言語表示の設定(header)*/
header section.lang_chg {
	font-size: 16px;	/*文字サイズ*/
	margin-right: 3em;
}
header section.lang_chg2 {
	font-size: 16px;	/*文字サイズ*/
	margin-right: 4.5em;
}

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

/*メインメニュー
---------------------------------------------------------------------------*/
nav#menubar {
	border-bottom: 1px solid #d2d2d2;
	overflow: hidden;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;
	border-bottom: none;
	border-left: none;
}
/*奇数番目のメニューの設定*/
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #d2d2d2;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

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

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

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/

}
#main section p {
	font-size: 82%;
}

/*Google Mapレスポンシブ対応
---------------------------------------------------------------------------*/
.google_maps {
position: relative;
padding-bottom: 75%; // これが縦横比
height: 0;
overflow: hidden;
}
.google_maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list section p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list section figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#4dd1eb), to(#24b6dd));	/*背景画像とマイナスアイコンとグラデーション*/
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#4dd1eb, #24b6dd);	/*同上*/
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, linear-gradient(#4dd1eb, #24b6dd);			/*同上*/
}
section#new h2.close {
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#4dd1eb), to(#24b6dd));	/*背景画像とプラスアイコンとグラデーション*/
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#4dd1eb, #24b6dd);	/*同上*/
	background: url(../images/midashi_bg1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, linear-gradient(#4dd1eb, #24b6dd);			/*同上*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	margin: 5px 5px 0px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

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

/*その他
---------------------------------------------------------------------------*/
/*<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;
}

}

