/* Header - 固定ヘッダー（base.cssで定義済みだが、念のため重複定義） */
header,
body header,
body > header {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 70px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 999999 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* admin-barがある場合の調整 */
.admin-bar header,
.admin-bar body header,
.admin-bar body > header {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    .admin-bar header,
    .admin-bar body header,
    .admin-bar body > header {
        top: 46px !important;
    }
}

.page-main {
    padding-top: 40px;
    padding-bottom: 60px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-color);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: #f9f9f9;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-branding {
    white-space: nowrap;
}

.footer-branding p {
    white-space: nowrap;
}

.footer-branding p span {
    display: inline;
}

.footer-text-break {
    display: none;
}

.footer-links {
    display: flex !important;
    gap: 80px !important;
    flex-wrap: nowrap !important;
}

.footer-column {
    flex-shrink: 0 !important;
    min-width: 0 !important;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    white-space: nowrap;
}

.footer-column ul {
    list-style: none;
    white-space: normal;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-light);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}




