/* ================================================================
   KSC 社長メッセージ リデザイン — presidentMessage_redesign.css
   company_redesign.css の後に読み込み、ページ固有のコンポーネントを追加。
   デザイントークン・ヒーロー・セクション・CTA 等は company_redesign.css を共用。
   ================================================================ */

/* メッセージ本文レイアウト */
.ksc-pm-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

/* 左：写真＋ネームプレート（スクロール追従） */
.ksc-pm-aside { position: sticky; top: 96px; }
.ksc-pm-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ksc-pm-photo img {
  display: block;
  width: 100%; height: auto;
  transition: transform 0.7s ease;
}
.ksc-pm-aside:hover .ksc-pm-photo img { transform: scale(1.04); }
/* コーナーブラケット装飾 */
.ksc-pm-photo-wrap { position: relative; }
.ksc-pm-photo-wrap::before,
.ksc-pm-photo-wrap::after {
  content: '';
  position: absolute;
  width: 34px; height: 34px;
  border: 2px solid var(--accent);
  z-index: 2;
}
.ksc-pm-photo-wrap::before { top: -10px; left: -10px; border-width: 2px 0 0 2px; }
.ksc-pm-photo-wrap::after  { bottom: -10px; right: -10px; border-width: 0 2px 2px 0; }

.ksc-pm-nameplate {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}
.ksc-pm-nameplate .role {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ksc-pm-nameplate .name {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-head);
  letter-spacing: 0.06em;
}
.ksc-pm-nameplate .name span { font-size: 13px; color: var(--text-mid); margin-left: 10px; letter-spacing: 0; }

/* 右：メッセージ本文 */
.ksc-pm-body { max-width: 680px; }
.ksc-pm-lead {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.0;
  color: var(--text-body);
  margin: 0 0 20px;
}
.ksc-pm-body p {
  font-size: 15px;
  line-height: 2.0;
  color: var(--text-body);
  margin: 0 0 20px;
}

/* DX 4ソリューション（本文に馴染ませた控えめなリスト） */
.ksc-pm-solutions {
  margin: 20px 0 24px;
}
.ksc-pm-solutions-head {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-head);
  margin: 0 0 10px;
}
.ksc-pm-sol-list { list-style: none; margin: 0; padding: 0; }
.ksc-pm-sol-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 15px;
  line-height: 2.0;
  color: var(--text-body);
}
.ksc-pm-sol-list li::before {
  content: '';
  position: absolute; left: 2px; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}
.ksc-pm-sol-list .sol-name {
  font-weight: 600;
  color: var(--text-head);
}
.ksc-pm-sol-list .sol-desc {
  display: block;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* 署名 */
.ksc-pm-sign {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: right;
  line-height: 1.9;
}
.ksc-pm-sign .company { font-size: 14px; color: var(--text-mid); }
.ksc-pm-sign .role { font-size: 13px; color: var(--text-mid); }
.ksc-pm-sign .name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px; font-weight: 600;
  color: var(--text-head);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .ksc-pm-grid { grid-template-columns: 1fr; gap: 36px; }
  .ksc-pm-aside { position: static; max-width: 420px; }
  .ksc-pm-body { max-width: none; }
}
@media (max-width: 640px) {
  .ksc-pm-solutions { padding: 24px 20px; }
}
