@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: #666;	/*背景色*/
	background: #FFF url(../images/bg.gif);	/*背景色、背景画像の読み込み*/
}
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;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	background: White;
	max-width: 1100px;
	/*width: 990px; /*コンテナー幅*/
	margin: 5px auto; /*上下余白、左右余白*/
	border: 1px solid #666;	/*枠線 線の幅、線種、色*/
	border-top: 6px solid #004078;	/*上の線を太くする*/
	padding: 10px 0px 0px;	/*内側余白、上、左右、下*/
	border-radius: 6px;	/*角を丸くする*/
	box-shadow: #ccc 0px 0px 5px 5px; /*陰をつける、色、幅1、幅2、幅3、幅4 */
	background: #FFF url(../images/bg1.jpg) no-repeat center top;	/*背景色、背景画像の読み込み＆リピートしない＆左右中央の上部に配置*/
}

/*ヘッダー（サイトロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	height: 115px;	/*ヘッダーブロックの高さ*/
	width: 100%;	/*ヘッダーブロックの幅*/
	position: relative;
}
/*ロゴ画像設定*/
header #logo {
	position: absolute;
	left: 10px;		/*ヘッダーブロックに対して左から10pxの位置に配置*/
	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの位置に配置*/
}
/*h1見出しタグ設定*/
header h1 {
	font-size: 11px;	/*文字サイズ*/
	line-height: 1;	/*行間 100% */
	text-align: right;	/*右寄せ*/
	padding-right: 5px;	/*右に余白をつける*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準に。太字がいいならこの１行削除。*/
}

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

/*メインコンテンツ（左側ブロック）
---------------------------------------------------------------------------*/
/*可変幅に対応させるラッパー*/
.wrapper {
     float: right;	/*右側に回り込み*/
     margin: 0;		/*余白を0に設定*/
     width: 100%;
     margin-left: -300px;	/*サイドメニュー幅シフト*/
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
.content {
	margin-left: 300px;		/*サイドメニュー幅シフト*/
	padding: 0 10px 30px 0;	/*余白。左から、上、右、下、左への指定。*/
}
/*メインコンテンツ（右側ブロック）
---------------------------------------------------------------------------*/
#main {
	margin-left: 300px;		/*サイドメニュー幅シフト*/
	padding: 0 10px 5px 0;	/*余白。左から、上、右、下、左への指定。*/
	
	/*width: 680px;	/*メインコンテンツ幅*/
	/*float: right;	/*右側へ回り込み*/
	/*padding-right: 10px;
	padding-bottom: 5px;*/
}
/*mainコンテンツのh2タグの設定*/
#main h1 {
	clear: both;
	background-color: #0c54d7;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/round1.png) no-repeat 10px center, #0c54d7 url(../images/bg1.png);	/*背景画像の読み込み。カンマ区切りで２つ指定。*/
	border-radius: 5px;	/*角丸のサイズ*/
	border: 1px solid rgba(255,255,255,0.5);	/*枠線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	font-size: 100%;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	padding: 3px 0px 3px 40px;	/*余白。左から、上、右、下、左への指定。*/
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	color: #ff0099;
	/*font-size: 22px;*/
}
/*mainコンテンツのh4タグの設定*/
#main h4 {
	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);			/*同上*/
	font-size: 100%;
	padding: 3px 15px;	/*左から、上下、左右への余白*/
	border-radius: 5px;	/*角丸のサイズ*/
	clear: both;
	border: 1px solid #0c54d7;	/*枠線の幅、線種、色*/
	color: #0c54d7;	/*文字色*/
}
/*mainコンテンツのh4タグの設定*/
#main h5 {
	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 10px 1em;	/*左から、上、左右、下への余白*/
}

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

/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list table {
	font-size: 11px;	/*文字サイズ*/
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	background: #FFF;	/*背景色*/
}
#main section.list table,
#main section.list table td,
#main section.list table th{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
#main section.list table td,
#main section.list table th{
	padding: 0;
	line-height: 1.6;
	padding: 3px;
}
#main section.list table th{
	width: 80px;
	text-align: center;
	font-weight: normal;
	background: #dfe0c8;
}
#main section.list table td {
	width: 140px;
}

