@charset "Shift_JIS";


/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	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;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;}
a img:hover {opacity: 0.7;}/*マウスオン時に画像を半透明にする設定。0.7は70%の透明度の意味。*/
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #f1932b;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*横一杯使う為に100%指定*/
	background: #fff;	/*背景色*/
}
/*サイト幅にしたheader内のブロック*/
header #inner {
	width: 1180px;	/*幅*/
	height: 120px;	/*高さ*/
	margin: 0 auto;
	position: relative;
}
/*ロゴ画像*/
header #logo {
	position: absolute;
	left: 10px;	/*header #innerに対して左から10pxの場所に配置*/
	top: 22px;	/*header #innerに対して上から22pxの場所に配置*/
}
/*TEL*/
header #tel {
	position: absolute;
	right: 10px;	/*header #innerに対して右から10pxの場所に配置*/
	top: 0px;	/*header #innerに対して上から0pxの場所に配置*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));	/*グラデーション*/
	background: -webkit-linear-gradient(#fff, #ededed);	/*同上*/
	background: linear-gradient(#fff, #ededed);			/*同上*/
	padding: 18px 20px;	/*上下、左右へのボックス内余白*/
	border-radius: 0px 0px 10px 10px;
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 5px 10px rgba(0,0,0,0.2),0px 0px 1px 1px #fff inset;			/*同上*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*中央よせ*/
}
/*TEL(電話番号部分)*/
header #tel strong {
	display: block;
	color: #ff9c00;		/*文字色*/
	font-size: 23px;	/*文字サイズ*/
	line-height: 1.2;	/*行間*/
	letter-spacing: 0.1em;	/*文字間に少し余裕を出す設定*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
	width: 100%;
	overflow: hidden;
	background: #ff9c00;	/*背景色*/
}
#menubar,
#menubar-s {
	width: 1180px;	/*幅*/
	overflow: hidden;
	margin: 0 auto;
}
/*メニュー１個あたりの設定*/
#menubar li,
#menubar-s li {
	float: left;	/*左に回り込み*/
	text-align: center;	/*文字をセンタリング*/
	width: 236px;	/*メニュー幅*/
}
#menubar a,
#menubar-s a {
	margin: 8px 4px;	/*１個あたりのメニューの外側にとるスペース。上下、左右。*/
	display: block;
	font-size: 120%;
	font-weight: bold;
	text-decoration: none;
	padding: 7px 0px;	/*上下、左右へとる余白*/
	color: #fff;	/*文字色*/
}
/*マウスオン時と、現在表示中*/
#menubar a:hover,
#menubar li.current a {
	position: relative;
	left: 1px;	/*左から1px移動*/
	top: 1px;	/*上から1px移動*/
	background: #ff5a00;	/*背景を透明に*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	width: 1140px;	/*幅。header #innerや#menubarの980pxからここのpadding(左右の合計幅)を差し引いた数字で設定するといい。*/
	padding: 20px 20px 200px;	/*ボックス内の余白。上下、左右、下。*/
	margin: 0px auto 30px;
	background: #FFF;	/*背景色*/
	overflow: hidden;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 800px;	/*幅*/
	padding-bottom: 0px;
}
/*mainコンテンツのh2タグの設定*/
#main h1 {
	clear: both;
	margin-bottom: 15px;
	font-size: 120%;
	background: #FFF;	/*背景色*/
	padding: 8px 20px;	/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 120%;
	color: #FFF;		/*文字色*/
	padding: 8px 20px;	/*上下、左右への余白*/
	background: #ff8400;	/*背景色（古いブラウザ用）*/
}
/*mainコンテンツのh2タグの１文字目への設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 120%;
	background: #FFF;	/*背景色*/
	padding: 8px 20px;	/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグの１文字目への設定*/
#main h1::first-letter {
	border-left: 3px solid #ff9c00;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
#main h3::first-letter {
	border-left: 3px solid #ff9c00;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 7px 15px 14px;	/*上、左右、下への余白*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}


#main h4 {
	clear: both;
	text-align: center;
	color: #fff;/*文字色*/
	font-size: 100%;
	background: #f86d00;	/*背景色*/
	padding: 0px 25px;	/*上下、左右への余白*/
      border-radius: 10em;/*角丸*/
}






#main h5 {
	clear: both;
	margin-bottom: 0px;
	font-size: 120%;
	background: #FFF;	/*背景色*/
	padding: 10px 15px;	/*上下、左右への余白*/
	border: 1px dotted #ff6dbd;	/*枠線の幅、線種、色*/
}

#main h6 {
	clear: both;
	margin-bottom: 6px;
	font-size: 100%;
	background: #FFF;	/*背景色*/
	padding: 6px 15px;	/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

