@charset "UTF-8";



.text{
   text-align: center;
   
}
.tel_box{
    border: 1px solid var(--blue);
    margin: 15px auto;
    max-width: 340px;
    line-height: 1.6;
    padding: 10px;
    
}
.tel_box span{
    color: var(--blue);
    font-size:16px;
}


/* === 共通・PC版（デフォルト） === */
.form_table {
  max-width: 900px;
  border-collapse: collapse;
  font-size: 16px;
  table-layout: fixed;
  margin: 60px auto 60px;
  border: 1px solid #e8e8e8;
}
.form_table tr{
   border-bottom: 1px solid #e8e8e8;
}
.form_table th,
.form_table td {
  padding: 20px 15px;
  text-align: left;
  vertical-align: top;
  border: none;
}

.form_table th {
  width: 25%;
  white-space: nowrap;
  background: #f5f6fa;
  vertical-align: middle;
}
.form_table input[type="text"].post-code {
  width: 240px;
    margin-bottom: 10px;
}


.form_table td {
  width: 75%;
}

.form_table input[type="text"],
.form_table input[type="email"],
.form_table input[type="tel"],
.form_table select,
.form_table textarea {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.required {
  display: inline-block;
  color: #e20000;
  font-size: 0.75em;
  font-weight: 600;
  margin-left: 0.5em;
  vertical-align: middle;
}
.send-button {
    display: block;
    margin: 0 auto 0;
    padding: 10px 40px;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
    background: linear-gradient(220deg, #020A5F 0%, #1F51C4 75%);
}
/* === タブレット（〜768px） === */
@media (max-width: 1024px) {
.form_table th {
  width: 30%;
}
.form_table td {
  width: 70%;
}

}

/* === タブレット（〜768px） === */
@media (max-width: 768px) {
  .form_table {
    font-size: 15px;
  }

  .form_table th,
  .form_table td {
    display: table-cell;
    width: auto;
    padding: 8px 10px;
  }
.form_table th {
  width: 180px;
}

.form_table td {
  width: auto;
}
}

/* === スマホ（〜599px） === */
@media (max-width: 599px) {
  .form_table,
  .form_table tbody,
  .form_table tr,
  .form_table th,
  .form_table td {
    display: block;
    width: 100%;
  }

  .form_table tr {
    margin-bottom: 20px;
  }

  .form_table th {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .form_table td {
    padding-top: 0;
  }

  .send-button {
    width: 100%;
    font-size: 16px;
    padding: 14px;
  }
.form_table textarea {
    height:140px;
    }
}
