html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c8a882;
}

.reserve-btn {
    display: inline-block;
    margin: 40px auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: white;
    text-decoration: none;
    letter-spacing: 0.05em;
    padding: 0.6rem 2rem;
    background-color: #b5956a;
    box-shadow: 0 0 0 1px #b5956a;
    border-radius: 2px;
}

.reserve-btn:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 1px #b5956a, 0 1px 4px rgba(181, 149, 106, 0.2);
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('images/hero.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* セクション共通 */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
}

/* About セクション */
.about {
    background: #f9f7f4;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    line-height: 2;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-figure {
    display: flex;
    flex-direction: column;
}

.image-caption {
    font-size: 0.78rem;
    color: #999;
    margin-top: 0.4rem;
    text-align: right;
    letter-spacing: 0.05em;
}

/* コンセプトセクション（未使用・削除済み） */

/* 店内紹介セクション */
.interior {
    background: #f9f7f4;
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.interior-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.interior-item:hover .interior-image {
    transform: scale(1.03);
}

.interior-label {
    margin-top: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.interior-note {
    font-size: 0.78rem;
    color: #999;
    margin-top: 0.3rem;
    line-height: 1.5;
}

.about-owner {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.1em;
    text-align: right;
    margin-top: 1rem;
}

/* 店舗セクション */
.shops {
    background: #f9f7f4;
}

.shop-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.shop-detail-figure {
    position: sticky;
    top: 100px;
}

.shop-detail-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.shop-detail-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.shop-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    line-height: 1.8;
}

.shop-table tr {
    border-bottom: 1px solid #e8e0d8;
}

.shop-table th {
    width: 3em;
    padding: 1rem 1.5rem 1rem 0;
    color: #c8a882;
    font-weight: 600;
    white-space: nowrap;
    vertical-align: top;
    text-align: justify;
    text-align-last: justify;
}


.shop-table td {
    padding: 1rem 0;
    color: #555;
    vertical-align: top;
}

.shop-table td a {
    color: #555;
    text-decoration: none;
}

.shop-table td a:hover {
    color: #c8a882;
}

.shop-table td small {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.3rem;
}

.shop-reserve-btn {
    display: inline-block;
    margin-top: 2rem;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

/* 旧カードスタイル（使用しないが残す） */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.shop-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.shop-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.shop-info {
    padding: 2rem;
}

.shop-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.shop-info p {
    color: #666;
    font-size: 0.95rem;
}

/* お知らせセクション */
.news {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    border-top: 1px solid #e8e0d8;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
    background: white;
    border-bottom: 1px solid #e8e0d8;
    transition: background 0.25s, padding-left 0.25s;
    cursor: pointer;
}

.news-item:hover {
    background: #fdf9f5;
    padding-left: 2.5rem;
}

.news-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c8a882;
    letter-spacing: 0.05em;
    min-width: 110px;
    padding-top: 0.15rem;
    flex-shrink: 0;
}

.news-body {
    flex: 1;
}

.news-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.news-text {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
}

.news-empty {
    padding: 2rem;
    color: #aaa;
    font-size: 0.95rem;
    text-align: center;
}

.news-link {
    display: contents;
    text-decoration: none;
    color: inherit;
}

/* 予約ページ用スタイル */
.reserve-container {
    min-height: 100vh;
    background: #f9f7f4;
}

.reserve-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('images/reserve-hero.jpg') center/cover;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    margin-top: 70px;
}

.reserve-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
}

/* 予約方法ナビゲーション */
.reserve-method-section {
    text-align: center;
    padding: 2rem 5% 1rem;
}

.reserve-method-label {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 0.8rem;
}

.reserve-method-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.reserve-method-btn {
    display: inline-block;
    padding: 0.55rem 2rem;
    border: 1px solid #555;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}

.reserve-method-btn:hover {
    background: #333;
    color: #fff;
}

.reserve-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 5%;
}

/* スクロール対象セクションの固定ヘッダー分オフセット */
#form-section,
#phone-section {
    scroll-margin-top: 90px;
}

.reserve-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.reserve-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.reserve-intro p {
    color: #666;
    line-height: 1.8;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
}

.form-container iframe {
    width: 100%;
    max-width: 700px;
    height: 600px;
    border: none;
}

.contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-grid-single {
    grid-template-columns: 1fr;
}

.contact-grid-single .contact-item {
    text-align: center;
}

