/* 全体の基本スタイル */
body, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #000;
  color: white;
}










/* 固定ヘッダー */
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  padding: 10px 0;
}

/* ナビゲーション */
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 5px 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* スライダーセクション（最上部に配置） */
.slider-section {
  margin-top: 120px; /* ヘッダーの高さ分の余白 */
}

/* スライダー画像 */
.slider img {
  width: 100%;
  height: 570px; /* ← ここで高さを自由に指定できます */
  object-fit: cover;
  display: block;
}

/* セクションタイトル */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 40px 0;
}

/* フッター */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
}

.slider-section {
  margin-top: 120px; /* 固定ヘッダー分の余白 */
}

/* ドットの位置調整 */
.slick-dots {
  bottom: -30px;
  text-align: center;
}

/* ドットの見た目を「・」に変更 */
.slick-dots li button:before {
  content: '・';
  font-size: 20px;
  color: white;
  opacity: 0.5;
}

/* アクティブなドットの強調 */
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ffcc00; /* 黄色で目立たせる */
}

/* お知らせセクション */
.news-area {
  background-color: #111; /* ダークグレーで背景に馴染ませる */
  border: 1px solid #333;
  padding: 30px 20px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.05);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.news-heading {
  font-size: 2em;
  color: #ffcc00; /* ナビのドットと合わせて黄色で統一感 */
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
  margin-bottom: 25px;
  text-align: center;
}

.news-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-items li {
  margin-bottom: 20px;
  padding: 10px 15px;
  background-color: #1a1a1a;
  border-left: 5px solid #ffcc00;
  box-shadow: 0 1px 4px rgba(255,255,255,0.03);
}

.news-items time {
  display: block;
  font-size: 0.9em;
  color: #aaa;
  margin-bottom: 5px;
}

.news-items p {
  font-size: 1em;
  color: #eee;
  margin: 0;
}

.product-list {
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  width: 300px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

.bekkan-image-container {
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
  aspect-ratio: 4 / 3;
  transition: box-shadow 0.6s ease;
}

.bekkan-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 1.8s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 1.2s ease,
    box-shadow 1.2s ease;
  filter: brightness(95%);
  box-shadow: 0 0 0px rgba(255, 255, 255, 0); /* 初期は光なし */
}

.bekkan-image-container:hover img {
  transform: scale(1.06);
  filter: brightness(115%);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.15); /* にじむような光 */
}

.bekkan-image-container:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}.product-info {
  padding: 15px;
}

.product-info h3 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.5;
}

/* レスポンシブ対応 */
@media screen and (max-width: 960px) {
  .product-card {
    width: 45%;
  }
}

@media screen and (max-width: 600px) {
  .product-card {
    width: 100%;
  }
}

.product-list {
  padding: 40px 20px;
  background-color: #000; /* 全体背景と統一 */
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  width: 300px;
  background-color: #111;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(255,255,255,0.05);
  text-align: center;
  transition: transform 0.3s ease;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: white;
}

.image-container {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
}

.image-container:hover img {
  transform: scale(1.05);
}



.product-info {
  padding: 15px;
}

.product-info h3 {
  font-size: 1.2em;
  color: #ffcc00; /* お知らせと統一感のある黄色 */
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.95em;
  color: #ccc;
  line-height: 1.5;
}

/* レスポンシブ対応 */
@media screen and (max-width: 960px) {
  .product-card {
    width: 45%;
  }
}

@media screen and (max-width: 600px) {
  .product-card {
    width: 100%;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, auto); /* 3列に固定 */
  justify-content: center; /* 中央寄せ */
  gap: 24px; /* 商品間の余白 */
}

.product-item img {
  width: 200px; /* 画像サイズを固定 */
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

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

.image-container {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #000;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.image-container:hover img {
  transform: scale(1.05);
}
body, html {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
}

.product-info h3,
.product-info p {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
}


/* タイトルの下に白い線 */
.product-info h3 {
  border-bottom: 1px solid white;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.slider img {
  width: 100%;
  aspect-ratio: 16 / 9; /* 1枚目の比率に合わせる */
  object-fit: cover;
  display: block;
}


/* スライダー全体 */


/* 各スライド */
.slide {
  position: relative;
}

/* フェード用の画像暗さ調整 */
.slider img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: brightness(60%);
}

/* キャプション */
.caption {
  position: absolute;
  bottom: 40px;
  left: 50px;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Yu Mincho", serif;
  background-color: transparent;
  padding: 12px 24px;
  border-radius: 6px;
  pointer-events: none;
}

.slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 10s ease;
}

