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

html, body {
  height: 100%;
}

body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  background-color: #ffe4ef;
  color: #5c1a35;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bg {
  position: fixed;
  inset: 0;
  background-image: url('../images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

/* Logo */
.logo-wrap img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

/* Site title */
.site-title {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #cf4a70;
}

/* Coming soon badge */
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #e8789a;
  border-radius: 999px;
  padding: 8px 28px;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c0446a;
  backdrop-filter: blur(6px);
}

/* Divider */
.divider {
  width: 60px;
  height: 2px;
  background: #e8789a;
  border: none;
}

/* Phone */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c0446a;
  opacity: 0.85;
}

.contact-tel {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #a01e45;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-tel:hover {
  opacity: 0.7;
}

/* Comment section (placeholder) */
.comment-section {
  width: 100%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #e8789a;
  border-radius: 12px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  text-align: left;
}

.comment-section-title {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c0446a;
  opacity: 0.8;
  margin-bottom: 16px;
  text-align: center;
}

.comment-placeholder {
  color: #9e5068;
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 16px 24px;
  font-size: 0.75rem;
  color: #c0446a;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 32px 16px;
    gap: 24px;
  }

  .logo-wrap img {
    max-width: 240px;
  }

  .comment-section {
    padding: 20px 16px;
  }
}
