﻿/* 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;
  border-radius: 6px;
}
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: #e6dcca; /* 基本背景色 */
  overflow: hidden;
    padding-left: 0;
  *: ;
  zoom: 1;
  border: 1;
  box-shadow: 0px 0px 1px #422100;
}
#v-form-workflow .v-workflow li {
  display: table;
  position: relative;
  width: 33.333%;
  float: left;
  box-sizing: border-box;
  white-space: nowrap;
  color: #000;
}
#v-form-workflow .comp {
  background-color: #422100; /* 基本背景色 */
}
#v-form-workflow .v-workflow li.active {
  background-color: #422100; /* 現在地の背景色 */
  color: #FFF;
}
#v-form-workflow .v-workflow li.active:after {
  background-color: #422100;
}
#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%;
  margin-bottom: 0;
}
.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"] {
  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;
}
.form_area input[type="text"],
.form_area input[type="tel"],
.form_area input[type="email"],
.form_area select, textarea {
    padding: 8px;
}
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"],
input.half[type="tel"],
input.half[type="email"] {
  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;
  border: 1px solid #999;
  font-size: 16px;
}

input[type=radio], input[type=checkbox] {
  display: none;
}
input[type="submit"] {
  padding: 23px 20px;
  font-size: 20px;
  background-color: #8f0500;
  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: #eee;
  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;
}
select::-ms-expand {
  display: none;
}

@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: 25%;
}
#v-form-workflow .v-workflow li:nth-child(2) {
  width: 35%;
}
#v-form-workflow .v-workflow li:nth-child(3) {
  width: 40%;
}
#v-form-workflow .thx-bgc {
  background-color: #000;
}
input.btn_back[type="button"] {
  background-color: #DDDDDD;
}
.table-form .required {
  float: right;
}
input.input-short[type="text"] {
  width: 10em;
}
.send {
  width: 100%;
}
.form_area table tr td {
  padding-bottom: 30px;
}
.store label {
  height: 5em;
}
.half-sp {
  width: 49%;
  margin: 0 1%;
  float: left;
}
.half-sp:nth-child(odd){
  margin-left: 0px;
}
.half-sp:nth-child(even) {
  margin-right: 0px;
}
}

@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;
}
.form_area input[type="text"],
.form_area textarea {
  width: 100%;
}
input.zip[type="text"] {
  width: 8em;
  margin-bottom: 10px;
}
input[type="button"].btn_zip {
    padding: 0.7em 1em;
}
.td_padding {
    padding: 15px;
}
input.input-short[type="text"] {
  width: 10em;
}

.form_area table tr th {
    width: 14em;
    background-color: #e6dcca;
}
.tel-time {
  width: 210px;
  margin-top: 10px;
}
.send {
  width: 60%;
}
.form_area table {
  margin-bottom: 30px;
}
.age-00 li {
	width: 140px;
}
#opinion_form table tr th, #opinion_form table tr td {
    vertical-align: middle;
    padding: 20px;
    padding-right: 10px;
}
.half {
  width: 49%;
  margin: 0 1%;
  float: left;
}
.half:nth-child(odd){
  margin-left: 0px;
}
.half:nth-child(even) {
  margin-right: 0px;
}
}

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

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