@charset "utf-8";



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

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

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #3e3a39;		/*リンクテキストの色*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #f08300;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}


/*PCのみ表示させたい場合「.pc」のクラスを追加。スマホのみ表示させたい場合「.sp」のクラスを追加。
---------------------------------------------------------------------------------------------------------*/
/*PCの場合*/
.pc	{ display:inline!important; }
.sp	{ display:none!important; }
@media screen and (max-width: 600px) {
/*タブレット、スマホの場合*/
.pc	{ display:none!important; }
.sp { display:inline!important; }
}



/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-top: 4px solid #cbacdb;	/*上の線の幅、線種、色*/
	background: #fff;	/*背景*/
}
header .inner {
	position: relative;
	height: 40px;	/*ヘッダーの高さ*/
}


header .inner h1 { color:#595757; font-size:70%; margin-bottom:7px; padding-top:7px; margin-left:4px; line-height:1.6em; }
#caption {
	position: absolute;
	left: 3%;		/*header のinnerに対して右から3%の場所に配置*/
	top: 0px;	/*header のinnerに対して上から15pxの場所に配置*/
}


/*ロゴ画像*/
header #logo img {
	width: 580px;	/*画像幅*/
	position: absolute;
	left: 3%;		/*ヘッダーに対して左から3%の場所に配置*/
	top: 30px;	/*ヘッダーに対して上から38pxの場所に配置*/
}


/*ヘッダー内メニュー（電話番号）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 3%;		/*header のinnerに対して右から3%の場所に配置*/
	top: 25px;	/*header のinnerに対して上から15pxの場所に配置*/
}



/*inner
---------------------------------------------------------------------------*/
.inner {
	overflow: hidden;
	max-width: 1400px;	/*コンテンツの最大幅*/
	padding: 50px 10%;	/*上下、左右へのボックス内の余白*/
}



/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	height: 55px;		/*メニューの高さ。下の「#menubar ul li a」の「height」と「padding-top」の数字を合計した数字に合わせる。*/
	text-align: center;	/*文字を中央に*/
	background: #8178b6;	/*背景色*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 20%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}


#menubar li a {
	text-decoration: none;display: block;
	font-size: 120%;			/*文字サイズ*/
	line-height: 1.6;	/*行間を少し狭く*/
	color: #fff;		/*文字色*/
	height: 40px;		/*高さ*/
	padding-top: 15px;	/*上に追加する余白*/
	border-right: 1px solid #fff;	/*メニューの右側の線の幅、線種、色（古いブラウザ用）*/
	border-right: 1px solid rgba(255,255,255,0.5);	/*右の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}





/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #fff;	/*メニューの線の幅、線種、色（古いブラウザ用）*/
	border-left: 1px solid rgba(255,255,255,0.5);	/*左の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
/*飾り文字*/
#menubar li span {
	display: block;
	font-size: 9px;			/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	opacity: 0.5;			/*透明度50％*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	background: #74609e;	/*背景色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}



/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;padding-top: 1px;
	width: 16.66%;		/*幅。上の「#menubar li」と合わせる。*/
	font-size: 12px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a {
	width: 100%;height: auto;font-weight: normal;
	border: none;	/*線を一旦リセット*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
	color: #fff;		/*文字色*/
	padding: 10px 0;	/*上下、左右への余白*/
}
/*ドロップダウンメニュー内の見出し*/
#menubar ul.ddmenu li.title a {
	background: #6fbfd1;	/*背景色*/
	cursor: default;		/*カーソルをリンク用でなくデフォルトの矢印にしておく*/
	padding: 3px 0;			/*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #000;	/*背景色*/
}
/*見出しのマウスオン時*/
#menubar ul.ddmenu li.title a:hover {
	background: #6fbfd1;
}



/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu .nav-fix-pos {
	width: 100%;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
}
body.is-fixed-menu header {
	margin-bottom: 75px;	/*メニューの高さを指定。menubarのborderが1px分ありますが大差ないので75でOKです。*/
}
/*上の設定の「is-fixed-menu」を「is-fixed」に変更したものをそのまま記入します。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed header {
	margin-bottom: 75px;
}




/*背景色のスタイルです。contentsとセットで使います。
---------------------------------------------------------------------------*/
/*bg1*/
.bg1 {
	background: #f6f7f0;	/*背景色のみ*/
}


