@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	font: 16px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォントファミリー*/
	color: #444;		/*全体の文字色*/
	background: #fff;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul,ol{
	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;
}
section {
	/* overflow:hidden; */
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #444;	/*リンクテキストの色*/
}
a:hover {
	/* color: #0029c3;			/*マウスオン時の文字色*/
	color: #000088;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 100%;	/*コンテナー幅*/
	margin: 0px auto;
}

/*インナー（990pxに整えるブロック）
---------------------------------------------------------------------------*/
.inner {
	width: 990px;	/*コンテナー幅*/
	margin: 0px auto;
	position: relative;
}

/*h1タグ
---------------------------------------------------------------------------*/
h1 {
	font-size: 10px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする設定*/
	text-align: right;		/*文字を右寄せ*/
	line-height: 20px;		/*行間*/
  padding-right: 10px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	height: 120px;	/*高さ*/
	/* background: #0029c3 url(../images/header_bg.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
	background: #000088 url(../images/header_bg.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
	/* border-radius: 8px 8px 0px 0px;	/*左上、右上、右下、左下への角丸のサイズ*/
	position: relative;
}
/*トップページのヘッダーブロック*/
#bdTop header {
	/* background: #0029c3 url(../images/header_bg_top.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
/*
	background: #000088 url(../images/header_bg_top.png) no-repeat left bottom;
	height: 312px;
*/
}
/*ロゴ画像*/
header #logo img {
	position: absolute;
	left: 40px;	/*ヘッダーブロックに対して左から40pxの場所に配置*/
	top: 25px;	/*ヘッダーブロックに対して上から25pxの場所に配置*/
}
/*トップページのロゴ画像*/
#bdTop header #logo img {
/*
	position: absolute;
	left: 40px;	*ヘッダーブロックに対して左から40pxの場所に配置*
	top: 50px;	/*ヘッダーブロックに対して上から50pxの場所に配置*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への設定*/
nav#menubar {
	/* border: 1px solid #0029c3;	/*線の幅、線種、色*/
	/*border: 1px solid #000088;	/*線の幅、線種、色*/
	border-bottom: 1px solid #ddd;	/*線の幅、線種、色*/
	/* border-radius: 0px 0px 8px 8px;		/*左上、右上、右下、左下への角丸のサイズ*/
	background: #FFF;	/*背景色（※古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
}
/*メニューブロックの中のulタグへの設定*/
nav#menubar ul {
	height: 60px;	/*高さ*/
	width: 960px;	/*幅*/
	width: auto;
	margin-left: 13px;	/*左側に空けるスペース*/
	border-left: 1px solid #d6d6d6;	/*左側の線の幅、線種、色*/
	/* border-right: 1px solid #fff;	/*右側の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 158px;	/*幅*/
	height: 60px;	/*高さ*/
	width:auto;
	text-align: center;	/*文字をセンタリング*/
	font-size: 13px;	/*文字サイズ*/
  line-height: 1.3;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	border-right: 1px solid #d6d6d6;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #fff;		/*左側の線の幅、線種、色*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	padding: 8px 9px;		/*メニュー内の上下、左右へとる余白*/
	/* background: url(../images/mark1.png) no-repeat 3px center;	/*矢印マークの読み込み。リピートさせず、左から15px、上下中央の配置。*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	border-left: 1px solid #fff;	/*左側の線の幅、線種、色*/
}
/*マウスオン時の設定*/
nav#menubar ul li:hover {
	background: #fff;	/*背景色*/
}
/*装飾用文字の設定*/
nav#menubar ul li span {
	display: block;
	/* color: #0029c3;		/*文字色*/
	color: #000088;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	-webkit-text-size-adjust: none;
	margin-top: -8px;	/*少し上にずらす設定*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: 990px;	/*コンテナー幅*/
	clear: both;
  margin: 0 auto;
	padding-top: 25px;	/*メニューブロックとコンテンツとの間に空ける余白*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 20px;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*メインコンテンツ（左側ブロック）
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に流し込み*/
	width: 730px;	/*コンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 20px;	/*文字サイズ*/
	color: #00008C;		/*文字色*/
	/* background: #0029c3 url(../images/mark2.png) no-repeat 15px center;	/*背景色とマーク画像の読み込み*/
	background: #fff url(../images/mark2.png) no-repeat 0px 15px;	/*背景色とマーク画像の読み込み*/
	padding: 10px 5px 10px 40px;	/*上下、左右への余白*/
	border-radius: 8px;	/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
	font-weight: bold;	/*hタグのデフォルトの太字を標準にする*/
}
/*mainコンテンツの新着情報のh2タグの設定*/
#main .news h2 {
	margin-bottom: 0;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: #FFF;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	border-left:8px solid #008;
	border-radius: 0;		/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
	font-weight: bold;	/*hタグのデフォルトの太字を標準にする*/
}
/*mainコンテンツのh4タグの設定*/
#main .sectionDay h4 {
	/* border-left:3px solid #008; */
	padding:2px 0 2px 10px;
	/* font-weight:normal; */
	color:#008;
	clear:both;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*上、左右、下への余白*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}

#main a img:hover {
	opacity:0.8;
}
/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section {
	margin-bottom:2em;
	overflow:hidden;
}
/*各ボックスの設定*/
#bdRecruit #main section {
	margin-bottom:0.5em;
}
#main section.list {
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	/* margin-bottom: 30px;	/*ボックスの下に空ける余白*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);										/*同上*/
	background: linear-gradient(#FFF, #ebebeb);												/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
}
/*ボックス内の写真設定*/
#main section.list figure {
	float: left;	/*画像を左へ回り込み*/
	width: 30% !important;		/*写真の幅*/
	height:auto;
	margin-right: 1%;		/*写真の右側に空ける余白*/
}
#main section.list figure img {
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.news h4,
#main section.list h4 {
	font-size: 110%;
	margin-bottom: 0.5em;
	/* color: #0029c3;		/*文字色*/
	color: #000088;		/*文字色*/
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
#main section.news h4 {
	font-size:95%;
	margin-left:0.5em;
	clear:both;
}
/*ボックス内のh4タグの１文字目への設定*/
#main section.news h4::first-letter,
#main section.list h4::first-letter {
	/*border-left: 3px solid #0029c3;	/*左側の線の幅、線種、色*/
	border-left: 3px solid #000088;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/
}
/*リンクの設定*/
#main section.list a {
	padding: 15px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時のボックス*/
#main section.list a:hover {
	background: #fff;	/*背景色*/
}
/*h4タグ直下に画像がある場合の段落タグ設定*/
#main section.list h4 + figure ~ p {
	margin-left: 34%;	/*左側の写真幅とのバランスをとって設定*/
}
/*h4タグ直下に画像がある場合のtableタグ設定*/
#main section.list h4 + figure ~ table {
	/*margin-left: 34%;	/*左側の写真幅とのバランスをとって設定*/
	/*width: 65%;			/*テーブル幅*/
}

/*求人情報ページのh4
---------------------------------------------------------------------------*/
#bdRecruit h4 {
	color: #00008C;		/*文字色*/
	border-left:3px solid #00008C;
	padding:0px 10px;
}

/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list table {
	font-size: 12px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	/*width: 100%;			/*テーブル幅*/
	width: 68% !important;			/*テーブル幅*/
	float:right;
	margin-bottom: 5px;
}
#main section.list table,
#main section.list table td,
#main section.list table th{
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
}
#main section.list table td,
#main section.list table th{
	padding: 1%;	/*テーブル内の余白*/
	line-height:1.5em;
}
/*色のついた見出しブロック*/
#main section.list table th{
	width: 10%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #dfe0c8;	/*背景色*/
}
/*白い説明用ブロック*/
#main section.list table td {
	width: 35%;	/*幅*/
}

