.modal-pc.eump-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal-pc .eump-modal-content {
    max-width: 800px;
    width: 90%;
    margin: 20px auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    animation: modalSlideIn 0.4s ease forwards;
}

.modal-pc .eump-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
    background: #2082D7;
    border-radius: 8px 8px 0 0;
}

.modal-pc .eump-modal-header h3 {
    font-size: 21px;
    margin: 0;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.modal-pc .eump-modal-header h3 .en {
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
}

.modal-pc .eump-modal-close {
    position: absolute;
    right: 10px;
    top: 37%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eump-modal-close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-pc .eump-modal-close:hover {
    opacity: 0.7;
}

.modal-pc .eump-modal-body {
    padding: 10px;
    overflow-y: auto;
    flex: 1;
}

.modal-pc .eump-job-info,
.modal-pc .eump-profile-info-application {
    margin-bottom: 10px;
}

.modal-pc h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #e60012;
}

.modal-pc .eump-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #ddd;
}

.modal-pc .eump-info-table th {
    width: 25%;
    padding: 12px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    color: #666;
}

.modal-pc .eump-info-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.modal-pc .eump-application-message textarea {
    width: 96%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
    min-height: 60px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.modal-pc .eump-application-message textarea:focus {
    border-color: #e60012;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
}

.modal-pc .eump-consent-section {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.modal-pc .eump-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.modal-pc .eump-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    appearance: auto !important;
}

.modal-pc .eump-modal-footer {
    position: sticky;
    bottom: 0;
    background: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 15px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.modal-pc .eump-button {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 160px;
}

.modal-pc .eump-button-submit {
    background: #e60012;
    color: #fff;
}

.modal-pc .eump-button-submit:hover {
    background: #cc0010;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(230, 0, 18, 0.2);
}

.modal-pc .eump-button-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.modal-pc .eump-button-cancel {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
}

.modal-pc .eump-button-cancel:hover {
    background: #f8f9fa;
}

.eump-policy-link {
    color: #e60012;
    text-decoration: underline;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* トースト通知のスタイル */
.eump-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 400px;
    font-size: 14px;
}

.eump-toast.show {
    transform: translateX(0);
}

.eump-toast.success {
    border-left: 4px solid #4CAF50;
}

.eump-toast.error {
    border-left: 4px solid #f44336;
}

.eump-toast.warning {
    border-left: 4px solid #ff9800;
}

.eump-toast .toast-icon {
    font-size: 20px;
}

.eump-toast.success .toast-icon {
    color: #4CAF50;
}

.eump-toast.error .toast-icon {
    color: #f44336;
}

.eump-toast.warning .toast-icon {
    color: #ff9800;
}

.eump-toast .toast-message {
    flex: 1;
    color: #333;
}

.eump-toast .toast-close {
    cursor: pointer;
    color: #999;
    font-size: 18px;
    padding: 4px;
}

.eump-toast .toast-close:hover {
    color: #666;
}

/* 確認ダイアログのスタイル */
.eump-confirm-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    max-width: 400px;
    width: 90%;
    display: none;
}

.eump-confirm-dialog .dialog-message {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    text-align: center;
}

.eump-confirm-dialog .dialog-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.eump-confirm-dialog .dialog-button {
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.eump-confirm-dialog .confirm-button {
    background: #e60012;
    color: #fff;
}

.eump-confirm-dialog .confirm-button:hover {
    background: #cc0010;
}

.eump-confirm-dialog .cancel-button {
    background: #f5f5f5;
    color: #666;
}

.eump-confirm-dialog .cancel-button:hover {
    background: #eee;
}

.eump-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}

.eump-action-buttons-wrapper {
    margin-top: 20px;
}

.eump-action-buttons-wrapper .eump-buttons-container {
    /* padding: 20px; */
}

.eump-action-buttons-wrapper .eump-apply-button,
.eump-action-buttons-wrapper .eump-favorite-button {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eump-action-buttons-wrapper .eump-apply-button {
    background: #e60012;
    color: #fff;
}

.eump-action-buttons-wrapper .eump-apply-button:hover {
    background: #cc0010;
}

.eump-action-buttons-wrapper .eump-apply-button.is-applied {
    background: #999;
    box-shadow: 0 6px 0 #555;
    cursor: not-allowed;
}

.eump-action-buttons-wrapper {
    /* background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    margin-bottom: 0; */
}

.eump-action-buttons-wrapper button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 完了モーダルのスタイル */
.eump-completion-message {
    text-align: center;
    padding: 30px 20px;
}

.eump-completion-message .message-main {
    font-size: 24px;
    font-weight: bold;
    color: #e60012;
    margin-bottom: 20px;
}

.eump-completion-message .message-sub {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}