/* wp-content/themes/generatepress-child/header.css */
/* Header Styles */
.site-header {
    position: relative;
    background-color: #fff;
    padding: 10px 0;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 20px;
}
.site-logo {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
}
.header-logo {
    max-height: 100px;
    width: 6em;
}
.site-title {
    font-size: 1.5rem;
    font-family: 'Zen Old Mincho', serif;
    color: #333;
    text-decoration: none;
}
.main-navigation {
    flex: 1;
    margin: 0 20px;
    text-align: center;
}
nav#site-navigation {
    display: flex;
    justify-content: center;
}
nav#site-navigation .menu-item a {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    letter-spacing: 0.05em;
    color: #35533A;
    font-size: 14px;
    font-weight: 700;
    word-break: keep-all;
    overflow-wrap: break-word;
}
nav#site-navigation .menu-item a:hover {
    color: #51713E;
}
.main-nav {
    list-style: none;
    padding: 0;
}
.main-nav li {
    display: inline-block;
    margin: 0 10px;
}
.main-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}
.main-nav a:hover {
    color: #0073aa;
}
.header-link-button {
    flex: 0 0 auto;
}
.link-button {
    max-height: 40px;
    width: 1.5rem;
    transition: opacity 0.3s ease;
}
.link-button:hover {
    opacity: 0.8;
}
.custom-header-content {
    background-color: #f5f5f5;
    padding: 10px;
    text-align: center;
    font-family: 'Zen Old Mincho', serif;
}