#main section.list .swiper-container {
	float: left;	/*画像を左へ回り込み*/
	width: 30%;		/*写真の幅*/
	margin-right: 0;		/*写真の右側に空ける余白*/
}



/*引用文
---------------------------------------------------------------------------*/
#main blockquote {
	background-color:#F9F9F9;
	margin-bottom:1em;
	border:1px solid #eee;
	display:block;
	border-radius:10px;
}

/*商品詳細ページの画像切り替え
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
}
/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index:2;
	position:relative;
	overflow:hidden;
}
/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index:1;
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
}
/*サムネイル画像*/
.thumbnail {
	width: 100px;	/*画像の幅*/
	height: 100px;	/*画像の高さ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;
}
.thumbnail:hover {
	border: 1px solid #000;	/*マウスオン時の枠線の幅、線種、色*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 230px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
	font-size: 14px;	/*文字サイズ*/
}
/*subコンテンツ内のnavタグ設定*/
#sub nav {
	border:1px solid #d1d1d1 !important;
	/* border:2px solid #fc8d83 !important; */
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	padding-bottom: 10px;		/*下への余白*/
	background-image:url(../images/mark_yoshi.png);
	background-repeat:no-repeat;
  background-size:30px;
	padding-left:36px;	
}
/*subコンテンツのh2タグの１文字目への設定*/
/* #sub h2::first-letter {
	/* border-left: 3px solid #0029c3;	/*左側のアクセント用ラインの幅、線種、色*/
	/* border-left: 3px solid #000088;	/*左側のアクセント用ラインの幅、線種、色*/
	/* padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
/* } */
#sub a img:hover {
	opacity:0.8;
}
#sub .more {
	text-align:right;
}
#sub .more img {
	width:40px;
	height:20px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #e4e4e4;	/*背景色*/
	background: rgba(0,0,0,0.02);	/*背景色。rgbaは色設定で0,0,0は黒。0.02は透明度2%の事。*/	
	border: solid 1px #d1d1d1;	/*線の線種、幅、色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}

#bdTop #sub .box1 ul.submenu li a.subnvTop,
#bdCompany #sub .box1 ul.submenu li a.subnvCompany,
#bdNurse #sub .box1 ul.submenu li a.subnvNurse,
#bdHelper #sub .box1 ul.submenu li a.subnvHelper,
#bdSupport #sub .box1 ul.submenu li a.subnvSupport,
#bdRehabili #sub .box1 ul.submenu li a.subnvRehabili,
#bdDaytera #sub .box1 ul.submenu li a.subnvDay,
#bdDayhoso #sub .box1 ul.submenu li a.subnvDay,
#bdDayhiga #sub .box1 ul.submenu li a.subnvDay,
#bdDaysato #sub .box1 ul.submenu li a.subnvDay,
#bdDayryoke #sub .box1 ul.submenu li a.subnvDay,
#bdConsul #sub .box1 ul.submenu li a.subnvConsul,
#bdRecruit #sub .box1 ul.submenu li a.subnvRecruit,
#bdInquiry #sub .box1 ul.submenu li a.subnvInquiry,
#bdPolicy #sub .box1 ul.submenu li a.subnvPolicy,
#bdSitemap #sub .box1 ul.submenu li a.subnvSitemap,
#sub .box1 ul.submenu li a:hover,
#sub .box2 ul.submenu li a.active,
#sub .box2 ul.submenu li a:hover {
	/* border-right:10px solid #fc8d83; 
	background:-moz-linear-gradient( center top, #fc8d83 5%, #e4685d 100% );
	background:-ms-linear-gradient( top, #fc8d83 5%, #e4685d 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc8d83', endColorstr='#e4685d');
	background:-webkit-gradient( linear, left top, left bottom, color-stop(5%, #fc8d83), color-stop(100%, #e4685d) );
	background-color:#fc8d83;
	*/
	background-color:#008;
	color:#ffffff;
	background-image:url(../images/mark3.png);
	background-size:15px 15px;
	background-repeat:no-repeat;
	background-position:95% center;
}
#sub .box1 h3 {
	font-size:90%;
	line-height:140%;
	margin-bottom:0.5em;
	color:#222;
}
#sub .box1 p {
	line-height:140%;
	margin-left:1em;
}

#sub .box1 span.ib {
	display:inline-block;
	width:100%;
	text-align:right;
}

/*サブコンテンツ　物件ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub section.list {
	font-size: 11px;	/*文字サイズ*/
	width: 100%;		/*ボックスの幅*/
	border-bottom: 1px solid #d1d1d1;	/*下の線の幅、線種、色*/
	border-left: 1px solid #d1d1d1;		/*左の線の幅、線種、色*/
	border-right: 1px solid #d1d1d1;	/*右の線の幅、線種、色*/
	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
}
#sub section.list a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時の設定*/
#sub section.list a:hover {
	background: #fff;	/*背景色*/
}
/*１つめにあたるボックスの設定*/
#sub > section.list:first-of-type,
#sub h2+section.list {
	border-top: 1px solid #d1d1d1;	/*上の線の幅、線種、色*/
}
/*h4見出しタグ*/
#sub section.list h4 {
	/* color: #0029c3 !important;		/*文字色*/
	color: #000088 !important;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*サムネイル画像設定*/
