/* 事業所概要ページ専用スタイル */

/* ごあいさつカード */
.about-greeting-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, var(--secondary-beige) 0%, #fefefe 100%);
}

.about-greeting-intro {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-intro-top {
    font-size: 1rem;
    color: var(--text-brown);
    display: block;
}

.about-intro-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-brown);
    display: block;
    line-height: 1.6;
    text-decoration: underline;
    text-decoration-color: var(--accent-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.about-greeting-text {
    text-align: center;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.about-greeting-text:last-child {
    margin-bottom: 0;
}

.about-highlight {
    color: var(--accent-orange);
}

/* プロフィールカード */
.about-profile-card {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.about-profile-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-brown);
    border-bottom: 3px solid var(--accent-orange);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.about-profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-brown);
}

/* プロフィールテーブル */
.about-profile-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.about-profile-table th {
    width: 30%;
    padding: 0.8rem 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-brown);
    background-color: var(--secondary-beige);
    border-bottom: 1px solid var(--border-white);
    vertical-align: top;
}

.about-profile-table td {
    padding: 0.8rem 1rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-white);
    vertical-align: top;
}

.about-profile-table tr:last-child th,
.about-profile-table tr:last-child td {
    border-bottom: none;
}

/* 事務所情報カード */
.about-office-card {
    max-width: 900px;
    margin: 0 auto 3rem;
}
