@charset "UTF-8";

hr {
	border-top: 1px dotted #CCC;
	border-right: 0px;
	border-bottom: 0px;
	border-left: 0px;
	clear: both;
	height: 1px;
}
/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	padding-right: 15px;
	padding-left: 15px; /* div 自体ではなく div 内でエレメントの両側に余白を追加すると、ボックスモデル計算が不要になります。代わりに、両側に余白を指定した div をネストして使用することもできます。 */
}
a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
}
/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color: #F60;
	text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
}
/* ~~ この固定幅コンテナが他の div を囲みます。~~ */
.container {
	width: 950px;
	background: #FFF;
	margin: 0 auto; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
}
/* ~~ ヘッダーには幅は指定されません。ヘッダーはレイアウトの幅全体まで広がります。ヘッダーには、ユーザー独自のリンクされたロゴに置き換えられるイメージプレースホルダーが含まれます。~~ */
.header {
	margin: 0px;
	padding: 0px;
	height: 134px;
	width: 950px;
}
#logo {
	float:left;
	height: 110px;
	width: 476px;
}
#menu {
	font-size: 12px;
	line-height: 28px;
	height: 28px;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	width: auto;
}
#menu img {
	margin-right: 0.3em;
	margin-left: 12px;
}
#tel {
	text-align: right;
	height: 105px;
	padding-top: 5px;
	width: auto;
	float: right;
}
.telimg {
	padding-top: 10px;
	border-top: 1px dashed #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	height: 66px;
}
#title {
	background: url(img/head_back.jpg) repeat-x;
	height: 110px;
	width: 950px;
	margin: 0px;
	padding: 0px;
}
.header h1 {
	background: #0062AF;
	color: #FFF;
	font-size: 12px;
	height: 24px;
	line-height: 24px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
.menu {
	border-top: 3px solid #0062AF;
	border-bottom: 1px solid #FFF;
	background: url(img/menu/menu_back.jpg) repeat-x;
	width: 950px;
	clear: both;
	float: none;
	margin: 1px 0px 0px;
	padding: 0px;
	text-align: center;
	font-size: 0;
	overflow: hidden;
}
/* ~~ レイアウトに使用するカラムです。~~ 

1) 余白は、div の上部または下部にのみ配置されます。これらの div 内のエレメントには、それ自体に余白があるので、ボックスモデル計算を行う必要がありません。ただし、div 自体に両側の余白やボーダーを指定した場合、その値が加算されたものが合計幅になることに注意してください。div 内のエレメントの余白を削除し、さらにその div 内に、全体のデザインに必要な幅や余白を指定していない 2 つ目の div を追加することもできます。

2) カラムはすべてフロートしているため、マージンは指定されていません。マージンを追加する必要がある場合は、フロート方向には指定しないでください (例えば、右フロートに設定した div の右マージン)。多くの場合、代わりに余白を使用できます。このルールに従わない場合は、div のルールに「display:inline」宣言を追加し、一部のバージョンの Internet Explorer でマージンが 2 倍になるバグを回避する必要があります。

3) クラスはドキュメント内で複数回使用できるので (またエレメントには複数のクラスを適用できます)、カラムには ID ではなくクラス名が割り当てられます。例えば、必要に応じて 2 つのサイドバー div をスタックできます。クラスを各ドキュメントで一度しか使用しないのであれば、ユーザーの好みに応じて、クラス名を ID に変更することができます。

4) ナビゲーションを右ではなく左に配置したい場合、これらのカラムを反対方向にフロートさせると (すべて右方向にする代わりに、すべて左方向に設定)、反転してレンダリングされます。HTML ソース内で div を移動する必要はありません。

*/
.sidebar1 {
	float: right;
	width: 280px;
}
.sidebar2 {
	margin-top: 20px;
	margin-bottom: 20px;
}
.content {
	width: 670px;
	float: right;
	margin-top: 20px;
}
/* ~~ このセレクターグループは、.content 内のリストに領域間隔を指定します。~~ */
.content ul, .content ol {
	padding: 0px 0px 0px 20px; /* この余白は、上述の見出しと段落ルールの右の余白を表します。下の余白はリスト内の他のエレメントとの間隔用に配置され、左の余白はインデント作成用に配置されています。これは必要に応じて調整できます。 */
}
/* ~~ ナビゲーションリストのスタイル付け (Spry などの事前作成済みのフライアウトメニューを使用する場合は削除できます) ~~ */
.nav {
	width: 250px;
	margin-top: 20px;
	background: #e8e7ec;
	padding: 15px;
}
.nav #hr {
	margin: 0px;
	padding: 0px;
}
/* ~~ フッター ~~ */
.footer {
	position: relative;/* IE6 に、適切にクリアするための hasLayout を指定します。 */
	clear: both;
	text-align: right;
}
.pagetopbox {
	margin-right: 55px;
	margin-top: 20px;
	bottom: 0px;
}
.pagetopbox ul li {
	display: block;
	float: left;
	position: relative;
	margin: 0px;
	padding: 0px;
}
.footerback {
	background: url(img/footer_back.jpg) repeat-x;
	height: 227px;
}
.footerbox {
	width: 950px;
	font-size: 0.8em;
	padding-top: 40px;
	text-align: left;
	margin: 0px auto;
	color: #FFF;
}
.copy {
	background: url(img/copyback.png) no-repeat;
	height: 92px;
	color: #333;
	text-align: left;
	padding-left: 230px;
	width: 700px;
	margin-top: 20px;
}
.copy #tablebox {
	height: 92px;
}
/* ~~ その他の float/clear クラス ~~ */
.fltrt {  /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* このクラスは、#footer が #container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (#container 内に) 配置できます。 */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.dotline {
	border: 1px dashed #CCC;
	margin: 0px;
	padding: 0px;
}
.osirase {
	font-size: 12px;
	background: url(img/osirase_title.jpg) no-repeat top;
	margin: 0px 55px 0px 0px;
}
.osirase ul, ol {
	list-style: none inside;
	line-height: 2em;
}
.osirase li {
	border-bottom: 1px dashed #CCC;
	padding-top: 10px;
}
.info {
	margin: 20px 55px 0px 0px;
	font-size: 0.9em;
}
.info h2, h3, h4, p {
	margin: 5px;
	padding: 0px;
}
.info h3 {
	color: #0062AF;
}
#blueh2 {
	color: #0062AF;
	margin: auto;
}
.komado {
	background: #f2f2f2;
	padding: 15px;
	border: 1px solid #c9c9c9;
	margin-top: 20px;
	font-size: 0.9em;
	margin-right: 55px;
	clear: both;
}
.normal {
	margin: 0px 55px 0px 0px;
	font-size: 0.9em;
}
.normal h2 {
	color: #0062AF;
	margin: auto;
}
.normal2 {
	margin: 30px 55px 0px 0px;
	font-size: 0.9em;
}
.kyujin {
	margin: 0px 55px 0px 0px;
	font-size: 0.9em;
}
table#table-01 {
	border: 1px #E3E3E3 solid;
	border-collapse: collapse;
	font-size: 0.9em;
	width: 100%;
	font-family: monospace, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
