@charset "UTF-8";
/* constance variable */
/* noto sans font weight */
/* general method */
.contact {
  width: 800px;
  margin: 3.125em auto 6.25em;
}
@media only screen and (max-width: 799px) {
  .contact {
    width: 94%;
  }
}

p {
  margin-bottom: 2.14286em;
  font-size: 0.875em;
}

table {
  width: 100%;
  margin-bottom: 1.875em;
}
table th, table td {
  border-bottom: solid 1px #ddd;
  padding: 0.9375em 0;
}
@media only screen and (max-width: 736px) {
  table th, table td {
    display: block;
  }
}
table th {
  font-size: 1em;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}
table th.need:before {
  background: #ed3a3a;
  content: "必須";
  padding: 0.25em 0.5em;
  color: #fff;
  font-size: 0.75em;
  margin-right: 0.5em;
}
@media only screen and (max-width: 736px) {
  table th {
    padding-bottom: none;
    border-bottom: none;
  }
}
table td {
  padding-left: 1.25em;
  font-size: 0.875em;
}
@media only screen and (max-width: 736px) {
  table td {
    padding-top: none;
  }
}
table input[type=text],
table textarea {
  border: solid 1px #ccc;
  font-size: 0.85714em;
}
table input[type=text] {
  padding: 0.5em;
}
table input[type=text][name^=name], table input[type=text][name^=kana] {
  width: 15em;
}
table input[type=text][name^=name]:last-child, table input[type=text][name^=kana]:last-child {
  margin-left: 1.5em;
}
table input[type=text][name=mail], table input[type=text][name=phone], table input[type=text][name=city], table input[type=text][name=addr] {
  width: 60%;
}
table input[type=radio] {
  margin-right: 0.5em;
}
table textarea {
  width: 60%;
}
table textarea[name=notes] {
  height: 10em;
}
@media only screen and (max-width: 736px) {
  table textarea {
    width: 80%;
  }
}

.btn {
  text-align: center;
}
.btn a {
  display: inline-block;
  width: 30%;
  padding: 0.75em 0;
  color: #fff;
  font-size: 1.125em;
  font-weight: 500;
  text-align: center;
}
.btn a.submit {
  background: #6dc0e5;
}
.btn a.return {
  background: #999;
}
