/* =========================
   Shizuku site style.css（完全上書き版）
   - wall_background 常時
   - hero：PC右/SP上 + 動画サイズを変数で調整
   - cuisine：縦3:4料理写真10枚をゆっくり自動スクロール
   ========================= */

:root{
  --fg: #f5f2ea;
  --muted: rgba(245,242,234,.75);
  --line: rgba(245,242,234,.18);
  --accent: #c8a25a;
  --base: #070707;

  /* ▼ HERO 動画サイズつまみ（ここだけ触ればOK） */
  --hero-video-max-width-pc: 500px; /* PCでの動画横幅 */
  --hero-video-height-pc: 700px;    /* PCでの動画高さ */
  --hero-video-max-width-sp: 100%;   /* SPでの動画横幅 */
  --hero-video-height-sp: 400px;    /* SPでの動画高さ */

  /* ▼ 料理マルキー速度（数字を増やすほど遅く） */
  --food-scroll-seconds: 90s;
}

/* base */
html,body{ height:100%; }
body{
  background: var(--base);
  color:var(--fg);
  font-family: system-ui, -apple-system, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  letter-spacing:.02em;
}

/* smooth scroll */
html { scroll-behavior: smooth; }
section { scroll-margin-top: 92px; }

/* ===== wall_background 常時 ===== */
.has-wall-bg{
  background-color: var(--base);
  background-image: url("../img/wall_background.jpg");
  background-repeat: repeat;
  background-size: 640px 640px;
  background-attachment: fixed;
}
@media (max-width: 767.98px){
  .has-wall-bg{ background-attachment: scroll; }
}

/* 暗幕レイヤー */
.has-wall-bg::before{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(7,7,7,0.58);
  pointer-events: none;
  z-index: -1;
}

/* header */
.site-header{
  position: sticky;
  top:0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(7,7,7,.72);
  border-bottom:1px solid var(--line);
}
.header-brand{
  font-size: 1rem;          /* 主張しすぎない */
  letter-spacing: .18em;   /* heroより少し詰める */
  line-height: 1.2;
}
.brand{
  text-decoration:none;
  color:var(--fg);
  font-weight:600;
  letter-spacing:.12em;
}
.nav-link{ color:var(--muted) !important; }
.nav-link:hover{ color:var(--fg) !important; }

.btn-reserve{
  border:1px solid var(--accent);
  color:var(--fg);
  background: rgba(200,162,90,.12);
}
.btn-reserve:hover{
  background: rgba(200,162,90,.22);
  color: var(--fg);
}

/* =========================
   HERO（1系統に統一）
   ========================= */

.hero{
  min-height: calc(100vh - 78px);
  display:flex;
  align-items:center;
  justify-content:center;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(32px, 6vw, 80px);
  border-bottom:1px solid var(--line);
}

