/* リセット & 基本設定 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden; /* スクロールバーを隠す */
}

.container {
  text-align: center;
  padding: 40px;
  animation: fadeIn 1.2s ease-out;
}

/* 画像の設定 */
.main-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #222;
  text-transform: uppercase;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: #777;
  margin-bottom: 40px;
}

.footer {
  font-size: 0.85rem;
  color: #bbb;
  border-top: 1px solid #eee;
  padding-top: 20px;
  display: inline-block;
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}