@charset "utf-8";
/*-----------------------------------------------------------------------------*/
/* 基本スタイル */
/*-----------------------------------------------------------------------------*/
body {
	width: 100%;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	color: #555;
}

/* for WinIE6 WinIE7以外 */
html>/**/body {
	overflow-y: scroll;
}

/*-----------------------------------------------------------------------------*/
/* 見出し */
/*-----------------------------------------------------------------------------*/
h1 {
	font-size: 153.9%;
}

h2 {
	font-size: 138.5%;
}

h3 {
	font-size: 123.1%;
}

h4 {
	font-size: 108%;
}

h5 {
	font-size: 93%;
}

/*-----------------------------------------------------------------------------*/
/* 文字 */
/*-----------------------------------------------------------------------------*/
strong {
	font-weight: bold;
}

address {
	font-size: 108%;
	font-style: normal;
}

/*-----------------------------------------------------------------------------*/
/* リンク */
/*-----------------------------------------------------------------------------*/
a:link {
	color: #03A6E3;
}

a:visited {
	color: #03A6E3;
}

a:hover {
	color: #03A6E3;
	text-decoration: none;
}

a:active {
	color: #03A6E3;
}

/*-----------------------------------------------------------------------------*/
/* テーブル */
/*-----------------------------------------------------------------------------*/
th,
td {
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
}

/*-----------------------------------------------------------------------------*/
/* 画像(image) */
/*-----------------------------------------------------------------------------*/
/* 対応ブラウザにWinIE6が含まれる場合 */
img {
	vertical-align: top;
	vertical-align: bottom;
}

/*-----------------------------------------------------------------------------*/
/* 括弧数字リスト */
/*-----------------------------------------------------------------------------*/
ol.num01 {
	margin-bottom: 1em;
	margin-left: 5em;
}

ol.num01 li {
	position: relative;
	margin-bottom: 0.5em;
	line-height: 1.2;
	list-style: none;
}

ol.num01 li span {
	position: absolute;
	left: -4em;
	top: 0;
}

/* For WinIE6 */
* html ol.num01 li span {
	top: -0em;
}

/* For WinIE6 */
*:first-child+html ol.num01 li span {
	top: -0em;
}

ol.num02 {
	margin-bottom: 1em;
	margin-left: 3em;
}

ol.num02 li {
	position: relative;
	margin-bottom: 0.5em;
	line-height: 1.2;
	list-style: none;
}

ol.num02 li span {
	position: absolute;
	left: -2em;
	top: 0;
}

/* For WinIE6 */
* html ol.num02 li span {
	top: -0em;
}

/* For WinIE6 */
*:first-child+html ol.num02 li span {
	top: -0em;
}

