/* 全体設定 */
:root {
    --header-height: 100px; /* ヘッダーの高さ */
}
body {
    margin: 0;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    background-color: #cfc9b5;
    background-image: url("images/washi.jpg");
    background-size: cover;
    background-attachment: fixed;
    color: #333;

    padding-top: var(--header-height);
}

/* ヘッダー（店名固定） */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(207, 201, 181, 0.95); /* 少し濃く */
    backdrop-filter: blur(5px); /* ←これ追加（おしゃれ） */
    text-align: center;
    z-index: 1000;
}

/* トップ */
#top {
    margin-top: 0; /* ←ここを0にする */
    text-align: center;
}

.slider img {
    width: 100%;
    height: auto;   /* ←これが重要 */
}

.catch {
    font-size: 20px;
    margin: 20px 0;
}

/* 各セクション共通 */
section {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255,255,255,0.75); /* ←少しだけ透明に */
    border-radius: 10px;
}

/* 見出し */
h2 {
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* フッター */
footer {
    text-align: center;
    padding: 20px;
}

/* リンク */
a {
    color: #333;
    text-decoration: none;
}

/* ホバー（ふんわり光る） */
a:hover {
    color: #b89b5e;
    transition: 0.3s;
}
/* スマホ対応 */
@media screen and (max-width: 768px) {

    header h1 {
    margin: 0;
    font-size: 28px;
    line-height: 60px;
}

nav {
    line-height: 40px;
}

    .slider img {
        height: 250px;
    }

    section {
        margin: 20px;
        padding: 20px;
    }

    .catch {
        font-size: 16px;
    }

    iframe {
        height: 250px;
    }
}
.insta-icon {
    width: 40px;
    transition: 0.3s;
}

.insta-icon:hover {
    opacity: 0.7;
}
nav {
    margin-top: 10px;
}

nav a {
    margin: 0 8px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: bold;
}

nav a:hover {
    color: #b89b5e;
}
html {
    scroll-behavior: smooth;
}
.menu-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #aaa;
}

.menu-item h3 {
    margin: 0;
    font-size: 18px;
}

.menu-item p {
    margin: 5px 0;
}

.price {
    display: block;
    margin-top: 5px;
    font-weight: bold;
    color: #b89b5e;
}
nav {
    margin-top: 10px;
}

nav a {
    margin: 0 8px;
    font-size: 14px;
    letter-spacing: 1px;
}

nav a:hover {
    color: #b89b5e;
}
section {
    scroll-margin-top: 100px;
}
/* ハンバーガーボタン */
.menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;      /* ←大きくする */
    font-weight: bold;    /* ←太くする */
    cursor: pointer;
    color: #333;

    background-color: rgba(255, 255, 255, 0.8); /* ←背景つける */
    padding: 5px 12px;
    border-radius: 8px;

    transition: 0.3s;
}

.menu-btn:hover {
    opacity: 0.7;
}

/* メニュー（初期は非表示） */
#nav-menu {
    display: none;
    flex-direction: column;
    background-color: rgba(207, 201, 181, 0.95);
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 15px;
    border-radius: 10px;
}

/* メニュー表示時 */
#nav-menu.active {
    display: flex;
}

#nav-menu a {
    margin: 5px 0;
}
footer {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(207, 201, 181, 0.85); /* 半透明で和紙を活かす */
    border-radius: 10px;
    text-align: center;
}

footer p {
    margin: 5px 0;
    font-weight: bold;
}

footer .instagram-link {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.9); /* 背景をつけて見やすく */
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

footer .instagram-link:hover {
    opacity: 0.7; /* ふんわり反応 */
}
footer {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(207, 201, 181, 0.85); /* 半透明で和紙透かす */
    border-radius: 10px;
    text-align: center;
}

footer p {
    margin: 5px 0;
    font-weight: bold;
}

/* Instagramアイコン */
footer .instagram-link {
    display: inline-block;
    margin-top: 10px;
}

