/* tcgpro.co.jp /company/ — minimal typography-forward style (my-best inspired) */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Noto+Sans+JP:wght@500;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
  color: #111;
  line-height: 1.9;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
}
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .5; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: .01em; line-height: 1.35; margin: 0; color: #111; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }

/* Container */
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.wrap--wide { max-width: 1160px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.site-header__inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.site-header__logo-mark {
  display: block;
  width: 22px;
  height: 30px;
  flex-shrink: 0;
}
.site-header__logo-text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic StdN", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: .08em;
  color: #0F0F0F;
  line-height: 1;
}
.site-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 600; letter-spacing: .06em; }
.nav-toggle { display: none; }
@media (max-width: 780px) {
  .site-header__inner { padding: 16px 20px; }
  .site-nav { gap: 12px; }
  .site-nav a { display: none; }
  .site-nav a[href="/company/contact/"] {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid #1e3a8a;
    border-radius: 999px;
    color: #1e3a8a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1;
  }
  .site-nav a[href="/company/contact/"]::after { display: none; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #0F0F0F;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
    transform-origin: center;
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* Mobile drawer */
.site-drawer,
.site-drawer__overlay { display: none; }
@media (max-width: 780px) {
  .site-drawer__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0);
    z-index: 90;
    pointer-events: none;
    transition: background .25s ease;
  }
  .site-drawer__overlay.is-open {
    background: rgba(15, 15, 15, .4);
    pointer-events: auto;
  }
  .site-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 320px);
    height: 100dvh;
    background: #fff;
    z-index: 95;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.2,.8,.2,1);
    box-shadow: -8px 0 24px rgba(0,0,0,.08);
    padding: 80px 24px 24px;
    box-sizing: border-box;
  }
  .site-drawer.is-open { transform: translateX(0); }
  .site-drawer__nav { display: flex; flex-direction: column; gap: 4px; }
  .site-drawer__nav a {
    display: block;
    padding: 14px 8px;
    color: #0F0F0F;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
    border-bottom: 1px solid #eee;
  }
  .site-drawer__nav a::after { display: none; }
  .site-drawer__people {
    margin-top: 28px;
  }
  .site-drawer__people-label {
    display: block;
    padding: 0 8px 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    color: #999;
  }
  .site-drawer__people a {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 8px;
    text-decoration: none;
    color: #0F0F0F;
    border-bottom: 1px solid #eee;
  }
  .site-drawer__people-role {
    flex: none;
    min-width: 4.5em;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    color: #888;
  }
  .site-drawer__people-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
  }
}

/* Hero — large, text-only, generous whitespace */
.hero {
  padding: 160px 24px 140px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  overflow: hidden;
}

/* ----- Hero card (holo/pokeka-inspired) — light palette + dynamic motion ----- */
.hero-card {
  position: absolute;
  right: 6%;
  bottom: 48px;
  width: 150px;
  aspect-ratio: 5 / 7;
  transform: rotate(8deg);
  filter: drop-shadow(0 14px 36px rgba(0,0,0,0.12));
  pointer-events: none;
  opacity: 0;
  animation: cardIn 1.4s cubic-bezier(.2,.8,.2,1) 1.6s forwards,
             cardDance 5s ease-in-out 3s infinite;
  will-change: transform, opacity;
}
.hero-card__svg { width: 100%; height: 100%; display: block; }

/* holographic color cycling — faster, wider swing */
.hero-card__holo {
  animation: holoShift 3.5s linear infinite;
  transform-origin: center;
}

/* shimmer sweep — multiple passes with offset */
.hero-card__shimmer {
  animation: shimmerSweep 2.2s ease-in-out infinite;
}
.hero-card__shimmer--delay {
  animation: shimmerSweep 2.2s ease-in-out 1.1s infinite;
}

/* sparkles */
.hero-card__sparkle {
  transform-origin: center;
  animation: sparklePulse 1.8s ease-in-out infinite;
}
.hero-card__sparkle--2 { animation-delay: .6s; }
.hero-card__sparkle--3 { animation-delay: 1.2s; }

