
/* contact */
/********************************************/
section.contents-contact .text {
    width: 100%;
    max-width: 800px;
    padding-top: 20px;
    padding-bottom: 20px;
}
section.contents-contact .text:before {
    position: absolute;
    top: 0;
    right: 50%;
    width: 400%;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, #f16122, #f16122 2px, transparent 2px, transparent 5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
    transform: translateX(20px);
    content: "";
}
@media only screen and (max-width: 750px) {
    section.contents-contact .text {
        padding-top: 4vw;
        padding-bottom: 4vw;
        width: 90%;
    }
    section.contents-contact .text:before {
        right: 5%;
        transform: none;
    }
}


form{
  width: 100%;

}
.form-list {
  width: 100%;
}

fieldset {
  display: flex;
  margin-bottom: 20px;
}

fieldset .input-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

fieldset .form-label {
  flex: 0 0 200px;
  font-size: 16px;
}

fieldset input[type=text],
fieldset select,
fieldset textarea {
  flex: 1;
  width: 100%;
  max-width: 450px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

fieldset select {
  max-height: 3em;
  background-color: #fff;
}

fieldset input[type=radio] {
  transform: scale(1.3);
  margin-right: 5px;
}

fieldset .radio-group,
fieldset .phone-group {
  display: flex;
  align-items: center;
}

fieldset .phone-group select {
  max-width: 150px;
}

fieldset .phone-group input[type=text]{
  max-width: 250px;
}

fieldset .phone-group span {
  margin: 0 10px;
}

fieldset .example {
  font-size: 13px;
  margin-left: 10px;
}

.error,
.common-error {
  color: #ff0000;
  margin-top: 5px;
}

.submit-button {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.submit-button .btn {
    display: inline-block;
    background-color: #eb5c02;
    padding: 0.3em 2.3em;
    border-radius: 9999px;
    line-height: 1.2;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all .5s ease;
    border: none;
    cursor: pointer;
}
.submit-button .btn.btn-reset {
    background-color: #d8d2c4;
}
 
.submit-button .btn:hover {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
}

@media (max-width: 750px) {
  fieldset {
    flex-direction: column;
  }
  fieldset .form-label {
    flex: 1;
    font-size: 3.2vw;
  }
  fieldset .example {
    font-size: 3.0vw;
  }
}
