@charset "UTF-8";
/* メインコンテナ */
.front-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  color: #00213A;
}

/* セクション全体 */
.hero-text {
  text-align: center;
  padding: 50px 0 32px;
}

/* 上の説明文＋アイコン */
.hero-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* アイコン */
.hero-icon {
  height: 28px;
  width: auto;
}

.lead-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.hero-title {
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}

.image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

/* 左：3枚 */
.image-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}

/* 上段2枚 */
.image-left img:nth-child(1),
.image-left img:nth-child(2) {
  width: 100%;
  height: auto;
  margin-top: 72px;
}

/* 下段1枚（中央に食い込ませる） */
.image-left .bottom {
  grid-column: 1/3;
  justify-self: center;
  width: 60%;
  height: auto;
  transform: translateX(-15%);
}

/* 右：FV */
.image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .image-block {
    grid-template-columns: 1fr;
  }
  .lead-text {
    font-size: clamp(16px, 1vw, 24px);
  }
  .image-right {
    text-align: center;
  }
  .image-right img {
    height: auto;
    width: 70%;
  }
  .image-left img:nth-child(1),
  .image-left img:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  .hero-title {
    font-size: clamp(19px, 3vw, 40px);
  }
  .lead-text {
    font-size: clamp(13px, 1vw, 24px);
  }
}/*# sourceMappingURL=fv.css.map */