/* ==========================================================================
   about.css
   会社概要ページ専用スタイル
   1. ページレイアウト・共通スタイル (.page-content, .text-content-section)
   2. メッセージセクション (.text-content-section p, .message-signature)
   3. 会社概要テーブル (.profile-table)
   4. レスポンシブ対応
   ========================================================================== */

/* === 1. ページレイアウト・共通スタイル === */
.page-content {
    padding-top: 60px;
    padding-bottom: 100px;
}

.text-content-section {
    margin-bottom: 80px;
}
.text-content-section:last-child {
    margin-bottom: 0;
}

.section-title--left-align {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.section-title--left-align::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-main);
}

/* === 2. メッセージセクション === */
.text-content-section p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 24px;
    text-align: justify;
    color: var(--color-text-dark);
    font-family: 'Noto Serif JP', serif;
}

.text-content-section p strong {
    font-size: 1.4rem;
    color: var(--color-main);
    background: linear-gradient(transparent 60%, #eef6ff 60%);
    padding: 0 4px;
}

.text-content-section p.message-signature {
    text-align: right;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 30px;
    font-family: 'Noto Serif JP', serif;
}

.signature-title {
    font-size: 0.9rem;
    margin-right: 0.5em;
    font-weight: 500;
}

/* === 3. 会社概要テーブル === */
.profile-table {
    width: 100%;
    border-top: 1px solid #e0e0e0;
}

.profile-table__row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.profile-table__term {
    width: 220px;
    flex-shrink: 0;
    background-color: #f8f9fa;
    padding: 24px;
    font-weight: 700;
    color: var(--color-main);
    display: flex;
    align-items: center;
    border-right: 1px solid #f0f0f0;
}

.profile-table__desc {
    flex-grow: 1;
    padding: 24px;
    color: var(--color-text-dark);
    line-height: 1.8;
}

.profile-table__desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-table__desc ul li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 5px;
}

.profile-table__desc ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--color-main);
    font-weight: bold;
}

/* === 4. レスポンシブ対応 === */
@media (max-width: 767px) {
    .page-content {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .text-content-section {
        margin-bottom: 50px;
    }

    .section-title--left-align {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .text-content-section p {
        font-size: 0.95rem;
        line-height: 1.8;
        text-align: left;
    }

    .text-content-section p strong {
        font-size: 1.1rem;
    }

    .text-content-section p.message-signature {
        font-size: 1rem;
        margin-top: 20px;
    }

    .profile-table__row {
        flex-direction: column;
    }

    .profile-table__term {
        width: 100%;
        background-color: #f0f4f8;
        padding: 12px 15px;
        border-right: none;
        border-bottom: 1px solid #fff;
        font-size: 0.9rem;
    }

    .profile-table__desc {
        padding: 15px;
        font-size: 0.9rem;
    }
}