/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #313D5A;
  --blue-light: #33B5FF;
  --teal: #3A9BAF;
  --dark: #444444;
  --gray: #555555;
  --bg-gray: #F5F8FA;
  --white: #FFFFFF;
  --line: #E5EDF2;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ja);
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.2em; }

/* ============================================================
   HEADER
============================================================ */
.header {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 10;
}
.header__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo { display: flex; align-items: center; height: 52px; }
.header__logo img { height: 100%; width: auto; max-width: 330px;}
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a { font-size: 13px; font-weight: 700; color: var(--dark); transition: color .2s; }
.header__nav a:hover { color: var(--teal); }
#SP-MENU, .spMenu { display: none; }

/* ============================================================
   COMMON
============================================================ */
.company-main { background: #fff; }
.companyContainer { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.companySection { padding: 84px 0; }
.companySection--gray { background: var(--bg-gray); }
.sectionHeading { margin-bottom: 38px; text-align: center; }
.sectionHeading p {
  margin: 0 0 10px;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .18em;
}
.sectionHeading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.45;
  font-weight: 800;
}

/* ============================================================
   HERO
============================================================ */
.companyHero {
  position: relative;
  padding: 112px 20px 104px;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      rgba(0, 145, 220, 0.84) 0%,
      rgba(51, 181, 255, 0.78) 52%,
      rgba(150, 225, 255, 0.66) 100%
    );
  overflow: hidden;
}
.companyHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 18%, rgba(255,255,255,.15), transparent 28%), radial-gradient(circle at 12% 86%, rgba(255,255,255,.10), transparent 26%);
  pointer-events: none;
}
.companyHero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(170,230,255,.24);
}
.companyHero__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}
.companyHero__label {
  margin: 0 0 20px;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .18em;
}
.companyHero h1 {
  margin: 0 0 28px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .03em;
}
.companyHero__lead {
  max-width: 800px;
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 2;
}
.companyHero__buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.companyBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}
.companyBtn--primary { background: #fff; color: var(--blue); }
.companyBtn--outline { border: 1px solid rgba(255,255,255,.85); color: #fff; }
.companyBtn:hover { transform: translateY(-2px); opacity: .92; }

/* ============================================================
   PAGE NAV
============================================================ */
.companyNav { background: #fff; box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.companyNav__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.companyNav__grid a {
  display: block;
  padding: 22px 14px;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  border-right: 1px solid var(--line);
}
.companyNav__grid a:first-child { border-left: 1px solid var(--line); }
.companyNav__grid a:hover { background: #F0F8FB; color: var(--teal); }

/* ============================================================
   MESSAGE
============================================================ */
.messagePanel {
  max-width: 920px;
  margin: 0 auto;
  padding: 46px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0,56,92,.08);
}
.messagePanel p { margin: 0 0 20px; line-height: 2; font-size: 16px; }
.messagePanel p:last-child { margin-bottom: 0; }
.messagePanel__strong {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-size: 19px !important;
  font-weight: 700;
}

/* ============================================================
   STRENGTH / DATA
============================================================ */
.strengthGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.strengthCard {
  padding: 30px 26px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,56,92,.08);
}
.strengthCard span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 800;
}
.strengthCard h3 { margin: 0 0 14px; color: var(--blue); font-size: 20px; line-height: 1.5; }
.strengthCard p { margin: 0; line-height: 1.85; font-size: 15px; }
.dataGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dataCard {
  padding: 30px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F6FBFD, #fff);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.dataCard p { margin: 0 0 10px; color: var(--blue); font-weight: 700; }
.dataCard strong { display: block; color: var(--teal); font-family: var(--font-en); font-size: clamp(34px, 4vw, 50px); line-height: 1.1; }
.dataCard span { display: block; margin-top: 8px; font-size: 14px; line-height: 1.6; }

/* ============================================================
   TABLES
============================================================ */
.companyTable, .licenseTable {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,56,92,.08);
}
.companyTable th, .companyTable td,
.licenseTable th, .licenseTable td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  line-height: 1.8;
  vertical-align: middle;
}
.companyTable th {
  width: 22%;
  color: #fff;
  background: var(--blue);
  text-align: left;
  white-space: nowrap;
}
.companyTable td { background: #fff; }
.companyTable tr:last-child th, .companyTable tr:last-child td,
.licenseTable tr:last-child th, .licenseTable tr:last-child td { border-bottom: none; }
.companyTable a, .licenseTable a { color: var(--teal); font-weight: 700; }
.licenseLead {
  max-width: 860px;
  margin: -8px auto 30px;
  text-align: center;
  line-height: 2;
}
.licenseTableWrap { overflow-x: auto; }
.licenseTable thead th {
  color: #fff;
  background: var(--blue);
  text-align: center;
}
.licenseTable tbody th { background: #EEF7FA; color: var(--blue); font-weight: 700; }
.licenseTable tbody td { text-align: center; font-weight: 700; color: var(--teal); background: #fff; white-space: nowrap; }

/* ============================================================
   HISTORY
============================================================ */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 150px;
  width: 2px;
  background: #D7E8EE;
}
.timelineItem {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 32px;
  padding: 0 0 28px;
}
.timelineItem::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 144px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(58,155,175,.14);
}
.timelineItem time { color: var(--blue); font-weight: 800; }
.timelineItem p {
  margin: 0;
  padding: 18px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,56,92,.07);
}

