/* ==================================== */
/* company.css (or added to pages.css) */
/* ==================================== */

/* テーブル全体の構造 */
.company-info-table {
    margin-top: 20px;
}

.info-row {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
    padding: 25px 0;
    align-items: flex-start;
}

.info-row:first-child {
    border-top: 1px solid var(--glass-border);
}

.info-row dt {
    width: 200px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-blue);
    text-transform: uppercase;
    flex-shrink: 0;
}

.info-row dd {
    flex-grow: 1;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
}

/* MISSION セクションの装飾 */
.company-message {
    position: relative;
    padding-left: 40px; /* 左側にアクセントラインを入れるための余白 */
}

.company-message::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), transparent);
}

.company-message h2 {
    /* 共通のh2より少し控えめ、かつ知的に */
    font-size: 1.8rem !important;
    text-align: left !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.1em !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }
    .info-row dt {
        width: 100%;
    }
    .company-message {
        padding-left: 20px;
    }
}