/* 会社概要ページ専用スタイル */

/* ページ全体の余白調整 */
.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);
}

/* トップメッセージのテキストスタイル */
.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;
}

/* 会社概要テーブル (DL, DT, DD) */
.profile-table {
    width: 100%;
    border-top: 1px solid #e0e0e0;
}

.profile-table__row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.profile-table__term {
    width: 220px; /* PCでのラベル幅 */
    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;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .section-title--left-align {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .profile-table__row {
        flex-direction: column;
    }

    .profile-table__term {
        width: 100%;
        background-color: #f0f4f8;
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid #fff;
        font-size: 0.95rem;
    }

    .profile-table__desc {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

/* 代表署名 */
.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;
}