/* ===========================
   Hero セクション（PC：画像に重ねる ／ SP：画像下に配置）
=========================== */
.hero {
  width: 100%;
  background-color: #fff8f8;
  padding: 80px 20px;
  text-align: center;
  margin-top: 0; /* ← ヘッダーとの隙間をなくす */
}

.hero-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 16px;
  border-radius: 12px;
  width: 60%;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-text h2 {
  font-size: 1.2rem;
  margin: 0;
  color: #a45c6d;
}

.hero-text p {
  font-size: 0.9rem;
  margin: 6px 0 10px;
  color: #555;
}

.hero-button {
  background-color: #f8b3c1;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 8px;
}

.hero-button:hover {
  background-color: #e39da9;
}

/* ===========================
   Hero セクション：レスポンシブ対応（hero.css専用）
=========================== */
@media (max-width: 600px) {
  .hero-text {
    position: static;
    transform: none;
    margin: 10px auto 0;
    background: #f4f4f4;
    box-shadow: none;
    width: 90%;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .hero-text h2 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .hero-text p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .hero-button {
    font-size: 0.9rem;
    padding: 8px 16px;
    background-color: #f8b3c1 !important;
    color: white !important;
    border: none;
  }
}

/* Hero CTAボタン群（PC横並び・SP縦並び） */
.hero-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.hero-cta-buttons .cta-btn {
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s;
  white-space: nowrap;
}

/* ボタンごとの色（自由に調整可） */
.cta-btn.hotpepper {
  background-color: #f4626c;
}
.cta-btn.hotpepper:hover {
  background-color: #d94d57;
}

.cta-btn.line {
  background-color: #06c755;
}
.cta-btn.line:hover {
  background-color: #04a948;
}

.cta-btn.instagram {
  background-color: #c13584;
}
.cta-btn.instagram:hover {
  background-color: #a52a6a;
}

/* レスポンシブ対応：縦並び＋大きめに */
@media (max-width: 600px) {
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-cta-buttons .cta-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    font-size: 1rem;
  }
}
