@charset "utf-8";

.bg-wrap {
    border-radius: 100px 100px 0px 0px;
    background: #fffeea;
}

.bg-wrap .inner-16 {
    padding: 82px 0 100px;
    width: 52%;
    margin: 0 auto;
}

.bg-wrap .inner-16 .sec-title {
    gap: 24px;
}



.bg-wrap .inner-16 .ttl-ja {
    font-family: var(--main);
    font-weight: 700;
    font-size: 32px;
    font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
    letter-spacing: 0.08em;
    line-height: calc(40/32);
    text-align: left;
    color: #212121;
}

.bg-wrap .desc p {
    font-family: var(--main);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 26px;
    text-align: left;
    color: #212121;
}

.bg-wrap .desc {
    margin-bottom: 80px;
}



.privacyBox {
    height: 180px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 5%;
    border: 1px solid #898989;
    background-color: #FFFFFF;
    overflow-y: scroll;
    overflow-x: hidden;
    font-size: 16px;
    margin-bottom: 20px;
}



form .policy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

form .policy input {
    width: 24px;
    height: 24px;
    appearance: auto;
    font-size: clamp(0.75rem, 0.584rem + 0.35vw, 1rem);
}

form .policy label {
    margin: 0;
    font-family: var(--main);
    font-weight: 400;
    font-size: 16px;
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    letter-spacing: 0.04em;
    line-height: calc(26/16);
    color: #212121;
}

.privacyBox a {
    color: #000 !important;
    font-weight: 400;
}



.labelText02 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #000;
    margin: 0;
}

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;

    width: 24px;
    height: 24px;
    border: 1px solid #b2b2b2;
    border-radius: 0;
    /* 四角 */
    background-color: #fff;

    display: inline-grid;
    place-content: center;

    cursor: pointer;
    margin-right: 16px;
}

input[type="radio"]::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #333;
    transform: scale(0);
    transition: transform 0.2s ease;
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

.requiredText {
    font-family: var(--main);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #d32e26;
    font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
    line-height: clamp(1.75rem, 1.686rem + 0.26vw, 2rem);
}

.requiredText.nini {
    background-color: #ADADAD;
}

.formTh {
    display: flex;
    align-items: center;
}

.formTh.mt15 {
    margin-top: 15px;
}

.formRow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: flex-start;
}



.labelText01 {
    font-family: var(--main);
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: clamp(1.125rem, 1.093rem + 0.13vw, 1.25rem);
    color: #212121;
    margin-bottom: 0;
}

input[type="text"],
input[type="email"],
select,
textarea {
    padding: 17px 40px;
    width: 100%;
    border-radius: 10px;
    background: #e8e8e8;
    color: #000;
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px;
    border: none;
}

textarea {
    min-height: 400px !important;
    max-height: 400px;
}



.formWrap .column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.formBtnTd {
    background: #d32e26;
    max-width: 320px;
    width: 100%;
    height: 76px;
    border-radius: 6px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #FFF;
    padding: 0;
    position: relative;
    transition: 0.3s;
    line-height: 1;
    border: none;
    margin: 48px auto 0;
}

.formBtnTd:hover {
    opacity: 50%;
}

button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #d32e26;
    display: block;
    color: #FFF;
    border: none;
    font-family: var(--main);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 72px;
    text-align: center;
}



.thanks .sec-title {
    display: block;
    font-family: var(--main);
    font-weight: 700;
    font-size: 48px;
    font-size: clamp(1.75rem, 1.447rem + 1.29vw, 3rem);
    letter-spacing: 0.08em;
    text-align: center;
    color: #212121;
    margin-bottom: 80px;
}

.thanks .desc {

    margin-bottom: 40px;
}

.thanks .desc p {
    text-align: center;
}

.thanks .linkbtn {
    cursor: pointer;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    background: #d32e26;
    display: block;
    color: #FFF;
    border: none;
    font-family: var(--main);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 72px;
    text-align: center;
    transition: .4s ease;
}

.thanks .linkbtn:hover {
    opacity: 50%;
}

@media (max-width: 1180px) {

    .contact-main .inner,
    .thanks .inner {
        max-width: 90%;
        width: 100%;
        margin: auto;
    }

    .contact-main .inner .sec-intro .catch {
        max-width: 92%;
        width: 100%;
        margin: auto auto 24px;
    }

    .bg-wrap .inner-16 {
        max-width: 90%;
        width: 100%;
    }
}

@media (max-width: 960px) {

    .bg-wrap {
        border-radius: 40px 40px 0px 0px;
    }



    .contact-main .inner {
        padding: 40px 0 120px;
    }

    .contact-main .inner .sec-intro .catch {
        text-align: left;
        word-break: auto-phrase;
    }



    .formRow {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding-bottom: 19px;
    }

    .formWrap .column {
        gap: 19px;
    }

    .radioArea {
        flex-direction: column;
        align-items: flex-start;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        padding: 16px;
    }

    .formTd {
        width: 100%;
    }

    .formBtnTd {
        width: 90%;
        margin: auto;
    }

    .thanks .inner .sec-title {
        padding-bottom: 20px;
        margin-bottom: 24px;
        width: 100%;
    }
}