@charset "utf-8";
/* CSS Document */

.pcNone { display:none; }
div.container {
}
dl#attention {
	width: 90%;
	margin: 0 auto 1.5em;
}
	dl#attention.attentionWrap {
		background-color: #fce5e7;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		border-radius: 4px;
		padding: 2% 3%;
	}
dl#attention dt {
	display: inline;
	width: 15%;
	float: left;
	/* padding-top: 1em; */
	text-align: center;
	color: #e60012;
}
dl#attention dd {
	display: inline;
	width: 85%;
	float: right;
	font-size: 93%;
	border-left: 1px solid #ccc;
	padding-left: 30px;
	box-sizing: border-box;
}
dl#attention dd ul {
}
dl#attention dd ul li {
	padding: 0 5px;
	display: block;
	text-indent: -1.5em;
	padding-left: 1.5em;
}
	#attention ul li:before{ content:"● " }

ul#step{
	margin: 0 auto 20px;
	text-align: center;
	padding: 0;
}
ul#step li {
	display: inline-block;
	box-sizing: border-box;
	margin: 0 .5em 0 1em;
	width: 30.3%;
}
ul#step li span.inner {
	background: #d9d9d9;
	padding: .7em 1em;
	color: #444;
	position: relative;
	display: block;
	font-weight: bold;
}
	ul#step li.current span.inner { background:#e94d59; color:#fff; }
	ul#step li.current span.inner::before{ border-color:#e94d59 #e94d59 #e94d59 transparent; }
	ul#step li.current span.inner::after{ border-left:1em solid #e94d59; }
		
ul#step li span.inner::before{
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.5em;
  border-width: 1.5em 0 1.5em 1em;
  border-style: solid;
  border-color: #d9d9d9 #d9d9d9 #d9d9d9 transparent;
  left: -1em;
  height: 100%;
}
ul#step li span.inner::after{
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -1.5em;
	border-top: 1.5em solid transparent;
	border-bottom: 1.5em solid transparent;
	border-left: 1em solid #d9d9d9;
	right: -1em;
	height: 100%;
}
ul#step li .current {
  font-weight: bold;
  background: none;
}
ul#step li .current::after,
ul#step li .current::before{
  content: normal;
}

div.linkBtn {
	max-width: 100%;
	font-weight: 500;
}
div.linkBtn.btnsizeL { width:60%; }
div.linkBtn.btnsizeS { width:40%; }
div.linkBtnInput {
}
h2 {
	color: #e60012;
	font-weight: bold;
	font-size: 147%;
	margin-bottom: 1.5em;
}

.formWrap {
	width: 90%;
	margin: 0 auto;
	padding: 4em;
	background: rgba(230,0,18,.05);
}
.formWrap dl {
	overflow: hidden;
	border-bottom: 1px dotted #999;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
	.formWrap dl:last-child { border-bottom:0; }
.formWrap dl:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
* html .formWrap dl { zoom:1; }
*:first-child+html .formWrap dl { zoom:1; }

.formWrap dl dt {
	display: inline;
	float: left;
	width: 27%;
}
	.formWrap dl dt.required {
		background: url("../img/required.png") no-repeat right center;
		-webkit-background-size: 35px auto;
		-moz-background-size: 35px auto;
		-ms-background-size: 35px auto;
		-o-background-size: 35px auto;
		background-size: 35px auto;
		padding: 5px 35px 0 0;
	}

.formWrap dl dd {
	display: inline;
	float: right;
	width: 68%;
}

.formWrap dl dd input,
.formWrap dl dd select,
.formWrap dl dd textarea,
.formWrap dl dd button {
	background-color: rgba(255,255,255,1);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: none;
	box-shadow: none;
	box-sizing: border-box;
	padding: 8px 12px;
	line-height: 140%;
	color: #262626;
	letter-spacing: 0.04em;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.formWrap dl dd input,
.formWrap dl dd textarea {
	width: 100%;
}
	.formWrap dl dd input[type="radio"],
	.formWrap dl dd label.radio { width:auto; display:inline; margin:0; }
	.formWrap dl dd label.radio { margin:0 15px 0 5px; }

.formWrap dl dd input[type="text"]:focus,
.formWrap dl dd select:focus,
.formWrap dl dd textarea:focus {
  background-color: #facccf;
}

.formWrap dl dd label {
	font-weight: normal;
}

.indent1em {
	text-indent: -1em;
	padding-left: 1em;
	font-size: 93%;
}

#submitArea {
	text-align: center;
}
#submitArea input {
	width: 40%;
	margin: 1em auto;
	padding: 1.5% 3%;
	font-weight: bold;
	font-size: 125%;
	border-style: none;
	display: block;
	max-width: 360px;
	border: solid 2px #e60012;
	border-radius: 32px;
	background-color: #e60012;
	color: #FFF;
	text-align: center;
	transition: all 0.3s;
	
}
	#submitArea input:hover {
		background-color: #FFF;
		outline: none;
		color: #e60012 !important;
	}




/* ==============================================================
 Less than 991px
================================================================= */
@media screen and (max-width: 991px) {
	.spNone { display:none; }
	.pcNone { display:block; }
	#step li { width:29.3% !important; }
	#attention { width:100% !important; }
	.formWrap { width:100% !important; }
}


/* ==============================================================
 Less than TABLET
================================================================= */
@media screen and (max-width: 979px) {
}

/* ==============================================================
 Less than SP-LANDSCAPE
================================================================= */
@media screen and (max-width:568px) {
	#step li { width:24.3% !important; font-size:75%; }
	#step li span.inner::before { top:48% !important; }
	#attention { margin-bottom:7% !important; }
	#attention dt,
	#attention dd { display:block !important; float:none !important; width:auto !important; }
	#attention dt { padding-bottom:1em; }
	#attention dd { padding:0 !important; border-left:none !important; }
		dl#attention.attentionWrap { padding:2% 6% 6% !important; }
		dl#attention.attentionWrap dt { padding-bottom:1em; }
	.formWrap { padding:2em; }
	.formWrap dl dt,
	.formWrap dl dd { display:block !important; float:none !important; width:auto !important; }
	.formWrap dl dt { margin-bottom:2%; }
	#submitArea input { width:90%; }
	.w30 { width:70% !important; }
	.w70 { width:100% !important; }
	select#category { width:100% !important; }
	div.linkBtn.btnsizeS, div.linkBtn.btnsizeL { width:auto; }
	
}


/* ==============================================================
 SP-PORTRAIT
================================================================= */
@media screen and (min-width:0px) and (max-width:479px) {
}


/* ==============================================================
 Less than SP-PORTRAIT / iPhone5
================================================================= */
@media screen and (max-width:320px) {
}