/*サブコンテンツ（左側ブロック）
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 280px;	/*サブコンテンツ幅*/
	padding-left: 10px;
	/*padding-bottom: 0px;*/
}
/*subコンテンツのh2タグの設定*/
#sub h1 {
	padding: 0px 10px;	/*左から、上下、左右への余白*/
	font-size: 100%;	/*文字サイズ*/
	color: #FFF;	/*文字色*/
	background-color: #2866d7;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#2866d7), to(#0c54d7));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#2866d7, #0c54d7);	/*同上*/
	background-image: linear-gradient(#2866d7, #0c54d7);			/*同上*/
	border-bottom: 5px solid #d3d3d3;	/*下線の幅、線種、色*/
	margin-bottom: 5px;	/*枠外に余白追加*/
}
/*box1設定*/
#sub .box1 {
	border: 1px solid #c9c9c9;	/*枠線の幅、線種、色*/
	border-radius: 5px;	/*角丸のサイズ*/
	padding: 5px 10px;		/*ボックス内の余白 上下、左右*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f6f6f6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #f6f6f6);	/*同上*/
	background-image: linear-gradient(#FFF, #f6f6f6);			/*同上*/
	margin-bottom: 6px;
}
/*box2設定*/
#sub .box2 {
	float: left;
}

#sub .mark-box {
	display:table;
	font-size: 90%;
	text-align:center;
}
#sub .p-mark,
	.s-mark {
	display:table-cell;
	width: 50%;
	vertical-align:top;
	line-height: 1.5;
	
}
/*サイトシール*/
#sub .box1 img#ss_img {
	position: relative;
	left: 0px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 0px;	/*ヘッダーブロックに対して上から24pxの位置に配置*/
}
#sub .box1 img#p_img {
	position: relative;
	left: 15px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 0px;	/*ヘッダーブロックに対して上から24pxの位置に配置*/
}
#sub .box1 a#p_code {
	position: relative;
	line-height: 1;	/*行間*/
	left: 25px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: -5px;	/*ヘッダーブロックに対して上から24pxの位置に配置*/
}
#sub .box1 a#ss_info {
	position: relative;
	line-height: 1;	/*行間*/
	left: 25px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: -10px;	/*ヘッダーブロックに対して上から24pxの位置に配置*/
	font-size: 90%;
}
#sub .box1 a#ss_link {
	position: relative;
	line-height: 1;	/*行間*/
	left: 5px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 0px;	/*ヘッダーブロックに対して上から24pxの位置に配置*/
	font-size: 90%;
}
#sub .box1 a#p_link {
	position: relative;
	line-height: 1;	/*行間*/
	left: 40px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 0px;	/*ヘッダーブロックに対して上から24pxの位置に配置*/
	
	font-size: 90%;
}

