/* 全体設定 */


/*　画面トップのアラート表示　*/
.alert {
    padding: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    text-align: center;
    animation: slideDown 0.5s ease-out;
    margin-top:80px;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-info {
    color: #4a4a4a;
    background-color: #ececec;
    border-color: #d4d4d4;
}

/* 入力エラー */
.input_error {
    color: red;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    background-color: #f8d7da;
    padding: 0.5rem;
}

/* フッター用リボン（アクセス先を明示） */
.ftr_ribon {
    font-family: 'Times New Roman';
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    width: 300px;
    position: fixed;
    bottom: 50px;
    right: -80px;
    line-height: 30px;
    background-color: red;
    text-align: center;
    transform: rotate(-45deg);
    padding: 10px;
}

.ftr_ribon02 {
    border-top: dashed 1px rgba(255, 255, 255, 0.65);
    border-bottom: dashed 1px rgba(255, 255, 255, 0.65);
}