@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
.slideBlock{
    background-image: linear-gradient(to right, #B8E0DF, rgba(255,255,255,0.2)), url("images/outpatient_info01.png");
}
.contentFrame dl dt{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    color: #44BEB5;
    font-weight: bold;
}
.contentFrame dl dd{
    margin-left: 1em;
    margin-bottom: 30px;
}
.contentFrame ul{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    line-height: 160%;
    padding-left: 1.5em
}
.contentFrame ol{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    line-height: 160%;
    padding-left: 1.5em
}
.contentFrame table{
    border-collapse: separate;
    border-spacing: 0.5px ;
    margin-right: 10%;
}
.contentFrame table th{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    height: 2.5em;
    vertical-align: middle;
    text-align: left;
    width: 9em;
    padding: 0 1em;
    font-weight: normal;

}
.contentFrame table td{
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 16px;
    text-align: left;
    vertical-align: middle;
    line-height: 160%;
    padding: 0 1em;
    
}
.contentFrame .bb{
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: #766E6C;
}
.contentFrame .br{
    border-right-style: solid;
    border-right-width: 2px;
    border-right-color: #766E6C;
    padding: 0 ;
}
.contentFrame .np{
    padding: 0 ;
}
.historyTable th{
    text-align: right !important;
}
.greeting > div{
    display: inline-block;
    vertical-align: top;
}
.greeting .textBox{
    width: 100% ;
}
.greeting .imageBox{
    width: 200px;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
.greeting .textBox{
    width: calc(100% - 210px) ;
}
}