/*bg2（Contactブロックで使用）*/
.bg2 {
	background: #000 url(../images/bg2.jpg) no-repeat center center;	/*背景画像の読み込み（古いブラウザ用）*/
	background: #000 url(../images/bg2.jpg) no-repeat center center / cover;	/*背景画像の読み込み*/
	color: #fff	/*文字色*/
}

.bg2 .corporatename {
	color: #3e3a39	/*文字色*/
}

.bg2 .name {
	color: #3e3a39	/*文字色*/
}


/*contents
---------------------------------------------------------------------------*/
/*h2見出し*/
.contents h2 {
	clear: both;
	margin-bottom: 30px;	/*下に空けるスペース*/
	font-size: 32px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	line-height: 1.5;		/*行間をデフォルトから少し狭くする*/
}
/*h2見出し内のspanタグ。小文字表記部分。*/
.contents h2 span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}
/*h3見出し*/
.contents h3 {
	clear: both;
	margin-bottom: 20px;	/*下に空けるスペース*/
	margin-top: 30px;	/*上に空けるスペース*/
	font-size: 24px;		/*文字サイズ*/
	background: url(../images/line1.png) no-repeat center bottom;	/*背景画像（下線）の読み込み（古いブラウザ用）*/
	background: url(../images/line1.png) no-repeat center bottom / 100% 2px;	/*背景画像（下線）の読み込み。幅は100%、高さを2pxにする。*/
	padding: 0 10px;	/*上下、左右へのブロック内の余白*/
}

/*h4見出し*/
.contents h4 {
	clear: both;
	margin-bottom: 0px;	/*下に空けるスペース*/
	font-size: 20px;		/*文字サイズ*/
	padding: 0 10px;	/*上下、左右へのブロック内の余白*/
	color:#9388C3;
}



/*textboxブロック
---------------------------------------------------------------------------*/
/*textboxブロック設定*/
.textbox {
	overflow: hidden;position: relative;
	box-shadow: 0px 3px 3px rgba(0,0,0,0.3) ;	/*ボックスの影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.3は透明度30%の事。insetは内側に向かう影。*/
	border:solid 2pt#F3F0F0;
	border-radius: 10px;
	margin: 2% 0.8%;	/*上、左右、下へのボックスの外に空けるスペース*/
	padding: 1%;	/*ボックス内の余白*/
}
.textbox a {
	overflow: hidden;text-decoration: none;display: block;
}
/*h4タグ設定*/
.textbox h4 {
	padding: 0;border: none;
	font-weight:bold;
	line-height: 2em;
	margin-bottom: 0.5em;
	text-align:center;
}
/*段落タグ設定*/
.textbox p {
	line-height: 1.6;
	overflow: hidden;
}

/*トップページfigure画像の設定*/
.textbox figure img {
	margin: 0 0 4% 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の右側回り込みの設定*/
.textbox figure img.fr {
	width: 20%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0 0 0 4%;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の左側回り込みの設定*/
.textbox figure img.fl {
	width: 20%;		/*画像幅*/
	float: left;	/*左に回り込み*/
	margin: 0 4% 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}


/*3カラム利用時（PC用）--------------------------------------------*/
.c3 .textbox {
	float: left;	/*左に回り込み*/
	padding: 2.2%;	/*ボックス内の余白の上書き*/
	width: 26.0%;	/*幅*/
}
/*h4タグ*/
.c3 .textbox h4 {
	font-size: 16pt;
}
/*p段落タグ*/
.c3 .textbox p {
	font-size: 11pt;
	height: 8.5em;	/*上の「.textbox p」の「1.8」×「表示させたい行数」を設定。7.2だと4行分になる。*/
}

/*p段落タグ*/
.c3 .textbox p span {
	font-size: 11pt;
	font-weight: bold;
	color:#3872B9;
}


/*1カラム利用時（スマホ用）--------------------------------------------*/
.c1 .textbox {
	padding: 2.2%;	/*ボックス内の余白の上書き*/
}
/*h4タグ*/
.c1 .textbox h4 {
	font-size: 16pt;
}
/*p段落タグ*/
.c1 .textbox p {
	font-size: 12pt;
	height: 7em;	/*上の「.textbox p」の「1.8」×「表示させたい行数」を設定。7.2だと4行分になる。*/
}

/*p段落タグ*/
.c1 .textbox p span {
	font-size: 100%;
	font-weight: bold;
	color:#3872B9;
}



.service_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
.service_grid {
	display: grid;
	grid-template-columns: 1fr;
	}
}








/*ご利用の流れ
---------------------------------------------------------------------------*/
/*textbox2ブロック設定*/

.textbox2_flex{
    display: flex;
    grid-gap: 5px;
    margin: 10px auto 0;
    text-align:center;
}

.textbox2 {
	overflow: hidden;position: relative;
	background:#F7F8E0;
	border:solid 2pt#ddc3a4;
	border-radius: 10px;
	margin: 0.3% auto 0.5%;	/*上、左右、下へのボックスの外に空けるスペース*/
	padding: 0.8% ;	/*ボックス内の余白*/
	width:70%;
}

/*h4タグ設定*/
.textbox2 h4 {
	color:#9388C3;
	font-size:125%;
	padding: 0;border: none;
	font-weight:bold;
	line-height: 1.5em;
	
}
/*段落タグ設定*/
.textbox2 p {
	color:#9388C3;
	line-height: 1.6;
	overflow: hidden;
}


/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
	.textbox2_flex{
	    display: block;
	    margin: 10px auto 0;
	}

}




