@charset "UTF-8";
/* /////////////////////////////////

  _form.scss

///////////////////////////////// */
input[type=text],
input[type=tel],
input[type=email],
textarea {
  border: 1px solid #bbb;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
}

/*---------------------------------
  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: 4px 0 0;
  background: #666;
  float: right;
}

th.required:before {
  content: "必須";
  background: #FB5556;
}

@media all and (-ms-high-contrast: none) {
  th:before {
    line-height: 19px;
  }
}
/*---------------------------------
  Error
---------------------------------*/
.content .error {
  font-size: 85%;
  color: #dd0000;
  padding: 0 0 0 15px;
  margin: 5px 0;
}

.content table table p.error {
  font-size: 91%;
}

input.error,
textarea.error {
  border: 1px solid #ee9899;
}

/*---------------------------------
  contactArea
---------------------------------*/
.contactArea {
  padding: 30px;
  background: #f2efe5;
}
.contactArea--wrap {
  text-align: center;
}
.contactArea--department {
  font-weight: bold;
  font-size: 16px;
  color: #276826;
}
.contactArea--tel a {
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  font-family: "Barlow Semi Condensed", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 42px;
  color: #000000;
}

@media screen and (max-width: 768px) {
  .contactArea {
    margin: 30px 0 0;
  }
  .contactArea--tel a {
    font-size: 32px;
  }
}
/*---------------------------------
  Flow
---------------------------------*/
.content .flow {
  margin: 30px 0;
  overflow: hidden;
}

.flow li {
  float: left;
  width: 33.3%;
  height: 40px;
  line-height: 40px;
  margin: 0;
  background: #fafafa;
  text-align: center;
  position: relative;
  list-style: none;
  box-sizing: border-box;
}

.flow li::before {
  content: none;
}

.flow li:after {
  content: "";
  display: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #276826;
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -20px;
  z-index: 1;
}

.flow.step01 li.flow01 {
  background: #276826;
  color: #ffffff;
}

.flow.step01 li.flow02 {
  background: #d4e1d4;
  color: #aaaaaa;
}

.flow.step01 li.flow03 {
  background: #e9f0e9;
  color: #aaaaaa;
}

.flow.step01 li.flow01:after {
  display: block;
}

.flow.step01 li.flow02::after {
  display: block;
  border-color: transparent transparent transparent #d4e1d4;
}

.flow.step02 li.flow01 {
  background: #e9f0e9;
  color: #aaaaaa;
}

.flow.step02 li.flow02 {
  background: #276826;
  color: #ffffff;
}

.flow.step02 li.flow03 {
  background: #e9f0e9;
  color: #aaaaaa;
}

.flow.step02 li.flow01::after {
  display: block;
  border-color: transparent transparent transparent #e9f0e9;
}

.flow.step02 li.flow02:after {
  display: block;
}

.flow.step03 li.flow01 {
  background: #d4e1d4;
  color: #aaaaaa;
}

.flow.step03 li.flow02 {
  background: #e9f0e9;
  color: #aaaaaa;
}

.flow.step03 li.flow03 {
  background: #276826;
  color: #ffffff;
}

.flow.step03 li.flow01::after {
  display: block;
  border-color: transparent transparent transparent #d4e1d4;
}

.flow.step03 li.flow02::after {
  display: block;
  border-color: transparent transparent transparent #e9f0e9;
}

/*---------------------------------
  table
---------------------------------*/
.ablogcmsForm th {
  text-align: left;
}

/*---------------------------------
  Privacy Agreement
---------------------------------*/
.agreement--desc {
  text-align: center;
}
.agreement--checkWrap {
  text-align: center;
}
.agreement--checkLabel {
  display: inline-block;
  margin: 10px auto 0;
  background: #dbf1d3;
  padding: 10px 20px;
  cursor: pointer;
}
.agreement--checkBox {
  vertical-align: middle;
  margin: -1px 4px 0 0;
}

/*---------------------------------
  Button
---------------------------------*/
.form_btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 20px 0;
}
.form_btn form {
  margin: 0 10px;
}
.form_btn input[type=submit],
.form_btn button.back {
  display: inline-block;
  min-width: 220px;
  height: 50px;
  line-height: 50px;
  margin: 0 15px;
  padding: 0 15px 0 15px;
  background-color: #276826;
  border: 1px solid #276826;
  border-radius: 25px;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}
.form_btn input[type=submit]:hover, .form_btn input[type=submit]:active,
.form_btn button.back:hover,
.form_btn button.back:active {
  background-color: #bc3f39;
  border-color: #bc3f39;
}
.form_btn input[type=submit]:hover::after, .form_btn input[type=submit]:active::after,
.form_btn button.back:hover::after,
.form_btn button.back:active::after {
  border-color: transparent transparent transparent #000;
}
.form_btn button.back {
  padding: 0 15px 0 15px;
  background-color: #cccccc;
  border-color: #cccccc;
  color: #333333;
}
.form_btn button.back:hover, .form_btn button.back:active {
  border-color: #3c3228;
  background-color: #3c3228;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .form_btn {
    flex-direction: column;
  }
  .form_btn .btn.back {
    margin-bottom: 20px;
  }
}