/* [Encoding: UTF-8] */

:root {
  --color-bg: #ffffff;
  --color-soft: #f6f7f9;
  --color-text: #111111;
  --color-sub: #667085;
  --color-border: #e5e7eb;
  --color-blue: #2f6fed;

  --font-sans: "IBM Plex Sans", "Noto Sans JP", "BIZ UDPGothic", sans-serif;
  --container: 960px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--color-bg);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  margin-bottom: 0;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero {
  border-bottom: 1px solid var(--color-border);
}

.hero-inner {
  max-width: 720px;
  padding-top: 148px;
  padding-bottom: 144px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--color-sub);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-rendering: geometricPrecision;
}

.hero-lead {
  margin-bottom: 28px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.65;
}

.hero-copy,
.hero-note {
  color: var(--color-sub);
  font-size: 1rem;
  line-height: 1.9;
}

.hero-note {
  margin-top: 24px;
}

.section {
  padding: 104px 0 112px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-soft);
}

.section-head {
  max-width: 560px;
  margin-bottom: 42px;
}

.section-head h2 {
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.section-head p {
  color: var(--color-sub);
  line-height: 1.85;
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lab-card {
  min-height: 148px;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
}

.lab-card-head {
  display: flex;
  margin-bottom: 18px;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.lab-card h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.45;
}

.lab-card p {
  color: var(--color-sub);
  font-size: 0.95rem;
  line-height: 1.8;
}

.status {
  display: inline-flex;
  min-height: 28px;
  padding: 4px 10px;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-sub);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.site-footer {
  padding: 64px 0 52px;
  background: var(--color-bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-copy {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.footer-small,
.footer-credit {
  color: var(--color-sub);
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-credit {
  max-width: 360px;
  text-align: right;
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .logo {
    min-height: auto;
  }

  .site-nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    font-size: 0.7rem;
  }

  .hero-inner {
    padding-top: 100px;
    padding-bottom: 96px;
  }

  .section {
    padding: 76px 0 84px;
  }

  .lab-grid {
    grid-template-columns: 1fr;
  }

  .lab-card {
    min-height: auto;
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-credit {
    max-width: none;
    text-align: left;
  }
}
