﻿@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700;900&display=swap');

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    --color-main: #1A1A1A;
    /* 漆黒 */
    --color-accent: #C5A059;
    /* 黄金・真鍮色 */
    --color-base: #5D3A1A;
    /* 鰻のタレなど暖色ブラウン */
    --color-text: #333333;
    --color-bg: #F9F9F9;
    /* 和紙っぽい明るいオフホワイト */
    --font-primary: 'Noto Serif JP', serif;
    --easing: cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.06);
    --shadow-float: 0 10px 30px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 700;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin: 0;
    overflow-x: hidden;
    /* 背景テクスチャ */

    background-size: 500px;
    background-repeat: repeat;
    background-blend-mode: soft-light;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.pc-only {
    display: none;
}

.sp-only {
    display: block;
}

@media (min-width: 768px) {
    .pc-only {
        display: block;
    }

    .sp-only {
        display: none;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-margin {
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .section-margin {
        margin-bottom: 120px;
    }
}

/* ==========================================================================
   Typography & Section Titles
   ========================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.section-title img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100px;
    /* 必要に応じて調整 */
    object-fit: contain;
    opacity: 1;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    /* 以前のまま: ロゴ左、ナビ右 */
    align-items: center;
    padding: 0 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ヘッダーのレイアウト調整: ロゴ左、他右 */
.header-logo {
    margin-right: auto;
    /* これでロゴ以外の要素が右に寄る */
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: none;
}

@media (min-width: 768px) {
    .header-nav {
        display: block;
        margin-right: 50px;
        /* 店舗情報とボタンの間に50pxのアキを作成 */
    }

    .header-nav ul {
        display: flex;
        list-style: none;
        gap: 30px;
        margin: 0;
        padding: 0;
    }

    .header-nav a {
        color: var(--color-text);
        font-size: 0.95rem;
        font-weight: 700;
    }

    .header-nav a:hover {
        color: var(--color-accent);
    }
}

.header-btn {
    display: none;
}

@media (min-width: 768px) {
    .header-btn {
        display: block;
        background-color: var(--color-accent);
        color: #fff;
        padding: 10px 20px;
        border-radius: 2px;
    }
}

/* Hamburger Menu */
.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transition: all 0.3s;
}

.hamburger span:nth-of-type(1) {
    top: 0;
}

.hamburger span:nth-of-type(2) {
    top: 9px;
}

.hamburger span:nth-of-type(3) {
    bottom: 0;
}

.hamburger.active span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

.sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-main);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s, transform 0.4s;
    transform: translateY(-20px);
}

.sp-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sp-menu-header {
    position: absolute;
    top: 20px;
    right: 20px;
}

.menu-close {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.menu-close span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
}

.menu-close span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.menu-close span:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}

.sp-menu-cta {
    margin-top: 40px;
    padding: 0 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.sp-menu-cta img {
    width: 100%;
    height: auto;
    border: 1px solid #fff;
}

.sp-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.sp-menu li {
    margin: 20px 0;
}

.sp-menu a {
    color: #fff;
    font-size: 1.2rem;
}

/* ==========================================================================
   FV (First View)
   ========================================================================== */
.fv {
    position: relative;
    width: 100%;
    /* max-width: 1366px; 制限解除 */
    /* margin: 0 auto;    解除 */
    height: auto;
    /* 常に画面いっぱい */
    overflow: hidden;
    margin-bottom: 0px;
    /* FV下の余白はなし、すぐ次のセクションへ */
    background-color: #000;
    /* 余白が出た場合の保険 */
    padding-top: 70px;
    /* ヘッダー被り防止 */
}

.fv .swiper {
    width: 100%;
    height: auto;
}

.fv .swiper-slide {
    width: 100%;
    height: auto;
}

.fv .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    /* 画面内に収まりやすくする */
    object-fit: contain;
    /* 下部合わせで見切れ防止 -> containに変更 */
    object-position: center center;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image-link {
    display: inline-block;
    max-width: 1000px;
    width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-image-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.cta-image-link img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ==========================================================================
   About / Message / TV (Broken Grid)
   ========================================================================== */
.broken-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .broken-grid {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    /* Image Left, Text Right */
    .broken-grid.img-left .bg-image-wrapper {
        width: 45%;
        margin-right: -50px;
        /* 重ねる */
        z-index: 1;
    }

    .broken-grid.img-left .bg-text-wrapper {
        width: 55%;
        padding: 40px 60px;
        background-color: #fff;
        box-shadow: var(--shadow-soft);
        z-index: 2;
        border-radius: 4px;
        position: relative;
        top: 30px;
        /* ずらす */
    }

    /* Image Right, Text Left */
    .broken-grid.img-right {
        flex-direction: row-reverse;
        gap: 0;
    }

    .broken-grid.img-right .bg-image-wrapper {
        width: 100%;
        margin-left: 0;
        z-index: 1;
    }

    .broken-grid.img-right .bg-text-wrapper {
        width: 100%;
        padding: 40px 20px;
        background-color: #fff;
        box-shadow: var(--shadow-soft);
        z-index: 2;
        border-radius: 4px;
        margin-top: 20px;
    }

    @media (min-width: 768px) {
        .broken-grid.img-right {
            gap: 0;
        }

        .broken-grid.img-right .bg-image-wrapper {
            width: 55%;
            margin-left: -30px;
        }

        .broken-grid.img-right .bg-text-wrapper {
            width: 45%;
            padding: 40px 60px;
            margin-top: 0;
        }
    }
}

.broken-grid.img-right .bg-image-wrapper img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    /* 角丸なし */
}

/* 3 Points Title */
.point-item h3 {
    font-size: 24px !important;
    /* 優先度高めで指定 */
    color: var(--color-accent);
    margin-bottom: 15px;
}

/* Message Section */
.message-box {
    background-color: #fff;
    padding: 40px 20px;
    box-shadow: var(--shadow-soft);
    border-radius: 4px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.message-box h3 {
    font-size: 1.3rem;
    color: var(--color-base);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

@media (min-width: 768px) {
    .message-box {
        padding: 60px 80px;
    }

    .message-box h3 {
        font-size: 1.5rem;
    }
}

/* Brand Name Highlight */
.brand-highlight {
    font-size: 2em;
    /* 2倍 */
    color: var(--color-accent);
    font-weight: 900;
    line-height: 1;
    display: inline-block;
    /* 崩れ防止 */
    margin: 0 5px;
}

@media (min-width: 768px) {
    .floating-cta {
        display: none;
    }

}

/* About Gallery - Grid layout for both SP and PC */
.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.about-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-float);
}

.about-img-large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.about-img-medium {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 100%;
    aspect-ratio: 3 / 2;
}

.about-img-small {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    aspect-ratio: 3 / 2;
}

/* ==========================================================================
   Points (3つのポイント)
   ========================================================================== */
.points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .points-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.point-item {
    text-align: center;
}

.point-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .bg-text-wrapper h3 {
        font-size: 1.5rem;
        color: var(--color-base);
        margin-bottom: 20px;
        border-bottom: 2px solid var(--color-accent);
        display: inline-block;
    }
}

