@charset "UTF-8";

article > section {
	padding-bottom: 10px;
}
article > section > img {
	display: block;
}
section {
	background-color: #fff;
}
h2 {
	color: #fff;
	/*background: url(../../img/common/bg_h2.png) no-repeat 0 0;*/
	padding: 6px 0 5px 27px;
	line-height: 12px;
}
h3 {
    color: #fff;
    background: #60b9e4;
    font-size: 15px;
    line-height: 1;
    padding: 5px;
}
section > p,
section > ul {
	margin: 5px;
}
div.terms dd,
li {
	margin-bottom: 5px;
}
ul.notice li:before {
	content: "※";
}
ul.notice li.em {
	color: #c54660;
}
div.errorMsg {
	background: #fee;
	padding: 5px;
	margin-bottom: 10px;
	border: solid 1px #dc6c85;
}
div.errorMsg ul {
	color: #e06883;
	padding-left: 1em;
	margin: 5px;
	list-style: disc;
}
p.em {
	background: #e6f2f2;
	font-size: 14px;
	font-weight: bold;
	padding: 5px;
}

p.notice {
	color: #c54660;
}

p.registshop {
	background: #fcc;
	font-size: 14px;
	font-weight: bold;
	padding: 10px;
	margin: 0;
}

div.terms {
	margin: 10px;
	padding: 5px;
	border: solid 1px #ccc;
	overflow: auto;
}

div.terms h4,
div.terms h5
/* 22/11/09 コメント化
,
div.terms p + p
*/ {
	margin-top: 10px;
}
div.terms h4 {
	text-align: center;
}
div.terms h5 {
	margin-bottom: 5px;
}
div.terms dl {
	margin-top: 5px;
}
div.terms dd {
	margin-left: 1em;
}

/*▽ 22/11/11 UPD */
/*
div.terms ol li {
	counter-increment: first;
}
div.terms ol li:before {
	content: counter(first)".";
}
div.terms ol ol {
	margin: 5px 0 0 5px;
	list-style: none;
}
div.terms ol ol li {
	counter-increment: second;
}
div.terms ol ol li:before {
	content: "("counter(second)")";
}
*/
/*△ */

div.btnArea {
	text-align: center;
	margin: 10px 30px;
}
form > .btnArea {
	margin: 10px 20px;
}
.btnArea a.agreeBtn,
.btnArea input {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
}
a.agreeBtn,
.submitBtn {
	color: #fff;
	background: -webkit-gradient(
		linear,
		left top, left bottom,
		color-stop(0.18, #da6781),
		color-stop(0.62, #c5455f)
	);
	background: linear-gradient(
		center top,
		#da6781 18%,
		#c5455f 62%
	);
	font-size: 17px;
	text-align: center;
	text-decoration: none;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width:80%;
	padding:12px 10px 10px;
	border: solid 1px #ccc;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	text-shadow: 0 1px 1px #f01880;
	-webkit-box-shadow: 0 0 3px #333;
	box-shadow: 0 0 3px #333;
}

div.terms small {
	display: block;
	margin-top: 20px;
}
form {
	margin: 10px 5px;
}
form label * {
	vertical-align: middle;
	margin-bottom:10px;
}
select,
textarea,
form input[type="password"],
form input[type="text"],
form input[type="number"],
form input[type="tel"],
form input[type="email"] {
	padding: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: solid 1px #999;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
select {
	font-size:14px;
}
textarea {
	height: 5em;
}
form input[type="checkbox"],
form input[type="radio"] {
	-webkit-appearance: none;
	background: -webkit-gradient(
		linear,
		left top, left bottom,
		from(#fdfdfd), to(#d1d1d1)
	);
	position: relative;
	-webkit-box-sizing: border-box;
	width: 20px;
	height: 20px;
	border: solid 2px #4c4c4c;
}

form input[type="checkbox"] {
	border-radius: 5px;
}

form input[type="radio"] {
	vertical-align: middle;
	border-radius: 10px;
}

form input[type="checkbox"]:checked,
form input[type="radio"]:checked {
	background: -webkit-gradient(
		linear,
		left top, left bottom,
		from(#353535), to(#8f8f8f)
    );
}
input[type="checkbox"]:checked:before {
	content: "";
	background: #fff;
	position: absolute;
	left: -3px;
	top: 15px;
	display: block;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 1);
	width: 10px;
	height: 4px;
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	content: "";
	background: #fff;
	position: absolute;
	left: 5px;
	top: 15px;
	display: block;
	width: 19px;
	height: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 1);
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}
input[type="radio"]:checked:before {
	content: "";
	background: -webkit-gradient(
		linear,
		left top, left bottom,
		from(#fdfdfd), to(#d1d1d1)
	);
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	margin: -3px 0 0 -3px;
	-webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 1);
	border-radius: 5px;
	width: 6px;
	height: 6px;
}

form > dl > dt {
	font-size: 14px;
	margin-bottom: 5px;
	padding: 3px;
	background: #e6f2f2;
}
form > dl > dt.required:after {
	content: "必須";
	color: #fff;
	font-size: 10px;
	background: #bf0e38;
	padding: 1px 2px;
	margin-left: 5px;
}
form > dl > dd {
	margin-bottom: 20px;
}
form .s2 {
	width: 4em;
}
form .s3 {
	width: 6em;
}
form .s4 {
	width: 8em;
}
form .sMax {
	width: 100%;
}
form .flexibleBox > label,
form .flexibleBox > input {
	display: block;
	-webkit-box-flex: 1;
	box-flex: 1;
}
form .bgArea {
	padding: 5px;
}
form .bgArea + .bgArea {
	border-top:1px solid #ccc;
	padding-bottom:0;
}
