/* ── about.html 専用スタイル ── */

/* メッセージセクション（横2カラム）*/
.msg-inner{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:56px;align-items:center
}
.msg-text .sec-en{display:block;margin-bottom:6px}
.msg-body{
  font-size:.92rem;color:var(--tx-mid);
  line-height:2;margin-bottom:14px
}
.msg-sign{
  font-family:var(--serif);font-size:.9rem;
  color:var(--navy);font-weight:700;
  margin-top:20px;text-align:right
}
.msg-img{
  border-radius:6px;overflow:hidden;
  box-shadow:0 8px 32px rgba(27,42,74,.12)
}
.msg-img img{width:100%;height:100%;object-fit:cover;display:block}

/* 会社情報テーブル */
.info-table-wrap{
  max-width:760px;margin:0 auto;
  border:1px solid var(--rule);border-radius:4px;overflow:hidden
}
.info-table{
  width:100%;border-collapse:collapse;
  font-size:.9rem
}
.info-table th,
.info-table td{
  padding:16px 22px;
  vertical-align:top;
  border-bottom:1px solid var(--rule)
}
.info-table tr:last-child th,
.info-table tr:last-child td{border-bottom:none}
.info-table th{
  background:var(--cream);
  font-weight:600;color:var(--navy);
  white-space:nowrap;width:160px;
  font-family:var(--serif)
}
.info-table td{
  color:var(--tx-mid);line-height:1.95
}
.info-table td a{
  color:var(--navy-mid);text-decoration:underline;text-underline-offset:3px
}
.info-table td a:hover{color:var(--gold)}

/* 沿革タイムライン */
.timeline{
  list-style:none;
  max-width:680px;margin:0 auto;
  position:relative;padding-left:0
}
.timeline::before{
  content:'';position:absolute;
  left:88px;top:8px;bottom:8px;
  width:2px;background:var(--rule);
  border-radius:1px
}
.tl-item{
  display:flex;align-items:flex-start;
  gap:28px;padding:22px 0;
  position:relative
}
.tl-item::before{
  content:'';position:absolute;
  left:83px;top:29px;
  width:12px;height:12px;border-radius:50%;
  background:var(--gold);
  border:2px solid var(--white);
  box-shadow:0 0 0 2px var(--gold)
}
.tl-year{
  flex-shrink:0;width:76px;
  font-family:var(--serif);font-size:.82rem;
  font-weight:700;color:var(--gold);
  text-align:right;padding-top:2px;
  letter-spacing:.02em
}
.tl-body{padding-left:18px}
.tl-body strong{
  font-family:var(--serif);font-size:.95rem;
  color:var(--navy);display:block;margin-bottom:4px
}
.tl-body p{font-size:.85rem;color:var(--tx-mid);line-height:1.9}

/* 強みリスト（about.html用） */
.strength-list{
  list-style:none;
  display:flex;flex-direction:column;
  max-width:760px;margin:0 auto
}
.strength-item{
  display:flex;align-items:flex-start;gap:28px;
  padding:28px 0;border-bottom:1px solid var(--rule)
}
.strength-item:first-child{border-top:1px solid var(--rule)}
.str-num{
  flex-shrink:0;
  font-family:var(--serif);font-size:2rem;font-weight:700;
  color:var(--gold);letter-spacing:.02em;line-height:1;
  min-width:46px
}
.str-body h3{
  font-family:var(--serif);font-size:1.05rem;
  font-weight:700;color:var(--navy);margin-bottom:8px
}
.str-body p{font-size:.88rem;color:var(--tx-mid);line-height:1.95}

/* レスポンシブ */
@media(max-width:860px){
  .msg-inner{grid-template-columns:1fr;gap:28px}
  .msg-img{max-height:360px}
  .msg-img img{object-position:center top}
  .info-table th{width:110px;padding:14px 14px}
  .info-table td{padding:14px 14px}
  .timeline::before{left:64px}
  .tl-item::before{left:59px}
  .tl-year{width:52px}
  .strength-item{gap:18px}
  .str-num{font-size:1.6rem;min-width:38px}
}
@media(max-width:520px){
  .info-table th{display:block;width:100%;border-bottom:none;padding-bottom:4px}
  .info-table td{display:block;padding-top:0}
  .timeline::before{display:none}
  .tl-item::before{display:none}
  .tl-item{flex-direction:column;gap:4px;padding:18px 0}
  .tl-year{width:auto;text-align:left;font-size:.9rem}
  .tl-body{padding-left:0}
  .strength-item{flex-direction:column;gap:8px}
}