table#table-01 th {
	padding: 5px;
	border: #E3E3E3 solid;
	border-width: 0 0 1px 1px;
	background: #F5F5F5;
	font-weight: bold;
	text-align: center;
}
table#table-01 td {
	padding: 5px;
	border: 1px #E3E3E3 solid;
	border-width: 0 0 1px 1px;
}
table#table-02 {
	border: 1px #E3E3E3 solid;
	border-collapse: collapse;
	font-size: 1em;
	width: 100%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/* [disabled]margin-top: 10px;
*/
	clear: both;
}
table#table-02 th {
	padding: 5px;
	border: #E3E3E3 solid;
	border-width: 0 0 1px 1px;
	background: #F0FAFF;
	font-weight: bold;
	text-align: center;
}
table#table-02 td {
	padding: 10px;
	border: 1px #E3E3E3 solid;
	border-width: 0 0 1px 1px;
}
table.table-02 {
	border: 1px #E3E3E3 solid;
	border-collapse: collapse;
	font-size: 1em;
	width: 100%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/* [disabled]margin-top: 10px;
*/
	clear: both;
}
table.table-02 th {
	padding: 5px;
	border: #E3E3E3 solid;
	border-width: 0 0 1px 1px;
	background: #F0FAFF;
	font-weight: bold;
	text-align: center;
}
table.table-02 td {
	padding: 10px;
	border: 1px #E3E3E3 solid;
	border-width: 0 0 1px 1px;
}
table#table-03 {
	border-collapse: collapse;
	font-size: 1em;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	clear: both;
	width: 100%;
}
table#table-03 th {
	text-align: left;
	border-bottom: 1px dashed #E3E3E3;
	color: #0062AF;
}
table#table-03 td {
	padding: 10px;
	border-bottom: 1px dotted #E3E3E3;
	border-left: 1px dotted #E3E3E3;
}
table#table-04 {
	border-collapse: collapse;
	font-size: 1em;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
