:root {
  --bg: #e9e7e4;
  --text: #4a4a4a;
  --texten:  #abaaaa;
  --muted: rgba(74,74,74,.7);
  --line: rgba(255,255,255,.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
}
a:link {color:#4a4a4a;}
.page { min-height: 100vh; display: flex; justify-content: center; padding: 56px 20px 60px; }

.card { width: min(780px, 100%); }

/* ===== LOGO ===== */
.hero { text-align: center; padding-bottom: 36px; }
.hero__logo { width: min(280px, 70vw); height: auto; }

/* ===== COMPANY LIST ===== */
.company { border-top: 1px solid var(--line); }
.company__row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.company__dt { font-size: 14px; padding-left: 3rem;}
.company__dt .jp { display: block; font-weight: 400; }
.company__dt .en { display: block; margin-top: 6px; font-size: 10px; letter-spacing: .12em; font-family: "Futura PT", "Futura", "Avenir", sans-serif; color: var(--texten);}
.company__dd { font-size: 14px; line-height: 1.8; }
.muted { color: var(--muted); }

/* 英語本文用（Futura） */
.en-text { font-family: "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif; letter-spacing: .05em; font-style: normal; font-weight: 400; line-height:1.4;}

.block { margin: 0 0 14px; }
.lines { margin: 0; padding-left: 0; list-style: none; }
.lines li { margin-bottom: 6px; }

/* ===== SNS ===== */
.sns { margin-top: 40px; display: flex; justify-content: center; }
.sns-icons { display: inline-flex; align-items: center; gap: 16px; list-style: none; padding: 0; margin: 0; }
.sns-icons a { display: inline-flex; align-items: center; justify-content: center; font-size: 20px; color: var(--muted); text-decoration: none; transition: opacity .2s; }
.sns-icons a:hover { opacity: .6; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero__logo { width: min(200px, 70vw); height: auto; }
  .company__row { grid-template-columns: 1fr; gap: 6px; padding: 11px 0 22px 0; }
  .company__dt { display: flex; align-items: baseline; padding-left: 0; padding-bottom: 1.5rem; margin-left: 0; font-size:16px;}
  .company__dt .jp { white-space: nowrap; }
  .company__dt .en { margin-left: auto; text-align: right; white-space: nowrap; }
  .company__dd { margin: 0; padding-left: 0; text-align: left; }
}