@charset "utf-8";

@import url("/css/html5reset-1.6.1.css");
@import url("/css/mintrs.css?0007");
@import url("/css/scommon.css");
@import url("/css/add1.css?0001");

/*slide.cssの読み込み*/
@import url(slide.css);


/*PC・タブレット・スマホ共通設定		※PerpleDay(2021-3/24～3/29) #001fd8 → #9d35c9
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #222;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	xfont-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 16px;	xfont-size: 18px;	/*文字サイズ*/
	line-height: 1.6;		/*行間,1.8*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
p {margin:0;	padding:0;	font-size:100%;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
th {padding:.5em 0; line-height:1.1; }
td {padding:.7em 0;  }
td,th {	vertical-align:middle; }

iframe {width: 100%;}
video,audio {max-width: 100%;}
input,select,textarea,option {
	border:1px solid #ccc;
	font-size:110%;	line-height:1.5;
}
select { padding:.0em .2em .4em; }

.w80rs {	
	margin:0 auto;
	width:50%;
	height:auto;
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	text-decoration:none;
}
a:hover {
	color: #001fd8;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*サイトの最大幅の設定
---------------------------------------------------------------------------*/
#container,#menubar,footer .inner {
	max-width: 1400px;	/*サイトの最大幅。これ以上大きくならない。*/
	margin: 0 auto;
}

/*containerの設定（footer以外の、ホームページを囲むブロック）
下の「1450px以下の設定」にあるbody.is-fixed #menubarのmarginの数字と合わせておく。
---------------------------------------------------------------------------*/
#container {
	padding: 0 50px;	/*上下、左右へのブロック内余白*/
}
body.is-fixed #menubar { padding:0 50px; }	/* box-sizing/border-box用追加 */
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;
	margin: 0 auto;
	height: 120px;	/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo {
	width: 600px;		/*ロゴ画像の幅*/
	position: absolute;
	left: 1%;		/*ヘッダーブロックの左からの配置指定*/
	bottom: 50px;	/*ヘッダーブロックの下からの配置指定*/
}
header #logo a { display:block; width:100%; }

/*TELブロック*/
header address {
	position: absolute;
	right: 2%;		/*ヘッダーブロックの右からの配置指定*/
	top: 5px;	/*ヘッダーブロックの下からの配置指定*/
	z-index:-10;
}
/*TELブロックの電話番号部分*/
header address img { margin-top:.3em; margin-left:77%; align:right; width:25%; max-width:550px; }

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	position: relative;
	margin: 0 auto 20px;	/*上、左右、下へのマージン。20pxを変更する際は、「body.is-fixed header」の数値も変更する。*/
	height: 75px;			/*メニューの高さ。下の「#menubar li a」の「height」と「padding-top」の数字を合計した数字に合わせる。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 14.2857%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
	line-height: 1.8;	/*行間を少しだけ狭く*/
}
#menubar li a {
	text-decoration: none;display: block;
	text-align: center;
	height: 75px;		/*高さ*/
	padding-top: 15px;	/*上に追加する余白*/
	color: #fff;		/*文字色*/
	border-left: 1px dashed #fff;	/*メニューの左側の線の幅、線種、色（古いブラウザ用）*/
	border-left: 1px dashed rgba(255,255,255,0.4);	/*左の線の幅、線種、255,255,255は白の事で0.4は40%色がついた状態の事。*/
	xbackground: #001fd8;	/*背景色*/
	background: #9d35c9;	/*背景色*/

}
/*最初のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: none;
	border-radius: 10px 0px 0px 10px;	/*角丸の指定。左上、右上、右下、左下への順番。*/
}
/*最後のメニューへの追加設定*/
#menubar li:last-child a {
	border-radius: 0px 10px 10px 0px;	/*角丸の指定。左上、右上、右下、左下への順番。*/
}
/*飾り文字*/
#menubar li span {
	display: block;
	font-size: 10px;		/*文字サイズ*/
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	opacity: 0.5;			/*透明度50％*/
}
/*マウスオン時と、現在表示中(current)のメニューの設定*/
#menubar li a:hover, #menubar li.current a {
	xbackground: #001697;	/*背景色*/
	background: #7d15a9;	/*背景色*/

}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	width: 14.2857%;		/*幅。上の「#menubar li」と合わせる。*/
	border-top: 1px solid #fff;	/*上の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
	line-height: 1.5;
}
#menubar ul.ddmenu li a {
	width: 100%;height: auto;font-weight: normal;border-radius: 0 !important;
	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 a:hover {
	background: #000;	/*背景色*/
}