@keyframes cardIn {
  0%   { opacity: 0; transform: rotate(-6deg) translateY(60px) scale(.8); }
  60%  { opacity: 1; transform: rotate(14deg) translateY(-18px) scale(1.04); }
  100% { opacity: 1; transform: rotate(8deg)  translateY(0)    scale(1); }
}

/* card dance — wider rotation + bob + subtle scale pulse */
@keyframes cardDance {
  0%   { transform: rotate(8deg)  translateY(0)    scale(1); }
  25%  { transform: rotate(14deg) translateY(-16px) scale(1.02); }
  50%  { transform: rotate(4deg)  translateY(-4px)  scale(1); }
  75%  { transform: rotate(12deg) translateY(-12px) scale(1.03); }
  100% { transform: rotate(8deg)  translateY(0)    scale(1); }
}

/* mobile: card dances below text, centered */
@media (max-width: 780px) {
  @keyframes cardIn {
    0%   { opacity: 0; transform: translateX(-50%) rotate(-6deg) translateY(60px) scale(.8); }
    60%  { opacity: 1; transform: translateX(-50%) rotate(14deg) translateY(-18px) scale(1.04); }
    100% { opacity: 1; transform: translateX(-50%) rotate(8deg)  translateY(0)    scale(1); }
  }
  @keyframes cardDance {
    0%   { transform: translateX(-50%) rotate(8deg)  translateY(0)    scale(1); }
    25%  { transform: translateX(-50%) rotate(14deg) translateY(-14px) scale(1.02); }
    50%  { transform: translateX(-50%) rotate(4deg)  translateY(-4px)  scale(1); }
    75%  { transform: translateX(-50%) rotate(12deg) translateY(-10px) scale(1.03); }
    100% { transform: translateX(-50%) rotate(8deg)  translateY(0)    scale(1); }
  }
}

@keyframes holoShift {
  0%   { filter: hue-rotate(0deg)   saturate(1.2) brightness(1.02); }
  25%  { filter: hue-rotate(90deg)  saturate(1.4) brightness(1.05); }
  50%  { filter: hue-rotate(180deg) saturate(1.2) brightness(1.02); }
  75%  { filter: hue-rotate(270deg) saturate(1.4) brightness(1.05); }
  100% { filter: hue-rotate(360deg) saturate(1.2) brightness(1.02); }
}

@keyframes shimmerSweep {
  0%   { transform: translateX(-140%); opacity: 0; }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translateX(140%);  opacity: 0; }
}

@keyframes sparklePulse {
  0%, 100% { opacity: 0; transform: scale(.5) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1.2) rotate(45deg); }
}

