@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォント指定*/
	background-color: #FFF;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
	font-size: 12px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse: collapse;
	font-size: 12px;
	border-spacing: 0;
	margin-top: 5px;
	margin-bottom: 20px;
	font-weight: normal;
	width: auto;
	padding-left: 20px;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #49a81f;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF 80%, #ededed);	/*同上*/
	background-image: linear-gradient(#FFF 80%, #ededed);			/*同上*/
	
}

/*ヘッダーブロックの中*/
header .inner {
	width: 997px;	/*ブロック幅*/
	height: 150px;
	position: relative;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

#top header h1 {
	font-size: 12px;
	color: #81511c;			/*文字色（ここでは茶色）*/
	line-height: 1.2em;
	font-weight: normal;	/*通常の文字の太さに設定。もし太字にしたいならこの１行を削除する*/
	padding-left: 20px;
	padding-top: 10px;
	text-align: center;
}


/*ロゴの設定*/
header .inner img {
	position: absolute;
	left: 15px;	/*innerに対して左から20pxの場所に配置*/
	top: 25px;	/*innerに対して上から20pxの場所に配置*/
	font-size: 10px;
}
/*電話番号ボックスの設定*/
header .inner address {
	position: absolute;
	top: 14px;		/*innerに対して上から20pxの位置に配置*/
	right: 13px;	/*innerに対して右から20pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: right;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定*/
}
/*電話番号の文字設定*/
header .inner address .tel {
	font-size: 18px;	/*文字サイズ*/
	color: #49a81f;		/*文字色*/
	font-weight: bold;	/*太字に*/
	display: block;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menu {
	height: 60px;	/*ブロックの高さ*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e7e7e7));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e7e7e7);	/*同上*/
	background-image: linear-gradient(#FFF, #e7e7e7);			/*同上*/
	border-top: 1px solid #d4d4d4;		/*メニューの上側の線の幅、線種、色*/
	border-bottom: 5px solid #49a81f;	/*メニューの下側の線の幅、線種、色*/
}
nav#menu ul {
	width: 997px;
	margin: 0px auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width:247px;	/*メニュー幅*/
	border-right: 1px solid #d4d4d4;	/*メニューの右側の線の幅、線種、色*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight:;	/*文字を太字にする設定*/
}
nav#menu ul li a {
	text-decoration: none;
	display: block;
	line-height: 30px;
	padding-top: 5px;
	color: #222;		/*文字色*/
	font-size: 14px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しあける設定*/
	text-shadow: #FFF 0px 2px;	/*テキストの影。色、右方向、下方向への指定。*/
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-left: 1px solid #d4d4d4;	/*左側に線を入れる*/
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background-color: #FFF;	/*背景色*/
	border-bottom: 5px solid #61df29;	/*メニューの下側の線の幅、線種、色*/
}
/*英語表記の設定*/
nav#menu ul li a span {
	color: #49a81f;	/*文字色*/
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	line-height: 20px;
	padding-bottom: 5px;
}



/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 997px;
	margin: 0px auto;
	padding-top: 30px;	/*メニューと下の左右のブロックの間に空ける余白*/
	background-color: #FFF;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 720px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #49a81f;	/*文字色*/
	padding: 5px 15px 5px 30px;	/*左から、上、右、下、左への余白*/
	border-top: 1px solid #d4d4d4;		/*上の線の幅、線種、色*/
	border-right: 1px solid #d4d4d4;	/*右の線の幅、線種、色*/
	border-bottom: 4px solid #49a81f;	/*下の線の幅、線種、色*/
	border-left: 1px solid #d4d4d4;		/*左の線の幅、線種、色*/
	border-radius: 6px 6px 0px 0px;		/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	margin-bottom: 10px;
	background-image: url(../images/arrow1.png);
	background-repeat: no-repeat;
	background-position: left center;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	font-size: 100%;
	color: #FF9900;		/*文字色*/
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border: 1px solid #d4d4d4;		/*線の幅、線種、色*/
	border-radius: 6px;	/*角丸のサイズ*/
	margin-bottom: 10px;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	font-size: 12px;
	padding-top: 10px;
	padding-right: 40px;
	padding-bottom: 10px;
	padding-left: 40px;
}

/*mainコンテンツの安心のポイント（自分で追加）*/

