* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  }

body {
font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
line-height: 1.8;
color: #555;
background: #fff8f9;
letter-spacing: 0.03em;
}

/* 共通 */
.section {
padding: 50px 20px;
max-width: 900px;
margin: 0 auto;
}

/* 見出し共通 */
h1, h2 {
font-weight: 600;
letter-spacing: 0.05em;
}

/* セクションタイトル */
h2 {
text-align: center;
font-size: 22px;
margin-bottom: 30px;
color: #ff6b81;
position: relative;
}

/* 下線デザイン */
h2::after {
content: "";
display: block;
width: 60px;
height: 3px;
background: #ffb6c1;
margin: 10px auto 0;
border-radius: 2px;
}

/* TOP画像 */
.hero {
  display: flex;
  flex-direction: column;
}

/* 画像 */
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト部分 */
.hero-text {
  text-align: center;
  padding: 20px;
  background: #fff;
}

/* タイトル */
.hero-text h1 {
  font-size: 24px;
  color: #ff6b81;
  margin-bottom: 10px;

  /* ↓これ追加 */
  line-height: 1.4;
  word-break: keep-all;
}

/* サブ */
.hero-text p {
  font-size: 14px;
  color: #666;
}
/* コンセプト */
.concept-text{
background: #fff0f6;
padding: 20px;
border-radius: 12px;
}

.concept p {
text-align: left;
font-size: 15px;
color: #666;
}

.concept-text .note {
  font-size: 13px;
  font-weight: bold;
  color: #999;
  text-align: center;
}

/* おすすめ（カード） */
.recommend-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
margin-bottom: 30px;
}

.recommend-card {
background: #fff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 6px rgba(255,182,193,0.2);
text-align: center;
}

.recommend-card img {
width: 100%;
height: 150px;
aspect-ratio: 4 / 3;
object-fit: cover;
}

.recommend-card p {
padding: 12px;
font-size: 14px;
color: #555;
}

/* ===== CTAエリア（PC） ===== */
.cta-area {
  display: flex;
  gap: 15px;
  margin: 40px auto;
  max-width: 600px;
}

/* ボタン共通 */
.cta-btn {
  flex: 1;
  text-align: center;
  padding: 16px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* メイン */
.cta-btn.primary {
  background: linear-gradient(135deg, #ff6b81, #ff4da6);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 77, 166, 0.4);
}

/* サブ */
.cta-btn.secondary {
  background: #fff;
  color: #ff4da6;
  border: 2px solid #ff4da6;
}

/* ホバー */
.cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* リスト */
.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: #ff4da6;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 8px;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #fff0f6;
  border-radius: 8px;
  margin-top: 5px;
}

.faq-contact {
  margin-top: 40px;
  text-align: center;
  padding: 25px 15px;
  border-radius: 10px;
}

.contact-text {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.tel-btn {
  display: inline-block;
  background: #fff; /* 白ベース */
  color: #ff4da6;   /* ピンク文字 */
  padding: 14px 25px;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #ff4da6; /* 枠だけ強調 */
  transition: 0.3s;
}

/* ホバーだけ目立たせる */
.tel-btn:hover {
  background: #ff4da6;
  color: #fff;
}

.contact-note {
  font-size: 13px;
  margin-top: 10px;
  color: #666;
}

/* マップ */
.map iframe {
width: 100%;
height: 300px;
border: none;
border-radius: 10px;
}
.map-container {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

/* 左：マップ */
.map-left {
  flex: 1;
}

.map-left iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
}

/* 右：情報 */
.map-right {
  flex: 1;
  background: #fff0f6;
  padding: 20px;
  border-radius: 12px;
}

.map-right h3 {
  margin-bottom: 10px;
}

/* 会社情報 */
.company-container {
  display: flex;
  justify-content: center; /* ←中央寄せ */
}

.company {
  background: #fff0f6; /* ←map-rightと同じピンク */
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  text-align:left;/* ←文字中央 */
}

.company h3 {
  text-align: center;
  margin-bottom: 15px;
}


/* フッター */
.footer {
text-align: center;
padding: 20px;
font-size: 12px;
color: #999;
}


/* スマホ対応 */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 20px;
    padding: 0 10px;
  }

  .recommend-grid {
grid-template-columns: 1fr;
}

  .cta-area {
    position: fixed;
    bottom: 10px; /* ←少し浮かせる */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 500px;
    display: flex;
    gap: 10px;
    z-index: 9999;
  }

  .cta-btn {
    flex: 1;
    font-size: 13px;
    padding: 14px 0;
    border-radius: 30px; /* ←丸くする */
    text-align: center;
  }

  /* デザイン完全リセット */
  .cta-btn.primary {
    background: linear-gradient(135deg, #ff6b81, #ff4da6);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 77, 166, 0.4); /* ←復活 */
  }

  .cta-btn.secondary {
    background: #fff;
    color: #ff4da6;
    border: 2px solid #ff4da6;
  }

  /* ページ被り防止 */
  body {
    padding-bottom: 80px;
  }

  .map-container {
    flex-direction: column;
  }

  .map-left iframe {
    height: 250px;
  }
}

/* JavaScriptアニメーション用 */
.hero-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question:hover {
  background: #ff3385;
}
