@charset "utf-8";


/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #d3dff9;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {
	margin: 0px;
	padding: 0px;
}
.footer_tel {
	font-size: 18px;
	font-weight: bold;
}
ul {list-style-type: none;}
img {
	border: none;
	max-width: 100%;
	height: auto;
	display: block;
}
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: #2666f0;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*横一杯使う為に100%指定*/
	background: #fff;	/*背景色*/
}
/*サイト幅にしたheader内のブロック*/
header #inner {
	width: 980px;	/*幅*/
	height: 120px;	/*高さ*/
	margin: 0 auto;
	position: relative;
}
/*ロゴ画像*/
header #logo {
	position: absolute;
	left: 12px;	/*header #innerに対して左から10pxの場所に配置*/
	top: 20px;
	height: 84px;
}
/*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));	/*上下、左右へのボックス内余白*/
	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: 12px;	/*文字サイズ*/
	text-align: center;	/*中央よせ*/
	width: 280px;
	background-color: #FFF;
	line-height: 125%;
	color: #333;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
/*TEL(電話番号部分)*/
header #tel strong {
	display: block;
	color: #2666f0;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	line-height: 1.2;	/*行間*/
	background: url(../images/icon_tel.png) no-repeat left center/20px;	/*アイコン幅用の余白*/
	letter-spacing: 0.1em;	/*文字間に少し余裕を出す設定*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
	width: 100%;
	overflow: hidden;
	background: #2666f0;	/*背景色*/
	background-image: repeating-linear-gradient(45deg,rgba(255,255,255,0.1), rgba(255,255,255,0.1) 2px,transparent 0,transparent 4px);/*ストライプ柄。上の背景色に10%(0.1)透明度の白(255,255,255)を重ねる。「2px」と「4px」の数字を変えればストライプ幅の変更ができます。「45deg」が角度。*/
	-webkit-box-shadow: 0px 5px 6px rgba(0,0,0,0.1), 0px 30px 20px rgba(0,0,0,0.15) inset;/*影の設定。左の数字から、左右(0px)、上下(5px)、広がる幅(6px)とrgbaでの色(0,0,0,は黒。0.15が透明度。)。カンマから右側も同じ内容ですが内側(inset)への設定になります。*/
	box-shadow: 0px 5px 6px rgba(0,0,0,0.1), 0px 30px 20px rgba(0,0,0,0.15) inset;
	margin-bottom: 30px;	/*メニューと下のコンテンツとの間に空けるスペース*/
}
#menubar,
#menubar-s {
	width: 980px;	/*幅*/
	overflow: hidden;
	margin: 0 auto;
}
/*メニュー１個あたりの設定*/
#menubar li,
#menubar-s li {
	float: left;	/*左に回り込み*/
	text-align: center;	/*文字をセンタリング*/
	width: 163px;	/*メニュー幅*/
}
#menubar a,
#menubar-s a {
	margin: 8px 4px;	/*１個あたりのメニューの外側にとるスペース。上下、左右。*/
	display: block;
	text-decoration: none;
	padding: 7px 0px;	/*上下、左右へとる余白*/
	color: #fff;	/*文字色*/
	text-shadow: 0px -1px #2666f0;	/*テキストの影。左右、上下、色。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	background: radial-gradient(ellipse 200% 50px at top,rgba(255,255,255,0.8),rgba(255,255,255,0.3) 42%,rgba(255,255,255,0) 45%);/*光沢部分。楕円(ellipse)の幅(200%)と高さ(50px)、を上部へ(top)表示。rgbaは色(255,255,255は白)で0.3や0が透明度。42%と45%はグラデーションの切り替えポイント。*/
	-webkit-box-shadow: 1px 2px 6px rgba(0,0,0,0.2), 0px 0px 1px  1px #2666f0 inset;	/*影の設定。上にある「#menu-box」の解説を参考にして下さい。*/
	box-shadow: 1px 2px 6px rgba(0,0,0,0.2), 0px 0px 1px  1px #2666f0 inset;			/*同上*/
}
/*マウスオン時と、現在表示中*/
#menubar a:hover,
#menubar li.current a {
	position: relative;
	left: 1px;	/*左から1px移動*/
	top: 1px;	/*上から1px移動*/
	background: transparent;	/*背景を透明に*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	width: 940px;	/*幅。header #innerや#menubarの980pxからここのpadding(左右の合計幅)を差し引いた数字で設定するといい。*/
	padding: 20px 20px 0px;	/*ボックス内の余白。上下、左右、下。*/
	margin: 0px auto 30px;
	background: #FFF;	/*背景色*/
	overflow: hidden;
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.1);	/*影の設定*/
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);			/*同上*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 700px;	/*幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 20px;
	color: #FFF;		/*文字色*/
	padding: 5px 15px;	/*上下、左右への余白*/
	background: #2666f0;	/*背景色（古いブラウザ用）*/
	background-image: repeating-linear-gradient(45deg,rgba(255,255,255,0.1), rgba(255,255,255,0.1) 2px,transparent 0,transparent 4px);/*#menu-boxの説明を参考にして下さい*/
	-webkit-box-shadow: 2px 3px 6px rgba(0,0,0,0.1), 0px -30px 20px rgba(0,0,0,0.1) inset;/*#menu-boxの説明を参考にして下さい*/
	box-shadow: 2px 3px 6px rgba(0,0,0,0.1), 0px -30px 20px rgba(0,0,0,0.1) inset;			/*同上*/
	font-weight: bold;
}
/*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: 100%;
	background: #FFF;	/*背景色*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #2666f0;	/*左側のアクセント用ラインの幅、線種、色*/
	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 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: #2666f0;		/*文字色*/
	border-bottom: solid 1px #2666f0;	/*下線の線種、幅、色*/
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
	margin-bottom: 10px;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左に回り込み*/
	width: 220px;	/*幅*/

}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	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;
}

