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

body {
    font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
    background-color: #5c3d2e;
    /* メイン背景（ブラウン） */
    color: #333;
    line-height: 1.8;
}

/* --- Header --- */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 16px 24px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(6px);
}

.logo {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
}

/* ナビゲーション */
.nav-links {
    display: flex;
    gap: 24px;
    z-index: 1001;
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    padding-bottom: 4px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-links a:hover {
    color: #d4a373;
    border-bottom: 2px solid #d4a373;
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 32px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 30px;
    /* 棒を太めに */
    height: 4px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* オーバーレイ */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
    /* ← 下げる（navより下に） */
}

.overlay.active {
    display: block;
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 750px;
    margin-top: 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 80px;
    letter-spacing: 8px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.hero-content p {
    font-size: 25px;
    letter-spacing: 4px;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

section {
    padding: 100px 0;
    /* ←上下に80pxずつ */
}

/* --- 見出し共通 --- */
section h2 {
    font-size: 42px;
    letter-spacing: 6px;
    margin-bottom: 40px;
    text-align: center;
    color: #7fb069;
    position: relative;
}

section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #d4a373;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* --- 共通コンテナ --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Concept Section (PCデフォルト) --- */
.concept-section .container {
    display: flex;
    gap: 0;
    align-items: flex-start;
    position: relative;
}

.concept-text {
    flex: 1;
    background: #f4e6d3;
    padding: 60px 80px 40px 40px;
    border-radius: 10px;
    position: relative;
    z-index: 0;
}

.concept-text h2 {
    position: absolute;
    top: -50px;
    left: 40px;
    font-size: 42px;
    font-weight: bold;
    color: #7fb069;
}

.concept-text h2::after {
    content: none;
    /* 下線なし */
}

.concept-text p {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.concept-image {
    flex: 1;
    margin-left: -50px;
    margin-top: 50px;
    z-index: 1;
}

.concept-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.calendar-section {
    padding: 80px 0;
    background: #f4e6d3;
}

.calendar-section h2 {
    font-size: 42px;
    letter-spacing: 6px;
    margin-bottom: 40px;
    text-align: center;
    color: #7fb069;
    position: relative;
}

.calendar-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #d4a373;
    margin: 12px auto 0;
    border-radius: 2px;
}

.shop-calendar {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.shop-calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}

.shop-calendar__title {
    font-size: 28px;
    font-weight: 700;
    color: #5c3d2e;
    letter-spacing: 0.08em;
    text-align: center;
}

.shop-calendar__nav {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: #7fb069;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-calendar__nav:hover {
    background: #d4a373;
    color: #2a2a2a;
}

.shop-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    color: #5c3d2e;
}

.shop-calendar__weekdays div {
    padding: 12px 8px;
    background: #f8f2ea;
    border-radius: 8px;
}

.shop-calendar__weekdays div:first-child {
    color: #c95b5b;
}

.shop-calendar__weekdays div:last-child {
    color: #4f6ea8;
}

.shop-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.shop-calendar__cell {
    min-height: 110px;
    background: #fcfaf7;
    border: 1px solid #eee2d2;
    border-radius: 12px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.shop-calendar__cell.is-empty {
    background: transparent;
    border: none;
}

.shop-calendar__date {
    font-size: 18px;
    font-weight: 700;
    color: #5c3d2e;
    margin-bottom: 6px;
}

.shop-calendar__cell.is-sunday .shop-calendar__date {
    color: #c95b5b;
}

.shop-calendar__cell.is-saturday .shop-calendar__date {
    color: #4f6ea8;
}

.shop-calendar__cell.is-today {
    border: 2px solid #d4a373;
    background: #fff8f0;
}

.shop-calendar__label {
    font-size: 12px;
    line-height: 1.5;
    color: #888;
}

.shop-calendar__label.closed {
    color: #d94b4b;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .calendar-section {
        padding: 60px 0;
    }

    .shop-calendar {
        padding: 20px;
    }

    .shop-calendar__title {
        font-size: 24px;
    }

    .shop-calendar__cell {
        min-height: 90px;
    }
}

@media (max-width: 768px) {
    .calendar-section {
        padding: 40px 0;
    }

    .shop-calendar {
        padding: 16px;
        border-radius: 12px;
    }

    .shop-calendar__header {
        margin-bottom: 18px;
    }

    .shop-calendar__title {
        font-size: 20px;
        letter-spacing: 0.04em;
    }

    .shop-calendar__nav {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .shop-calendar__weekdays div {
        font-size: 12px;
        padding: 10px 4px;
    }

    .shop-calendar__grid {
        gap: 6px;
    }

    .shop-calendar__cell {
        min-height: 72px;
        padding: 8px 6px;
        border-radius: 10px;
    }

    .shop-calendar__date {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .shop-calendar__label {
        font-size: 10px;
    }
}

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

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

.food-image {
    width: 100%;
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.food-image:hover img {
    transform: scale(1.1);
}

.food-item p {
    color: #f4e6d3;
}

/* --- Drink --- */
.drink-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.drink-image {
    width: 100%;
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.drink-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.drink-image:hover img {
    transform: scale(1.1);
}

.drink-item p {
    color: #f4e6d3;
}

/* --- Gallery --- */
.instagram-section {
    background: #f4e6d3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.recruit-section {
    background: #f4e6d3;
}

.recruit-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.recruit-image,
.recruit-box {
    flex: 1;
}

.recruit-image {
    overflow: hidden;
    border-radius: 5px;
}

.recruit-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.recruit-box {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.recruit-lead {
    text-align: left;
    margin-bottom: 30px;
    font-size: 18px;
    color: #5c3d2e;
}

.recruit-info {
    margin: 0;
    padding: 0;
}

.recruit-info div {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.recruit-info dt {
    width: 100px;
    flex-shrink: 0;
    font-weight: bold;
    color: #333;
}

.recruit-info dd {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.recruit-note {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    text-align: left;
}

.recruit-contact {
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 1024px) {
    .recruit-content {
        flex-direction: column;
    }

    .recruit-image img {
        height: 300px;
    }

    .recruit-box {
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {
    .recruit-image img {
        height: 220px;
    }

    .recruit-box {
        padding: 24px 18px;
    }

    .recruit-lead {
        font-size: 16px;
    }

    .recruit-info div {
        flex-direction: column;
        gap: 6px;
    }

    .recruit-info dt {
        width: auto;
    }
}

/* --- Reservation & Access --- */
.reservation-access-section {
    background: #2a2a2a;
    color: #fff;
    padding: 80px 0;
}

.reservation-access-section h2 {
    color: #d4a373;
    text-align: center;
    margin-bottom: 40px;
}

.reservation-access-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #d4a373;
    margin: 12px auto 0;
    border-radius: 2px;
}

.reservation-access-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    flex-wrap: wrap;
    /* 保険でラップさせる */
}

.reservation-info {
    flex: 1;
}

.reservation-lead {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #f4e6d3;
}

.reservation-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.reservation-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.reservation-btn.tel {
    background: #7fb069;
    color: #fff;
}

.reservation-btn.tel:hover {
    background: #d4a373;
    color: #2a2a2a;
}

.access-info dl {
    margin: 0;
    padding: 0;
}

.access-info dl div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 8px;
}

.access-info dt {
    width: 90px;
    /* ラベルの幅を揃える */
    font-weight: bold;
    color: #fff;
    /* ラベルは白 */
    flex-shrink: 0;
    font-size: 14px;
    letter-spacing: 1px;
}

.access-info dd {
    margin: 0;
    color: #f4e6d3;
    /* ← ほんのりベージュ */
    font-size: 14px;
    line-height: 1.6;
}

.access-info a {
    color: #f4e6d3;
    /* リンクもベージュ */
    text-decoration: none;
    transition: color 0.3s ease;
}

.access-info a:hover {
    color: #d4a373;
    /* ホバーで金茶 */
}

.instagram-link {
    padding-top: 20px;
}

.instagram-text {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.instagram-link a {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #d4a373;
    color: #d4a373;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.instagram-link a:hover {
    background: #d4a373;
    color: #2a2a2a;
}

/* 地図ラッパー */
.access-map {
    flex: 1;
    position: relative;
    width: 100%;
    padding-top: 50%;
    /* PCは4:3比率 */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.access-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* --- Footer --- */
footer {
    background: #2a2a2a;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 12px;
}

/* --- 共通ボタンスタイル --- */
.more-button,
.reservation-btn {
    display: inline-block;
    margin: 30px auto 0;
    /* 上は余白、左右autoでセンター */
    padding: 14px 48px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

/* --- MOREボタン専用 --- */
.more-button {
    border: 3px solid #7fb069;
    color: #fff;
    background-color: #7fb069;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.more-button:hover {
    background-color: #d4a373;
    border-color: #d4a373;
    color: #2a2a2a;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* --- 予約ボタン（TEL専用）--- */
.reservation-btn.tel {
    background: #7fb069;
    color: #fff;
}

.reservation-btn.tel:hover {
    background: #d4a373;
    color: #2a2a2a;
}

/* --- 予約ボタン（将来WEB用も想定）--- */
.reservation-btn.web {
    background: #d4a373;
    color: #2a2a2a;
}

.reservation-btn.web:hover {
    background: #fff;
    color: #2a2a2a;
}

/* --- ボタンを囲む要素は中央寄せ --- */
.food-section,
.drink-section,
.recommend-section,
.reservation-buttons {
    text-align: center;
}

/* トップへ戻るボタン */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    /* ボタンサイズ */
    height: 60px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1200;
}

.back-to-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 表示時 */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
        /* 上下60 / 横は少し狭く */
    }

    .concept-section .container {
        flex-direction: column;
        /* 縦並び */
    }

    .concept-image {
        order: -1;
        /* 写真を先に */
        margin: 0 0 20px 0;
        flex: none;
        width: 100%;
    }

    .concept-image img {
        width: 100%;
        height: 250px;
        /* 小さめ */
        object-fit: cover;
        border-radius: 5px;
    }

    .concept-text {
        padding: 30px 20px;
    }

    .concept-text h2 {
        position: static;
        /* ←はみ出し解除 */
        margin-bottom: 20px;
        text-align: center;
        /* 中央寄せ */
    }

    .food-grid,
    .drink-grid {
        grid-template-columns: 1fr;
    }

    .recommend-content {
        flex-direction: column;
    }

    .reservation-access-content {
        flex-direction: column;
    }

    .access-map {
        padding-top: 65%;
        /* タブレットでは少し横長 */
    }

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 220px;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        gap: 16px;
        border-radius: 8px 0 0 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    section {
        padding: 60px 10px;
        /* 上下40 / 横はさらに狭く */
    }

    .concept-text {
        padding: 20px 15px;
    }

    .concept-text h2 {
        margin-bottom: 15px;
    }

    .concept-text p {
        font-size: 14px;
        line-height: 1.8;
    }

    .food-image {
        height: 150px;
    }

    .drink-image {
        height: 150px;
    }

    .reservation-access-section {
        padding: 60px 0;
    }

    .access-map {
        padding-top: 56.25%;
        /* スマホでは16:9 */
    }

    .reservation-lead {
        font-size: 16px;
    }
}