/* ============================================================
   team-style.css - チームスタイル（サブページ再設計版）
   ワイヤーフレーム_サブページ再設計.md §4（パターンA・philosophyと対）準拠
   style.cssのトークン・サブページ共通テンプレを前提に追加定義のみ
   ============================================================ */

/* ---------- 01 LEAD（大タイポ2カラム） ---------- */
.ts-lead {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

.ts-lead .sub-head {
  margin-bottom: 0;
}

.sub-head__ja.ts-lead__catch {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.6;
}

.ts-lead__catch span {
  color: var(--primary);
}

.ts-statement p {
  margin-bottom: 20px;
}

.ts-statement p:last-child {
  margin-bottom: 0;
}

/* feature-card形（影付き白箱＋金の小英字ラベル）。金の左ボーダーは全廃（2026-07-12） */
.ts-highlight {
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow-1);
}

.ts-highlight::before {
  content: "OUR STANCE";
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.ts-highlight p {
  margin-bottom: 4px;
}

.ts-highlight p:last-child {
  margin-bottom: 0;
}

.ts-highlight strong {
  font-size: 17px;
}

/* ---------- 全幅写真帯（Ken Burns） ---------- */
.ts-visual {
  height: 380px;
  overflow: hidden;
  position: relative;
}

.ts-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .ts-visual img {
    animation: none;
  }
}

/* ---------- 02 IDENTITY（番号リスト＋信条引用） ---------- */
.identity-list {
  max-width: 820px;
}

.identity-item {
  display: flex;
  gap: 20px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--border);
}

.identity-item:first-child {
  border-top: 1px solid var(--border);
}

.identity-item > span {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  flex: 0 0 auto;
}

.identity-item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.identity-item p {
  font-size: 14px;
  line-height: 1.9;
}

/* 信条の大タイポ引用（緩急づけ） */
.ts-creed {
  margin-top: 56px;
  text-align: center;
}

.ts-creed::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 28px;
}

.ts-creed p {
  font-family: var(--font-head);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}

.ts-creed strong {
  color: var(--primary);
}

/* ---------- 03 METHOD（濃紺・独自メソッド） ---------- */
.method-intro {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.method-intro > p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 2.1;
  color: var(--text-inverse);
}

.method-intro strong {
  color: var(--accent);
}

/* feature-card形の濃紺上バリエーション（半透明カード＋金の小英字ラベル）。金の左ボーダーは全廃（2026-07-12） */
.method-highlight {
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
}

.method-highlight::before {
  content: "POINT";
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.method-grid article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 26px 22px;
}

.method-grid h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 10px;
}

.method-grid p {
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

.method-footer {
  margin-top: 44px;
  text-align: center;
  color: var(--text-inverse);
}

.method-footer strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.method-footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- 04/06 写真＋テキスト2カラム ---------- */
.ts-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.ts-split--reverse {
  grid-template-columns: 1.05fr 1fr;
}

.ts-split--reverse .ts-split__image {
  order: 2;
}

.ts-split--reverse .ts-split__content {
  order: 1;
}

.ts-split__image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-1);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ts-split__content .sub-head {
  margin-bottom: 24px;
}

.ts-split__content > p {
  font-size: 15px;
  line-height: 2;
}

/* ---------- 05 PLAY CONCEPT（番号カード3枚） ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.concept-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow-1);
  padding: 30px 26px;
}

.concept-card__num {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
}

.concept-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.concept-card ul {
  display: grid;
  gap: 8px;
}

.concept-card li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.9;
}

.concept-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

.concept-footer {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.concept-footer span {
  color: var(--accent-dark);
}

/* ---------- 07 TACTICAL PRINCIPLE（濃紺・4原則） ---------- */
.tactical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tactical-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 26px 22px;
  text-align: center;
}

.tactical-card__en {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
}

.tactical-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-inverse);
  margin-bottom: 10px;
}

.tactical-card p {
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.tactical-footer {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(15px, 1.9vw, 19px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* ---------- 08 MESSAGE（中央寄せ大タイポ引用） ---------- */
.ts-message {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.ts-message blockquote {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}

.ts-message blockquote::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 28px auto;
}

.ts-message__closing strong {
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 700;
  line-height: 2;
  color: var(--primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ts-lead {
    gap: 40px;
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tactical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ts-lead {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ts-visual {
    height: 220px;
  }

  .ts-split,
  .ts-split--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ts-split--reverse .ts-split__image {
    order: 1;
  }

  .ts-split--reverse .ts-split__content {
    order: 2;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tactical-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .identity-item > span {
    font-size: 30px;
  }
}