/*---------------------------------------------------------------------------------
ボタンデザイン
----------------------------------------------------------------------------------*/
.btnGray, .btnBlack, .btnBlue, .btnYellow {
	display: inline-block;
	padding: 0.5em 3em;
	cursor: pointer;
	text-decoration: none;
	border-radius: 2px;
	font-weight: bold;
	margin-bottom: 4px;
}
.btnGray {
	color: #444;
	border:1px solid #444;
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF),  color-stop(0.01, #FFF),  color-stop(0.99, #DDD),  to(#CCC));
	background: -moz-linear-gradient(top, #FFF 0%, #FFF 1%, #DDD 99%, #CCC);
	background: -ms-linear-gradient(top, #FFF, #CCC);
}
.btnBlack {
	color: #fff;
	text-shadow: 1px -1px 1px rgba(0,0,0,0.25);
	border:1px solid #000;
	background: -webkit-gradient(linear, left top, left bottom, from(#444),  color-stop(0.01, #444),  color-stop(0.99, #000),  to(#000));
	background: -moz-linear-gradient(top, #444 0%, #444 1%, #000 99%, #000);
	background: -ms-linear-gradient(top, #444, #000);
}
.btnBlue {
	color: #FFF;
	text-shadow: 1px -1px 1px rgba(0,0,0,0.25);
	border: 1px solid #3D5594;
	background: -webkit-gradient(linear, left top, left bottom, from(#4967B2),  color-stop(0.01, #4967B2),  color-stop(0.99, #3D5594),  to(#3D5594));
	background: -moz-linear-gradient(top, #4967B2 0%, #4967B2 1%, #3D5594 99%, #3D5594);
	background: -ms-linear-gradient(top, #4967B2, #3D5594);
}
.btnYellow {
	color: #000;
	text-shadow: 1px -1px 1px rgba(0,0,0,0.25);
	border: 1px solid #EBB61A;
	background: -webkit-gradient(linear, left top, left bottom, from(#FAD664),  color-stop(0.01, #FAD664),  color-stop(0.99, #F8BF0E),  to(#F8BF0E));
	background: -moz-linear-gradient(top, #FAD664 0%, #FAD664 1%, #F8BF0E 99%, #F8BF0E);
	background: -ms-linear-gradient(top, #FAD664, #F8BF0E);
}
.btnGray:hover, .btnBlack:hover, .btnBlue:hover, .btnYellow:hover {
	opacity:0.8;
	filter:alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}
.btnGray.disabled,
.btnBlack.disabled,
.btnBlue.disabled,
.btnYellow.disabled,
.btnGray[disabled],
.btnBlack[disabled],
.btnBlue[disabled],
.btnYellow[disabled],
fieldset[disabled] .btnGray,
fieldset[disabled] .btnBlack,
fieldset[disabled] .btnBlue,
fieldset[disabled] .btnYellow {
	font-weight: normal;
	color: #666;
	text-shadow: 0 0 0 rgba(0,0,0,0.25);
	border:1px solid #666;
	background: -webkit-gradient(linear, left top, left bottom, from(#CCC),  color-stop(0.01, #CCC),  color-stop(0.99, #CCC),  to(#CCC));
	background: -moz-linear-gradient(top, #CCC 0%, #CCC 1%, #111 99%, #CCC);
	background: -ms-linear-gradient(top, #CCC, #CCC);
	cursor: not-allowed;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.btnIntroduce {
	width: 360px;
	font-size: 120%;
	padding: 0.5em 3em;
	border-radius: 10px;
}

/*-----------------------------------------------------------------------------*/
/* フォームパーツ */
/*-----------------------------------------------------------------------------*/
input[type="text"],
input[type="password"] {
	position: relative;
	top: 0;
	padding: 1px;
	margin: 2px 0;
	border: 1px solid #BBB;
	color: #555;
	vertical-align: middle;
	-moz-appearance: none !important;
}

input[type="select"] {
	position: relative;
	top: 1px;
	margin: 0;
}

select {
	vertical-align: middle;
}

input[type="checkbox"] {
	position: relative;
	top: 1px;
	margin: 0;
}

label {
	vertical-align: middle;
	cursor: pointer;
}

/*-----------------------------------------------------------------------------*/
/* フォームパーツ長さ */
/*-----------------------------------------------------------------------------*/
.textBoxLength20 {
	width: 20px;
}

.textBoxLengthSS {
	width: 40px;
}

.textBoxLengthS {
	width: 60px;
}

.textBoxLength80 {
	width: 80px;
}

.textBoxLengthM {
	width: 120px;
}

.textBoxLengthL {
	width: 200px;
}

.textBoxLength300 {
	width: 300px;
}

.textBoxLengthLL {
	width: 400px;
}

.textBoxLengthXL {
	width: 700px;
}

/*-----------------------------------------------------------------------------*/
/* フォームパーツ：入力モード */
/*-----------------------------------------------------------------------------*/
.imeAuto {
	ime-mode: auto;
}

.imeOn {
	ime-mode: active;
}

.imeOff {
	ime-mode: inactive;
}

.imeDis {
	ime-mode: disabled;
}

/*-----------------------------------------------------------------------------*/
/* <P>タグ用 */
/*-----------------------------------------------------------------------------*/
/* 行間120% */
.pType_12x120,
.pType_14x120,
.pType_16x120 {
	line-height: 1.2;
}

/* 行間140% */
.pType_12x140,
.pType_14x140,
.pType_16x140 {
	line-height: 1.4;
}

/* 行間160% */
.pType_12x160,
.pType_14x160,
.pType_16x160 {
	line-height: 1.6;
}

/* 行間180% */
.pType_12x180,
.pType_14x180,
.pType_16x180 {
	line-height: 1.8;
}

/* 文字サイズ12px */
.pType_12x120,
.pType_12x140,
.pType_12x160,
.pType_12x180 {
	font-size: 93%;
}

/* 文字サイズ14px */
.pType_14x120,
.pType_14x140,
.pType_14x160,
.pType_14x180 {
	font-size: 108%;
}

/* 文字サイズ16px */
.pType_16x120,
.pType_16x140,
.pType_16x160,
.pType_16x180 {
	font-size: 123.1%;
}

/* 文字サイズ18px */
.pType_18x120,
.pType_18x140,
.pType_18x160,
.pType_18x180 {
	font-size: 138.5%;
}

/*-----------------------------------------------------------------------------*/
/* コンテンツ全体 */
/*-----------------------------------------------------------------------------*/
#allArea {
	width: 100%;
	background: #FFF url(../img/back_header.gif) repeat-x left top;
}

/*-----------------------------------------------------------------------------*/
/* wrapper */
/*-----------------------------------------------------------------------------*/
#wrapper {
	/*width: 78%;*/
	width: 780px;
	padding-right: 1%;
	padding-left: 1%;
	margin-right: auto;
	margin-left: auto;
}

#wrapperLiquid {
	width: 98%;
	padding-right: 1%;
	padding-left: 1%;
	margin-right: auto;
	margin-left: auto;
}

/*-----------------------------------------------------------------------------*/
/* 汎用floatLAYOUT */
/*-----------------------------------------------------------------------------*/
#leftArea {
	float: left;
}

#rightArea {
	width: auto;
}

/*-----------------------------------------------------------------------------*/
/* ヘッダー */
/*-----------------------------------------------------------------------------*/
#headerArea {
	height: 130px;
	width: 100%;
	margin-bottom: 20px;
}

#jafLogoAreaLeft {
	height: 24px;
	width: 100%;
	margin-bottom: 1em;
	border-bottom: medium solid #CCC;
}

#jafLogoArea {
	height: 24px;
	width: 100%;
	text-align: right;
}

#siteLogoArea {
	height: 74px;
	width: 100%;
	overflow: hidden;
}

#siteLogoArea #leftArea {
	width: 310px;
}

#siteLogoArea #rightArea {
	/*margin-left: 310px;*/
	float: right;
	text-align: right;
}

/* For WinIE6 */
* html #siteLogoArea #rightArea {
}

#pageTitleArea {
	clear: both;
	height: 27px;
	width: 100%;
	padding: 3px 0;
	min-width: 100%;
}

/* for WinIE6 */
* html #pageTitleArea {
	height: 33px;
}

/* for MacSafari */
html[xmlns*=""] body:last-child #pageTitleArea p {
	letter-spacing: -5em;
}

#pageTitleArea img {
	margin-right: 5px;
	vertical-align: middle;
}

#pageTitleArea .label {
	box-sizing: border-box;
	display: inline-block;
	height: 23px;
	padding: 2px 5px;
	margin-right: 5px;
	background-color: #333;
	color: #EEE;
	font-weight: bold;
	vertical-align: middle;
	line-height: 19px;
}

/*-----------------------------------------------------------------------------*/
/* フッター */
/*-----------------------------------------------------------------------------*/
#footerArea {
	width: 100%;
	padding: 1em 0;
	margin-top: 5em;
	color: #FFFFFF;
	text-align: center;
	background: #4967B2;
}

/*-----------------------------------------------------------------------------*/
/* 汎用サブボックス */
/*-----------------------------------------------------------------------------*/
.subBox {
	padding: 0.5em;
	margin: 1em 0;
}

.subBox dl {
	clear: both;
	overflow: hidden;
	border: none;
	font-size: 93%;
}

.subBox dt {
	float: left;
	width: 15em;
	padding-top: 0.5em;
}

/* for WinIE6 */
* html body .subBox dt {
	display: inline-block;
}

.subBox dd {
	padding: 0.5em 0;
	margin-left: 16em;
}

/* for WinIE6 */
* html body .subBox dd {
	display: inline-block;
}

/*-----------------------------------------------------------------------------*/
/* 汎用ページサブタイトルエリア */
/*-----------------------------------------------------------------------------*/
.subTitleArea {
	margin: 1.5em 0;
	width: 100%;
}

.subTitleArea h3 {
	margin-bottom: 1em;
	text-align: center;
}

.subBtnArea {
	width: 100%;
	margin: 0.5em 0 2em 0;
}

#subBtnArea1 {
	width: 100%;
	margin: 0.5em 0 2em 0;
}

