@charset "utf-8";
/* ------------------------------------------------ */
/* 1.共通
/* ------------------------------------------------ */

/* ボックスサイズの計算方法を指定 */
* {
	box-sizing: border-box;
}

/* ページ全体の基本スタイル */
body {
	color: #4d4d4d;
/*	font-size: 14px;　*/
  font-size: 16px;　
	font-family: メイリオ,Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
	line-height: 1.6;

/* 背景のセット  2020.07.15　INS-S */

        background-image: url("img/gahag-0098235059-1.png");
/* 背景のセット  2020.07.15　INS-E */

}

/* 段落の基本スタイル */
p {
	padding-bottom: 1.5em;
}

/* 2等分で横並び */
.col-6 {
	width: 50%;
}

/* 3等分で横並び */
.col-4 {
	width: 33.33%;
}

/* 等分で横並び  2020.06.12　INS-S */
.col-12 {
	width: 100%;
}
/* 等分で横並び  2020.06.12　INS-E */


/* 3等分で横並び  2020.06.12　INS-S */
figure {
    display: inline-block;   /* インラインブロック化 */
    margin: 0px 3px 7px 0px; /* 外側に余白を追加(※右に3px・下に7px) */
    background-color: #ccc;  /* 背景色 */
}
/* ▼画像に対する装飾 */
figure img {
    display: block;          /* 余計な余白が出ないようにする */
    margin: 0px 0px 3px 0px; /* 下側にだけ3pxの余白を追加 */
}
/* ▼キャプションに対する装飾 */
figcaption {
    font-size: 0.9em;        /* 文字サイズを90%に */
    text-align: center;      /* 中身をセンタリング */
}

/* 3等分で横並び  2020.06.12　INS-E */









/* リンクの基本スタイル */
a {
	color: #007de1;
	transition: 0.5s;
}

/* リンクにマウスが乗ったときのスタイル */
a:hover {
	opacity: 0.7;
}

/* 画像の基本スタイル */
img {
	vertical-align: bottom;
}

/* 写真のフレーム */
.photoframe {
	border: 1px solid #eeeeee;
	border-radius: 4px;
	box-shadow: 1px 1px 1px #999999;
	padding: 15px;
}

/* 2階層目以降のインデント  2020.06.12　INS-S */
li > ul, li > ol {
  /* 2階層目以降はインデントは2文字 */
  padding-left: 2em;
}
/* 2階層目以降のインデント  2020.06.12　INS-E */


/* ol 階層目以降のインデント  2020.06.17　INS-S */
li {	margin-left: 1.4em;	text-indent: -1.4em;}
/* ol 階層目以降のインデント  2020.06.17　INS-E */



/* ｕｌ リストマーカ画像設定  2020.06.24　INS-S */
/* INDEX.HTCM */
/* こんな人にお薦め　ul */ 
#recommended
 {
 　list-style-position: inside;
   list-style-image : url(img/030.gif);
 }

/* サービス内容(リハビリ)　ul */ 
#recommended1
 {
 　list-style-position: inside;
   list-style-image : url(img/hoshi1.png);
 }

/* サービス内容(お客様の声) 上段　ul */ 
#recommended2
 {
 　list-style-position: inside;
   list-style-image : url(img/029.gif);
 }

/* サービス内容(お客様の声) 下段　ul */ 
#recommended3
 {
 　list-style-position: inside;
   list-style-image : url(img/026.gif);
 }






/* 介護のよろず相談　ul */ 
#consultation
 {
 　list-style-position: inside;
   list-style-image : url(img/030.gif);
 }



/* ｕｌ リストマーカ画像設定  2020.06.24　INS-E */



/* ------------------------------------------------ */
/* 2.レイアウト
/* ------------------------------------------------ */

/* ページ全体を囲む枠 */
#wrapper {
	margin: 0 auto;
	width: 960px;
}

/* ------------------------------------------------ */
/* 3.ヘッダー
/* ------------------------------------------------ */

/* エリア外枠のスタイル */
header {
	padding-top: 15px;
	padding-bottom: 25px;
}

/* 見出しのスタイル */
h1 {
/*	フォント変更　2020.07.06  upd-s  */
/*	color: #999999;   */
/*	font-size: 12px;  */
/*	font-weight: normal; */
        font-size: 16px;
	font-weight: bold;
	color: #dc143c;
/*	フォント変更　2020.07.06  upd-e  */
  margin-bottom: 15px;
}

/* ロゴのスタイル */
#header-logo img {
/*	大きさ変更　2020.08.04  upd-s  */
/*	width: 300px; */
/*	height: 60px; */
	width: 409px;
	height: 108px;
