﻿/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
input[type="button"].btn_back {
    padding: 12px;
    margin: 12px;
    margin-right: 10px;
}
input[type="submit"].btn_send {
    padding: 18px 10px;
    border: none;
    margin: 12px;
    margin-left: 0;
}

#v-form-workflow {
	margin: 25px 0;
}
#v-form-workflow .v-title-workflow {
	margin: 0.8em 0;
}
#v-form-workflow .v-workflow {
	margin: 0.5em 0;
	background-color: #EFEFEF; /* 基本背景色 */
	overflow: hidden;
    *zoom: 1;
    padding-left: 0;
}
#v-form-workflow .v-workflow li {
	display: table;
	position: relative;
	width: 33.333%;
	float: left;
	box-sizing: border-box;
	white-space: nowrap;
}
#v-form-workflow .v-workflow li.active {
	background-color: #fcc00a; /* 現在地の背景色 */
	color: #FFF;
}
#v-form-workflow .v-workflow li.active:after {
	background-color: inherit;
}
#v-form-workflow .v-workflow li:not(:last-child):after {
	content: "";
	position: absolute;
	right: -22px;
	top: 50%;
	margin-top: -28px;
	width: 55px;
	height: 55px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	border-right: 2px solid #FFF;
	border-top: 2px solid #FFF;
	box-sizing: border-box;
	z-index: 10;
}
#v-form-workflow .v-workflow li:nth-child(n+2) {
	padding-left: 45px;
}
#v-form-workflow .v-workflow .v-cell {
	display: table-cell;
	vertical-align: middle;
}
#v-form-workflow .v-workflow .v-text {
	position: relative;
	z-index: 20;
	display: block;
}
.form_area {
}
.form_area p {
	margin-bottom: 1.2em;
}
.form_area .div_privacy {
	border: 1px solid #1F5FA6;
	padding: 12px;
	color: #1F5FA6;
	margin-bottom: 12px;
}
.form_area .div_privacy strong {
}
.red {
	color: red;
}
.form_area table {
	width: 100%;
}
.form_area table tr {
}
.form_area h4 {
	display: block;
	text-align: left;
	padding: 5px 0;
	width: 100%;
}
.form_area h4 .red {
	margin-left: 0.5em;
	font-size: 90%;
}
.form_area {
}
.form_area h3.title {
	color: #1F5FA5;
	background-color: #D5E0EE;
	padding: 8px;
	margin-bottom: 10px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea{
	width: 100%;
	padding: 8px;
	-webkit-appearance: none;
	font-size: 16px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #999;
}
input:focus, textarea:focus, select:focus {
	color: #000;
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.30);
	box-shadow: 0 0 4px rgba(0,0,0,0.30);
}
input.half[type="text"] {
	width: 33%;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 8px;
	font-size: 16px;
	position: relative;
	background-image: url(images/icon.png);
	background-repeat: no-repeat;
	background-position: 98% 50%;
	background-color: #fff;
	border: 1px solid #999;
}
textarea {
	width: 100%;
	height: 10em;
	padding: 5px;
	-webkit-appearance: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

input[type=radio], input[type=checkbox] {
	display: none;
}
input[type="submit"] {
	padding: 18px 20px;
	font-size: 20px;
	background-color: #DD1B1B;
	color: #FFFFFF;
	margin-top: 15px;
}
.radio, .checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin-top: 0;
	margin-left: 0;
	margin-bottom: 8px;
	padding: 12px 12px 12px 42px;
	border-radius: 8px;
	background-color: #f6f7f8;
	vertical-align: middle;
	cursor: pointer;
	width: 100%;
}
.radio:hover, .checkbox:hover {
	background-color: #eee;
}
.radio:hover:after, .checkbox:hover:after {
	border-color: #999;
}
.radio:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 50%;
	content: '';
}
.checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 4px;
	content: '';
}
.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #401000;
	content: '';
	opacity: 0;
}
input[type=radio]:checked + .radio:before {
	opacity: 1;
}
.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 21px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #401000;
	border-bottom: 3px solid #401000;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}
.input-required {
	background-color: #fee;
}
.button-tel-sp {
	border-radius: 5px;
	display: inline-block;
	border: 1px solid #DDD;
	background-color: #fcfff4;
	zoom: 1;
 filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFCFFF4', endColorstr='#FFE9E9CE');
	background-image: linear-gradient(to bottom, #ffffff 0%, #cccccc 100%);
	padding: 12px 25px;
	margin-bottom: 0.5em;
}
.require {
	display: inline-block;
	float: right;
	background-color: #EB3F3F;
	color: #FFFFFF;
	border-radius: 5px;
	padding: 0 2px;
}
.margin {
	margin-bottom: 0.5em;
}
.half {
	width: 49%;
	margin:0 1%;
	margin-top: 5px;
	float:left;
}
.half:nth-child(odd){
	margin-left: 0px;
}
.half:nth-child(even) {
	margin-right: 0px;
}

.msg {
	color: #FF0000;
}

@media only screen and (max-width: 740px) {
#v-form-workflow .v-title-workflow {
	font-size: 22px;
}
#v-form-workflow .v-workflow li {
	padding: 6px;
	font-size: 11px;
	height: 30px;
}
#v-form-workflow .v-workflow li:first-child {
	width: 24%;
}
}

@media print, screen and (min-width: 741px) {
#v-form-workflow .v-title-workflow {
	font-size: 25px;
}
#v-form-workflow .v-workflow {
	font-size: 22px;
	border-radius: 6px;
}
#v-form-workflow .v-workflow li {
	height: 63px;
	padding: 15px;
}
input[type="text"] {
  width: 100%;
}
.form_area textarea {
	width: 36em;
}
input.zip[type="tel"] {
  width: 8em;
  margin-bottom: 10px;
}
input[type="button"].btn_zip {
    padding: 0.7em 1em;
}
.td_padding {
    padding: 15px;
}
.width-26 {
  width: 26%;
}

.width-33 {
  width: 32%;
}


}

.input-required.valid {
  background-color: #FFF!important;
}

.group-required.valid label {
  background-color: #EEE!important;
}