#main ul{
	list-style-image: url(../images/navi3-f1.gif);
	margin-left: 50px;
	margin-right: 40px;
}

/*mainコンテンツの安心のポイント3 連携のリスト（自分で追加）*/
.list3 {
	list-style-image: url(../images/029.gif);
	padding-top: 10px;
	padding-bottom: 10px;
}

/*mainコンテンツの記号なしリスト(金井さん)*/
#main ul.nonliststyle {
	list-style-image: none;
	margin-left: 0;
	margin-right: 0;
	
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
}

/*クリニック概要(金井さん)*/
#sub dl.cl_gaiyou {
	margin: -20px 5px 20px;
}
#sub dl.cl_gaiyou dd {
	margin-bottom: 7px;
}

/*クリニック概要 メイン(金井さん)*/
#main dl.cl_gaiyou {
	margin: 0 40px 10px;
}
#main dl.cl_gaiyou dd {
	margin-bottom: 1em;
}
@media (max-width : 480px){
#main dl.cl_gaiyou {
	margin: 0 10px 10px;
}
}

/*パンくずリスト2(2021.3金井さん修繕案)*/
.pankuzu2 {
padding-left: 5px;
}
.pankuzu2 ol li {
/* liを横並び＆ブレットを消す */
display: inline;
list-style-type: none;
padding-right: 5px;
padding-left: 0;
}
.pankuzu2 ol li:after {
content: url(../images/040.gif);
margin-left: 10px;
}
.pankuzu2 ol li:last-child::after {
/* 最後は矢印なし */
content: "";
margin-left: 0;
}

/*パンくずリスト*/

.pankuzu ol li {
	/* liを横並び＆ブレットを消す */
        display: inline;
	list-style-type: none;
	padding-right: 5px;
	padding-left: 5px;
}
	

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 240px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
	
}

#sub p {
	padding-bottom: 20px;
	
}

#sub　a {
	color: #333;	/*リンクテキストの色*/
}
#sub　a:hover {
	color: #49a81f;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background-color: #090;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#090), to(#0C0));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#090, #0C0);	/*同上*/
	background-image: linear-gradient(#090, #0C0);			/*同上*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #FFF;		/*文字色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}

/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#sub h2 + .box1 {
	border-top: none;
}


/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #FFF;	/*背景色*/
    line-height: 2.5;
}
#sub ul li a:hover {
	background-color: #fff8c7;	/*マウスオン時のボックス色*/
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
ul#footermenu {
	clear: both;
	margin: 0px auto;
	text-align: center;
	font-size: 12px;
}
ul#footermenu li {
	display: inline;
	padding: 0px 5px;
}

/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;	/*文字色*/
	background: #49a81f;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*院内紹介ボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定 listは「院内紹介」で使用*/
#main section.list {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 15px;	/*ボックス間のスペース*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
}

/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 20px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}

/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;
	margin: 10px;
}
/*ボックス内のh3タグ設定*/
#main section.list h3 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #FF9900;	/*文字色*/
	border-bottom-width: 1px;
	border-left-width: 3px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #CCC;
	border-left-color: #FF9900;
}

/*不正咬合ボックス*/
/*各ボックスの設定*/
#main section.list2 {
	margin-bottom: 20px;
	overflow: hidden;
	margin-top: 20px;
}

/*ボックス内の段落タグ設定*/
#main section.list2 p {
	padding: 20px;
	margin-left: 180px;	/*左の写真とのバランスをとって設定*/
}

/*ボックス内の写真設定*/
#main section.list2 figure img {
	float: left;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;
	margin: 10px;
}
/*ボックス内のh4タグ設定*/
#main section.list2 h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #FF9900;	/*文字色*/
	border-bottom-width: 1px;
	border-left-width: 3px;
	border-bottom-style: dotted;
	border-left-style: solid;
	border-bottom-color: #F90;
	border-left-color: #FF9900;
}
/*・・・・・・・・・・・*/






/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #49a81f;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}



