@charset "utf-8";

@import url("chrome.css?v=20260806a");

:root {
  --ink: #10263a;
  --muted: #5b6b7a;
  --line: #d5dee6;
  --paper: #eef3f6;
  --card: #ffffff;
  --accent: #2f7d8c;
  --deep: #16324a;
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.ss-static {
  font-family: "Manrope", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.ss-hero {
  position: relative;
  min-height: min(70vh, 640px);
  background:
    radial-gradient(circle at 85% 20%, rgba(47,125,140,.35), transparent 40%),
    linear-gradient(135deg, #10263a 0%, #1d4a5c 48%, #2f7d8c 100%);
  color: #fff;
}
.ss-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 88px 0 72px;
}
.ss-kicker {
  margin: 0 0 12px;
  color: #9fd3dc;
  font-size: 12px;
  letter-spacing: 0.28em;
  font-weight: 700;
}
.ss-hero h1 {
  margin: 0 0 18px;
  font-family: "Fraunces", serif;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.25;
  font-weight: 700;
}
.ss-hero p {
  margin: 0 0 28px;
  color: #e7eef3;
  font-size: 15px;
}
.ss-actions,
.ss-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.ss-btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.ss-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.7);
}

.ss-section { padding: 72px 0; }
.ss-section--muted {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ss-section h2 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 700;
}
.ss-lead { color: var(--muted); max-width: 40em; margin: 0 0 32px; }

.ss-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ss-cat {
  background: var(--card);
  border: 1px solid var(--line);
  min-height: 150px;
  padding: 28px 24px;
}
.ss-cat span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.ss-cat strong {
  display: block;
  font-size: 22px;
  font-family: "Fraunces", serif;
  margin-bottom: 8px;
}
.ss-cat p { margin: 0; color: var(--muted); font-size: 13px; }

.ss-about {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.ss-about__panel {
  min-height: 260px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, #16324a 0%, #2f7d8c 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.ss-about__panel span {
  font-family: "Fraunces", serif;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.ss-about__panel strong {
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}
.ss-dl { margin: 24px 0 0; }
.ss-dl div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.ss-dl dt { color: var(--muted); }

@media (max-width: 860px) {
  .ss-cats,
  .ss-about { grid-template-columns: 1fr; }
  .ss-hero__copy { padding: 56px 0 48px; }
}