#sub section.list figure {
	float: left;	/*左に回り込みさせる設定*/
	width: 25%;		/*幅*/
	margin-right: 5px;	/*画像の右側に空けるスペース*/
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;
	font-size: 13px;	/*文字サイズ*/
}
#footermenu li {
	display: inline;
	padding: 5px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width: 100%;
	clear: both;
	text-align: center;
	/* background: #0029c3;	/*背景色*/
	background: #000088;	/*背景色*/
	color: #fff;			/*文字色*/
	/* border-radius: 8px;		/*角丸のサイズ*/
	margin-bottom: 0px;
	padding: 10px 0px;
}
footer .pr {
	display: block;
	font-size: 70%;
}
footer a {
	text-decoration: none;
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr a,
footer .pr a:hover {
	color: #aaa;	
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new {
	margin-bottom: 15px;
	/* width:49%; */
	width:100%;
	float:right;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	padding-left: 10px;
	padding-right: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 7em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-left: 7.5em;
}

/* スクロールバー設定 */
.koushin {
  overflow-y:auto;
	width:98%; height:450px;
	padding:1%;
	margin-bottom:0.5em;
	border:1px solid #dadada;
}
/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
	font-size:15px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 150px;
	padding: 10px;
	text-align: center;
	background: #f0f0f0;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: center;
	color: #FFF;	/*文字色*/
	background: #6f6f6f;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#6f6f6f), to(#5c5c5c));	/*グラデーション*/
	background: -webkit-linear-gradient(#6f6f6f, #5c5c5c);	/*同上*/
	background: linear-gradient(#6f6f6f, #5c5c5c);			/*同上*/
	white-space:nowrap;
}

/*テーブル見出しのspanタグ*/
.ta1 th span{
	font-size:80% !important;
}

/*テーブル１行目に入った見出し部分　（求人情報用）*/
.ta1 th.tamidashi_on,
.ta1 th.tamidashi_off {
	width: auto;
	text-align: left;
	color: white;	
	white-space:nowrap;
	border:none;
	/* font-size:18px; */
	padding:0.5em 1em;
}

/* エントリーフォームのtd内のpタグ */
.ta1 td p {
	padding-top:0 !important;
	padding-bottom:0 !important;
	padding-left:0 !important;
}
/* エントリーフォームのtd内のpタグ */
.ta1 td p.midashi {
	font-weight:bold;
}

/* 現在募集中 */
.ta1 th.tamidashi_on{
	background: #ff7f04; /* Old browsers */
	background: -moz-linear-gradient(left, #ff7f04 23%, #ffdfbf 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ff7f04 23%,#ffdfbf 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ff7f04 23%,#ffdfbf 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7f04', endColorstr='#ffdfbf',GradientType=1 ); /* IE6-9 */
}
/* 募集なし */
.ta1 th.tamidashi_off{
background: #003e7c; /* Old browsers */
background: -moz-linear-gradient(left, #003e7c 0%, #d6d4fc 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #003e7c 0%,#d6d4fc 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #003e7c 0%,#d6d4fc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003e7c', endColorstr='#d6d4fc',GradientType=1 ); /* IE6-9 */
	/* color: #222;	*/
}

/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 100px;
	height: 40px;

}
.ta1 td .specialbox img {
	vertical-align: middle;
}
.ta1 th.wdt9em {
	width:9em !important;
}
.ta1.th1 th {
	vertical-align:top;
}

/*テーブル　求人情報用
---------------------------------------------------------------------------*/
.taReq {
	font-size:14px;
	width: 95%;
	margin: 1em;
	margin-bottom:2em;
	background: #fff;	/*背景色*/
}
.taReq, .taReq td, .taReq th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の行*/
.taReq tr:hover{
	padding: 0 10px;
	background: #B3B3FF;	/*背景色*/
}
/*テーブル内の右側*/
.taReq td{
	width: 44%;
	padding: 0 10px;
}
/*テーブル内の左側*/
.taReq th{
	width: 45%;
	padding: 5px 10px;
	text-align: center;
	background: #f0f0f0;	/*背景色*/
}
/*テーブル内の1列目*/
.taReq th.col1{
	width: 300px;
}
/*テーブル内の2列目*/
.taReq th.col2{
	width: 200px;
}
/*テーブル１行目に入った見出し部分*/
.taReq th.tamidashi{
	width: auto;
	text-align: center;
	color: #FFF;	/*文字色*/
	background: #6f6f6f;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#6f6f6f), to(#5c5c5c));	/*グラデーション*/
	background: -webkit-linear-gradient(#6f6f6f, #5c5c5c);	/*同上*/
	background: linear-gradient(#6f6f6f, #5c5c5c);			/*同上*/
	white-space:nowrap;
}
/*こだわりアイコンのフロート指定(CMS用)*/
.taReq td .specialbox {
	float: left;
	width: 100px;
	height: 40px;

}
.taReq td .specialbox img {
	vertical-align: middle;
}
.taReq th.wdt9em {
	width:9em !important;
}

/* 求人情報　求人一覧表
---------------------------------------------------------------------------*/
.joblist table {
	width: 96%;
	margin: 15px auto;
	background: #fff;	/*背景色*/
	font-size:96%;
}
.joblist td, .joblist th{
	border: 1px solid #ddd;	/*テーブルの枠線の幅、線種、色*/
	border-left:none;
	border-right:none;
}
/*テーブル内のデータセル*/
.joblist td{
	padding: 5px 10px;
}
/*テーブル内の見出しセル*/
.joblist th{
	padding: 8px 10px;
	text-align: center;
	background: #f0f0f0;	/*背景色*/
	font-weight:normal;
	line-height:1em;
	font-size:90%;
}
.joblist th.midashi{
	width:50%;
}
/*募集状況*/
.joblist td.on { 
	color:red;
	font-weight:bold;
	font-size:100%;
}  /* 募集中 */
.joblist td.off { color:#bbb; } /* 募集なし */

.joblist td a.btn {
  position: relative;
  display: inline-block;
  /* font-weight: bold; */
	font-size:90%;
	line-height:1em;
  padding: 0.5em 0.5em;
  text-decoration: none;
  transition: .4s;
	border:1px solid #ddd;
	border-radius:4px;
  color: #00008C;
  background: #ECECEC;
}

.joblist td a.btn:hover {
  background: #00008C;
  color: white;
}

/* お問合わせ・エントリーフォームの設定
---------------------------------------------------------------------------*/
input[type="text"] {
	width: 96% !important;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする設定*/
	border: 1px solid #ddd;	/*枠線の幅、線種、色*/
}
select {
	width: auto;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	border: 1px solid #ddd;	/*枠線の幅、線種、色*/
}
textarea {
	width: 96% !important;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	border: 1px solid #ddd;	/*枠線の幅、線種、色*/
	display:block;
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",sans-serif;
}

/* 希望勤務先　段組み3段 */
ul.list-3 {
	margin:0.2em 0 0 0.5em;
	overflow:hidden;
	list-style:none;
	padding:0;
}
ul.list-3 li {
	width:170px;
	float:left;
}
ul.list-3.last {
	margin-bottom:0;
}

/*年末の休業のお知らせ表
---------------------------------------------------------------------------*/
.holiday {
	width: 96%;
	margin: 0 auto 2em;
	background: #fff;	/*背景色*/	
}
.holiday, .holiday td, .holiday th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	text-align: center;
}
/*テーブル内のデータ*/
.holiday td{
	padding: 10px 2px;
}
/*テーブル内の見出し*/
.holiday th{
	padding: 5px 2px;
	background: #f0f0f0;	/*背景色*/
	font-weight:normal;
	line-height:1.2em;
	font-size:90%;
}

/*inputボタンの設定
---------------------------------------------------------------------------*/
p.rectopbtn,
p.inqbtn,
a.inqbtn,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする設定*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
p.inqbtn,
a.inqbtn {
	margin-left:auto;
	margin-right:auto;
	line-height:1.5em !important;
	padding:10px !important;
	text-align:center;
	display:block;
}
p.rectopbtn {
	width:200px;
	margin-left:auto;
	margin-right:auto;
	padding:5px !important;
	text-align:center;
	font-size:14px;
	margin-bottom:30px;
}
p.rectopbtn a,
p.inqbtn a,
a.inqbtn {
	text-decoration:none;

}
/*ボタンのマウスオン時の設定*/
p.rectopbtn:hover,
p.inqbtn:hover,
a.inqbtn:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	/* color: #0029c3;		/*文字色*/
	color: #000088;		/*文字色*/
	background: #fff;	/*背景色*/
	font-size: 20px;	/*文字サイズ*/
	text-decoration: none;
	text-align: center;
	width: 50px;
	line-height: 50px;
	border-radius: 5px;
	/* border: 1px solid #0029c3; */
	border: 1px solid #000088;
	display: block;
	float: right;
	margin-bottom: 30px;
}
/*マウスオン時*/
#pagetop a:hover {
	/* background: #0029c3;	/*背景色*/
	background: #000088;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 12px;	/*文字サイズ*/
	-webkit-text-size-adjust: none;
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}

/* 点滅 */
.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}



h2 span.osusume {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*「ご契約済」表示
---------------------------------------------------------------------------*/
.sumi {
	font-size: 10px;	/*文字サイズ*/
	-webkit-text-size-adjust: none;
	color: #FFF;		/*文字色*/
	background: #069;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.sumi {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*ページ内目次
---------------------------------------------------------------------------*/
.note {
  position: relative;
  background-color: #eee;
  padding: 1em;
	border:1px solid #ddd;
	border-radius:5px;
	margin:1em 1% 1em;
}
.note p {
  position: absolute;
  top: -1em;
  background-color: #fc8d83;
  background-color: #008;
  padding: 0.5em 2em 0.3em !important;
  color: #fff;
  /* transform: rotate(-4deg); */
	line-height:1em !important;
	font-size:90% !important;
	margin:0;
	border:1px solid #ddd;
	border-radius:5px;
	/* text-shadow:1px 1px 0px #b23e35; */
}
/*2段組みブロック
---------------------------------------------------------------------------*/
.block2 {
	width:100%;
	overflow:hidden;
}
.block2 .blkL,
.block2 .blkR {
	width:50%;
}
.block2 .blkL {
	float:left;
}
.block2 .blkR {
	float:right;
}
.block2 .note {
  margin-bottom:1em;
}
/*電話、フォームからのお問い合わせボタン一式
---------------------------------------------------------------------------*/
.inqblock {
	text-align:center;
	overflow:hidden;
	margin-top:2em;
}
.inqblock #inqL, 
.inqblock #inqR {
	width:50%;
	height:auto;
	margin:auto;
}
.inqblock #inqL {
	float:left;
}
.inqblock #inqR {
	float:right;
}
.inqblock ul {
	width:300px;
	height:auto;
	margin:0 auto;
}
.inqblock ul li {
	line-height:100%;
	margin:0;
	padding:0;
}

/*ご利用の流れ
---------------------------------------------------------------------------*/
.flow {
	margin:0 1em;
}
.flow li {
	margin-bottom:0.5em;
	overflow:hidden;
	clear:both;
	border-top:1px solid #ddd;
	padding-top:1em;
}
.flow li:first-child {
	border-top:none;
	padding-top:0;
}
.flow li img {
	float:left;
	margin:0 1em 1em 0;
}

/*「ご利用までの流れ」ページの一覧用ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main div.list {
	margin-bottom: 15px;	/*ボックス間のスペース*/
	position: relative;
	overflow: hidden;
	background: #fff;		/*背景色*/
	color: #666;			/*文字色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 2.5%;			/*ボックス内の余白*/
}
#main div.list a {
	display: block;
	text-decoration: none;
	overflow: hidden;
	color: #666;
	margin: -2.5%;
	padding: 2.5%;			/*ボックス内の余白*/
}
#main div.list a:hover {
	background: #fff69e;	/*マウスオン時の背景色*/
}
/*ボックス内の段落タグ設定*/
#main div.list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main div.list figure img {
	float: left;		/*画像を左へ回り込み*/
	padding: 5px;		/*余白*/
	width: 30%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
	background: #fff;	/*写真と枠線の間(padding:5px)に出る色になります*/
}
/*ボックス内のh4タグ設定*/
#main div.list h4 {
	font-size: 110%;	/*文字サイズ*/
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*コンパクトタイプのボックス追加設定*/
#main div.list.compact {
	width: 23%;		/*compactタイプの幅*/
	float: left;	/*ボックスを左に回り込み*/
	height: 260px;	/*compactタイプの高さ*/
	margin-left: 3.5%;	/*ボックス間の余白*/
}
#main div.list.compact a {
	height: 100%;
}
.c1 #main div.list.compact {
	width: 16.5%;
}
/*コンパクトタイプのh4タグ追加設定*/
#main div.list.compact h4 {
	margin-left: 0;
}
/*コンパクトタイプの段落タグ追加設定*/
#main div.list.compact p {
	margin-left: 0;
	font-size: 11px;	/*compactタイプの文字サイズ*/
	line-height: 1.4;
	margin-bottom: 5px;
}
/*コンパクトタイプの写真追加設定*/
#main div.list.compact figure img {
	float: none;
	width: auto;
	margin: 0;
	padding: 0;
}
/*枠線なしにする場合の設定*/
#main div.list.noborder {
	border:none;
}