#subBtnArea2 {
	width: 100%;
	margin: 0.5em 0 2em 0;
}

#subBtnArea3 {
	width: 100%;
	margin: 0.5em 0 2em 0;
}

#subBtnArea4 {
	width: 100%;
	margin: 0.5em 0 2em 0;
}

#subBtnArea5 {
	width: 100%;
	margin: 0.5em 0 2em 0;
}

/*-----------------------------------------------------------------------------*/
/* 汎用コンテンツエリア */
/*-----------------------------------------------------------------------------*/
#contentsArea {
	width: 100%;
	margin-bottom: 1em;
	overflow: hidden;
}

.contentsBox {
	width: 94%;
	padding: 2%;
	border: 2px solid #CCC;
	border-radius: 10px;
}

#contentsArea p {
	margin-bottom: 1.5em;
}

#titleArea {
	text-align: center;
}

/*-----------------------------------------------------------------------------*/
/* フォーム画面 */
/*-----------------------------------------------------------------------------*/
#commentArea {
	margin-bottom: 2em;
}

#commentArea .subBox {
	border: 1px solid #C33;
	font-weight: bold;
	color: #C00;
	background-color: #FFC;
}

#formArea {
	position: relative;
	width: 100%;
	padding-bottom: 20px;
	margin-bottom: 1em;
	overflow: hidden;
}

