/* ファーストビュー（背景画像可） */
.first-view {
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.first-view::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.fv-content {
  position: relative;
  z-index: 1;
}

.first-view h1 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #FFB300; /* ローズピンク */
  /* background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 8px; */
  padding: 20px 20px;
  display: inline-block;
  word-break: break-word; /* 長い英語対策 */
}
.first-view p {
  font-size: 1em;
  color: #fff;
  padding-top:10px;
  padding-bottom:10px;
  /* background: rgba(0, 0, 0, 0.8);
  display: inline-block; */
}

@media (max-width: 480px) {
  .first-view h1 {
    font-size: 1.2rem; /* さらに小さめでもOK、読みやすさ優先 */
    line-height: 1.8;
  }
  .first-view p {
    font-size: 0.8rem;
    color: #fff;
    /* background: rgba(0, 0, 0, 0.8);
    display: inline-block; */
  }
}



/* レポート本文（お客様の声ページの雰囲気に寄せる） */
.experience-report {
  font-family: "Yu Gothic", "游ゴシック体", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 10px;
  background-color: #fff;
  img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
}

.experience-report h2 {
  font-size: 1.8em;
  margin-bottom: 30px;
  color: #1f0557;
}

.experience-report h3 {
  font-family: "Kiwi Maru", sans-serif;
  color: #1f0557;
  font-size: 1.4em;
  margin-top: 40px;
  margin-bottom: 20px;
}

.experience-report p {
  font-size: 0.95rem;
  padding-bottom: 2rem;
  line-height: 2.5;
  letter-spacing: 0.03em;
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  img {
    width: 30%;
  }
}

.experience-report .btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #666;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.experience-report .btn:hover {
  background-color: #444;
}

.separator {
  width: 60px; /* 長さ：お好みで調整OK（例：60px） */
  height: 2px; /* 線の太さ */
  background-color: #ccc; /* 線の色（薄めグレー） */
  margin: 12px auto; /* 上下の余白＆中央寄せ */
  border-radius: 1px; /* 丸みをつけるとやわらかい印象に */
}