/*	大きさ変更　2020.08.04  upd-e  */
}

/* ------------------------------------------------ */
/* 4.グローバルナビゲーション
/* ------------------------------------------------ */

/* エリア外枠のスタイル */
#gNav {
    margin-bottom: 25px;
}

/* メニューリストを囲む枠 */
#gNav ul {
	display: -webkit-flex;	/* safari用 */
	display: flex;
}


/*	縦棒の削除　2020.08.06  DLT-S  */

/* メニューリストの共通スタイル */
 /* *#gNav li { */
 /* *	border-left: 1px solid #7dceec; */
/*	縦棒の長さの変更　2020.08.05  upd-s  */
/*	height: 45px; */
 /* *	height: 90px; */
/*	縦棒の長さの変更　2020.08.05  upd-e  */
 /* *	text-align: center; */
/*	縦棒の数の変更　2020.07.28  upd-s  */
/*	width: 25%; */
 /* *	width: 20%; */
/*	縦棒の数の変更　2020.07.28  upd-e  */
/* *} */

/* 一番右のメニューリストのスタイル */
/* * #gNav li:last-child { */
/* *	border-right: 1px solid #7dceec; */
/* * } */
/*	縦棒の削除　2020.08.06  DLT-E  */



/* メニューのリンクスタイル */
#gNav a {
	color: #4d4d4d;
	display: block;
/*	フォント変更　2020.07.09  upd-s  */
/*	font-size: 11px;  */
	font-size: 17px;
/*	フォント変更　2020.07.09  upd-e  */
	line-height: 2;
	height: 45px;
	text-decoration: none;
}

/* メニューにマウスを乗せたときのスタイル */
#gNav a:hover {
	background-color: #BDF5FE;
}

/* メニューの英文字スタイル */
#gNav a span {
	color: #007de1;
	display: block;
	font-family: arial;
/*	フォント変更　2020.07.09  upd-s  */
/*      font-size: 10px;  */
        font-size: 17px;
/*	フォント変更　2020.07.09  upd-s  */
}

/* 現在ページのメニュースタイル */
#gNav .current-menu-item a, #gNav .current-menu-item a span {
	background-color: #2AA8E5;
	color: #ffffff;
}

/* ------------------------------------------------ */
/* 5.コンテンツ
/* ------------------------------------------------ */

/* エリア外枠のスタイル */
#contents {
	margin-bottom: 60px;
}

/* エリア内枠のスタイル */
#contents .inner {
	margin-bottom: 25px;
}

/* 中見出し */
h2 {
	background-color: #2AA8E5;
	color: #ffffff;
	font-size: 18px;
	margin-bottom: 25px;
	padding: 0.5em 1em;
}

/* 小見出し */
h3 {
	border: 1px solid #eeeeee;
	border-radius: 4px;
	box-shadow: 1px 1px 1px #999999;
	font-weight: bold;
	margin-bottom: 25px;
	padding: 0.2em 1em;
/* バックカラーを設定　	2020.06.30   S  */
	background-color: #7FFFD4;
/* バックカラーを設定　	2020.06.30   E  */



}

/* サービス内容のボックス */
.biz-box {
	padding: 0 25px;
	margin-bottom: 40px;
}

/* サービス内容の見出し */
.biz-box h3 {
	text-align: center;
}

/* サービス内容の画像 */
.biz-box img {
	margin-bottom: 25px;
	width: 100%;
}

/* ------------------------------------------------ */
/* 6.フッター
/* ------------------------------------------------ */

/* エリア外枠のスタイル */
footer {
	background: #2AA8E5;
	color: #ffffff;
	padding: 25px;
	display: -webkit-flex;	/* safari用 */
	display: flex;
}

/* エリア左側のボックス */
#footer-left {
	width: 300px;
}

/* エリア右側のボックス */
#footer-right {
	width: 610px;
}

/* ロゴ */
#footer-logo img {
	margin-bottom: 15px;
	width: 230px;
	height: 40px;
}

/* 会社所在地 */
#address {
/*	フォント変更　2020.07.09  upd-s  */
/*	font-size: 12px; */
	font-size: 14px;
/*	フォント変更　2020.07.09  upd-e  */
}

/* 著作権表記 */
#copyright {
	text-align: right;
	display: block;
}

/* ------------------------------------------------ */
/* 7.フッターナビゲーション
/* ------------------------------------------------ */

/* エリア外枠のスタイル */
#fNav {
	margin-bottom: 30px;
}