footer .instagram-link .instagram-icon {
    width: 32px;      /* サイズ調整 */
    height: 32px;
    transition: opacity 0.3s; /* ふんわり効果 */
}

footer .instagram-link:hover .instagram-icon {
    opacity: 0.7;     /* ホバーでふんわり光る */
}
footer {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(207, 201, 181, 0.85); /* 半透明で和紙透かす */
    border-radius: 10px;
    text-align: center;
}

footer p {
    margin: 5px 0;
    font-weight: bold;
}

footer .instagram-link {
    display: inline-block;
    margin: 10px 0;
}

footer .instagram-link .instagram-icon {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s;
}

footer .instagram-link:hover .instagram-icon {
    opacity: 0.7;
}

/* 著作権・製作者表記 */
footer .footer-info {
    font-size: 12px;
    margin-top: 10px;
    font-weight: normal;
    color: #333;
}
/* メニュー写真 */
.menu-photo {
    width: 100%;        /* 画面幅に合わせる */
    max-width: 400px;   /* 大きすぎないよう制限 */
    display: block;     /* ブロック表示で下に余白 */
    margin: 10px auto;  /* 上下余白＋中央揃え */
    border-radius: 8px; /* 角を丸めて和風に */
}
/* カード風メニュー */
.menu-card {
    background-color: rgba(255, 255, 255, 0.85); /* 半透明で和紙透かす */
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* メニュー写真 */
.menu-photo {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
}
#access {
  text-align: center;
}

/* 横並び（PC） */
.access-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

/* 左：情報 */
.access-info {
  flex: 1;
  text-align: left;
}

/* 住所強調 */
.address {
  font-size: 18px;
  margin-bottom: 15px;
}

/* ボタン */
.map-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  transition: 0.3s;
}

.map-btn:hover {
  background: #000;
}

/* 右：地図 */
.access-map {
  flex: 1;
}

.access-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .access-container {
    flex-direction: column;
  }
}
/* トップ全体 */
.top-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* 画像 */
.top-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 暗くする */
.top-visual::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
}

/* キャッチコピー */
.catch-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 90%;
}

.catch-copy h1 {
  font-size: 36px;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  font-weight: normal;
}

.catch-copy p {
  font-size: 18px;
  letter-spacing: 0.2em;
}

/* スマホ */
@media (max-width: 768px) {
  .catch-copy h1 {
    font-size: 24px;
  }

  .catch-copy p {
    font-size: 14px;
  }
}
/* 位置を少し上に */
.catch-copy {
  top: 45%;
}

/* 文字調整 */
.catch-copy h1 {
  font-size: 34px;
  letter-spacing: 0.18em;
  line-height: 1.6;
}

.catch-copy p {
  font-size: 16px;
  letter-spacing: 0.25em;
  opacity: 0.85;
}

/* 背景を少し暗く */
.top-visual::after {
  background: rgba(0,0,0,0.45);
}
/* ===== 全体の余白（高級感UP） ===== */
section {
  padding: 60px 20px;
}

h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

/* コンテンツ幅を整える */
.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* 見出しの下に和風ライン */
h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #333;
  margin: 6px auto 0;
}


/* ===== おすすめカード改善 ===== */
.menu-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* カード内の余白 */
.menu-card .text {
  padding: 12px;
}
/* 地図全体 */
.map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* 地図 */
.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: none;

  /* ダーク風 */
  filter: brightness(0.8) contrast(1.1) grayscale(0.3);
}

/* 店名オーバーレイ */
.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: red;   /* ←これが重要 */
  color: white;

  padding: 20px;
  z-index: 9999;
}
div.map-overlay {
  background: red !important;
  color: white !important;
  padding: 20px !important;
}

/* ===== 地図オーバーレイ強制表示 ===== */
.map-wrap {
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: none;
  position: relative;
  z-index: 1;
}

.map-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 2;
}
.map-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: 0.1em;
}
/* ===== トップ画像サイズ修正 ===== */
.top-visual {
  position: relative;
  height: 70vh; /* ←100vhだとデカすぎるので調整 */
  min-height: 400px; /* ←小さくなりすぎ防止 */
}