/*ご利用可能地域
---------------------------------------------------------------------------*/
.area {
	/* margin:1em; */
}
.area li {
	display:inline-block;
	width:6em;
	text-align:center;
	padding:10px;
	font-size:120%;
	line-height:150%;
	margin:0 0.5em 1em;
	border-radius: 5px;
	color:#fff;
	box-shadow:2px 2px 2px #aaa;
}
.area li.a1 {
	background-color: #fc8d83;
	border: 2px solid #FB4B3E;
}
.area li.a2 {
	border: 2px solid #88C225;
	background: #CAEB94;
	color:#333;
}
.area li.a3 {
	background-color: #A0D9F1;
	border: 2px solid #4EB7E4;
	color:#333;
}

/*Google Map
---------------------------------------------------------------------------*/
iframe.map {
	display:block;
	width:90%;
	height:400px;
	margin:1em auto !important;
}

.btn_topic {
	border-radius:8px;
	border:1px solid #d83526;
	padding:9px 3% !important;
	text-decoration:none;
	background:-moz-linear-gradient( center top, #fc8d83 5%, #e4685d 100% );
	background:-ms-linear-gradient( top, #fc8d83 5%, #e4685d 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc8d83', endColorstr='#e4685d');
	background:-webkit-gradient( linear, left top, left bottom, color-stop(5%, #fc8d83), color-stop(100%, #e4685d) );
	background-color:#fc8d83;
	color:#ffffff;
	display:block;
	width:90%;
	margin:auto;
	margin-bottom:2em;
	line-height:180%;
	font-size:110%;
	text-shadow:1px 1px 0px #b23e35;
 	-webkit-box-shadow: 2px 2px 2px 0px #f7c5c0;
 	-moz-box-shadow: 2px 2px 2px 0px #f7c5c0;
 	box-shadow: 2px 2px 2px 0px #f7c5c0;
}

/*空き状況カレンダー
---------------------------------------------------------------------------*/
.booking {
	width:100%;
	height:400px;
}
.hanrei {
	overflow:hidden;
	width:44%;
	height:auto;
	margin:0 auto 1em;
	/* background-color:#FCC; */
	float:left;
	padding:0 3%;
}
.hanrei dt {
	width:30px;
	height:25px;
	float:left;
	text-align:center;
	border:1px solid #eee;
	line-height:25px;
	margin-right:10px;
	color:#fff;
	font-weight:bold;
	/* clear:both; */

}
.hanrei dd {
	width:110px;
	height:25px;
	float:left;
	line-height:25px;
}
.EdoKanAM { background-color:#668cd9; }  /* 江戸川　訪問看護　午前 */
.EdoKanPM { background-color:#e0c240; }  /* 江戸川　訪問看護　午後 */

.EdoRehAM { background-color:#E67399; }  /* 江戸川　訪問リハ　午前 */
.EdoRehPM { background-color:#A7B828; }  /* 江戸川　訪問リハ　午後 */

.KouKanAM { background-color:#AD2D2D; }  /* 江東　訪問看護　午前 */
.KouKanPM { background-color:#8C66D9; }  /* 江東　訪問看護　午後 */

.KouRehAM { background-color:#CF9911; }  /* 江東　訪問リハ　午前 */
.KouRehPM { background-color:#914D14; }  /* 江東　訪問リハ　午後 */

/*サイトマップ
---------------------------------------------------------------------------*/
.sitemap {
	width:95%;
	margin:auto;
}
.sitemap dt a {
	display: block;
	margin-bottom: 15px;
	font-size: 100%;
	background: #FFF;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	border-left:8px solid #008;
	border-radius: 0;		/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
	font-weight: bold;	/*hタグのデフォルトの太字を標準にする*/
}

/*トップページ内「facebook」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#fb {
	margin-bottom: 15px;
	width:50%;
	float:left;
}

/*トップページ内「新着情報」ブロック
---------------------------------------------------------------------------*/
#newswrap {
	margin:0px;
	padding:10px;
	border:1px solid #9393FF;
	border-top:none;
}

/*ボックス１個あたりの設定*/
.newsrecruit {
	/* font-size: 16px;	/*文字サイズ*/
	width: 47%;		/*ボックスの幅*/
	float:left;
	border: 1px solid #d1d1d1;	/*下の線の幅、線種、色*/
	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ebebeb);	/*同上*/
	background: linear-gradient(#FFF, #ebebeb);			/*同上*/
	margin-left:2%;
	margin-right:0;
	margin-bottom:1em;
	border-radius:5px;
}
.newsrecruit a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時の設定*/
.newsrecruit a:hover {
	background: #fff;	/*背景色*/
}
/*h4見出しタグ*/
.newsrecruit dt {
	/* color: #0029c3 !important;		/*文字色*/
	color: #000088 !important;		/*文字色*/
	font-size: 18px;	/*文字サイズ*/
	font-weight:bold;
	border-bottom:1px solid #aaa;
	margin-bottom:5px;
}

/*新着情報一覧*/
dl.newslist{
	margin:5px;
	/* margin-top:1.5em; */
	padding:0;
	line-height:1.8;
	width:auto;
}
dl.newslist dt{
	width:9em;
	width:auto;
	float:left;
	float:none;
	font-size:14px;
	font-weight:bold;
	color: #000088 !important;		/*文字色*/
	margin:0;
	margin-bottom:5px;
	padding:0 0 0 5px;
}
dl.newslist dt span.text-icon {
  display: inline-block;
  background: #df002c;
  padding: 1px 5px;
  margin-left: 5px;       /* 先行する文字列との間隔 */
  vertical-align: middle; /* 先行する文字列と上下中央揃え */
  font-size: 0.6em;
  font-weight: bold;
  color: #fff;
  border-radius: 3px;     /* アイコンの角を丸める */
}
dl.newslist dd{
	position:relative;
	margin:0 0 10px;
	padding:0 5px 10px 7em;
	border-bottom:1px dotted #aaa;
	font-size:14px;
}
dl.newslist dd.last {
	border-bottom:none;
}
dl.newslist dd span.cat{
	display:block;
	position:absolute;
	top:0;
	left:1em;
	width:5em;
	margin:0;
	padding:0;
	text-align:center;
	background-color:#eee;
	border-radius:2px;
}

/*各ページ共通　ページ上部のバナーイメージ
---------------------------------------------------------------------------*/
#pageimg {
	margin-bottom:1em;
}
/*会社概要ページ内　アクセスブロック
---------------------------------------------------------------------------*/
.accessAddr {
	margin:0 1em 0 0;
	overflow:hidden;
}
.accessAddr dt {
	width:5em;
	text-align:right;
	float:left;
	clear:both;
	font-weight:bold;
	line-height:1.8em;
}
.accessAddr dd {
	line-height:1.8em;
	margin-left:6em;
}

/*訪問看護ページ内　ステーションへのお問い合わせ
---------------------------------------------------------------------------*/
.inqtel {
	font-size:1.5em;
	line-height:2em;
}
/*通所介護ページ内　パンフレットダウンロード
---------------------------------------------------------------------------*/
.img_L {
	max-width:145px;
	height:auto;
	float:left;
	margin-right:10px;
	padding:5px;
	border:1px solid #aaa;
}
/*通所介護ページ内　拠点ごとのイメージ写真
---------------------------------------------------------------------------*/
.fiveimgL,
.fiveimgR {
	width:35%;
	height:auto;
	padding:5px;
	border:1px solid #aaa;
	background-color:#fff;
	box-shadow:1px 1px 2px #999;
	clear:both;
}
.fiveimgL {
	float:left;
	margin:0 20px 25px 0;
}
.fiveimgR {
	float:right;
	margin:0 0 25px 20px;
}
/*タブメニュー
---------------------------------------------------------------------------*/
/* タブメニュー */
.tab-menu {
  list-style: none;
}
.tab-menu li {
	display:inline;
}
.tab-menu li a {
	display: inline-block;
	padding: 5px 12px;
	background-color: #6666FF;
	background-color: #fff;
	color: #fff;
	color: #888;
	text-decoration:inherit;
	border:1px solid #f80;	/* オレンジ色 */
}
.tab-menu.tab-top li a {
	-webkit-border-top-left-radius: 8px;  
	-webkit-border-top-right-radius: 8px;  
	-moz-border-radius-topleft: 8px;  
	-moz-border-radius-topright: 8px;  
	border-bottom:none;
}
.tab-menu.tab-bottom li a {
	-webkit-border-bottom-left-radius: 8px;  
	-webkit-border-bottom-right-radius: 8px;  
	-moz-border-radius-bottomleft: 8px;  
	-moz-border-radius-bottomright: 8px;
	margin-bottom:4em;
	border-top:none;
}
.tab-menu li.active a {
	/* background: #008; 
	background:-moz-linear-gradient( center top, #fc8d83 5%, #e4685d 100% );
	background:-ms-linear-gradient( top, #fc8d83 5%, #e4685d 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc8d83', endColorstr='#e4685d');
	background:-webkit-gradient( linear, left top, left bottom, color-stop(5%, #fc8d83), color-stop(100%, #e4685d) );
	*/
	background-color: #fc8d83;
	background-color: #FF8800;
	color: #fff;
}
.tab-menu li:hover a {
  /* background: #008; 
	background:-moz-linear-gradient( center top, #fc8d83 5%, #e4685d 100% );
	background:-ms-linear-gradient( top, #fc8d83 5%, #e4685d 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc8d83', endColorstr='#e4685d');
	background:-webkit-gradient( linear, left top, left bottom, color-stop(5%, #fc8d83), color-stop(100%, #e4685d) );
	*/
	background-color:#fc8d83;
	background-color: #FF8800;
  color: #fff;
}
/* 
.tab-menu li a {
	color:inherit;
	text-decoration:inherit;
}
*/

/* タブの中身 */
#tab-box {
	padding: 10px;
	padding-top:20px;
	/* border: 1px solid #ddd; */
	margin-bottom:0;
	/* background-color: #FFFFd0; */
	border-top:8px solid #FF8800;
	border-bottom:8px solid #FF8800;
}
/* 
#tab-box div {
  display: none;
}
#tab-box div.active {
  display: block;
}

.pagetop {
	margin:0;
	padding:0;
	text-align:right;
}
*/

/*通所介護ページ内　他の拠点へのナビゲーション
---------------------------------------------------------------------------*/
#fivenavi {
	list-style:none;
	font-size:14px;
}
#fivenavi ul {
	display:inline;
}
#fivenavi li a {
	display:block;
	width:90%;
	width:21em;
	height:auto;
	padding:5px 10px;
	margin:10px 2em 5px;
	white-space:nowrap;
	/* text-decoration:none; */
	border:1px solid #F80;
	border-radius:6px;
	text-decoration:none;
	background-color:#F80;
	color:#fff;
  transition: .6s all;
}
#fivenavi li a:hover ,
#bdDaytera #fivenavi li a#fivenavi_tera,
#bdDayhoso #fivenavi li a#fivenavi_hoso,
#bdDayhoso #fivenavi li a#fivenavi_hosom,
#bdDayhiga #fivenavi li a#fivenavi_higa,
#bdDaysato #fivenavi li a#fivenavi_sato,
#bdDayryoke #fivenavi li a#fivenavi_ryoke {
	background-color:#FFF;
	color:#f80;
}

/*求人情報　フッターナビゲーション
　(当該拠点の求人情報は表示させないための処理)
---------------------------------------------------------------------------*/
body.recStZudaji #reclink_stzudaji ,
body.recStKuniyoshi #reclink_stkuniyoshi ,
body.recStKosai #reclink_stkosai ,
body.recKyoZudaji #reclink_kyozudaji ,
body.recKyoKuniyoshi #reclink_kyokuniyoshi ,
body.recDayFive #reclink_dayfive ,
body.recHelperFive #reclink_helperfive
{
	display:none;
}

/*求人情報　入社祝い金の説明
---------------------------------------------------------------------------*/
.boxiwai {
    position: relative;
    margin: 3em 0 1em;
    padding: 0.5em 1em;
    border: solid 3px #62c1ce;
		/* border: solid 3px #ff7f04; */
    background: #ECF8F9;
		border-radius:0 7px 7px 7px;
}
.boxiwai .box-title {
    position: absolute;
    display: inline-block;
    top: -35px;
    left: -3px;
    padding: 5px 9px 0;
    height: 30px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 16px;
    background: #62c1ce;
    /* background: #ff7f04; */
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.boxiwai p {
    margin: 0 !important; 
    padding: 0 !important;
		font-size:15px;
}

/*求人情報　各種要件の項目
---------------------------------------------------------------------------*/
.reclist {
	overflow:hidden;
}
.reclist li {
	display:inline-block;
	font-size:80%;
	font-weight:bold;
	color:#333;
	padding:0 5px;
	background-color:#e5e5e5;
	border-radius:2px;
	margin-bottom:5px;
}

/*ヘルパーセンター　登録ヘルパー　ページ
---------------------------------------------------------------------------*/
ul.hc-entry {
  border: solid 2px #fc8d83;
  padding: 0.5em 1em 0.5em 2.5em;
  position: relative;
}

ul.hc-entry li {
	font-size:16px;
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
}

ul.hc-entry li:before {/*疑似要素*/
  font-family: "Font Awesome 5 Free";
  content: "\f02b";
  position: absolute;
  left : 1em; /*左端からのアイコンまで*/
  color: #fc8d83; /*アイコン色*/
	font-weight:900;
}

/*コグニバイク　紹介ページ
---------------------------------------------------------------------------*/
#cogni figure {
	text-align:center;
	margin-top:1.5em;
	margin-bottom:1em;
}
#cogni figure img {
	width:90%;
	height:auto;
	border-left:5px solid #000;
	border-right:5px solid #000;
	border-top:1px solid #999;
	border-bottom:1px solid #999;
	/* box-shadow:1px 1px 3px #999; */
	margin-bottom:0.5em;
}
#cogni figure figcaption {
	font-size:0.8em;
	font-weight:bold;
	color:#999;
}
/*訪問看護　ステーション間リンク
---------------------------------------------------------------------------*/
.stlink {
	text-align: center;
	margin-bottom: 4em;
	background-color: #EAF2FF;
	padding: 10px 0;
	border-radius: 6px;
}
.stlink li {
	display:inline-block;
}

/*トップページ　会社からのメッセージ
---------------------------------------------------------------------------*/
#message {
	font-size:14px;
	border:1px solid #F90;
	border-radius:10px;
	text-align:center;
	padding:15px 0;
	margin-bottom:20px;
	background-color:#FFF3E1;
}
#message p {
	margin:0;
	padding:0;
}

/*トップページ　新型コロナウイルスに関するメッセージ
---------------------------------------------------------------------------*/
#message_corona {
	font-size:14px;
	border:1px solid #ddd;
	/* border-radius:10px; */
	/* text-align:center; */
	padding:0;
	margin-bottom:20px;
	/* background-color:#FFF3E1; */
}
#message_corona p {
  font-size:13px;
	margin:0 !important;
	padding:10px !important;
  background-color: #ebebeb;
  font-weight: bold;
  line-height: 1;
}
#message_corona ul {
  margin: 5px 10px;
}
#message_corona ul li {
  margin-bottom: 5px;
}