/*問い合わせボックス
---------------------------------------------------------------------------*/
/*textbox3ブロック設定*/
.textbox3 {
	width:500px;
	box-shadow: 0px 3px 3px rgba(0,0,0,0.3) ;	/*ボックスの影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.3は透明度30%の事。insetは内側に向かう影。*/
	background: linear-gradient(#fff, #F3F0F0);	/*背景色*/
	border:solid 2pt#F3F0F0;
	border-radius: 30px;
	margin: 1% auto 2%;	/*上、左右、下へのボックスの外に空けるスペース*/
	padding: 2% 1%;	/*ボックス内の余白*/
}

.textbox3 .phone a{ 
	font-weight:bold; font-size:210%; color: #FF778A; line-height: 1.3em;}
.textbox3 .fax { 
	font-weight:bold; font-size:150%; color: #FF778A; line-height: 1.0em;}
.site_desc { font-size:73.3%;  color: #fff; margin-top:10px;}

/*段落タグ設定*/
.textbox3 p {
	font-size:120%; padding: 0;border: none;font-weight:bold; line-height: 2em; text-align:center;}


/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
.textbox3 {
	width:90%;
	margin: 2% auto 2%;	/*上、左右、下へのボックスの外に空けるスペース*/
	padding: 2% 1%;	/*ボックス内の余白*/
}

.textbox3 .phone a{ 
	font-size:180%;
}

}




@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}



/*一日の流れ&プログラム
---------------------------------------------------------------------------*/
/*textbox4ブロック設定*/
.textbox4 {
	overflow: hidden;position: relative;
	background:#F7F8E0;
	box-shadow: 0px 3px 3px rgba(0,0,0,0.3) ;	/*ボックスの影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.3は透明度30%の事。insetは内側に向かう影。*/
	border-radius: 10px;
	margin: 0.2% auto 0.2%;	/*上、左右、下へのボックスの外に空けるスペース*/
	padding: 1.5% ;	/*ボックス内の余白*/
	width:75%;
	text-align:left;

    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 20px;
    margin: 0 auto 0;

}

/*h4タグ設定*/
.textbox4 h4 {
	color:#FE9A2E;
	font-size:125%;
	border: none;
	margin-top:10px;
	font-weight:bold;
	line-height: 2.0em;
	display:inline;
	
}
/*段落タグ設定*/
.textbox4 p {
	font-size:90%;
	line-height: 1.7;
	text-align:left;
	overflow: hidden;
}

.textbox4 img {
	width:100%;
}

.arrow {
	display: block;
    margin-left: auto;
    margin-right: auto
}


/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
	.textbox4{
	    display: block;
	    margin: 0 auto 0;
	    width:90%;
	}

	.textbox4 img {
		width:93%;
		padding:10px;
	}

	.textbox4 p {
		font-size:108%;
		line-height: 1.5;
		padding:10px;
	}

	/*h4タグ設定*/
	.textbox4 h4 {
		font-size:150%;
		line-height: 1.5em;
	}


}



/* ----- サービス一覧 ----- */
/* pc */
.block_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 20px auto 0;
}
.block_wrapper a:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.service_block {
    padding: 20px;
    border: 2px solid #eee;
    box-shadow: 4px 4px 4px #ccc;
}

