.page-header{
    display: none;
}

.blog #yuyu-header {
    background: rgba(0, 0, 0, 0.95);
}



/*固定メニューここから*/
/*head変色*/
/* 通常時は透明 */
#yuyu-header {
    background: transparent;
    transition: background 0.3s ease;
}

/* 黒背景になるとき */
#yuyu-header.scrolled {
    background: rgba(0, 0, 0, 0.95); /* 透明度調整可 */
}

.yuyu-header{
    position: fixed; top:0; z-index:1000;
    background: rgba(0,0,0,0);
    /*backdrop-filter: saturate(180%) blur(6px);*/
    /*border-bottom: 1px solid rgba(255,255,255,.12);*/
    width: 100%;
}

/* 背景濃度（スクロール時に濃くする） */
.scrolled .yuyu-header{
    background:rgba(0,0,0,.6);
}

.yuyu-header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    /*max-width:1300px;*/
    margin:0 auto;
    padding:10px 10px;
    width: 100%;
}

.yuyu-logo img{
    height:36px;
    display:block;
}

/* ナビ */
.yuyu-nav{
    display:flex;
    align-items:center;
    gap:30px;
    min-width:0;
}

.yuyu-nav-list{
    display:flex;
    align-items:center;
    gap:30px;
    margin:0;
    padding:0;
    list-style:none;
    white-space:nowrap;
}

.yuyu-nav-list a{
    display:block;
    padding:0;
    text-decoration:none;
    color:#fff;
    /*font-weight:600;*/
    letter-spacing:.02em;
}

.yuyu-nav-list a:hover{
    color:#fff;
    opacity: 0.5;
    transition: 0.3s;
}

.yuyu-nav-list li{
    flex:0 0 auto;
}

/* 退避メニュー */
.yuyu-overflow-menu{
    position:relative;
}

.yuyu-overflow-menu[hidden]{
    display:none;
}

.yuyu-overflow-menu.open{
    display:block;
}

.yuyu-overflow-list{
    position:absolute;
    right:0;
    top:calc(100% + 10px);
    min-width:220px;
    max-height:70vh;
    overflow:auto;
    background:rgba(0,0,0,.9);
    border:1px solid rgba(255,255,255,.15);
    border-radius:10px;
    padding:8px 10px;
    list-style:none; margin:0;
}

.yuyu-overflow-list li a{
    display:block;
    padding:10px 12px;
    color:#fff;
}
/*固定メニューここまで*/



/*右下固定エンジェルくんここから*/
.nav-fixed{
    position: fixed;
    right: 3%;
    bottom: 3%;
    z-index: 9999;
    aspect-ratio: 308 / 249;
    width: 20%;
}

.reserve{
    aspect-ratio: 308 / 249;
    display: block;
    width: 100%;
    background-image: url("../img/common/reserve.webp");
    background-size: contain;
    background-repeat: no-repeat;
}

.reserve:hover{
    background-image: url("../img/common/reserve-hover.webp");
}

.tac{
    text-align: center;
}
/*右下固定エンジェルくんここまで*/



/*ハンバーガーメニューここから*/
/* 基本の3本線 */
.yuyu-nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 10000; /* メニューより前に */
    position: fixed;
    top: 7px;
    right: 10px;
}

.yuyu-nav-toggle:focus{
    outline:none;
}

.yuyu-nav-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: transform .3s, opacity .3s;
}

/* 変形後（X状態） */
.yuyu-nav-toggle.active .bar {
    width: 25px!important;              /* 強制的に同じ長さ */
    align-self: center;       /* 真ん中寄せ */
}

.yuyu-nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}

.yuyu-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.yuyu-nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

.yuyu-nav-toggle .bar{
    display:block;
    width:22px;
    height:2px;
    background:#fff;
    margin:3px 0;
    transition:transform .2s,opacity .2s;
    align-self: flex-end;  /* 右寄せ */
}

.yuyu-nav-toggle .bar:nth-child(1) {
    width: 35px;   /* 上の線 */
}

