/* ------------------------------------------------------------
// Form Tag
------------------------------------------------------------ */
::-webkit-input-placeholder {
  color: #cccccc;
}

::-moz-placeholder {
  color: #cccccc;
}

label {
  display: flex;
  align-items: center;
  gap: 5px;
}
label input[type=text],
label input[type=email],
label input[type=tel] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  border-radius: 3px;
}
label textarea {
  width: 100%;
  min-height: 100px;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  border-radius: 3px;
}
label select {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid #cccccc;
}
label .selectdiv {
  position: relative;
  overflow: hidden;
  width: 250px;
  border: 1px solid #cccccc;
  border-radius: 2px;
  background: #ffffff;
}
label .selectdiv::before {
  position: absolute;
  top: 1em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333333;
  pointer-events: none;
}
label .selectdiv select {
  cursor: pointer;
  color: #333333;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  width: 100%;
  padding: 8px 38px 8px 8px;
  background: transparent;
  background-image: none;
  box-shadow: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
label .selectdiv select::-ms-expand {
  display: none;
}

.button-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 40px;
}
.button-box input[type=submit] {
  display: inline-block;
  width: 250px;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  margin: 0 auto;
  outline: none;
  background-color: #ffffff;
  position: relative;
  border: 1px solid #ffea00;
  transition: color 0.5s ease;
}
.button-box input[type=submit]::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ffea00;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.button-box input[type=submit]:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.button-box input[type=submit] span {
  position: relative;
  display: inline-block;
}
.button-box input[type=submit].return {
  background: #fafafa;
  border: 1px solid #cccccc;
}
.button-box input[type=submit].return::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.button-box input[type=submit].return:hover {
  color: #ffffff;
}
.button-box input[type=submit].return:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
@media print, screen and (max-width: 767px) {
  .button-box input[type=submit] {
    font-size: 16px;
    height: 50px;
    padding: 0 20px;
  }
}

/* ------------------------------------------------------------
// contact form
------------------------------------------------------------ */
.contact-form-box {
  margin: 170px 0 180px;
}
.contact-form-box .contact-ttl {
  font-size: 35px;
  font-weight: 500;
  color: #675952;
  text-align: center;
  margin-bottom: 100px;
}
@media print, screen and (max-width: 767px) {
  .contact-form-box {
    margin-bottom: 120px;
  }
  .contact-form-box .contact-ttl {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.contact-form-box p {
  text-align: center;
}
.contact-form-box .wpcf7-form-control-wrap {
  width: 100%;
}
.contact-form-box .contact-table {
  width: 100%;
  margin: 20px 0;
}
.contact-form-box .contact-table th,
.contact-form-box .contact-table td {
  text-align: left;
  vertical-align: top;
  padding: 20px;
  border: 1px solid #333333;
}
.contact-form-box .contact-table th {
  font-weight: 600;
  line-height: 1.2;
  width: 285px;
}
.contact-form-box .contact-table th span {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contact-form-box .contact-table th,
  .contact-form-box .contact-table td {
    display: block;
    width: 100%;
    border: none;
  }
  .contact-form-box .contact-table th {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    background: #fafafa;
  }
  .contact-form-box .contact-table th span {
    color: #999999;
  }
  .contact-form-box .contact-table td {
    padding: 15px 10px 40px;
  }
}

/* ------------------------------------------------------------
// privacy policy
------------------------------------------------------------ */
.privacy-box {
  margin-bottom: 240px;
}
.privacy-box .privacy-ttl {
  font-size: 35px;
  font-weight: 500;
  color: #675952;
  text-align: center;
  margin-bottom: 130px;
}
.privacy-box dl dt {
  display: inline-block;
  font-size: 23px;
  margin-top: 40px;
  padding-right: 5px;
  border-bottom: 1px solid #333333;
}
.privacy-box dl dd {
  margin-top: 20px;
}
.privacy-box dl dd ul {
  padding-left: 1.3em;
}
.privacy-box dl dd ul li {
  list-style-type: disc;
  margin-top: 0.1em;
}
@media print, screen and (max-width: 767px) {
  .privacy-box {
    margin-bottom: 120px;
  }
  .privacy-box .privacy-ttl {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .privacy-box dl dt {
    font-size: 20px;
    margin-top: 30px;
  }
  .privacy-box dl dd {
    margin-top: 10px;
  }
}

/* ------------------------------------------------------------
// terms
------------------------------------------------------------ */
.terms-box {
  margin-bottom: 150px;
}
.terms-box .terms-ttl {
  font-size: 35px;
  font-weight: 500;
  color: #675952;
  text-align: center;
  margin-bottom: 50px;
}
.terms-box dl dt {
  display: inline-block;
  font-size: 23px;
  margin-top: 40px;
  padding-right: 5px;
  border-bottom: 1px solid #333333;
}
.terms-box dl dd {
  margin-top: 20px;
}
.terms-box dl dd ul {
  padding-left: 1.3em;
}
.terms-box dl dd ul li {
  list-style-type: disc;
  margin-top: 0.1em;
}
@media print, screen and (max-width: 767px) {
  .terms-box {
    margin-bottom: 120px;
  }
  .terms-box .terms-ttl {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .terms-box dl dt {
    font-size: 20px;
    margin-top: 30px;
  }
  .terms-box dl dd {
    margin-top: 10px;
  }
}