/*左側のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#mainmenu ul li {
	position: relative;
	left: 0px;		/*左から0pxの位置に配置*/
	top: 0pt;		/*上から0pxの位置に配置*/
}
/*各メニューの設定*/
nav#mainmenu ul li a {
	width: 253px;	/*メニューの幅*/
	line-height: 1.2;	/*行間 120% */
	display: block;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: rgba(255,255,255,0.9) url(../images/menu_bar1.png); /*左のカンマ区切りの4つの数値は、左3つはRGBカラーでの色指定で4つめは透明度(0.9＝90％)。*/
	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;	/*背景のバー画像の位置*/
	border: 1px solid #09F;	/*枠線の幅、線種、色*/
	border-radius: 5px;			/*角丸のサイズ*/
	-webkit-transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
	transition: 0.4s;			/*同上*/
	margin-bottom: 2px;			/*メニュー間のスペース*/
	padding: 4px 0px 4px 25px;	/*左から、上、右、下、左への余白*/
}
/*マウスオン時の設定*/
nav#mainmenu ul li:hover > a,
nav#mainmenu ul li#current a {
	border: 1px solid #001f91;	/*枠線の幅、線種、色*/
	background-color: #004078;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background:  #004078 url(../images/menu_bar2.png) 7px center; /*背景色、背景画像の読み込み、左から7px、上下中央に配置。*/
	background: url(../images/menu_bar2.png) no-repeat 7px center, -webkit-gradient(linear, left top, left bottom, from(#00529a), to(#003d73));	/*バー画像の読み込みとグラデーション*/
	background: url(../images/menu_bar2.png) no-repeat 7px center, -webkit-linear-gradient(#00529a, #004b8d 49%, #003d73 50%, #004e92 100%);	/*同上*/
	background: url(../images/menu_bar2.png) no-repeat 7px center, linear-gradient(#00529a, #004b8d 49%, #003d73 50%, #004e92 100%);			/*同上*/
	color: #FFF;	/*文字色*/
}
/*英語表記の設定*/
nav#mainmenu ul li a span {
	font-size: 9px;	/*文字サイズ*/
	color: #0031e6;		/*文字色*/
	display: block;
	font-weight: normal;
	margin-left: 2px;
}
/*マウスオン時の英語表記設定*/
nav#mainmenu ul li:hover > a span,
nav#mainmenu ul li#current a span {
	color: #FFF;	/*マウスオン時の文字色*/
}
/*階層メニューの設定*/
nav#mainmenu ul li ul {
	position: absolute;
	z-index: 999;
	top: 0;			/*親メニューに横並び表示*/
	left: 100%;		/*同上*/
	padding-left: 2px;	/*左側に2px余白をつける*/
}
/*子メニューは初期状態で非表示*/
nav#mainmenu ul li ul li {
	overflow: hidden;
	display: none;
	transition: .2s;
}
/*マウスオン時に子メニュー表示*/
nav#mainmenu ul li:hover > ul > li {
	overflow: visible;
	display: block;
}
/* 階層マークの表示 */
nav#mainmenu ul li ul:before {
  position: absolute;
  content: "";
  top: 14px;
  left: -15px;
  border: 5px solid transparent;
  border-left-color: #00C000;
}

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

/*ナビゲーションボタンの色*/
.sp-button {
    border:2px solid #ccc;
}
.sp-selected-button {
  background-color: #ccc;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	color: #FFF;
	clear: both;
	font-size: 11px;
	text-align: left;
	-webkit-box-shadow: 0px -2px 4px rgba(0,0,0,0.3);
	box-shadow: 0px -2px 4px rgba(0,0,0,0.3);
	background: #1e2f5a;
	background: -webkit-gradient(linear, left top, left bottom, from(#1e2f5a), to(#262626));
	background: -webkit-linear-gradient(#1e2f5a, #262626);
	background: linear-gradient(#1e2f5a, #262626);
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #fcff1a;
}
footer .pr {
	display: block;
	font-size: 80%;
}
/*
---------------------------------------------------------------------------*/
#footermenu {
	overflow: hidden;
	max-width: 940px;
	margin: 0px auto;
	padding: 15px 0px;
}
#footermenu ul {
	float: left;
	width: 18.8%;
	border-right: 1px solid #6C6C6C;
	padding-left: 1%;
	height: 150px;
	/*padding: 5px 0px 0px 20px;*/
}
#footermenu h3 {
	font-size: 11px;
	color: #fcff1a;
	padding: 0px 0px 4px 4px;
}

#footermenu ul.bl {
	border-left: 1px solid #6C6C6C;
}
#footermenu ul li {
	line-height: 1.7;	/*行間 170% */
	padding-left: 15px;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 11px;		/*文字サイズ*/
	color: #FFF;			/*文字色*/
	background:-webkit-gradient(linear, left top, left bottom, from(#00529a), to(#003d73));	/*背景色のグラデーション*/
	background: -webkit-linear-gradient(#00529a, #004b8d 49%, #003d73 50%, #004e92 100%);	/*同上*/
	background: linear-gradient(#00529a, #004b8d 49%, #003d73 50%, #004e92 100%);			/*同上*/
}
#copyright .pr {
	display: block;
	font-size: 80%;
}
#copyright a {
	color: White;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#infolist,
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	margin: 5px 10px 0px;
}
#new2 dl {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色。*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*問い合わせページ内「プライバシーポリシー」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#policy {
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 350px;
	margin: 5px 10px 0px;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #c9c9c9;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 200px;	/*幅*/
	padding: 10px;
	text-align: center;
	background: #f6f6f6;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background: #d5dff3;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #c9c9c9;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #c9c9c9;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #c9c9c9;		/*左側の線の幅、線種、色*/
	text-align: left;
	font-weight: bold;	/*文字を太字にする設定*/
	background-color: #f7f4cc;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f6e3), to(#f7f4cc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#f7f6e3, #f7f4cc);	/*同上*/
	background-image: linear-gradient(#f7f6e3, #f7f4cc);			/*同上*/
}
/*プライバシーマークなどの整列表示*/
.ta0 {
	width: 100%;
}
ta0, .ta0 td, .ta0 th{
	border: none;	/*テーブルの枠線のなし*/
	font-size: 13px;	/*フォントサイズ*/
	padding: 0;
}
.ta0 td {
	width: 50%;
	text-align: center;
	align-content: center;
}
.ta0 td a {
	text-decoration: none;
}

/*ボタンの設定*/

/*
		input[type="submit"] {
			width: 100px;
			height: 32px;
			background-color: #666;
			border: none;
			color: #fff;
			-webkit-transition: background-color .2s;
			transition: background-color .2s;
			cursor: pointer;
			-webkit-appearance: none;
			border-radius: 0;
		}
		input[type="submit"]:hover {
			background-color: #59b1eb;
		}
		
*/
		
	

input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 140px;	/*ボタン幅*/
	padding: 5px;	/*ボタン内の余白*/
	margin: 10px 0; 
	border-radius: 10px;	/*角丸のサイズ*/
	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: 14px;	/*文字サイズ*/
	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);			/*同上*/
}

