@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	background-color: #FFF;	/*全体の背景色*/
	background-image: url(../images/bg.gif);	/*背景画像の読み込み*/
	margin: 0px;
	padding: 0px;
	line-height: 20px;
	font-size: 14px;
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ/行間、フォントファミリー*/
}
h1,h2,h3,h4,h5,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: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #14a600;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 1000px;	/*コンテナー幅*/
	margin: 0px auto;
	-webkit-box-shadow: 0px 0px 8px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 0px 8px #999;			/*同上*/
	background-color: #FFF;	/*コンテナーの背景色*/
	padding: 0px 10px;		/*上下、左右の余白*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*ブロックの幅*/
	height: 170px;	/*ブロックの高さ*/
	position: relative;
}
/*ヘッダーテキストの設定*/
header .hl {
	font-weight: normal;		/*通常太字なのを標準にする設定*/
	color: #FFF;				/*文字色*/
	background-color: #14a600;	/*背景色*/
	font-size: 10px;			/*文字サイズ*/
	text-align: right;			/*文字を右寄せ*/
	line-height: 18px;			/*行間*/
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: 10px;	/*ヘッダーブロックに対して左から10pxの位置に配置*/
	top: 38px;	/*ヘッダーブロックに対して上から38pxの位置に配置*/
}
/*電話番号ボックスの設定*/
header address {
	position: absolute;
	top: 22px;			/*ヘッダーブロックに対して上から38pxの位置に配置*/
	right: 11px;		/*ヘッダーブロックに対して右から20pxの位置に配置*/
	font-size: 24px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	font-style: normal;	/*通常斜体になっているのを通常に*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定*/
	line-height: 24px;		/*行間*/
	color: #FF8426;		/*文字色*/
	font-weight: bold;	/*文字を太字に*/
}
/*電話番号ボックス内の「TEL」の設定*/
header address .tel {
	display: inline-block;
	color: #FFF;				/*文字色*/
	background-color: #FF8426;	/*背景色*/
	padding-right: 10px;
	padding-left: 10px;		/*上、左右、左へのボックス内の余白*/
	margin-right: 10px;
	font-weight: normal;
	font-size: 24px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menu ul {
	position: absolute;
	left: 0px;		/*ヘッダーブロックに対して左から0pxの位置に配置*/
	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの位置に配置*/
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 200px;	/*メニュー幅*/
} 

nav#menu ul li a {
	height: 42px;	/*ブロックの高さ*/
	padding-top: 8px;
	padding-left: 8px;
	line-height: 1.4;	/*行間*/
	text-decoration: none;
	display: block;
	margin: 0px 0px 20px 4px;		/*メニューの外側への余白。上、右、下、左への指定。*/
	font-size: 14px;	/*文字サイズ*/
	font-weight: bold;
	letter-spacing: 0.1em;		/*文字間隔を少し広めにとる設定。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/menu_bar1.png), -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f4f4f4));	/*バー画像の読み込みとグラデーション*/
	background-image: url(../images/menu_bar1.png), -webkit-linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*同上*/
	background-image: url(../images/menu_bar1.png), linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	background-repeat: no-repeat;		/*背景のバー画像をリピートしない設定*/
	background-position: left center;	/*背景のバー画像の位置*/
	text-align: center;	/*文字をセンタリング*/
	-webkit-box-shadow: 1px 2px 5px #e2e2e2, 0px 0px 1px #FFF inset;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定＋内側への設定*/
	box-shadow: 1px 2px 5px #e2e2e2, 0px 0px 1px #FFF inset;			/*同上*/
}
/*最初のメニューの設定*/
nav#menu ul li:first-child a {
	margin-left: 0px;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menu ul li a:hover,
