/* FV */
#fvContainer {
  width: 100%;
  height: 400px;
  margin-top: 100px;
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
}

.title {
  width: 100%;
  position: relative;
}

#fvContainer .title {
  position: absolute;
  top: 48%;
  left: 15%;
  z-index: 1;
}

.title h1, .title h2 {
  padding-right: 12px;
  font-size: 80px;
  font-weight: 100;
  line-height: 0.9;
  display: inline-block;
  position: relative;
}

.titleAni {
  width: 100%;
  height: 19px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.titleAni::after {
  width: 100%;
  font-size: 80px;
  font-weight: 100;
  line-height: 0.9;
  color: #fff;
  background: #fc6a09;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

#fvContainer .titleAni::after  {
  content: "Contact";
}

.fontAni::after {
  animation: fontAni 1s 0.5s both;
}

@keyframes fontAni {
  0% {width: 0%;}
  100% {width: 100%;}
}

.title p {
  color: #fc6a09;
  letter-spacing: 3px;
  margin-top: 5px;
}

.fvBack {
  font-size: 500px;
  line-height: 0.7;
  letter-spacing: 7px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}




/* Contact */
#contactContainer {
  width: 100%;
  margin: 150px auto 200px;
}

.contactContents {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.alert {
  font-size: 18px;
  color: #dc3232;
  margin-bottom: 20px;
}

label {
  font-weight: 300;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.itemName {
  flex: 0 0 100%;
  letter-spacing: 1.5px;
}

.itemText {
  margin-top: 10px;
}

.wpcf7-form-control-wrap {
  flex: 1 1 auto;
}

.formGroup {
  width: 100%;
  height: 40px;
  line-height: 40px;
  letter-spacing: 1px;
  border: 1px solid #B5B5B6;
  box-sizing: border-box;
  margin-top: 3px;
  padding: 0 12px;
}

textarea.formGroup {
  width: 100%;
  height: 240px;
  line-height: 1.6;
  padding: 10px 12px;
  box-sizing: border-box;
  vertical-align: bottom;
}

.must {
  color: #dc3232;
}

small.errorMessage {
  font-size: 16px;
  color: #dc3232;
  display: block;
  line-height: 2;
}

form > p:last-of-type {
  text-align: right;
  position: relative;
}

form > p:last-of-type span.ajax-loader {
  position: absolute;
  top: 30px;
}
/* @media (max-width: 560px) {
  form > p:last-of-type span.ajax-loader {
    margin: 0 0 0 10px;
  }
} */

form > p:last-of-type {
  display: inline-block;
  position: relative;
}
form > p:last-of-type::after {
  content: "";
  width: 8px;
  height: 9.5px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 62%;
  right: 30px;
  transform: skewX(-10deg) rotate(-50deg);
  transition: 0.3s;
}
form > p:last-of-type:hover::after {
  right: 24px;
}

#btn {
  width: 220px;
  height: 64px;
  line-height: 62px;
  letter-spacing: 1.5px;
  font-family: din-2014, sans-serif;
  font-size: 14px;
  font-weight: 300;
  background: #fc6a09;
  margin-top: 40px;
  padding: 0 28px;
  text-align: left;
  border: 1px solid #000;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

span.wpcf7-spinner {
  display: none;
}

#contactContainer .wpcf7-response-output {
  font-weight: bold;
  color: #dc3232;
  border: none;
  text-align: center;
}



