/* ==========================================
   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;
}

.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（note RSS 連携）
   ========================================== */
.section-news {
  background: var(--color-white);
}

.news-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
}

.news-list-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-list-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-back);
}

.news-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-list-link:hover .news-list-thumb img {
  transform: scale(1.05);
}

.news-list-time {
  font-family: var(--font-en);
  font-size: 1.3rem;
  color: #888;
  margin-top: 12px;
}

.news-list-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 4px;
}

.news-list-more {
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-top: auto;
  padding-top: 12px;
}

.section-news__more {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================
   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;
}

/* ==========================================
   レスポンシブ（SP: 767px以下）
   ========================================== */
@media (max-width: 767px) {
  .fv__title {
    font-size: 3.2rem;
  }

  .fv__lead {
    font-size: 1.5rem;
  }

  .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
