@charset "utf-8";

/* -----------------------------------------------------------------------------

	common

----------------------------------------------------------------------------- */
html, body {
	width: 100%;
	color: #333;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	word-break: break-all;
}
#wrapper {
	border-top: 5px solid #010000;
	min-width: 1080px;
}
a:hover,
button:hover {
	opacity: 0.7;
	cursor: pointer;
}
h1 a:hover,
.alphaNone a:hover {
	opacity: 1;
}
a:focus,
button.formParts:focus {
	opacity: 0.7;
}
.none {
	display: none;
}


/* #header
---------------------------------------------*/
#header {
	padding: 0 0 20px;
	background: #fff;
}
#headerInner {
	width: 990px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
#header .logo {
	float: left;
	margin: 20px 0 0;
}
#header .btn {
	float: left;
	padding: 32px 0 0 44px;
}
#header .btn a {
	width: 170px;
	height: 30px;
	display: block;
	border-radius: 2px;
	color: #fff;
	font-size: 14px;
	line-height: 30px;
	background: #424b55 url(../img/icon_arrow03.png) no-repeat 157px center;
	text-align: center;
	text-decoration: none;
}
#header .btn.logout a {
	width: 115px;
	background: #a9b3bd;
}
#header .step {
	float: right;
	margin: 39px 0 0;
}


/* #main
---------------------------------------------*/
#main {
	clear: both;
	width: 990px;
	padding: 30px 0 70px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.5;
	background: #fff;
}
#main section + section {
	margin: 70px 0 0;
}
#main .ttl01 {
	font-size: 20px;
	border-bottom: 1px solid #d1d2d4;
	margin: 0 0 30px;
	font-weight: normal;
}
#main .ttl01 span {
	display: inline-block;
	padding: 0 10px 5px;
	border-bottom: 1px solid #424b55;
	position: relative;
	bottom: -1px;
}

#main .invalidStyle,
#main .invalidStyle * {
	font-size: inherit;
	line-height: inherit;
	width: auto;
	height: auto;
	opacity: inherit;
	position: inherit;
	min-width: inherit;
	min-height: inherit;
	text-align: inherit;
	vertical-align: inherit;
	box-sizing: inherit;
}


/* #footer
---------------------------------------------*/
#footer {
	clear: both;
	background: #ebebeb;
	padding: 20px 0;
}
#footer #footerInner {
	width: 990px;
	margin: 0 auto;
}
#footer .information {
	float: left;
	line-height: 1;
}
#footer .information ul li {
	float: left;
	margin: 0 27px 0 0;
}
#footer .information ul li a {
	display: block;
	padding: 0 0 0 17px;
	font-size: 14px;
	background: url(../img/icon_arrow01.png) no-repeat left top;
	text-decoration: none;
	color: #333;
}
#footer .information small {
	display: block;
	font-size: 12px;
	color: #5d5d5d;
	margin: 15px 0 0;
}
#footer .information p {
	font-size: 10px;
	color: #5d5d5d;
	margin: 5px 0 0;
}
#footer .security {
	float: right;
	padding: 0 11px 8px;
	background: #fff;
	border: 1px solid #dfdfdf;
	overflow: hidden;
}
#footer .security .norton {
	float: left;
	width: 118px;
	padding: 6px 0 0 0;
	text-align: center;
}
#footer .security .norton #siteseal {
	min-height: 63px;
}
#footer .security .norton #siteseal img {
	width: 116px;
	height: auto;
}
#footer .security .norton .txt {
	padding: 6px 0 0 0;
}
#footer .security .pmark {
	float: right;
	width: auto;
	padding: 13px 0 0 23px;
}


