/* 全体のリセットと基本設定 */
body {
    font-family: "Noto Sans JP", sans-serif; /* 変更 */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

/* モーダルのオーバーレイ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* モーダルのコンテナ */
.modal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6.4px;
    background: #FFF;
    box-shadow: 0 3.2px 3.2px 0 rgba(0, 0, 0, 0.25);
    width: 486.4px;
    position: relative;
}

/* ヘッダーセクション */
.modal-header {
    display: flex;
    padding: 57.6px 56px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background-color: #F8F9FA;
    border-top-left-radius: 6.4px;
    border-top-right-radius: 6.4px;
}

/* ロゴのスタイル */
.notificationmodal_logo {
    display: flex;
    width: 333.6px;
    height: 76px;
    justify-content: center;
    align-items: center;
}

/* ボディヘッダー（緑色のセクション） */
.modal-body-header-default {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9.6px;
    align-self: stretch;
    background: #027D71;
    color: #fff;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.modal-body-header-pending {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9.6px;
    align-self: stretch;
    background: #00B09F;
    color: #fff;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.modal-body-header-success {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9.6px;
    align-self: stretch;
    background: #00D301;
    color: #fff;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.modal-body-header-blocked {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9.6px;
    align-self: stretch;
    background: #606060;
    color: #fff;
    margin-bottom: 16px;
    box-sizing: border-box;
}


.modal-body-header p {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20.8px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* ボディ（説明文） */
.modal-body {
    margin-bottom: 16px;
}

.modal-body-text-m {
    color: #333;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.6px;
}

.modal-body-text-s {
    color: #333;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    
}

/* フッター（ボタン） */
.modal-footer {
    display: flex;
    padding: 32px 19.2px;
    align-items: flex-start;
    gap: 19.2px;
    align-self: stretch;
    border-radius: 0 0 6.4px 6.4px;
    background: #F8F9FA;
}

/* ボタンの共通スタイル */
.modal-button {
    display: flex;
    width: 214.4px;
    padding: 12.8px 19.2px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 6.4px;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* 「今回は見送る」ボタンのスタイル */
.skip-button {
    background-color: #E8ECEE;
    color: #333;
}

.skip-button:hover {
    background-color: #d1d9dd;
}

.skip-button:active {
    background-color: #bbc1c4;
}

/* 「通知を許可」ボタンのスタイル */
.allow-button {
    background-color: #027D71;
    color: #FFF;
}

.allow-button:hover {
    background-color: #02665b;
}

.allow-button:active {
    background-color: #014c45;
}