@charset "utf-8";


.clearfix::after{
  content: "";
  display: block;
  clear: both;
}


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
	border-top: 20px solid #0150d1;	/*ページ上部の線の幅、線種、色*/
}
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: #666;	/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #0150d1;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*container
---------------------------------------------------------------------------*/
#container {
	width: 1200px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 2%;		/*上下、左右へのボックス内の余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 100px;	/*高さ*/
}
/*ロゴ画像*/
header #logo {
	width: 302px;	/*ロゴ画像の幅*/
	float: left;	/*左に回り込み*/
	margin-top: 15px;	/*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
	margin-left: 0px;	/*ロゴの左にあける余白。*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
	float: right;		/*右に回り込み*/
	margin-top: 35px;	/*ブロックの上にあける余白。上下のバランスをここで調整して下さい。*/
	margin-right: 0px;	/*ブロックの右にあける余白。*/
}
/*TEL*/
.tel {
	letter-spacing: 0.2em;	/*文字間隔を広くする設定。通常がいいならこの行削除。*/
}
/*TELの受付時間の小文字部分*/
.tel span {
	display: block;
	font-size: 11px;	/*文字サイズを小さく*/
	letter-spacing: 0.1em;	/*文字間隔*/
	color: #666;			/*文字色*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 20%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
	display:  block;text-decoration: none;
	text-align: center;
	color: #0150d1;		/*文字色*/
	font-weight: bold;	/*太字に*/
	border-right: 1px solid #dcdcdc;	/*メニューの右側の線の幅、線種、色*/
	line-height: 1.6;	/*行間を少し狭く*/
	padding: 14px 0;	/*上下、左右へのメニュー内への余白*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #dcdcdc;	/*メニューの線の幅、線種、色*/
}
/*装飾文字の設定*/
#menubar li a span {
	text-shadow: none;display: block;
	font-size: 9px;			/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	color: #bbb;	/*文字色*/
}
/*マウスオン時と、現在表示中(current)メニューの設定*/
#menubar li a:hover,
#menubar li.current a {
	background: #0150d1;	/*背景色*/
	color: #fff;
}

/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*contents（３カラムを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	padding-top: 30px;		/*上に空けるボックス内の余白*/
	padding-bottom: 30px;	/*下に空けるボックス内の余白*/
}

/*mainコンテンツ（中央のブロック）
---------------------------------------------------------------------------*/
#main {
	width: 100%;		/*ブロックの幅*/
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 60px;
	padding: 5px 15px;	/*上下、左右への余白*/
	color: #FFF;	/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #0150d1;	/*背景色（古いブラウザ用）*/
	border: 1px solid #0150d1;		/*枠線の幅、線種、色*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.3);	/*影の設定。右・下・ぼかし幅。0,0,0は黒の事で0.4は透明度40%の事。*/
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 10px;				/*線とテキストとの余白*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
  text-align: center;
	margin-bottom: 50px;
	padding: 4px 15px;	/*上下、左右への余白*/
	color: #a27d37;		/*文字色*/
	font-size: 19px;	/*文字サイズ*/
}
#main h3.blue {
	clear: both;
  text-align: center;
	margin-bottom: 20px;
	padding: 4px 15px;	/*上下、左右への余白*/
	color: #0150d1;		/*文字色*/
	font-size: 23px;	/*文字サイズ*/
}

/*mainコンテンツのh4タグ設定*/
#main h4 {
	clear: both;
	margin-bottom: 20px;
	padding: 4px 15px;	/*上下、左右への余白*/
	color: #0150d1;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	background: #f1f1f1;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #eee 80%);		/*グラデーション*/
	box-shadow: 1px 2px 7px rgba(0,0,0,0.3);	/*影の設定。右・下・ぼかし幅。0,0,0は黒の事で0.3は透明度30%の事。*/
	border: 1px solid #FFF;		/*枠線の幅、線種、色*/
}
/*h3タグの１文字目への追加設定*/
#main h4::first-letter {
	border-left: 3px solid #0150d1;	/*左の線の幅、線種、色*/
	padding-left: 10px;				/*線とテキストとの余白*/
}
/*コンテンツの段落タグ設定*/
#main p {
	padding: 0px 15px 20px;	/*上、左右、下への余白*/
}
#main p.ctr {
  text-align: center;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*box*/
#main .box1{
	width: 1140px;		/*ブロックの幅*/
	margin: 0 auto 50px;
}
#main .box2{
	width: 960px;		/*ブロックの幅*/
	margin: 0 auto 50px;
	padding: 10px 0px 20px;
	background: #eee;
}
#main .box3{
	width: 1100px;		/*ブロックの幅*/
	margin: 0 auto 50px;
	padding: 10px 0px 20px;
	background: #eee;
}

/*lead*/
#main .lead1{
  text-align: center;
	margin:50px 0;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
  text-align: center;
	background: #0150d1;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 85%;	/*文字サイズ*/
}
footer a {color: #fff;}
footer a:hover {color: #fff;}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;
	width: 1200px;
	margin: 0 auto;
}
/*１行分の設定*/
#footermenu ul {
    padding: 0px;
    margin-left: 30px;
}