.yuyu-nav-toggle .bar:nth-child(2) {
    width: 30px;   /* 真ん中の線 */
}

.yuyu-nav-toggle .bar:nth-child(3) {
    width: 25px;   /* 下の線 */
}

/* オーバーレイ本体 */
body.menu-open .yuyu-menu-overlay{
    display:block;
}

/* メニュー全体のオーバーレイ */
.yuyu-menu-overlay {
    position: fixed;
    inset: 0;
    background: #d2a005;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease; /* ← フェード用 */
}

/* 表示時 */
.yuyu-menu-overlay.active {
    display: flex;             /* 表示 → flexで中央揃えなど可能 */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
}

/* 2カラムレイアウト：左=ビジュアル / 右=内容 */
.yuyu-menu-inner{
    width:100%;
    height:100%;
    display:grid;
    grid-template-columns: 1fr 1fr; /* PCは常に2カラム */
}

/* ── 左：いぬっこ（常に表示・中央基準・cover） ── */
.yuyu-menu-visual{
    display:block;
    width:100%; height:100%;
    background:
    url('../img/common/menu-image-angel.jpg')
    center center / cover no-repeat;
    min-height:100vh;              /* 念のため高さ確保 */
}

/* ── 右：黄金パネル ── */
.yuyu-menu-panel{
    position:relative;
    background:#d2a005;            /* 指定の黄土色 */
    color:#fff;
    padding-left: 7%;
    display:flex;
    flex-direction:column;
    gap:28px;
    min-height:100vh;
    justify-content:center;
}

/* 閉じるボタン（右上） */
.yuyu-menu-close{
    position:absolute;
    top:12px;
    right:16px;
    font-size:36px;
    line-height:1;
    color:#fff;
    background:transparent;
    border:none;
    cursor:pointer;
}

/* ロゴ（上段） */
.yuyu-menu-head{
    margin-bottom:8px;
}

.yuyu-menu-head .menu-logo{
    max-width:683px;
    width:clamp(200px, 40vw, 683px); /* 可変幅ロゴ */
    height:auto; display:block;
}

/* ========== メニュー行（上下の白ライン＋区切り棒） ========== */
.menu-content.pc{
    position: relative;
    padding: 26px 0;               /* 上下ラインとの余白 */
}

.menu-content.pc::before,
.menu-content.pc::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    height:2px;
    background:rgba(255,255,255,.7);
}

.menu-content.pc::before{
    top:0;
}

.menu-content.pc::after{
    bottom:0;
}

.yuyu-menu-list{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px 0;
    list-style:none;
    margin:0;
    padding:0;
}

.yuyu-menu-list li{
    display:flex;
    align-items:center;
    margin-top:0;
    margin-bottom:0;
    margin-left:clamp(8px, 0.6vw, 22px);
    margin-right:clamp(8px, 0.6vw, 22px);
}

.yuyu-menu-list li + li::before{
    content:"|";
    display:inline-block;
    margin-right:clamp(8px, 1vw, 22px);
    font-size:clamp(14px, 1.4vw, 18px);
    line-height:1;
    transform: translateY(-1px);
    color:#fff;
    opacity:.9;
}

.yuyu-menu-list a{
    font-size:clamp(14px, 1.1vw, 18px);  /* 14〜18pxで可変 */
    line-height:1.8;
    text-decoration:none;
    color:#fff;
    padding:4px 0;
}

.yuyu-menu-list a:hover{
    color: #fff;
    opacity: 0.5;
    transition: 0.3s;
}

/* ========== 予約ボタン（白背景／黄文字 #d2a005） ========== */
.yuyu-reserve{
    margin-top:26px;
    display:flex;
    gap:28px;
    flex-wrap:wrap;
}

.reserve-btn{
    display:inline-block;
    font-size:clamp(18px, 1.2vw, 28px);    /* 18〜28pxで可変 */
    line-height:1.2;
    padding:clamp(10px, 1.2vw, 18px) clamp(16px, 1.2vw, 34px);
    background:#fff;
    color:#d2a005;
    text-decoration:none;
    border:none;
    transition: all 0.3s ease; /* hover時の変化を滑らかに */
}

