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

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

label {
  display: flex;
  align-items: center;
  gap: 5px;
}
label input[type=text] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
@media (max-width: 767px) {
  label input[type=text] input[type=text] {
    padding: 12px 16px;
  }
}
label textarea {
  width: 100%;
  min-height: 100px;
  padding: 10px 14px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.button-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
.button-box input[type=button] {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  width: 388px;
  height: 60px;
  background: #231815;
  transition: 0.3s;
}
.button-box input[type=button]:hover {
  background: #38a1db;
}
@media screen and (max-width: 767px) {
  .button-box input[type=button] {
    font-size: 18px;
    width: 300px;
    height: 50px;
  }
}
.button-box input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  width: 388px;
  height: 60px;
  background: #231815;
  transition: 0.3s;
}
.button-box input[type=submit]:hover {
  background: #38a1db;
}
@media screen and (max-width: 767px) {
  .button-box input[type=submit] {
    font-size: 18px;
    width: 300px;
    height: 50px;
  }
}

.mailform-txt {
  text-align: center;
  margin-bottom: 40px;
}

.input-content {
  text-align: center;
  margin-bottom: 80px;
}

.thanks-txt {
  text-align: center;
}

/* ------------------------------------------------------------
// table Layout
------------------------------------------------------------ */
.contact-txt {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contact-txt {
    text-align: left;
  }
}

.contact-table {
  width: 100%;
  margin: 20px 0;
  border-bottom: 1px solid #231815;
}
.contact-table tr {
  display: grid;
  grid-template-columns: 260px auto;
}
.contact-table tr th,
.contact-table tr td {
  text-align: left;
  vertical-align: top;
  padding: 1.5em 0.5em;
  border-top: 1px solid #231815;
}
.contact-table tr th span,
.contact-table tr td span {
  font-size: 14px;
}
.contact-table tr th {
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .contact-table tr {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .contact-table tr th,
  .contact-table tr td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .contact-table tr th {
    font-weight: 500;
    padding: 0.6em 0.5em;
    background: #fafafa;
  }
  .contact-table tr td {
    padding: 1em 0.5em 2em;
  }
}

/* ------------------------------------------------------------
// privacy policy
------------------------------------------------------------ */
.privacy-box dl dt {
  display: inline-block;
  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 dl dt {
    margin-top: 30px;
  }
  .privacy-box dl dd {
    margin-top: 10px;
  }
}

/* ------------------------------------------------------------
// terms
------------------------------------------------------------ */
.terms-box dl dt {
  display: inline-block;
  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;
}
.terms-box dl:first-child dt {
  margin-top: 0;
}
@media print, screen and (max-width: 767px) {
  .terms-box dl dt {
    margin-top: 30px;
  }
  .terms-box dl dd {
    margin-top: 10px;
  }
}