
/* ワンダー沖縄　動画メニュー用*/

/* 
目次
01 CSSの初期化
02 Wrap
03 ヘッダー
04 内容
05 フッター


10 clear
11 clearfixハック
 */

/* 
01 css初期化 */
*{
}

body {
	background-color:#FFFFFF;
	font-size:100%;
	font-style:normal;
    line-height:1.3em;
	letter-spacing:normal;
	margin:0px;
	padding:0px;
}

head,html,body,h1,h2,h3,h4,h5,div,span,p,ol,ul,li,img,table,th,tr,td,strong,a,address {
	font-family:'ＭＳ Ｐゴシック', Osaka,'ヒラギノ角ゴ Pro W3',sans-serif;
	font-style:normal;
	margin:0px;
	padding:0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/* 
02　wrap */
#wrap {
	width: 740px;
	text-align: center;
	background-position: center;
	margin-right: auto;
	margin-left: auto;
}


/* 
03　ヘッダー */
#header{
	width:740px;
	margin:0px;
	padding:0px;
	text-align: center;
	clear: both;
	color: #666666;
	height: 100px;
}

#header_logo{
	width:110px;
	float: left;
	height: 100px;
}

#header_ttl{
	width:630px;
	float: right;
	height: 100px;
}

/* 
04　内容 */
#player{
	width:300px;
	height: 30px;
	margin-right: 20px;
	margin-left: 420px;
	margin-top: 30px;
}

#windows{
	width:150px;
	height: 40px;
	float: left;
}
#real{
	width:150px;
	height: 40px;
	float: right;
}

.movie{
	width:740px;
	height: 70px;
	margin-top: 10px;
	font-size: 0.9em;
}

.box1{
	width:120px;
	height: 70px;
	float: left;
	text-align: center;
	vertical-align: middle;
}

.box1 img{
	border: 1px solid #999999;
}
.box2{
	width:300px;
	height: 70px;
	float: left;
	text-align: left;
}

.box3{
	width:150px;
	height: 70px;
	float: left;
}

.box4{
	width:150px;
	height: 70px;
	float: left;
	margin-right: 20px;
}

#wrap .movie .box3 ul{
    padding: 0px;
	margin: 0px;
}
#wrap .movie .box3 li{
	margin-top: 0px;
	margin-left: 30px;
	list-style-type: none;
	padding: 0px;
	text-align: left;
	vertical-align: middle;
	height: 10px;
	margin-bottom: 10px;
}
#wrap .movie .box4 ul{
    padding: 0px;
	margin: 0px;
}
#wrap .movie .box4 li{
	margin-top: 0px;
	margin-left: 30px;
	list-style-type: none;
	padding: 0px;
	text-align: left;
	vertical-align: middle;
	height: 10px;
	margin-bottom: 10px;
}

/*
05 フッター */
#footer{
	width:740px;
	padding:0px;
	text-align: center;
	clear: both;
	color: #666666;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 0.8em;
}



/*
10 clear */
.clear {
	clear:both;
	margin: 0px;
	padding: 0px;
}

/*
11 clearfixハック */
.clearfix {/*for IE 5.5-7*/
    zoom:1;
}
div.clearfix:after{/*for modern browser*/
    content:".";
    display: block;
    height:0px;
    clear:both;
    visibility:hidden;
}

/* Hides from IE-mac \*/
* html .clearfix {height:1%;}
.clearfix {display:block;}

