/* =============================================
   COMPANY PAGE CSS
   ============================================= */

/* ---- Enterprise Statement ---- */
.ln-statement-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ln-statement-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--opt-accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ln-statement-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--main-navy);
  line-height: 1.6;
  margin: 0 0 32px;
}

.ln-statement-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 2.2;
  margin: 0 0 20px;
  text-align: left;
}

/* ---- Philosophy Grid ---- */
.ln-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-line);
  border: 1px solid var(--border-line);
}

.ln-philosophy-card {
  background: var(--soft-white);
  padding: 48px 40px;
}

.ln-philosophy-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--opt-accent);
  margin-bottom: 16px;
}

.ln-philosophy-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--main-navy);
  margin: 0 0 16px;
  line-height: 1.4;
}

.ln-philosophy-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 2;
  margin: 0;
}

/* ---- History Timeline ---- */
.ln-history-timeline {
  position: relative;
  padding-left: 0;
}

.ln-history-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-line);
}

.ln-history-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 40px;
  margin-bottom: 0;
  position: relative;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-line);
}

.ln-history-item:last-child {
  border-bottom: none;
}

.ln-history-item::before {
  content: '';
  position: absolute;
  left: 76px;
  top: 40px;
  width: 9px;
  height: 9px;
  background: var(--opt-accent);
  border-radius: 50%;
  z-index: 1;
}

.ln-history-item--future::before {
  background: var(--main-navy);
}

.ln-history-year {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--opt-accent);
  padding-top: 2px;
  text-align: right;
  padding-right: 20px;
}

.ln-history-item--future .ln-history-year {
  color: var(--main-navy);
}

.ln-history-content {
  padding-left: 20px;
}

.ln-history-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--main-navy);
  margin: 0 0 10px;
  line-height: 1.5;
}

.ln-history-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
  margin: 0;
}

/* ---- Trust Numbers ---- */
.ln-trust-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.ln-trust-num-item {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.ln-trust-num-value {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.ln-trust-num-value span {
  font-size: 18px;
  font-weight: 400;
  color: var(--pearl-silver);
  margin-left: 4px;
}

.ln-trust-num-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.ln-trust-num-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--pearl-silver);
}

/* ---- Company Table ---- */
.ln-company-table-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.ln-company-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans JP', sans-serif;
}

.ln-company-table tr {
  border-bottom: 1px solid var(--border-line);
}

.ln-company-table th {
  width: 180px;
  padding: 20px 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-align: left;
  vertical-align: top;
  background: var(--base-white);
  white-space: nowrap;
}

.ln-company-table td {
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.9;
}

.ln-company-table td a {
  color: var(--main-navy);
  text-decoration: underline;
}

/* ---- Footer (shared with machine.html) ---- */
.ln-footer {
  background: var(--main-navy);
  color: #fff;
}

.ln-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 64px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.ln-footer-logo img {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.ln-footer-address {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--pearl-silver);
  line-height: 1.9;
  margin: 0 0 8px;
}

.ln-footer-mail a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--opt-accent);
  text-decoration: none;
}

.ln-footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ln-footer-nav-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--opt-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.ln-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ln-footer-nav ul li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--pearl-silver);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ln-footer-nav ul li a:hover {
  color: #fff;
}

.ln-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ln-footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--pearl-silver);
  margin: 0;
}

.ln-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}

.ln-footer-links li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--pearl-silver);
  text-decoration: none;
}

.ln-footer-links li a:hover {
  color: #fff;
}

/* ---- Scroll Animation ---- */
.ln-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ln-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media screen and (max-width: 1024px) {
  .ln-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .ln-trust-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .ln-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 40px 32px;
  }
}

@media screen and (max-width: 736px) {
  .ln-history-timeline::before {
    left: 56px;
  }

  .ln-history-item {
    grid-template-columns: 56px 1fr;
    gap: 0 20px;
  }

  .ln-history-item::before {
    left: 52px;
  }

  .ln-trust-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .ln-trust-num-value {
    font-size: 36px;
  }

  .ln-company-table th {
    width: 100px;
    padding: 16px;
    font-size: 11px;
  }

  .ln-company-table td {
    padding: 16px;
    font-size: 12px;
  }

  .ln-footer-inner {
    padding: 40px 24px 24px;
  }

  .ln-footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .ln-corp-nav {
    display: none;
  }
}