/* form
---------------------------------------------*/
#main input.formParts[type=radio],
#main input.formParts[type=checkbox] {
	padding: 0;
	margin: 0;
	width: 0;
	height: 0;
	border: none;
	opacity: 0;
	font-size: 0;
	position: absolute;
}
#main input.formParts[type=radio] + label:hover,
#main input.formParts[type=checkbox] + label:hover {
	cursor: pointer;
}
#main input.formParts[type=checkbox]:focus + label,
#main input.formParts[type=checkbox]:focus + label {
	opacity: 0.7;
}
#main input.radio01[type=radio] + label,
#main input.check01[type=checkbox] + label {
	padding: 0 0 0 30px;
	position: relative;
	min-height: 24px;
	line-height: 24px;
	display: inline-block;
}
#main input.radio01[type=radio] + label::before,
#main input.check01[type=checkbox] + label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 24px;
	height: 24px;
	margin-top: -12px;
}
#main input.radio01[type=radio] + label::before {
	background: url(../img/icon_radio01.png) no-repeat;
}
#main input.check01[type=checkbox] + label::before {
	background: url(../img/icon_check01.png) no-repeat;
}
#main input.radio01[type=radio]:checked + label::after,
#main input.check01[type=checkbox]:checked + label::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 24px;
	height: 24px;
	margin-top: -12px;
}
#main input.radio01[type=radio]:checked + label::after {
	background: url(../img/icon_radio01_on.png) no-repeat;
}
#main input.check01[type=checkbox]:checked + label::after {
	background: url(../img/icon_check01_on.png) no-repeat;
}
#main input.check02[type=checkbox] + label {
	padding: 0 0 0 24px;
	position: relative;
	min-height: 18px;
	line-height: 18px;
	display: inline-block;
}
#main input.check02[type=checkbox] + label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -9px;
}
#main input.check02[type=checkbox] + label::before {
	background: url(../img/icon_check02.png) no-repeat;
}
#main input.check02[type=checkbox]:checked + label::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -9px;
}
#main input.check02[type=checkbox]:checked + label::after {
	background: url(../img/icon_check02_on.png) no-repeat;
}
#main input,
#main select,
#main textarea {
	color: #333;
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}
#main input.formParts:focus,
#main .error input.formParts:focus,
#main .select01:focus,
#main .error .select01:focus {
	border: 1px solid #0367fd;
}
#main .placeholder {
	color: #b4b4b4;
	font-weight: normal;
}
#main input.formParts::-webkit-input-placeholder {
	color: #b4b4b4;
	font-weight: normal;
}
#main input.formParts:-ms-input-placeholder {
	color: #b4b4b4;
	font-weight: normal;
}
#main input.formParts::-moz-placeholder {
	color: #b4b4b4;
	font-weight: normal;
}
#main input.formParts {
	width: 100%;
	height: 50px;
	border: 1px solid #8f9298;
	padding: 0 10px;
	font-size: 16px;
	border-radius: 2px;
	box-sizing: border-box;
	box-shadow: none;
}
#main .select01 {
	height: 50px;
	line-height: 50px;
	background: url(../img/icon_arrow_select.png) #fff no-repeat right center;
	font-size: 16px;
	width: 100%;
	border: 1px solid #8f9298;
	border-radius: 2px;
	box-sizing: border-box;
	padding: 0 0 0 10px;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#main .select01::-ms-expand {
	display: none;
}

#main .select01:not(:target) {
	background: #fff\9;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	#main .select01:not(:target) {
		background: url(../img/icon_arrow_select.png) #fff no-repeat right center;
	}
}
#main .select01:hover {
	cursor: pointer;
}
#main .approve {
	margin: 15px auto 0;
	padding: 15px 0;
	background: #f0f2f4;
	text-align: center;
}
.btnSubmit {
	margin: 50px 0 0;
}
.btnBack {
	margin: 15px 0 0;
	width: 145px;
}
#main button.formParts {
	font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	width: 100%;
	height: 50px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	display: inline-block;
	border-radius: 2px;
	background: #ccc;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}
