@charset "UTF-8";

/* ------------------------------------------------------------------------------------------ */
/* mailform */
/* ------------------------------------------------------------------------------------------ */
header#mainHeader {
  position: static;
}
main#mailform {
  padding-top: 0;
}
#mailform .contentWrap {
  width: 100%;
  max-width: 890px;
}
#mailform .contentWrap h1 {
  margin-bottom: 10px;
}
#mailform .contentWrap .hissu {
  color: #d9261f;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
#mailform .contentWrap span.red {
  color: #d9261f;
}
#mailform .formArea {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
  padding: 50px;
}
#mailform .formArea .errorTxt {
  color: #d9261f;
  font-weight: bold;
  margin-bottom: 20px;
}
#mailform .formArea .formArea_txt {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 20px;
  background: #333;
}

#mailform .table {
  width: 100%;
}
#mailform .table th {
  width: 200px;
  font-weight: normal;
  text-align: left;
  padding: 20px 20px 20px 0;
  border-bottom: 2px solid #222;
}
#mailform .table td {
  width: calc( 100% - 200px );
  font-weight: normal;
  text-align: left;
  padding: 15px 0;
  border-bottom: 2px solid #ddd;
}

#mailform .button_box {
  margin-top: 50px;
}
#mailform .button_box input {
  width: 300px;
  height: 70px;
  display: block;
  margin: 20px auto 0;
  padding-top: 2px;
  color: #fff;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  background: #d9261f;
  border: none;
  border-radius: 35px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
#mailform .contentWrap h1 {
  font-size: 18px;
}
#mailform .contentWrap .hissu {
  margin-bottom: 30px;
}
#mailform .formArea {
  padding: 20px;
}
#mailform .formArea .formArea_txt {
  font-size: 14px;
  padding: 10px;
}
#mailform .table,
#mailform .table tbody,
#mailform .table tr {
  width: 100%;
  display: block;
}
#mailform .table th {
  display: block;
  width: 100%;
  padding: 20px 0 0 0;
  border-bottom: none;
}
#mailform .table td {
  display: block;
  width: 100%;
  padding: 0 0 20px 0;
}

#mailform .button_box {
  margin-top: 30px;
}
#mailform .button_box input {
  width: 250px;
  height: 60px;
  margin: 20px auto 0;
  padding-top: 2px;
  border-radius: 30px;
  font-size: 18px;
}
}


/* ----------------------------------------------------------
    フォーム系
------------------------------------------------------------- */
input, textarea, select {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    *font-size: 14px;
}
input, button {
    line-height: normal;
    vertical-align: middle;
}

input[type=text],
input[type=password],
textarea {
    width : 100% ;
    padding: 5px;
    background: #f6f6f6;
    border: none;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus { border: 1px solid #209dd9; }

input[type=button] { cursor: pointer; }

.box__ttl input[type=button] {
    margin-right: 5px;
    height: 26px;
    line-height: 26px;
}

input[type=checkbox] { cursor: pointer; }

input[type=button]:disabled,
input[type=checkbox]:disabled { cursor: default; }

textarea {
    width : 100% ;
    overflow: auto;
    vertical-align: top;
}
select {
    padding: 2px;
    line-height: normal;
    background: #fff;
}
label { cursor: pointer; }
legend {
    *margin-left: -7px;
    color: #333;
}