nav#menu ul li#current a {
	border: 1px solid #0b5c00;	/*枠線の幅、線種、色*/
	background-color: #14a600;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/menu_bar2.png), -webkit-gradient(linear, left top, left bottom, from(#14a600), to(#129500));	/*バー画像の読み込みとグラデーション*/
	background-image: url(../images/menu_bar2.png), -webkit-linear-gradient(#14a600, #139f00 49%, #129500 50%, #13a100 100%);	/*同上*/
	background-image: url(../images/menu_bar2.png), linear-gradient(#14a600, #139f00 49%, #129500 50%, #13a100 100%);			/*同上*/
	background-repeat: no-repeat;		/*背景のバー画像をリピートしない設定*/
	background-position: left center;	/*背景のバー画像の位置。*/
	color: #FFF;	/*文字色*/
}
/*英語表記の設定*/
nav#menu ul li a span {
	font-size: 9px;	/*文字サイズ*/
	color: #14a600;	/*文字色*/
	display: block;
	font-weight: normal;
}
nav#menu ul li a:hover span,
nav#menu ul li#current a span {
	color: #FFF;	/*マウスオン時の文字色*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 980px;	/*幅*/
	height: 230px;	/*高さ*/
	position: relative;
	border-radius: 4px;		/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	margin-bottom: 20px;	/*画像の下の余白*/
}
#mainimg img {
	border-radius: 4px;	/*角丸のサイズ*/
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

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

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 720px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh1タグの設定*/
#main h1 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f4f4f4));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*同上*/
	background-image: linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #CCC;			/*同上*/
	font-size: 120%;
	color: #14a600;		/*文字色*/
	padding: 7px 15px;	/*上下、左右への余白*/
	clear: both;
	border-bottom: 5px solid #14a600;	/*下の線の幅、線種、色*/
	border-top: 1px solid #CCC;			/*上の線の幅、線種、色*/
	border-right: 1px solid #CCC;		/*右の線の幅、線種、色*/
	border-left: 1px solid #CCC;		/*左の線の幅、線種、色*/
}
/*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, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*同上*/
	background-image: linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #e2e2e2;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #e2e2e2;			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*上下、左右への余白*/
	clear: both;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh4タグの設定*/
#main h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;	/*文字色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}
#top_img{
	position: relative;
	background-image: url(../images/top_bk.jpg);
	height: 320px;
	margin-bottom: 10px;
}
#top_img p{
	position: absolute;
	top: 150px;
	left: 50px;
	color: #ffffff;
	line-height: 20px;
	width: 607px;
	height: 102px;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 230px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 110%;
	text-align: center;	/*文字をセンタリング*/
	padding: 5px 0px;	/*左から、上下、左右への余白*/
	border: 1px solid #0b5c00;	/*枠線の幅、線種、色*/
	background-color: #14a600;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#14a600), to(#0029c2));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#14a600, #139f00 49%, #129500 50%);	/*同上*/
	background-image: linear-gradient(#14a600, #139f00 49%, #129500 50%);			/*同上*/
	color: #FFF;	/*文字色*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下の順の設定。*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	margin-bottom: 15px;
	font-size: 110%;
	line-height:30px;			/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#eaeaea), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#eaeaea, #FFF);	/*同上*/
	background-image: linear-gradient(#eaeaea, #FFF);			/*同上*/
	-webkit-box-shadow: 0px 0px 1px #FFF inset;	/*内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;		/*同上*/
}

/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background-image:none;
	background-color: #14a600;	/*背景色*/
	color: #FFF;				/*文字色*/
}
#sub ul.submenu li.c3{
	text-align:center;
	padding:0;
	width:33%;
	float:left;
}
#sub ul.submenu li.c3 a{
	padding:0;
}
/*サブコンテンツ内の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;		/*同上*/
}
/*box1内のh2タグ*/
#sub .box1 h2 {
	padding: 2px 0px;	/*左から、上下、左右への余白*/
	border-radius: 0px;	/*角丸をなくす設定*/
}

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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	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;
}

