/* =====================================================
   カスタムヘッダー（PC）
   ===================================================== */

#header.custom-header {
    background: #fff;
    border-bottom: 1px solid #F0E2F3;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.custom-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
    padding: 12px 0;
    gap: 24px;
    box-sizing: border-box;
}

/* ── 左カラム ── */
.custom-header__left {
    flex-shrink: 0;
}

.custom-header__logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.custom-header__logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #999;
}

.custom-header__clinic-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.custom-header__clinic-name {
    font-family: 'YuMincho', 'Yu Mincho', '游明朝', serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    color: #262626;
    white-space: nowrap;
}

.custom-header__clinic-tagline {
    font-family: 'YuGothic', 'Yu Gothic', '游ゴシック', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #888;
    margin: 0;
    white-space: nowrap;
}

/* ── 右カラム ── */
.custom-header__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 0;
}

/* 診療時間・休診日 */
.custom-header__hours {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'YuGothic', 'Yu Gothic', '游ゴシック', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

/* ナビゲーション */
.custom-header__nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
}

.custom-header__nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #262626;
    gap: 4px;
    transition: opacity 0.2s;
}

.custom-header__nav li a:hover {
    opacity: 0.6;
}

.custom-header__nav-ja {
    font-family: 'YuGothic', 'Yu Gothic', '游ゴシック', sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
}

.custom-header__nav-en {
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: 400;
    font-size: 9px;
    line-height: 1;
    color: #CD9ED7;
    white-space: nowrap;
}