#main button.btn01 {
	height: 70px;
	font-size: 20px;
	background: #97c71f;
	box-shadow:0px 2px 0px 0px #759917;
}
#main button.btn01[disabled],
#main button.btn01[disabled]:hover {
	opacity: 0.3;
}
#main button.btn01[disabled]:hover {
	cursor: inherit;
}
#main button.btn02 {
	height: 50px;
	font-size: 16px;
	color: #666;
	background: #dbdfe2;
	box-shadow:0px 2px 0px 0px #b4bbc0;
}
#main .inputPromoter {
	color: #97c71f;
	font-style: bold;
	margin: 30px 0 15px;
	padding-left: 5px;
	border-left: solid 5px #97c71f;
}
.inputArea dl {
	overflow: hidden;
	position: relative;
	clear: both;
}
.inputArea dl + dl {
	margin: 30px 0 0;
}
.inputArea dl dt {
	margin: 0 0 8px;
}
.inputArea dl dd {
	overflow: hidden;
}
.inputArea dl dt .necessary {
	display: inline-block;
	background: #d55553;
	width: 40px;
	height: 20px;
	line-height: 20px;
	color: #fff;
	font-size: 12px;
	text-align: center;
	letter-spacing: 0.2em;
	margin: 0 0 0 10px;
	position: relative;
	top: -2px;
	transition: 0.5s linear;
}
.inputArea dl.ok dt .necessary {
	background: #97c51f;
}
.inputArea dl dt .necessary:after {
	content: "必須";
}
.inputArea dl.ok dt .necessary:after {
	content: "OK";
}
.inputArea dl p.notes {
	font-size: 12px;
	clear: both;
	padding: 10px 0 0;
	color: #666;
}
.inputArea dl ul.notes {
	font-size: 12px;
	clear: both;
	padding: 25px 0 0;
	color: #666;
}
.inputArea dl ul.notes li {
	margin: 0 0 0 1em;
	text-indent: -1em;
}
.inputArea dl ul.notes li + li {
	margin: 5px 0 0 1em;
}
.inputArea ul.radioWrap li,
.inputArea ul.checkboxWrap li {
	float: left;
}
.inputArea ul.radioWrap li + li,
.inputArea ul.checkboxWrap li + li {
	margin: 0 0 0 55px;
}
.inputArea div.nameWrap {
	width: 255px;
	float: left;
}
.inputArea div.nameWrap + div.nameWrap {
	margin: 0 0 0 15px;
}
.inputArea div.postcodeWrap {
	overflow: hidden;
	position: relative;
}
.inputArea div.postcodeWrap div {
	float: left;
	width: 150px;
}
.inputArea div.postcodeWrap div.hyphen {
	width: 21px;
	height: 50px;
	line-height: 50px;
	text-align: center;
}
.inputArea div.postcodeWrap div.hyphen + div {
	width: 196px;
}
#main .inputArea div.postcodeWrap button {
	background: #424b55;
	position: absolute;
	top: 0;
	right: 0;
	width: 145px;
}
.inputArea div.telWrap {
	overflow: hidden;
}
.inputArea div.telWrap div {
	float: left;
	width: 161px;
}
.inputArea div.telWrap div.hyphen {
	width: 21px;
	height: 50px;
	line-height: 50px;
	text-align: center;
}
.inputArea div.expirationDateWrap {
	width: 255px;
	float: left;
}
.inputArea div.expirationDateWrap + div.expirationDateWrap {
	margin: 0 0 0 15px;
}
.inputArea div.numberOfDivisionsWrap {
	overflow: hidden;
}
.inputArea div.numberOfDivisionsWrap ul {
	float: left;
	padding: 14px 17px 0 0;
}
.inputArea div.numberOfDivisionsWrap div {
	float: left;
	width: 155px;
}
#main .error input,
#main .error .select01 {
	border: 1px solid #f96460;
	background: #fef6f3;
}
#main .erroTxt {
	clear: both;
	padding: 5px 0 0;
	color: #f86261;
	font-weight: bold;
	display: none;
}
#main .error .erroTxt {
	display: block;
}