span {
    display:inline-block;
    width:11em;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}


/*スライドショー
---------------------------------------------------------------------------*/
#stage {
position: relative;
margin: 0 auto;
background:#fff;
}
.pic {
position: absolute;
}
.pic img {
width: 100%;
height: auto;
opacity:0;
-moz-animation: imgTrans 30s infinite;
-webkit-animation: imgTrans 30s ease-in infinite;
animation: imgTrans 30s infinite;
}
#photo1 img {
-moz-animation-delay: 0s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
#photo2 img {
-moz-animation-delay: 10s;
-webkit-animation-delay: 10s;
animation-delay: 10s;
}
#photo3 img {
-moz-animation-delay: 20s;
-webkit-animation-delay: 20s;
animation-delay: 20s;
}

@-webkit-keyframes imgTrans {
  0%{
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  28%{
    opacity: 1
  }
  38%{
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}
@-moz-keyframes imgTrans {
  0%{
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  28%{
    opacity: 1
  }
  38%{
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}
@keyframes imgTrans {
  0%{
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  28%{
    opacity: 1
  }
  38%{
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}


/*「診療科目」ページの一覧用ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
	margin-bottom: 15px;	/*ボックス間のスペース*/
	position: relative;
	overflow: hidden;
	padding: 20px;	/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;		/*画像を左へ回り込み*/
	padding: 5px;		/*余白*/
	background: #fff;	/*背景色*/
	width: 30%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 120%;
	color: #f1932b;		/*文字色*/
	border-bottom: solid 1px #f1932b;	/*下線の線種、幅、色*/
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
	margin-bottom: 10px;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 300px;	/*幅*/
	
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 120%;
	padding-bottom: 10px;
}
/*subコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter {
	border-left: 3px solid #b5b5b5;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#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: #f7f7f7;	/*背景色*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	-webkit-box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
	box-shadow: 0px 0px 1px 1px #fff inset;
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}


/*サイドのカレンダー
---------------------------------------------------------------------------*/
div.cal_wrapper {
	padding: 0px 0px 10px 0px;
}
div.schedule_wrapper {
	padding: 0px 0px;
	width: 300px;
	border: solid 1px #CCC;
	border-radius: 5px;
	box-shadow: 1px 1px 3px #666;
}

div.cal_wrapper table.cal tr th p {
	float: left;
	padding: 5px;
	margin: 0px 0px 0px 5px;
	color: #666;
	font-size: 18px;
}
div.cal_wrapper table.cal tr th div.cal_ui {
	float: right;
}
div.cal_wrapper table.cal tr th div.cal_ui input {
	border: solid 1px #CCC;
	background-color: #FFF;
	font-size: 13px;
	margin: 10px 5px;
	padding: 3px 3px;
	border-radius: 3px;
}
div.cal_wrapper table.cal tr td {
	border-top: solid 1px #EEE;
}
div.cal_wrapper table.cal tr td {
	font-size: 13px;
	text-align: center;
}
div.cal_wrapper table.cal tr.headline td {
	padding: 0px 0px;
	color: #666;
}
div.cal_wrapper table.cal tr.headline {
	background-color: #EEE;
}
div.cal_wrapper table.cal tr td div {
	position: relative;
	padding: 5px 5px;
	font-size: 15px;
	text-align: center;
	background-color: #FFF;
	border-radius: 3px;
}
div.cal_wrapper table.cal tr td div span {
	display: none;
	position: absolute;
	border: solid 1px #EEE;
	background-color: #FFF;
	z-index: 10;
	color: #000;
	font-weight: normal;
}

/* 以下、クラス指定するときのアレ */

div.cal_wrapper table.cal tr td div.Sat {
	color: #00F;
}
div.cal_wrapper table.cal tr td div.Sun {
	color: #F00;
}
div.cal_wrapper table.cal tr td div.Today {
	font-weight: bolder;
}
div.cal_wrapper table.cal tr td div.Deli {
	background-color: #cbecfa;
}
div.cal_wrapper table.cal tr td div.Close {
	color: #00F;
	background-color: #ffcffb;
}
div.cal_wrapper table.cal tr td div.Subclose {
	background-color: #ffcffb;
}

div.cal_wrapper table.cal tr td div.Holyday {
	font-weight: bolder;
	color: #F00;
	background-color: #ffcffb;
}
div.cal_wrapper table.cal tr td div.Birthday {
	font-weight: bolder;
	background-color: #EEF;
	color: #090;
	border-radius: 3px;
}

div.cal_wrapper table.cal tr td div.backward {
	color: #CCC;
	font-weight: normal;
	background-color: #FFF;
	border-radius: 3px;
}

div.cal_wrapper table.cal tr td div.pointer:hover {
	background-color: #fffe86;
}

/*サブコンテンツ内の営業日カレンダー用
---------------------------------------------------------------------------*/
.cal {
	width: 100%;
}
.cal, .cal td, .cal th{
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	text-align: center;

}
/*曜日*/
.cal th{
	background: #f7f7f7;	/*背景色*/
}
.cal .sat{
	color: #09F;	/*「土」の文字色*/
}
.cal .sun{
	color: #C33;	/*「日」の文字色*/
}


/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 10px;
	font-size: 90%;
	color: #FFF;	/*文字色*/
	background: #ff9c00;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}


/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 11px;	/*文字サイズ*/
	background-color:#ff5a00;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 11em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #ff5a00;
	color: #FFF;
}



/*トップページ内メインイメージ
---------------------------------------------------------------------------*/
#mainimg img {
	width: 100%;
	vertical-align: bottom;
	margin-bottom: 10px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cce6f6;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f7f7f7;	/*背景色*/
}
/*画像*/
.ta1 img {
	vertical-align: bottom;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #f1932b;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}


.box14{
    padding: 0.5em 0.5em;
    margin: 2em 0;
    background: #fde4da;
    box-shadow: 0px 0px 0px 10px #fde4da;
    border: dashed 2px white;
}
.box14 p {
    margin: 0;    
    padding: 0;
    line-height: 1.5em;
}

/*アコーディオン
---------------------------------------------------------------------------*/
.acd-check{
    display: none;
}
.acd-label{
    height: 34px;
    background: #fbe0ec;
    color: #ff6dbd;
 	font-size: 110%;
   font-weight: bold; 
    display: block;
    margin-bottom: 10px;
    padding: 8px 15px;
}


.acd-content{
    height: 0;
    opacity: 0;
    padding: 0px 0px 0px 15px;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content{
   height: auto;
    opacity: 1;
    padding: auto;
    visibility: visible;
    
}


/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #f1932b;
}
.pr {
	font-size: 10px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.l {
	text-align: left !important;
}
img.fr {
	float: right;
	margin-left: 10px;
	margin-top: 10px;
	margin-bottom: 5px;
}
img.fl {
	float: left;
	margin-right: 10px;
	margin-bottom: 0px;
}
.big1 {
	font-size: 30px;
	letter-spacing: 0.2em;
}
.mini1 {
	font-size: 11px;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}



/*画面幅800px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*サイト幅にしたheader内のブロック*/
header #inner {
	width: auto;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
	margin-bottom: 0px;
}
#menubar,
#menubar-s {
	width: auto;
}
/*メニュー１個あたりの設定*/
#menubar li,
#menubar-s li {
	width: 50%;
}
#menubar a,
#menubar-s a {
	margin: 4px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin-bottom: 90px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/

#footermenu {
	width: 90%;
	background: none;
}
/*１行分の設定*/
#footermenu ul {
	width: 23%;
	padding-right: 2%;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {
	display: none;
}

}



