@charset "utf-8";


/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul{list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

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

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	background: #000080;	/*背景色*/
	position: fixed;	/*画面上部に固定表示させる設定。不要ならこの１行削除。*/
	height: 150px;	/*ヘッダーの高さ*/
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.4);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 0px 6px rgba(0,0,0,0.4);			/*同上*/
    z-index: 100;
}
/*ロゴ画像の設定*/
header #logo {
	width: 130px;	/*ブロック幅*/
	float: left;	/*左に回りこみ*/
	padding: 10px;	/*ロゴブロック内の余白*/
	background: #87ceeb;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#87ceeb), to(#0066ff));	/*グラデーション*/
	background: -webkit-linear-gradient(#87ceeb, #0066ff);	/*同上*/
	background: linear-gradient(#87ceeb, #0066ff);			/*同上*/
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);			/*同上*/
}
/*header-company
---------------------------------------------------------------------------*/
.header-company {
	width: 100%;	/*幅*/
	height: 100px;
	margin: 0 auto;
	background-image: url(../images/header-company.jpg);background-repeat: no-repeat;
}
/*header-business
---------------------------------------------------------------------------*/
.header-business {
	width: 100%;	/*幅*/
	height: 100px;
	margin: 0 auto;
	background-image: url(../images/header-business.jpg);background-repeat: no-repeat;
}
/*header-contact
---------------------------------------------------------------------------*/
.header-contact {
	width: 100%;	/*幅*/
	height: 100px;
	margin: 0 auto;
	background-image: url(../images/header-contact.jpg);background-repeat: no-repeat;
}


/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 980px;	/*幅*/
	margin: 0 auto;
}


/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/* -------------------- */
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.ddmenu {
   margin: 0px;               /* メニューバー外側の余白(ゼロ) */
   padding: 0px 0px 0px 15px; /* メニューバー内側の余白(左に15px) */
   background-color: #000080; /* バーの背景色(濃い青色) */
}

/* -------------------------- */
/* ▼メインメニュー項目の装飾 */
/* -------------------------- */
ul.ddmenu li {
   width: 125px;          /* メニュー項目の横幅(125px) */
   display: inline-block; /* ★横並びに配置する */
   list-style-type: none; /* ★リストの先頭記号を消す */
   position: relative;    /* ★サブメニュー表示の基準位置にする */
}
ul.ddmenu a {
   background-color: #000080; /* メニュー項目の背景色(濃い青色) */
   color: white;              /* メニュー項目の文字色(白色) */
   line-height: 40px;         /* メニュー項目のリンクの高さ(40px) */
   text-align: center;        /* メインメニューの文字列の配置(中央寄せ) */
   text-decoration: none;     /* メニュー項目の装飾(下線を消す) */
   font-weight: bold;         /* 太字にする */
   display: block;            /* ★項目内全域をリンク可能にする */
}
ul.ddmenu a:hover {
   background-color: #ccffff; /* メニュー項目にマウスが載ったときの背景色(白色) */
   color: #00008b;            /* メニュー項目にマウスが載ったときの文字色(濃い青色) */
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
ul.ddmenu li:hover ul {
   display: block;      /* ★マウスポインタが載っている項目の内部にあるリストを表示する */
}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
ul.ddmenu ul {
   margin: 0px;         /* ★サブメニュー外側の余白(ゼロ) */
   padding: 0px;        /* ★サブメニュー内側の余白(ゼロ) */
   display: none;       /* ★標準では非表示にする */
   position: absolute;  /* ★絶対配置にする */
}

/* ------------------------ */
/* ▼サブメニュー項目の装飾 */
/* ------------------------ */
ul.ddmenu ul li {
   width: 135px;               /* サブメニュー1項目の横幅(135px) */
   border-top: 1px solid pink; /* 項目上側の枠線(ピンク色で1pxの実線) */
}
ul.ddmenu ul li a {
   line-height: 35px;     /* サブメニュー1項目の高さ(35px) */
   text-align: left;      /* 文字列の配置(左寄せ) */
   padding-left: 5px;     /* 文字列前方の余白(5px) */
   font-weight: normal;   /* 太字にはしない */
}
ul.ddmenu ul li a:hover {
   background-color: #ff9900; /* サブメニュー項目にマウスが載ったときの背景色(淡い黄色) */
   color: #005500;            /* サブメニュー項目にマウスが載ったときの文字色(濃い緑色) */
}


/*contents
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	width: auto;
	padding: 50px 0px;
}

table.business {
	border-collapse: collapse;
	width:80%;
}
table.business th.t_top {
    border-top: #be1309 4px solid;
}
table.business th {
	border-bottom: #e3e3e3 1px dotted;
	text-align: left;
	padding: 10px;
	font-weight: normal;
}
table.business td.t_top {
	border-top: #b3b3b3 4px solid;
}
table.business td {
	border-bottom: #e3e3e3 1px dotted;
	text-align: left;
	padding: 10px;
}
#bus1,#bus2,#bus3,#bus4,#bus5,#bus6,#bus7 {
    padding-top: 180px;
    margin-top: -180px;
}


table.company td {
	background: #f8f8f8;
	width: 360px;
	padding-left: 20px;
}
table.company {
	width: 500px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0px 15px;
	font-size: 18px;
}

table.company th,
table.company td {
	padding: 10px 10px 10px 20px;
}

table.company th {
	background: #295890;
	vertical-align: middle;
	text-align: left;
	width: 100px;
	overflow: visible;
	position: relative;
	color: #fff;
	font-weight: normal;
	font-size: 15px;
}

table.company th:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-left-color: #295890;
	border-width: 10px;
	margin-top: -10px;
}

table.survice {
	width: 900px;
	padding: atuo;
	text-align: center;
}

table.survice td {
	width: 320px;
	padding: 10px;
}

table.survice td.photo {
	background: #0000ff;
   border: 1px dotted #FFFFFF;
}

table.survice td.info {
	background: #FFFFFF
	color:#0000ff;
	font-size: 16px;	/*文字サイズ*/
   border: 1px dotted #0000ff;
}

h1.survice-ttl {
	font-size: 18px;	/*文字サイズ*/
	background: linear-gradient(transparent 75%, #a7d6ff 75%);
}

table.contact {
	width: 500px;
	margin: 0 auto;
	font-size: 18px;
	vertical-align: middle;
}

table.contact td {
	width: 360px;
	padding-left: 20px;
}

table.contact th,
table.contact td {
	padding: 10px 10px 10px 20px;
}

table.contact th {
	vertical-align: middle;
	text-align: left;
	width: 100px;
	overflow: visible;
	position: relative;
}


/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	max-width: 980px;
	margin: 0 auto;
	padding-top: 40px;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;
	background: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px 4px 0px 0px;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #666;	/*背景色*/
	color: #FFF;			/*文字色*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #222;	/*背景色*/
	color: #fff;		/*文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none !important;
	color: #fff;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #000;border-radius: 4px;color: #fff;padding: 5px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #000080;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.bg1 {background: #ebe7e0;overflow: hidden;}
.pt150 {padding-top: 180px !important;}
