@charset "utf-8";

.page-wrapper {
    border-bottom: 1px solid #b1b1b1;
}

.page-wrapper>.inner {
    width: min(85%, 1074px);
    margin: 0 auto;
    padding: 80px 0 120px;
    display: flex;
    flex-direction: column;
    gap: 80px;

}

.sec-intro {
    background: url(/system_panel/uploads/images/20260401204424187198.jpg) no-repeat center/cover;
}

.sec-intro .telwrap {
    padding: 40px 140px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sec-intro .telwrap .item {
    display: flex;
    gap: 5%;

}

.sec-intro .telwrap .item .ttl {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 16px;
    color: #00428e;
    margin-top: 17px;
}

.sec-intro .telwrap .item .tel-link {
    width: 67%;
}

.sec-intro .telwrap .item .tel-link a {
    display: grid;
    grid-template-areas: "icon num"
        ". time";
    align-items: center;
    gap: 5%;
    justify-content: flex-start;
    transition: var(--default);
}

.sec-intro .telwrap .item .tel-link a:hover {
    opacity: 50%;
}

.sec-intro .item .column {
    display: flex;
    gap: 5%;
    width: 67%;
}

.sec-intro .item .column .num {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(1.75rem, 1.568rem + 0.78vw, 2.5rem);
    color: #00428e;
}

.sec-intro .item .column .icon {
    width: 33px;
    height: auto;
}

.sec-intro .telwrap .item .tel-link a .icon {
    grid-area: icon;
}

.sec-intro .telwrap .item .tel-link a .num {
    grid-area: num;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(1.75rem, 1.568rem + 0.78vw, 2.5rem);
    color: #00428e;
}

.sec-intro .telwrap .item .tel-link a .time {
    grid-area: time;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
    color: #00428e;
}

.sec-intro .telwrap .item .tel-link a .time br {
    display: none;
}


.sec-main {
    background-color: #FAFAFA;
    padding: 58px 0 80px;
}

.sec-main .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 90%;
    margin: 0 auto 64px;
}

.sec-main .title .main {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 24px;
    color: #000;
}

.sec-main .desc p {
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    line-height: calc(28/16);
    font-weight: 400;
    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: 80px;
    width: min(90%, 960px);
    margin: 0 auto;
}



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

form .policy input {
    width: 30px;
    height: 30px;
    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.813rem, 0.767rem + 0.19vw, 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: #00428E;
    padding: 4px 8px;
    line-height: 1;
}

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

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



.formTh label {
    margin-bottom: 0;
}

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

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

.formRow {

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.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;
    border-bottom: 1px solid #b2b0b0;
}

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



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

.formBtnTd {
    max-width: 267px;
    width: 100%;
    height: 58px;
    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: 18px;
    color: #fff;
    text-align: center;
    background: #00428E;
}

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


.t_contact {
    display: none;
}

.sec-form {
    background: #fafafa;
    padding: 56px 20px 80px;
}

.sec-form .main {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
    text-align: center;
    color: #00428e;
    margin-bottom: 40px;
}

.sec-form .desc,
.sec-form .desc02 {
    margin-bottom: 40px;
}

.sec-form .desc p {
    text-align: center;
    line-height: calc(28/16);
    font-weight: 400;
}

.sec-form .desc02 p {
    font-family: var(--font-sans);
    text-align: center;
    font-size: 15px;
    line-height: calc(21/15);
    font-weight: 400;
}

.sec-form .tel-link {
    width: 27%;
    margin: 0 auto;
    transition: var(--default);
}

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

.sec-form .tel-link a {
    display: grid;
    grid-template-areas: "icon num"
        ". time";
    gap: 2% 3%;
    align-items: center;
}

.sec-form .tel-link a .icon {
    grid-area: icon;
}

.sec-form .tel-link a .num {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: clamp(1.75rem, 1.568rem + 0.78vw, 2.5rem);
    grid-area: num;
    color: #00428e;
}

.sec-form .tel-link a .time {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    line-height: calc(24/16);
    grid-area: time;
    color: #00428e;
}



@media (max-width: 1200px) {
    .sec-form .tel-link {
        width: 30%;
    }
}

@media (max-width: 1023px) {


    .formTh,
    .formTd {
        width: 100%;
    }

    .form-column,
    .page-wrapper>.inner {
        width: 90%;
    }

    .sec-form .tel-link {
        width: 38%;
    }



}


@media (max-width: 767px) {
    .sec-intro .telwrap .item .tel-link a .time br {
        display: block;
    }

    .form-column {
        gap: 50px;
    }

    .sec-intro .telwrap .item {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .sec-intro .telwrap .item .ttl {
        margin-top: 0;
    }

    .sec-intro .telwrap .item .tel-link,
    .sec-intro .item .column {
        width: 100%;
    }

    .sec-intro .telwrap .item .tel-link a {
        justify-content: center;
    }

    .sec-intro .telwrap {
        padding: 40px 22px;
    }

    .sec-intro {
        width: 90%;
        margin: 0 auto;
    }

    .sec-main .title {
        gap: 24px;
    }

    form .policy input {
        width: 27px;
        height: 27px;
    }

    .sec-form .tel-link {
        width: 73%;
    }
}