/*サブコンテンツ内の営業日カレンダー用
---------------------------------------------------------------------------*/
.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;	/*「日」の文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #2666f0;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 85%;	/*文字サイズ*/
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
	font-size: 18px;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 980px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 20px 0px;
	background: url(../images/footer_bg.png) no-repeat right center;	/*古いブラウザ用（IE8以下）は原寸大表示*/
	background: url(../images/footer_bg.png) no-repeat right center/auto 80%;	/*歯のマーク読み込み。右側の上下中央に配置。ブロックの高さに対して80%で表示。*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅*/
	padding-right: 2%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}

/*トップページ内メインイメージ
---------------------------------------------------------------------------*/
#mainimg img {
	width: 100%;
	vertical-align: bottom;
	margin-bottom: 20px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#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;	/*背景色*/
	font-size: small;
}
/*画像*/
.ta1 img {
	vertical-align: bottom;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #2666f0;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 40px;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;	/*上下、左右へのボックス内余白*/
	background: #333;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #2666f0;
}
.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-bottom: 10px;
}
img.fl {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
.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: 0px;
}

/*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: 45%;
}
/*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: auto;
	position: static;
}
/*TEL*/
header #tel {
	position: static;
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-top: 0px;
    width: 100%;
}
/*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: 80%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li,
#menubar-s li {
	width: 100%;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/

/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 10px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #fff;	/*背景色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*「診療科目」ページの一覧用ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#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) 2px,transparent 0,transparent 4px),#2666f0;
}
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) 2px,transparent 0,transparent 4px),#2666f0;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.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%;
}

}
.sma_ta1 {
	font-size: 24px;
	font-weight: bold;
	color: #F00;
}
.footertxt_h2 {
	font-size: 24px;
	font-weight: bold;
}
.footertxt_B_h2 {
	font-size: 20px;
	font-weight: bold;
}

/*-------------------------------------------
よくある質問
-------------------------------------------*/