.slide.active {
  opacity: 1;
}

.slide.active img {
  transform: scale(1.05); /* ゆるやかな拡大 */
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 2rem;
  font-family: "Yu Mincho", serif;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4); /* 文字を浮かせるための影 */
  text-align: center;
  padding: 0.5em 1em;
}

.slider .slick-active img {
  transform: scale(1.05);
}

/* 初期表示の1枚目の画像にも拡大を適用 */
.slide:first-child img {
  transform: scale(1.05);
}

/* Slick.jsで現在表示中のスライド画像に拡大を適用 */
.slider .slick-slide.slick-current.slick-active img {
  transform: scale(1.05);
  transition: transform 10s ease;
}

/* 初期状態の画像には拡大なし（明示） */
.slider .slick-slide img {
  transform: scale(1);
  transition: transform 10s ease;
}

.fade-overlay {
  position: fixed;
  inset: 0;
  background-color: #000;
  z-index: 9999;
  opacity: 1;
  transition: opacity 2.5s ease;
  pointer-events: none;
}


.link-image img {
  transition: filter 0.4s ease;
  filter: brightness(100%);
}

.link-image:hover img {
  filter: brightness(115%);
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-up-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 画像に適用するアニメーション */
.floating-image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* 表示トリガー後の状態 */
.floating-image.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ふわっと浮く画像アニメーション（fade-upと統合） */
.floating-image {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.floating-image.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ハンバーガーアイコン（常時表示・右上） */
.hamburger {
  position: fixed;
  top: 110px;
  right: 20px;
  width: 30px;
  height: 19px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10000;
}


.hamburger span {
  display: block;
  height: 2px;             /* ← 線の太さここで調整 */
  background-color: white;
  border-radius: 2px;
}
.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* モバイルメニュー（初期は非表示） */
#mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 240px;
  height: 100vh;
  background-color: #000;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  padding-top: 60px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

#mobile-nav {
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  backdrop-filter: blur(0px);          /* 背景をぼかす */
  -webkit-backdrop-filter: blur(8px);  /* Safari対応 */
}


#mobile-nav ul {
  list-style-type: none; /* 箇条書きに */
  padding-left: 24px;    /* 箇条書きのインデント調整 */
  padding-right: 24px;
  text-align: left;
  display: block; /* 念のため追加 */
}

#mobile-nav li {
  margin: 20px 0;
  text-align: left; /* ← center から left に変更 */
  display: block;          /* ← 念のため追加（liをブロック要素として扱う） */
}

#mobile-nav a {
  display: block; /* ← 改行されるように */
  width: 100%;    /* ← 横幅いっぱいに広げることで並ばないように */
  box-sizing: border-box;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

#mobile-nav a:hover {
  opacity: 0.7;
}





.language-switch {
  margin-top: 40px;
  font-size: 16px;
  text-align: left;
}

.language-switch a {
  color: white;
  text-decoration: none;
  margin-right: 12px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.language-switch a:hover {
  opacity: 1;
}




/* PC用ナビは常時表示、スマホでは非表示 */
@media screen and (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  #mobile-nav {
    display: block;
  }
}



/* PC用のグリッド（3列） */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
}

/* スマホ対応（600px以下） */
@media screen and (max-width: 600px) {
  /* スライダー画像の高さと余白調整 */
  .slider {
    position: relative;
    height: 50vh;
    margin-bottom: 0;
  }

  .slider-section {
    margin-bottom: 0;
  }

  /* キャプションを画像中央に配置 */
  .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    padding: 0.4em 0.8em;
    color: #fff;
    background-color: transparent;
    border-radius: 6px;
    text-align: center;
  }

  /* お知らせセクションの余白調整 */
  .news-area {
    margin-top: 8px;
    padding-top: 0;
  }

  /* 商品カードを2列に並べる */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
    justify-content: center;
  }

  .product-card {
    width: 100%;
    margin: 0;
  }

  /* 商品情報の文字サイズ調整（任意） */
  .product-info h3 {
    font-size: 1.1em;
  }

  .product-info p {
    font-size: 0.9em;
  }

 .hamburger {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 1000;
  }
}