/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.color1 {
	color: #f61468;
	background-image: url(../home/images/navi3-b1.gif);
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 20px;
	display: block;
	font-size: 12px;
}
.color2{
	color: #FF9900;
	background-image: url(../images/icon_clover.gif);
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 25px;
	font-size: 14px;
	font-weight: bold;
	display: block;
	margin-bottom: 10px;
	margin-top: 10px;
}
.color3 {
	font-size: 16px;
	color: #090;
	background-image: url(../home/images/kur.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	font-weight: bold;
}
.color4 {
	font-size: 14px;
	background-image: url(../images/kur.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	font-weight: bold;
}

.ku {
	font-size: 16px;
}
.ku2 {
	font-size: 14px;
	font-weight: bold;
}

.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.mini1 {
	font-size: 10px;
	line-height: 1;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}


/*・・・・・・・・・・・↓ここからオリジナル↓・・・・・・・・・・・・・*/

/*みどりのドット　テキスト枠80％　左寄せ　スマホ）*/
#main .haburasi3 {
	border: 2px dotted #3C3;
	display: block;
	width:  auto;
	margin-left: 30px;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: left;
	font-size: 12px;
	margin-right: 30px;
}

/*オレンジ枠　背景薄緑　テキスト枠80％　左寄せ（自分で追加）*/
#main .haburasi2 {
	border: 1px solid #0C0;
	display: block;
	width: auto;
	padding: 10px;
	text-align: left;
	font-size: 12px;
	background-color: #F2FFE6;
	margin: 10px;
}

/*オレンジのドット　テキスト枠80%　中央寄せ（自分で追加）*/
.haburasi {
	border: 3px dotted #F90;
	display: block;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: left;
	width: auto;
	margin-left: 20px;
	margin-right: 20px;
	font-size: 12px;
}

/*治療例のテーブル（自分で追加）*/
#main #cale {
	width: 90%;
	margin-left: 40px;
	text-align: left;
	margin-bottom: 10px;
}

#main #cale tr td {
	text-align: left;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	vertical-align: top;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


/*横幅90％のテーブル・診療カレンダーの上の表＆リスク表（自分で追加）*/

#main #cale2 {
	width: 90%;
	margin-left: 30px;
	margin-bottom: 30px;
}

#main #cale2 tr td {
	text-align: left;
	font-size: 12px;
	border: 1px solid #666;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 10px;
	vertical-align: top;
}

.senmoni {
	background-color: #FFC;
	margin: 20px;
	padding: 20px;
	border: 1px dotted #0C3;
	width: 90%;
}

/*・・・・・・・・・・・*/


.yu {
	color: #090;
	background-image: url(../home/images/haburashi.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	font-weight: bold;
}
.yu2 {
	background-color: #FFC;
}

/*院長テーブルテキスト枠（自分で追加）*/
#main #dr {
	background-image: url(../images/2016incyo2.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	width: 300px;
	background-color: #FFC;
	border: 1px solid #090;
	margin-top: 10px;
	margin-bottom: 10px;
}
#main #dr tr td {
	font-size: 12px;
	padding-top: 10px;
	padding-right: 100px;
	padding-bottom: 10px;
	padding-left: 10px;
}


/*衛生士テーブルテキスト枠（自分で追加）*/
#main #dh {
	background-image: url(../images/2016dh.gif);
	background-repeat: no-repeat;
	background-position: left center;
	width: 300px;
	background-color: #FFC;
	border: 1px solid #F90;
	margin-top: 10px;
	margin-bottom: 10px;
}
#main #dh tr td {
	font-size: 12px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 100px;
}

#main #dh2 {
	background-image: url(../images/2016dh2.gif);
	background-repeat: no-repeat;
	background-position: left center;
	width: 300px;
	background-color: #FFC;
	border: 1px solid #F90;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 30px;
}
#main #dh2 tr td {
	font-size: 12px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 100px;
}

#main #de2 {
	background-image: url(../home/images/hacyan2b.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	width: 300px;
	background-color: #CFF;
	border: 1px solid #999;
	margin-top: 10px;
	margin-bottom: 10px;
}
#main #de2 tr td {
	font-size: 12px;
	padding-top: 10px;
	padding-right: 100px;
	padding-bottom: 10px;
	padding-left: 10px;
}

/*	オレンジ枠、背景うす緑のテーブルテキスト枠（自分で追加）*/
#main #de {
	background-repeat: no-repeat;
	background-position: left center;
	width: 300px;
	background-color: #CF9;
	border: 1px solid #F90;
	margin-top: 10px;
	margin-bottom: 10px;
}
#main #de tr td {
	font-size: 12px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

/*	・・・・・・・・・・・・・・*/


