/* 全体設定 */
body{
  font-family: 'Noto Sans JP', sans-serif;
  color: #1f2937; /* ダークグレー */
  margin: 0;
  padding: 0;
}
main{
  padding: 20px;
  margin: 0 auto;
}

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

@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);
}