/*pagetop
---------------------------------------------------------------------------*/
.pagetop {
	text-align:right;
	margin-bottom:0;
}
/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb0 { margin-bottom:0 !important; }
.mb05 { margin-bottom:0.5em !important; }
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.mb4em {
	margin-bottom: 4em !important;
}
.mt5em {
	margin-top:0.5em;
}
.mt1em {
	margin-top:1em;
}
.mt2em {
	margin-top:2em;
}
.ml05em {
	margin-left:0.5em;
}
.ml1em {
	margin-left:1em;
}
.clear {
	clear: both;
	overflow:hidden;
}
ul.disc {
	list-style: none;
}
ul.disc li {
	padding: 0 1em 0 25px;
	background-image:url(../images/mark1.png);
	background-repeat:no-repeat;
	background-position:0 5px;
	font-size:90%;
}
.color1 {
	/* color: #0029c3; */
	color: #f00;
}
.color2 {
	/* color: #0029c3; */
	color: #00f;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.css_btn_class {
	font-size:13px;
	/* font-family:Arial; */
	font-weight:normal;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	border:1px solid #d83526;
	padding:5px 9px;
	text-decoration:none;
	background:-moz-linear-gradient( center top, #fc8d83 5%, #e4685d 100% );
	background:-ms-linear-gradient( top, #fc8d83 5%, #e4685d 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc8d83', endColorstr='#e4685d');
	background:-webkit-gradient( linear, left top, left bottom, color-stop(5%, #fc8d83), color-stop(100%, #e4685d) );
	background-color:#fc8d83;
	color:#ffffff;
	display:inline-block;
	text-shadow:1px 1px 0px #b23e35;
 	-webkit-box-shadow:inset 1px 1px 0px 0px #f7c5c0;
 	-moz-box-shadow:inset 1px 1px 0px 0px #f7c5c0;
 	box-shadow:inset 1px 1px 0px 0px #f7c5c0;
	margin-top:6px;
}.css_btn_class:hover {
	background:-moz-linear-gradient( center top, #e4685d 5%, #fc8d83 100% );
	background:-ms-linear-gradient( top, #e4685d 5%, #fc8d83 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e4685d', endColorstr='#fc8d83');
	background:-webkit-gradient( linear, left top, left bottom, color-stop(5%, #e4685d), color-stop(100%, #fc8d83) );
	background-color:#e4685d;
}.css_btn_class:active {
	position:relative;
	top:1px;
}

.wl {
	width: 96% !important;
}
.ws {
	width: 50%;
}
.b {
	font-weight:bold;
}
.c {
	text-align: center;
}
.r {
	clear:both;
	text-align: right;
}
.nowrap {
	white-space:nowrap;
}
img {
	max-width: 100%;
	height: auto;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 3px;
	margin: 0px 5px;
}
#menubar_hdr {
	display: none;
}
/* フォントサイズ */
.small { 
	font-size:80%;
	letter-spacing:0;
	line-height:1.2em;
}
/* overflow:hidden */
.ofhidden {
	overflow:hidden;
	clear:both;
	margin-bottom:0 !important;
	padding-bottom:0 !important;
}
.tips {
	width: 90%;
	margin: 0 auto 1em;
	padding: 10px 0 10px 2%;
	height: auto;
	border: 1px solid #39C;
	border-radius: 6px;
	background-color: #DDF0DD;
}
.sp {
	display:none;
}

/* 脚注 */
.sup {
	font-size:80%;
	vertical-align:super;
	color:#f00;
}
/* 求人情報　急募マーク */
.wanted {
	background-color:#f00;
	font-size:90%;
	line-height:170%;
	/* font-weight:bold; */
	color:#fff;
	display:inline-block;
	border-radius:3px;
	margin-left:10px;
	padding:0 3px;
}

/* 求人情報　バナー用 */
.recruit_bnr {
	display:block;
	margin-bottom:1em;
}
.mema {
	margin-bottom:2em;
	text-align:center;
	max-width:100%;
	height:auto;
}

/* 汎用ボックスデザイン */
.mybox1 {
    padding: 0.5em 1em;
    margin: 2em;
    color: #ff7d6e;
    background: #ffebe9;
    border-top: solid 10px #ff7d6e;
}
.mybox1 p {
    margin: 0 !important; 
    padding: 0 !important;
		font-size:1.3em;
		line-height:2em;
}



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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 15px;
}

/*インナー（幅を整えるブロック）
---------------------------------------------------------------------------*/
.inner {
	width: 100% !important; /*コンテナー幅*/
}
/*h1タグ
---------------------------------------------------------------------------*/
h1 {
	display: none;	/*表示させない設定*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img,
#top header #logo img {
	position: absolute;
	left: 15px;	/*ヘッダーブロックに対して左から15pxの場所に配置*/
	top: 25px;	/*ヘッダーブロックに対して上から25pxの場所に配置*/
}
/*トップページのヘッダーブロック（※PC版でのトップ以外で読み込んでいる小さ目画像に置き換えています）*/
#top header {
	/* background: #0029c3 url(../images/header_bg.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
	background: #000088 url(../images/header_bg.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
	height: 120px;	/*高さ*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの中のulタグへの設定*/
nav#menubar ul {
	height: auto;
	width: auto;
	margin: 0;
	overflow: hidden;
	border: none;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;		/*メニューの幅*/
	border: none;	/*枠線を一旦リセット*/
	border-bottom: 1px solid #d6d6d6;	/*下線の幅、線種、色*/
}
nav#menubar ul li a {
	width: 100%;
	padding:3px 0px;
}
/*奇数番目のメニューの設定*/
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #d6d6d6;	/*右側の線の幅、線種、色*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*最後から１つめと２つめのメニューの設定*/
nav#menubar ul li:nth-last-of-type(1),
nav#menubar ul li:nth-last-of-type(2) {
	border-bottom: none;	/*下線を消す*/
}

/*contents
---------------------------------------------------------------------------*/
#contents {
    width: 100%;
  }
/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	clear: both;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new,
#fb {
	width:100%;
	float:none;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}

/*2段組みブロック
---------------------------------------------------------------------------*/
.block2 {
	overflow:hidden;
}
.block2 .blkL,
.block2 .blkR {
	width:100%;
	float:none;
	clear:both;
}
.block2 .blkL {
}
.block2 .blkR {
	margin-bottom:-1em;
}
.block2 .note {
	margin-bottom:2em;
}

/*電話、フォームからのお問い合わせボタン一式
---------------------------------------------------------------------------*/
.inqblock #inqL, 
.inqblock #inqR {
	width:100%;
	float:none;
}
.inqblock #inqL {
	margin-bottom:2em;
}
.inqblock ul {
	width:100%;
}