@media (max-width: 1100px) {
  .hero-card { width: 120px; right: 24px; bottom: 24px; }
}
@media (max-width: 780px) {
  .hero-card { width: 96px; right: auto; left: 50%; bottom: 36px; transform: translateX(-50%) rotate(8deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card { animation: none; opacity: 1; transform: rotate(8deg); }
  .hero-card__holo, .hero-card__shimmer, .hero-card__shimmer--delay, .hero-card__sparkle { animation: none; }
}
.hero__tag {
  font-size: 11px; font-weight: 700; letter-spacing: .3em;
  color: #111; margin-bottom: 32px;
  text-transform: uppercase;
}
.hero__title {
  font-size: 56px;
  line-height: 1.3;
  margin-bottom: 40px;
  letter-spacing: .02em;
}
.hero__sub {
  font-size: 16px;
  line-height: 2;
  color: #333;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .hero { padding: 100px 20px 200px; }
  .hero__title { font-size: 32px; line-height: 1.4; }
  .hero__sub { font-size: 15px; }
}

/* Page head (non-hero) */
.page-head {
  max-width: 960px; margin: 0 auto;
  padding: 120px 24px 60px;
  border-bottom: 1px solid #111;
}
.page-head__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .3em;
  color: #111; margin-bottom: 24px;
}
.page-head__title {
  font-size: 48px;
  letter-spacing: .02em;
}
@media (max-width: 780px) {
  .page-head { padding: 72px 20px 32px; }
  .page-head__title { font-size: 28px; }
}

/* Section — full-width horizontal divider style */
.section {
  max-width: 960px; margin: 0 auto;
  padding: 100px 24px;
}
.section--tight { padding: 60px 24px; }
.section + .section { border-top: 1px solid #e5e5e5; }
@media (max-width: 780px) {
  .section { padding: 72px 20px; }
}

.section__heading {
  font-size: 32px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #111;
  letter-spacing: .02em;
}
.section__lead {
  font-size: 17px;
  line-height: 2.1;
  color: #333;
}
/* inline content links — clickable affordance */
.section__lead a,
.timeline__body a {
  color: #1e3a8a;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity .2s;
}
.section__lead a:hover,
.timeline__body a:hover { opacity: .6; }
.section__heading[id] { scroll-margin-top: 90px; }
.section__heading-sub { font-size: 16px; font-weight: 700; }
@media (max-width: 780px) {
  .section__heading { font-size: 22px; margin-bottom: 32px; }
  .section__heading-sub { font-size: 13px; }
  .section__lead { font-size: 15px; }
}

/* Recruit key visual (campaign hero) */
.kv {
  max-width: 960px; margin: 0 auto;
  padding: 88px 24px 48px;
}
.kv__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .22em;
  color: #888; margin-bottom: 28px;
}
.kv__copy {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic StdN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6.4vw, 76px);
  line-height: 1.16;
  letter-spacing: -.015em;
  color: #0F0F0F;
}
.kv__line { display: block; }
.kv__line--gap { margin-top: .34em; }
.kv__line--accent {
  display: inline-block;
  font-size: 1.1em;
  line-height: 1.12;
}
.kv__sub {
  margin: 44px 0 0;
  font-size: 16px; line-height: 1.95; color: #555;
  max-width: 620px;
}
@media (max-width: 780px) {
  .kv { padding: 56px 20px 32px; }
  .kv__eyebrow { font-size: 11px; margin-bottom: 20px; }
  .kv__copy { font-size: clamp(27px, 8.4vw, 48px); line-height: 1.2; }
  .kv__sub { font-size: 14px; margin-top: 28px; }
  .kv__sub br { display: none; }
}

/* Recruit page head with pill jump nav on the right */
.page-head--recruit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.page-head--recruit .page-head__main { flex: 1 1 auto; min-width: 0; }