#footermenu ul li {
    display: inline;
    margin-right: 2em;
}

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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 20px;
	margin-bottom: 15px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	color: #0150d1;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #0150d1;	/*文字色*/
	padding-top: 15px;
}
.faq dt a {
	color: #0150d1;
}
/*回答の設定*/
.faq dd {
	overflow: hidden;
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
	padding-bottom: 15px;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 95%;
	margin: 0 auto 50px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: left;
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 80px;	/*アイコンからテキストにする場合はここの幅を大きく変更して下さい。pxでなく%での指定もOKです。*/
	height: 40px;
}
.ta1 td .specialbox img {
	vertical-align: middle;
}
.ta1 td .specialtext {
	float: left;
	width: 45%;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーグレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 50px;	/*幅*/
	line-height: 50px;	/*高さ*/
	bottom: 50px;	/*下から50pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}


/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	color: #0150d1;		/*文字色*/
	font-weight: bold;	/*太字に*/
}
.red {color: #ff0000;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #0150d1;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 15px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 18px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.mt5 {margin-top: 5px;}
.mt10 {margin-top: 10px;}
.mt15 {margin-top: 15px;}
.mt20 {margin-top: 20px;}
.mt25 {margin-top: 25px;}
.mt30 {margin-top: 30px;}
.mt35 {margin-top: 35px;}
.mt40 {margin-top: 40px;}
.mt45 {margin-top: 45px;}
.mt50 {margin-top: 50px;}
.mt55 {margin-top: 55px;}
.mt60 {margin-top: 60px;}
.mb5 {margin-bottom: 5px;}
.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb25 {margin-bottom: 25px;}
.mb30 {margin-bottom: 30px;}
.mb35 {margin-bottom: 35px;}
.mb40 {margin-bottom: 40px;}
.mb45 {margin-bottom: 45px;}
.mb50 {margin-bottom: 50px;}
.mb55 {margin-bottom: 55px;}
.mb60 {margin-bottom: 60px;}
.ml5 {margin-left: 5px;}
.ml10 {margin-left: 10px;}
.ml15 {margin-left: 15px;}
.ml20 {margin-left: 20px;}
.ml25 {margin-left: 25px;}
.ml30 {margin-left: 30px;}
.ml35 {margin-left: 35px;}
.ml40 {margin-left: 40px;}
.ml45 {margin-left: 45px;}
.ml50 {margin-left: 50px;}
.ml55 {margin-left: 55px;}
.ml60 {margin-left: 60px;}
.ml65 {margin-left: 65px;}
.ml70 {margin-left: 70px;}
.ml75 {margin-left: 75px;}
.ml80 {margin-left: 80px;}
.ml85 {margin-left: 85px;}
.ml90 {margin-left: 90px;}
.mr5 {margin-right: 5px;}
.mr10 {margin-right: 10px;}
.mr15 {margin-right: 15px;}
.mr20 {margin-right: 20px;}
.mr25 {margin-right: 25px;}
.mr30 {margin-right: 30px;}
.mr35 {margin-right: 35px;}
.mr40 {margin-right: 40px;}
.mr45 {margin-right: 45px;}
.mr50 {margin-right: 50px;}
.mr55 {margin-right: 55px;}
.mr60 {margin-right: 60px;}

/*GoogleMap*/
.ggmap iframe {
	width: 480px;
	height: 360px;
	float: left;
}


/*事業内容リスト
---------------------------------------------------------------------------*/

.col_business_list {
	width: 100%;
	margin: 0 auto 50px auto;
	padding: 0;
}

.box_business_list {
	width: 48%;
	margin: 0 4% 0 0;
	padding: 0;
	float: left;
}

.box_business_list:last-child {
	margin: 0;
}

#main .box_business_list h4 {
	margin: 0;
	padding: 5px 0;
	background: none;
	border: none;
	box-shadow: none;
	color: #FFF;
	font-size: 18px;
	text-align: center;
	background-color: #727071;
}

#main .box_business_list h4::first-letter {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	box-shadow: none;
}

.boxlead_business_list {
	margin: 0 auto;
	padding: 20px 0;
	border: 1px solid #727071;
}

dl.list_business_list {
	width: 90%;
	margin: 0 auto 15px auto;
	padding: 0;
}

dl.list_business_list:last-child {
	margin: 0 auto;
}

dl.list_business_list dt {
	width: 30%;
	margin: 0 10% 0 0;
	padding: 0;
	color: #FFF;
  text-align: center;
	background-color: #727071;
	float: left;
}

dl.list_business_list dd {
	width: 60%;
	margin: 0;
	padding: 0;
	float: left;
}

.boxlead_business_list2 {
	margin: 0 auto;
	padding: 68px 0;
	text-align: center;
	border: 1px solid #727071;
}

.boxlead_business_list3 {
	margin: 0 auto;
	padding: 28px 0 28px 20px;
	text-align: left;
	border: 1px solid #727071;
}

/*リクルート*/
.lead_recruit {
	color: #444;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
}
.btn_contact {
	width: 440px;
	margin: 0 auto;
}

.btn_contact a {
	-moz-box-shadow:inset 0px 0px 0px 0px #54a3f7;
	-webkit-box-shadow:inset 0px 0px 0px 0px #54a3f7;
	box-shadow:inset 0px 0px 0px 0px #54a3f7;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #007dc1), color-stop(1, #0061a7));
	background:-moz-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-webkit-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-o-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:-ms-linear-gradient(top, #007dc1 5%, #0061a7 100%);
	background:linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#007dc1', endColorstr='#0061a7',GradientType=0);
	background-color:#007dc1;
	-moz-border-radius:9px;
	-webkit-border-radius:9px;
	border-radius:9px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:18px;
	font-weight: bold;
	padding:10px 40px;
	text-decoration:none;
	text-shadow:0px 0px 0px #154682;
}
.btn_contact a:hover {
	color:#ffffff;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0061a7), color-stop(1, #007dc1));
	background:-moz-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:-webkit-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:-o-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:-ms-linear-gradient(top, #0061a7 5%, #007dc1 100%);
	background:linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0061a7', endColorstr='#007dc1',GradientType=0);
	background-color:#0061a7;
}
.btn_contact a:active {
	position:relative;
	top:1px;
}