/*通所介護ページ内　他の拠点へのナビゲーション
---------------------------------------------------------------------------*/
#fivenavi li a {
	margin:20px auto;
}

/* お問合わせ・エントリーフォームの設定
---------------------------------------------------------------------------*/
textarea,
input[type="text"] {
	width: 93% !important;	/*ボタン幅*/
}


/* 求人情報　求人一覧表
---------------------------------------------------------------------------*/
.joblist table {
	width:100%;
}
.joblist td, .joblist th{
}
/*テーブル内のデータセル*/
.joblist td{
	padding: 5px 5px;
}
/*テーブル内の見出しセル*/
.joblist th{
	padding: 8px 5px;
}
.joblist th.midashi{
}

.sp {
	display:none;
}

#sub .box1 span.ib {
	display:inline;
	width:auto;
	text-align:left;
}


}



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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 10px;
}

/*インナー（幅を整えるブロック）
---------------------------------------------------------------------------*/
.inner {
	width: 100% !important; /*コンテナー幅*/
}
/*h1タグ
---------------------------------------------------------------------------*/
h1 {
	display: none;	/*表示させない設定*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img,
#top header #logo img {
	position: absolute;
	left: 15px;	/*ヘッダーブロックに対して左から15pxの場所に配置*/
	top: 15px;	/*ヘッダーブロックに対して上から25pxの場所に配置*/
	width: 60%;
}
/*トップページのヘッダーブロック（※PC版でのトップ以外で読み込んでいる小さ目画像に置き換えています）*/
header {
	/* background: #0029c3 url(../images/header_bg.png) no-repeat center bottom;	/*背景色、背景画像の読み込み*/
	background-image: url(../images/header_bg_sp.png);	/*背景色、背景画像の読み込み*/
	background-size:contain;
	height: 110px;	/*高さ*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの中のulタグへの設定*/
nav#menubar ul {
	height: auto;
	width: auto;
	margin: 0;
	overflow: hidden;
	border: none;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;		/*メニューの幅*/
	border: none;	/*枠線を一旦リセット*/
	border-bottom: 1px solid #d6d6d6;	/*下線の幅、線種、色*/
}
nav#menubar ul li a {
	width: 100%;
	padding:3px 0px;
}