#main .hiddenform1 {
	display: none;
}

#main .hiddenform2 {
	display: none;
}

/* .signinContent
---------------------------------------------*/
.signinContent .inner {
	width: 630px;
	margin: 0 auto;
	padding: 20px 0;
}
.signinContent .approve {
	width: 450px;
	margin: 20px auto 0;
}
.signinContent .approve + p {
	font-size: 12px;
	width: 450px;
	margin: 15px auto 0;
	color: #666;
}
.signinContent .box {
	border: 1px solid #bfc0c4;
	margin: 50px 0 0;
	padding: 30px 89px 50px;
}
.signinContent .box dl dt {
	margin: 0 0 8px;
}
.signinContent .box ul {
	margin: 30px 0 0;
}
.signinContent .box ul li + li {
	margin: 15px 0 0;
}
.signinContent .box #passwordArea {
	padding: 15px 0 0;
}
.signinContent .box #passwordArea .link {
	margin: 10px 0 0;
}
.signinContent .box #passwordArea p a {
	padding: 0 0 0 15px;
	background: url(../img/icon_arrow02.png) no-repeat left 0.1em;
	display: inline-block;
	line-height: 1;
}
.signinContent .btnSubmit {
	margin: 30px 0 0;
}


/*.floatingWrap
---------------------------------------------*/
.floatingWrap {
	position: relative;
	width: 990px;
	min-height: 540px;
}
.floatingWrap section .ttl01 {
	width: 525px;
}
.floatingWrap section:first-child .ttl01 {
	width: 100%;
}
.floatingWrap section .inner {
	width: 525px;
}
.floatingWrap .btnSubmit {
	width: 525px;
}
.floatingWrap .floatingContent {
	position: absolute;
	top: 65px;
	right: 0;
	width: 400px;
}
.floatingWrap .floatingBox {
	width: 400px;
	background: #fff;
}
.floatingWrap .floatingBox h2 {
	background: #424b55;
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 1;
	padding: 12px 0;
}
.floatingWrap .floatingBox .floatingBoxInner {
	border: 1px solid #bfc0c4;
	border-top: none;
	padding: 0 0 10px;
}
.floatingWrap .floatingBox .boxWrap {
	/*max-height: 300px;*/
	overflow: auto;
	padding: 10px 0 0;
}
.floatingWrap .floatingBox .box {
	border-bottom: 1px solid #bfc0c4;
	padding: 5px 5px 10px;
	margin: 0 15px;
	font-weight: bold;
}
.floatingWrap .floatingBox .box + .box {
	padding: 15px 5px 10px;
}
.floatingWrap .floatingBox .price {
	padding: 5px 0 0;
	text-align: right;
	color: #d45452;
}
.floatingWrap .floatingBox .sub {
	padding: 10px 20px 0;
}
.floatingWrap .floatingBox .sub dl {
	overflow: hidden;
	clear: both;
}
.floatingWrap .floatingBox .sub dl + dl {
	margin: 10px 0 0;
}
.floatingWrap .floatingBox .sub dl dt {
	float: left;
}
.floatingWrap .floatingBox .sub dl dd {
	margin: 0 0 0 8em;
	font-weight: bold;
}
.floatingWrap .floatingBox .total {
	padding: 15px;
	margin: 10px 5px 0;
	background: #e6e8ea;
	overflow: hidden;
	font-weight: bold;
}
.floatingWrap .floatingBox .total dt {
	float: left;
}
.floatingWrap .floatingBox .total dd {
	float: right;
	text-align: right;
	color: #d45452;
	font-size: 16px;
}
.floatingWrap .floatingBox .excludingTax {
	font-size: 12px;
}
.floatingWrap .floatingBox .notes {
	padding: 5px 10px 0;
	font-size: 12px;
	color: #666;
}


