@charset "utf-8";
/* =================================================
       --------------------
           base.css 
       -------------------
           サイト全体の共通スタイル
  
================================================= */

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p,
header, hgroup, section, article, aside, hgroup, footer, figure, figcaption, nav ,table, th, td{
    margin: 0;
    padding: 0;
    font-size: 100%;
}

html{
	/* overflow:scroll;
	overflow: -moz-scrollbars-vertical; Firefoxが先行実装している値 
	overflow-x: scroll; /* Firefoxで横スクロールバーが表示されない問題を回避 */
	overflow-y:scroll;
	height: 100%;
}

body {
    font-family:"メイリオ","Meiryo","ＭＳ Ｐゴシック","ヒラギノ角ゴ Pro W3 / W6","Hiragino Kaku Gothic Pro",Osaka,sans-serif;
    font-size: 12px;
    line-height: 1.22;
	height: 100%;
	position:relative; 
	top: -30px;
	color:#FFFFFF;
}

#container {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	width: 900px;
	margin:0 auto;
	position: relative; z-index:1;
}

body > #container {
     height:auto;
}

#my_contents {
	width: 100%;
	margin: 0px auto;
	text-align: left;
	padding-bottom: 90px;
}


article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary { 
    display:block;
}

img {
    border: 0;
	vertical-align:top;
}

ul,dl,ol{
    list-style: none;
    display: block;
	text-indent:0;
}

li{ 
    list-style:none;
}

table {
    border-spacing: 0;
	border-collapse:collapse;
	font-size:inherit;
	font:100%;
}

th,td{
	text-align:left;
	vertical-align:top;
}

caption{text-align:left;}

div, h2, h3, h4, h5, h6, p, li, dt, dd, pre, code, blockquote, th, td{
	word-break: break-all;
	padding: 0 0 0px 0;
}

p,ul,li{
　  display:block;
}

input,select,textarea{
	font-size:100%;
	font-family:Verdana, Helvetica, sans-serif;
}

/* テキスト太字 */
.bold{
	font-weight:bold;
}

/* リンクカラー */
a { color: #FFFFFF;text-decoration:none;}
a:link {color:#FFFFFF;text-decoration:none;}
a:visited {color:#FFFFFF;text-decoration:none;}
a:hover {color:#FFFFFF;text-decoration:underline;}
a:active {color:#FFFFFF;text-decoration:none;}


/* 文字サイズ */
.fs10{
	font-size:10px;
}
.fs14{
	font-size:14px;
}
.fs16{
	font-size:16px;
}

.fs18{
	font-size:18px;
}

.fs20{
	font-size:18px;
}

/* 文字カラー */
.rule{
	color:#3366cc;
}
.note{
	color:#ff3300;
}
.faq{
	color:#66ccff;
}

/* float解除：clearfix */
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}


/*【全ページ共通】ユーザーヘッダ
===============================================================================================*/
#user_header{
	width:auto;
	height:30px;
	background:url(../img/base/bg_user_header.jpg);
	background-repeat:repeat-x;
	position:relative; z-index:2;
	top: 30px;
}
.user_header_inner{
	width:900px;
	margin:0 auto 0 auto;
	overflow:hidden;
	padding:8px 0 0 0;
}

/* バー左側：ユーザー名,キャッチコピーなど */
.user_name_box{
	float:left;
	text-align:left;
	font-size:12px;
	color:#FFFFFF;
	letter-spacing:0.02em;
}
/* バー左側：会員番号 */
.user_name_box .member_no{
	text-align:left;
	font-size:10px;
	color:#FFFFFF;
	letter-spacing:0.02em;
}

/* バー右側：新規登録,ログイン,MYページ,ログアウト　*/
#mypage_box{
	width:auto;
	text-align:right;
	margin-left:auto;
	float:right;
}
#mypage_box_inner{	
    width:auto;
	text-align:right;
}
#mypage_box_inner a:link    {color:#0099FF; text-decoration:underline;}
#mypage_box_inner a:visited	{color:#0099FF; text-decoration:underline;}
#mypage_box_inner a:hover	{color:#00CCFF; text-decoration:underline;}

/* バー右側：入会日,退会日,更新手続き */
#mypage_box_inner .join_date{
	text-align:left;
	font-size:10px;
	color:#FFFFFF;
	letter-spacing:0.02em;
}
/* 更新手続きを赤字で表示 */
#mypage_box_inner .join_date  a:link    {color:#FF0000; text-decoration:underline;}
#mypage_box_inner .join_date  a:visited	{color:#FF0000; text-decoration:underline;}
#mypage_box_inner .join_date  a:hover	{color:#FF9900; text-decoration:underline;}


/*entry
===============================================================================================*/

.entryPointArea {
	text-align:center;
	width:auto;
	padding:16px 0;
	background:#036eb8;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	margin:0 0 12px;
}
.entryPointArea img {
	margin:0 auto;
}
.entryPointArea ul {
	margin:8px 0 0 19px;
}
.entryPointArea ul li{
	float:left;
	margin-right:9px;
}

.entryPointArea ul li.marginNone{
	margin:0;
}

.entryPointArea a:hover img{
opacity:0.8;
filter: alpha(opacity=80);        /* ie lt 8 */
-ms-filter: "alpha(opacity=80)";  /* ie 8 */
-moz-opacity:0.8;                 /* FF lt 1.5, Netscape */
-khtml-opacity: 0.8;              /* Safari 1.x */
zoom:1;
}

/* 【共通】メール送信エラー解除のお願い
===============================================================================================*/
#mailerrorInfo{
	text-align:center;
	line-height:1.3em;
	background: #fff78c;
	position:relative;
	top:30px;
}
#errorinfoInner{
	display:ineline-block;
	margin:0 auto;
	padding:8px 0;
	color:#f00;
}
#errorinfoInner .tit{
	padding:0 0 3px;
	font-weight:bold;
}
#errorinfoInner .text{
	font-size:11px;
}
@media screen and (max-width: 1024px){

#errorinfoInner{
	width:95%;
}
#errorinfoInner .text{
	text-align:left;
}
}
@media screen and (max-width: 580px){
}

#errorInfo{
	color:#f00;
	font-size:11px;
}