table#table-04 th {
	text-align: left;
	border-bottom: 1px dashed #E3E3E3;
	color: #0062AF;
}
table#table-04 td {
	padding: 10px;
	border-bottom: 1px dotted #E3E3E3;
	border-left: 1px dotted #E3E3E3;
}
.flootbox_left {
	float: left;
	margin-right: 20px;
}
.flootbox_right {
	float: left;
	/* [disabled]clear: none;
*/
}
.coment {
	display: block;
	font-size: 10px;
	text-align: right;
	margin-right: 10px;
	float: right;
	margin-top: -30px;
}
.bar {
	height: auto;
	width: auto;
	float: left;
	margin-left: 5px;
	border-left: 3px solid #0062AF;
	/* [disabled]margin-bottom: 20px;
*/
	padding: 5px;
}
.aisatsu {
	margin: 0px 55px 20px 0px;
	font-size: 0.9em;
	background: url(img/aisatsuback.jpg) no-repeat left 60px;
	line-height: 1.7em;
}
.aisatsu p {
	padding-left: 10px;
}
.orengetop {
	background: url(img/orenge/back1.jpg) no-repeat;
	height: 15px;
	width: 615px;
	margin: 0px;
	padding: 0px;
	clear: both;
}
.orengebody {
	background: url(img/orenge/back2.jpg) repeat-y;
	width: 595px;
	margin: 0px;
	padding: 0px 10px;
}
.orengebottom {
	background: url(img/orenge/back3.jpg) no-repeat;
	height: 15px;
	width: 615px;
	margin: 0px;
	padding: 0px;
	clear: both;
}
.greentop {
	background: url(img/green/back1.jpg) no-repeat;
	height: 15px;
	width: 615px;
	margin: 0px;
	padding: 0px;
	clear: both;
}
.greenbody {
	background: url(img/green/back2.jpg) repeat-y;
	width: 595px;
	margin: 0px;
	padding: 0px 10px;
}
.greenbottom {
	background: url(img/green/back3.jpg) no-repeat;
	height: 15px;
	width: 615px;
	margin: 0px;
	padding: 0px;
	clear: both;
}
.pinktop {
	background: url(img/pink/back1.jpg) no-repeat;
	height: 15px;
	width: 615px;
	margin: 0px;
	padding: 0px;
	clear: both;
}
.pinkbody {
	background: url(img/pink/back2.jpg) repeat-y;
	width: 595px;
	margin: 0px;
	padding: 0px 10px;
}
.pinkbottom {
	background: url(img/pink/back3.jpg) no-repeat;
	height: 15px;
	width: 615px;
	margin: 0px;
	padding: 0px;
	clear: both;
}
.small {
	font-size: x-small;
}
.soudanka {
	margin: 0px 55px 0px 0px;
}
.soudanka h2 {
	margin: 5px;
	padding: 0px;
	font-weight: normal;
}
.soudanka h3 {
	color: #0062AF;
}
.soudanka h4 {
	margin: 5px;
	padding: 0px;
	font-weight: normal;
}
.privacy {
	list-style: decimal outside;
	margin: 15px 20px;
	padding: 0px;
}
.red {
	color: #F00;
}
.faq {
	background: url(img/ha4.jpg) no-repeat right top;
}
dl.faq dt {
	clear: left;
	float: left;
	width: 1em;
	padding-left: 5px;
	color: #000;
	margin-bottom: 0.9em;
	margin-left: 5px;
}
dl.faq dd {
	margin-bottom: 0.9em;
	margin-left: 3em;
}
dl.faq hr {
	border-left: 0px dotted #CCC;
	padding: 0px;
	height: 1px;
	border-top: 1px dotted #CCC;
	border-right: 0px dotted #CCC;
	border-bottom: 0px dotted #CCC;
	margin-top: 2em;
	margin-bottom: 2em;
}
.info2 {
	margin: 20px 0px 0px;
	font-size: 0.9em;
}
.kokoro {
	color: #FFF;
	background: url(img/kokoro_back.jpg) no-repeat left bottom;
	float: right;
	height: 150px;
	width: 260px;
	margin-right: 34px;
	display: block;
	margin-bottom: 15px;
}
.kokoro a {
	color: #FFF;
	text-decoration: none;
}
.kokoro .nobr {
	padding: 0px;
	margin-right: 10px;
	margin-left: 10px;
	line-height: 1.6em;
	font-size: 12px;
}
.kokoro .nobr li {
	display: inline;
	zoom:1; /* hasLayout を true にする */
	margin-right: 7px;
	white-space: nowrap;
}
table#sisin {
	border-collapse: collapse;
}
table#sisin th {
	background: url(img/ha.jpg);
	font-weight: bold;
	text-align: center;
	height: 50px;
	width: 67px;
	border-bottom: 1px dotted #E3E3E3;
}
table#sisin td {
	padding: 5px;
	border-top: 0px dotted #E3E3E3;
	border-right: 0px dotted #E3E3E3;
	border-bottom: 1px dotted #E3E3E3;
	border-left: 0px dotted #E3E3E3;
}
.messege {
	margin: 0px 55px 0px 0px;
}
.messege p {
	line-height: 1.7em;
	font-size: 0.9em;
}
.messege h3 {
	border-left: 2px solid #0062AF;
	padding-left: 10px;
	border-top: 0px none #0062AF;
	border-right: 0px none #0062AF;
	border-bottom: 0px none #0062AF;
}
.byoki {
	margin: 0px 55px 0px 0px;
	font-size: 0.9em;
	line-height: 1.6em;
}
div.byouinkaranoosirase {
	margin: 0px 55px 0px 0px;
}
ul.byouinkaranoosirase , ol.byouinkaranoosirase {
	list-style: none inside;
	line-height: 2em;
	margin-left: -15px;
	margin-top: -20px;
}
li.byouinkaranoosirase {
	border-bottom: 1px dashed #CCC;
	padding-top: 10px;
	padding-bottom: 15px;
}
.image-right {
	margin-left: 10px;
	float: right;
	margin-bottom: 10px;
}
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

div#thanks {
	padding: 40px 0px;
	text-align: center;
}
div#thanks p {
	font-size: 16px;
}
div#thanks p strong {
	font-size: 18px;
	color: #CC0000;
}
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.kensaku {
	font-size: x-small;
	padding: 0px 10px;
	margin: -10px 0px 0px;
}