/* .applicationContent
---------------------------------------------*/
.applicationContent {
	margin: 0 0 70px;
}
.applicationContent table {
	width: 100%;
}
.applicationContent table th,
.applicationContent table td {
	vertical-align: middle;
	text-align: center;
}
.applicationContent table th{
	color: #fff;
	font-size: 14px;
	padding: 10px 0;
	background: #424b55;
	border-left: 1px solid #fff;
}
.applicationContent table td{
	padding: 30px 0;
	border-left: 1px solid #c2c3c7;
	border-bottom: 1px solid #c2c3c7;
}
.applicationContent table .img {
	width: 280px;
	border-left: none;
}
.applicationContent table td.img img {
	box-shadow: 6px 6px 10px rgba(0,0,0,0.5);
	max-width: 140px;
	height: auto;
}
.applicationContent table .name {
	width: 508px;
}
.applicationContent table td.name {
	text-align: left;
}
.applicationContent table td.name dl {
	text-align: left;
	padding: 0 30px;
}
.applicationContent table td.name dl dt {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 5px;
}
.applicationContent table td.name dl dd {
	font-size: 14px;
	color: #666;
}
.applicationContent table td.security {
	font-size: 16px;
	font-weight: bold;
}
.applicationContent table td.security {
	font-size: 16px;
	font-weight: bold;
}
.applicationContent .delivery {
	border-bottom: 1px solid #c2c3c7;
	padding: 15px 15px 15px 218px;
	position: relative;
}
.applicationContent .delivery dt {
	position: absolute;
	left: 20px;
	top: 50%;
	width: 165px;
	height: 30px;
	background: #a9b3bd;
	border-radius: 2px;
	text-align: center;
	line-height: 30px;
	color: #fff;
	margin: -15px 0 0;
}
.applicationContent .delivery dd {
	font-size: 12px;
	color: #666;
}


/* .procedureContent
---------------------------------------------*/
.procedureContent .emailBox {
	height: 50px;
	line-height: 50px;
	border: 1px solid #8f9298;
	padding: 0 10px;
	font-size: 16px;
	border-radius: 2px;
}


/* .paymentContent
---------------------------------------------*/
.paymentContent .tabBtn {
	overflow: hidden;
	position: relative;
	z-index: 2;
	font-size: 0;
	text-align: center;
	padding: 0 0 0 30px;
}
.paymentContent .tabBtn li {
	font-size: 16px;
	background: #fff;
	display: block;
	float: left;
}
.paymentContent .tabBtn li input[type=radio] + label {
	/*width: 230px;*/
	box-sizing: border-box;
	display: block;
	padding: 0 20px;
}
.paymentContent .tabBtn li input[type=radio]:checked + label {
	border: 1px solid #909399;
	border-bottom: 1px solid #fff;
	border-radius: 2px 2px 0 0;
}
.paymentContent .tabBtn li input[type=radio] + label span {
	display: inline-block;
	padding: 0 0 0 30px;
	height: 50px;
	line-height: 50px;
	background: url(../img/icon_radio01.png) no-repeat left center;
}
.paymentContent .tabBtn li input[type=radio]:checked + label span {
	background: url(../img/icon_radio02_on.png) no-repeat left center;
}
.paymentContent .tabBtn li label:hover span {
	opacity: 0.7;
}
.paymentContent .tabBox {
	border-top: 1px solid #909399;
	margin: -1px 0 0;
	padding: 30px 0 0;
}
.paymentContent #cardArea dl.card {
	overflow: hidden;
}
.paymentContent #cardArea dl.card dt {
	float: left;
	padding: 7px 13px 0 0;
	margin: 0;
}
.paymentContent #paymentDeliveryArea ul li + li {
	margin: 20px 0 0;
}
.paymentContent #paymentDeliveryArea ul li img {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 0 15px;
	position: relative;
	top: -7px;
}
.paymentContent #convenienceStoreArea ul {
	padding-top: 20px;
}
.paymentContent #convenienceStoreArea ul li + li {
	margin: 2px 0 0 ;
}
.paymentContent #convenienceStoreArea ul li b {
	width: 150px;
	display: table-cell;
	font-weight: normal;
	vertical-align: middle;
	height: 55px;
}
.paymentContent #convenienceStoreArea ul li span {
	display: table-cell;
	height: 55px;
	vertical-align: middle;
}


