/* ===== 基本設定 ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #111;
  line-height: 1.8;
  background: #fff;
}

h1, h2, h3 {
  margin: 0 0 20px;
  font-weight: 600;
}

p {
  margin: 0 0 15px;
}

/* ===== HERO ===== */
.hero {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  letter-spacing: 0.08em;
}

.hero p {
  font-size: 16px;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  margin: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.btn.line {
  background: #06c755;
  color: #fff;
}

.btn.phone {
  background: #333;
  color: #fff;
}

/* ===== SECTION ===== */
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.section.dark {
  background: #f6f6f6;
}

.section h2 {
  font-size: 26px;
  border-bottom: 2px solid #111;
  padding-bottom: 10px;
}

.section h3 {
  font-size: 20px;
  margin-top: 30px;
}

/* ===== TEXT ===== */
.note {
  font-size: 14px;
  color: #555;
}

/* ===== MENU ===== */
.menu,
.course {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.menu li,
.course li {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

/* ===== PRICE ===== */
.price-box {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
}

/* ===== MAP ===== */
/* ===== アクセス地図 ===== */
.map {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
}

.map iframe {
  width: 100%;
  height: 450px;   /* ← ここが大きさ */
  border: 0;
  border-radius: 8px;
}
/* ===== FOOTER ===== */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ===== スマホ対応 ===== */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }

  .section {
    padding: 40px 16px;
  }
}
/* ===== 写真表示 ===== */
.photo {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  display: block;
  border-radius: 8px;
}
/* ===== PRICE BOX ===== */
.price-box{
  margin-top: 30px;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
}

.price-box h3{
  margin: 0 0 18px;
  font-size: 20px;
  text-align: center;
}

.price-item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #ccc;
}

.price-item:last-child{
  border-bottom: none;
}

.price-title{
  font-size: 16px;
  font-weight: 500;
}

.price-amount{
  font-size: 20px;
  font-weight: bold;
}

.price-note{
  width: 100%;
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}

.child-note{
  margin-top: 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* ===== HERO SLIDESHOW ===== */

.hero {
  position: relative;
  height: 70vh;           /* 画面の高さに合わせる */
  min-height: 420px;
  overflow: hidden;
  color: #fff;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;        /* ← 縦長でもOKにする魔法 */
  background-position: center;   /* 中央トリミング */
  opacity: 0;
  animation: heroFade 12s infinite;
}

/* 1枚目 */
.hero-slide.s1 {
  background-image: url("../img/hero.jpg");
  animation-delay: 0s;
}

/* 2枚目 */
.hero-slide.s2 {
  background-image: url("../img/hero2.png");
  animation-delay: 6s;
}

/* 文字エリアを前に出す */
.hero-inner{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 90px 16px;
  background: transparent;
} 

/* フェードアニメーション */
@keyframes heroFade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  45%  { opacity: 1; }
  55%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-slideshow{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slideshow::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* ====== MENU LIST (LUNCH) ====== */
.menu-title{
  margin: 28px 0 14px;
  font-size: 18px;
  font-weight: 700;
}

.menu-list{
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  overflow: hidden;
}

.menu-item{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid #eee;
}

.menu-item:first-child{
  border-top: none;
}

.menu-left{
  min-width: 0;
}

.menu-name{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.menu-desc{
  margin-top: 6px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.menu-price{
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 600px){
  .menu-item{
    padding: 14px 14px;
  }
  .menu-price{
    font-size: 17px;
  }
}

/* ===== メニュー共通 ===== */
.menu-title {
  margin: 40px 0 16px;
  font-size: 20px;
  border-left: 4px solid #000;
  padding-left: 12px;
}

.menu-list {
  margin-bottom: 32px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
}

.menu-left {
  max-width: 75%;
}

.menu-name {
  font-size: 16px;
  font-weight: 600;
}

.menu-desc {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.menu-price {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

/* スマホ */
@media (max-width: 600px) {
  .menu-left {
    max-width: 70%;
  }
}

/* ===== DINNER SLIDESHOW ===== */
.dinner-slideshow{
  position: relative;
  width: 100%;
  max-width: 900px;      /* ここは好み。今の写真幅に合わせたいなら900のまま */
  height: 320px;         /* 高さ。縦が気になるならここを調整 */
  margin: 40px auto;
  border-radius: 8px;
  overflow: hidden;
}

.dinner-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: dinnerFade 12s infinite;
}

/* ここで画像ファイルを指定（imgフォルダ内） */
.dinner-slide.d1{ background-image: url("../img/course.jpg"); animation-delay: 0s; }
.dinner-slide.d2{ background-image: url("../img/enkai.jpg");  animation-delay: 4s; }
.dinner-slide.d3{ background-image: url("../img/drink.jpg");  animation-delay: 8s; }

@keyframes dinnerFade{
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  33%  { opacity: 1; }
  41%  { opacity: 0; }
  100% { opacity: 0; }
}

/* スマホは少し低く */
@media (max-width: 600px){
  .dinner-slideshow{ height: 220px; }
}

/* ===== MENU (bento) upgrade ===== */
.menu-title{
  margin-top: 28px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-title::before{
  content: "";
  display: inline-block;
  width: 6px;
  height: 22px;
  background: #111;
  border-radius: 3px;
}

.menu-options{
  margin: 18px 0 14px;
  padding: 16px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
}
.menu-options .opt-title{
  font-weight: 800;
  margin: 6px 0 8px;
}
.menu-options .opt-list{
  margin: 0 0 10px 18px;
  padding: 0;
}
.menu-options .opt-note{
  margin: 6px 0 0;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.menu-list{
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

/* 3列（左：商品 / 中：価格 / 右：オプション） */
.menu-list--with-opt .menu-item{
  display: grid;
  grid-template-columns: 1fr auto 160px;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px solid #eee;
  align-items: center;
}
.menu-list--with-opt .menu-item:first-child{
  border-top: none;
}

.menu-left .menu-name{
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}
.menu-left .menu-desc{
  margin-top: 4px;
  font-size: 13px;
  color: #666;
}

.menu-price{
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.menu-opt{
  font-size: 12px;
  color: #444;
  line-height: 1.35;
  border-left: 1px dashed #ddd;
  padding-left: 12px;
  text-align: left;
}
.menu-opt .opt-strong{
  font-weight: 900;
}

.badge{
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  vertical-align: middle;
  margin-left: 6px;
}

/* オプション対象外を少し薄く */
.is-disabled-opt{
  background: #fcfcfc;
}
.is-disabled-opt .menu-opt{
  color: #999;
}

/* スマホで崩れないように（縦積み） */
@media (max-width: 600px){
  .menu-list--with-opt .menu-item{
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "left price"
      "opt  opt";
  }
  .menu-left{ grid-area: left; }
  .menu-price{ grid-area: price; }
  .menu-opt{
    grid-area: opt;
    border-left: none;
    border-top: 1px dashed #e3e3e3;
    padding-left: 0;
    padding-top: 10px;
    margin-top: 6px;
  }
}