/* ==========================================
   ヘッダー家紋スタイル
   ========================================== */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-kamon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center 45%;
    background: white;
    border-radius: 50%;
    padding: 1px;
    border: 1.5px solid var(--warm-gold);
}

.nav-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-sect {
    font-size: 0.65rem;
    color: var(--text-light-gray);
    font-family: var(--font-gothic);
    line-height: 1;
    letter-spacing: -0.01em;
}

.nav-title {
    font-size: 1.1rem;
    color: var(--warm-gold);
    font-weight: bold;
    font-family: var(--font-mincho);
    line-height: 1;
    letter-spacing: -0.02em;
}

.nav-mountain {
    font-size: 0.85rem;
    margin-right: 0.25em;
}

.nav-temple {
    font-size: 1.1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .nav-kamon {
        width: 32px;
        height: 32px;
    }

    .nav-sect {
        font-size: 0.55rem;
    }

    .nav-title {
        font-size: 0.95rem;
    }
}