input[type="submit"][disabled] {
	background-color: #ccc;
	cursor: default;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	text-align: right;
	margin: 2px 10px;
}
#pagetop a {
	/*
	display: block;
	float: right;
	letter-spacing: 0.1em;
	*/
	text-align: center;
	display: inline-block;
	width: 12em;			/*ボックスの幅*/
	font-size: 11px;		/*文字サイズ*/
	color: #FFF;			/*文字色*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	border-radius: 10px;	/*角丸のサイズ*/
	border: 1px solid #004078;	/*枠線の幅、線種、色*/
	background-color: #004078;
}
#pagetop a:hover {
	background-color: #FFF;	/*マウスオン時の背景色*/
	color: #004078;
}

/*オプションマーク（管理ページのオプション1～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,10px);
	-ms-transform: rotate(-45deg) translate(37px,10px);
	transform: rotate(-45deg) translate(37px,10px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,10px);
	-ms-transform: rotate(-45deg) translate(37px,10px);
	transform: rotate(-45deg) translate(37px,10px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*FAQページ
---------------------------------------------------------------------------*/
.faq {
	padding: 0px 15px;
}
.faq dt {
	color: #0031e6;			/*マウスオン時の文字色（全体）*/
	font-weight: bold;
}
.faq dd {
	border-bottom: 1px solid #CCC;
	overflow: hidden;
}

/* Google Map
---------------------------------------------------------------------------*/
/* =================================
   @DEMO
================================= */
#demo {
	margin: 0px auto;
	width: 670px;
}

/* =================================
   @ACCESS
================================= */
.access
	 {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
}

.map2 {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  margin-top: 10px;
  margin-bottom: 30px;
  padding-top: 5px;
}
/* =================================
   @MAP
================================= */
.map {
  height: 400px;
}
.map p {
  margin: 1px;
  white-space:nowrap;
}

/* #map{
  height:500px;
} */

.overlay{
  display:block;
  text-align:center;
  color:#fff;
  font-size:14px;
  line-height:17px;
  opacity:0.8;
  background:#905;
  border:solid 3px #905;
  border-radius:4px;
  box-shadow:2px 2px 10px #333;
  text-shadow:1px 1px 1px #666;
  padding:0 4px;
}

