@charset "UTF-8";
/* ===== 創作餃子 RiN カスタム上書き（style.css の後に読み込み） ===== */

/* --- テキストロゴ（ロゴ画像なし・おまかせテキスト） --- */
.header-logo-text {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.06em;
    line-height: 1.2;
    display: inline-block;
    white-space: nowrap;
}
.footer-logo-text {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.06em;
    line-height: 1.2;
    display: inline-block;
}
@media (min-width: 768px) {
    .header-logo-text { font-size: 24px; }
}
@media (max-width: 767px) {
    .header-logo-text { 
        font-size: 18px; 
        color: #000;
    }
    .footer-logo-text { font-size: 20px; }
}

/* --- 下層ページMV（h1_bg.jpg=焼き餃子）：白いタイトル文字の視認性確保のため薄暗オーバーレイ --- */
.main_menu,
.main_gallery,
.main_access,
.main_recruit {
    background-image: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url(../img/h1_bg.jpg);
}

/* --- メニュー内アンカーナビ：LUNCH非表示で3ボタンになったPCで左寄せになるため中央寄せ --- */
@media (min-width: 768px) {
    .anchor_wrap {
        justify-content: center;
    }
}

/* --- TOPギャラリーのループスライダー：各画像を中央基準でトリミング（見切れ防止） --- */
#loopslider ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
