/* ==========================================
   FV（ファーストビュー）
   ========================================== */
#_ .fv {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#_ .fv__inner {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

#_ .fv__title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}

#_ .fv__lead {
  font-size: 1.8rem;
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

#_ .fv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--color-black); /* fv.jpg 未配置でも文字が読めるように */
}

#_ .fv__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

#_ .fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   NEWS セクション
   ========================================== */
#_ .section-news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  list-style: none;
}

#_ .section-news__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.2s;
}

#_ .section-news__link:hover {
  opacity: 0.7;
}

#_ .section-news__thumb {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-back);
}

#_ .section-news__thumb img {
  width: 100%;
  aspect-ratio: 1280 / 670; /* noteサムネイルの比率 */
  object-fit: cover;
}

#_ .section-news__date {
  font-size: 1.3rem;
  color: #666;
}

#_ .section-news__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ==========================================
   CONTACT セクション
   ========================================== */
#_ .section-contact {
  padding: 80px 0;
  background: var(--color-back);
  text-align: center;
}

#_ .section-contact__title {
  margin-bottom: 16px;
}

#_ .section-contact__title .font-en {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
}

#_ .section-contact__title span:last-child {
  display: block;
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 24px;
}

#_ .section-contact__lead {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: #444;
}

@media (max-width: 767px) {
  #_ .fv__title {
    font-size: 3.2rem;
  }

  #_ .fv__lead {
    font-size: 1.5rem;
  }

  #_ .section-news__list {
    grid-template-columns: 1fr;
  }
}