.yu {
	color: #090;
	background-image: url(../images/haburashi.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
	font-weight: bold;
	padding-top: 1px;
	padding-bottom: 1px;
}
.yu2 {
	background-color: #FFC;
}

#ce {
	font-size: 12px;
	text-align: center;
	border: 1px solid #900;
	margin-top: 20px;
	margin-bottom: 20px;
}


#main .imgleft img {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
#main .imgleft {
	margin-bottom: 10px;
	overflow: hidden;
}

/*	(2021.12金井さん修繕案)*/

#main .imgleft01 img {
	float: left;
	margin: 10px 10px 10px 40px;
}
#main .imgleft01 {
	margin-bottom: 10px;
	overflow: hidden;
}

@media (max-width: 920px) {
	#main .imgleft01 img {
		float: none;
		text-align: center;
	}
}

/*	・・・・・・・・・・・・・・*/

#main .imgright img {
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}
#main .imgright {
	margin-bottom: 10px;
	overflow: hidden;
}
.yu3 {
	background-color: #FCC;
}



/*	線なしのテーブルテキスト枠（自分で追加）*/
#te {
	font-size: 12px;
	width: 80%;
	margin-left: 30px;
}
#te tr td {
	font-size: 12px;
	text-align: left;
	padding: 2px;
}

/*	オレンジドット枠薄黄色左に全身衛生士の背景のテーブルテキスト枠　スマホ別*/
.ta-y {
	font-size: 12px;
	background-color: #FFC;
	width: auto;
	border: 2px dotted #F90;
	background-image: url(../images/2016dh.gif);
	background-repeat: no-repeat;
	background-position: left center;
	margin-top: 10px;
	margin-right: 30px;
	margin-bottom: 10px;
	margin-left: 30px;
}
.ta-y tr td {
	font-size: 12px;
	text-align: left;
	padding-left: 110px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
}

/*	唾液ページの歯のテーブルテキスト枠（スマホ別）*/
.de {
	font-size: 12px;
	background-color: #E5F4FC;
	background-image: url(../home/images/hacyan-1.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	border: 1px solid #CCC;
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
	width: auto;
	margin-right: 40px;
	margin-left: 40px;
}
.de tr td {
	font-size: 12px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-right: 100px;
	padding-bottom: 10px;
	padding-left: 30px;
}

/*	噛むページの歯のテーブルテキスト枠（スマホ別）*/

.de3 {
	background-color: #E6FFCC;
	background-image: url(../images/hacyan2g-2.gif);
	background-repeat: no-repeat;
	background-position: left center;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px solid #CCC;
	display: block;
	margin-left: 30px;
	width: 70%;
}
.de3 tr td {
	font-size: 12px;
	padding-left: 80px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
}

/*	線なしのテーブルテキスト枠	スマホ縦表示別設定（自分で追加）*/
.tate {

}
.tate tr td {
	font-size: 12px;
	padding: 20px;
	vertical-align: top;
	margin: 10px;
}


/*・・・スマホのとき画像300PXにする・・・*/
.imgwidth {
	
}

/*・・・矯正用語集の表　・・・*/
.yougo {
	font-size: 11px;
	vertical-align: top;
	height: auto;
	width: 100%;
}
.yougo tr td {
	padding: 5px;
	border: 1px solid #FC3;
	margin: 0px;
	vertical-align: top;
	font-size: 11px;
}


.red {
	color: #F00;
}

.or {
	font-weight: bold;
	color: #F60;
}

#top #contents #sub p {
	padding-right: 5px;
	padding-left: 5px;
}
#top #contents #sub table {
	background-color: #FFC;
	border: 1px solid #999;
}

#big {
	font-size: 16px;
	font-weight: bold;
}


/*	パンくずリスト　*/
.breadcrumbs_list li {
	display: inline-block;
	margin-left: 12px;
	padding-left: 16px;
	background: url(./images/icon_breadcrumbs.svg) left center/6px auto no-repeat;
}
.breadcrumbs_list li:first-child {
	margin-left: 0;
	padding-left: 0;
	background: none;
}

/* PCで電話番号リンクを無効に */
@media (min-width: 751px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}



