@charset "utf-8";

/**************************************/
/*               index                */
/**************************************/
/***

1.Common
   body
   a
   br
   img
   h1,h2,h3,h4,h5,h6
   p
   em
   strong
   ins
   del
   ul,ol
   th,td
   form
   textarea
   input[type=text]
   select
   address

2.layout
   #header
   #menu
   #contents
   #footer

3.custom
   .summary（テンプレート概要用テーブル）
   .totop（ページのトップへ戻るリンク）

***/

/**************************************/
/*             1.Common               */
/**************************************/
body {
   margin:0;
   padding:0;
   color:#333;
   font-family:verdana, sans-serif;
   font-style:normal;
   font-weight:normal;
   font-size:100%;;
   text-align:center;
   text-decoration:none;
   letter-spacing:1px;
   line-height:1.4;
   background:#0C0004;
}

a{	color:#0099FF;/*通常のリンクテキストカラー*/}
a:hover{
	color:#FF9900;/*マウスが乗った時の通常のリンクテキストカラー*/
	text-decoration:underline;/*マウスが乗った時下線を表示（つけない場合は underline を none へ）*/
}

a:link {
   color:#0099FF;
}

a:visited {
   color:#0099FF;
}

br {
   letter-spacing:normal;
}

img {
   border:0;
   vertical-align:bottom;
}

h1,h2,h3,h4,h5,h6 {
   margin:0;
   padding:0;
   font-weight:bold;
   font-size:88%;
}

p {
   margin:0;
   font-size:75%;
}
em {
   font-weight:bold;
   font-style:normal;
}

strong {
   font-weight:bold;
   color:#FF6535;
}

ins {
   text-decoration: underline;
}

del {
   color:#999;
   text-decoration: line-through;
}


ul,ol {
   margin:0;
   padding:1em 0;
   padding-left:40px;
   font-size:75%;
}

dl{
   margin:0;
   padding:1em 0;
   font-size:75%;
   
}

th,td {
   font-weight:normal;
   font-size:75%;
   text-align:left;
}

form {
   margin:0;
   margin-left:1em;
   font-size:75%;;

}

textarea,
input[type=text],
select {
   font-size:100%;
   background:#fff;
   border:1px solid #333;
   }

address {
   margin:0;
   padding:0;
   color:#333;
   font-style:normal;
   font-weight:normal;
   font-size:75%;
}

/**************************************/
/*             2.layout               */
/**************************************/
#top {
   position:relative;
   width:700px;
   margin:0 auto;
   text-align:left;
}

#header {
   position:relative;
   width:660px;
   height:100px;
   padding:0 20px;
   background:#fff url(bg_header.gif) no-repeat;
}

#menu {
   position:absolute;
   left:20px;
   bottom:0;
}

#contents {
   width:660px;
   padding:0 20px;
   background:#FFF6D9;
}

#footer {
   width:660px;
   height:100px;
   padding:0 20px;
   background:#fff url(bg_footer.gif) no-repeat;
}

/**************************************/
/*             3.custom               */
/**************************************/
#header h1 {
   display:inline;
   position:relative;
   top:30px;
   left:30px;
   font-size:100%;
}

#menu ul {
   margin:0;
   padding:0;
   list-style:none;
}

#menu li {
   display:inline;
   padding-right:20px;
}

#menu li a {
   padding-left:20px;
}

#menu li a:hover {
   background:url(mark.gif) top left no-repeat;
}


#contents h2 {
   margin-bottom:2px;
   padding-top:30px;
   border-bottom:3px double #FF6535;
   color:#FF6535;
}

#contents h3 {
   margin-bottom:2px;
   margin-left:1em;
   padding-top:30px;
   border-bottom:1px solid #333;
}

#contents h4 {
   margin-bottom:2px;
   margin-left:1em;
   padding-top:30px;
   font-weight:normal;
}

#contents h5 {
   margin-bottom:2px;
   margin-left:1em;
   padding-top:30px;
   font-weight:normal;
   font-size:75%;
}

#contents h6 {
   margin-bottom:2px;
   margin-left:1em;
   padding-top:30px;
   font-weight:normal;
   font-size:75%;
}

#contents ul,
#contents ol {
   margin-left:1em;
}

#contents dt {
   margin-left:1em;
}