/*奇数番目のメニューの設定*/
nav#menubar ul li:nth-child(odd) {
	border-right: 1px solid #d6d6d6;	/*右側の線の幅、線種、色*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*最後から１つめと２つめのメニューの設定*/
nav#menubar ul li:nth-last-of-type(1),
nav#menubar ul li:nth-last-of-type(2) {
	border-bottom: none;	/*下線を消す*/
}

/*contents
---------------------------------------------------------------------------*/
#contents {
	width: 100%;
  padding-top:10px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	clear: both;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツのh2タグの設定*/
#main h2 {
	line-height:1.2em;
	font-size:18px;
	background-position:left center;
	padding-left:37px !important;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	padding:8px 0px 8px 10px;
	line-height:1.5em;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
	line-height:1.7em;
}

/* トップページの新着情報 */
.news h3 {
	letter-spacing:0 !important;	/*文字間隔を少しだけ広くとる設定*/
}
/* 見出し4 */
.news h4 {
	margin-left:0 !important;
}
/*物件一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;
}
/*ボックス内の段落タグとtableタグ設定*/
#main section.list p,
#main section.list table {
	margin-left: 0 !important;
	width: 100% !important;
}
/*ボックス内の写真設定*/
#main section.list figure {
	float: none;
	width: 100% !important;
	margin-bottom: 15px;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	width: 100%;
	height:auto;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list table {
	margin-left: 0;
	width: 100%;
}

#main section.list .swiper-container {
	float: none;	/*画像を左へ回り込み*/
	width: 100%;		/*写真の幅*/
	margin-right: 0;		/*写真の右側に空ける余白*/
}

/*引用文
---------------------------------------------------------------------------*/
#main blockquote {
	margin:0 1em !important;
}

/*subコンテンツ
---------------------------------------------------------------------------*/
#sub .box1 p {
	margin-left:0.5em;
}
#sub .box1 span.ib {
	display:inline;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new,
#fb {
	width:100%;
	float:none;
}
section#new h2.open {
	/* background: url(../images/btn_minus.png) no-repeat right center/34px 34px, url(../images/mark2.png) no-repeat 15px center, url(../images/bg1.png), #0029c3;		/*マイナスアイコンと背景画像など*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, url(../images/mark2.png) no-repeat 15px center, url(../images/bg1.png), #000088;		/*マイナスアイコンと背景画像など*/
}
section#new h2.close {
	/* background: url(../images/btn_plus.png) no-repeat right center/34px 34px, url(../images/mark2.png) no-repeat 15px center, url(../images/bg1.png), #0029c3;		/*プラスアイコンと背景画像など*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, url(../images/mark2.png) no-repeat 15px center, url(../images/bg1.png), #000088;		/*プラスアイコンと背景画像など*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	margin: 5px 5px 0px;
	padding-left: 0px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*トップページ内「新着情報」ブロック
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.newsrecruit {
	/* font-size: 16px;	/*文字サイズ*/
	width: 94%;		/*ボックスの幅*/
	float:none;
}
.newsrecruit a {
}
/*マウスオン時の設定*/
.newsrecruit a:hover {
}
/*h4見出しタグ*/
.newsrecruit dt {
}


/*Facebookページ
---------------------------------------------------------------------------*/
#fb iframe {
	width:100% !important;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	font-size:14px;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
	line-height:1.7em;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	/* width: 100px; */
	width: auto;
	padding: 2px;
	line-height:1.7em;
	white-space:nowrap;
}