/* ============================================================
   CTA
============================================================ */
.companyCta {
  padding: 82px 20px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}
.companyCta__inner { width: min(900px, 100%); margin: 0 auto; }
.companyCta p:first-child { margin: 0 0 10px; font-family: var(--font-en); font-weight: 800; letter-spacing: .16em; }
.companyCta h2 { margin: 0 0 18px; font-size: clamp(26px, 4vw, 40px); }
.companyCta p { line-height: 1.9; margin-bottom: 26px; }

/* ============================================================
   FOOTER
============================================================ */
.footer__brand { background: var(--white); padding: 36px 0 28px; border-top: 1px solid #ddd; }
.footer__brand-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.footer__brand-inner img { width: 155px; height: auto; }
.footer__name { font-size: 17px; font-weight: 700; line-height: 1.5; color: var(--dark); }
.footer__address { font-size: 11px; color: var(--dark); line-height: 1.9; margin-top: 3px; }
.footer__bottom { background: var(--blue); padding: 16px 0 10px; }
.footer__nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer__nav a {
  font-size: 11px;
  color: rgba(255,255,255,.92);
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,.35);
  line-height: 1.2;
}
.footer__nav a:last-child { border-right: none; }
.footer__copy {
  max-width: 1100px;
  text-align: center;
  margin: 8px auto 0;
  padding: 0 60px;
  font-size: 10px;
  color: rgba(255,255,255,.65);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media screen and (max-width: 900px) {
  .header { padding: 0 20px; }
  .header__nav { gap: 18px; }
  .strengthGrid, .dataGrid { grid-template-columns: repeat(2, 1fr); }
  .companyNav__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 120px; }
  .timelineItem { grid-template-columns: 120px 1fr; gap: 24px; }
  .timelineItem::before { left: 114px; }
}
@media screen and (max-width: 640px) {
  .companyContainer { width: min(100% - 32px, 1100px); }
  .header { padding: 10px 16px; }
  .header__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .header__logo { height: 42px; }
  .header__nav { flex-wrap: wrap; gap: 10px 16px; }
  .header__nav a { font-size: 12px; }
  .companyHero { padding: 78px 20px 72px; }
  .companyHero__inner { width: min(100% - 8px, 1100px); }
  .companyHero h1 { font-size: 32px; }
  .companyHero__lead { font-size: 16px; line-height: 1.9; }
  .companyHero__buttons { flex-direction: column; }
  .companyBtn { width: 100%; }
  .companySection { padding: 64px 0; }
  .messagePanel { padding: 28px 22px; }
  .strengthGrid, .dataGrid { grid-template-columns: 1fr; }
  .companyTable, .companyTable tbody, .companyTable tr, .companyTable th, .companyTable td { display: block; width: 100%; }
  .companyTable th { width: auto; padding: 14px 18px; }
  .companyTable td { padding: 18px; }
  .companyNav__grid { grid-template-columns: 1fr 1fr; }
  .companyNav__grid a { padding: 16px 8px; font-size: 14px; }
  .timeline::before { left: 7px; }
  .timelineItem { grid-template-columns: 1fr; gap: 8px; padding-left: 30px; }
  .timelineItem::before { left: 1px; top: 8px; }
  .timelineItem time { font-size: 14px; }
  .footer__brand-inner { flex-direction: column; text-align: center; padding: 0 20px; }
  .footer__brand-inner img { width: 90px; }
  .footer__nav { flex-direction: column; gap: 8px; padding: 0 20px; }
  .footer__nav a { border-right: none; padding: 0; }
  .footer__copy { padding: 0 20px; }
}


/* Corporate blue tuning 20260814: hero gradients aligned to bright logo blue. */


/* Bright corporate blue tuning 20260814-02: lighter hero gradients aligned to logo blue. */