#formArea h4 {
	margin-top: 1em;
}

#formArea dl {
	clear: both;
	overflow: hidden;
	border-bottom: 1px dotted #CCC;
}

#formArea dt {
	float: left;
	width: 15em;
	padding: 0.5em;
	font-size: 108%;
}

#formArea dt.mustEntry {
	background: transparent url(../img/icon_must.gif) no-repeat center right;
}

#formArea dt.normalEntry {
	background: transparent url(../img/icon_arbitrary.gif) no-repeat center right;
}

/* for WinIE6 */
* html body #formArea dt {
	display: inline-block;
}

#formArea dd {
	padding: 0.5em;
	margin-left: 16em;
	font-size: 108%;
}

/* for WinIE6 */
* html body #formArea dd {
	display: inline-block;
}

#formArea dd span {
	font-size: 93%;
	color: #4967B2;
}

/* 入力エラー時表示 */
.lineRed {
	color: #000;
	background-color: #EBA9A9;
}

/* 複数市区町村選択時表示 */
.lineGreen {
	color: #000;
	background-color: #BFE798;
}

#formArea span.adCaution {
	padding-left: 1.5em;
	font-size: 12px;
	font-weight: bold;
	color: #000;
	background: url(../img/arrow15.gif) no-repeat left center;
}

/* アンケート関連 */
#formArea p.enquete {
	padding: 0.5em;
}

#formArea dt div.enquete {
	margin-right: 50px;
}

#verisignArea {
	position: absolute;
	bottom: 0;
	left: 0;
}

/*-----------------------------------------------------------------------------*/
/* フォーム画面SUBMITエリア */
/*-----------------------------------------------------------------------------*/
#submitArea {
	width: 100%;
	margin-top: 3em;
	text-align: center;
}

#submitArea p {
	margin-bottom: 1em;
	text-align: center;
}

/*-----------------------------------------------------------------------------*/
/* 色付フォーム画面(家族情報入力画面用) */
/*-----------------------------------------------------------------------------*/
.formColorBox {
	width: 94%;
	padding: 1em 1.5em;
	margin-bottom: 1em;
	border: 2px solid #F4DA8A;
	background: #F8E7B1;
}

#formColorBox1,
#formColorBox2,
#formColorBox3,
#formColorBox4,
#formColorBox5 {
	width: 96%;
	padding: 1.5em;
	border: 2px solid #F4DA8A;
	background: #F8E7B1;
}

