.contact-wrapper {
    /* background: radial-gradient(circle, var(--sub-color-4) 0%, var(--sub-color-3) 40%); */
    background: url("../../img/recruit/pc-left-bg.png");
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media(max-width:992px) {
    .contact-wrapper {
        padding: 0;
    }
}

.contact-wrapper::before {
    content: "";
    position: absolute;
    background: url("../../img/recruit/main-bg.jpg");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
}

.underlayer-titles {
    margin-top: 50px;
}

.underlayer-titles p {
    color: var(--txt-color-4);
}

.underlayer-titles::after {
    background: var(--txt-color-6);
}

.contact-contents {
    margin-top: 100px;
    position: relative;
    margin-bottom: 45px;
}

@media(max-width:992px) {
    .contact-contents {
        padding: 0 15px;
    }
}

.contact-content-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media(max-width:992px) {
    .contact-content-list {
        flex-direction: column;
    }
}

.contact-content-list:not(:first-of-type) {
    margin-top: 80px;
}

@media(max-width:992px) {
    .contact-content-list:not(:first-of-type) {
        margin-top: 40px;
    }
}

.contact-content-list.email-conf {
    margin-top: 5px;
}

.contact-content-list.email-conf.first {
    margin-top: 25px;
}

.contact-content-dt {
    color: var(--sub-color-6);
}

.contact-content-dt.require {
    position: relative;
}

.contact-content-dt.require::after {
    content: "＊";
    position: absolute;
    display: block;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    color: var(--txt-color-5);
    font-size: 16px;
}

.contact-content-dd {
    width: 800px;
    color: var(--txt-color-3);
}

@media(max-width:992px) {
    .contact-content-dd {
        width: 100%;
        margin-top: 15px;
    }
}

.contact-content-dd input,
.contact-content-dd select,
.contact-content-dd textarea {
    background: #FFF;
    border: 1px solid var(--txt-color-3);
    border-radius: 8px;
    height: 70px;
    padding: 15px;
    width: 100%;
    color: var(--txt-color-2);
}

.contact-content-dd select,
.contact-content-dd input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-content-dd select {
    padding-right: 40px;
}

.contact-content-dd input[type="radio"],
.contact-content-dd input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.contact-content-dd input[type="checkbox"] {
    position: relative;
    cursor: pointer;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background-color: #ddd;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    transition: .3s;
    padding: 10px;
}

.contact-content-dd input[type="checkbox"]:checked {
    background: #439fc6;
}

.contact-content-dd input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 15px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.contact-content-dd input[type="radio"]:nth-of-type(2) {
    margin-left: 50px;
}

.contact-content-dd input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #FFF;
}

.contact-content-dd textarea {
    min-height: 290px;
}

.contact-content-dd label {
    margin-left: 15px;
    color: var(--txt-color-3);
}

.contact-content-dd.select {
    position: relative;
}

.contact-content-dd.select::after {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--txt-color-3);
    border-right: 2px solid var(--txt-color-3);
    pointer-events: none;
}

.contact-content-dd.radio,
.contact-content-dd.policy {
    display: flex;
    align-items: center;
}

.contact-content-submit {
    margin: 85px auto 0;
    display: block;
    width: 550px;
    border-radius: 15px;
    padding: 10px 0;
    background: var(--txt-color-4);
    color: #FFF;
    border: none;
}

@media(max-width:992px) {
    .contact-content-submit {
        width: 100%;
    }
}