/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#top-list article{
	line-height:22px;
	font-size:12px;
	float:left;
	width:168px;
	border:1px solid #cccccc;
	margin-left:8px;
	
	margin-bottom:8px;
	border-radius: 6px;	
	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;
}
#top-list figure{
	text-align:center;
	margin-top:5px;
}
#top-list img{
	max-height:100px;
	max-width:150px;
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
#top-list .font16{
	font-size:14px;
	font-weight:bold;
}
#top-list h3{
	margin-top:15px;
	margin-bottom:5px;
	clear:both;
	font-size:18px;
	font-weight:bold;
	border-left:solid 10px #14A600;
	
}
#main section.list article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	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, 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: #f6f1b2;	/*背景色*/
	color: #333;				/*文字色*/
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list article figure img {
			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list article h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;	/*文字色*/
	position:relative;
}

#main section.list articl{
	clear:both;
}
.b_num{
	background-color:#434343;
	color:#EBEBEB;
	padding:3px;
	margin-right:10px;
}
/*simpleタイプ（※ボックス内の部分的な箇所にリンクを設定する場合）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list.simple article {
	padding: 10px;
	overflow: hidden;
}
#main section.list.simple article a {
	padding: 0px;
	display: inline;
	text-decoration: underline;
}
/*マウスオン時*/
#main section.list.simple article a:hover {
	background-color: transparent;
	color: #14a600;
}
/*ボックス内の写真設定*/
#main section.list.simple article figure a:hover img {
	background-color: #f6f1b2;
	border: 1px solid #999;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding-left: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding-left: 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;	/*文字を太字にする設定*/
}
/*submitボタンの設定*/
input[type="submit"],
input[type="button"] {
	cursor: pointer;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 0px;
	border: none;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #118e00;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#14a600), to(#118e00));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#14a600, #118e00);	/*同上*/
	background-image: linear-gradient(#14a600, #118e00);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	color: #FFF;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #14a600;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#118e00), to(#14a600));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#118e00, #14a600);	/*同上*/
	background-image: linear-gradient(#118e00, #14a600);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #14a600;	/*背景色*/
	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 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #14a600;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
figcaption {
	font-size: 11px;
}
#menubar_hdr {
	display: none;
}
.mini1 {
	font-size: 11px;
	font-weight: normal;
	margin-top: 5px;
}
/*半分テーブル*/
.table_03{
	border-collapse: separate;
	border-spacing: 0px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	width: 370px;
	line-height:20px;
}
 .table_03 th{
	width: 80px;
	padding: 4px;
	text-align: left;
	vertical-align: top;
	color: #444;
	background-color: #C8E3A1;
	border-left: 3px double #999;
	border-top: 1px solid #fff;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
 }
 .table_03 td{
 
 padding:4px;
 background-color: #fafafa;
 border-right: 1px solid #ccc;
 border-bottom: 1px solid #ccc;
 }
.left_box{
	float:left;
	width:370px;
}
.right_box{
	float:right;
	width:320px;
}
#map_canvas{
	width:700px;
	height:350px;
}
.thumb img{
	max-height:90px;
	max-width:90px;
	position:absolute;
}
.thumb_box{
	width:90px;
	height:90px;
	text-align:center;
	
	
	
	position:relative;
}
.com_box{
	font-size:12px;
	line-height:18px;
}
.thumb{
	clear:both;
}
.thumb li{
	float:left;
	margin-right:6px;
	margin-bottom:6px;
	border:1px #cccccc solid;
	width:98px;
}
#p0{
	max-height:310px;
	max-width:310px;
}
/*b_list table*/
.b_list{
	border-collapse: separate;
	border-spacing: 0px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	width: 470px;
	line-height:20px;
	float:right;
	
	
}
.b_list th{
	width: 80px;
	color: #444;
	padding: 4px;
	text-align: left;
	vertical-align: top;
	
	background-color: #C8E3A1;
	border-left: 3px double #999;
	border-top: 1px solid #fff;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.b_list td{
	padding:4px;
 background-color: #fafafa;
 border-right: 1px solid #ccc;
 border-bottom: 1px solid #ccc;
}
.b_list .font16{
	font-size:16px;
	font-weight:bold;
}
.m0 td{
	background-color:#efefef;
}
.m0 th{
	background-color:#cecece;
}
.list_img{
	max-height:150px;
	max-width:200px;
}
.list figure {
	float: left;	
	width:210px;
	text-align:center;
}
.list_bt{
	float:right;
	margin-top:10px;
}
.list_bt img{
	margin-left:10px;
}
.search_cnd{
	background-color:#D0E0D6;
	margin-top:20px;
}
#setubi label{
	width:150px;
	display:block;
	float:left;
}
#k_shu{
	margin-top:5px;
	margin-bottom:5px;
}
#k_shu label{
	margin-right:20px;
}
#main ul.pageNav02 {
	margin: 0 0 10px;
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 5px;
	padding-bottom: 5px;
	background: #fff;
	text-align: center;
}