#contents dd {
   margin-left:2em;
}

#contents p {
   margin-left:1em;

}

/* テンプレート概要のためのテーブルデザインですので
   削除されても構いません */
#contents .summary {
   margin:3px 0 20px 1em;
   padding:0;
   border-collapse: collapse;
   line-height:1.4;
}

#contents .summary th {
   width:30%;
   padding:5px;
   padding-right:2em;
   vertical-align:top;
   border:1px solid #999;
   font-weight:normal;
}

#contents .summary td {
   width:70%;
   padding:5px;
   vertical-align:top;
   border:1px solid #999;
   border-left:3px double #999;
   font-weight:normal;
}
/* ↑↑↑ テーブルデザイン ここまで ↑↑↑ */

#contents .totop {
   font-size:75%;
   text-align:right;
}

#footer address {
   padding-top:30px;
   font-size:70%;
   text-align:center;
}

/*------------------------------------------------------------
3、float・・・ブロックの左右の回り込み＆clearfix
-------------------------------------------------------------*/

.fl-r{ float:right; margin-left: 20px; }/*右寄せ*/
.fl-l{ float:left; margin-right: 20px; }/*左寄せ*/
.fl-c{
	clear: both;
	margin-top: 20px;/*上に20pxのマージンをとる*/
}

/*------------------------------------------------------------
4、margin・・・周りのブロックからの距離
-------------------------------------------------------------*/

.m0{ margin: 0!important; }/*周りからのmarginを0に*/
.m0-t{ margin-top: 0!important; }/*上からのmarginを0に*/
.m0-r{ margin-right: 0!important; }/*右からのmarginを0に*/
.m0-b{ margin-bottom: 0!important; }/*下からのmarginを0に*/
.m0-l{ margin-left: 0!important; }/*左からのmarginを0に*/

.m10{ margin: 10px!important; }/*周りからのmarginを10pxに*/
.m10-t{ margin-top: 10px!important; }/*周りからのmarginを10pxに*/
.m10-r{ margin-right: 10px!important; }/*周りからのmarginを10pxに*/
.m10-b{ margin-bottom: 10px!important; }/*周りからのmarginを10pxに*/
.m10-l{ margin-left: 10px!important; }/*周りからのmarginを10pxに*/

.m20{ margin: 20px!important; }
.m20-t{ margin-top: 20px!important; }
.m20-r{ margin-right: 20px!important; }
.m20-b{ margin-bottom: 20px!important; }
.m20-l{ margin-left: 20px!important; }

.m30{ margin: 30px!important; }
.m30-t{ margin-top: 30px!important; }
.m30-r{ margin-right: 30px!important; }
.m30-b{ margin-bottom: 30px!important; }
.m30-l{ margin-left: 30px!important; }

.m40{ margin: 40px!important; }
.m40-t{ margin-top: 40px!important; }
.m40-r{ margin-right: 40px!important; }
.m40-b{ margin-bottom: 40px!important; }
.m40-l{ margin-left: 40px!important; }

.m50{ margin: 50px!important; }
.m50-t{ margin-top: 50px!important; }
.m50-r{ margin-right: 50px!important; }
.m50-b{ margin-bottom: 50px!important; }
.m50-l{ margin-left: 50px!important; }

.m60{ margin: 60px!important; }
.m60-t{ margin-top: 60px!important; }
.m60-r{ margin-right: 60px!important; }
.m60-b{ margin-bottom: 60px!important; }
.m60-l{ margin-left: 60px!important; }

.m70{ margin: 70px!important; }
.m70-t{ margin-top: 70px!important; }
.m70-r{ margin-right: 70px!important; }
.m70-b{ margin-bottom: 70px!important; }
.m70-l{ margin-left: 70px!important; }

.m80{ margin: 80px!important; }
.m80-t{ margin-top: 80px!important; }
.m80-r{ margin-right: 80px!important; }
.m80-b{ margin-bottom: 80px!important; }
.m80-l{ margin-left: 80px!important; }

.m90{ margin: 90px!important; }
.m90-t{ margin-top: 90px!important; }
.m90-r{ margin-right: 90px!important; }
.m90-b{ margin-bottom: 90px!important; }
.m90-l{ margin-left: 90px!important; }

.m150-t{ margin-top: 150px!important; }