.sb_title {
	text-decoration:none;
	text-align:center;
    font-weight: bold;
    font-size: 18px;
}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){
	.block_wrapper {
	    display: grid;
	    grid-template-columns: 1fr;
	    grid-gap: 10px;
	    margin: 10px auto 0;
	}
	.block_wrapper a:hover {
	    opacity: 0.8;
	    transition: 0.2s;
	}
	.service_block {
	    padding: 10px;
	}

	.sb_title {
	    font-size: 16px;
	}

}



/*トップに戻るボタン
---------------------------------------------------------------------------*/
/*buttonブロック設定*/
.button {
	display:inline-block;
	background:#f08300;
	box-shadow: 0px 3px 3px rgba(0,0,0,0.3) ;	/*ボックスの影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.3は透明度30%の事。insetは内側に向かう影。*/
	border-radius: 40px;
	margin: 2em 0.5em;	/*上、左右、下へのボックスの外に空けるスペース*/
	padding: 0.5em 2em 0.5em 2em;	/*ボックス内の余白*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/

}

.button:hover {

	background:#db690b;

}


/*段落タグ設定*/
.button_p {
	color:#ffffff;
	font-size:125%;
	font-weight:bold;
	text-align:center;
}

.button_p a {
	color:#ffffff;
	overflow: hidden;text-decoration: none;display: block;
}






/*Galleryページの各ボックス
---------------------------------------------------------------------------*/
.list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0px;
    margin: auto 0;
	background: #fff;	/*背景色。下の設定で透明度を半分にしているので、その際に出てくる色です。白にしておけば白っぽく表示されます。*/
}
/*画像の設定*/
.list a img {
	opacity: 0.5;	/*透明度50%。*/
}
/*マウスオン時の画像の設定*/
.list a:hover img {
	opacity: 1;		/*色が100%ついた状態*/
}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){
	.list {
	    display: grid;
	    grid-template-columns: 1fr;
	    grid-gap: 10px;
	    padding:10px;
	    background: #fff;	/*背景色。下の設定で透明度を半分にしているので、その際に出てくる色です。白にしておけば白っぽく表示されます。*/

	    
	}

/*画像の設定*/
.list a img {
	opacity: 1.0;	/*透明度50%。*/
}

}



/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {

	overflow: hidden;
	padding: 10px 0;
	font-size: 100%;	/*文字サイズ*/
	color: #3E3A39;
	line-height:2em;
	text-align:center;
}

#footermenu a {color: #3E3A39;}
#footermenu a:hover {color: #B179C1;}


/*１行分の設定*/
#footermenu .foot_address {
	padding-right: 1%;
	padding-left: 1%;
}
#footermenu .phone a{ font-weight:bold; font-size:250%; color: #FF778A; margin-top:10px;line-height: 1.3em;}
#footermenu .fax { font-weight:bold; font-size:160%; color: #FF778A;}
#footermenu .corporatename {font-weight:bold;font-size:105%; color: #fff;}
#footermenu .hospitalname { font-weight:bold; font-size:150%; color: #fff;}
#footermenu .address { margin-bottom:0px;  color: #fff;}
#footermenu .access { font-size:90%;  color: #fff;	line-height:-2em;}
#footermenu .copyright { font-size:73.3%;  color: #fff;}
#footermenu .site_desc { font-size:73.3%;  color: #fff; margin-top:10px;}

#footermenu .access2 { font-size:110%;  color: #3e3a39;	line-height:-2em;}

/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*センタリング*/
	background: #8783C8;	/*背景色*/
	color: #fff;		/*文字色*/
	padding: 5px 0;	/*上下、左右へのボックス内の余白*/
	
}
footer a {text-decoration: none;color: #fff;}
footer .pr {display: block;font-size: 12px;}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0 10px;	/*上下、左右へのボックス内の余白*/
}
/*日付設定*/
#new dt {
	float: left;	/*左に回り込み*/
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
}

#new dt {
	float: left;	/*左に回り込み*/
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
}

/*記事設定*/
#new dd {
	padding-left: 9em;	/*左に空ける余白*/
}

/*フロアマップ画像の設定
---------------------------------------------------------------------------*/
.floormap {
	margin-bottom:30px;
	width: 80%;		/*画像幅*/
	margin: 0 auto;
}



