.contact_section {
  margin: 100px 0;
}

.contact_section h2 {
  text-align: center;
  font-size: 30px;
  color: #606060;
  font-weight: normal;
}

.contact_wrapper{
  padding: 0 10%;
}

.txt_box {
  width: 55%;
  min-height: 150px;
  padding: 8px 2.5% 8px 2.5%;
  border-radius: 5px;
  background-color: rgba(0,0,0,.05);
  box-shadow: 0 0 3px rgba(0,0,0,.2);
  position: relative;
  left: 50%;
  margin-left: -30%;
}

.contact_wrapper form {
  padding: 50px 0;
  width: 80%;
  position: relative;
  left: 50%;
  margin-left: -40%;
  text-align: left;
}

.contact_wrapper form table {
  width: 100%;
}

.contact_wrapper form table th,
.contact_wrapper form table td {
  padding: 20px 0;
  border-bottom: 2px dotted #606060;
}

.contact_wrapper form table th {
  font-weight: normal;
  color: #606060;
  width: 30%;
}

.contact_wrapper form table td {
  font-weight: normal;
  color: #606060;
  width: 70%;
}

.contact_wrapper form table input[type="text"] {
  height: 40px;
  width: 90%;
  line-height: 30px;
  font-size: 15px;
  border: 2px solid #606060;
  border-radius: 20px;
  padding: 0 15px;
}

.contact_wrapper form table input[type="text"]:focus {
  outline: none;
  border: 2px solid #F0A911;
}

.contact_wrapper form table input[type="date"] {
  height: 40px;
  width: 160px;
  line-height: 30px;
  font-size: 15px;
  border: 2px solid #606060;
  border-radius: 20px;
  padding: 0 15px;
}

.contact_wrapper form table input[type="date"]:focus {
  outline: none;
  border: 2px solid #F0A911;
}

.contact_wrapper form table input[type="checkbox"] {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  position: relative;
  top: 6px;
  margin-right: 10px;
  border: 2px solid #606060;
  transition: all .2s;
}

.contact_wrapper form table input[type="checkbox"]:checked {
  background-color: #F0A911;
  border: 2px solid #fff;
  transform: scale(1.2);
}

.contact_wrapper form table input[type="radio"] {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  top: 6px;
  margin-right: 10px;
  border: 2px solid #3292C0;
  transition: all .2s;
}
.contact_wrapper form table input[type="radio"]:checked {
  background-color: #F0A911;
  border: 2px solid #fff;
  transform: scale(1.2);
}

.contact_wrapper form table select {
  width: 90%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  height: 30px;
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 10px;
  border: 0;
  background-color: #eee;
  border-radius: 15px;
}

.contact_wrapper form table textarea {
  height: 100px;
  width: 90%;
  font-size: 15px;
  border: 2px solid #606060;
  border-radius: 20px;
  padding: 10px 20px;
  resize: none;
}

.contact_wrapper form table textarea:focus {
  outline: none;
  border: 2px solid #F0A911;
}

.form_btn {
  display: inline-block;
  position: relative;
  left: 50%;
  margin-left: -100px;
  background-color: #3292C0;
  color: #fff;
  font-weight: normal;
  padding: 15px 0;
  width: 200px;
  text-align: center;
}

.form_btn::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: rgba(0,0,0,.3);
}

.contact_wrapper form input[type="submit"] {
  display: none;
}

.btn_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.btn_wrapper .form_btn {
  display: inline-block;
  position: relative;
  left: 0;
  margin-left: 0;
  margin: 5px;
  background-color: #3292C0;
  background-color: #333;
  color: #fff;
  font-weight: normal;
  padding: 15px 0;
  width: 200px;
  text-align: center;
  font-size: 16px;
}

.schoolhouse_select div,
.children_count_select div {
  margin-top: .4em;
}
.schoolhouse_select div,
.schoolhouse_select div a,
.children_count_select div {
  color: #f00;
}
.schoolhouse_select div a:hover {
  text-decoration: underline;
}

.total_amount_table .total_amount_detail .item_name {
  width: 50%;
}

.total_amount_table .total_amount_detail .item_price_interval {
  width: 25%;
}

.total_amount_table .total_amount_detail .item_price {
  width: 25%;
  text-align: right;
}

.total_amount_table .total_amount .item_name {
  width: 35%;
  text-align: right;
  border-bottom: none;
}

.total_amount_table .total_amount .item_price {
  width: 30%;
  font-weight: bold;
  text-align: right;
  border-bottom: none;
}

@media (min-width: 768px) {
  .schoolhouse_select,
  .children_count_select {
    display: flex;
    align-items: center;
  }

  .schoolhouse_select div,
  .children_count_select div {
    margin-top: 0;
    margin-left: 14px;
    font-size: .8em;
  }
}

.supplement_area {
  margin-top: 30px;
}

.supplement_area h3{
  color: #606060;
  font-weight: normal;
  text-align: left;
}

@media (max-width: 750px) {

  .contact_section h2 {
    font-size: 20px;
  }

  .contact_wrapper form {
    padding: 50px 0;
    width: 100%;
    position: relative;
    left: 50%;
    margin-left: -50%;
    text-align: left;
  }

  .txt_box {
    width: 90%;
    min-height: 150px;
    /*padding: 0 .5%;*/
    /*left: 50%;*/
    /*margin-left: -50%;*/
    left: 0;
    margin: 0 auto;
  }
  .txt_box a {
    color: #3292C0;
  }

  .contact_wrapper form table th,
  .contact_wrapper form table td {
    font-size: 13px;
  }

  .total_amount_table .total_amount_detail .item_name {
    width: 40%;
    font-size: 11px;
  }

  .total_amount_table .total_amount_detail .item_price_interval {
    width: 30%;
    font-size: 11px;
  }

  .total_amount_table .total_amount_detail .item_price {
    width: 30%;
    font-size: 11px;
  }

  .total_amount_table .total_amount .item_name {
    width: 20%;
    font-size: 11px;
  }

  .total_amount_table .total_amount .item_price {
    width: 60%;
    font-size: 11px;
  }

}
