@charset "UTF-8";
.ov_txt {
    text-align: center;
    font-size: max(1vw, 15px);
    line-height: 2;
    margin-bottom: 40px;
}

.Required {
    color: #c1272d;
}

.formTable {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.5;
    font-size: max(1vw, 15px);
}

.formTable th,.formTable td {
    padding: 1.5em 1em;
    box-sizing: border-box;
    text-align: justify;
    line-height: 2;
}

.formTable th {
    width: 15em;
    vertical-align: top;
}

.formTable td {
    width: calc(100% - 15em);
}

.formTable td .kome {
    color: #777;
    margin-top: 0.5em;
    line-height: 1.5;
    text-indent: -1.2em;
    padding-left: 1.2em;
}

.formTable td .kome span {
    margin-right: 0.2em;
}

.formTable select {
    padding: 0.5em 1em;
    border-radius: 5px;
    background: #f9f9f9;
    border: 1px solid #777;
    box-sizing: border-box;
}

.formTable label {
    cursor: pointer;
}

.formTable .flex_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 3em;
}

.choice_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 0;
}

.choice_list li {
    list-style: none;
    width: calc(50% - 1em);
    display: flex;
    align-items: flex-start;
}

.choice_list.wide li {
    width: 100%;
}

.formTable td .choice_list input[type=checkbox] {
    width: 1em;
    vertical-align: top;
    margin: 0.7em 0.5em 0 0;
}

.formTable td .choice_list label {
    transition: all 0.2s;
}

.formTable td .choice_list input:checked + label,.formTable td .choice_list input:hover + label,.formTable td .choice_list label:hover {
    color: #004a9e;
}

.formTable input[type="text"],.formTable textarea {
    width: 100%;
    padding: 0.5em 1em;
    border-radius: 5px;
    background: #f9f9f9;
    outline: 0px solid #777;
    border: 1px solid #777;
    transition: all 0.2s;
    box-sizing: border-box;
}

.formTable input[type="text"]:focus,.formTable textarea:focus {
    outline: 1px solid #777;
}

.formTable input.w15em {
    width: 15em;
}

.formTable input[type="text"]:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #f9f9f9 inset;
}

.form_btn {
    margin: 50px 0 0px;
    display: flex;
    justify-content: center;
    gap: 0 50px;
}

.form_btn input {
    width: 9em;
    padding: 0.5em 1em;
    background: white;
    border: 1px solid #777;
    font-size: 1.6rem;
    color: #4d4d4d;
    border-radius: 5px;
    transition: all 0.2s;
    text-align: center;
}

.form_btn input:hover {
    background: var(--main);
    color: white;
    border: 1px solid #014492;
}

.agree {
    text-align: center;
    margin: 30px auto;
    font-size: max(1.1vw, 14px);
}

.agree a {
    text-decoration: underline;
}

@media all and (max-width: 767px) {
    #contact {
        padding: 40px 15px;
    }

    #contact.check {
        padding: 20px 15px 40px;
    }

    #contact_wrap {
        width: 100%;
    }

    .ov_txt {
        text-align: justify;
    font-size: max(1.1vw, 14px);
        line-height: 2;
        margin-bottom: 30px;
    }

    .formTable tr {
        border-bottom: 1px solid #ccc;
        display: flex;
        flex-wrap: wrap;
    }

    .formTable tr:first-of-type {
        border-top: 1px solid #ccc;
    }

    .formTable th {
        padding: 1.5em 0em 0.5em;
        width: 100%;
        display: block;
    }

    .formTable td {
        padding: 0.5em 0em 1.5em;
        width: 100%;
    }

    .formTable .flex_box {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5em 3em;
    }

    .choice_wrap {
        padding: 0;
    }

    .choice_list li {
        width: 100%;
    font-size: max(1.1vw, 14px);
    }
    
    .form_btn {
        margin: 40px 0 0px;
        gap: 0 30px;
    }
    
    .form_btn input {
    font-size: max(1.1vw, 14px);
    }
}

/*------------ 確認画面 ------------*/
.check_ttl {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.check_txt {
    width: 800px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #777;
    line-height: 2;
}

.check_txt2 {
    text-align: center;
    margin-bottom: 30px;
}

.error_box {
    width: 50vw;
    margin: 0 auto;
    font-size: 16px;
    border: 1px solid #777;
    padding: 30px;
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.error_messe {
    display: inline-block;
}

.formTable.check tr:nth-child(2n) th,.formTable.check tr:nth-child(2n) td {
    background: #f9f9f9;
}

@media all and (max-width: 767px) {
    .check_ttl {
        text-align: justify;
        font-size: 14px;
    }

    .check_txt {
        width: 100%;
        padding: 20px;
    }

    .check_txt2 {
        text-align: justify;
    }

    .formTable.check th {
        padding: 1.5em 1em 0.5em;
    }

    .formTable.check td {
        padding: 0.5em 1em 1.5em;
    }
    
    .error_box {
        width: 85vw;
        font-size: 14px;
        padding: 20px;
    }
}

@media all and (min-width: 960px) {
    .t_h_logo_flex {
        display: flex;
        justify-content: space-between;
        padding: 16px 3vw;
    }
}

/* kinton流入経路include用追加css */
.in_choi_list ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 0;
}

.in_choi_list ol li {
    list-style: none;
    width: calc(50% - 1em);
    display: flex;
    align-items: flex-start;
}

.in_choi_list.wide ol li {
    width: 100%;
}

.formTable td .in_choi_list ol input[type=checkbox] {
    width: 1em;
    vertical-align: top;
    margin: 0.7em 0.5em 0 0;
}

.formTable td .in_choi_list ol label {
    transition: all 0.2s;
}

.formTable td .in_choi_list ol input:checked + label,.formTable td .in_choi_list ol input:hover + label,.formTable td .in_choi_list ol label:hover {
    color: #004a9e;
}

.in_choi_list > div {
    margin-top: 1em;
}

@media all and (max-width: 767px) {
    .in_choi_list ol li {
        width: 100%;
        font-size: 14px;
    }
}