#main ul.pageNav02 li {
	display: inline;
	margin: 0 2px;
	padding: 0;
}

#main ul.pageNav02 li span,
#main ul.pageNav02 li a {
	display: inline-block;
	margin-bottom: 5px;
	padding-top: 2px;
	padding-right: 5px;
	padding-left: 5px;
	padding-bottom: 2px;
	background-color: #EEF7EE;
	text-decoration: none;
	vertical-align: middle;
	width: 25px;
}

#main ul.pageNav02 li a:hover ,#main ul.pageNav02 li span{
	color: #ffffff;
	background-color: #6DD097;
	border-color: #6DD097;
}

.secondary-main-footer__contents h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

#warning{
	width:95%;
	font-size:12px;
	line-height:20px;
	margin-left:auto;
	marginright:auto;
	margin-top:15px;
	padding:10px;
	border:dashed 1px #cccccc;
	
	
}
	
#warning ol{
	margin-left:25px;
}
#formWrap {
	width: 700px;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	color: #555;
	line-height: 120%;
	font-size: 90%;
	padding-top: 20px;
	padding-bottom: 20px;
}
table.formTable{
	width: 100%;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	
	border-collapse: collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
p.error_messe{
	margin:5px 0;
	color:red;
}
#pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 5px;
}
#pagetop a {
	display: block;
	background-color: rgba(0,0,0,0.61);
	text-align: center;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	border-radius: 8px;
	background-image: url(../images/pagetop_bk.png);
	width: 50px;
	height: 50px;
}
/*トップページhead_img*/
#head_img{
	background-image: url(../images/head_img.jpg);	
	position:relative;
	height:180px;
	margin-bottom:20px;
	
}
#head_img p{
	position: absolute;
	top: 25px;
	left: 330px;
	color: #ffffff;
	display: block;
	margin-right: 15px;
}


/*物件一覧イラスト*/
.search_desc .left_img{
	float:left;
	margin-right:5px;
	width:250px;
}
.search_desc .right_txt{
	float: left;
	width: 450px;
	font-size: 12px;
}
.hisu{
	display: inline-block;
	margin-left: 10px;
	padding-left: 10px;
	background-color: #ff0000;
	color: #fff;
	padding-right: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 12px;
	border-radius: 6px;
	margin-right: 10px;
}
/*物オススメエリア別*/
.tab{
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	width: 142px;
	float: left;
	font-size:12px;
	border: 1px solid #999;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
.tab0{
	color:#fff;
	background-color: rgba(17,142,0,1.00);
}
.list1,.list2,.list3,.list4{
	display:none;
}

/*トップページ　h1*/
.top-h1 {
    font-size: 20px;
    margin: 10px;
}

/* 20231212 手続きの流れ  */
#top-list .cmnFlow {
	clear: both;
}

@media(max-width:480px) {

	#top-list .cmnFlow {
		clear: both;
	}
}

