*{
   margin: 0;
   padding: 0;
}

body{
   font-size: 70%;
   font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ', Meiryo,sans-serif;
   color: #666;
   background-color: #FFF;
   text-align: left;
   overflow-y: scroll;
}
/*--------------------------------------------------------
リンク
--------------------------------------------------------*/

A{
   color: #666666;
   text-decoration: none;
}

A:HOVER{
   color: #fdac09;/* マウスが乗った時のリンク文字色 */
   background-color: #FFFFFF;/* マウスが乗った時のリンク背景色 */
}

A img{
   border-style: none;
}
/*--------------------------------------------------------
基本
全体の幅は、下にある左側のwidth、右側のwidthを足した数より
20くらい大きくしてください
--------------------------------------------------------*/

#wrapper{
   width: 1200px;/* 全体の幅 */
   margin: 10px auto;
}
/*--------------------------------------------------------
メニュー
--------------------------------------------------------*/

.menu ul{
   margin: 0;
   padding: 0;
}

.menu li{
   list-style: none;
   line-height: 20px;
}

.menu li a{
   color: #666;/* 文字色 */
}

.menu li a:hover {
   color: #FFF;/* マウスが乗った時の文字色 */
   background-color: #fdac09;/* マウスが乗った時の背景色 */
   background-image: url(image/a01.gif);
   background-repeat: no-repeat;
   background-position: 100%;
}

a.block {
   background-color: #FFF;
   border-bottom: 1px dotted #666;
   line-height: 20px;
   display: block;
   margin: 5px 0;
   text-align: left;
}

div.block {
   background-color: #FFF;
   border-bottom: 1px dotted #666;
   line-height: 20px;
   display: block;
   margin: 5px 0;
   text-align: left;
}
/*--------------------------------------------------------
メイン
--------------------------------------------------------*/

#contents{
   margin: 10px auto;
   overflow: auto;
   position: relative;
}
/* 右側 */

#rightcolumn{
   display: inline;
   float: right;
   margin: 0px;
   padding: 5px;
   width: 960px;/* 左側のwidthと足して全体の幅を超えないように */
   line-height: 20px;
}
/* 左側 */

#leftcolumn{
   display: inline;
   float: left;
   margin: 0px;
   position: relative;
   width: 220px;/* 右側のwidthと足して全体の幅を超えないように */
   text-align: left;
   line-height: 20px;
}
/* 右横に線のある枠 */

.rahm01{
   margin-bottom: 10px;
   padding: 20px;
   text-align: left;
   background-image: url(image/back01.gif);
   background-repeat: repeat-y;
}
/* 四角い枠 */

.rahm02{
   border: 1px solid #666;
   margin-bottom: 10px;
   margin-top: 10px;
   padding: 10px;
}
/*--------------------------------------------------------
下
--------------------------------------------------------*/

#footer{
   margin: 10px auto;
   padding: 10px;
   text-align: right;
}
/*--------------------------------------------------------
リンクページ
--------------------------------------------------------*/

.link01 img{
   margin: 3px;
}

.link01 A img{
   margin: 3px;
}
/*--------------------------------------------------------
見出し、枠、線
--------------------------------------------------------*/

h1{
   font-size: 1.4em;
   font-weight: bold;
   letter-spacing: 3px;
}

h2{
   font-size: 1.3em;
   line-height: 1.3em;
   font-weight: bold;
   margin: 1em 0px;
   text-align: left;
   border-bottom: 3px solid #666;
   letter-spacing: 3px;
}

h1 span,h2 span,h4  span{
   color: #fdac09;
}

h3{
   font-size: 1em;
   font-weight: bold;
   margin: 1em 0;
}

h4{
   font-size: 1.3em;
   line-height: 1.3em;
   font-weight: bold;
   margin: 1em 0px;
   text-align: right;
   background: url(image/a03.gif) no-repeat;/* 星の画像 */
   border-bottom: 3px solid #666;
   letter-spacing: 3px;
}



em{
   font-weight: bold;
   background-color: #e5e5e5;
}

input,textarea{
   font-size: 1em;
   color: #666;
   font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ', Meiryo,serif;
   background-color: #FFF;
   border: 1px solid #666;
   width: 30%;
   margin: 10px 0;
}

.txt{
   color: #666;
   margin: 1em;
   padding: 0 0 0 1em;
   border-left: 1px dotted #666;
}

.navi{
   margin: 10px 0;
   padding: 3px;
   border: 1px dotted #666;
   text-align: center;
}

.title{
   color: #ccc;
   font-size: 1.5em;
   font-weight: bold;
   margin: 2em 0;
   text-align: right;
}

.middle {
   vertical-align: middle;
}
/*--------------------------------------------------------
非表示、回り込み解除
--------------------------------------------------------*/

.none{
   display: none;
}

.clearfix:after{
   content: "";
   display: block;
   clear: both;
}

.clearfix{
   overflow: hidden;
   zoom: 1;
}