/* サービス紹介 */
.conditions_wrapper {
    position: relative;
    width: fit-content;
    margin: 30px auto 30px;
    padding: 20px 20px 20px 20px;
    border: 1px solid #ff9d26;
}
.conditions_title {
    position: absolute;
    top: -25px;
    left: 20px;
    color: #ff9d26;
    font-size: 1.4rem;
}
.ct_space {
    padding: 0.5em;
    background-color: #fff;
}
.conditions_sentence {
    line-height: 1.8;
    font-size: 1.0rem;
}
.conditions_emphasis {
    color: #ff9d26;
    font-weight: bold;
}
.blocksp_add_margin {
    margin: 20px auto 40px;
}
.blockpc_add_margin {
    margin: 30px auto 80px;
}
.conditions_list {
    list-style-type: disc;
    margin-left: 1em;
}



/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1（要支援1.2）*/
.ta1 {
	width: 100%;
	margin: 0 auto 30px;	/*上、左右、下へのテーブルの外側へとるスペース*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #3e3a39;	/*テーブルの枠線の幅、線種、色*/
	background: #ffffff;	/*背景色*/
	padding: 5px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #3e3a39;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;		/*上のborderの指定から下線だけ消す設定*/
	padding: 5px 15px;	/*上下、左右へのボックス内の余白*/
	background: rgba(255,255,255,0.3);	/*背景色。255,255,255は白で、0.3は30%色がついた状態。古いブラウザでは適用されないので、必要ならこの上の行に通常のbackground指定を加えて下さい。*/
	text-align: left;		/*文字を左寄せ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 60%;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #D8D8D8;	/*背景色*/
}



/*ta2（要介護1～5）*/

.ta2 {
	width: 100%;
	margin-bottom:10px;
}

.ta2 td, .ta2 th {
	border: 1px solid #3e3a39;	/*テーブルの枠線の幅、線種、色*/
	background: #ffffff;	/*背景色*/
	line-height: 1.2;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
	text-align: right;
}

/*ta2の上側ボックス*/
.ta2 th {
	background: #D8D8D8;	/*背景色*/
	text-align: center;	/*センタリング*/
}

/*ta2 文字右寄せ*/
.ta2 td.right,ta2 th.right {
	text-align: right;	/*右よせ*/
}

/*ta2 文字左寄せ*/
.ta2 td.left,ta2 th.left {
	text-align: left;	/*左よせ*/
}

/*ta2 文字中央寄せ*/
.ta2 td.center,ta2 th.center {
	text-align: center;	/*中央よせ*/
}

/*テーブル右側補足部分*/
.ta2 td.none,ta2 th.none{ 
	padding:10px; border:none;
}
.ta2 td span{ 
	font-size:80%;
}

/*ta2　見出し青色*/
.ta2 td .blue {
	background: #B0D6F2;	/*背景色*/
}


/*ta3（加算料金）*/




.ta3 {
	width: 60%;
}

@media screen and (max-width: 800px){
.ta3 {
	width: 100%;}
}



.ta3 td, .ta3 th {
	border-bottom: 1px dotted #3e3a39;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1.5;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
	text-align: right;
}

/*ta3の上側ボックス*/
.ta3 th {
	text-align: left;	/*左寄せ*/
}

.ta3 p.right {
	text-align: right;	/*左寄せ*/
}


/*ta3 文字右寄せ*/
.ta3 td.right,ta3 th.right {
	text-align: right;	/*右よせ*/
}

/*ta3 文字左寄せ*/
.ta3 td.left,ta3 th.left {
	text-align: left;	/*左よせ*/
}

/*ta3 文字中央寄せ*/
.ta3 td.center,ta3 th.center {
	text-align: center;	/*中央よせ*/
}






/*ta4（基本情報）*/

.ta4 {
	width: 70%;
	margin: 30px auto;
	background:#fff;
}

.ta4 td, .ta4 th {
	border: 1px solid #3e3a39;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1.6;
	padding: 5px;	/*ボックス内の余白*/
	word-break: break-all;
}

/*ta4の上側ボックス*/
.ta4 th {
	text-align: center;	/*センタリング*/
	background: #E8F3DE;	/*背景色のみ*/
	width:180px;
}
}