/*--20240215 「よくある質問」の追加--*/
#top-list h3{
	margin-top: 20px;
	margin-bottom: 10px;
}
.faq_wrap {
	margin-bottom: 10px;
}
.que_wrap {
	display: block;
}
.que_wrap::-webkit-details-marker {
	display: none;
}
.que_inner{
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: space-between;

	color: #333;
	line-height: 1.6;
	font-weight: bold;
	padding: 10px 20px;
	align-items: center;
	border: 1px solid #ccc;
	border-left: solid 5px #14A600;
	-webkit-box-shadow: 1px 2px 5px #e2e2e2;
	box-shadow: 1px 2px 5px #e2e2e2;
}
.que_wrap .icon {
	display: block;
	position: relative;
	width: 16px;
	margin-left: 6px;
	flex-shrink: 0;
	transform-origin: center 43%;
	transition: transform 0.4s;
}
details[open] .icon {
	transform: rotate(180deg);
}                    
details[open] .que_inner {
	border-left: 1px solid #ccc;
	-webkit-box-shadow: 1px -2px 5px #e2e2e2;
	box-shadow: 1px -2px 5px #e2e2e2;
}
.que_wrap .icon::before,
.que_wrap .icon::after {
	content: "";
	position: absolute;
	display: block;
	width: 10px;
	height: 2px;
	background-color: #14a600;
}
.que_wrap .icon::before {
	left: 0;
	transform: rotate(45deg);
}
.que_wrap .icon::after {
	right: 0;
	transform: rotate(-45deg);
}
@keyframes close-animation {
	from {
		transform: rotate(180deg);
	}
	to {
		transform: rotate(0deg);
	}
}
details[open] .que_inner::after {
	animation: 0.4s open-animation forwards;
}
@keyframes open-animation {
	from {
		transform: rotate(0deg);
	}
	to{
		transform: rotate(180deg);
	}
}
.ans_inner {
	padding: 30px;
	border: 1px solid #ccc;
	border-top: none;
	-webkit-box-shadow: 1px 2px 5px #e2e2e2;
	box-shadow: 1px 2px 5px #e2e2e2;
}
details[open] .ans_inner{
	border-left: solid 5px #14A600;
}
.ans_inner p {
	margin: 0;
	line-height: 1.4;
	padding: 0!important;
}

/* 20240827 index・conpany・err・form・owner・recruit・search サイドメニューバー内カテゴリ移動 */
#sub ul.submenu li.c3{
	width: calc(100% / 3);
	line-height: 1.2;
}
#sub ul.submenu li.c3 a{
	padding: 5px;
}
@media(max-width:480px){
	#sub ul.submenu li{
		font-size: 14px;
	}
	#sub ul.submenu li.c3 a br{
		display: none;
	}
}

/* 20240918 紹介文 */
#main .search_desc + .search_desc {
	display: none;
}

/* 20241111 */
#menu .cmn-menu span,
#menu .cmn-menu-list {
    display: none;
}

.cmn-f {
	padding: 20px 10px 40px;
	box-sizing: border-box;
}

.cmn-f-list-container {
	display: flex;
	justify-content: flex-start;
	line-height: 1.6;
}

.cmn-f-list-parent-container>.cmn-f-list:nth-child(3) {
	width: calc(100% - 220px);
	margin-right: 0px;
}

.cmn-f-list-parent-container>.cmn-f-list:nth-child(3) .cmn-f-list-container>.cmn-f-list:nth-child(2) {
	margin-right: 0px;
}

.cmn-f-list {
	margin-right: 10px;
}

.cmn-f-list li {
	text-align: left;
	white-space: nowrap;
	min-width: 110px;
}

.cmn-f-list li a {}

.cmn-f-list-child-container {
	padding-left: 10px;
}

.cmn-f-list-child {
	width: 33%;
	margin-right: 10px;
}

/* 20250122 物件一覧内 竣工年月 */
.list.simple table.b_list {
	font-size: 90%;
}

/* 20250519 サイドバーメニュー レイアウト修正 */
@media screen and (max-width: 480px) {
	#menu .retouch .cmn-menu-list li a {
		padding: 0;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/* 20251016 top トップページの物件情報について */
.recommend-ttl {
	clear: both;
	font-size: 20px;
	font-weight: bold;
	padding: 10px 0px 4px 0px;
	margin: 15px 0px 0px 0px;
}