/*fixmenu。メインメニューが画面上部に到達した際の設定
---------------------------------------------------------------------------*/
/*fixmenuブロック*/
body.is-fixed .nav-fix-pos {
	width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
	opacity:0.85;
}
/*headerブロック*/
body.is-fixed header {
	margin-bottom: 95px;	/*メインメニューのheight(75)とmargin-bottom(20)を足した数字にする*/
}
/*最初のメニューへの追加設定*/
body.is-fixed #menubar li:first-child a {
	border-left: none;
	border-radius: 0px 0px 0px 10px;
}
/*最後のメニューへの追加設定*/
body.is-fixed #menubar li:last-child a {
	border-radius: 0px 0px 10px 0px;
}

/*コンテンツ（mainとsubブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	padding: 40px 0;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ボックス幅*/
	padding-bottom: 40px;
}
/*１カラム時のメインコンテンツ*/
.c1 #main {
	float: none;
	width: auto;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 5px 20px;	/*上下、左右への余白*/
	font-size: 130%;	/*文字サイズ*/
	color: #fff;		/*文字色*/
	xbackground: #001fd8;	/*背景色*/
	background: #9d35c9;	/*背景色*/
	border-radius: 10px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
/*h2タグの１文字目への追加設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	margin-bottom: .8em;
	padding: 5px 20px;	/*上下、左右への余白*/
	font-size: 110%;	/*文字サイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 10px;	/*角丸のサイズ。この行を削除すれば角が尖った長方形になります。*/
}
/*h3タグの１文字目への追加設定*/
#main h3::first-letter {
	xborder-left: 3px solid #001fd8;	/*左の線の幅、線種、色*/
	border-left: 3px solid #9d35c9;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線とテキストとの余白*/
}
#main h2 , #main h3 , .box h4  ,  .acbox label	
	 {	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }

/*mainコンテンツの段落タグ設定*/
#main p {		/*上 右 下 左への余白 org:padding: 0 0 .8em .5em; */
	padding-left:.5em;
	margin-bottom:.7em;
}
/*他。微調整。*/
#main p + p {
	xmargin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	xmargin-top: -10px;
}
#main h3 + ul {
	xmargin-top: -10px;
}

#main section + section {
	margin-top: 1em;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 22%;		/*ブロックの幅*/
	padding-bottom: 40px;
}
/*１カラム字のサブコンテンツ*/
.c1 #sub {display: none;}
/*h2見出しタグ設定*/
#sub h2 {
	margin-bottom: 10px;
	font-size: 110%;	/*文字サイズ*/
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	xborder-left: 3px solid #001fd8;	/*左側のアクセント用ラインの幅、線種、色*/
	border-left: 3px solid #9d35c9;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}
/*段落タグ（p）設定*/
#sub p {
	line-height: 1.6;	/*行間を少し狭く*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub .submenu li {
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
#sub .submenu li a {
	text-decoration: none;display: block;
	padding: 10px 10px 10px 30px;	/*上、右、下、左へのメニュー内の余白*/
	background: #fff url(../images/ppd/arrow2.png) no-repeat 10px center / 10px;	/*矢印アイコンの読み込み。左から10px、上下中央に配置。幅10px。*/
}

/* サブメニューのバナー */
#sub .sbanner {	margin-bottom: 20px;	}
#sub .sbanner li {	margin:5px;	}
#sub .sbanner li a{	}
#sub .sbanner li img{ max-width:234px;	}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	background: #f5f5f5;	/*背景色*/
	border: solid 1px #dbdbdb;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
	border-radius: 10px;	/*角丸のサイズ*/
}
/*box1内のメニューの設定*/
#sub .box1 .submenu {
	margin-bottom: 0px;
}
#sub .box1 .submenu li a {
	padding: 5px 10px;	/*上下、左右へのメニュー内の余白*/
	background: #fff;	/*背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