/*ta4 文字右寄せ*/
.ta4 td.right,ta4 th.right {
	text-align: right;	/*右よせ*/
}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){
	.ta4 {
		width: 100%;
	}
	.ta4 th {

		width:90px;
	}
}


/*ta6 文字左寄せ*/
.ta6 td{
	text-align: left;	/*左よせ*/
}


/*ta6 文字右寄せ*/
.ta6 td.right,ta6 th.right {
	text-align: right;	/*右よせ*/

}

/*ta6 文字左寄せ*/
.ta6 td.left,ta6 th.left {
	text-align: left;	/*左よせ*/
}

/*ta6 文字中央寄せ*/
.ta6 td.center,ta6 th.center {
	text-align: center;	/*中央よせ*/
}



a.cp_btn {
	display: block;
	text-decoration:none;
	width: 100%;
	padding: 0.8em;
	text-align: center;
	color: #FFF;
	border-radius: 4px;
	background: #4DD0E1;
	overflow: hidden;
}
a.cp_btn span {
	display:inline-block;
	transition: .5s
}
a.cp_btn:hover span {
	transform: rotateX(360deg);
}




/*ページの上部に戻る「↑」ボタン
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*通常時のボタンは非表示*/
body .nav-fix-pos2-pagetop a {
	display: none;
}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos2-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;	/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
	z-index: 100;
	position: fixed;
	bottom: 20px;	/*ウィンドウの下から20pxの場所に配置*/
	right: 1%;		/*ウィンドウの右から1%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸指定。50%にすると円形になる。四角形がいいならこの１行削除。*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時の背景色*/
body.is-fixed-pagetop .nav-fix-pos2-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 {background: #c3b5a2;background: rgba(0,0,0,0.1);padding: 5px 10px;border-radius: 4px;}
.mb10 {margin-bottom: 10px !important;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #b52654 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 45%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}

.comingsoon {
	background: #ddd4c8;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 30px;		/*文字サイズ*/
	line-height: 15;
	padding: 10px 10px;
	border-radius: 2px;
	text-align: center;
}


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

/*inner
---------------------------------------------------------------------------*/
.inner {
	padding: 50px 3%;	/*上下、左右へのボックス内の余白*/
}


/*ロゴ画像*/
header #logo img {
	width: 350px;	/*画像幅*/
	position: absolute;
	left: 3%;		/*ヘッダーに対して左から3%の場所に配置*/
	top: 30px;	/*ヘッダーに対して上から38pxの場所に配置*/
}

header #headermenu img{
	width: 220px;	/*画像幅*/
	right: 3%;		/*ヘッダーに対して左から3%の場所に配置*/
	top: 30px;	/*ヘッダーに対して上から38pxの場所に配置*/
}


/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu header,body.is-fixed header {margin-bottom: 0px;}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;z-index: 10;
	position: absolute;
	top: 100px;	/*上から100pxの場所に配置*/
	width: 100%;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	background: #8178b6;	/*背景色*/
	font-size: 20px;		/*文字サイズ*/
	color: #fff;		/*文字色*/
}
/*英語表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 12px;	/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;position: absolute;
	top: 14px;	/*上から24pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;		/*幅*/
	height: 50px;		/*高さ*/
	border-radius: 50%;	/*円形にする。この行削除すれば正方形になります。*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #8178b6 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコンの読み込み、上半分(top)を表示、幅50px*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #8178b6 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコンの読み込み、上半分(bottom)を表示、幅50px*/
}



/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 20px;}
.fl {float: none;}
.fr {float: none;}
.sh {display:block;}
.pc {display:none;}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	padding: 30px 3%;	/*上下、左右へのボックス内の余白*/
}

/*contents
---------------------------------------------------------------------------*/
/*h2見出し*/
.contents h2 {
	margin-bottom: 20px;	/*下に空けるスペース*/
	font-size: 24px;		/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔をデフォルトにする*/
}
/*h3見出し*/
.contents h3 {
	margin-bottom: 10px;	/*下に空けるスペース*/
	font-size: 16px;	/*文字サイズ*/
	padding-bottom: 5px;	/*下線と文字が近すぎるので、少し余白を作る*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}


/*フロアマップ画像の設定
---------------------------------------------------------------------------*/
.floormap {
	margin-bottom:30px;
	width: 100%;		/*画像幅*/
	margin: 0 auto;
}


/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}

}
