@charset "UTF-8";

main {
    padding-top: 200px;
}

input {
    all: revert;
}

input[type="text"] {
   all: inherit;
}

.entry_hd {
    margin-bottom: 140px;
}

.entry_hd .label {
    width: fit-content;
    font-size: 22px;
    color: #0E3CB4;
    margin-bottom: 10px;
    padding: 5px 20px;
    border: solid 1px #0E3CB4;
}

.entry_hd .label.-career {
    color: #095E54;
    border: solid 1px #095E54;
}

.entry_hd_ttl {
    font-size: 50px;
}

.entry_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* .entry_form {
    width: 46%;
} */

.wpcf7 {
    width: 100%;
}

.form {
    width: 100%;
    max-width: 600px;
}

.entry_form {
    width: 100%;
    /* max-width: 510px; */
}

.entry_form dl {
    margin-bottom: 15px;
}

.entry_form dl dt {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.entry_form dl dt span {
    color: #D90000;
}

.entry_form dl dd input {
    background: #F2F1F0;
    border-radius: 8px;
    width: 100%;
    padding: 10px 20px;
    border: none;
    font-size: 18px;
}

.entry_form dl dd input[name="gender"] {
    width: unset;
}

.entry_form dl.gender dd .wpcf7-list-item-label {
    width: 70px;
}

.entry_form dl dd textarea {
    background: #F2F1F0;
    border-radius: 8px;
    width: 100%;
    padding: 10px 20px;
}

.entry_form dl dd .birthday {
    display: flex;
    gap: 10px;
    align-items: center;
}

.entry_form dl dd .birthday .year,
.entry_form dl dd .birthday .month,
.entry_form dl dd .birthday .date {
    position: relative;
}

.entry_form dl dd .birthday .year {
    width: 120px;
}

/* .entry_form dl dd .birthday .month,
.entry_form dl dd .birthday .date {
    width: 70px;
} */

.entry_form dl dd .birthday .year::after,
.entry_form dl dd .birthday .month::after,
.entry_form dl dd .birthday .date::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 6px;
    background-image: url(/img/cmn/icon-arrow_archive.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.entry_form dl dd .birthday .year select {
    width: 100%;
    padding: 5px 20px;
    background: #F2F1F0;
    border: solid 1px #5D5D5D;
    border-radius: 8px;
}
.entry_form dl dd .birthday .month select,
.entry_form dl dd .birthday .date select {
    width: 70px;
    padding: 5px 20px;
    background: #F2F1F0;
    border: solid 1px #5D5D5D;
    border-radius: 8px;
}

.entry_form dl dd.select {
    position: relative;
}

.entry_form dl dd.select::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 9px;
    background-image: url('/img/cmn/icon-arrow_archive.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.contact_submit_agree {
    margin-bottom: 30px;
    text-align: center;
}

.contact_submit a {
    text-decoration: underline;
}

.contact_submit a:hover {
    text-decoration: none;
}

.contact_submit_btn {
    text-align: center;
}

.contact_submit_btn input {
    border: none;
    color: #fff;
    background: #095E54;
    border-radius: 7px;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
    max-width: 207px;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
    transition-duration: 0.5s;
}

.contact_submit_btn.-new input {
    background: #0E3CB4;
}

.contact_submit_btn input:hover {
    background: #000;
    cursor: pointer;
}

.wpcf7-spinner {
    display: none !important;
}

select:hover {
    cursor: pointer;
}

select[name="birthday-year"],
select[name="birthday-month"],
select[name="birthday-date"] {
    width: 100%;
    padding: 5px 15px;
    background: #F2F1F0;
    border: solid 1px #5D5D5D;
    border-radius: 8px;
}

select[name="field"],
select[name="field-detail"] {
    padding: 10px 20px;
    background: #F2F1F0;
    border: solid 1px #5D5D5D;
    border-radius: 8px;
    display: block;
    width: 100%;
}



.wpcf7-list-item label {
    display: flex;
    align-items: center;
}


.entry_img_cnt {
    margin-bottom: 50px;
}

.entry_img_cnt img {
    margin-bottom: 5px;
}

.entry_img_cnt p {
    text-align: right;
    font-weight: 500;
    font-size: 15px;
}

@media screen and (max-width: 767px) {

    main {
        padding-top: 100px;
    }

    .wpcf7 {
        width: 100%;
    }

    .entry_hd {
        margin-bottom: 40px;
    }

    .entry_hd .label {
        font-size: 16px;
    }

    .entry_hd_ttl {
        font-size: 32px;
    }
    
    .entry_wrapper {
        flex-flow: column;
    }

    .entry_form dl dd {
        width: 100%;
    }

    .entry_form dl dd .birthday .year select {
        padding: 5px 10px;
    }

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

    .wpcf7-list-item label {
        gap: 10px;
    }

    .wpcf7-list-item-label {
        font-size: 14px;
    }
}