/*.policyContent
---------------------------------------------*/
.policyContent .policyArea {
	background: #e6e8ea;
	overflow: auto;
	height: 200px;
	padding: 15px 5px 15px 15px;
	color: #7f7f7f;
}
.policyContent .policyArea dl + dl {
	margin: 30px 0 0;
}
.policyContent .policyArea dl dt {
	margin: 0 0 10px;
	font-weight: bold;
	font-size: 16px;
}
.policyContent .policyArea dl dd p + p {
	margin: 15px 0 0;
}
.policyContent .policyArea p.right {
	margin: 40px 0 30px;
	text-align: right;
}
.policyContent .policyArea p.right b {
	font-weight: bold;
}
.policyContent .checkPolicy {
	margin: 40px 0 0;
}


/* .addContent
---------------------------------------------*/
.addContent {
	margin: 70px 0 0;
}
.addContent + .floatingWrap {
	margin: 70px 0 0;
}
.addContent + .floatingWrap section:first-child .ttl01 {
	width: 525px;
}
.addContent .optionArea {
	margin: 0;
}
.addContent .checkAddArea {
	width: 100%;
	background: #f3f4f5;
	position: relative;
	margin: 0 0 30px;
	clear: both;
}
.addContent .checkAddArea.bottom {
	margin: 30px 0 0;
}
.addContent .checkAddArea input[type=checkbox] + label {
	display: block;
	width: 100%;
	padding: 0 0 0 80px;
	box-sizing: border-box;
	border: 1px solid #919296;
	position: relative;
	overflow: hidden;
	background: #fff;
}
.addContent .checkAddArea input[type=checkbox] + label:before {
	content: "";
	display: block;
	width: 80px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #f3f4f5;
}
.addContent .checkAddArea input[type=checkbox] + label:after {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url(../img/icon_check01.png) no-repeat;
	position: absolute;
	top: 50%;
	left: 30px;
	margin: -12px 0 0;
}
.addContent .checkAddArea input[type=checkbox]:checked + label:after {
	background: url(../img/icon_check01_on.png) no-repeat;
}
.addContent .checkAddArea input[type=checkbox] + label:hover {
	opacity: 0.7;
}
.addContent .checkAddArea input[type=checkbox] + label p {
	padding: 30px 10px;
	font-size: 18px;
	font-weight: bold;
	min-height: 20px;
}


/* .confirmContent
---------------------------------------------*/
.confirmContent table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #bfc0c4;
	border-left: 1px solid #bfc0c4;
	border-right: 1px solid #bfc0c4;
}
.confirmContent table th,
.confirmContent table td {
	border-collapse: collapse;
	border-bottom: 1px solid #bfc0c4;
	vertical-align: middle;
}
.confirmContent table th {
	width: 143px;
	padding: 14px 20px;
	text-align: left;
	font-weight: normal;
	color: #666;
}
.confirmContent table td {
	padding: 14px 20px 14px 0;
}


/* .upsellContent
---------------------------------------------*/
.upsellContent {
	margin: 0 0 70px;
}
.upsellContent .lead {
	text-align: center;
	font-size: 28px;
	color: #97c61f;
	font-weight: bold;
	padding: 40px 0 0;
}
.upsellContent .lead + p {
	text-align: center;
	font-size: 16px;
	margin: 10px 0 0;
}
.upsellContent .optionArea {
	margin: 70px 0 0;
}