/*-----------------------------------------------------------------------------*/
/* クレジットカード情報決済欄 */
/*-----------------------------------------------------------------------------*/
#clearanceArea {
	margin-bottom: 1.5em;
	font-size: 100%;
}

#clearanceArea .subBox {
	border: 2px solid #060;
	color: #333;
	background-color: #FFC;
}

#clearanceArea .subBox dl {
	border-bottom: 1px dotted #063;
	font-size: 138.5%;
}

#clearanceArea .subBox dd {
	width: 10em;
	text-align: right;
}

#formArea #clearanceArea p {
	margin: 0.5em 0;
	margin-left: 0.8em;
	font-size: 100%;
}

#formArea #clearanceArea table {
	margin-bottom: 0.5em;
	margin-left: 0.3em;
	border: none;
}

#formArea #clearanceArea td {
	padding: 0.2em 0;
	border: none;
	line-height: 1;
	vertical-align: top;
	text-align: center;
}

#formArea #clearanceArea .clearanceAmount {
	font-size: 138.5%;
	font-weight: bold;
}

/* 確認画面用 */
#clearanceArea .subBoxCheck {
	width: 30%;
	margin-top: 1em;
	border: 2px solid #060;
	color: #333;
	background-color: #FFC;
}

#clearanceArea .subBoxCheck dl {
	border: none;
	font-size: 138.5%;
}

#clearanceArea .subBoxCheck dt {
	width: 5em;
}

#clearanceArea .subBoxCheck dd {
	width: auto;
	margin-left: 5em;
	text-align: right;
}
/*-----------------------------------------------------------------------------*/
/* 支払い方法確認コメント欄 */
/*-----------------------------------------------------------------------------*/
.creditArea, .dpayArea, #priceArea {
	display: none;
}

/*-----------------------------------------------------------------------------*/
/* 支払い方法確認コメント欄 */
/*-----------------------------------------------------------------------------*/
#infoArea {
	margin-top: 1em;
	margin-bottom: 0.5em;
	padding:3em 2em;
	border:solid 4px #efefef;
	line-height:1.8em;
	color:1f2b61;
}
#infoArea a:link {
	color:#456fc5;
}
#infoArea a:hover {
	text-decoration:underline;
}

#infoArea .main {
	margin-bottom:2em;
}
#infoArea .main h2 {
	font-size:1.2em;
	margin-bottom:1em;
}
#infoArea .main.credit p {
	padding-left:1em;
	text-indent:-1em;
}
#infoArea .main.dpay p {
}

/*-----------------------------------------------------------------------------*/
/* 支払い方法確認コメント欄 */
/*-----------------------------------------------------------------------------*/
#cautionArea {
	margin-bottom: 0.5em;
}

#cautionArea .subBox {
	border: 2px solid #F90;
	background-color: #FFF;
}

#cautionArea dl {
	border-style: none;
}

#cautionArea .subBox dt {
	width: 10em;
}

#cautionArea .subBox dd {
	margin-left: 11em;
}
#cautionArea .textColorRed {
	font-size: 100%;
	color: #C00;
}

/*-----------------------------------------------------------------------------*/
/* 友達紹介：入会選択 */
/*-----------------------------------------------------------------------------*/
#registTitle {
	text-align: center;
}

.selectArea {
	text-align: center;
}

.selectArea h3 {
	margin-bottom: 0.5em;
}

.selectArea li {
	margin-bottom: 0.3em;
}

/*-----------------------------------------------------------------------------*/
/* フォーム画面：代行入会 */
/*-----------------------------------------------------------------------------*/
#formArea table {
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	font-size: 100%;
}

#formArea th,
#formArea td {
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
}

#formArea th {
	padding: 0.2em;
	font-weight: normal;
	vertical-align: middle;
	background-color: #EEE;
}

#formArea td {
	padding: 0 0.1em;
	vertical-align: middle;
	text-align: left;
}

#formArea #formColorBox1 table,
#formArea #formColorBox2 table,
#formArea #formColorBox3 table,
#formArea #formColorBox4 table,
#formArea #formColorBox5 table {
	border: none;
	background-color: transparent;
}