/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-image: none;
}
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*h1ロゴの設定*/
header .inner img {
	position: static;
	padding-top: 20px;
}
/*電話番号ボックスの設定*/
header .inner address {
	position: static;
	padding-bottom: 20px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menu {
	height: auto;
	overflow: hidden;
	border-bottom: none;
	border-left: 1px solid #d4d4d4;
	margin-bottom: 6px;
}
nav#menu ul {
	width: auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	width: 50%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom: 1px solid #d4d4d4;
}
nav#menu ul li a:hover {
	border-bottom: none;
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-left: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}


/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}
/*幅一杯に画像を表示させる*/
img.wa {
	height: auto;
	width: 100%;
}
/*tdタグにiframeを読み込んだ場合（GoogleMap用）*/
td iframe {
	height: 300px;
	width: 100%;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-image: none;
}
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*ロゴの設定*/
header .inner img {
	position: static;
	padding-top: 20px;
}
header img {
	width: 90%;	/*画面に対してロゴ画像を70％の幅に*/
	height: auto;
}
/*電話番号ボックスの設定*/
header .inner address {
	position: static;
	padding-bottom: 20px;
	padding-right: 20px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menu {
	height: auto;
	overflow: hidden;
	border-bottom: none;
	border-left: 1px solid #d4d4d4;
	margin-bottom: 6px;
}
nav#menu ul {
	width: auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	width: 50%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom: 1px solid #d4d4d4;
}
nav#menu ul li a:hover {
	border-bottom: none;
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	border-left: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding-top: 10px;
}


/*mainコンテンツの段落タグ設定(スマホのとき）*/
#main p {
	font-size: 12px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

/*院内紹介ボックス
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	margin: 0px;
	width: 80%;
	height: auto;
	margin-bottom: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*不正咬合ボックス
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list2 p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list2 figure img {
	float: none;
	margin: 0px;
	width: 80%;
	height: auto;
	margin-bottom: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}


/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}
/*幅一杯に画像を表示させる*/
img.wa {
	height: auto;
	width: 100%;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}


/*	線なしのテーブルテキスト枠	スマホ縦表示（自分で追加）*/
.tate {
	margin: 10px;
}
.tate tr td {
	font-size: 12px;
	padding: 20px;
	display: block;
}

/*・・・スマホのとき画像の幅を100%にする・・・*/
.imgwidth {
	width: 100%;
	height: auto;
}

/*	唾液ページの歯のテーブルテキスト枠（スマホ）*/
#main .de {
	margin-top: 10px;
	margin-bottom: 10px;
	display: block;
	margin-left: 5px;
	width: auto;
	margin-right: 5px;
}
#main .de tr td {
	padding-top: 5px;
	padding-right: 80px;
	padding-bottom: 5px;
	padding-left: 5px;
}

/*	噛むページの歯のテーブルテキスト枠（スマホ）*/

#main .de3 {
	margin-top: 10px;
	margin-bottom: 10px;
	display: block;
	margin-left: 5px;
	width: auto;
	margin-right: 5px;
}
#main .de3 tr td {
	padding-left: 80px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
}

/*みどりのドット　テキスト枠80％　左寄せ　スマホ*/
#main .haburasi3 {
	display: block;
	width: auto;
	margin-left: 5px;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: left;
	margin-right: 5px;
}

/*	オレンジドット枠薄黄色左に全身衛生士の背景のテーブルテキスト枠　スマホ*/
.ta-y {
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
}
.ta-y tr td {
	font-size: 12px;
	text-align: left;
	padding-left: 110px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
}


/*	オレンジ枠薄黄色左に上半身衛生士の背景のテーブルテキスト枠　スマホ*/
#main #dh2 {
　　margin-left: 5px;
　　padding-right: 5px;
}


#main section p .ha {
	background-image: url(../home/images/haburashi.gif);
	background-position: left;
}
section #pankuzu {
	padding-left: 20px;
}

/*治療例のテーブル（自分で追加）*/
#main #cale {
	width: 90%;
	margin-left: 10px;
	text-align: left;
}

#main #cale tr td {
	text-align: left;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	vertical-align: top;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/*横幅90％のテーブル・診療カレンダーの上の表＆リスク表・治療例（自分で追加）*/

#main #cale2 {
	width: 95%;
	margin-left: 10px;
	text-align: left;
}

#main #cale2 tr td {
	text-align: left;
	font-size: 12px;
	border: 1px solid #666;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 10px;
	vertical-align: top;
}
}