.recruit-pills {
  flex: 0 0 auto;
  display: flex; flex-direction: column;
  gap: 10px;
  width: 280px;
}
.recruit-pills__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: #999;
}
.recruit-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #111;
  border-radius: 9999px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.recruit-pill__title {
  flex: 1 1 auto;
  font-size: 14px; font-weight: 700; color: #111; line-height: 1.4;
}
.recruit-pill__sub {
  display: block; font-size: 11px; font-weight: 500; color: #888; margin-top: 2px;
}
.recruit-pill__arrow { flex: 0 0 auto; font-size: 14px; color: #111; }
.recruit-pill:hover { background: #111; }
.recruit-pill:hover .recruit-pill__title,
.recruit-pill:hover .recruit-pill__arrow { color: #fff; }
.recruit-pill:hover .recruit-pill__sub { color: #ccc; }
@media (max-width: 780px) {
  .page-head--recruit { flex-direction: column; align-items: stretch; gap: 28px; }
  .recruit-pills { width: 100%; }
}

/* Recruit fixed jump rail (follows scroll, right side) */
.recruit-rail {
  position: fixed;
  top: 50%; right: 16px;
  transform: translateY(-50%);
  z-index: 50;
  width: 160px;
  display: flex; flex-direction: column;
  padding: 16px 14px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}
.recruit-rail__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: #999; margin-bottom: 10px;
}
.recruit-rail__item {
  display: block;
  font-size: 13px; font-weight: 600; line-height: 1.5;
  color: #333; text-decoration: none;
  padding: 8px 0 8px 10px;
  border-left: 2px solid #e5e5e5;
  transition: color .2s, border-color .2s;
}
.recruit-rail__item + .recruit-rail__item { margin-top: 4px; }
.recruit-rail__item:hover { color: #111; border-left-color: #111; }
.recruit-rail__sub {
  display: block; font-size: 11px; font-weight: 500;
  color: #888; margin-top: 2px;
}
/* hidden where it would overlap the 960px content column */
@media (max-width: 1320px) {
  .recruit-rail { display: none; }
}

/* Numbered / titled sub-blocks (my-best culture pattern) */
.block {
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
}
.block:last-child { border-bottom: none; }
.block__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #111;
  margin-bottom: 12px;
}
.block__title {
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.block__sub {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 24px;
}
.block__body {
  font-size: 16px;
  line-height: 2.1;
  color: #333;
}
.block__body + .block__body { margin-top: 20px; }
.block__note {
  margin-top: 20px;
  padding: 16px 18px;
  background: #f6f6f6;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.9;
  color: #555;
}
@media (max-width: 780px) {
  .block__title { font-size: 19px; }
  .block__body { font-size: 15px; }
}

/* Holographic hairline accent (brand corporate color, 135deg / pill) */
.holo-rule {
  height: 4px;
  border-radius: 9999px;
  margin: 0 0 32px;
  background: linear-gradient(135deg, #ffc4dd, #c4dff8 20%, #fff7c4 40%, #c4f5d9 60%, #dcc4f5 80%, #ffd4c4);
}

/* Values — 3-card grid, monochrome with hairline separators */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
}
.value-card { background: #fff; padding: 36px 30px; }
.value-card__num {
  font-size: 13px; font-weight: 700; letter-spacing: .2em; color: #111;
}
.value-card__title {
  font-size: 19px; font-weight: 700; line-height: 1.5;
  letter-spacing: .02em; margin: 14px 0 12px;
}
.value-card__body { font-size: 14px; line-height: 1.95; color: #555; }
@media (max-width: 780px) {
  .values { grid-template-columns: 1fr; }
  .value-card { padding: 28px 22px; }
  .value-card__title { font-size: 17px; }
}

/* Profile table */
.profile-table { width: 100%; border-collapse: collapse; }
.profile-table th, .profile-table td {
  padding: 28px 16px;
  text-align: left; vertical-align: top;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  line-height: 1.9;
}
.profile-table tr:first-child th, .profile-table tr:first-child td {
  border-top: 1px solid #111;
}
.profile-table th { width: 200px; font-weight: 700; color: #111; }
.profile-table td { color: #333; }
.profile-table td a { border-bottom: 1px solid #bbb; padding-bottom: 1px; transition: border-color .2s; }
.profile-table td a:hover { border-bottom-color: #111; opacity: 1; }

/* 役員 inline layout — 岸田と甲斐を密接して並べる */
.officer {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-right: 28px;
  white-space: nowrap;
}
.officer:last-child { margin-right: 0; }
.officer__role {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  letter-spacing: .04em;
}
@media (max-width: 780px) {
  .officer { display: flex; margin-right: 0; margin-bottom: 10px; }
  .officer:last-child { margin-bottom: 0; }
}
@media (max-width: 780px) {
  .profile-table th, .profile-table td { display: block; width: 100%; padding: 8px 0; border-bottom: none; }
  .profile-table tr { display: block; padding: 20px 0; border-bottom: 1px solid #e5e5e5; }
  .profile-table tr:first-child th, .profile-table tr:first-child td { border-top: none; }
  .profile-table tr:first-child { border-top: 1px solid #111; }
  .profile-table th { font-size: 12px; color: #666; font-weight: 600; letter-spacing: .04em; margin-bottom: 4px; }
}

/* News list */
.news-list {}
.news-item {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #e5e5e5;
  align-items: baseline;
}
.news-item:first-child { border-top: 1px solid #111; }
.news-item__date { flex: 0 0 120px; font-size: 13px; color: #666; font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.news-item__tag { flex: 0 0 auto; display: inline-block; padding: 4px 12px; font-size: 11px; font-weight: 700; background: #f5f5f5; color: #333; letter-spacing: .06em; }
.news-item__title { font-size: 15px; line-height: 1.8; }
.news-item__link {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.news-item:has(.news-item__link) { transition: opacity .2s; }
.news-item:has(.news-item__link):hover { opacity: .6; }
.news-item:has(.news-item__link):hover .news-item__title { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 780px) {
  .news-item { flex-wrap: wrap; gap: 8px; }
  .news-item__date { flex: 0 0 100%; }
}

/* Timeline (career history) */
.timeline { padding: 0; }
.timeline__item {
  display: flex; gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
  align-items: baseline;
}
.timeline__item:first-child { border-top: 1px solid #111; }
.timeline__year {
  flex: 0 0 120px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #111;
}
.timeline__body {
  font-size: 15px;
  line-height: 2;
  color: #333;
}
@media (max-width: 780px) {
  .timeline__item { flex-wrap: wrap; gap: 8px; padding: 20px 0; }
  .timeline__year { flex: 0 0 100%; font-size: 14px; color: #666; }
}

/* SNS links — minimal, text-only */
.sns-links {}
.sns-link {
  display: flex; align-items: baseline; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}
.sns-link:first-child { border-top: 1px solid #111; }
.sns-link__label { font-size: 18px; font-weight: 700; letter-spacing: .04em; flex: 0 0 160px; }
.sns-link__handle { font-size: 14px; color: #666; flex: 1; }
.sns-link__arrow { font-size: 13px; font-weight: 700; letter-spacing: .1em; white-space: nowrap; }

/* スマホ: 固定160pxラベル＋可変ハンドル＋OPENが1行に収まらず "OPEN" が右端からはみ出すため、
   ラベルを1行目に回し、2行目でハンドル（左）と OPEN（右）を振り分ける */
@media (max-width: 780px) {
  .sns-link {
    flex-wrap: wrap;
    gap: 4px 12px;
  }
  .sns-link__label { flex: 1 1 100%; }
  .sns-link__handle { flex: 1 1 auto; min-width: 0; }
  .sns-link__arrow { flex: 0 0 auto; margin-left: auto; }
}

/* 求人サイト掲載リンク — 角丸ボックスでクリッカブルに */
.job-links { display: flex; flex-direction: column; gap: 12px; }
.job-link {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.job-link:hover {
  border-color: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
  opacity: 1;
}
.job-link__logo { flex: 0 0 auto; height: 32px; width: auto; display: block; }
.job-link__paddle { flex: 0 0 auto; height: 56px; width: auto; display: block; }
.job-link__text { flex: 1; min-width: 0; }
.job-link__title { display: block; font-size: 15px; font-weight: 700; color: #111; line-height: 1.4; }
.job-link__desc { display: block; font-size: 13px; color: #666; margin-top: 4px; line-height: 1.5; }
.job-link__arrow {
  flex: 0 0 auto; font-size: 13px; font-weight: 700; letter-spacing: .1em;
  white-space: nowrap; color: #111;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.job-link:hover .job-link__arrow { transform: translateX(6px); }

@media (max-width: 780px) {
  .job-link { flex-wrap: wrap; gap: 8px 16px; padding: 18px; }
  .job-link__logo, .job-link__paddle { order: 1; }
  .job-link__text { order: 2; flex: 1 1 0; min-width: 0; }
  .job-link__arrow { order: 3; flex: 1 1 100%; text-align: right; margin-top: 4px; }
}

/* Breadcrumb */
.breadcrumb {
  max-width: 960px; margin: 0 auto;
  padding: 24px 24px 0;
  font-size: 12px; color: #666;
  letter-spacing: .04em;
}
.breadcrumb a { color: #666; }
.breadcrumb span { margin: 0 10px; color: #ccc; }

/* Quote / emphasized text block — thin left rule, no bg */
.quote {
  border-left: 3px solid #111;
  padding: 8px 0 8px 32px;
  margin: 48px 0;
  font-size: 17px;
  line-height: 2.1;
  color: #111;
}

/* Signature (代表挨拶) */
.signature {
  margin-top: 72px;
  text-align: right;
  font-size: 14px;
  line-height: 2;
  color: #333;
  letter-spacing: .04em;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 60px 24px 48px;
  font-size: 13px;
  color: #666;
}
.site-footer__inner { max-width: 1160px; margin: 0 auto; }
.site-footer__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 32px; border-bottom: 1px solid #e5e5e5; }
.site-footer__brand { font-weight: 700; color: #111; font-size: 15px; letter-spacing: .06em; }
.site-footer__links { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13px; }
.site-footer__copy { padding-top: 24px; font-size: 12px; color: #999; letter-spacing: .04em; }

@media (max-width: 780px) {
  .site-footer { padding: 44px 20px 32px; }
  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 24px;
  }
  .site-footer__brand { font-size: 14px; }
  .site-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 8px;
    width: 100%;
    font-size: 12px;
  }
  .site-footer__copy { padding-top: 20px; font-size: 11px; }
}

/* Filled-bar section heading (記事カード用) */
.section__heading--filled {
  background: #111;
  color: #fff;
  display: block;
  padding: 18px 24px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  margin-bottom: 32px;
  line-height: 1.4;
}
@media (max-width: 780px) {
  .section__heading--filled { font-size: 17px; padding: 14px 18px; }
}

/* Article card list */
.article-list { display: grid; gap: 20px; }
.article-card {
  display: block;
  padding: 26px 32px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  background: #fff;
}
.article-card:hover {
  opacity: 1;
  border-color: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.article-card__thumb {
  flex: 0 0 136px;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}
.article-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-card__body { flex: 1; min-width: 0; }
.article-card__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.55;
  color: #111;
}
.article-card__excerpt {
  font-size: 13.5px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__source {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}
.article-card__source::before { content: "🔖"; filter: grayscale(1); opacity: .5; font-size: 11px; }

/* Synthetic hatena-blog-style placeholder thumb */
.synthetic-thumb {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  padding: 10px 8px 6px;
  text-align: center;
  background: #fff;
  border: 1px solid #d4dbe3;
  box-sizing: border-box;
}
.synthetic-thumb__header {
  background: #1e2b4c;
  color: #fff;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .04em;
  padding: 3px 0;
  margin: -10px -8px 8px;
  font-family: "Space Grotesk", sans-serif;
}
.synthetic-thumb__title {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  color: #1e2b4c;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.3;
  padding: 4px 2px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.synthetic-thumb__source {
  color: #1e2b4c;
  font-size: 7.5px;
  border-top: 1px solid #1e2b4c;
  padding-top: 4px;
  line-height: 1.3;
}

@media (max-width: 780px) {
  .article-card { padding: 20px 22px; }
}

/* Utilities */
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.text-small { font-size: 14px; color: #666; }

/* ==================================================
   Motion — anycolor-inspired character stagger & reveal
   ================================================== */

/* Hero title: per-character reveal */
[data-split] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  transition:
    opacity 0.7s cubic-bezier(.2,.8,.2,1),
    transform 0.9s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 35ms);
  will-change: opacity, transform;
}
[data-split].is-loaded .char {
  opacity: 1;
  transform: translateY(0);
}

/* Hero subtitle / tag: delayed fade-in */
.hero__tag {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(.2,.8,.2,1) 0.15s forwards;
}
.hero__sub {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(.2,.8,.2,1) 0.9s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal — fade up on IntersectionObserver hit */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children when container carries [data-reveal-stagger] */
[data-reveal-stagger] > [data-reveal] {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* Nav link underline grow on hover */
.site-nav a { position: relative; padding-bottom: 6px; }
.site-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: #111;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* "Read more" underline link hover */
.link-underline {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  padding-bottom: 8px;
  position: relative;
}
.link-underline::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: #111;
  transform-origin: right;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.link-underline:hover { opacity: 1; }
.link-underline:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}

/* Service CTA chips — rounded, clickable */
.service-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  background: #fff;
  color: #0F0F0F;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.service-chip:hover {
  border-color: #0F0F0F;
  background: #0F0F0F;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 15, 15, .12);
}
.service-chip img {
  display: block;
  border-radius: 5px;
}
.service-chip__arrow {
  display: inline-block;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.service-chip:hover .service-chip__arrow { transform: translateX(4px); }
@media (max-width: 780px) {
  .service-cta { justify-content: flex-start; }
}

/* SNS link hover — shift arrow */
.sns-link { transition: background .3s ease, padding .4s ease; }
.sns-link__arrow { transition: transform .4s cubic-bezier(.2,.8,.2,1); display: inline-block; }
.sns-link:hover { opacity: 1; padding-left: 8px; }
.sns-link:hover .sns-link__arrow { transform: translateX(6px); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-split] .char,
  [data-reveal],
  .hero__tag,
  .hero__sub,
  .site-nav a::after,
  .link-underline::after,
  .service-chip,
  .service-chip__arrow,
  .sns-link,
  .sns-link__arrow {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* SERVICE CARDS — eyecatch + body */
.service-cards {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  border-color: #111;
  opacity: 1;
}
.service-card__thumb {
  aspect-ratio: 1200 / 630;
  background: #f5f5f5;
  overflow: hidden;
}
.service-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.service-card__body {
  padding: 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.service-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.5;
  color: #111;
}
.service-card__excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}
.service-card__arrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #111;
}
@media (max-width: 768px) {
  .service-cards { grid-template-columns: 1fr; gap: 16px; }
  .service-card__body { padding: 20px; }
}

/* EMERGENCE FIGURE — visual on message page */
.emergence-figure {
  margin: 56px auto 0;
  max-width: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}
.emergence-figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .emergence-figure { margin-top: 40px; max-width: 240px; border-radius: 6px; }
}

/* OFFICE CAROUSEL — 新橋プレイス */
.office-carousel {
  max-width: 320px;
  margin: 0 auto;
}
.office-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
  border-radius: 4px;
}
.office-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.office-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease-in-out;
  pointer-events: none;
}
.office-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.office-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.office-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 8px;
}
.office-carousel__dot {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.office-carousel__dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4c4c4;
  transition: background .3s ease, transform .3s ease;
}
.office-carousel__dot.is-active::before {
  background: #111;
  transform: scale(1.45);
}
.office-carousel__dot:hover::before {
  background: #888;
}
.office-carousel__dot:focus-visible {
  outline: 2px solid #111;
  outline-offset: -4px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .office-carousel { max-width: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  .office-carousel__slide { transition: none; }
}

/* ---- Media floating CTA (追尾導線 / JS-injected by anim.js) ----
   /media/ ヘッダーの「トレカプロ MEDIA」lockup を縮小移植した縦カード型 */
.media-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80; /* below header(100)/drawer(95)/overlay(90) */
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(15, 15, 15, 0.14);
  padding: 26px 18px 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  pointer-events: none;
}
.media-fab--show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.media-fab__link {
  display: block;
  text-decoration: none;
  color: #0f0f0f;
}
/* logo lockup — mirrors /media/ header (トレカプロ + holo mark / MEDIA) */
.media-fab__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.media-fab__logo-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.media-fab__logo-text {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  font-family: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
.media-fab__logo-mark {
  width: 16px;
  height: 22px;
  flex: none;
  position: relative;
  top: 3px;
  display: block;
}
.media-fab__logo-sub {
  font-size: 11px;
  letter-spacing: 0.4em;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  /* 0.4em の最終字間ぶん左に寄るのを相殺して中央に見せる */
  padding-left: 0.4em;
}
/* divider + CTA */
.media-fab__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid #ececec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.media-fab__arrow {
  transition: transform 0.25s ease;
}
.media-fab__link:hover .media-fab__arrow {
  transform: translateX(3px);
}
.media-fab__close {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: none;
  background: #f2f2f2;
  color: #6b6b6b;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.media-fab__close:hover {
  background: #e5e5e5;
  color: #0f0f0f;
}
@media (max-width: 640px) {
  .media-fab {
    right: 12px;
    bottom: 12px;
    padding: 24px 15px 12px;
  }
  .media-fab__logo-text {
    font-size: 21px;
  }
  .media-fab__logo-mark {
    width: 14px;
    height: 19px;
  }
  .media-fab__cta {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .media-fab {
    transition: opacity 0.2s ease;
    transform: none;
  }
}
