@charset "UTF-8";
/* =========================
   variable
========================= */
/* =========================
   mixin
========================= */
/* =========================
   color variables（④）
========================= */
/* =========================
   unique
========================= */
.c-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
}

.c-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  display: block;
  border: none;
}

/* テキスト */
.c-hero__title {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  border-radius: 4px;
}
