@charset "UTF-8";

/* ==========================================================================
   1. スマホ・タブレット向けスタイル (767px以下)
   ========================================================================== */
@media screen and (max-width: 767px) {
    
    /* ---- 全体調整 ---- */
    .inner {
        padding: 60px 20px;
        width: 100%;
    }

    /* 固定フッターバーの分だけページ下部に余白を作る */
    body {
        padding-bottom: 60px !important;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* ---- ヘッダー ---- */
    .header__inner {
        padding: 0 15px;
    }

    .header__site-title {
        font-size: 1.1rem;
    }

    /* ---- メインビジュアル (絶対配置による強制中央修正) ---- */
    .hero {
        position: relative !important;
        display: block !important; 
        height: 100vh;
    }

    .hero__text-vertical {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
        height: auto !important;
        
        writing-mode: vertical-rl !important;
        -ms-writing-mode: tb-rl !important;
        
        white-space: nowrap;
        z-index: 10;
    }

    .hero__catch {
        font-size: 1.6rem !important;
        line-height: 1.8 !important;
        
        border-right: 1px solid #c5a059 !important;
        padding-right: 20px !important;
        margin-left: 15px !important;
        margin-bottom: 0 !important;
    }

    .hero__sub {
        font-size: 0.9rem !important;
        color: #ddd !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    /* ---- お品書きページ調整 ---- */
    .menu-nav {
        top: 70px;
    }
    .menu-btn {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    /* ---- フッター調整 ---- */
    .footer__container {
        flex-direction: column;
        text-align: center;
    }
    .footer__hours-row {
        justify-content: center;
    }

    /* ▼▼▼ スマホ固定フッターバー ▼▼▼ */
    .mobile-footer-nav {
        display: block; /* スマホでは表示 */
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    }

    .mobile-footer-nav__list {
        display: flex;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-footer-nav__item {
        flex: 1;
        height: 100%;
    }

    .mobile-footer-nav__item a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        gap: 5px;
        transition: opacity 0.3s;
    }

    .mobile-footer-nav__item--tel a {
        background-color: #f2f2f2;
        color: #000;
        border-top: 1px solid #ddd;
    }

    .mobile-footer-nav__item--web a {
        background-color: #c5a059;
        color: #000;
        border-top: 1px solid #c5a059;
    }

    /* ▼▼▼ 修正箇所：ページトップボタンの位置調整 ▼▼▼ */
    /* 固定フッター(60px) + 余白(20px) = 80px以上上に配置 */
    .page-top {
        bottom: 90px !important; 
    }
}

/* ==========================================================================
   2. PC・タブレット向けスタイル (768px以上)
   ========================================================================== */
@media screen and (min-width: 768px) {

    /* PCでは固定フッターを非表示 */
    .mobile-footer-nav {
        display: none;
    }

    /* コンテナ幅拡張 */
    .inner {
        padding: 100px 0;
    }

    /* ---- ヘッダー ---- */
    .header {
        height: 90px;
    }

    .header__inner {
        padding: 0 40px;
    }

    /* ハンバーガー非表示 */
    .hamburger-btn {
        display: none;
    }

    /* PC用ナビゲーション表示 */
    .global-nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
        display: block;
        transform: none;
    }

    .global-nav__list {
        display: flex;
    }

    .global-nav__list li {
        margin-bottom: 0;
        margin-left: 30px;
    }

    .global-nav__list a {
        padding: 0;
        font-size: 1rem;
        position: relative;
    }
    
    /* ホバー時の下線アニメーション */
    .global-nav__list a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--color-gold);
        transition: 0.3s;
    }
    .global-nav__list a:hover::after {
        width: 100%;
    }

    /* ---- メインビジュアル ---- */
    .hero__catch {
        font-size: 3rem; /* 文字サイズ大きく */
    }

    /* ---- お知らせ ---- */
    .news-list__item {
        display: flex;
        align-items: center;
    }
    
    .news-list__link {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .news-list__date {
        margin-bottom: 0;
        margin-right: 20px;
        min-width: 100px;
    }

    /* ---- コンセプトエリア (左右2カラム) ---- */
    .concept-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .concept-text {
        width: 45%;
        margin-bottom: 0;
    }
    
    .section-header--left {
        text-align: left;
    }

    .concept-image {
        width: 50%;
    }
    
    .img-placeholder {
        height: 400px;
    }

    /* ---- アクセス (左右2カラム) ---- */
    .access__grid {
        display: flex;
        justify-content: space-between;
    }

    .access__map {
        width: 48%;
        margin-bottom: 0;
    }

    .access__info {
        width: 48%;
    }

    /* ---- お席 (交互レイアウト) ---- */
    .seat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 100px;
    }
    
    .seat-item:nth-child(even) {
        flex-direction: row-reverse; /* 偶数番目は画像を右に */
    }

    .seat-item__img {
        width: 48%;
    }

    .seat-item__info {
        width: 46%;
    }

    /* ---- 求人 (テーブルレイアウト調整) ---- */
    .recruit-row {
        display: flex;
        align-items: flex-start;
    }
    
    .recruit-row dt {
        width: 25%;
        margin-bottom: 0;
    }
    
    .recruit-row dd {
        width: 75%;
    }

    /* ---- フッター (3カラム) ---- */
    .footer__inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer__brand {
        width: 25%;
        text-align: left;
    }

    .footer__info {
        width: 40%;
    }
    
    .footer__nav {
        width: 25%;
        text-align: right;
    }
    
    .footer__nav-list li {
        display: block;
        margin: 0 0 10px 0;
    }

    .footer__copyright {
        width: 100%;
        margin-top: 60px;
        border-top: 1px solid #333;
        padding-top: 20px;
    }
}