* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.8;
  min-height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.message {
  font-size: 16px;
  margin-bottom: 24px;
}

.message strong {
  color: #c4a265;
}

.thanks {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}

.divider {
  width: 60px;
  height: 1px;
  background-color: #ddd;
  margin: 0 auto 40px;
}

.new-community {
  font-size: 15px;
  margin-bottom: 32px;
}

.new-community strong {
  color: #c4a265;
  font-size: 17px;
}

.new-community .line-chunk {
  display: inline-block;
  overflow-wrap: anywhere;
  word-break: normal;
}

.image-container {
  margin: 32px 0;
}

.hero-image {
  max-width: 50%;
  height: auto;
  border-radius: 4px;
}

.coming-soon {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}

.to-detail {
  font-size: 13px;
  color: #df5534;
  margin-bottom: 16px;
}

.detail-link {
  display: inline-block;
  color: #c4a265;
  text-decoration: none;
  font-size: 14px;
  padding: 12px 24px;
  border: 1px solid #c4a265;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.detail-link:hover {
  background-color: #c4a265;
  color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
  .container {
    padding: 24px 16px;
  }

  .content {
    padding: 32px 20px;
  }

  .title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .message {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .thanks {
    margin-bottom: 24px;
  }

  .divider {
    margin: 0 auto 24px;
  }

  .new-community {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .image-container {
    margin: 20px 0;
  }

  .hero-image {
    max-width: 70%;
  }

  .coming-soon {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .message br,
  .new-community br,
  .coming-soon br {
    display: none;
  }

  .detail-link {
    font-size: 13px;
    padding: 10px 16px;
  }
}
