/* ============================================================
   company.css — company.html 専用スタイル
   ============================================================ */

/* ===== ページヘッダー ===== */
.page-header {
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232, 255, 71, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 255, 71, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.page-header-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232, 255, 71, 0.06) 0%, transparent 68%);
  pointer-events: none;
}
.page-header-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.page-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.9s 0.1s forwards;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.025em;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s forwards;
}
.page-sub {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

/* ===== パンくずリスト ===== */
.breadcrumb {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { font-size: 0.7rem; color: var(--border); }
.breadcrumb-current {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--accent);
}

/* ===== メインコンテンツ ===== */
main {
  padding: 80px 48px 120px;
}
.main-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== セクションブロック ===== */
.section-block { margin-bottom: 80px; }
.block-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.block-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.block-bar {
  width: 36px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 40px;
}

/* ===== 会社情報テーブル ===== */
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr {
  border-bottom: 1px solid var(--border);
}
.company-table tr:first-child {
  border-top: 1px solid var(--border);
}
.company-table th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding: 22px 24px 22px 0;
  width: 180px;
  vertical-align: top;
  white-space: nowrap;
}
.company-table td {
  font-size: 0.9rem;
  color: var(--text);
  padding: 22px 0;
  line-height: 1.9;
}
.company-table td a {
  color: var(--accent);
  text-decoration: none;
}
.company-table td a:hover { text-decoration: underline; }

/* ===== スキルグリッド ===== */
.skill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.skill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color 0.3s;
}
.skill-card:hover { border-color: rgba(232, 255, 71, 0.3); }
.skill-card-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}
.skill-card-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.skill-card-desc {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.9;
}
.skill-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}

/* ===== プライバシーポリシー ===== */
.privacy-body {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: 2px;
}
.privacy-body p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 2.1;
  margin-bottom: 20px;
}
.privacy-body p:last-child { margin-bottom: 0; }
.privacy-body h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin: 28px 0 10px;
}
.privacy-body a {
  color: var(--accent);
  text-decoration: none;
}
.privacy-body a:hover { text-decoration: underline; }

/* ===== 戻るリンク ===== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  margin-top: 60px;
  width: fit-content;
}
.back-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== レスポンシブ（company専用） ===== */
@media (max-width: 920px) {
  .page-header { padding: 120px 22px 60px; }
  .breadcrumb { padding: 14px 22px; }
  main { padding: 60px 22px 80px; }
  .skill-grid { grid-template-columns: 1fr; }
  .company-table th { width: 120px; font-size: 0.72rem; padding-right: 16px; }
  .privacy-body { padding: 28px 22px; }
}
