<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>メールボックス通知</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Noto Sans JP', sans-serif;
background: linear-gradient(to right, #eef2f3, #ffffff);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

.container {
background: #fff;
max-width: 600px;
width: 90%;
padding: 40px 30px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
border-radius: 15px;
text-align: center;
animation: fadeIn 1s ease-in-out;
}

.icon {
font-size: 60px;
color: #dc3545;
margin-bottom: 20px;
animation: pulse 1.5s infinite;
}

h2 {
font-weight: 700;
font-size: 1.5rem;
margin-bottom: 15px;
color: #333;
}

p {
font-size: 1rem;
color: #555;
margin: 10px 0;
}

strong {
color: #d9534f;
}

.btn {
position: relative;
display: inline-block;
padding: 12px 30px;
background-color: #007bff;
color: #fff;
font-weight: bold;
font-size: 1rem;
text-decoration: none;
border-radius: 8px;
margin-top: 25px;
transition: background-color 0.3s ease;
overflow: hidden;
}

.btn:hover {
background-color: #0056b3;
}

.btn::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 255, 255, 0.4);
transform: translate(-50%, -50%);
border-radius: 100%;
transition: width 0.4s ease, height 0.4s ease;
}

.btn:active::after {
width: 200%;
height: 200%;
}

.footer {
margin-top: 30px;
font-size: 0.85rem;
color: #777;
border-top: 1px solid #ddd;
padding-top: 20px;
}

@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.1); opacity: 0.8; }
100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<div class="container">
<div class="icon">

最近の記事

RSS Feed

読者登録

メールアドレス

QR Code

http://huat.jp/now-okuyama/

Acccess Counter

  • Total : 318,254
  • Today's visitors : 550
  • Yesterday's visitors : 1,613