/* .settlementContent
---------------------------------------------*/
.settlementContent p + .inputArea {
	margin: 30px 0 0;
}
.settlementContent .resultConvenienceStore {
	border: 1px solid #8f9298;
	padding: 20px 10px;
	margin-top: 15px;
	font-size: 16px;
	border-radius: 2px;
}
.settlementContent .resultConvenienceStore b {
	font-weight: normal;
}
.settlementContent .resultConvenienceStore span {
	margin-left: 10px;
}
.settlementContent .resultConvenienceStore span img {
	vertical-align: middle;
}


/* .completeContent
---------------------------------------------*/
.completeContent .inner {
	width: 630px;
	margin: 0 auto;
}
.completeContent .lead {
	text-align: center;
	font-size: 28px;
	color: #97c61f;
	font-weight: bold;
	padding: 40px 0 0;
}
.completeContent .lead + p {
	font-size: 16px;
	margin: 50px 0 0;
}
.completeContent ul.notes {
	padding: 15px 0 0;
	color: #666;
}
.completeContent ul.notes li {
	margin: 0 0 0 1em;
	text-indent: -1em;
}
.completeContent .member {
	padding: 13px;
	margin: 30px 0 0;
	border: 1px solid #bfc0c4;
}
.completeContent .member dt {
	padding: 0 0 0 45px;
	min-height: 32px;
	line-height: 32px;
	background: url(../img/icon_member.png) no-repeat left top;
	font-size: 18px;
	font-weight: bold;
}
.completeContent .member dd {
	padding: 5px 0 0 45px;
}
.completeContent .member dd a {
	color: #8cb915;
	text-decoration: none;
}
.completeContent .member dd .notes {
	color: #666;
	padding: 5px 0 0;
	font-size: 12px;
}


/* .importantNotices
---------------------------------------------*/
.importantNotices {
	background: #fef5f5;
	border: 1px solid #fa625c;
	border-radius: 2px;
	margin: 30px 0 -30px;
	padding-bottom: 20px;
}
.importantNotices h2 {
	margin: 0 9px 15px;
	padding: 15px 20px 10px;
	border-bottom: 1px solid #fa625c;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	color: #fa625c;
}
.importantNotices p {
	margin: 0 28px;
}
.importantNotices .txt b {
	font-weight: bold;
}
.importantNotices .txt .account {
	font-weight: bold;
	color: #ff3333;
}
.importantNotices .txt + .txt {
	margin-top: 15px;
}
.importantNotices .link {
	margin-top: 10px;
}
.importantNotices .link a{
	display: inline-block;
	background: url(../img/icon_arrow01.png) no-repeat left 0.3em;
	padding: 0 0 0 17px;
	color: #333;
	text-decoration: none;
}


/* .errorBox
---------------------------------------------*/
.errorBox {
	background: #fef5f5;
	border: 1px solid #fa625c;
	border-radius: 2px;
	margin: -20px 30px 40px;
	padding: 30px;
	color: #fa625c;
	font-weight: bold;
	font-size: 16px;
}
.errorBox p + p {
	margin: 15px 0 0;
}


/* #modal-overlay
---------------------------------------------*/
#modal-overlay{
	z-index: 9999;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba(0,0,0,0.75);
}


/* .signinModal
---------------------------------------------*/
.signinModal {
	width: 700px;
	margin: 1.5em auto 0;
	padding: 10px 20px;
	background: #fff;
	z-index: 99999;
	position: fixed;
}
.signinModal .signinContent .box {
	margin:0;
}
.signinModal h1 {
	display: none;
}
.signinPromoter {
	width: 100%;
	height: 50px;
}
.signinPromoter a {
	display: block;
	width: 100%;
	border: solid 1px #bfc0c4;
	background: #f0ffff;
	color: navy;
	line-height: 50px;
	text-align: center;
}