@charset "UTF-8";
/* /////////////////////////////////

  _form.scss

///////////////////////////////// */
.content {
  padding: 0 15px;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  border: 1px solid #bbb;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
}

textarea {
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

@media screen and (max-width: 768px) {
  th, td {
    display: block;
    width: 100%;
  }

  input[type=text],
input[type=tel],
input[type=email],
textarea {
    width: 100%;
  }
}
/*---------------------------------
  Require icon
---------------------------------*/
th:before {
  content: "任意";
  display: block;
  font-size: 10px;
  font-weight: normal;
  text-align: center;
  color: #fff;
  width: 30px;
  height: 15px;
  line-height: 15px;
  border-radius: 2px;
  margin: 7px 0 0;
  background: #666;
  float: right;
}

th.required:before {
  content: "必須";
  background: #FB5556;
}


/*---------------------------------
  Error
---------------------------------*/
.content .error {
  font-size: 85%;
  color: #dd0000;
  padding: 0 0 0 15px;
  background: url(/themes/main/images/icon/icon_information.png) no-repeat 0 0.2em;
  margin: 5px 0;
}

.content table table p.error {
  font-size: 91%;
}

input.error,
textarea.error {
  border: 1px solid #ee9899;
}

/*---------------------------------
  Flow
---------------------------------*/
.content .flow {
  margin: 30px 0;
  overflow: hidden;
}

.flow li {
  float: left;
  width: 33.3%;
  height: 40px;
  line-height: 40px;
  background: #f6f6f6;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

.flow li:after {
  content: "";
  display: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #8ec31f;
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -20px;
  z-index: 1;
}

.flow.step01 li.flow01 {
  background: #8ec31f;
  color: #ffffff;
}

.flow.step01 li.flow02 {
  background: #f6f6f6;
  color: #999;
}

.flow.step01 li.flow03 {
  background: #f6f6f6;
  color: #999;
}

.flow.step01 li.flow01:after {
  display: block;
}

.flow.step02 li.flow01 {
  background: #f6f6f6;
  color: #999;
}

.flow.step02 li.flow02 {
  background: #8ec31f;
  color: #ffffff;
}

.flow.step02 li.flow03 {
  background: #f6f6f6;
  color: #999;
}

.flow.step02 li.flow01::after {
  display: block;
  border-color: transparent transparent transparent #f6f6f6;
}

.flow.step02 li.flow02:after {
  display: block;
}

.flow.step03 li.flow01 {
  background: #f6f6f6;
  color: #999;
}

.flow.step03 li.flow02 {
  background: #f6f6f6;
  color: #999;
}

.flow.step03 li.flow03 {
  background: #8ec31f;
  color: #ffffff;
}

.flow.step03 li.flow01::after {
  display: block;
  border-color: transparent transparent transparent #f6f6f6;
}

.flow.step03 li.flow02::after {
  display: block;
  border-color: transparent transparent transparent #f6f6f6;
}

/*---------------------------------
  table
---------------------------------*/
.ablogcmsForm th {
  text-align: left;
}

/*---------------------------------
  Privacy Agreement
---------------------------------*/
.agreement p {
  text-align: center;
}
.agreement--desc {
  text-align: center;
  margin-bottom: 30px;
}
.agreement--checkWrap {
  text-align: center;
}
.agreement--checkLabel {
  display: inline-block;
  margin: 10px auto 0;
  background: #f6f6f6;
  padding: 10px 20px;
  cursor: pointer;
}
.agreement--checkBox {
  vertical-align: middle;
  margin: -1px 4px 0 0;
}

/*---------------------------------
  Button
---------------------------------*/
.form-button {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 20px 0;
}
.form-button form {
  margin: 0 10px;
}

.btn-01 {
  display: inline-block;
  min-width: 325px;
  height: 65px;
  line-height: 65px;
  background: #8ec31f;
  border: 1px solid #8ec31f;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
}
.btn-01:hover, .btn-01:active {
  background: #ffffff;
  color: #8ec31f;
}
button.btn-02 {
  background: #eee;
  border-color: #eee;
  color: #333333;
  border-width: 2px;
}
button.btn-02:hover, button.btn-02:active {
  background: #ffffff;
  color: #000;
  border-color: #999;
  border-width: 2px;
}
@media screen and (max-width: 768px) {
  .form-button {
    display: block;
  }
  .form-button form {
    margin: 0;
  }
  .form-button form + form {
    margin: 10px 0 0;
  }

  .btn-01 {
    min-width: 290px;
  }
}

/*---------------------------------
  IE調整
---------------------------------*/

@media all and (-ms-high-contrast: none) {
  .btn-01 {
    height: 70px !important;
  }
  ul.flow li {
    padding-top: 3px;
  }
  .formName {
    position: relative;
    top: 3px;
  }
  th.required:before,
  th:before {
    padding: 2px 0 0;
  }
  
}



/*# sourceMappingURL=form.css.map */