/*テーブル　求人情報用
---------------------------------------------------------------------------*/
.taReq {
	margin: 1em 0;
}
.taReq, .taReq td, .taReq th{
	padding:10px;
}
/*テーブル内の行*/
.taReq tr:hover{
}
/*テーブル内の右側*/
.taReq td{
	width:auto;
}
/*テーブル内の左側*/
.taReq th{
	width:auto;
}
/*テーブル内の1列目*/
.taReq th.col1{
	width: 13em;
}
/*テーブル内の2列目*/
.taReq th.col2{
	width: 6em;
}
/*テーブル１行目に入った見出し部分*/
.taReq th.tamidashi{
}
/*こだわりアイコンのフロート指定(CMS用)*/
.taReq td .specialbox {
}
.taReq td .specialbox img {
}
.taReq th.wdt9em {
}

/* 求人情報　求人一覧表
---------------------------------------------------------------------------*/
.joblist table {
	width:100%;
}
.joblist td, .joblist th{
}
/*テーブル内のデータセル*/
.joblist td{
	padding: 5px 5px;
}
/*テーブル内の見出しセル*/
.joblist th{
	padding: 8px 5px;
}
.joblist th.midashi{
}


/*電話、フォームからのお問い合わせボタン一式
---------------------------------------------------------------------------*/
.inqblock #inqL, 
.inqblock #inqR {
	width:100%;
	float:none;
}
.inqblock #inqL {
	margin-bottom:2em;
}
.inqblock ul {
	width:100%;
}
.inqblock img {
	max-width:100%;
	height:auto;
}

/*2段組みブロック
---------------------------------------------------------------------------*/
.block2 {
	overflow:hidden;
}
.block2 .blkL,
.block2 .blkR {
	width:100%;
	float:none;
	clear:both;
}
.block2 .blkL {
	margin-bottom:1em;
}
.block2 .blkR {
}
.block2 .note {
  margin-bottom:1em;
}
#bdRecruit .block2 .blkR {
	margin-bottom:-1em;
}
#bdRecruit .block2 .note {
	margin-bottom:2em;
}
/*ご利用の流れ
---------------------------------------------------------------------------*/
.flow {
	/* margin:0 1em; */
}
.flow li {
	border-top:1px solid #ddd;
	padding-top:1em;
	padding-bottom:0.5em;
	line-height:1.5em;
}
.flow li:first-child {
	border-top:none;
	padding-top:0;
}
.flow li img {
	width:40%;
}

/*「ご利用の流れ」ページの一覧用ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main div.list p {
}
/*ボックス内の写真設定*/
#main div.list figure img {
	margin-right:5px;
}
/*ボックス内のh4タグ設定*/
#main div.list h4 {
	font-size:100%;
}

/*Google Map
---------------------------------------------------------------------------*/
iframe.map {
	width:100%;
	height:300px;
}

/*空き状況カレンダー
---------------------------------------------------------------------------*/
.booking {
	height:350px;
}

.hanrei {
	width:100%;
	margin:0 auto 1em;
	/* background-color:#FCC; */
	float:none;
	padding:0;
}
.hanrei dt {
	margin-right:2px;
/*
	width:30px;
	height:25px;
	float:left;
	text-align:center;
	border:1px solid #eee;
	line-height:25px;
	color:#fff;
	font-weight:bold; 
*/
	/* clear:both; */
}
.hanrei dd {
	width:110px;
/*
	height:25px;
	float:left;
	line-height:25px;
*/
}
/*会社概要ページ内　アクセスブロック
---------------------------------------------------------------------------*/
.accessAddr {
	margin:0;
}
.accessAddr dt,
.accessAddr dd {
	line-height:1.5em;
	margin-bottom:5px;
}
.accessAddr dt {
	width:4em;
}
.accessAddr dd {
	margin-left:5em;
}

/*ページ内目次
---------------------------------------------------------------------------*/
.note {
	margin:1em 1% 2em;
}

/*通所介護ページ内　タブメニュー
---------------------------------------------------------------------------*/
/* タブメニュー */
.tab-menu li a {
	padding: 5px 6px;
	/* background-color: #6666FF; */
	/* color: #fff; */
	text-decoration:inherit;
	font-size:90%;
}
/* タブの中身 */
#tab-box {
	padding: 0px;
	padding-top:10px;
}

/*通所介護ページ内　拠点ごとのイメージ写真
---------------------------------------------------------------------------*/
.fiveimgL,
.fiveimgR {
	display:block;
	width:94%;
	height:auto;
	padding:5px;
	border:1px solid #aaa;
	background-color:#fff;
	box-shadow:1px 1px 2px #999;
	float:none;
	margin:0 auto 1em;
}

/*トップページの新着情報だけ別扱い
---------------------------------------------------------------------------*/
.news .fiveimgL,
.news .fiveimgR {
	display:block;
	width:84%;
	height:auto;
	float:none;
}
.news .fiveimgL {
	/* float:left; */
	margin:10px auto;
}
.news .fiveimgR {
	/* float:right; */
	margin:0 0 15px 15px;
}


/*新着情報一覧*/
dl.newslist{
	margin:5px;
	margin-top:1.5em;
	padding:0;
	line-height:1.8;
	width:auto;
}
dl.newslist dt{
	width:auto;
	float:none;
	font-weight:bold;
	font-size:1.1em !important;
	color: #000088 !important;		/*文字色*/
	margin:0;
	padding:0 0 0 5px;
}
dl.newslist dd{
	position:relative;
	margin:0 0 10px;
	padding:0 5px 10px;
	border-bottom:1px dotted #ccc;
}
dl.newslist dd.last {
	border-bottom:none;
}
dl.newslist dd span.cat{
	display:block;
	position:relative;
	top:0;
	left:0;
	width:5em;
	margin:5px 0;
	padding:0;
	text-align:center;
	background-color:#eee;
	border-radius:2px;
}

/*通所介護ページ内　他の拠点へのナビゲーション
---------------------------------------------------------------------------*/
#fivenavi li a {
	font-size:0.9em;
	margin:20px auto;
}


/*お問い合わせフォームのテーブル
---------------------------------------------------------------------------*/
#mailform th,
#mailform td {
	display:list-item;
}
#mailform table,
#mailform td {
	border:none;
}
#mailform th {
	text-align:left;
	margin-bottom:0;
}
#mailform td {
	padding:0.5em 0 1em;
}
#mailform td input[type="text"],
/* #mailform td select, */
#mailform td textarea {
	width:96% !important;
	margin:auto;
	padding:5px;
}

/* お問合わせ・エントリーフォームの設定
---------------------------------------------------------------------------*/
/* 希望勤務先　段組み3段 */
ul.list-3 {
	margin-left:0.5em !important;
}
ul.list-3 li {
	margin-bottom:0.5em !important;
}
.mt0 {
	margin-top:-1.5em !important;
}

/*トップページ　会社からのメッセージ
---------------------------------------------------------------------------*/
#message {
	padding:5px 10px;
	text-align:left;
}
#message p {
	margin:0;
	padding:0 !important;
}
/*その他
---------------------------------------------------------------------------*/
.ws {
	width: 96%;
}
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
}

.s-n,
img.s-n {
	display:none;
}

.sp {
	display:inline-block;
}
.sp-blk {
	display:block;
}

/* スクロールバー設定 */
.koushin {
	overflow-y:auto;
	width:98%; height:400px;
	padding:1%;
}
.koushin::-webkit-scrollbar {
  background:#eaeaea;
  width:3px;
}
.koushin::-webkit-scrollbar-thumb {
  background:#aaa;
}


}
