@charset "UTF-8";
/* Scss Document */
/* Scss Document */
input, select, textarea {
  padding: .5em;
  border: rgba(0, 0, 0, 0.3) 1px solid;
  font-family: "Noto Sans JP", "游ゴシック体","Yu Gothic", YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 1.6rem;
  letter-spacing: .1em;
  text-indent: .1em;
  line-height: 2.25;
}
@media only screen and (max-width: 640px) {
  input, select, textarea {
    font-size: calc((24/760)*100vw);
  }
}

input[size="20"] {
  width: 50%;
}
@media only screen and (max-width: 640px) {
  input[size="20"] {
    width: 100%;
  }
}

input[size="30"] {
  width: 80%;
}
@media only screen and (max-width: 640px) {
  input[size="30"] {
    width: 100%;
  }
}

textarea {
  width: 100%;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

.contact .required {
  color: #F00;
}
.contact_table {
  width: 100%;
  margin: 4.0rem 0;
}
@media only screen and (max-width: 640px) {
  .contact_table {
    margin: calc((50/760)*100vw) 0;
  }
}
.contact_table tr {
  border-bottom: rgba(0, 0, 0, 0.3) 1px solid;
}
.contact_table th, .contact_table td {
  padding: 1em 0;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
}
@media only screen and (max-width: 640px) {
  .contact_table th {
    width: 30%;
  }
}
.contact_table td {
  padding: 1em;
}
.contact_btn {
  margin: 4.0rem 0 0;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .contact_btn {
    margin-top: calc((20/760)*100vw);
  }
}
.contact_btn input {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  justify-content: flex-start;
  width: 38.0rem;
  height: 6.0rem;
  margin: 1.0rem auto;
  padding: .5em 2em;
  background: url("../images/common/arrow.png") top 50% right 2rem no-repeat;
  background-size: 2.8rem;
  border: rgba(0, 0, 0, 0.3) 1px solid;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .contact_btn input {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    width: calc((450/760)*100vw);
    height: calc((70/760)*100vw);
    margin: calc((10/760)*100vw);
    background-size: calc((30/760)*100vw);
    font-size: calc((30/760)*100vw);
    line-height: 1;
  }
}
.contact_btn input:hover {
  cursor: pointer;
  opacity: .6;
  transition: .5s;
  background: url("../images/common/arrow.png") top 50% right no-repeat;
}
