/*
 Theme Name: Kadence Child
 Theme URI: https://kadaencewp.com/
 Description: Child theme for Kadence
 Author: Your Name
 Template: kadence
 Version: 1.0.0
*/

/* ────────────────
   カスタムヘッダー
   ──────────────── */
.custom-header {
    width: 100%;
    padding: 24px 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.5);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ブランド切り替え */
.brand-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-link {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #111;
    transition: opacity .3s;
}

.brand-link:hover {
    opacity: .4;
}

.divider {
    color: #aaa;
}

/* メニュー */
.menu-list {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
}

.menu-list a {
    font-size: 15px;
    text-decoration: none;
    color: #222;
    transition: opacity .3s;
}

.menu-list a:hover {
    opacity: .4;
}

/* コンテンツがヘッダーに隠れないよう余白 */
body {
    padding-top: 100px;
}