/* メニューリストを囲む枠 */
#fNav ul {
	display: -webkit-flex;	/* safari用 */
	display: flex;
	width: 518px;
	margin-left: auto;
}

/* メニューリストの共通スタイル */
#fNav li {
	padding: 0 15px;
	border-right: 1px solid #ffffff;
}

/* 一番最後のメニュー */
#fNav li:last-child {
	border-right: none;
	padding-right: 0;
}

/* メニューリンクの共通スタイル */
#fNav a {
	color: #ffffff;
	text-decoration: none;
}

/* メニューリンクにマウスを乗せたときのスタイル */
#fNav a:hover {
	background-color: #ffffff;
	color: #2AA8E5;
	opacity: 1;
}

/* ------------------------------------------------ */
/* 8.トップページ専用スタイル
/* ------------------------------------------------ */

/* メインビジュアル */
#main_visual {
	width: 100%;
}
/* サブビジュアルと理念の画像  2020.08.03　INS-S */

/* サブビジュア */
#sub_visual {
	width: 100%;
}
/* 理念 */
#rinen {
	width: 100%;
}
/* サブビジュアルと理念の画像  2020.08.03　INS-E */

/* 新着情報のリスト */
#news li {
	border-bottom: 1px dotted #aaaaaa;
	padding: 0.2em;
}

/* サービス内容の枠 */
#our-service {
	display: -webkit-flex;		/* safari用 */
	display: flex;
	-webkit-flex-wrap: wrap;	/* safari用 */
	flex-wrap: wrap;
}

/* ------------------------------------------------ */
/* 9.サービス内容ページ専用スタイル
/* ------------------------------------------------ */

/* ------------------------------------------------ */
/* 10.採用情報ページ専用スタイル
/* ------------------------------------------------ */

/* 採用情報のテーブル */
#recruit-prof {
	margin: 0 auto;
	width: 80%;
}

/* 採用情報のテーブルセル */
#recruit-prof th ,#recruit-prof td {
	border: 1px solid #2AA8E5;
	padding: 1em;
}

/* 採用情報の見出しセル */
#recruit-prof th {
	white-space: nowrap;
	background-color: #2AA8E5;
	color: #ffffff;
	border-bottom: 1px solid #ffffff;
}

/* 最終行の見出しセルの境界線を着色 */
#recruit-prof tr:last-child th {
	border-bottom: 1px solid #2AA8E5;
}

/* ------------------------------------------------ */
/* 11.プライバシーポリシーページ専用スタイル
/* ------------------------------------------------ */

/* プライバシーポリシーのリスト枠 */
#our-policy ol {
	margin-bottom: 25px;
}

/* プライバシーポリシーのリスト */
#our-policy li {
	list-style: decimal inside;
}

/* ------------------------------------------------ */
/* 12.お問い合わせページ専用スタイル
/* ------------------------------------------------ */

/* お問い合わせフォームのフレーム */
#mail-form iframe {
	width: 100%;
/* GOOGLE　FORM　の高さ変更　2020.06.30 UPD-S  */
    /*	height: 1100px;  */
	height: 1369px;
/* GOOGLE　FORM　の高さ変更　2020.06.30 UPD-E  */
}

/* ------------------------------------------------ */
/* レスポンシブ（768px以上のタブレット/PC）
/* ------------------------------------------------ */
@media only screen and (min-width:768px) {

	/* ------------------------------------------------ */
	/* 1.共通
	/* ------------------------------------------------ */

	/* PC専用コンテンツを表示 */
	.pc {
		display: block;
	}

	/* スマホ専用コンテンツを非表示 */
	.sp {
		display: none;
	}
}

/* ------------------------------------------------ */
/* レスポンシブ（767px以下のスマホ）
/* ------------------------------------------------ */
@media only screen and (max-width:767px) {

	/* ------------------------------------------------ */
	/* 1.共通
	/* ------------------------------------------------ */

	/* PC専用コンテンツを非表示 */
	.pc {
		display: none;
	}

	/* スマホ専用コンテンツを表示 */
	.sp {
		display: block;
	}

	/* グリッド型のボックスを縦並びにする */
	/* ボックス型の種類の追加　2020.06.25 UPD-S　*/
       /*        .col-4, .col-6, .col-8 { */
	.col-4, .col-6, .col-8 .col-12 {
	/* ボックス型の種類の追加　2020.06.25 UPD-E　*/
		display: block;
		width: 100%;
	}

	/* ------------------------------------------------ */
	/* 2.レイアウト
	/* ------------------------------------------------ */

	/* ページ全体を画面の横幅に合せる */
	#wrapper {
		width: 100%;
	}

	/* ------------------------------------------------ */
	/* 3.ヘッダー
	/* ------------------------------------------------ */

	/* 見出しを非表示 */
	h1 {
		display: none;
	}