/*画面幅730px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:730px){

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: auto;
}
/*TEL*/
header #tel {
	padding: 10px;
}

}



/*画面幅550px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:550px){

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*サイト幅にしたheader内のブロック*/
header #inner {
	height: auto;
	text-align: center;
	padding-top: 10px;
}
/*ロゴ画像*/
header #logo {
	width: 100%;
	position: static;
}
/*TEL*/
header #tel {
	position: static;
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-top: 0px;
}
/*TEL(電話番号部分)*/
header #tel strong {
	background: none;
	padding:0px;
}

/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	padding: 10px 10px 0px;
}

}



/*画面幅480px以下の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*サイト幅にしたheader内のブロック*/
header #inner {
	text-align: left;
}
/*ロゴ画像*/
header #logo {
	width: 100%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li,
#menubar-s li {
	width: 100%;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/

#menubar_hdr {
	display: block;
	position: absolute;
	top: 150px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	width: 47px;	/*幅*/
	height: 47px; 	/*高さ*/
	background: url(../images/menunab.svg)
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 0px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 4px;	/*バー同士の余白*/
}

/*「診療科目」ページの一覧用ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	margin-left: 0;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, repeating-linear-gradient(45deg,rgba(255,255,255,0.1), rgba(255,255,255,0.1) 0px,transparent 0,transparent 4px),#8c412b;
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, repeating-linear-gradient(45deg,rgba(255,255,255,0.1), rgba(255,255,255,0.1) 0px,transparent 0,transparent 4px),#8c412b;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {
	width: 90%;
}
img.fr,
img.fl {
	float: none;
	margin: 0;
	width: 100%;
}

}