/*footerボックス*/
footer {
	clear: both;overflow: hidden;
	xborder-top: 5px solid #001fd8;	/*上の線の幅、線種、色*/
	border-top: 5px solid #9d35c9;	/*上の線の幅、線種、色*/
	background: #555;	/*背景色*/
	color: #fff;		/*文字色*/
	padding-top: 20px;	/*上に空けるボックス内の余白*/
}
/*footer内のinner*/
footer .inner {
	padding: 0 50px;	/*上下、左右へのブロック内余白*/
}
/*リンクテキスト、マウスオン時の文字色*/
footer a, footer a:hover {
	color: #fff;
}
/*フッター内のh2タグ*/
footer h2 {
	font-size: 150%;	/*文字サイズ*/
	font-weight: normal;
	text-align: center;	/*内容をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少し広く*/
}
/*フッター内のaddress（電話番号ブロック）タグ*/
footer address {
	background: #fff;		/*背景色*/
	border-radius: 10px;	/*角丸の指定*/
	text-align: center;		/*内容をセンタリング*/
	padding: .7em 0px;			/*ボックス内の余白*/
}
footer address img { width:49.9%; height:100%; }
/*フッター内のaddress（電話番号の行）タグ*/

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	clear: both;overflow: hidden;
	xfont-size: 80%;	/*文字サイズを少し小さく*/
	margin-left: -1%;
	padding: 1em 0;
}
/*１列分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 24%;		/*今回は４列作ったので、下のmarginを含めて25%になるよう指定。５列にするならこの行は19%にする。*/
	margin-left: 1%;
	padding-bottom:0.5em;
}
/*メニュー１個あたりの設定*/
#footermenu ul li {
	padding: 0 0 0 10px;	/*上下、左右への余白*/
}
/*見出し*/
#footermenu li.title {
	font-weight: bold;	/*太字にする*/
	background: rgba(0,0,0,0.3);	/*背景色*/
	border-radius: 2px;	/*角丸のサイズ*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	opacity: 0.6;	/*透明度。70%色がでた状態の事。*/
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;	/*透明度。100%色がでた状態の事。*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
	padding: 20px;		/*ボックス内の余白*/
	font-size:80%;
}
#copyright a {text-decoration: none;color: #000;}
#copyright .pr {display: block;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 4px 0 12px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
	xfloat: left;
	xwidth: 9em;
	font-size:90%;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 1em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック１個あたりの設定*/
.list {
	overflow: hidden;
	width: 30.6%;	/*幅(26.4)	*/
	float: left;	/*左に回り込み*/
	margin: 0 0 20px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 1%;	/*ボックス内の余白*/
	border-radius: 3px;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
}
.list a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -1%;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: url(../images/ppd/arrow1.png) no-repeat right bottom / 35px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
.list a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h4（見出し）タグの設定*/
.list h4 {
	xcolor: #001fd8;		/*文字色*/
	color: #9d35c9;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
.list h4.small {
	font-size:100%;
}
.list h4.xsmall {
	font-size:80%;
	height:2.5em;
}

/*p（段落）タグの設定*/
.list p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 6em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}

/*サムネイル画像の設定
---------------------------------------------------------------------------*/
.thumbnail {
	width: 70px;	/*サムネイル画像の幅*/
	margin: 5px;	/*画像同士に空けるスペース*/
	opacity: 0.7;	/*透明度。色が70%出た状態。*/
}
/*マウスオン時*/
.thumbnail:hover {
	opacity: 1;	/*透明度。色が100%出た状態。*/
}

