@charset "UTF-8";

/* ページトップタイトル---------------- */

.img-area img{
    width: 100%;
    object-position: 0 25%;
}

/* 予約フォーム----------------------- */
form,input,select,textarea{
  font-size: 15px;
}
input,
select{
  height:38px;
}
.reserve-title{
    font-size: 2em;
    text-align: center;
    border-bottom: 0;
    margin-bottom: 40px;
}

label{
    width: 30%;
    padding-left: 47.52px;
}

input {
    width: 100%;
    padding-inline-start: 10px;
    border: 0;
    border-radius: 0;
}

.required{
    padding: 0;
}

.required::before {
    content: "必須";
    color: #D64141;
    border: 1px solid#D64141;
    font-size: 0.8em;
    padding: 0.3em 0.5em;
    border-radius: 0.5em;
    margin-right: 11px;
    }

select{
    color: var(--black);
    margin-right: 10px;
    border: 0;
    padding-inline-start: 5px;
    border-radius: 0;
    background-color: var(--white);
}

#number,
#date,
#purpose{
    width: 180px;
}

textarea{
    width: 100%;
    height: 100px;
    border: 0;
    border-radius: 0;
    padding: 5px 10px;
}

.lead-form{
    text-align: center;
    font-size:20px;
  }

  form{
    margin:0 auto;
  }
  
  .item{
    overflow: hidden;
    margin-bottom: 30px;
  }

  .label{
    float: left;
  }

  .wpcf7-form-control-wrap{
    float: left;
    width: 70%;
  }
  [data-name="date"] {
    width: 200px;
  }
  [data-name="time"]{
    width: 200px;
  }
#purpose{
    width: 100%;
  }

  .btn-area{
    text-align: center;
    padding-top: 20px;
  }

  input[type="submit"]{
    background: var(--dullpink);
    border: none;
    border-radius: 24px;
    color: white;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    width: 300px;
    height:48px;
    line-height: 1
    ;
  }

  input[type="reset"]{
    background: var(--white);
    border: none;
    font-weight:bold;
    padding: 10px 20px;
    margin: 0 5px;
  }

  input:hover{
    opacity: .8;
    transition : all 0.3s ease 0s;
}

@media screen and (max-width:999px) {

    .reserve-title{
        font-size: 23px;
        margin-bottom: 20px;
    }

    .required::before{
        display: none;
    }
    
    .required::after {
        content: "必須";
        color: #D64141;
        border: 1px solid#D64141;
        font-size: 0.8em;
        padding: 0.3em 0.5em;
        border-radius: 0.5em;
        margin-left: 5px;
        }
    
    .item{
        margin-bottom: 20px;
    }

    /* #name,
    #email,
    #time{
        height: 40px;
    }

    #number,
    #date,
    #purpose{
        height: 40px;
    } */

    label{
        width: 100%;
        padding: 0;
        margin-bottom: 5px;
    }

    .wpcf7-form-control-wrap{
        width: 100%;
    }


    .btn-area{
        padding-top: 25px;
      }

}

/* リセットcss --------------------*/

#name:focus,
#email:focus,
#number:focus,
#date:focus,
#time:focus,
#purpose:focus,
textarea:focus {
  outline-offset: 0;
  outline: none;
}

@media screen and (max-width:999px) {
  #number,
    #date,
    #purpose,select{
      width: 100%;
    }
        #date{
          margin-bottom: 20px;
        }
    /* input */
    #name,#email,#number {
        padding: 0;
        border: none;
        border-radius: 0;
        outline: none;
        background: none;
        box-shadow: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--white);
        padding-inline-start: 5px;
        font-size: 16px;
      }
    
    /* select */
        #select-container{
        position: relative;
        display: inline-block;
        border-radius: 0;
      }
      
      #date,#time,#purpose{
        padding: 0 10px;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        color: #000;
        font-size: 16px;
      }
      
      #time::after,#purpose::after{
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #000;
        transform: translateY(-50%);
      }
    
      /* textarea */
    
      .input{
        width: 100%; /* Set the width */
        padding: 10px; /* Set padding */
        border-radius: 0;
        resize: vertical; /* Allow vertical resize */
        outline: none; /* Remove outline */
        box-sizing: border-box; /* Include border and padding in the element's dimensions */
        margin-bottom: 20px;
        font-size: 16px !important;
      }

      .wpcf7-form-control-wrap{
        font-size: 16px;
      }
    
    }

/* フッター-------------------------- */

.footer-area{
    margin-top: 60px;
}

@media screen and (max-width:999px) {
	
.footer-area{
    margin-top: 40px;
}
}