.page-hero {
    width: 100%;
    height: 30vh;
    margin-bottom: 100px;
    background-image: url(../img/careers.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.careers-content {
    width: 100%;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
}

.careers-content h2 {
    margin-bottom: 70px;
    text-align: center;
    font-size: 20px;
}

.careers-content p {
    padding: 0 20px;
}

.careers-info {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
    margin: 0 auto 100px;
}

.careers-info tr {
    height: 100%;
    border-bottom: 1px solid #000;
}

.careers-info th {
    width: 100px;
    text-align: center;
    padding: 20px 10px;
}

.careers-info td {
    width: 100px;
    text-align: left;
    padding: 20px 10px;
}


/* お問い合わせフォーム */
.contact-form {
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    background-color: #f0f0f0;
}

.contact-form h2 {
    padding-bottom: 70px;
    text-align: center;
    font-size: 20px;
}

.contact-form form {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.contact-form form .form-group {
    width: 100%;
    margin-bottom: 20px;
}

.contact-form form .form-group label {
    display: block;
    margin-bottom: 10px;
    padding-left: 10px;
    color: #000;
}

.contact-form form .form-group input,
.contact-form form .form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.contact-form form .form-group textarea {
    height: 150px;
}

.contact-form form .privacy-policy {
    width: 100%;
    margin-bottom: 50px;
}

.contact-form form .privacy-policy h3 {
    text-align: center;
    font-size: 16px;
}

.contact-form form .privacy-policy p {
    font-size: 14px;
    margin-bottom: 20px;
}

.che.contact-form form .privacy-policy .privacy-policy-checkbox {
    display: flex;
    align-items: center;
}

.contact-form form .privacy-policy input[type="checkbox"] {
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: #fff;
}

.contact-form form .privacy-policy label {
    font-size: 14px;
}

.contact-form form button {
    width: 250px;
    height:50px;
    margin: 0 auto;
    display: block;
    border: none;
    border-radius: 5px;
    background-color: #ccc;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .page-hero {
        height: 20vh;
        margin-bottom: 50px;
    }
    .careers-content {
        padding: 0 10px;
    }
    .careers-content h2 {
        margin-bottom: 50px;
    }
    .careers-content p {
        font-size: 14px;
    }
    .careers-info th {
        width: 100px;
    }
    .careers-info td {
        width: 200px;
    }

    .contact-form {
        padding: 50px 20px;
    }
    .contact-form h2 {
        padding-bottom: 30px;
    }
}