/* 画像 */
.top-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== キャッチコピー位置修正 ===== */
.catch-copy {
  position: absolute;
  top: 55%;  /* ←少し下げて中央に近づける */
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 90%;
}

/* 文字サイズ微調整 */
.catch-copy h1 {
  font-size: 32px;
  line-height: 1.5;
}

.catch-copy p {
  font-size: 16px;
}
/* ===== アクセス縦レイアウトに変更 ===== */
.access-container {
  display: block; /* ←横並びやめる */
  max-width: 800px;
  margin: 0 auto;
}

/* テキスト中央寄せ */
.access-info {
  text-align: center;
}

/* 地図中央＆幅調整 */
.access-map {
  margin-top: 20px;
}

.access-map iframe {
  width: 100%;
  max-width: 600px;
  height: 300px;
  margin: 0 auto;
  display: block;
}
/* ===== スマホで画像がはみ出る問題修正 ===== */

/* すべての画像を画面内に収める */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* トップ画像を確実にフィット */
.top-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* スマホ専用調整 */
@media (max-width: 768px) {

  .top-visual {
    height: 60vh;   /* ←少し小さくしてバランス調整 */
  }

  .top-image {
    width: 100%;
    height: 100%;
  }

}
/* ===== 電話ボタン（ヘッダー） ===== */
 .tel-btn {
  background: #b89b5e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

/* ===== CTAボタン（トップ） ===== */
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #b89b5e;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  letter-spacing: 0.1em;
}

/* ===== フッター電話 ===== */
.tel-footer {
  margin-top: 10px;
}

.tel-footer a {
  font-size: 18px;
  font-weight: bold;
}

/* ===== スマホ調整 ===== */
@media (max-width: 768px) {

  :root {
    --header-height: 70px;
  }

  .tel-btn {
    top: 18px;
    font-size: 12px;
    padding: 6px 10px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}
/* ===== お知らせバー（GW営業） ===== */
.notice-bar {
  position: absolute;
  top: 0;
  width: 100%;
  background: #b89b5e;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  z-index: 3;
}

/* スマホ */
@media (max-width: 768px) {
  .notice-bar {
    font-size: 12px;
    padding: 6px;
  }
}
/* ===== GWお知らせバー（絶対見える） ===== */
.notice-bar {
  position: fixed;
  top: var(--header-height);  /* ←ここがポイント */
  left: 0;
  width: 100%;
  background: #8b0000;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  z-index: 2000;
}

/* ===== 電話ボタン（トップ） ===== */
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #b89b5e;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
}

/* ===== 上にスペース作る（かぶり防止） ===== */
body {
  padding-top: calc(var(--header-height) + 50px);
}

/* ===== スマホ調整 ===== */
@media (max-width: 768px) {
  .notice-bar {
    font-size: 14px;
    padding: 10px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}
/* ===== ヘッダー完全修正版 ===== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(207, 201, 181, 0.95);
  z-index: 1000;
  padding: 10px 0;
}

/* 店名 */
.site-title {
  text-align: center;
  margin: 0;
  font-size: 20px;
}

/* 下段（電話＋メニュー） */
.header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
}

/* 電話ボタン */
.tel-btn {
  background: #b89b5e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

/* ハンバーガー */
.menu-btn {
  font-size: 28px;
  cursor: pointer;
}

/* メニュー */
#nav-menu {
  display: none;
  flex-direction: column;
  background: rgba(207, 201, 181, 0.95);
  padding: 10px;
}

#nav-menu.active {
  display: flex;
}

#nav-menu a {
  padding: 10px;
  text-align: center;
}

/* 上の余白調整 */
body {
  padding-top: 110px;
}
/* ===== メニューを最前面に ===== */
#nav-menu {
  display: none;
  flex-direction: column;
  background: rgba(207, 201, 181, 0.98);
  padding: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 3000;   /* ←これが重要 */
}

#nav-menu.active {
  display: flex;
}