#FAQBOX .faqbox .txt{
	margin:0 0 50px 0;
}

#FAQBOX .faqbox .qa_listbox .listbox{
	margin:0 0 40px 0;
}

#FAQBOX .faqbox .qa_listbox .listbox:last-child{
	margin:0 0 0 0;
}

#FAQBOX .faqbox .qa_listbox .listbox h3{
	margin:0 0 30px 0;
	padding:0 0 10px 0;
	font-size: 18px;
	color: #00ab94;
	font-weight: bold;
	border-bottom: 2px solid #00ab94;
	line-height: 1.3;
}

#FAQBOX .faqbox .qa_listbox .listbox{
	margin:0 0 40px 0;
}

#FAQBOX .faqbox .qa_listbox .listbox .lnkbtn p{
	border:1px solid #cccccc;
	line-height:1;
	float:right;
}

#FAQBOX .faqbox .qa_listbox .listbox .lnkbtn a{
	background: url(../img/dec_arw_round_lgr.png) no-repeat 10px 50%;
	padding:7px 10px 7px 35px;
	font-size:14px;
	font-weight:bold;
	display: block;
	text-decoration:none;
}

#FAQBOX .faqbox .qa_listbox .listbox .lnkbtn a:hover{
	text-decoration:underline;
}

#FAQBOX .faqbox .qa_listbox .listbox .listin{
	margin:0 0 40px 0;
}

#FAQBOX .faqbox .qa_listbox .listbox .listin dl{
	margin:0 0 12px 0;
	display:table;
	width:100%;
}

#FAQBOX .faqbox .qa_listbox .listbox .listin dl:last-child{
	margin:0 0 0 0;
}

#FAQBOX .faqbox .qa_listbox .listbox .listin dl dt{
	display:table-cell;
	vertical-align:top;
	text-align:left;
	width: 40px;
}

#FAQBOX .faqbox .qa_listbox .listbox .listin .qbx dt{
	background:#00AB95;
	vertical-align:middle;
}

#FAQBOX .faqbox .qa_listbox .listbox .listin dl dd{
	display:table-cell;
	vertical-align:middle;
	text-align:left;
	padding:0 0 0 15px;
}

#FAQBOX .faqbox .qa_listbox .listbox .listin .qbx dd{
	background: url(../img/common/bg_wrapper.png) repeat;
	font-size:15px;
	font-weight:bold;
	line-height: 1.3;
}

#FAQBOX .faqbox .qa_listbox .listbox .listin .abx dd{
	line-height: 1.5;
	padding:12px 0 0 15px;
}

#FAQBOX .topbox{
	margin: 0 0 40px 0;
}

#FAQBOX .topbox .img{
	margin: 0 0 40px 0;
}

#FAQBOX .topbox .img img{
	width:100%;
	max-width: 910px;
}

#FAQBOX .topbox dl dt{
	margin: 0 0 30px 0;
}

#FAQBOX .topbox dl dt img{
	width:100%;
	max-width: 825px;
}

#FAQBOX .topbox dl dd.txt{
	background: url(../img/bg_rinen.gif) repeat 0 0;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 25px;
  border: 1px solid #cccccc;
  color: #332625;
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  margin:0 0 40px 0;
}

#FAQBOX .topbox dl dd ul li{
	float: left;
	width:200px;
	margin:0 20px 0 0;
}

#FAQBOX .topbox dl dd ul li img{
	width:100%;
}.smz_fap_title {
	font-size: 20px;
	font-weight: bold;
	color: #06F;
	text-align: center;
	margin-top: 20px;
}
#smz_new_box {
	width: 100%;
	border-left-style: solid;
	border-left-color: #06C;
}


/*---------------------------------------------------*/
/* DVD＆資料請求フォーム
-----------------------------------------------------*/
p#main{
	clear:both;
	height:55px;
	margin-bottom:32px;
	background:#003b5a;}

#form {
	margin:0 auto;}
	#container #form{
		padding-top:56px;}