/* ヘッダーロゴの設定の削除　2020.08.04 DLT-S  */
	/* ロゴを中央寄せ */
	/* #header-logo {
		text-align: center;
	} */
/* ヘッダーロゴの設定の削除　2020.08.04 DLT-E  */

	/* ------------------------------------------------ */
	/* 4.グローバルナビゲーション
	/* ------------------------------------------------ */

	/* ------------------------------------------------ */
	/* 5.コンテンツ
	/* ------------------------------------------------ */

	/* エリア内枠のスタイル */
	#contents .inner {
		padding: 0 0.5em;
	}

	/* 見出しを左右中央寄せ */
	h2 {
		text-align: center;
		font-size: 16px;
	}

	/* サービス内容のボックス */
	.biz-box {
		padding: 0 0;
	}

	/* ------------------------------------------------ */
	/* 6.フッター
	/* ------------------------------------------------ */

	/* エリアの外枠 */
	footer {
		display: block;
		padding: 25px 10px;
	}

	/* エリア左側のボックス */
	#footer-left {
		margin-bottom: 15px;
		text-align: center;
		width: 100%;
	}

	/* エリア右側のボックス */
	#footer-right {
		width: 100%;
	}

	/* 著作権表記 */
	#copyright {
		text-align: center;
		font-size: 12px;
	}

	/* ------------------------------------------------ */
	/* 7.フッターナビゲーション
	/* ------------------------------------------------ */

	/* メニューを縦並びにする */
	#fNav ul {
		display: block;
		width: 100%;
	}

	/* 各メニュー要素の装飾 */
	#fNav li {
		background-color: #ffffff;
		margin-bottom: 1px;
		position: relative;
		padding: 10px;
	}

	/* 各メニューのリンク領域を枠いっぱいに広げて上下中央寄せ */
	#fNav a {
		color: #2AA8E5;
		display: block;
	}

	/* 各メニュー右端のリンクボタン */
	#fNav li:after {
		background-color: #2AA8E5;
		border: 2px solid #ffffff;
		border-radius: 50%;
		content: '>';
		height: 20px;
		line-height: 20px;
		padding: 0;
		position: absolute;
		right: 7px;
		top: 10px;
		width: 20px;
		text-align: center;
	}

	/* 一番最後のメニューにもリンクボタンをつける */
	#fNav li:last-child:after {
		content: '>';
	}

	/* ------------------------------------------------ */
	/* 8.トップページ専用スタイル
	/* ------------------------------------------------ */

	/* メインビジュアル */
/* サブビジュアルと理念の画像の追加  2020.08.03　UPD-S */
/*	#contents .inner#main_visual { */
	#contents .inner#main_visual .inner#sub_visual .inner#rinen { */
		padding: 0 0;
	}
/* サブビジュアルと理念の画像の追加  2020.08.03　UPD-E */

	/* サービス内容 */
	#our-service {
		display: block;
	}

	/* ------------------------------------------------ */
	/* 9.サービス内容ページ専用スタイル
	/* ------------------------------------------------ */

	/* ------------------------------------------------ */
	/* 10.採用情報ページ専用スタイル
	/* ------------------------------------------------ */

	/* 表を枠いっぱいに広げる */
	#recruit-prof {
		width: 100%;
	}

	/* 表の各セルをブロック要素に変更して縦並びにする */
	#recruit-prof th,#recruit-prof td {
		display: block;
	}

	/* 表の見出しセル */
	#recruit-prof th {
		border: 1px solid #eeeeee;
		border-radius: 4px;
		box-shadow: 1px 1px 1px #999999;
		font-weight: bold;
		padding: .2em 1em;
		background-color: #ffffff;
		color: initial;
		text-align: left;
	}

	/* 最終行の見出しセルは境界線を表示する */
	#recruit-prof tr:last-child th {
		border-bottom: 1px solid #eeeeee;
	}

	/* 表のデータセルは境界線を表示しない */
	#recruit-prof td {
		border: none;
	}

	/* ------------------------------------------------ */
	/* 11.プライバシーポリシーページ専用スタイル
	/* ------------------------------------------------ */

	/* ------------------------------------------------ */
	/* 12.お問い合わせページ専用スタイル
	/* ------------------------------------------------ */
	
}