.contact-item {
    padding: 1.5rem;
    background: #f9f7f4;
    border-radius: 4px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #c8a882;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

/* フッター */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #c8a882;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* ハンバーガーボタン */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        transform: none;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.5s ease, padding 0.5s ease;
    }

    .nav-links.open {
        max-height: 400px;
        padding: 0.5rem 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #f0ebe4;
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .reserve-hero h1 {
        font-size: 2rem;
    }

    .about-content,
    .interior-grid,
    .footer-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .shop-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shop-detail-figure {
        position: static;
    }

    .shop-detail-image {
        height: 260px;
    }

    .shop-table td {
        word-break: break-all;
        overflow-wrap: break-word;
    }

    .shop-table th {
        width: auto;
        text-align: left;
        text-align-last: left;
        padding-right: 1rem;
    }

    section {
        padding: 60px 5%;
    }

    .form-container {
        padding: 1.5rem;
    }

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

/* ============================================================
   予約状況カレンダー（reserve.html）
   ============================================================ */

/* セクション全体 */
#calendar {
    background: #f9f7f4;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

#calendar h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

/* 凡例テキスト（○△×の説明） */
.calendar-sub {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

/* カレンダーラッパー */
.calendar-wrap {
    max-width: 900px;
    margin: 0 auto;
}

/* スピナーオーバーレイの相対位置基準 */
.calendar-section-inner {
    position: relative;
    min-height: 500px;
}

/* 月ラベル */
.month-label {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #333;
    margin-bottom: 1.2rem;
    flex: 0 0 auto;
}

/* カレンダーグリッド */
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

/* 曜日ヘッダー */
.day-header {
    text-align: center;
    font-weight: 600;
    padding: 10px 4px;
    font-size: 0.85rem;
    color: #c8a882;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e8e0d8;
    margin-bottom: 4px;
}

/* 日付マス */
.day {
    border: 1px solid #e8e0d8;
    border-radius: 6px;
    padding: 10px 6px;
    text-align: center;
    min-height: 64px;
    background: #fefefe;
}

/* 空白マス（月初の埋め） */
.day.empty {
    border: none;
    background: transparent;
}

/* 過去日・表示期限外 */
.day.past {
    background: #f0f0f0;
    color: #aaa;
}

.day.past .status {
    color: #aaa;
}

/* 日付数字 */
.day .num {
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
}

/* 予約ステータス表示 */
.day .status {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 4px;
}

.status-○ { color: #2a9d2a; }
.status-△ { color: #c8a882; }
.status-× { color: #cc0000; }

/* 月区切りラベル（今月/来月） */
.month-separator {
    grid-column: 1 / -1;
    text-align: center;
    padding: 12px 0 4px;
    font-weight: 600;
    color: #c8a882;
    letter-spacing: 0.1em;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

/* 左右グループを同幅にして月ラベルを正確に中央寄せ */
.calendar-nav-left,
.calendar-nav-right {
    display: flex;
    gap: 8px;
    flex: 1;
}

.calendar-nav-right {
    justify-content: flex-end;
}

.month-label {
    text-align: center;
    flex: 0 0 auto;
}

.month-btn {
    border: 1px solid #c8a882;
    color: #c8a882;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.month-btn:hover {
    background: #fdf5e8;
}

.month-btn:disabled {
    border-color: #ddd;
    color: #ccc;
    cursor: default;
    background: none;
}

#calendar-loading {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
    background: rgba(249, 247, 244, 0.88);
    z-index: 10;
    border-radius: 8px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #333; /* ← 色はサイトに合わせて変更 */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   スマホ向けカレンダー調整
   ============================================================ */
@media (max-width: 768px) {

    /* カレンダーセクションのパディング縮小 */
    #calendar {
        padding: 50px 3%;
    }

    #calendar h2 {
        font-size: 1.6rem;
    }

    /* 凡例を小さく・折り返し許可 */
    .calendar-sub {
        font-size: 0.78rem;
        letter-spacing: 0;
    }

    /* ナビゲーション: 上下2段に変更 */
    .calendar-nav {
        flex-wrap: wrap;
        gap: 8px;
    }

    .calendar-nav-left,
    .calendar-nav-right {
        flex: none;
    }

    #month-label {
        order: -1;          /* 月ラベルを1行目中央に */
        width: 100%;
        margin-bottom: 4px;
    }

    .month-label {
        font-size: 1.1rem;
    }

    .month-btn {
        padding: 5px 10px;
        font-size: 0.78rem;
    }

    /* カレンダーグリッドをコンパクトに */
    .calendar {
        gap: 3px;
        padding: 0.6rem;
    }

    .day-header {
        padding: 6px 2px;
        font-size: 0.72rem;
    }

    /* 日付マスを小さく */
    .day {
        min-height: 46px;
        padding: 5px 2px;
        border-radius: 4px;
    }

    .day .num {
        font-size: 0.72rem;
    }

    .day .status {
        font-size: 0.9rem;
        margin-top: 2px;
    }

    /* Googleフォームのiframe高さをスマホ向けに調整 */
    .form-container iframe {
        height: 800px;
    }
}

/* ===== プライバシーポリシー ===== */
.privacy-hero {
  background: #f9f7f4;
  text-align: center;
  padding: 120px 5% 60px;
  margin-top: 70px;
  border-bottom: 1px solid #e8e0d8;
}

.privacy-hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.privacy-hero p {
  font-size: 0.9rem;
  color: #999;
  letter-spacing: 0.2em;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 5% 80px;
}

.privacy-intro {
  font-size: 1rem;
  line-height: 2;
  color: #555;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e0d8;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3a2a1a;
  margin-bottom: 1rem;
  padding-left: 0.8rem;
  border-left: 3px solid #c8a882;
}

.privacy-section p {
  font-size: 0.95rem;
  line-height: 2;
  color: #555;
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin-top: 0.8rem;
}

.privacy-section ul li {
  font-size: 0.95rem;
  color: #555;
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}

.privacy-section ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #c8a882;
}

.privacy-section a {
  color: #c8a882;
  text-decoration: underline;
}

.privacy-contact {
  margin-top: 1rem;
  padding: 1.2rem 1.5rem;
  background: #f9f7f4;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 2;
  color: #555;
}

.privacy-date {
  font-size: 0.85rem;
  color: #aaa;
  text-align: right;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e0d8;
}

.privacy-back {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 1.8rem;
  }
  .privacy-hero {
    padding: 100px 5% 40px;
  }
}
