﻿@charset "utf-8";

/*-- 初期化 --*/

* {
	margin: 0;
	padding: 0;
}

html {
	overflow: scroll;
}

img, fieldset {
	border: 0;
}

/*-- ＢＯＤＹ、ＴＡＢＬＥの設定 --*/

body {
	font-size: 14px;
	background: url(wsdnyolc_bgentrance.png) no-repeat fixed center;
	font-family: Arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,Meiryo,"ＭＳ Ｐゴシック","MS PGothic";
	line-height: 140%;
	color: #202020;
}

/*-- ハイパーリンクの色（Ｌ：未訪問、Ｖ：既訪問、Ｈ：ポイント中、Ａ：クリック中） --*/

a:link {
	color: #838383;
}

a:visited {
	color: #838383;
}

a:hover {
	color: #626262;
}

a:active {
	color: #c5c5c5;
}

/*-- エントランス --*/

#enter {
    position: fixed;
    top:  50%;
    left: 50%;
    width:  730px;		/* 横幅 */
    height: 530px;		/* 高さ */
    margin-left: -365px;	/* マイナス「横幅÷2」 */
    margin-top:  -265px;	/* マイナス「高さ÷2」 */
    overflow: fixed;
}
 
#enter a {
    width: 730px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
 
    /* transition */
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
 
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
#enter a:hover {
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    opacity: 1.0;
}
 
/* menu icon (span tag) */
#enter span {
    width: 730px;
    height: 505px;
    display: block;
    margin-bottom: 5px;
    background: #000;
 
    /* rounded corners */
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
 
    /* transition */
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}
#enter a:hover span {
    background-color: #fff;
}

/*-- 本文 --*/

#contents {
	margin: 15px 40px 15px 0;
	padding: 50px;
}

#contents p {
	text-align: right;
	white-space: nowrap;
}