.hamburger {
  z-index: 10001; /* メニューより前に出す */
}
#mobile-nav {
  z-index: 9999;  /* ハンバーガーより下に */
}

#mobile-nav {
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

#mobile-nav.open {
  transform: translateX(0);
}










@media screen and (max-width: 600px) {
  .slider img,
  .slide img,
  .floating-image,
  .product-item img {
    display: block;
    margin: 0 auto;
  }

  .product-card {
    margin: 0 auto;
  }

  .product-grid {
    justify-content: center;
  }

  .caption {
    width: 90%;
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 960px) {
  .menu-image4 {
    width: 410px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }
}



.menu-image4p {
  width: 370px;
  height: 270px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}



.menu-description4p {
  width: 370px; /* 画像と同じ幅に揃える */
  margin: 10px auto 16px auto;
  font-size: 0.95em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  font-family: "Yu Mincho", serif;
}



.menu-image5 {
  width: 201px;
  height: 151px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}


.menu-description5p {
  width: 201px; /* 画像と同じ幅に揃える */
  margin: 10px auto 16px auto;
  font-size: 0.95em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  font-family: "Yu Mincho", serif;
}




.menu-image6 {
  width: 430px;
  height: 294px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}


.menu-description6p {
  width: 430px; /* 画像と同じ幅に揃える */
  margin: 10px auto 16px auto;
  font-size: 0.95em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  font-family: "Yu Mincho", serif;
}



.menu-imagetai {
  width: 430px;
  height: 294px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}


.menu-descriptiontai {
  width: 430px; /* 画像と同じ幅に揃える */
  margin: 10px auto 16px auto;
  font-size: 0.95em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  font-family: "Yu Mincho", serif;
}






/* ハンバーガーメニュー展開時の背景と文字色を強制的に黒に戻す */
#mobile-nav {
  background-color: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff !important;
}


/* 料理説明のテキストブロックに自然な幅と余白を設定 */
.menu-description {
  max-width: 240px;         /* 画像に合わせてやや狭めに */
  margin: 0 auto;           /* 中央寄せ（左寄せにしたい場合は margin-left: auto; margin-right: 0;） */
  padding: 8px 0 16px 0;    /* 上下の余白を自然に */
  font-size: 1em;
  line-height: 1.6;
  text-align: center;       /* 左寄せにしたい場合は left に変更可能 */
  color: #fff;
  font-family: "Yu Mincho", serif;
}




body {
  font-family: "Yu Mincho", "AR P教科書体M", serif !important;
}

h1, h2, h3, .section-title, .news-heading {
  font-family: "AR P祥南真筆行書体M", "Yu Mincho", serif !important;
}

p, li, td, th, .caption, .product-info {
  font-family: "Yu Mincho", "AR P教科書体M", serif !important;
}

body, p, li, td, th, a, h1, h2, h3, .caption, .product-info, .menu-description6p {
  font-family: "Yu Mincho", "AR P教科書体M", serif !important;
}

.section-title, .news-heading, h2, h3 {
  font-family: "AR P祥南真筆行書体M", "Yu Mincho", serif !important;
}

/* 全体のベースフォント */
body, p, li, td, th, a, .caption, .product-info, .menu-description6p {
  font-family: "Yu Mincho", "AR P教科書体M", serif !important;
}

/* 見出し・料理名など筆文字で統一 */
h1, h2, h3, .section-title, .news-heading,
.menu-description6p span,
.menu-description6p strong,
.menu-description6p .dish-name {
  font-family: "AR P祥南真筆行書体M", "Yu Mincho", serif !important;
}


@media screen and (max-width: 600px) {
  html {
    zoom: 0.6;
  }
}



.fixed-header img {
  display: block;
  margin-left: 0;
  margin-right: auto;
}







/* 特定の画像だけ静かに位置を下げる */
.menu-image5.adjust-lower-202509302343 {
  display: block;
  margin-top: 45px;
}


/* 電話リンク（スマホのみ表示） */
.mobile-call-only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .mobile-call-only {
    display: block !important;
  }
}