@charset "utf-8";
/* CSS Document */
.wrapper {
    width: 800px;
    max-width: 800px;
    margin: 0 auto;
}
.body { 
　　font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',"sans-serif";
    width:100%; /*ページ全体の幅は100%と指定する*/	
    text-align:center; /*ページ全体を中央揃えにする*/ 
    font-size: 14px;
    height: 100%;
    margin-bottom: 20px;
   
}
　　
   
        


/*header set*/
header {
    
    
    
  }

/*headee topline*/
#description {
	display: block;
	clear: both;
	float: left;
	height: 20px;
    width: 800px;
    border-top: 10px solid #1A0D81; /*上ボーダーに10px,実線、青色*/
}
#description h1{
	font-size: 12px;
	font-weight: normal;
    padding-left:200px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	width: 600px;
	height: 20px;
	display: block;
}

/*headee logo*/
.logo{
    display: block;
    float: left;
    width: 304px;
    height: 40px;
    background-image: url(../img/logo.jpg);
    margin-right: 136px;
   
}

/*headee 右上のnavi*/
.g-navi{
    display: block;
    width: 256px;
    height: 40px;
    background-image: url(../img/g-navi.jpg);
    float: right;
}
.g-navi ul{
    width: 256px;
    padding-left: 0;
    float: right;
    list-style-type: none;
    font-size: 0;
}
.g-navi ul li{
    width:80px;
    height: 40px;
    display:block;
    text-align: center;
    font-size: 14px;
    float: left;
}
.g-navi ul li:last-child{
    margin-right: 0;
    line-height: 0;
  
}
.g-navi ul li a{
    width: 80px;
    height: 40px;
    text-align: center;
    float: left;
    margin-bottom: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.g-navi ul .clearfix:after { /*clearfixの最後に*/
  content: "";  /*空の内容を挿入*/
  clear: both;
  display: block;
}

/*main_Visual set*/

#main_visual{
    width: 800px;
    height: 240px;
    background-image: url(../img/mv.jpg);
    margin-top: 5px;
    margin-bottom: 30px;
}



/*container set*/

#container {
   display: flex;
    width: 900px;
    padding-bottom: 20px;
   
}

/*side set*/

#mainsaid{
    width: 190px;
	height: 300px;
    display: block;
    float: left;
}


.ad{
    width: 190px;
    height: 125px;
	background : #1A0D81;
	color: white;
    
    
}

.ad h3{
    font-size: 13px;
    background : #1A0D81; 
    width: 185px;
    height: 20px;
    color: white;
    text-align:left;
    padding-top: 8px;
    padding-left: 2px;
    margin-top: 5px;
	
}

.ad p{
    font-size: 13px;
    padding-top: 5px;
	padding-right:10PX;
}
.ad_bth{
    width: 70px;
    height: 30px; 
    margin-bottom:auto;
	padding-top: 5px;
    background-repeat: no-repeat; 
	

}
.ad_bth a{
    width: 70px;
    height: 15px;
    display: block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
	background-image: url("../img/btn_admap.jpg");
	
    
}

/*main set*/

.main {
    width: 590px;
    float:right;
    margin-left: 20px;
	margin-right: 20px;
    font-size: 14px;
    
  
    }

.box_l{
    width: 290px;
    height: 165px;
    float: left;
    display: block;
    border-bottom: solid 1px #E2DFDF;
    margin-bottom: 15px;
    line-height: 0;

}
.box_l p{
    width: 275px;
    padding-top: 5px;
    line-height: 1.5;
    float: left;
  
}
.box_l img{
    width: 290px;
    height: 50px;
    border:0;

}
.box_l a{
    width: 290px;
    height: 50px;
    display: block;
}


 .box_r{
    width: 290px;
    height: 165px;
    float:right;
    display: block;
    border-bottom: solid 1px #E2DFDF;
    margin-left: 10px;
    margin-bottom: 15px;
    line-height: 0;
     
}
.box_r p{
    width: 275px;
    padding-top: 5px;
    line-height: 1.5;
}


.box_r a{
    width: 290px;
    height: 50px;
    display: block;
}

.barj{
    width: 590px;
    height: 40px;
    display: block;
    background: url(../img/h4_bar_topics.jpg);
    clear:right;
    background-repeat: no-repeat;

}
.mp3{
    width: 580px;
    display: block;
    padding-top: 5px;
    line-height: 20px;
    padding-left: 10px;
}


/*----- ここからが重要なフッター下部設定 -----*/

.body{
    height: 100%;   /* ブラウザ画面の高さをめいっぱいに使用 */
}
                    
.wrapper{
    position: relative;      /* フッターを位置指定するための基準設定を、まずフッターの親に書くよ */
    min-height: 100%;        /* 全部囲ってるdiv#containerは、”最低でも”高さ100%（＝ブラウザ画面めいっぱい）にしてね */
                             /* min-heightは最低限の高さを指定するプロパティ。コンテンツ量が増えれば、高さは伸びるよ */
    height: auto !important; /* IE6じゃmin-height使えないからIE6専用にこの行と次の行をこう書くよ */
    height: 100%;
    padding-bottom: 30px;
   
    
}


footer{

    position: absolute;  /* フッターを絶対配置に指定する設定 */
    bottom: 0;           /* フッターを一番下に置くぜ！ */
    width: 800px;
    height: 20px;        /* フッターの高さ */
    background:#1A0D81;
    font-size: 12px;
   
    
  
}
footer ul{
    padding-top: 5px;
    
}
footer ul li{
    display: inline;
    list-style-type:none;
	margin-right:6px;
	padding-left:10px;
	border-left:1px solid #999;
}
footer ul li.HOME{
    border-left:0;
	padding-left:5px;
    
}
footer ul li a{
    color: white;
}
footer ul li a:link,
footer ul li a:visited{
    text-decoration: none;/*下線を消す*/
}
footer ul li a:hover,
footer ul li a:active{
    text-decoration: underline;/*下線を表示する*/
}
footer p{
    font-size:10px;
    color: red;
    width: 290px;
    float:right; 
    height: 20px;
    display:inline;
    padding-top: 3px;
    color: white;

    
    
}

.clearfix:after { /*clearfixの最後に*/
  content: "";  /*空の内容を挿入*/
  clear: both;
  display: block;
}

