@charset "UTF-8";
@import url(../css/reset.css);
@import url(../css/base.css);
@import url(../css/header.css);
@import url(../css/footer.css);

.sp-hide {
    display: block;
}
.pc-hide {
    display: none;
}

@media screen and (max-width:768px) {
    .sp-hide {
        display: none;
    } 
    .pc-hide {
    display: block;
    }
}

/* ここから */
.hero {
    background-image: url(../img/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -95px;
    height: 250px;
    width: 100%;
}
.head {
    text-align: center;
    margin-top: 36px;
}
.heading {
    font-size: 3.5em;
    letter-spacing: 0.05em;
}
.lead {
    margin-top: 15px;
    font-size: 1.4em;
    letter-spacing: 0.08em;
}
@media screen and (max-width:768px) {
    .hero {
        height: 158px;
        background-position: center;
    }
    .heading {
           font-size: 1.5em;
    }
    .lead {
        font-size: 0.9em;
        text-align: left;
    }
}





.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.inner {
    max-width: 600px;
    margin-inline: auto;
}


.contact-form {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
    font-size: 1.2em;
    border-radius: 30px;
    width: 100%;
    max-width: 700px;
    margin: 56px auto;
    padding: 35px;
}



.required {
    background-color: rgb(233, 0, 0);
    color: #fff;
    display: inline-block;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 8px;
    line-height: 1;
    font-size: 12px;
}

.input-block {
    margin-bottom: 25px;
}
/* .form-label {
    font-size: 14px;
} */
.input-col {
    display: flex;
    gap: 35px;
    .input-block {
        &:nth-of-type(1) {
            margin-bottom: 10px;
        }
    }

}
.input-item {
    max-width: 250px;
}

input,
textarea,
select {
    margin-top: 6px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #adadad;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 16px
}
textarea {
    resize: vertical;
}
.count-text {
    font-size: 12px;
    line-height: 1;
}

.checkboxList {
    display: flex;
    flex-wrap: wrap;
}
.checkboxList li {
    width: 50%;
}

    .checkboxList label {
        display: inline-block;
        padding: 0.1em 0.5em 0.1em 0.5em ;
        border-radius: 0.3em;
        cursor: pointer;
      }
      .checkboxList label:hover {
        background-color: #999;
      }
      input:checked {
         background-color: #999;
      }
      .checkboxList [type="checkbox"] {
        transform: scale(1);
        transform-origin: right bottom;
        margin-right: 0.5em;
        width: auto;
      }



      .check {
        text-align: center;
      }

      .check input[type="checkbox"] {
        width: auto;
      }

    .submit-btn {
        max-width: 450px;
        height: 45px;
        background-color: #2988ff;
        border: 1px solid #2988ff;
        color: #fff;
        display: block;
        margin-inline: auto;
        cursor: pointer;
        transition: all 0.15s;
        border-radius: 5px;
        letter-spacing: 0.05em;
    }

    .submit-btn:hover {
        background-color: #fff;
        color: #2988ff;
    }




@media screen and (max-width:768px) {
    .wrapper {
        padding: 0 10px;
    }
    .contact-form {
        font-size: 16px;
        border-radius: 16px;
        padding: 25px 3%;
    }
    .input-col {
        flex-direction: column;
        gap: 10px;
    }
    .form-label {
    font-size: 13px;
    }
}








input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}


input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

input[type="date"]{
    width: 200px;
    position: relative;
}


.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}