@charset "UTF-8";

html {
  scroll-padding-top: 120px;
}

:root {
  --primary-red: #a81c1c;
  --dark-red: #8b0000;
  --gold: #d4a017;
  --bg-cream: #fbf6ec;
  --bg-cream-02: #fbefd6;
  --bg-sand: #f0e6d2;
  --text-color: #2b2521;
  --border-raimon: #c53d34;
}

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

body {
  /* font-family: "hot-gfkaishokk", "Zen Antique", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif; */
  font-family: "Yuji Syuku", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  background: url("../img/bg_01.jpg") repeat;
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 800;
  letter-spacing: -0.7px;
  font-style: normal;
  z-index: 1;
}

.yuji-syuku-regular {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-antique-regular {
  font-family: "Zen Antique", serif;
  font-weight: 400;
  font-style: normal;
}


.hot-gfkaishokk {
  font-family: "hot-gfkaishokk", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.shippori-mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.shippori-mincho-extrabold {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-style: normal;
}

.line-seed-jp-regular {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.line-seed-jp-bold {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.line-seed-jp-extrabold {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 800;
  font-style: normal;
}


body.nav-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.one_line {
	display: inline-block;
}

/* ========================================================
   HEADER BAR
======================================================== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-image: url("../img/hdr_wood_01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top: 5px solid var(--primary-red);
  border-bottom: 2px solid #3d2314;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  color: var(--bg-cream);
}

.header-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  width: 250px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  font-family: "Zen Antique", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

.nav-item {
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-cream);
  padding: 8px 4px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: width 0.25s ease;
}

.nav-item:hover {
  color: var(--gold);
}

.nav-item:hover::after {
  width: 100%;
}

.sp-noren {
  display: none;
}

/* ========================================================
   HERO SLIDER (Fade + Slow Zoom Animation)
======================================================== */
.hero-slider-section {
  position: relative;
  background: #200a05;
  overflow: hidden;
}

/* 隠しラジオボタン */
.slider-radio {
  display: none;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* スライド全体を重ねるためのコンテナ基準 */
.slider-track {
  position: relative;
  width: 100%;
  display: block;
}

/* 各スライド（初期状態は透明で非表示・絶対配置） */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  overflow: hidden; /* 拡大アニメーションのはみ出し防止 */
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
  z-index: 1;
}

/* 1枚目を基準にしてコンテナの高さを確保 */
.slide:first-child {
  position: relative;
}

/* 背景画像ラッパー */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* スライド画像本体（拡大の初期状態） */
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 
  ラジオボタン連動：
  選択されているスライドをフェードイン ＆ 画像の拡大アニメーションを開始
*/
#slide1:checked ~ .slider-container .slide-1,
#slide2:checked ~ .slider-container .slide-2,
#slide3:checked ~ .slider-container .slide-3,
#slide4:checked ~ .slider-container .slide-4 {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

/* オーバーレイ・コンテンツ装飾 */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 65% 50%, rgba(30,10,5,0) 0%, rgba(20,5,2,0.3) 70%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.hero-copy .sub-catch {
  font-size: 22px;
  margin-bottom: 8px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-copy .main-catch {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 14px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
}

.hero-logo {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 3px 3px 12px rgba(0,0,0,0.9);
}

.badge-gyoza {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-top {
  background: var(--primary-red);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: -15px;
  z-index: 4;
  box-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.badge-circle {
  width: 135px;
  height: 135px;
  background: linear-gradient(135deg, #f5c43d, #ba8100);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  color: #222;
}

.badge-circle strong {
  font-size: 20px;
  color: #a81c1c;
}

.badge-circle .size-label,
.badge-circle .detail-label {
  font-size: 11px;
}

/* 下部ドットインジケーター */
.slider-dots-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot-btn {
  display: block;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-btn:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.15);
}

/* ドットインジケーターのアクティブ表示 */
#slide1:checked ~ .slider-container .dot-btn[for="slide1"],
#slide2:checked ~ .slider-container .dot-btn[for="slide2"],
#slide3:checked ~ .slider-container .dot-btn[for="slide3"],
#slide4:checked ~ .slider-container .dot-btn[for="slide4"] {
  background: #fff;
  opacity: 1;
  transform: scale(1.25);
}

/* ========================================================
   MAIN CONTENTS
======================================================== */
.main-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 40px 20px;
  /* background: url("../img/bg_01.jpg") repeat; */
}

.section {
  margin: 120px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: bold;
  padding: 0 20px;
  white-space: nowrap;
}

/* 中華雷紋から品のある飾りラインへ変更 */
.raimon-line {
  flex: 1;
  height: 1px;
  background-color: #c5a059; /* 上品なブラスゴールド */
  position: relative;
}

/* ラインの端に小さなダイヤ型アクセント */
.raimon-line::after {
  content: "◆";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  color: #c5a059;
}

.section-title .raimon-line:first-child::after {
  right: 0;
}

.section-title .raimon-line:last-child::after {
  left: 0;
}

.grid {
  display: grid;
  gap: 18px;
}
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.btn-red {
  display: inline-block;
  background: var(--primary-red);
  color: #fff;
  padding: 18px 52px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 22px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.btn-red:hover {
  background: var(--dark-red);
}

.center-btn-wrap {
  text-align: center;
  margin-top: 30px;
}


/* --- おすすめメニュー --- */
.menu-card {
  text-align: center;
}
.menu-card .thumb-wrap {
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}
.menu-thumb-img {
  width: 96%;
  height: 96%;
  object-fit: cover;
  /* filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35)); */
}

.menu-card h3 {
  font-size: 30px;
  margin-bottom: 6px;
  letter-spacing: -0.05em;
}
.menu-card p {
  font-size: 18px;
  text-align: left;
  line-height: 1.5;
  color: #555;
}

.allergens {
  width: 200px;
  margin: 20px auto 0;
  text-align: center;
  border-bottom: var(--text-color) 1px solid;
}

.allergens:hover {
  border-bottom: var(--bg-cream) 1px solid;
  opacity: 0.8;
}

.allergens a {
  width: 100%;
}

/* --- こだわり --- */
.kodawari-section {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border: 1px solid #ebdccb;
  padding: 30px;
  border-radius: 6px;
}

.kodawari-content { 
  flex: 1;
}

.kodawari-title {
  font-size: 26px;
  margin-bottom: 20px;
}

.kodawari-content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.8;
}

.kodawari-image {
  flex: 1.2;
  border-radius: 6px;
  overflow: hidden;
}
.kodawari-image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

/* --- 背景イメージ --- */
.bg-image {
  width: 100%;
  height: 400px;
  position: relative;
  background: url("../img/bg_amatarodon_pc.jpg") center / cover no-repeat fixed;
  overflow: hidden;
}

/* --- 店舗紹介 --- */
.shop-card {
  border: 1px solid var(--border-raimon);
  border-radius: 6px;
  overflow: hidden;
  background: #fffcf7;
}

.shop-header {
  background: var(--primary-red);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-family: "Zen Antique", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 26px;
}

.shop-body {
  display: flex;
  padding: 15px;
  gap: 15px;
  font-family: "Zen Antique", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

.shop-img-wrap {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
}
.shop-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.shop-info {
  flex: 1.2;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.shop-info .address {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ボタンラッパー */
.shop-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.btn-shop-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-red);
  color: #fff;
  padding: 18px 16px;
  border-radius: 4px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}
.btn-shop-detail i {
  font-size: 13px;
}
.btn-shop-detail:hover {
  background-color: var(--dark-red);
  transform: translateY(-1px);
}

/* LINE友だち募集ボタン */
.btn-line {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #06c755;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 800;
  font-size: 17px;
  /* text-align: center; */
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-line i {
  font-size: 40px;
  display: block;
}
.btn-line:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* --- シーン & ギャラリー --- */
.scene-card {
  background: #f4ece1;
  padding: 15px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.scene-card h3 {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 10px;
}
.scene-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
}
.scene-img {
  width: 80%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-card {
  text-align: center;
  position: relative;
}

/* 店舗識別タグ（左上固定バッジ） */
.gallery-shop-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  z-index: 2;
}

.gallery-box {
  display: flex;
  justify-content: space-between;
}
.gallery-box .gallery-store {
  width: 48%;
}
.ga-store-name {
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 4px;
  font-size: 20pt;
  text-align: center;
  border-bottom: var(--primary-red) solid 4px;
}
.gallery-img {
  height: 110px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
}
.gallery-card p {
  font-size: 16px;
  font-weight: bold;
}

/* ========================================================
   GALLERY MODAL POPUP
======================================================== */
.gallery-card {
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-card:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* ポップアップ表示時 */
.gallery-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.gallery-modal-content {
  position: relative;
  z-index: 1001;
  max-width: 90%;
  max-height: 85vh;
  background: #fff;
  padding: 5px 5px 15px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.gallery-modal.is-active .gallery-modal-content {
  transform: scale(1);
}

.gallery-modal-img-wrap {
  max-height: 70vh;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-modal-img-wrap img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.gallery-modal-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  width: 100%;
}

.gallery-modal-caption .gallery-shop-tag {
  position: static; /* モーダル内では通常配置 */
  padding: 3px 8px;
}

.gallery-modal-title {
  font-weight: bold;
  font-size: 15px;
  color: #333;
}

.gallery-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  background: var(--primary-red);
  color: #fff;
  /* border: 2px solid #fff; */
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: background 0.2s, transform 0.2s;
}

.gallery-modal-close:hover {
  background: var(--dark-red);
  transform: scale(1.1);
}

/* --- お知らせバー --- */
.news-bar {
  width: 100%;
  /* height: 500px; */
  background: #faebd7;
  border: 1px solid #dfcfb9;
  border-radius: 6px;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  margin: 80px 0;
  /* overflow-y: scroll; */
}

.news-title {
  font-weight: bold;
  font-size: 18px;
  white-space: nowrap;
}

.news-list-grid {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 18px;
}

/*.news-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
  flex: 1;
  font-size: 13px;
}*/

.news-row {
  width: 100%;
  max-width: 900px;
  margin: 6px auto 6px;
  padding: 8px 0 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-row span a {
  color: var(--primary-red);
  display: inline-block;
}

.news-row span a:hover {
  text-decoration: underline;
}

.tag {
  font-size: 10px;
  height: 24px;
  color: #fff;
  text-align: center;
  padding: 5px 6px;
  border-radius: 2px;
}
.tag-red { background: var(--primary-red); }
.tag-darkred { background: #6b1d1d; }

/* --- 下部カード --- */
.info-card {
  width: 50%;
  margin: 0 auto;
  background: #fdfaf3;
  border: 1px solid #ebdccb;
  border-radius: 6px;
  padding: 20px;
}

.info-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ebdccb;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.info-card-header h3 { font-size: 16px; color: var(--primary-red); }
.info-card-header .more-link { font-size: 12px; }

.takeout-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.takeout-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.takeout-title h3 {
  font-size: 24px;
  color: var(--primary-red);
}
.takeout-title h3 .bk { color: #333; }
.takeout-badge {
  background: var(--primary-red);
  color: #fff;
  font-size: 9px;
  text-align: center;
  padding: 4px 6px;
  border-radius: 4px;
}
.takeout-left p {
  font-size: 18px;
  margin-bottom: 12px;
}
.takeout-img-wrap {
  width: 40%;
  border-radius: 4px;
  overflow: hidden;
}
.takeout-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- フッター --- */
.footer {
  background: var(--dark-red);
  color: #fff;
  padding: 50px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
}
.footer-logo img {
  width: 240px;
}

.footer-nav {
  display: flex;
  list-style: none;
  gap: 15px;
  font-family: "Zen Antique", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 16px;
}

.footer-nav li:hover{
  color: var(--bg-sand);
}

.footer-sns {
  display: flex;
  gap: 15px;
  font-size: 20px;
}

.footer-sns img{
  width: 180px;
}

.copyright {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
  color: rgba(255,255,255,0.7);
}

/* ========================================================
   PAGE TOP BUTTON (PC限定・スクロール登場)
======================================================== */
.pagetop-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  background-color: var(--primary-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;

  /* 初期状態: 透明 ＆ 20px下に沈めておく */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background-color 0.2s;
}

.pagetop-btn i {
  font-size: 14px;
  margin-bottom: 1px;
}

.pagetop-btn span {
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.pagetop-btn:hover {
  background-color: var(--dark-red);
  transform: translateY(-2px); /* ホバー時の微細な浮き上がり */
}

/* 800pxスクロール時に付与される表示用クラス */
.pagetop-btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}


/* ========================================================
   RESPONSIVE (768px以下)
======================================================== */
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }

  .pc-only {
    display: none !important;
  }

/* -------------------------------------------
     ヘッダー固定
  ------------------------------------------- */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px; /* 固定ヘッダーの高さ */
    border-top: 4px solid var(--primary-red);
    border-bottom: 2px solid #3d2314;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    /* スクロールアニメーションによる非表示設定を無効化し常時表示 */
    transform: none !important;
    opacity: 1 !important;
    transition: none;
  }

  /* ヘッダー内コンテナ：左にロゴ、右にハンバーガー */
  .header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
  }

  /* スマホ版ロゴサイズ */
  .site-logo img {
    width: 120px;
    height: auto;
    display: block;
  }

  /* -------------------------------------------
     ハンバーガーボタン（3本線）
  ------------------------------------------- */
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100; /* ドロワーメニューより前面 */
  }

  .hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  /* メニュー展開時（×印に変形） */
  .hamburger-btn.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  /* -------------------------------------------
     ドロワーメニュー
  ------------------------------------------- */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background-color: #fdf8ee;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1050;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
    padding: 16px 8px;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
    color: var(--text-color);
    text-shadow: none;
  }

  /* -------------------------------------------
     ヘッダー固定による被り防止
  ------------------------------------------- */
  /* ファーストビューのスライダー上部にヘッダー分の余白を追加 */
  .hero-slider-section {
    margin-top: 60px;
  }

  /* スマホ用のれん画像は非表示 */
  .sp-noren {
    display: none !important;
  }

  /* スマホ版固定ヘッダー(60px)分の被り防止 */
  .hero-slider-section {
    margin-top: 60px;
  }

  /* スマホ向けの縦横比 */
  .slide {
    aspect-ratio: 4 / 5;
  }

  .slide-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 30px 15px;
  }

  .hero-copy .sub-catch {
    font-size: 16px;
  }

  .hero-copy .main-catch {
    font-size: 22px;
  }

  .hero-logo {
    font-size: 40px;
  }
  .badge-circle {
    width: 105px;
    height: 105px;
  }
  .badge-circle strong {
    font-size: 16px;
  }
  .badge-top {
    font-size: 12px;
    padding: 4px 12px;
  }

  /* お知らせバー */

  .news-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
  }

  .tag {
    width: 120px;
  }

  .section {
    margin: 70px 0;
  }

  .section-title {
    flex-direction: column;
    gap: 8px;
  }

  .section-title h2 {
    font-size: 18pt;   /* スマホ画面に合わせて文字サイズを調整 */
    padding: 0;        /* 左右の余白をリセット */
    text-align: center;
  }

  .raimon-line {
    width: 80%;        /* 上下の線の長さを調整（100%や80%など好みで変更可能） */
    flex: none;        /* flex: 1 による自動伸長を解除 */
    height: 12px;
  }

  /* グリッド */
  .grid-4,
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .btn-red {
    width: 90%;
    margin: 0 auto;
    padding: 18px 0;
  }

  .menu-card h3 {
    font-size: 24px;
  }

  .kodawari-section {
    flex-direction: column;
  }

  .kodawari-content p {
    width: 100%;
    margin: 0 auto;
    font-size: 0.9em;
  }

  .scene-card {
    text-align: left;
    padding: 10px;
  }

  .scene-card h3 {
    font-size: 18px;
  }

  /* --- 背景イメージ --- */
  .bg-image {
    width: 100%;
    height: 400px;
  }

  .bg-image {
    width: 100%;
    height: 400px;
    position: relative;
    background-image: none;
    overflow: hidden;
  }
  .bg-image::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-image: url("../img/bg_amatarodon_sp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateZ(0);
  }
  .shop-card {
    margin: 12px 0 30px;
  }
  .shop-body {
    flex-direction: column;
  }

  .gallery-box {
    display: flex;
    flex-direction: column;
  }
  .gallery-box .gallery-store {
    width: 100%;
    margin-bottom: 40px;
  }
  .ga-store-name {
    font-size: 14pt;
  }
  .gallery-box .gallery-store .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* テイクアウトカード */
  .takeout-card {
    width: 100%;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    text-align: center;
  }

  .takeout-left {
    width: 100%;
    margin: 26px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .takeout-title {
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 10px;
  }
  .takeout-badge {
    background: #fdfaf3;
    color:var(--primary-red);
    width: 100%;
    margin: 0 auto;
    font-size: 20px;
    text-align: center;
  }
  .takeout-left p {
    margin: 24px 0;
  }

  .takeout-img-wrap {
    width: 100%;
    height: 140px;
  }

  /* フッター */
  .footer-inner {
    flex-direction: column;
    gap: 15px;
  }
  .footer-logo {
    margin: 36px 0;
  }
  .footer-nav {
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .pagetop-btn {
    display: none !important;
  }
}
