/* ===== Company Page Styles ===== */

/* Header */
.company-header {
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.header-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.header-nav {
  display: flex;
  gap: 28px;
}

.header-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--navy);
}

/* Corp Hero */
.corp-hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
}

.corp-hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.corp-hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
}

.hero-times {
  color: var(--gold);
  font-weight: 400;
}

.hero-dot {
  opacity: 0.4;
}

.corp-hero-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.8;
}

/* About */
.about {
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-name-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--navy);
}

.about-name-ja {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-name-en {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.about-name-origin {
  font-size: 1rem;
  color: var(--text);
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.9;
}

.about-image {
  flex: 0 0 200px;
  text-align: center;
}

.about-character {
  width: 180px;
  filter: drop-shadow(0 4px 16px rgba(43, 58, 103, 0.15));
}

/* Mission */
.mission {
  padding: 60px 0;
  background: var(--white);
}

.mission-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.mission-card h3 {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mission-text {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.5;
}

.mission-sub {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.8;
}

/* Products */
.products {
  padding: 80px 0;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.product-image {
  flex: 0 0 220px;
}

.product-image .screenshot {
  width: 220px;
  border-radius: 24px;
}

.product-info {
  flex: 1;
}

.product-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.product-info h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}

.product-desc {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
}

.product-features li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.product-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.products-future {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Company Info */
.company-info {
  padding: 80px 0;
  background: var(--white);
}

.company-table {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
  font-size: 0.95rem;
}

.company-table th {
  width: 140px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

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

.company-table td a:hover {
  text-decoration: underline;
}

/* Contact */
.contact {
  padding: 80px 0;
}

.contact-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-inner p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}

/* SP only */
.sp-only {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .corp-hero {
    padding: 60px 0;
  }

  .corp-hero h1 {
    font-size: 1.8rem;
  }

  .sp-only {
    display: inline;
  }

  .about-content {
    flex-direction: column;
    gap: 32px;
  }

  .about-image {
    flex: none;
    order: -1;
  }

  .about-character {
    width: 140px;
  }

  .product-card {
    flex-direction: column;
    padding: 28px;
    gap: 28px;
  }

  .product-image {
    flex: none;
  }

  .product-image .screenshot {
    width: 180px;
  }

  .product-info h3 {
    font-size: 1.3rem;
  }

  .company-table th {
    width: 100px;
  }
}
