/* travelge_contact.css */

.contact_mv{
  margin:40px 0;
}
.inner1000{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

/* form */
.order-form {
    border: 1px solid #2c5f40;
    border-radius: 10px;
    overflow: hidden;
}
.order-form dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}
.order-form dt {
    width: 300px;
    background-color: #4b7733;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}
.order-form dd {
    padding: 30px;
    width: calc(100% - 300px);
    background-color:#d7e2c7;
}
.order-form input,
.order-form select {
    border: 1px solid #66803f;
    width: 100%;
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
}
.order-form select {
    width: 60%;
}
.pax p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.pax p span {
    font-weight: bold;
    width: 12rem;
    font-size: 90%;
}
.pax p input {
    width: 6rem;
    text-align: center;
    margin-right: 1rem;
}
.order-form textarea {
    width: 100%;
    border-radius: 8px;
    padding: 16px;
}
.order-form input[type=radio] {
  display: none; 
}
.lbtn_wrap {
    display: flex;
    gap: 16px;
}
.order-form .lbtn{
  width: 200px;
}
.order-form label {
    width: 100%;
    margin: 5px;
    border:2px solid #2c5f40;
    background: #fff;
    color: #2c5f40;
    padding: 14px 0;
    border-radius: 8px;
    text-align: center;
    display: block;
}
.order-form label i{color:#fff;}
.order-form input:checked + label {
  background: #2c5f40;
  color: #fff;
}
.order-form input:checked + label::before{
  content:'\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right:5px;
}
.submit_btn {
    display: block;
    padding: 20px 0;
    border-radius: 10px;
    border: none;
    background: #2c5f40;
    color: #fff;
    font-weight: bold;
    width: 60%;
    margin: 32px auto 80px;
    font-size: 20px;
}
.btnBox {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 24px 0 60px;
}
.btnBox > div{
  width: 250px;
}
.btnBox > div button {
    width: 100%;
    padding: 16px 0;
    border-radius: 10px;
    border: 1px solid #2c5f40;
    background: #fff;
}
.btnBox > div button.input-confirm-form-submit-btn  {
    background:#2c5f40;  
    color:#fff;
}

.contact__top .thanks{
    width: 800px;
    margin: 15dvh auto;
    background: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
}
.contact__top .thanks b{
    color: #2c5f40;
    font-size: 24px;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
.thanks__info{
    background: #fff;
    padding: 32px;
    margin: 16px 0;
    box-shadow: 0 0 10px #ccc;
    border-radius: 8px;
}
.contact__top .thanks a{
    background: #2c5f40;
    width: 300px;
    display: block;
    margin: 0 auto;
    color: #fff;
    padding: 16px 0;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
}

@media only screen and (max-width: 768px){
  
  .contact_mv {
    height: auto;
  }
  .order-form dt {
    width: 100%;
  }
  .order-form dd{
    width: 100%;
  }
  .order-form {
    margin: 0 10px;
  }  
  .order-form select{
    width: 100%;
  }
  .lbtn_wrap {
      display: block;
  }  
  .order-form .lbtn {
      width: 100%;
  }  
  .pax p span {
      width: 10rem;
  }  
  .submit_btn{width: 90%;}
  .btnBox{padding: 24px 12px 60px;}
  .contact__top .thanks {
      width: 100%;
      background: #fff;
  }  
  .contact__top .thanks{
      margin:0;    
  }
  .thanks__info {
      background: #f5f5f5;
      box-shadow: none;
  }  
}

