/* body 背景にロゴを直接表示 */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  background-color: #f9f9f9;
  /* 背景ロゴ設定 */
  background-image: url("logo.png"); /* logo.pngを同階層に配置 */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30%; /* ロゴの大きさ調整 */
}
/* コンテンツ部分 */
.overlay {
  background: rgba(255, 255, 255, 0.8); /* 半透明白で読みやすく */
  padding: 2rem;
  border-radius: 1rem;
  max-width: 600px;
  width: 90%;
}
/* タイトル */
.overlay h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
/* 案内文 */
.overlay p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
/* Instagramボタン */
.btn-instagram {
  display: inline-block;
  background: linear-gradient(110deg, #fed530 0%, #fd7a24 12.81%, #fc136b 40.39%, #d11dc3 64.53%, #7643f6 100%);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-instagram:hover {
  opacity: 0.8;
}
/* スマホ対応 */
@media (max-width: 480px) {
  .overlay h1 {
    font-size: 1.6rem;
  }
  .overlay p {
    font-size: 0.9rem;
  }
}