.overlay_arrow{
  left:50%;
  margin-left:-8px;
  width:0;
  height:0;
  position:absolute;
}
.overlay_arrow.above{
  bottom:-7px;
  border-left:8px solid transparent;
  border-right:8px solid transparent;
  border-top:8px solid #905;
}
.overlay_arrow.below{
  top:-7px;
  border-left:8px solid transparent;
  border-right:8px solid transparent;
  border-bottom:8px solid #905;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #e8e8e8;
	color: #818181;
}
.mb15,
.mb15 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #FF0000;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.vam {
	vertical-align: middle;
}
figcaption {
	font-size: 11px;
}
.mini1 {
	font-size: 12px;
	line-height: 1.6;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}
img.fl {
	margin: 0px 10px 10px 0px;
	float: left;
}
img.fr {
	margin: 0px 0px 10px 10px;
	float: left;
}
.pn {
	display: none;	/*PC環境で表示させない設定*/
}
.video-wrap {
    position: relative;
}
.video-btn {
    content: "";
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:40px; /*コントローラー分下部に余白を*/
    cursor: pointer;
}

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

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

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

.wrapper {
	float: none;	/*右側に回り込み*/
	margin: 0;		/*余白を0に設定*/
	
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: none;
	width: auto;
	margin: 6px;
	margin-top: 105px;	/*メニューの高さ分だけ下げる*/
	padding-right: 0px;
}

/*subコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: none;
	width: auto;
	margin: 6px;
	padding-left: 0px;
}

/*/#sub .box1 {
	width: 50%;
	float:left;
}*/
/*メインメニュー（タブレット・スマホ環境でのみ表示される）
---------------------------------------------------------------------------*/
/*メインメニューの設定*/
nav#mainmenu ul {
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	top: 125px;	/*headerの高さだけ下げる*/
}	
nav#mainmenu ul li {
	float:left;
	width: 50%;
}
nav#mainmenu ul li a {
	width: auto;
	margin-bottom: 0;
	border-style: none;
	border-bottom: 1px solid #c9c9c9;
	border-radius: 0;
}
/*奇数番目のメニューの設定*/
nav#mainmenu ul li:nth-child(odd) {
	border-right: 1px solid #c9c9c9;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*マウスオン時の設定*/
nav#mainmenu ul li a:hover {
	border-style: none;
	border-bottom: 1px solid #c9c9c9;
}
/*子メニュー以下を非表示*/
nav#mainmenu ul li:hover > ul > li {
	overflow: hidden;
	display: none;
}
/* 階層マークを非表示 */
nav#mainmenu ul li ul:before {
  border: none;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu ul {
	width: auto;
	border-right: none;
	height: auto;
	padding: 0px;
}
#footermenu ul.bl {
	border-left: none;
}
#footermenu ul li {
	width: 100%;
	padding: 0px 15px;
}
/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub,
body.sdn #sub {
	display: none;
}
.pn {
	display: block;	/*PC環境で表示させない設定を表示させる*/
}
/*スマホとタブレットで表示させない設定*/
/*.stn {
	display: none;
}*/

/*トップページのメイン画像*/
#mainimg {
	width: 100%;
	height: auto;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
}

}

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

/*mainコンテンツ
---------------------------------------------------------------------------*/
#main {
	margin-top: 180px;	/*メニューの高さ分だけ下げる*/
}

/*メインメニュー（タブレット・スマホ環境でのみ表示される）
---------------------------------------------------------------------------*/
/*各メニューの設定*/
nav#mainmenu ul li {
	float: none;
	width: auto;
}

/*奇数番目のメニューの設定*/
nav#mainmenu ul li:nth-child(odd) {
	border-right-style: none;
}

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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h1.open,
section#openclose h1.open {
	background: url(../images/round1.png) no-repeat 10px center, url(../images/btn_minus.png) no-repeat right center, #0c54d7 url(../images/bg1.png);
}
section#new h1.close,
section#openclose h1.close {
	background: url(../images/round1.png) no-repeat 10px center, url(../images/btn_plus.png) no-repeat right center, #0c54d7 url(../images/bg1.png);
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	padding-left: 0;
	margin-bottom: 1em;
}
/*日付設定*/
#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;
}
/*メニュー折りたたみ設定*/
#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;
}
.pn {
	display: block;	/*PC環境で表示させない設定を表示させる*/
}
/*スマホとタブレットで表示させない設定*/
.stn {
	display: none;
}

}
