/* =========================================
   0. RESETS & BASE STYLES
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1a1a1a;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.kitano-lp {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.reservation-bg {
    display: none !important;
}


/* =========================================
   1. LAYOUT: HEADER, NAV, CHIPS, FOOTER
   (navmenu.blade.php のスタイル)
   ========================================= */

/* ===== 1a. 固定ヘッダー ===== */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #ffd700;
    letter-spacing: 3px;
    font-family: 'Arial Black', sans-serif;
}

/* ===== 1b. ハンバーガーアイコン ===== */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== 1c. ナビゲーションメニュー (スライド) ===== */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 30px 40px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.7);
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    display: block;
    color: #ffd700;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a:active {
    color: #fff;
    padding-left: 20px;
    border-bottom-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

/* ===== 1d. 固定チップボタン (右側) ===== */
.fixed-chips {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    font-size: 11px;
    font-weight: bold;
    padding: 5px;
}
.chip i {
    font-size: 20px;
    margin-bottom: 2px;
}
.chip:hover,
.chip:active {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    color: #1a1a1a;
}
.chip:active {
    transform: scale(0.95);
}

/* ===== 1e. フッター ===== */
#footer {
    width: 100%;
    height: 20px;
    background: #0a0a0a;
}


/* =========================================
   2. MAIN CONTENT & SECTION DEFAULTS
   ========================================= */

/* [修正] .main-content はヘッダー(60px)下に配置 */
.main-content {
    margin-top: 60px;
    width: 100%;
}

.lp-section {
    width: 100%;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================
   3. HERO (SECTION 1)
   ========================================= */
.hero-section {
    /* [修正] 画面の高さ100% から ヘッダー(60px) を引いた高さ */
    height: calc(100vh - 60px);
    background: #000;
    z-index: 1;
    margin-top: 60px; /* ★[重要] スマホ表示でヘッダー(60px)を避ける */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* object-fit のため */
}

/* [修正] 背景画像 <picture> タグのスタイル */
.hero-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* ロゴより後ろ */
}
.hero-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ★★★ これが「伸び」を防ぎます ★★★ */
    filter: none;
}

/* [修正] ロゴ <picture> タグのスタイル */
.hero-logo {
    position: relative; /* flexアイテムとして中央に配置 */
    z-index: 2; /* 背景より手前 */
    width: 60%; /* モバイルでの縮尺 */
    max-width: 300px;
}
.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* 古いテキストコンテンツ (非表示) */
.hero-content {
    display: none;
}

/* =========================================
   5. SECTION MAP (carte.jpg)
   ========================================= */

.section-map {
    padding: 60px 20px;
    text-align: center;
}
.map-title {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    font-weight: 600;
    color: #f8d447;
}
.map-image {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}


/* =========================================
   6. SECTION 3 - STORE INFO BLOCK (Animation)
   ========================================= */

.section-3-info {
    background: #000;
    padding: 60px 25px;
    text-align: left;
    color: #f8d447;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
    /* アニメーション初期状態 */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.section-3-info.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.info-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.1em;
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
}
.info-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}
.info-list li:last-child {
    border-bottom: none;
}
.info-list .label {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: #f8d447;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}


/* =========================================
   =========================================
   8. MEDIA QUERIES (RESPONSIVE)
   =========================================
   ========================================= */

/* =========================
   PC / Tablet (768px 以上)
   ========================= */
@media (min-width: 768px) {

    /* ===== 8a. LAYOUT (PC) ===== */
    .fixed-header { padding: 0 40px; }
    .logo { font-size: 26px; }
    .nav-menu { max-width: 350px; padding: 120px 40px 40px; }
    .fixed-chips { right: 20px; }
    .chip { width: 70px; height: 70px; font-size: 12px; }
    .chip i { font-size: 24px; }

    /* ===== 8b. HERO (PC) ===== */
    .hero-section {
        height: 70vh;
        margin-top: 0; /* [修正] PCでは .main-content が 0 になるため、Heroも 0 */
    }

    /* [修正] .main-content は PC では 0px に */
    .main-content {
        margin-top: 0;
    }

    .hero-logo {
        width: 30%;
        max-width: 500px;
    }

    /* ===== 8d. SECTION INFO (PC) ===== */
    .section-info-pc {
        display: block; /* PCでのみ表示 */
    }

    /* ===== 8e. SECTION MAP (PC) ===== */
    .section-map { padding: 80px 40px; }
    .map-title { font-size: 3rem; margin-bottom: 40px; }
    .map-image { max-width: 800px; }

    /* ===== 8f. SECTION 3 INFO (PC) ===== */
    .info-title { font-size: 3rem; margin-bottom: 40px; }
    .info-list li { font-size: 1.3rem; }

} /* End of @media (min-width: 768px) */


/* =========================
   Small Phone (576px 以下)
   ========================= */
@media (max-width: 576px) {
    .fixed-header { padding: 0 15px; }
    .logo { font-size: 18px; }
    .fixed-chips { right: 10px; }
    .chip { width: 55px; height: 55px; font-size: 10px; }
    .chip i { font-size: 18px; }
    .nav-menu { max-width: 100%; padding: 100px 25px 40px; }
    .nav-menu a { font-size: 18px; }
} /* End of @media (max-width: 576px) */


/* =========================
   X-Small Phone (375px 以下)
   ========================= */
@media (max-width: 375px) {
    .fixed-chips { right: 8px; }
    .chip { width: 50px; height: 50px; font-size: 9px; }
    .chip i { font-size: 16px; }
} /* End of @media (max-width: 375px) */
