/* Hero Section */
.hero-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ddd; /* 画像がない場合の背景色 */
}

/* 実際の背景画像設定：ここに画像のURLを入れてください */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-beach.jpg'); /* 画像パスを適宜変更 */
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.8); /* 文字を見やすくするため少し暗く */
}

.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title .line-1 { font-size: 3rem; }
.hero-title .line-2 { font-size: 2.5rem; display: block; }

@media (max-width: 768px) {
  .hero-title .line-1 { font-size: 2rem; }
  .hero-title .line-2 { font-size: 1.5rem; }
}

/* News Section */
.news-section { margin-top: 60px; text-align: center; }

.section-head { margin-bottom: 30px; }
.section-label {
  display: inline-block;
  background-color: var(--btn-orange);
  color: #fff;
  padding: 10px 40px;
  font-size: 1.2rem;
  border-radius: 4px; /* 四角いボタン風 */
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-item {
  aspect-ratio: 1 / 1; /* 正方形 */
  overflow: hidden;
}
.news-thumb {
  width: 100%;
  height: 100%;
  background-color: #ccc; /* ダミーグレー */
  background-image: url('https://placehold.co/400x400/orange/white'); /* ダミー画像 */
  background-size: cover;
}

/* Voice Section */
.voice-section { margin-top: 80px; text-align: center; }

.section-title-orange {
  color: var(--btn-orange);
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  .news-grid, .voice-grid { grid-template-columns: 1fr; }
}

.voice-card {
  padding: 10px;
}
.voice-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.voice-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px; /* 少し角丸 */
  background-color: #eee;
  background-image: url('https://placehold.co/100x100/png');
  background-size: cover;
}
.voice-name {
  display: block;
  font-weight: bold;
  color: var(--btn-orange);
  font-size: 1.1rem;
}
.voice-role {
  display: block;
  font-size: 0.8rem;
  color: #999;
  font-weight: bold;
}
.voice-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
}