/*box（info1.htmlやstaff.htmlで使っている枠色がついたタイプのボックス）
---------------------------------------------------------------------------*/
/*box*/
.box {
	overflow: hidden;
	xborder: 2px solid #001fd8;	/*枠線の幅、線種、色*/
	border: 2px solid #9d35c9;	/*枠線の幅、線種、色*/
	padding: 1em;				/*ボックス内の余白*/
	border-radius: 10px;		/*角丸のサイズ。この１行を削除すれば角のとれた長方形になります。*/
}
/*box内のh4タグ*/
.box h4 {	color: #001fd8;	font-size: 130%; }

/*box内のpタグ*/
.box p {	padding: 0 !important; }
/*box内のfrとflスタイルのリセット*/
.box .fr,.box .fl {margin-bottom: 0;}

/*ページナビ（メインメニューの下にある、現在の階層を示すナビメニュー）
---------------------------------------------------------------------------*/
/*ナビブロック全体*/
.nav {
	background: #eee;		/*背景色*/
	padding: 10px 20px;		/*上下、左右へのボックス内の余白*/
	margin-bottom: 30px;	/*ボックスの下（外側）に空けるスペース*/
	margin-top: -30px;		/*メニューとの余白が空きすぎるので少し上につめる*/
	border-radius: 10px;	/*角丸の指定*/
}
/*メニュー１個あたりの指定*/
.nav li {
	display: inline;	/*横並びになる指定*/
	padding: 0 5px;		/*上下、左右への余白*/
}
/*メニューの冒頭に入れる「>」のマーク*/
.nav li::before{
	content: ">";			/*このテキストを出力します。変更してもかまいませんが機種依存文字は化ける場合があるので使わない。*/
	padding-right: 12px;	/*文字サイズ*/
	color: #999;			/*文字色*/
}
/*最初のメニューには「>」は入れない*/
.nav li:first-child::before {
	content: none;
}

/*ページ内メニュー（info.htmlで使用）
---------------------------------------------------------------------------*/
/*ブロック全体*/
.menu {
	display:flex;	flex-wrap:wrap;		/*横並びになる指定*/
	xoverflow: hidden;
	margin-bottom: .5em;	/*下に空けるスペース*/
	text-align: center;		/*内容をセンタリング*/
}
/*メニュー１個あたりの指定*/
.menu li {	padding-top:.2em;	width:25%;	}		/* 480以下の場合は50% */
.menu li a {
	display:block;	/*エリア拡張*/
	border-bottom:3px solid #fff;
}
.menu li.current {
	font-weight:bold;
	background-color:#f3f3f3;
	border-bottom:3px solid #ccc;
}
/*現在表示中(current)と、マウスオン(hover)時の指定*/
.menu li a:hover {
	font-weight:bold;
	xborder-bottom:3px solid #00f;
	border-bottom:3px solid #9d35cf;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;		/*背景色*/
	color: #666;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
}

/*テーブル（ta2）サブブロックの受付テーブルに使用。
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	border: 1px solid #b7b7b7;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;
	background: #fff;		/*背景色*/
	color: #333;
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta2設定*/
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 5px;
	text-align: center;	/*センタリング*/
	background: #fff;	/*背景色*/
	color: #333;
}
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #b7b7b7;	/*テーブルの枠線の幅、線種、色*/
	font-size:80%;
	vertical-align:middle;
	font-weight:normal;
	padding:.2em 0;
}
.ta2 td.pcL { font-size:110%; }		/* pc用コンテンツ内受付時間用 pc large */

/*曜日*/
.ta2 th {
	font-size:110%;
	xbackground: #fffbe3;
	background: #eee;
	padding:.5em 0;
}

