/*
 * このページ固有のスタイル。
 * ヘッダー・フッター・共通レイアウトなど kyosodo.css と重なる部分は
 * kyosodo.css に集約しているため、このファイルには読み込む必要があります。
 */

/* --- Hero (page-specific override) --- */
.k-about-hero-title {
    margin-bottom: 30px;
}

/* --- Content Layout --- */
.k-section-title-serif {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--k-text);
}

.k-section-title-sub {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--k-accent);
}

.k-about-text {
    font-size: 1.1rem;
    line-height: 2.2;
    letter-spacing: 0.05em;
    color: var(--k-text-light);
    margin-bottom: 40px;
}

.k-about-text p {
    margin-bottom: 30px;
}
.k-about-text p:last-child {
    margin-bottom: 0;
}

/* --- text links --- */
.k-about-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}
.k-about-link-item {
    font-size: 1.05rem;
    color: var(--k-accent);
    text-decoration: none;
    border-bottom: 1px solid var(--k-accent);
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.k-about-link-item:hover {
    color: #55271D;
    border-color: #55271D;
    transform: translateY(-1px);
}

/* --- Footer (page-specific override) --- */
.k-footer {
    border-top: 1px solid var(--k-border);
}

/* Responsive */
@media (max-width: 900px) {
    .k-section-title-serif {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    .k-about-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
