@charset "UTF-8";
/* =========================================================
   07-other.css — VENTURES（その他事業）3列カード
   ========================================================= */

.lib-others {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 1280px; margin: 0 auto 0; padding: 0 32px;
}

.lib-other {
  display: block;
  text-decoration: none;
  color: inherit;
}

.lib-other__kind {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  color: var(--ink-1000);
}
.lib-other__dot {
  width: 6px; height: 6px; border-radius: var(--radius-pill); background: var(--ink-1000);
}

.lib-other__frame {
  background: var(--ink-50);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.lib-other:hover .lib-other__frame { background: var(--ink-100); }

.lib-other__name {
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-weight: 700; font-size: 30px; line-height: 1.05;
  text-align: center; letter-spacing: 0.01em;
  color: var(--ink-1000);
}
.lib-other__name > span { display: block; }

.lib-other__foot {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; font-size: 12px;
}
.lib-other__note { color: var(--ink-700); }
.lib-other__year {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-500);
}
