@charset "UTF-8";

/* =========================
   Reset / Base
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --bg-main: #111;
    --bg-sub: #1a1a1a;
    --bg-header: #000;
    --text-main: #eee;
    --text-sub: #ccc;

    --fz-base: 16px;
    --fz-h1: 24px;
    --fz-h2: 28px;
    --fz-h3: 18px;
    --fz-small: 14px;

    --lh-base: 1.9;
}

html {
    /* stickyヘッダー分、アンカー位置を補正（#news等がズレない） */
    scroll-padding-top: 80px;
    /* PCでスクロールバー出入りによる横ズレ防止 */
    scrollbar-gutter: stable;
}

body {
    font-family: "游明朝", "Hiragino Mincho ProN", serif;
    background: var(--bg-main);
    color: var(--text-main);
    font-size: var(--fz-base);
    line-height: var(--lh-base);
    overflow-wrap: break-word;
}

/* Common */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: var(--fz-h2);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: .10em;
}

.bg-dark {
    background: var(--bg-sub);
}

.nowrap {
    white-space: nowrap;
}

/* =========================
   Header
========================= */
.header {
    background: var(--bg-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: var(--fz-h1);
    letter-spacing: .08em;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: var(--text-sub);
    font-size: var(--fz-small);
}

.nav a:hover {
    color: #fff;
}

/* Hamburger */
.hamburger {
    display: none;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: .3s;
}

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

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

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

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

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

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

/* =========================
   Hero
========================= */
.hero {
    position: relative;
    height: 60vh;
    height: 60svh;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
}

.hero-text {
    position: absolute;
    left: 50%;
    bottom: 15%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(0, 0, 0, .6);
    padding: 30px;
    width: 90%;
    max-width: 600px;
}

.hero-text h2 {
    font-size: clamp(20px, 5vw, 28px);
    margin-bottom: 12px;
    letter-spacing: .06em;
}

.hero-text p {
    font-size: 15px;
    margin-bottom: 15px;
    letter-spacing: .03em;
}

.hero-cta {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

/* スマホ改行用（HTML側で <span class="sp-br"></span> を入れる） */
.sp-br {
    display: none;
}

.store-name {
    white-space: nowrap;
}

/* =========================
   News
========================= */
.news-section {
    background: #f9f9f9;
    color: #333;
}

.news-section .section-title {
    color: #333;
}

.news-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

.news-list li {
    padding: 12px 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li:hover {
    background: #ffeaea;
}

.news-date {
    font-weight: bold;
    color: #555;
    flex-shrink: 0;
}

.news-content {
    color: #333;
    margin-left: 15px;
    flex-grow: 1;
}

/* News Modal（×が出っぱなしになる問題を解消） */
#modal-content {
    white-space: pre-line;
}

.news-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.news-modal-content {
    position: relative;
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    max-width: 520px;
    width: 90%;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
    font-size: 16px;
    line-height: 1.6;
}

.news-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
    background: transparent;
    border: none;
    color: #333;
}

/* =========================
   Guide
========================= */
.guide {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.guide li {
    border-bottom: 1px solid #333;
    padding: 10px 0;
    color: #ddd;
}

/* =========================
   Menu / Drinks
========================= */
.sub-title,
.drink-title {
    text-align: center;
    font-size: var(--fz-h3);
    letter-spacing: .15em;
    margin: 48px 0 22px;
    font-weight: normal;
    color: #eee;
}

.menu-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #444;
    padding: 8px 0;
}

.menu-name,
.menu-price {
    font-size: var(--fz-small);
}

/* =========================
   Gallery
========================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.gallery-title {
    margin-bottom: 10px;
    color: #eee;
    font-size: 18px;
    letter-spacing: .12em;
}

.gallery-photo {
    border-radius: 18px;
    background: #000;
    overflow: hidden;
}

/* =========================
   Access
========================= */
.shop-name {
    text-align: center;
    font-size: 18px;
    letter-spacing: .12em;
    margin-bottom: 8px;
}

.map {
    margin-top: 18px;
}

/* =========================
   Contact（PCで左寄り・青リンクになる問題を解消）
========================= */
#contact .container {
    text-align: center;
}

#contact .tel {
    margin-top: 10px;
    font-size: 20px;
    letter-spacing: .06em;
}

#contact .tel a {
    color: #fff;
    text-decoration: none;
}

#contact .tel a:hover {
    text-decoration: underline;
}

/* =========================
   Footer
========================= */
.footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* =========================
   Call Fixed (SP) — 安定版
========================= */
.call-fixed {
    display: none;
}

@media (max-width:768px) {
    .hero-text {
        bottom: 10%;
        width: 88%;
        max-width: 520px;
        padding: 14px 16px;
        /* ←ここで高さがかなり減ります */
        background: rgba(0, 0, 0, .45);
        /* ちょい薄く（任意） */
        border-radius: 10px;
        /* 角丸（任意） */
    }

    .hero-text h2 {
        margin-bottom: 8px;
        line-height: 1.25;
    }

    .hero-text p {
        margin-bottom: 10px;
        line-height: 1.45;
        font-size: 14px;
        /* 少しだけ詰める */
    }

    .hero-cta {
        padding: 8px 14px;
        font-size: 13px;
    }

    :root {
        --fz-base: 15px;
        --fz-h1: 18px;
        --fz-h2: 24px;
        --fz-small: 13px;
        --lh-base: 1.85;
    }

    /* nav (SP) */
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        padding: 30px 0;
        z-index: 999;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav.active {
        display: block;
    }

    .hamburger {
        display: block;
    }

    /* hero: スマホだけ改行を有効化 */
    .sp-br {
        display: block;
    }

    /* menu / gallery */
    .menu-list {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 40px 0;
    }

    /* 固定電話ボタン */
    .call-fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 56px;
        background: #000;
        z-index: 2000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .call-fixed a {
        width: 100%;
        text-align: center;
        color: #fff;
        font-size: 16px;
        text-decoration: none;
        letter-spacing: .08em;
    }
}