@charset "UTF-8"; 		/* 文字コードセット */

 
/* 全体構造
---------------------------------------------------- */
* {
	margin: 0px; /* 各ブラウザの独自解釈をリセット */
	padding: 0px;
}
html{overflow-y:scroll;height:100%;}
body{
	background:#040000; /* 背景 */
	height:100%; /* 縦100% */
	text-align:center; /* IE5.5以前用中央揃え */
	font-size:12px;
	color:#fff;
	font-family:"ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif,Osaka, "ヒラギノ角ゴ Pro W3";
text-shadow: #040000 0 0 0;
}

#wrapper{
	width:830px; /* 基本ページ幅 */
	margin:0px auto; /* 新しいブラウザ用中央揃え */
	text-align:left;  /* 内容を左揃えに戻す */
	line-height:1.4;
	padding-bottom:20px;
}
#wrapper2{
	width:810px;
}
body > #wrapper {height: auto;}
 
/* リンク
---------------------------------------------------- */
a {
/**/
 overflow: hidden;
/**/
}

a:link {
	color:#fff; /* リンクの色 */
	text-decoration:none;
	background:transparent; /* 背景透明 */
}
a:visited {
	color:#fff; /* 訪問済みリンクの色 */
	text-decoration:none;
	background:transparent; /* 背景透明 */
}
a:hover, a:active {
	color:#fff; /* マウスオーバー、アクティブリンクの色 */
	text-decoration:none;
	background:transparent; /* 背景透明 */
}

a img {
  border:none;
  color: #ffffff;
  background:transparent;	/* 背景透明 */
}

/* #header */
#header{
	width:731px;
}
#header p#logo{
	width:122px;
	float:left;
	padding-top:20px;
}
#header h1{
	width:354px;
	float:left;
}

/* #menu（下層のみ） */
#cm-page #header #menu,
#data-page #header #menu{
	float:left;
	padding-top:71px;
}

/* #copyright */
#copyright{
	font-size:10px;
	font-family:Verdana,"ＭＳ Ｐゴシック",  Arial, Helvetica, sans-serif,Osaka, "ヒラギノ角ゴ Pro W3";
}

/* index.html のみ
---------------------------------------------------- */

#top-page #wrapper{
	background:url(../images/p01_bg.jpg) no-repeat right top; /* 背景 */
}
#top-page #header{
	margin-bottom:43px;
}

#top-page #menu{
	margin:25px 0 330px 0;
}
#top-page #menu img{
	margin:0 3px 0 0;
}

/* cm.html のみ
---------------------------------------------------- */

#movie{
	width:561px;
	padding-bottom:88px;
	float:left;
}
ul#movie-list{
	width:239px;
	float:right;
}
ul#movie-list li{
	width:237px;
	text-align:center;
	list-style:none;
	font-size:14px;
}
ul#movie-list li a{
	display:block;
	text-align:center;
	list-style:none;
	border:1px solid #1B1919;
	padding:8px 0;
	margin-bottom:10px;
}
ul#movie-list li a.color,
ul#movie-list li a:hover,
ul#movie-list li a:active {
	background:#a57a43;
}

/* data.html のみ
---------------------------------------------------- */
div.box01{
	margin:30px 0 27px 0;
}
.box01 .left{
	width:395px;
	float:left;
}
.box01 .right{
	width:395px;
	float:right;
}
.box01 .txt{
	width:268px;
	float:left;
}
.box01 .img{
	float:right;
}

.box02{
	background:#f1ebe1;
	color:#333;
	padding:20px;
}
.box02 a:link {
	color:#333; /* リンクの色 */
	text-decoration:underline;
	background:transparent; /* 背景透明 */
}
.box02 a:visited {
	color:#333; /* 訪問済みリンクの色 */
	text-decoration:underline;
	background:transparent; /* 背景透明 */
}
.box02 a:hover, a:active {
	color:#333; /* マウスオーバー、アクティブリンクの色 */
	text-decoration:none;
	background:transparent; /* 背景透明 */
}
.box02 .left{
	width:770px;
	float:left;
}
.box02 .right{
	width:770px;
	float:right;
}
.box02 h3{
	margin:18px 0 10px 0;
	color:#886437;
	font-weight:bold;
	font-size:12px;
	border-left:2px solid #a57a43;
	padding-left:8px;
	line-height:1.1;
}

.bottom-data{
	text-align:center;
	margin:10px 0 25px 0;
}
.link-top{
	font-size:14px;
	margin-left:0px;
}
p.links{
	width:810px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0px;
}
p.links img{
	float:left;
}
.kanji{
	vertical-align:bottom;
}

/* 汎用class
---------------------------------------------------- */
.bold{
	font-weight:bold;
}
.color-red{
	color:#ff0000;
}
.color-gold{
	color:#a57a43;
}
.t-right{
	text-align:right;
}
.t-size10{
	font-size:10px;
}
.mgn10-0{
	margin:10px 0;
}
.mgn-t3{
	margin-top:3px;
}
.mgn-b3{
	margin-bottom:3px;
}
.mgn-b5{
	margin-bottom:5px;
}
.mgn-b10{
	margin-bottom:10px;
}
.mgn-b15{
	margin-bottom:15px;
}
.mgn-b20{
	margin-bottom:15px;
}



/* フロート対策
---------------------------------------------------- */
.box-clear:after{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.box-clear{
    display:inline-block;  /* MAC IE用　*/
    min-height:1%;  /* IE 7用 */
}
/*--MAC IEは非適用→ \*/
* html .box-clear{height: 1%;}
.box-clear{display: block;}
/*--ここまでMAC IEは非適用 */
