@charset "utf-8";



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

/*全体の設定
---------------------------------------------------------------------------*/
html,body { height:auto; position: relative;}
body {
	margin: 0px;
	padding: 0px;
	color:#FFF;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background:url(../images/background.jpg) no-repeat center center;
	background-size:cover;
	background-attachment: fixed;
	-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%;font-weight: normal;}
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;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #000;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

.tabelog{
	margin-left: 15px;
}


/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width:100%;
	max-width: 1180px;	/*サイトの最大幅*/
	margin: 0 auto;
}

.tel{border-bottom:3px solid;
padding-bottom:10px;
border-color: rgba( 255, 255, 255, 0.3 );}

.box-parlent{
margin:0 auto;
font-size:13px;
padding-top:40px;
display:table;}

.box-child_l{ display:table-cell;
/* border-right:solid 3px; */
margin:0 auto;
width:500px;
padding-top:150px;
padding-bottom:150px;
text-align:center;
border-color: rgba( 255, 255, 255, 0.3 );
/* padding-right:110px; */
}

.box-child_r{ display:table-cell;
margin:0 auto;
width:600px;
padding-top:150px;
padding-bottom:150px;
text-align:center;
padding-left:110px;}

.reruit {
width: 54%;
margin: 60px auto 30px auto;
/* padding-left: 14.6%; */
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.reruit .item {
width: 48%;
margin-bottom: 20px;
border: 1px solid #fff;
border-radius: 5px;
}

.reruit .item a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 5px 0;
	font-size: 16px;
	text-align: center;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	box-sizing: border-box;
}

.reruit p {
	width: 100%;
	padding-bottom: 10px;
	font-size: 18px;
	text-align: center;
}

.reruit .item a:hover {
	background-color: rgba( 255, 255, 255, 0.3 );
}

@media screen and ( max-width : 640px ){
	.reruit {
		width: 100%;
		margin: 0 auto;
		padding: 2.5% 2.5% 1% 2.5%;
		box-sizing: border-box;
		position: fixed;
		bottom: 0%;
		left: 50%;
		transform: translateX(-50%);
		background-color: rgba( 255, 255, 255, 0.3 );
		}

		.reruit .item {
		width: 48%;
		margin-bottom: 10px;
		border: 1px solid #fff;
		border-radius: 5px;
		}

		.reruit .item a {
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: rgba( 0, 0, 0, 0.6 );
		}

		.reruit p {
			font-size: 16px;
		}
}
/*コンテンツ
---------------------------------------------------------------------------*/

