/* =========================================================
   Link-U Marketing — styles
   元サイト (marketing.link-u.co.jp) の構造・デザインを再現
   ========================================================= */

:root {
  /* ---- Design tokens (元サイトから抽出) ---- */
  --red-bg: #bb190f;      /* ページ背景の深紅 */
  --red-accent: #d02419;  /* ラベル / ボタン */
  --ink: #333333;         /* 見出し・本文の濃色 */
  --ink-sub: #666666;     /* 補足テキスト */
  --line: #ededed;        /* テーブル区切り線 */
  --card: #ffffff;

  --font-display: "Inter", "Noto Sans JP", sans-serif;
  --font-body: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Inter", sans-serif;

  --card-max: 1040px;
  --content-max: 880px;
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--red-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--card-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------ Hero ------------------ */
.hero {
  text-align: center;
  padding: 72px 24px 56px;
}

.hero__logo {
  display: inline-block;
  max-width: 400px;
  width: 70%;
  height: auto;
}

/* 実ロゴ画像が無いときのフォールバック用ワードマーク */
.wordmark {
  align-items: baseline;
  gap: .06em;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 6vw, 48px);
  letter-spacing: .01em;
  line-height: 1;
}
.wordmark small {
  font-size: .42em;
  font-weight: 600;
  letter-spacing: .12em;
  opacity: .95;
}

.hero__tagline {
  margin: 28px auto 0;
  max-width: 620px;
  color: #fff;
  font-size: 15px;
  line-height: 2;
}

/* ------------------ White content card ------------------ */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 64px clamp(24px, 5vw, 72px);
}

.section + .section { margin-top: 72px; }

.section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--red-accent);
  line-height: 1;
  margin: 0;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 32px);
  color: var(--ink);
  margin: 12px 0 40px;
  line-height: 1.3;
}

/* ------------------ Company table ------------------ */
.info { border-top: 1px solid var(--line); }
.info__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 8px 32px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}
.info__label {
  font-weight: 700;
  color: var(--ink);
  line-height: 1.9;
}
.info__value {
  color: var(--ink);
  line-height: 1.9;
}
.info__value .en { color: var(--ink-sub); }

/* 役員リスト */
.officers { display: grid; gap: 6px; }
.officers .role { color: var(--ink-sub); font-size: 14px; }

/* ------------------ Contact ------------------ */
.contact__lead { margin: 0 0 8px; }
.contact__note { margin: 0 0 32px; color: var(--ink-sub); font-size: 14px; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 420px;
  padding: 20px 24px;
  background: var(--red-accent);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  transition: opacity .2s ease, transform .2s ease;
}
.btn:hover { opacity: .9; transform: translateY(-1px); }
.btn .arrow { font-size: 20px; line-height: 1; }

/* ------------------ Footer ------------------ */
footer {
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding: 40px 24px 48px;
}

/* ------------------ Scroll reveal (元サイトの .appear 相当) ------------------ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------ Responsive ------------------ */
@media (max-width: 640px) {
  .card { padding: 44px 22px; border-radius: 18px; }
  .info__row { grid-template-columns: 1fr; gap: 4px; padding: 16px 2px; }
  .info__label { font-size: 14px; }
  .btn { max-width: none; }
}