#formArea #formColorBox1 th,
#formArea #formColorBox2 th,
#formArea #formColorBox3 th,
#formArea #formColorBox4 th,
#formArea #formColorBox5 th {
	border: none;
	border-bottom: 1px dotted #999;
	text-align: left;
	background-color: transparent;
}

#formArea #formColorBox1 td,
#formArea #formColorBox2 td,
#formArea #formColorBox3 td,
#formArea #formColorBox4 td,
#formArea #formColorBox5 td {
	border: none;
	border-bottom: 1px dotted #999;
	background-color: transparent;
}

#formArea #formColorBox1 th.lineRed,
#formArea #formColorBox2 th.lineRed,
#formArea #formColorBox3 th.lineRed,
#formArea #formColorBox4 th.lineRed,
#formArea #formColorBox5 th.lineRed,
#formArea #formColorBox1 td.lineRed,
#formArea #formColorBox2 td.lineRed,
#formArea #formColorBox3 td.lineRed,
#formArea #formColorBox4 td.lineRed,
#formArea #formColorBox5 td.lineRed {
	color: #000;
	background-color: #EBA9A9;
}

/*-----------------------------------------------------------------------------*/
/* 仮会員証画面 */
/*-----------------------------------------------------------------------------*/
#memberSelectArea {
	width: 50em;
	margin: 2em auto 0 auto;
	overflow: hidden;
	border-top: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-left: 1px solid #CCC;
	font-size: 108%;
}

#memberSelectArea p {
	width: 49em;
	padding: 1em 0.5em;
	border-bottom: 1px solid #CCC;
	color: #FFF;
	background: #4967B2;
}

#memberSelectArea li.masterMember,
#memberSelectArea li.familyMember {
	width: 40em;
	padding: 1em 0;
	padding-left: 10em;
	border-bottom: 1px solid #CCC;
	background: url(../img/icon_member.gif) no-repeat left center;
}

#memberSelectArea li.masterMember {
	background: url(../img/icon_member.gif) no-repeat left center;
}

#memberSelectArea li.familyMember {
	background: url(../img/icon_family.gif) no-repeat left center;
}

#memberCardArea {
	position: relative;
	width: 45em;
	padding-top: 2em;
	margin: 2em auto 0 auto;
	color: #000;
}

#memberCardArea .printBtn {
	position: absolute;
	top: 0;
	right: 0.5em;
}

#memberCardArea h3 {
	margin-bottom: 0.5em;
	text-align: center;
}

#memberCardArea p {
	margin-bottom: 0.5em;
	font-size: 108%;
}

#memberCardBox {
	width: 30em;
	padding: 2.5em 2em 0 2em;
	margin: 0 auto;
	overflow: hidden;
	border: 15px solid #CCC;
	text-align: center;
}

#memberCardTitle {
	margin-bottom: 2.5em;
	text-align: center;
}

#memberCardBox dl {
	clear: both;
	overflow: hidden;
	border-bottom: 1px dotted #999;
	text-align: left;
}

#memberCardBox dt {
	float: left;
	width: 7em;
	padding: 0.2em;
	font-size: 123.1%;
	font-weight: bold;
}

#memberCardBox dt.mustEntry {
	background: transparent url(../img/icon_must.gif) no-repeat right center;
}

#memberCardBox dt.normalEntry {
	background: transparent url(../img/icon_arbitrary.gif) no-repeat right center;
}

/* for WinIE6 */
* html body #memberCardBox dt {
	display: inline-block;
}

#memberCardBox dd {
	padding: 0.2em;
	margin-left: 8em;
	font-size: 123.1%;
}

/* for WinIE6 */
* html body #memberCardBox dd {
	display: inline-block;
}

#memberCardBox .captionArea {
	margin: 3em 0;
	text-align: center;
}

#memberCardBox p {
	margin-top: 0.5em;
	font-size: 93%;
	text-align: left;
}

/*-----------------------------------------------------------------------------*/
/* 共通コメント表示 */
/*-----------------------------------------------------------------------------*/
#alarmBox {
	width: 732px;
	padding: 10px 10px 20px 10px;
	border: 4px solid #CCC;
	background-color: #FFC;
}