/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	padding: 20px;	/*ボックス内の余白*/
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
	margin: 0 20px;	/*上下、左右へのボックス外にあけるスペース*/
	line-height: 1.5;
}
/*１つ目のlistボックス（古いブラウザは適用されません）*/
.list:first-of-type {
	border-top: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
}
/*奇数番目のlistボックス*/
.list:nth-child(odd) {
	background: #fafafa;	/*奇数番目だけ背景色をつける*/
}
/*bg1の背景色のついたボックス内でのlistボックス*/
.bg1 .list {
	background: #fff;	/*背景色*/
}
/*ボックスにリンクをはった場合*/
.list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 20px;	/*ボックス内の余白。.listのpaddingと合わせる。*/
	margin: -20px;	/*.listのpaddingと二重になってしまう分をここでリセット。*/
}
/*マウスオン時の背景色*/
.list a:hover {
	background: #f9f9de;	/*背景色*/
}
/*リンクを貼った際に出る「→」マーク*/
.list a::before {
	content: "→";	/*出力する文字。変更しても構いませんが機種依存文字は化けるので使わないで下さい。*/
	font-size: 12px;	/*文字サイズ*/
	display: block;
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 20px;	/*ボックスの下から20pxの場所に配置*/
	width: 30px;	/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	background: #333;	/*背景色*/
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸のサイズ。50%にすると円になる。*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
.list a:hover::before {
	background: #000;	/*マウスオン時の「→」マークの背景色*/
}
/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 20px;	/*文字サイズ*/
	color: #000;	/*文字色*/
	margin-bottom: 10px;
}
/*ボックス内のp(段落)タグ設定*/
.list p {
	padding: 0 20px 0 0 !important;	/*ここの20pxは上の「→」マークと文字が重ならないようにする為設定しています。*/
}
/*ボックス内の画像*/
.list figure img {
	float: left;	/*左に回り込み*/
	width: 10%;		/*幅*/
	height: auto;		/*高さ*/
	border-radius: 8px;	/*角丸のサイズ*/
	margin-right: 20px;	/*画像右側にあけるスペース*/
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
.sub {
	float: left;	/*左に回り込み*/
	width: 24%;		/*幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	border-radius: 0;
	margin-bottom: 0;
	background: #999;
	text-align: center;	/*内容をセンタリング*/
}
/*subコンテンツ内の段落タグ設定*/
.sub p {
	padding: 0 !important;
	margin: 0 !important;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #dcdcdc;	/*上の線の線種、幅、色*/
	text-align: center;		/*文字をセンタリング*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
	border-left: solid 1px #dcdcdc;		/*左の線の線種、幅、色*/
	border-right: solid 1px #dcdcdc;	/*右の線の線種、幅、色*/
	background: #fff;	/*背景色*/
}
/*h2直下にsubmenuが続いた場合のみ、submenuの上の線を消す設定*/
.sub h2 + ul.submenu {
	border-top: none;
}

/*subコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	overflow: hidden;
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: solid 1px #dcdcdc;	/*線の線種、幅、色*/
	background: #fafafa;	/*背景色*/
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
.sub h2 + .box1 {
	border-top: none;
}
/*box1内のサブメニュー*/
.sub ul.submenu {
	margin-bottom: 0;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width:100%;
	margin:0 auto;
	clear: both;
	color: #fff;		/*文字色*/
	font-size: 85%;		/*文字サイズ*/
	text-align:center;
}
footer a {
	color: #fff;	/*リンクテキストの文字色*/
	text-decoration: none;
}
footer a:hover {
	color: #fff;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

@media screen and ( max-width : 640px ){
	footer {
		margin-bottom: 150px;
	}
}


/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background-color: rgba( 58, 41, 16, 0.6 );
	padding:15px 0;
	color: #ccc;		/*文字色*/
	margin-bottom:10px;
}

.copyright{ padding:20px 0;}


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


/*その他
---------------------------------------------------------------------------*/
.bg1 {background: #f0f0f0;}
.look {background: #eee;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #000;}
.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: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
figure.item {padding: 0px 20px 20px;text-align: center;}




/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and ( max-width : 640px ){

html,body {height:auto;}

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
	background:url(../images/background.jpg) no-repeat center center;
	background-attachment: fixed;
	background-size:cover;
}

.tel{border-bottom:3px solid;
padding-bottom:10px;
border-color: rgba( 255, 255, 255, 0.3 );}

.box-parlent{
margin:0 auto;
font-size:13px;
padding-top:40px;
display:block;}

.box-child_l{ display:block;
border-right:solid 0px;
border-bottom: solid 3px;
width:80%;
margin:0 auto;
padding-top:50px;
padding-bottom:50px;
text-align:center;
border-color: rgba( 255, 255, 255, 0.3 );
padding-right:0px;}

.box-child_r{ display:block;
margin:0 auto;
width:80%;
padding-top:50px;
padding-bottom:100px;
text-align:center;
padding-left:0px;}


/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	padding: 20px 10px;	/*上下、左右に空けるボックス内の余白*/
}
/*コンテンツのh2タグの設定*/
.contents h2 {
	font-size: 15px;	/*文字サイズ*/
	padding: 5px 10px;	/*上下、左右への余白*/
}
/*コンテンツのh3タグの設定*/
.contents h3 {
	font-size: 15px;	/*文字サイズ*/
	padding: 3px 10px;	/*上下、左右への余白*/
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}


/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.fl-half{float:none;width:100%;margin-left:0;}

}