#form h2{
	margin-bottom:32px;}
#form h3{
	margin-bottom:24px;}
#form h4{
	padding-bottom:8px;
	border-bottom:1px solid #ccc;
	margin-bottom:16px;}
#form p{
	text-align:left;
	margin-bottom:16px;}


/* アンケート */
.survey{
	text-align:left;}
	.survey section{
		margin-bottom:24px;}


/* フォーム
-----------------------------------------------------*/
#form form {}

#form form table{
	line-height:1.5;
	text-align:left;
	padding-bottom:-1px;
	border:1px solid #ccc;
	margin-bottom:24px;}
	#form form table tr{
		border-bottom:1px dotted #ccc;}
		#form form table tr:last-child { border-bottom:none; }
	#form form table th,
	#form form table td{}

	#form form table th{
		color:#003366;
		background-color:#eeeeee;
		}
	#form form table td{}

	@media screen and (min-width: 769px){
		#form form table th,
		#form form table td{
			padding:8px 16px;}
		#form form table th{
			width:30%;
			letter-spacing:0.1em;
			padding-right:20px;
			border-right:1px solid #ccc; }
		}

	@media screen and (max-width: 768px){
		#form form table th,
		#form form table td{
			display:block;}

		#form form table th{
			width:100%;
			text-align:center;
			padding:8px 0;}
		#form form table td{
			padding:8px 16px 16px;}
		}

/* 必須 */
#form form table .must th{
	background-image:url(../images/form_hissu.gif);
	background-repeat:no-repeat;
	background-position:95% center;}

/* 注意書き */
#form form table td .aside{}
#form form table td span{
	font-size:90%;}

/* 入力エラー */
#form form .text_error{
	display:none;
	color:#F00;}
#form form .text_error{
	display:none;
	color:#F00;}

/* ラジオボタン */
#form form table label{margin-right:10px;;}
/* 入力 */
#form form .inputtext{width:500px;}

#form form .inputtext2{width:200px;}

/* テキストエリア */
#form form table textarea{
	width:98%;}

/* フォームタグ */
#form form table label,
#form form table input,
#form form table textarea,
#form form table select{
	padding:4px 8px;}

/* 半角→全角 */
#form form .toZenKata {}

/* ボタン */
#form .btnarea{
	margin-bottom:24px;
	text-align:center;}
	#form .btnarea li{
		margin-bottom:24px;}

	@media screen and (min-width: 769px){
		#form .btnarea li{
			display:inline-block;
			margin:0 8px;}
		}

	@media screen and (max-width: 768px){
		#form .btnarea li{
			float:left;
			display:inline;}
			#form .btnarea li.back{
				width:31.25%;}
			#form .btnarea li.send{
				width:68.75%;}
		}
#form .must{background:#da0000; padding:3px; color:#fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px; font-size:.8em; float:right;}
#form .arbitrary{background:#666666; padding:3px; color:#fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px; font-size:.8em; float:right;}


/* アンケート
-----------------------------------------------------*/
.enquete label{
	margin:0!important;
	padding:5px 0!important;
	box-sizing:border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;}
.enquete .job label{
	min-width:24%;}
.enquete .income label{
	min-width:32%;}

/* サンクスページ
-----------------------------------------------------*/
#form .section{
	text-align:left;
	margin-bottom:20px;}

#form .section h4{
	font-size:32px;
	text-align:center;}
#form .section .point{font-weight:bold;}

#form .section address{
	font-style:normal;
	line-height:normal;
	margin-bottom:16px;}
	#form .section address img{
		margin-bottom:8px;}
	#form .section address strong{
		font-size:40px;margin: 0 25px 0 10px;}


.holiday{border:3px solid #d70a0f; margin:0 auto; width:800px;}
.holiday h5{background:#d70a0f; color:#fff; text-align:center;}
.holiday p{padding:16px 28px 0;}
#contents #main section div img {
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
}
#new ttl {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}
