/* 应聘区域样式 */
.job-apply-section {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

/* 应聘按钮样式 - 细框线、大圆角、淡色背景 */
.apply-now-button {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.7);
    color: #4285f4;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid #4285f4;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.apply-now-button:hover {
    background-color: rgba(242, 245, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.2);
}

/* 应聘表单样式 */
.job-apply-form {
    display: none;
    max-width: 95%;
    margin: 5px auto;
    padding: 5px;
}

.apply-form-row {
    margin-bottom: 15px;
}

/* 姓名、电话和邮箱在同一行 */
.apply-form-row.personal-info {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.apply-form-row.personal-info > div {
    flex: 1;
    min-width: 0;
}

.apply-form-row.personal-info > div:nth-child(1) {
    flex: 0 0 calc(30% - 10px);
}

.apply-form-row.personal-info > div:nth-child(2) {
    flex: 0 0 calc(30% - 10px);
}

.apply-form-row.personal-info > div:nth-child(3) {
    flex: 0 0 calc(40% - 10px);
}

.apply-form-input,
.apply-form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.apply-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.input-placeholder,
.textarea-placeholder {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #999;
    pointer-events: none;
    transition: 0.3s;
}

.apply-form-input:focus + .input-placeholder,
.apply-form-input:not(:placeholder-shown) + .input-placeholder,
.apply-form-textarea:focus + .textarea-placeholder,
.apply-form-textarea:not(:placeholder-shown) + .textarea-placeholder {
    transform: translateY(-20px);
    font-size: 12px;
    color: #666;
}

/* 应聘表单按钮容器 */
.form-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

/* 应聘提交按钮 - 与いますぐ応募します按钮保持一致 */
.apply-form-submit {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.7);
    color: #4285f4;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #4285f4;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.apply-form-submit:hover {
    background-color: rgba(242, 245, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.2);
}

/* 取消按钮样式 */
.cancel-button {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.7);
    color: #757575;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #757575;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cancel-button:hover {
    background-color: rgba(242, 245, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(117, 117, 117, 0.2);
}

/* 成功消息样式 */
.apply-success-message {
    display: none;
    padding: 15px;
    background-color: #dff0d8;
    color: #3c763d;
    border-radius: 4px;
    margin-top: 15px;
    text-align: center;
}