@charset "UTF-8";
/* CSS Document */
/*//////////////////////////////////////////////////

Title : reset.css
For   : Resetting styles
        (Format browser's default styles and setting HTML elements styles)

Created       : 2008-00-00
Last Modified : 2008-00-00

Copyright (C) HOGEHOGE Co,. Ltd. All right reserved.

----------------------------------------

Content

    0. Yahoo UI Library:
         Reset CSS, Fonts CSS
    1. HTML, Body, Anchor
    2. Heading, Paragraph
    3. List
    4. Table
    5. Forms
    6. Quotation
    7. Others
    8. For IE7 Page Zoom

//////////////////////////////////////////////////*/


/* ---------------------------------------(=0)
    0. Yahoo UI Library:
       Reset CSS, Fonts CSS
   ---------------------------------------- */
/*
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.4.0
*/
html{color:#000;background:#FFF;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q:before,q:after{content:'';}
abbr,acronym {border:0;font-variant:normal;}
/* to preserve line-height and selector appearance */
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
/*because legend doesn't inherit in IE */
legend{color:#000;}


/*
Copyright (c) 2007, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.4.0
*/
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}
table {font-size:inherit;font:100%;}
/**
 * Bump up IE to get to 13px equivalent
 */
pre,code,kbd,samp,tt {font-family:monospace;*font-size:108%;line-height:100%;}


/* ---------------------------------------(=1)
    1. HTML, Body, Anchor
   ---------------------------------------- */
html {}

body {
    margin: 0;
    padding: 0;
    background: #ffffff url(/images/common/bcg_body.jpg) no-repeat center top;
    color: #000000;
    font-family:
        "ヒラギノ角ゴ Pro W3",
        "ＭＳ Ｐゴシック",
        sans-serif;
    line-height: 1.5;
}

*+html body {
    font-family:
        "ＭＳ Ｐゴシック",
        "ヒラギノ角ゴ Pro W3",
        sans-serif;
}

* html body {
    font-family:
        "ＭＳ Ｐゴシック",
        "ヒラギノ角ゴ Pro W3",
        sans-serif;
}


a:link,
a:visited { color: #FFFFFF; text-decoration: underline; }
a:hover,
a:active  { color: #FFFFFF; text-decoration: none;}

/*a:link,
a:visited { color: #003366; }
a:hover,S
a:active  { color: #003366; text-decoration: none; }*/

/* NOTE!
:hoverにbackgroundを指定すると親要素が拡張するバグ（IE6以下）
http://cssbug.at.infoseek.co.jp/detail/winie/b102.html
*/


/* ---------------------------------------(=2)
    2. Heading, Paragraph
   ---------------------------------------- */
/*
h1, h2, h3, h4, h5, h6 {
    clear: both;
}
*/

/*
p {
    margin: 1em 0;
    padding: 0;
}
*/


/* ---------------------------------------(=3)
    3. List
   ---------------------------------------- */
/*
ul, ol, dl {
    clear: both;
    margin-top: 1em;
    margin-right: 1em;
    margin-bottom: 1em;
}
*/

/*
li, dd {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
*/

/*
dt {
    clear: both;
    font-weight: bold;
}
*/


/* ---------------------------------------(=4)
    4. Table
   ---------------------------------------- */
/*
table {
    clear: both;
    width: 100%;
    overflow: auto;
    margin: 1em 0;
    empty-cells: show;
    }

caption {}
thead {}
tfoot {}

tbody {}

colgroup {}
col {}

th {
    vertical-align: top;
    }

td {
    vertical-align: top;
    }

thead th {}
tbody th {}
tfoot th {}
*/

/* ---------------------------------------(=5)
    5. Forms
   ---------------------------------------- */
/*
form {}
fieldset {
    margin: 1em 0;
    padding: 1em;
    border: 0;
    }
*/

legend { display: none; }

/*
input, textarea, select { font-size: 99%; }
textarea { font-family: "ＭＳ ゴシック", monospace; }
*/

label { cursor: pointer; }

button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-family:
        "ヒラギノ角ゴ Pro W3",
        "ＭＳ Ｐゴシック",
        sans-serif;
}

/*
optgroup {}
option {}
*/

/* ---------------------------------------(=6)
    6. Quotation
   ---------------------------------------- */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/*
blockquote {}
*/

/*
q    { border-bottom: 1px dotted #d90000; background: #ffeeee; }
cite { font-style: normal; }
*/

/* ---------------------------------------(=7)
    7. Others
   ---------------------------------------- */

/*  Inline-level elements
   ------------------------------- */
/*
address {}
*/

img { vertical-align: top; }

/*
object, iframe {}
*/

/*
em {}
*/

strong { font-weight: bold; }

/*
abbr, acronym {
    border-bottom: 1px dotted #fdfdfd;
}
*/

/*
dfn {}
code, samp, kbd { font-family: "ＭＳ ゴシック", monospace; }
var { font-style: italic; }

ins {}
del {}
param {}
sup {}
sub {}
*/

/*  Block-level elements
   ------------------------------- */
hr { display: none; }
pre { overflow: auto; font-family: "ＭＳ ゴシック", monospace; }


/* ---------------------------------------(=8)
    8. For IE7 Page Zoom
   ---------------------------------------- */
body,
br { letter-spacing: 0; }


/*---------------------------------------------------------*/

body { 
	text-align: center; 
	background:url(../img/bg_side.gif) repeat;
	margin: 0px;
	color:#FFFFFF;
}

div#wrapper { 
	width:950px;
	margin:0 auto;
	text-align: left;
	background-color:#000000;
}

div#content {
	padding-bottom:10px;
}