/* テキスト側（あなたが残したい部分を統合） */
.hero-copy{
  flex: 1 1 52%;
  max-width: 600px;

  padding: clamp(28px, 3vw, 56px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  z-index: 1;
}
.hero-kicker{
  color: var(--accent);
  letter-spacing:.25em;
  font-size:.9rem;
}
.hero-title{
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: .22em;   /* ← ここが超重要 */
  margin: .8rem 0 1.2rem;
  line-height: 1.3;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.brand-kanji{
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: .35em;
}


.hero-lead{
  color: var(--muted);
  line-height:1.9;
  font-size: 1.02rem;
  max-width: 42rem;
}
.hero-cta{
  margin-top: 1.4rem;
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
}

/* 動画側ラッパー */
.hero-media{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 1;
}

/* 動画本体（★ここがサイズ調整の効く本体） */
.hero-media video.hero-video{
  width: 100%;
  max-width: var(--hero-video-max-width-pc);
  height: var(--hero-video-height-pc);

  object-fit: cover;
  border-radius: 18px;

  box-shadow:
    0 8px 20px rgba(0,0,0,.35),
    0 0 0 1px rgba(245,242,234,.15);
}

/* SP（動画を上、テキストを下） */
@media (max-width: 991.98px){
  .hero{
    flex-direction: column;
    text-align: center;
    padding: clamp(20px, 5vw, 44px);
  }

  .hero-copy{
    max-width: 100%;
    padding: clamp(16px, 4vw, 28px);
  }

  .hero-media video.hero-video{
    max-width: var(--hero-video-max-width-sp);
    height: var(--hero-video-height-sp);
  }
}

/* ===== HERO：SPは動画を上 ===== */
@media (max-width: 991.98px){
  .hero{
    flex-direction: column;
  }

  .hero-media{
    order: 1;   /* 動画を先頭 */
  }

  .hero-copy{
    order: 2;   /* テキストを後ろ */
    text-align: center;
  }
}


/* sections */
.section{ padding: clamp(44px, 6vw, 92px) 0; }
.section-title{
  letter-spacing:.18em;
  margin-bottom: 1.2rem;
}
.section-lead{
  color: var(--muted);
  line-height:1.9;
}
.note{
  color: rgba(245,242,234,.6);
  font-size: .92rem;
}
.hr-line{
  height:1px;
  background: var(--line);
  margin: 22px 0;
}
.list-clean{
  list-style:none;
  padding-left:0;
  margin:0;
  color: var(--muted);
  line-height: 1.9;
}

/* info */
.info-box{
  border:1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 20px;
  background: rgba(255,255,255,.02);
}
.info-title{
  color: var(--accent);
  letter-spacing:.18em;
  font-size:.86rem;
  margin-bottom: .35rem;
}
.info-text{ color: var(--fg); line-height: 1.9; }

/* map */
.map-wrap{
  border:1px solid var(--line);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.02);
}
.map-wrap iframe{
  width:100%;
  height: 420px;
  border:0;
  display:block;
}
@media (max-width: 991.98px){
  .map-wrap iframe{ height: 320px; }
}

/* reserve */
.reserve-box{
  border:1px solid var(--line);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 42px);
  background: rgba(255,255,255,.02);
}
.mini-box{
  border:1px solid var(--line);
  border-radius: 18px;
  padding: 16px 16px 18px;
  background: rgba(255,255,255,.02);
}
.mini-title{
  color: var(--accent);
  letter-spacing:.16em;
  font-size:.86rem;
  margin-bottom: .35rem;
}
.mini-text{
  color: var(--muted);
  line-height: 1.9;
}

/* footer */
.site-footer{
  border-top:1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size:.95rem;
}
.footer-small{ font-size:.85rem; color: rgba(245,242,234,.6); }

/* =========================
   料理写真：ゆっくり動く（10枚）
   - 3:4（600×800）を維持
   - PC/SPとも4枚くらい見える
   ========================= */

.food-marquee{
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  overflow: hidden;
  padding: 14px 0;
}

/* 端フェード */
.food-marquee::before,
.food-marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}
.food-marquee::before{
  left:0;
  background: linear-gradient(90deg, rgba(7,7,7,0.75), rgba(7,7,7,0));
}
.food-marquee::after{
  right:0;
  background: linear-gradient(270deg, rgba(7,7,7,0.75), rgba(7,7,7,0));
}

.food-marquee__track{
  display:flex;
  gap: 14px;
  align-items:center;
  width:max-content;
  padding: 0 14px;

  animation: foodScroll var(--food-scroll-seconds) linear infinite;
  will-change: transform;
}

/* hoverで停止（PCだけ想定） */
.food-marquee:hover .food-marquee__track{
  animation-play-state: paused;
}

.food-card{
  margin:0;
  flex: 0 0 auto;
  width: clamp(150px, 22vw, 220px);
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(245,242,234,.12);
  background: rgba(0,0,0,.2);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.food-card img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.03);
}

/* 無限ループ：複製している前提で半分移動 */
@keyframes foodScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .food-marquee__track{ animation: none; }
}

/* 店名 共通書体（hero / footer 共用） */
.brand-title{
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: .22em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO：SPは完全センタリング ===== */
@media (max-width: 991.98px){
  .hero{
    align-items: center;
    text-align: center;
  }

  .hero-copy{
    align-items: center;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-cta{
    justify-content: center;
  }

  .hero-media{
    margin-left: auto;
    margin-right: auto;
  }
}

/* 営業時間・定休日 表記を白寄りに */
.hero .text-muted,
.section .text-muted{
  color: rgba(245,242,234,0.9) !important;
}

/* スマホ時：文章を少し小さくして1行に収めやすくする */
@media (max-width: 767.98px){
  .section-lead{
    font-size: 0.87rem;     /* ← ここを好みで調整 */
    line-height: 1.8;      /* ← 行間も少し詰める */
  }
}

