@charset "utf-8";

.page-wrapper {
    width: min(85%, 1154px);
    margin: 0 auto;
    padding: 80px 0 160px;
}

.sec-intro {
    padding-bottom: 56px;
    border-bottom: 1px solid #d1d1d1;
}

.sec-intro .catch {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
    line-height: calc(32/20);
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}

.sec-intro .red {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
    text-align: center;
    color: #f00;
    margin-bottom: 40px;
}

.sec-intro .tel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    transition: var(--default);
}

.sec-intro .tel:hover {
    opacity: 50%;
}

.sec-intro .tel .shop {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    color: #05a6c0;
}

.sec-intro .tel .num {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: #000;
}

.sec-intro .tel .time {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    color: #000;
}

.sec-main {
    padding: 56px 0 0;
}

.sec-main .title {
    gap: 32px;
    margin-bottom: 80px;
}

.sec-main .desc p {
    font-size: 14px;
    line-height: 2;
    text-align: center;
}


.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-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: min(90%, 960px);
    margin: 0 auto;
}



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(--font-sans);
    font-weight: 700;
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    color: #000;
}

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



.labelText02 {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    color: #000;
    margin: 0;
}

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

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

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

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

.radioArea {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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(--font-sans);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    color: #fff;
    background: #05a6c0;
    padding: 4px 8px;
    line-height: 1;
}

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

.formTh {
    display: flex;
    gap: 40px;
    align-items: center;
    padding-left: 35px;
    position: relative;
}

.formTh::before {
    content: "";
    width: 7px;
    height: 100%;
    background: #05a6c0;
    position: absolute;
    left: 0;
    top: 0;
}

.formTh label {
    margin-bottom: 0;
}

.formTh.ais {
    margin-top: 18px;
    align-items: flex-start;
}

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

.formRow {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 7px;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid #909090;
}

.formRow.ais {
    align-items: flex-start;
}

.formRow.ais .formTh {
    margin-top: 15px;
}




.labelText01 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

input[type="text"],
input[type="email"],
select,
textarea {
    padding: 13px 19px;
    width: 100%;
    background: #EEEEEE;
    color: #000;
    -webkit-appearance: none;
    appearance: none;
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    border: none;
}

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



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

.formBtnTd {
    max-width: 223px;
    width: 100%;
    height: 68px;
    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: 8px auto 0;
}

.formBtnTd:hover {
    opacity: 50%;
}

button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16px;
    color: #000;
    text-align: center;
    border-radius: 50px;
    background: #fff;
    border: 2px solid #909090;
}

.submitbtn .formBtnTd {
    grid-column: 1/3;
}


.cta {
    display: none;
}

.thanks {
    padding-bottom: 0;
    border: none;
}

.thanks .title {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
    text-align: center;
    color: #000;
    margin-bottom: 40px;
}

.thanks .desc02 {
    margin-bottom: 40px;
}

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

.linkbtn {
    max-width: 255px;
    width: 100%;
    margin: 40px auto 0;
    background: #fff;
    border: 2px solid #909090;
    border-radius: 50px;
    transition: var(--default);
}

.linkbtn:hover {
    opacity: 50%;
}

.linkbtn a {
    padding: 26px 0;
    display: block;
    width: 100%;
    height: 100%;
}

.linkbtn .link-text {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #000;
}

@media (max-width: 1023px) {

    .form-column,
    .formTh,
    .formTd {
        width: 100%;
    }

    .page-wrapper {
        width: 90%;
    }

    .radioArea {
        gap: 30px;
    }

    .formRow {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}


@media (max-width: 767px) {}