div#content p.txtColRed{
	color:#FF0000;
	text-align:center;
	padding:2px;
	font-weight:bold;
}

div#contL {
	position:relative;
	top:0px;
	left:0px;
	float:left;
	width:494px;
	padding-bottom:20px;
}

div#contL p.detail{
	width:222px;
	position:absolute;
	bottom:150px;
	right:5px;
	top:180px;
	height:34px;
}

div#contL div#rakugakiBox {
	position:relative;
	top:0px;
	left:0px;
	padding-left:20px;
	margin-top:10px;
}

div#contL div#rakugakiBox p.rakugaki{
	width:300px;
	position:absolute;
	top:0px;
	right:15px;
}

div#contL p.detail a:hover{
	padding:2px 0px 0px 2px;
	margin-top:2px;
	height:32px;
}

div#contR {
	float:left;
	width:456px;
	padding-bottom:20px;
}

div#contR p.kikenImg {
}
/*----------   #live24Box    -----------*/
div#live24Box {
	width:950px;
}
div#live24Box tr {
	width:950px;
}

div#live24Box td {
	width:185px;
	padding: 30px 22px;
}

div#live24Box p.livePhoto {
	width:185px;
}

div#live24Box p.liveTitle {
	background-color:#FF0000;
	font-size:105%;
	width:185px;
	padding:2px 0px;
	margin-top:5px;
	
}

div#live24Box p.liveSubTxt {
	font-size:95%;
	padding:8px 0px;
	width:185px;
}

/*----------   #wishBox    -----------*/
div#wishBox {
	width:950px;
	padding-bottom:45px;
}

div#wishBox ul {
	float:left;
	width:350px;
	padding:36px 60px 27px 60px;
}

div#wishBox ul li.wishList{
	background:url(../img/icon_star.gif) left center no-repeat;
	padding:5px 0 5px 12px;
}

div#wishBox p span{
	float:right;
	padding-right:40px;
}

/*----------   #newsBox    -----------*/
div#newsBox {
	clear:both;
	width:950px;
	padding:40px;
}

div#newsBox dl{
	
}

div#newsBox dt{
	font-size:140%;
	color:#FF0000;
	text-decoration:none;
	
}

div#newsBox dd{
	padding-bottom:10px;
	
}

/*----------   #aboutBox    -----------*/
div#aboutBox {
	clear:both;
	text-align:center;
	width: 950px;
}

div#aboutBox p.txtOm {
	padding-bottom:30px;
}


/*----------   #footer    -----------*/
div#footer {
	clear:both;
	background:url(../img/bg_footer.gif) repeat;
	margin:0 auto;
	padding:10px 0;
	width:950px;
	text-align:justify;
	font-size:90%;
}

div#footer dt {
	float:left;
	padding-left:17px;
}

div#footer dd ul {
	margin-left:200px;
	padding-right: 20px;
}

div#footer dl{
	clear:both;
	overflow:hidden;
	width:950px;
}

div#footer li {
	display: inline;
	padding-right:15px;
}

/*----------   address    -----------*/
address {
	color:#FFFFFF;
	padding-right:20px;
	text-align:right;
	font-size:90%;
	padding-top:10px;
}
