/* ===============================
   About page
================================ */

/* ===== 見出し ===== */

h2{
letter-spacing:2px;
}

.text-muted{
font-size:14px;
letter-spacing:1px;
}


/* ===== カード ===== */

.card{
border:none;
border-radius:12px;
}

.card-body{
line-height:1.9;
}


/* ===== テーブル（会社概要） ===== */

.table th{
font-weight:600;
width:220px;
color:#666;
}

.table td{
color:#333;
}


/* ===============================
   History Timeline
================================ */

.history-timeline{
position:relative;
padding-left:50px;
}

/* 縦ライン */

.history-timeline::before{
content:"";
position:absolute;
left:18px;
top:0;
width:2px;
height:100%;
background:#e5e5e5;
}

/* 各沿革 */

.history-item{
position:relative;
margin-bottom:40px;
}

/* 丸ポイント（改良版） */

.history-item::before{
content:"";
position:absolute;
left:-36px;
top:6px;
width:14px;
height:14px;
background:#007bff;
border-radius:50%;
box-shadow:0 0 0 4px #ffffff;
}

/* 年 */

.history-year{
font-weight:700;
margin-bottom:6px;
color:#222;
font-size:16px;
}

/* 内容 */

.history-content{
color:#555;
line-height:1.9;
}

/* 最後の余白調整 */

.history-item:last-child{
margin-bottom:0;
}