@charset "utf-8";
/*共通設定*/
/*終わり*/  


/*<section class="form">*/
.form {
    padding: 120px 5vw;
}

.form-area {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    background-color: #FAF4E7;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-wrap {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(174,174,174,0.25);
}

.form-dl {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.form-dl dt {
    width: 25%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
}

.required {
    background-color: #B8932F;
    color: #fff;
    font-size: 12px;
    padding: 0 8px;
}

.any {
    background-color: #C7C6C6;
    color: #fff;
    font-size: 12px;
    padding: 0 8px;
}

.form-dl dd {
    width: 70%;
    padding: 16px 0;
}

.radio-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.radio-btn .wpcf7-list-item {
    margin: 0 !important;
}

.input-text {
    font-size: 14px;
    padding: 4px 8px;
    font-family: "Noto Sans JP", sans-serif;
    border: solid 1px #D7DDE6;
    width: 100%;
}

.message {
    font-size: 14px;
    padding: 2px 8px;
    font-family: "Noto Sans JP", sans-serif;
    border: solid 1px #D7DDE6;
    width: 100%;
    height: 160px;
}

.consent-wrap {
    text-align: center;
    padding: 16px 0;
}

.privacy-link {
    color: #859A1F;
    border-bottom: solid 1px #859A1F;
}

.submit-btn-area {
    text-align: center;
}

.submit-btn {
    position: relative;
    font-size: 16px;
    max-width: 240px;
    transition: 0.2s;
    font-family: "Noto Sans JP", sans-serif;
    color: #442810;
}

.submit-btn::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url("../img/common/btn_arrow_black.svg");
    background-repeat: no-repeat;
    background-position: center;
    
}

.submit-btn:hover {
    cursor: pointer;
    opacity: 0.8;
}

.wpcf7-spinner {
    display: none !important;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  


/*<section class="form">*/
    .form-area {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
        padding: clamp(24px, 40vw / 10.24, 40px);
    }

    .form-wrap {
        padding: clamp(24px, 40vw / 10.24, 40px);
    }

    .form-dl {
        flex-direction: column;
    }

    .form-dl dt {
        width: 100%;
        padding: 16px 0 8px 0;
    }

    .form-dl dd {
        width: 100%;
        padding: 8px 0 16px 0;
    }
/*終わり*/
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
/*終わり*/  


/*<section class="form">*/
    .form {
        padding: 64px 5vw;
    }

    .form-area {
        padding: 24px clamp(16px, 24vw / 5.99, 24px);
    }
/*終わり*/

}