#alarmBox h3 {
	padding: 0.5em 0 0.5em 1.6em;
	margin: 0 auto;
	font-size: 138.5%;
	color: #333;
	background: transparent url(../img/icon_alarm_type02_yel.gif) no-repeat left center;
}

#alarmBox p {
	padding: 0.5em 0;
	font-weight: bold;
	color: #C00;
	border-top: 1px solid #FC6;
	border-bottom: 1px solid #FC6;
}

.alertBox {
	margin: 0.5em 0 0.5em -12em;
	border: 1px solid #C33;
	color: #C00;
}

/*-----------------------------------------------------------------------------*/
/* 追加20101009 */
/*-----------------------------------------------------------------------------*/
.taikaiTable {
	width: 100%;
	margin: 20px 0;
	text-align: center;
}
.taikaiTable td {
	padding: 2px;
	vertical-align: middle;
}
.tdTline {
	border-top: 1px solid #000;
}
.tdLline {
	border-left: 1px solid #000;
}
.tdTnone {
	border-top: none;
}
.tdRnone {
	border-right: none;
}
.tdBnone {
	border-bottom: none;
}
.tdLnone {
	border-left: none;
}
.tdAnone {
	border: none;
}
.tdLeft {
	text-align: left;
}
.tdRight {
	text-align: right;
}
td.tdVbottom {
	vertical-align: bottom;
}

/*-----------------------------------------------------------------------------*/
/* クレジット入会利用規約同意画面 */
/*-----------------------------------------------------------------------------*/

#agreement {
	margin:1em;
	padding:3em 2em;
	border:solid 4px #efefef;
	line-height:1.8em;
	color:1f2b61;
}
#agreement a:link {
	color:#456fc5;
}
#agreement a:hover {
	text-decoration:underline;
}

#agreement .title {
	text-align:center;
	margin-bottom:0.5em;
}
#agreement .title h1 {
	font-size:2.5em;
	margin-bottom:1em;
}

#agreement .notice {
	background:#f9f9f9;
	padding:15px;
	margin-left:30em;
	margin-right:30em;
}

#agreement .main {
	background:#f9f9f9;
	padding:15px;
	margin-left:30em;
	margin-right:30em;
}
#agreement .main h2 {
	font-size:1.2em;
	margin-bottom:1em;
}
#agreement .main p {
	padding-left:1em;
	text-indent:-1em;
}

#agreement .links {
	text-align:center;
	font-size:1.4em;
	padding:1em;
	margin-bottom:0.5em;
}

#agreement .form {
	text-align:center;
	font-size:2em;
}
#agreement .form input[type='checkbox'] {
	width:1em;
	height:1em;
	vertical-align:middle;
}
#agreement .form input[type='submit'] {
	color:white;
	background:#FB281D;
	font-weight: bold;
	width:10em;
	margin-top:0.6em;
	margin-bottom:0.6em;
	border:0;
	border-radius:6px;
	padding:0.5em;
	box-shadow:1px 2px 2px rgba(0,0,0,0.3);
	cursor:pointer;
}
#agreement .form input[type='submit']:disabled {
	background:#cccccc;
	cursor:not-allowed;
}
#agreement .form input[type='submit']:active {
	position:relative;
	top:1px;
	box-shadow:none;
}
#agreement .form p {
	font-size:0.5em;
}

/*-----------------------------------------------------------------------------*/
/* デバッグ用 */
/*-----------------------------------------------------------------------------*/
.debug.bar {
	position: relative;
	bottom: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 30px;
	color: #FFFFFF;
	background: #FF0000;
	font-size: 18px;
	font-weight: 900;
	text-align: center;
	vertical-align: center;
}
.debug.bar a {
	cursor: pointer;
}
.debug.bar a:hover {
	color: #FFF;
}
.remodal .body pre {
	text-align: left;
}

/*-----------------------------------------------------------------------------*/
/* クレジットカード情報入力画面 */
/*-----------------------------------------------------------------------------*/
ul.caution {
	list-style:none;
	padding-left:1em;
}
ul.caution li::before {
	content:"※";
	margin-left:-1em;
}