.reserve-btn:hover{
    opacity:.9;
    text-decoration: none;
    background:#d2a005;
    color:#fff;
    box-shadow: inset 0 0 0 2px #fff; /* 内側に1pxの白枠 */
}

/* ========== 連絡先（白文字・下線無し） ========== */
.yuyu-contact p{
    margin:10px 0;
    font-size:clamp(14px, 1.4vw, 18px);
    color:#fff;
}

.yuyu-contact a{
    color:#fff;
    text-decoration:none;
}
/*ハンバーガーメニューここまで*/





/* （補助）小さめ画面でも2カラムを維持したい場合は下記を残す */
@media (max-width: 1200px){
    .yuyu-menu-panel{
        padding:5%;
    }

    .yuyu-menu-head .menu-logo{
        width:90%;
    }
}



/* モバイルは全メニューをハンバーガーへ */
@media (max-width: 1024px){
    .yuyu-nav-list{
        display:none
    }
    
    .yuyu-menu-inner{
        grid-template-columns: 1fr;
    }

    /* レイアウト：1カラム、ビジュアルは消す */
    .yuyu-menu-visual{
        display:none;
    }
    
    .yuyu-menu-panel{
        padding:5%;
        min-height:100vh;
        gap: 5vh;
    }

    /* ロゴ（幅はそのまま自動縮小） */
    .yuyu-menu-head .menu-logo{
        width:96%;
        max-width:900px;
        margin: auto;
    }

    /* メニュー行：上下ラインは維持、文字サイズ12px */
    .menu-content.pc{
        padding:18px 0;
    }

    .menu-content.pc::before,
    .menu-content.pc::after{
        height:2px;
    }

    .yuyu-menu-list{
        gap:8px 0;
        justify-content:flex-start;
    }

    .yuyu-menu-list li{
        margin:0 5px;
    }

    .yuyu-menu-list li + li::before{
        margin-right:12px;
        font-size:12px;
    }

    .yuyu-menu-list a{
        font-size:16px;   /* 指定：12px */
        line-height:1.7;
        padding:2px 0;
    }

    /* 予約ボタン：文字16px、横幅100%で積む */
    .yuyu-reserve{
        gap:14px;
        margin-top:18px;
        flex-direction:column;
    }

    .reserve-btn{
        width:100%;
        text-align:center;
        font-size:18px;   /* 指定：18px */
        padding:12px 14px;
    }

    /* 住所・電話：12px */
    .yuyu-contact p{
        font-size:18px;   /* 指定：12px */
        line-height:1.7;
        margin: 0;
    }

    /* 閉じるボタンは少し小さめに */
    .yuyu-menu-close{
        top:8px;
        right:10px;
        font-size:28px;
    }

    .reserve{
        aspect-ratio: 200 / 242;
        background-image: url("../img/index/angel-sp-fx.webp");
    }

    .reserve:hover{
        background-image: url("../img/index/angel-sp-fx.webp");
    }
}



/* ===== SP（スマホ）用：angel非表示・1カラム・サイズ指定 ===== */
/* ===== SP（スマホ）用：angel非表示・1カラム・サイズ指定 ===== */
@media (max-width: 750px){
    .menu-content.sp{
        position: relative;
        padding: 3% 0;               /* 上下ラインとの余白 */
    }

    .menu-content.sp::before,
    .menu-content.sp::after{
        content:"";
        position:absolute;
        height:2px;
        width: 100%;
        background:rgba(255,255,255,.7);
    }

    .menu-content.sp::before{
        top: 0;
    }

    .menu-content.sp::after{
        bottom: 0;
    }

    .yuyu-menu-list {
        justify-content: center;
    }

    .yuyu-contact p {
        font-size: 12px;
    }

    .yuyu-reserve {
        margin-top: 0;
    }
}