.mTable {	width:70%;	margin:0 auto; }/* 診療科内症状 */
.mTable tr	{  }
.mTable th, .mTable td { line-height:1.3; padding:.6em 1em; border:1px solid #07d;}
.mTable th	{ font-size:110%; color:white; background-color:#07d; }

.oncdep { width:100%; } /* 腫瘍科表 */
.oncdep td { text-align:center; }
.oncdep .c1 { padding:0; }
.oncdep .c0 { background-color:#cdf; }
.oncdep .w50 { width:50%; }
.oncdep .w33 { width:33.3%; }
.oncdep .w25 { width:25%; }
.oncdep .bdr { border-right:1px solid #fff; }
.oncdep .arrow { padding:0; }
.uline { border-bottom:1px solid #333; }
.mxb0.ex1 { display:block; padding:.5em 0; margin:1px 0px 2px;}
.mxb0.ex1 a { display:block; width:100%; height:100%; }



/* test 未使用 */
.OverArrow { position:relative; width:100%;  }
.OverArrow:after { content:""; display:block; padding-bottom:36%; overflow:auto;}
.OverArrow > div { position:absolute; z-index:3; }
.OverArrow > img { position:absolute; left:44%; bottom:20%; z-index:10; width:12%; padding-top:8%; }

/* Immunotherapy免疫 */
.tb1.Imm th { font-size:120%; background-color:#07d; color:#fff; }
.tb1.Imm tr.c1 td { background-color:#cdf; }
#main p.Imm6em { padding-left:7em; text-indent: -7em; }


.FlexM .b1 { width:48.5%; }
.FlexM .ba { width:3%; height:100%; margin:auto; }
.FlexM .b2 { width:48.5%; }
.FlexM > img.w30 { width:30%; }
.FlexM > div.w70 { width:70%; }

.FlexM.w33 .a1 { width:33%; }


.WelTime {
	width:90%;margin:.8em 0 .8em 5%;
	text-align:center;
	background-color:#f3f3f3; border-radius:.5em;
	padding:.5em;
}

.calendar { border-collapse: separate;  border-spacing: 2px; xbackground-color:#fcf; }
.calendar caption { background-color:#eee; }
.calendar th , .calendar td { border:1px solid #ccc; border-radius:4px; width:14.25%; }
.calendar th { padding:.3em 0; }
.calendar td { padding:.2em .1em; height:8em; font-size:85%; line-height:1.4; vertical-align:top; }
.calendar td p { margin-bottom:2px; padding:0 !important; font-size:120%; text-align:center; }
.calendar .today { background-color:#ccf; border-radius:3px; }

/*  original acobox -------------------------- */
.acbox {
    margin: .5em 0;    xpadding: 0;    xmax-width: 400px;/*最大幅*/
}
.acbox label {			/*ラベル*/
    display: block;
    padding : 5px 5px 5px 20px;		font-size:105%;		font-weight:bold; color:#333;
	border:1px solid #ccc;	border-radius:.5em;
    cursor :pointer;
    transition: all 0.8s;
}
.acbox label::first-letter { padding-left:15px; border-left:3px solid #9d35c9; }	/* 青線 */
.acbox label:hover {    background :#f8f8f8;	}	/*ラベルホバー時*/
.acbox input {    display: none;	}	/*チェックは隠す*/
/*中身を非表示にしておく*/
.acbox .acshow {
    height: 0;    padding: 0;    overflow: hidden;
    opacity: 0;    transition: 0.7s;
}
/*クリックで中身表示*/
.cssac:checked + .acshow {    margin-top:1em; height: auto;   xbackground: #f3f3f3;    opacity: 1;	}
.cssac:checked	{
	xborder-radius:0;	xborder:1px solid red;
}
/* h3 コラム用  */
#main h3.clm { margin-bottom:.5em; }
#main h3.clm a { display:block;	width:100%; height:100%; }

.linkb { display:inline-block; padding:.1em .5em; border:1px solid #eee; border-radius:5px; background-color:#f3f3f3; }
.center.linkb {  display:block; width:50%; text-align:center; margin:0 auto; }

.carmapP{
	width:100%; height:100%;	background: url(/img/parking.jpg) no-repeat; background-size:contain;
	xmargin-left:40px;
	xpadding:10px 270px 0px 6px;
	font-size:90%;
}
.mapP {	height: 0;	overflow: hidden;	padding-bottom: 74%;	position: relative;
		background: url(/img/parking.jpg) no-repeat; background-size:contain;
		margin:1em .5em;
 }
.mapP div {	
	position: absolute;	left: 0;	top: 0;	height: 100%;	width: 100%; 
	padding:.5em 39% 0 0;
	font-size:small;
}

.staff	{
	border-top:1px solid  #f3f3f3;
	margin:.5em; padding:.5em;
}
.staff img { float:left; margin-right:1em; xpadding:right:1em; }
.staff h5 { margin-bottom:.8em; padding:.5em .5em .5em 1em; background-color:#f3f3f3; color:#555; font-weight:normal; border-radius:3px;}
.staff h5::first-letter { border-left:5px solid #9d35c9; padding-left:.5em; xborder-radius:10px; }
.staff h5 span { padding-left:1em; font-size:80%; }
.staff h5 b { color:#333; xfont-weight:normal; font-size:125%; }
.staff .list_table dt { font-size:80%; }

a.Pad {															box-sizing:border-box;
	/*     <> Button	 */
	display:inline-block;
	margin:.2em .5em ;		padding:.2em .8em .2em .8em;
	color:#333;				font-weight:normal;
	border:1px solid #ccc;	border-radius:4px;
	background-color:#f3f3f3;
}	a:hover.Pad{ background-color:#e0e0e0; border:1px solid #888; }

.PNavi { text-align:center; font-size:110%; }
.PNavi li {	display:inline; margin:0 .1em;  }
.PNavi li a , .PNavi li span { 
	display:inline-block;	width:2.5em;	padding:.6em 0;
	border:1px solid #ccc;	border-radius:.3em;
}
.PNavi li a:hover { background-color:#f3f3f3; }
.PNavi li span { background-color:#bbb; color:#fff; border-color:#bbb; }

.bbank h5 {	line-height:1.8; margin:.3em; border-left:.5em solid #fcf; padding-left:.5em; color:#f8f; }

h5.Ex {	font-size:105%; line-height:1.8; margin:.3em; border-left:.5em solid #9d35c9; padding-left:.5em; color:#444;}
h5.Cx:before {  color:#555; content:"■ "; }
h5.Cx { padding-left:1.5em; text-indent:-1.5em; }
h5.Cx > span { font-weight:normal; }

.listT { 
	margin-left:.1em; margin-bottom:.3em; 
	border-left:.5em solid #ccf; padding:.1em .6em;
	background-color:#eef;	border-radius:.3em;
	color:#333;	font-weight:normal;
}
.listM {	
	display:flex;	flex-wrap: wrap;	align-items: flex-start;
	margin-bottom:.5em;
}
.listM .pic { width:40%; padding:0 .8em 0 0; }
.listM .text { width:60%; }
.listM .text p	{ font-size:90%; color:#66f; margin:.2em .3em; border-left:.5em solid #ccf; padding:0 .5em !important; }

.Mlist {
	margin-bottom:.5em; padding:0 .3em;
}
.Mlist img { margin-bottom:.3em; }
.Mlist .text { width:100%; }	/*  */
.Mlist .text p { font-size:90%; color:#66f; margin:.2em .3em; border-left:.5em solid #ccf; padding:0 .5em !important; }
.Mlist > p { display:none; border:0; font-size:60%; text-align:right; line-height:.2; }

/* wellness */
.boxM {	background-color:#f0f0f8; border-radius:.5em; padding:.8em 1.5em;}
.boxM h4 { font-size:100%; color:#02d; xfont-weight:normal; }
.boxM p { padding:0 !important; }

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
	border-radius: 3px;
}
#sub p.check {padding: 5px 10px !important;}
p.check a {color: #fff;}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム設定（変更不要）*/
@keyframes scroll {
	0% {opacity: 0;}
	100% {opacity: .5;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	bottom: 40px;		/*下から40pxの場所に配置*/
	right: 1%;			/*右から1%の場所に配置*/
	background: #9d35c9;	/*背景色*/
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*円形にする*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	font-weight:bold;
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ol {padding: 0 20px 20px 45px;}
#sub ul.xdisc, #sub ol {padding: 0 0 0 20px;}

/*「NEW」アイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #f00;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 50%;		/*文字サイズ*/
	padding: 1px 3px;
	border-radius: 2px;
	vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1 {color: #001fd8 !important;}
.bgcolor1 {background: #f2f2f2 !important;}
.bgcolor2 {background: #dbebf7 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.w40p {width: 40%;}
.w20p {width: 20%;}
.w30p {width: 30%;}

.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fr {float: right;margin-left: 2%;margin-bottom: 20px;}
.fl {float: left;margin-right: 2%;margin-bottom: 20px;}
.big1 {font-size: 200%;letter-spacing: 0.2em;}
.mini1 {font-size: 80%;}
.sh {display: none;}
.half {width: 48%;}
.link {display: block;margin-top: -80px;padding-top: 80px;}

/*		拡張用	*/
.list_table	{ font-size:95%; }
.list_table.w50 dt {	width: 50%; }
.list_table.w50 dd {	width: 50%; }
.tb0 { font-size:90%; margin:0 1%; width:98%;  }

a[href^="tel:"] { pointer-events: none; }	/* telリンク無効化(PC) */

/*
-----------------------------------------------------------画面幅1450px以下の設定----------*/
@media screen and (max-width:1500px){

	/*上の#containerのpaddingの数字部分と合わせておく*/
	body.is-fixed #menubar {
		padding: 0 50px; /* xx */
	}

}

/*
-----------------------------------------------------------画面幅900px以下の設定-----------*/
@media screen and (max-width:900px){

	/*containerの設定（footer以外の、ホームページを囲むブロック）
	---------------------------------------------------------------------------*/
	#container {
		padding: 0 3%;	/*上下、左右へのブロック内余白*/
	}
	
	/*ヘッダー（ロゴが入った最上段のブロック）
	---------------------------------------------------------------------------*/
	/*ヘッダーブロック*/
	header {
		position: static;
		height: auto;
		background: none;
		padding: 10px 0;
		text-align: left;
	}
	/*ロゴ画像*/
	header #logo {
		position: static;
	}
	/*TELブロック*/
	header address {
		position: static;
		text-align:left; margin-left:1%;
	}
	header address img { margin-left:0; width:43%; }
	
	/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
	---------------------------------------------------------------------------*/
	/*ボタンブロック全体*/
	#fsize {
		display: none;	/*非表示にする*/
	}

	/*メインメニュー
	---------------------------------------------------------------------------*/
	/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
	@keyframes menu1 {
		0% {opacity: 0;}
		100% {opacity: 1;}
	}
	/*スマホ用メニューブロック*/
	#menubar-s {
		display: block;overflow: hidden;z-index: 1000;
		position: fixed;
		top: 0px;			/*上からの配置場所指定*/
		left: 0px;			/*左からの配置場所指定*/
		width: 100%;		/*幅*/
		animation-name: menu1;		/*上のkeyframesの名前*/
		animation-duration: 0.7S;	/*アニメーションの実行時間。0.5秒。*/
		animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
	}
	/*メニュー１個あたりの設定*/
	#menubar-s li a {
		display: block;text-decoration: none;
		padding: 5px 10px;	/*上下、左右へのメニュー内の余白*/
		border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
		xbackground: #001fd8;	/*背景色*/
		background: #9d35c9;	/*背景色*/
		font-size: 18px;		/*文字サイズ*/
		color: #fff;		/*文字色*/
		opacity: 0.85;
	}
	/*英語表記（飾り文字）*/
	#menubar-s li a span {
		font-size: 12px;	/*文字サイズ*/
		margin-left: 20px
	}
	/*PC用メニューを非表示にする*/
	#menubar {display: none;}
	
	/*３本バーアイコン設定
	---------------------------------------------------------------------------*/
	/*３本バーブロック*/
	#menubar_hdr {
		display: block;position: fixed;z-index: 2;
		top: 25px;	/*上からの配置場所指定*/
		right: 3%;	/*右からの配置場所指定*/
		border: 1px solid #fff;	/*枠線の幅、線種、色*/
	}
	/*アイコン共通設定*/
	#menubar_hdr.close,
	#menubar_hdr.open {
		width: 50px;		/*幅*/
		height: 50px;		/*高さ*/
		border-radius: 50%;	/*円形にする。この行削除すれば正方形になります。*/
	}
	/*三本バーアイコン*/
	#menubar_hdr.close {
		background: #9d35c9 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコンの読み込み、上半分(top)を表示、幅50px*/
	}
	/*閉じるアイコン*/
	#menubar_hdr.open {
		background: #333 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコンの読み込み、上半分(bottom)を表示、幅50px*/
	}

	/*fixmenu。メインメニューが画面上部に到達した際の設定
	---------------------------------------------------------------------------*/
	body.is-fixed header {
		margin-bottom: 0px;	/*fixmenuから折りたたみメニューになるので、ここはリセット。*/
	}
	
	/*main,sub
	---------------------------------------------------------------------------*/
	#main, #sub {
		float: none;
		width: auto;
		overflow: hidden;
	}
	
	/*フッター設定
	---------------------------------------------------------------------------*/
	/*footer内のinner*/
	footer .inner {
		padding: 0 3%;	/*上下、左右へのブロック内余白*/
	}
	/*footer内の２カラムブロックを１カラムにする*/
	footer .half.fr,footer .half.fl {
		float: none;
		margin: 0 0 20px;
		width: 100%;
	}
	
	#footermenu ul {
		width: 49%;		/*今回は４列作ったので、下のmarginを含めて25%になるよう指定。５列にするならこの行は19%にする。*/
	}
	/* original */
	.box { padding:.5em; }

	#sub .sbanner li{ display:inline-block;		}

	/*その他
	---------------------------------------------------------------------------*/
	body.s-n #sub,body.s-n #side {display: none;}
	.big1 {font-size: 150%;letter-spacing: normal;}
	.sh {display:block;}
	.pc {display:none;}
	.link {display: block;margin-top: 0px;padding-top: 0px;}

}	/*	END(max-width:900px)	*/

/*
--------------------------------------画面を横向きにした場合の高さが500px以下の場合の設定------------*/
@media screen and (orientation: landscape) and (max-height:500px){

	/*メインメニュー。小さな端末用メニューを２列に。
	---------------------------------------------------------------------------*/
	/*メニュー１個あたりの設定*/
	#menubar-s li {
		float: left;		/*左に回り込み*/
		width: 50%;			/*幅*/
	}

}	/* end */

/*
-------------------------------------------------------------------画面幅480px以下の設定------------*/
@media screen and (max-width:480px){

	/*containerとfooterの文字サイズ指定
	---------------------------------------------------------------------------*/
	#container, footer {
		font-size: 17px;			/* 4.64vw; */
		padding: 0 5px;	/*上下、左右へのブロック内余白*/

	}

	/*ヘッダー（ロゴが入った最上段のブロック）
	---------------------------------------------------------------------------*/
	/*ロゴ画像*/
	header #logo {
		width: 100%;	/*ロゴ画像の幅*/
	}
	/*TELブロックの電話番号部分*/
	header address {	}

	/*メインコンテンツ
	---------------------------------------------------------------------------*/
	/*他。微調整。*/
	#main section + section {
		xpadding-top: 20px;
	}
	#main h2 { font-size:110%; }

	/*フッター設定
	---------------------------------------------------------------------------*/
	/*フッター内のaddress（電話番号の行）タグ*/
	footer address {	}

	/*listブロック
	---------------------------------------------------------------------------*/
	/*ブロック１個あたりの設定*/
	.list {
		width: auto;
		float: none;
		margin-left : 0;
	}
	.list figure {
		float: left;
		width: 40%;
		margin-right: 2%;
	}
	/*h4（見出し）とp(段落)タグの設定*/
	.list h4, .list p {
		height: auto;
	}

	/*テーブル（ta1）
	---------------------------------------------------------------------------*/
	/*テーブル１行目に入った見出し部分（※caption）*/
	.ta1 caption {	padding: 5px;	}				/*ボックス内の余白*/
	/*ta1設定*/
	.ta1, .ta1 td, .ta1 th {	padding: 5px;	}	/*ボックス内の余白*/
	.ta1 th {	width: 100px;	}					/*ta1の左側ボックス*/
	.ta2 td.pcL { font-size:80%; }

	.mTable {		/* 診療科内症状 */
		width:90%;
	}
	.FlexM.w33 .a1 { margin-left:5%; width:90%; }
	/*その他
	---------------------------------------------------------------------------*/
	.w80rs {	
		width:80%;
	}

	.ws,.wl {width: 94%;}

	.menu li { width:50%; }

	.calendar td { font-size:50%; line-height:1.3; }
	.calendar td p { font-size:170%;}


	.staff { margin:0; }
	.staff img { float:none; display:block; margin:0 auto;}
	.staff img { width:80%;}
	.staff h5 { margin-left:0; font-size:90%; }
	.staff b { font-size:150% !important;}
	.staff span { display:block; width:100%; text-align:right; }

	.listM {flex-wrap:column;}
	.listM .pic { width:80%; margin-left:10%;}
	.listM .text { width:100%; }

	a[href^="tel:"] { pointer-events: auto; }	/* telリンク有効化(SP) */


}	/* END (max-width:480px) */