/* ==========================================================================
   Menu
   ========================================================================== */
.menu-section {
    background-image: url('../img/menu_bg_1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 40px 0 100px 0;
    position: relative;
}

.menu-section .section-title {
    position: relative;
    z-index: 2;
}


.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Menu List Grid Layout */
.menu-list {
    display: grid;
    grid-template-columns: 1fr;
    /* SP: 1列、PC: 2列 */
    gap: 40px;
    align-items: start;
    max-width: none;
    /* 幅制限解除 */
    width: 100%;
    padding: 30px 40px;
    /* 上下 40 -> 30, 左右 40 */
    background: #fff;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

/* Menu Item Card Layout */
.menu-item {
    display: flex;
    flex-direction: column;
    /* 縦積み */
    align-items: center;
    /* 中央揃え */
    text-align: center;
    border-bottom: none;
    padding: 0;
    gap: 15px;
}

/* 画像スタイル調整 */
.menu-item img {
    width: 100% !important;
    /* グリッド幅に合わせる */
    max-width: 100%;
    aspect-ratio: 6 / 4 !important;
    margin-bottom: 5px;
    border-radius: 4px;
}

/* PC (2列) */
@media (min-width: 768px) {
    .menu-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* メニュー情報 */
.menu-info h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
}

.menu-price {
    font-weight: 700;
    color: var(--color-base);
    font-size: 1.1rem;
    white-space: nowrap;
}



/* ==========================================================================
   Voice
   ========================================================================== */
.voice-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    padding-left: 70px;
}

.voice-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-accent);
    line-height: 1;
    font-family: serif;
}

/* ==========================================================================
   Access & Footer
   ========================================================================== */
.access-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(100%);
    /* モノクロでシックに */
    border-radius: 4px;
}

.footer {
    background-color: var(--color-main);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-copy {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

/* ==========================================================================
   Floating & Scroll Top
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-base);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1.5rem;
}

.scroll-top.visible {
    opacity: 1;
}

.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.floating-cta a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
}

.floating-cta .btn-tel {
    background: var(--color-base);
}

.floating-cta .btn-web {
    background: var(--color-accent);
}

@media (min-width: 768px) {
    .floating-cta {
        display: none;
    }

    .scroll-top {
        bottom: 30px;
    }
}

/* 前方のメディアクエリ閉じ漏れ対策 */

/* ランチタイム限定メニュータイトル */
.lunch-title {
    grid-column: 1 / -1;
    /* 全カラムにまたがらせる */
    font-size: 24px;
    color: var(--color-accent);
    margin-top: 0;
    margin-bottom: 20px;
    /* 少し詰める */
    font-weight: 700;
    text-align: center;
    display: block;
    border-bottom: none;
    /* ライン削除 */
    padding-bottom: 0;
    /* 余白削除 */
    width: 100%;
}

/* メニュー情報：横並び */
.menu-info {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    /* 価格との間隔 */
    width: 100%;
}

.menu-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.menu-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-base);
}

/* メニュー画像（横長・さらに2倍サイズ） */
.menu-item img {
    width: 100% !important;
    /* グリッド内で最大化 */
    aspect-ratio: 6 / 4 !important;
    /* 横長 6:4 */
    object-fit: cover;
    border-radius: 4px;
}