html{
  scroll-behavior: smooth;
}

body.lp-body {
  background-image: none !important;
  color: var(--text) !important;
  background-color: var(--bg)!important;
  font-family: "EB Garamond", "Zen Old Mincho", serif !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: var(--lh-pc-loose);
  min-width: 0 !important; /* Cocoonの幅制限を解除 */
}

h1,h2,h3,li,p{margin:0}

a{
  transition: 300ms ease-in-out;
  color: inherit;
  text-decoration: none!important;
}

a:hover{scale: 1.04; color:var(--bg)!important;}

/* =====================
   Base / Tokens
===================== */

:root{
  --bg: #645651;    /* 薄いベージュから暗い茶・黒系へ */
  --bg_strong:#463D3B;
  --text: #ffffff;  /* 濃い茶から白へ */
  --accent: #F7CA7B; /* ゴールド */

  /* Font Sizes */
  --head_en: 80px;  /* 英語大見出し */
  --head_jp: 56px;  /* 日本語大見出し */
  --head_common: 20px;    /* 見出し */
  --normal: 18px;   /* 通常テキスト大 */
  --small: 16px;     /* 通常テキスト小 */

  /* Type scale (PC) */
  --lh-pc-tight: 1.2;
  --lh-pc-base: 1.5;
  --lh-pc-loose: 2;
  --ls-pc-em-base: 0.08em;
  --ls-pc-wide: 2px;
  --ls-pc-display: 10px;
}

.hl{color:var(--accent)}

.u-srOnly{
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Basic reset */
*,
*::before,
*::after{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
  font-family: "EB Garamond","Zen Old Mincho",serif;
  font-size: var(--normal);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  letter-spacing: var(--ls-pc-wide);
}

/* Prevent accidental horizontal scroll from large radii/abs elements */
body{
  overflow-x: hidden;
  background-color:var(--bg);
}

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

/* LP wrapper */
.lp{
  color: var(--text);
}

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



.lp-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  background-color: #000;
  /* 子要素を中央に配置するための指定 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 乗算グラデーション */
.lp-hero__grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: multiply;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(26, 21, 21, 0.99) 80%
  );
}

/* コンテンツの内側：ここを flex-direction: column にして中央揃え */
.lp-hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center; /* 左右中央 */
  justify-content: center; /* 上下中央 */
  text-align: center;
  width: 100%;
  height: 100%;
}

/* ロゴ */
.hero_logo {
  width: 140px;
  height: auto;
  margin: 0 auto 48px;
}
/* ナビゲーション：縦並び・中央揃え */
.lp-hero__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.lp-hero__nav a {
  font-size: var(--small);
  color: var(--text);
  text-decoration: none;
}

/* 予約ボタン：幅を固定して中央配置 */
.lp-hero__reserveBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: #504634;
  width: 320px; /* モックに合わせた幅 */
  height: 80px;
  border-radius: 40px;
  text-decoration: none;
  
}

.lp-hero__reserveBtn:hover {
  background:#FFBE4B;
}

.lp-hero__reserveBtn span {
  font-size: var(--head_common);
  font-weight: 700;
  line-height: 1.2;
}

/* SNS：横並び */
.lp-hero__sns {
  margin-top:40px;
  display: flex;
  gap: 24px;
}
.lp-hero__sns img {
  width: 48px;
  height: auto;
  filter: invert(93%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}

/* Scroll hint */
.lp-scrollHint{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -96px;
  width: 2px;
  height: 200px;
  z-index: 9999;
  pointer-events: none;
}

.lp-scrollHint__runner{
  position: absolute;
  left: 0;
  top: 0%;
  width: 2px;
  height: 36%;
  border-radius: 999px;
  background: var(--bg_strong);
  z-index: 9999;
  animation: lpScrollDown 1.35s cubic-bezier(.2,.7,.2,1) infinite;
  will-change: transform, opacity;
}

@keyframes lpScrollDown{
  0%   { transform: translateY(0);     opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(177%); opacity: 0; }
}

  .lp-spReserve{
    display: none;
  }

.lp-pcReserve{
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  color: #504634 !important;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  z-index: 9998;
}

.lp-pcReserve:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.lp-pcReserve__ico{
  font-size: 28px;
  line-height: 1;
}

.lp-pcReserve__txt{
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* =====================
   LP About
===================== */

.lp-about {
  position: relative;
  background-color: var(--bg);
  padding: 160px 0;
  isolation: isolate; /* これが重要 */
  overflow: hidden;
  
}

.lp-about::before, #info:before,.lp-footer2::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/bg_texture_tile.webp');
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.05;   /* ← ここで強さ調整 */
  pointer-events: none;
  z-index: 0;
}

.lp-about__inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 一番上の見出し：80px / 56px */
.lp-about__head {
  text-align: center;
  margin-bottom: 80px;
}

.lp-about__jp {
  font-size: var(--head_jp); /* 56px */
  font-weight: 600;
  letter-spacing: var(--ls-pc-display);
  line-height: var(--lh-pc-base);
  color: var(--text);
}

/* 左右交互の3段構成 */
.lp-about__row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin:0 auto 80px;
  max-width: 1000px;
  position: relative;
}

.lp-about__row:last-child {
  margin-bottom: 0;
}

/* 2段目の反転設定 */
.lp-about__row.is-reverse {
  flex-direction: row-reverse;
}



.lp-about__figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  max-width: 400px;
}

.lp-about__content,.lp-about__figure {
  flex: 1;
}

.lp-about__text {
  font-size: var(--normal); /* 18px */
  line-height: var(--lh-pc-loose);
  max-width: 400px;
}

/* 湯気の共通設定 */
.lp-about__steam {
  position: absolute;
  width: 480px; /* モックに合わせた大きめのサイズ */
  height:635px;
  background: url('../img/steam.webp') no-repeat center/contain;
  opacity: 0;
  pointer-events: none;
  z-index: -1; /* コンテンツの背面に配置 */
  filter: blur(2px);
}

/* 1つめ：上部中央〜右 */
.lp-about__steam.is-01 {
  bottom:-20%;
  left: -10%;
  animation: steam-rise 5s infinite;
}

/* 2つめ：中央左寄り */
.lp-about__steam.is-02 {
  bottom: -30%;
  right: -10%;
  animation: steam-rise 6s 1s infinite; /* 2秒遅らせて開始 */
}

/* 3つめ：下部右寄り */
.lp-about__steam.is-03 {
  bottom: -35%;
  left: -5%;
  animation: steam-rise 7s 2s infinite; /* 5秒遅らせて開始 */
}

/* 立ち昇りアニメーション */
@keyframes steam-rise {
  0% {
    transform: translateY(20%) scale(0.9) rotate(-5deg);
    opacity: 0;
  }
  20% {
    opacity: 0.1;
  }
  60% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-5%) scale(1.2) rotate(5deg);
    opacity: 0;
  }
}

/* =====================
   LP News
===================== */

.lp-news {
  position: relative;
  background-color: var(--bg_strong);
  padding: 160px 0;
  isolation: isolate; /* これが重要 */
}

.lp-news::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/bg_texture_tile.webp');
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.05;   /* ← ここで強さ調整 */
  pointer-events: none;
  z-index: 0;
}

.lp-news__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* リストレイアウト */
.lp-news__list {
  display: flex;
  justify-content: center; /* 中央寄せ */
  gap: 40px;
  list-style: none;
  padding: 0;
  max-width: 1000px; /* 全体の幅を絞って余白を詰める */
  margin: 0 auto;
}

.lp-news__item {

  flex: 0 0 auto;
}

.lp-news__item--empty{
  width: 100%;
  text-align: center;
}

.lp-news__link {
  text-decoration: none;
  display: block;
}

.lp-news__link:hover {
  opacity: 0.7;
}

.lp-news__figure {
  margin-bottom: 16px; /* 画像下の余白をモックに合わせる */
  width: 100%;
}

.lp-news__figure img {
  width: 100%; /* 親要素の幅いっぱいに */
  aspect-ratio: 1 / 1; 
  object-fit: cover;
  max-width: 320px;
  display: block;
}

.lp-news__body {
  color: var(--text);
}

.lp-news__date {
  display: block;
  font-size:var(--small);
  color: var(--accent);
}

.lp-news__title {
  line-height: var(--lh-pc-base);
}

/* Tablet: はみ出し防止 */
@media (max-width: 1200px) and (min-width: 901px){
  .lp-news__inner{
    padding: 0 32px;
  }

  .lp-news__list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    max-width: 860px;
  }

  .lp-news__item{
    width: 100%;
  }

  .lp-news__figure img{
    max-width: none;
  }
}

/* =========================================================
   MENU SECTION
========================================================= */

.lp-menu{
  position: relative;
  padding: 160px 0;
  background: #fbfaf6;
  color: #504634;
}

.lp-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/bg_texture_tile.webp');
  background-repeat: repeat;
  mix-blend-mode: multiply;
  opacity: 0.07;   /* ← ここで強さ調整 */
  pointer-events: none;
  z-index: 0;
}

/* 中央コンテンツ幅 */
.lp-menu__inner{
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px){
  .lp-menu__inner{
    padding: 0 32px;
  }
}

/* 見出し */
.lp-menu__head{
  margin-bottom: 60px;
}

.lp-secTitle{
  margin: 0;
  text-align: center;
}

.lp-news__inner .lp-secTitle{
  margin-bottom:80px;
}

.lp-secTitle__en{
  display:block;
  font-size: var(--head_en); /* 80px */
  line-height:1;
  color:var(--accent);
  font-weight:600;
}

.lp-secTitle__jp{
  display:block;
  margin-top:8px;
  font-size:var(--small);
}

.lp-menu__lead{
  margin-top:40px;
  font-size:var(--normal);
  text-align: center;
}


/* =========================================================
   人気メニュー（画面いっぱいスライド）
========================================================= */

.lp-menuPop{

  /* 画面いっぱいに広げる */
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  margin-top:80px;
  position:relative;
}


/* 画像 */

.lp-menuPop__img{
  margin:0;
}

.lp-menuPop__img img{
  width:100%;
  height:300px;
  object-fit:cover;
  display:block;
}


/* メニュー名 */

.lp-menuPop__name{
  margin:16px 0 8px;
  font-size:var(--normal);
  font-weight:600;
}


/* 説明文 */

.lp-menuPop__desc{
  margin:0;
  font-size:var(--small);
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* 自動スライドはスクロールさせない（ここが本丸） */
.lp-menuPop__viewport{
  overflow: hidden;
}

/* trackは横並び。scroll系は一切いらない */
.lp-menuPop__track{
  display: flex;
  gap: 46px;

  /* 以前の overflow-x:auto / scroll-snap は全部不要 */
  overflow: visible;
  scroll-snap-type: none;

  will-change: transform;
}

/* カード幅固定（これが「画面広いほど見える数が増える」） */
.lp-menuPop__card{
  flex: 0 0 360px;
}



/* =========================================================
   フードメニュー（2カラムリスト）
========================================================= */

.lp-foodMenu{
  margin-top:120px;
}

.lp-foodMenu__title{
  margin-bottom: 32px;
  padding-bottom:32px;
  border-bottom:1px solid #ccc;
}

.lp-foodMenu__ttl{
  margin:0;
  font-size:24px;
  display: inline-block;
}

.lp-foodMenu__note{
  font-size:14px;
  display: inline-block;
}


/* 2カラム */

.lp-foodMenu__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
}


/* カテゴリ */

.lp-foodMenu__group + .lp-foodMenu__group{
  margin-top:40px;
}

.lp-foodMenu__cat{
  margin:0 0 8px;
  font-size:var(--head_common);
  font-weight:600;
}

/* 黄色マーカー */

.lp-foodMenu__cat span{
  display:inline-block;
  padding:0;
  background: linear-gradient(
  transparent 60%,
  var(--accent) 60%,
  var(--accent) 78%,
  transparent 78%
);
}

.lp-foodMenu__cat .small{
  font-size:14px;
  font-weight: 500;
}


/* メニューリスト */

.lp-foodMenu__list{
  list-style:none;
  margin:0;
  padding:0;
}

.lp-foodMenu__item{
  display:flex;
  justify-content:space-between;
  gap:8px;
  line-height: var(--lh-pc-base);
  padding:16px 0;
  border-bottom:1px dashed #ccc;
  font-size:var(--normal);
  flex-direction: column;
}

.lp-foodMenu__itemName{
  flex:1;
}

.lp-foodMenu__price{
  white-space:nowrap;
  display: block;
  font-size:var(--small);
}
.lp-foodMenu__list .lp-foodMenu__item:last-child{
  border-bottom: 0;
}

/* フード → ドリンクのつなぎ画像 */
.lp-menuBreak{
  margin: 80px auto 0;
  width: 100%;
}

.lp-menuBreak img{
  width: 100%;
  height: 320px;          /* ★スクショっぽい高さ */
  object-fit: cover;
  display: block;
}





/* =====================
   Online shop
===================== */

.lp-shop{
  position: relative;
  background: var(--bg_strong);
  padding: 160px 0;
  isolation: isolate;
}

.lp-shop::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url('../img/bg_texture_tile.webp');
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.05;
  pointer-events:none;
  z-index:0;
}

.lp-shop__inner{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.lp-shop__head{
  margin-bottom: 56px;
}

/* 画像（横長帯） */
.lp-shop__img{
  margin: 0 auto 40px;
  width:100%;
}

.lp-shop__img img{
  width: 100%;
  height: 260px;          /* スクショの帯っぽい高さ */
  object-fit: cover;
  display: block;
}

/* 文章 */
.lp-shop__body{
  margin: 0 auto;
}

.lp-shop__text{
  font-size: var(--small);
  line-height: var(--lh-pc-loose);
  letter-spacing: var(--ls-pc-wide);
  color: var(--text);
}

.lp-shop__text + .lp-shop__text{
  margin-top: 18px;
}

/* CTA（既存ボタン流用） */
.lp-shop__cta{
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

/* lp-hero__reserveBtn をこのセクション内だけ最適化 */
.lp-shop .lp-hero__reserveBtn{
  width: 360px;
  height: 72px;
  border-radius: 999px;
}

.lp-shop .lp-hero__reserveBtn span{
  font-size: var(--head_common);
  font-weight: 600;
}

/* SP */
@media (max-width:900px){


  .lp-shop__inner{
    padding: 0;
  }


  .lp-shop__img img{
    width: 100%;
    object-fit: cover;
  }

  .lp-shop .lp-hero__reserveBtn{
    width: min(320px, 90vw);
    height: 68px;
  }
}

/* =====================
   INFO
===================== */


#info{
  position: relative;
  padding: 160px 0;
  isolation: isolate;
}
.lp-info2__inner{
  margin: 0 auto;
}

.lp-info2__head{
  position: relative;
  display: block;
  margin: 0 0 64px;
}

.lp-info2__table{
  width: min(820px, 100%);
  margin: 0 auto;
}

.lp-info2__row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding: 32px 0;
  border-bottom: 1px dashed #978888;
  align-items: center;
}

.lp-info2__th{
  font-size: 18px;
  letter-spacing: var(--ls-pc-em-base);
}

.lp-info2__td{
  font-size: 18px;
  letter-spacing: var(--ls-pc-em-base);
}

.lp-info2__tel{
  color: inherit;
}

.lp-info2__sns{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-top: 46px;
}

.lp-info2__snsLink{
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.lp-info2__snsIcon{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  filter: brightness(0) invert(1);
}

.lp-info2__snsText{
  letter-spacing: var(--ls-pc-em-base);
  color: #fff;
}

/* =====================
   MAP / FOOTER
===================== */

.lp-map2 iframe{
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.lp-footer2{
  padding: 80px 0;
  position: relative;
}

.lp-footer2__inner{
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.footer_logo{ margin: auto; width: 80px;}

.lp-footer2__copy{
  display: block;
  margin-top: 44px;
  font-size: 14px;
  letter-spacing: var(--ls-pc-em-base);
}

@media (max-width: 900px){
  .lp-pcReserve{
    display: none;
  }

  :root{
    --lh-sp-tight: 1.5;
    --lh-sp-base: 1.8;
    --lh-sp-loose: 2;
    --ls-sp-base: 0.05em;
    --ls-sp-wide: 1.5px;
    --ls-sp-display: 4px;
  }

  br.sponly{display:contents;}

 /* =====================
   HERO (SP) – current HTML対応版
===================== */


  .lp-hero{
    height: calc(100svh - 72px);
    min-height: 0;
  }

  .lp-hero__inner{
    height: 100%;
    transform: none;
  }

  /* ロゴ（縦に見えるSVGならそのままOK。幅だけ合わせる） */
  .hero_logo{
    width: 110px;
    margin: 0 auto 40px;
  }

  /* ナビ（縦並び・中央） */
  .lp-hero__nav{
    gap: 20px;
    margin-bottom: 0;
  }
  .lp-hero__nav a{
    font-size:var(--normal);
  }

  /* KV内の「オンライン予約ボタン」「SNS」はSPでは出さない（下の固定バーに統一） */
  .lp-hero__cta,
  .lp-hero__sns{
    display: none;
  }

  /* =====================
     SP固定予約バー
  ===================== */
  .lp-spReserve{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    height: calc(72px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    background: var(--accent);
    z-index: 9999;
    padding-bottom: 0;
    box-sizing: border-box;
  }

  .lp-spReserve__btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 8px;
    color: #504634;
    font-weight: 700;
    font-size: 18px;
  }

  .lp-spReserve__btn + .lp-spReserve__btn{
    border-left: 1px solid rgba(80,70,52,.35);
  }

  .lp-spReserve__ico{
    font-size: 20px;
    line-height: 1;
  }

  /* =====================
     INFO: table 1 col
  ===================== */

.lp-info2__inner {
    width: 100%;
  }

  .lp-info2__head {
    margin-bottom: 40px;
  }

  /* テーブル（リスト）部分：縦並びに変更 */
  .lp-info2__table {
    width: 100%;
    border-top: none; /* デザインにより上線が必要なければ削除 */
  }

  .lp-info2__row {
    display: flex;
    flex-direction: column; /* 上下に積む */
        gap: 16px;
        padding: 24px 0;
    align-items: center;
    text-align: center;
  }

  /* 項目名（店舗所在地など） */
  .lp-info2__th {
    font-size:var(--small);
    text-align: center;
  }

  /* 値（住所など） */
  .lp-info2__td {
    font-size:var(--small);
    line-height: var(--lh-sp-base);
    letter-spacing: var(--ls-sp-base);
    text-align: center;
  }

  /* 住所の郵便番号などをブロック表示で改行させる */
  .lp-info2__td div {
    display: block;
  }

  /* 電話番号 */
  .lp-info2__tel {
    font-size: 18px; /* 番号は少し大きく */
    letter-spacing: var(--ls-sp-base);
    color: var(--text);
    text-decoration: none;
  }

  /* INFO内のSNSアイコン（もし表示する場合） */
  .lp-info2__sns {
    margin-top: 40px;
    gap: 20px;
  }
  .lp-info2__snsText{line-height:var(--lh-sp-tight)}

  /* =====================
     MAP: 全幅表示
  ===================== */

  .lp-map2 {
    width: 100%;
    line-height: 0;   /* iframeの下の隙間を消す */
  }

  .lp-map2 iframe {
    height: 300px; /* スマホで見やすい高さに調整 */
    width: 100%;
  }

  /* =====================
     FOOTER: シンプルな配置
  ===================== */

  .lp-footer2 {
    padding: 80px 0 calc(72px + env(safe-area-inset-bottom, 0px) + 16px);
    text-align: center;
    background: var(--bg); /* 背景色を統一 */
  }

  .lp-footer2__inner {
    width: 100%;
    padding: 0 var(--side-padding);
  }

  .footer_logo {
    width: 80px; /* ロゴサイズ調整 */
    margin: 0 auto 40px;
  }

  .lp-footer2__copy {
    display: block;
    font-size: 15px;
    letter-spacing: var(--ls-sp-base);
    opacity: 0.8;
    font-family: "EB Garamond", serif; /* 著作権表示を欧文フォントに */
  }
}

/* =====================
   News Single
===================== */

.news-single-body{
  background: #645651 !important;
  color: #4d4039 !important;
}

.news-single{
  min-height: 100vh;
  position: relative;
  background: #645651;
  color: #4d4039;
}

.news-single::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/bg_texture_tile.webp');
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.05;
  pointer-events: none;
}

.news-single__header{
  position: relative;
  z-index: 1;
  padding: 48px 0;
}

.news-single__headerInner{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-single__logo img,
.news-single__footerLogo img{
  width: 100px;
  filter: none;
}

.news-single__article{
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 40px;
}

.news-single__hero{
  position: relative;
  overflow: hidden;
  margin: 0 auto 120px;
  width: 100%;
  box-shadow: none;
}

.news-single__heroImg{
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.news-single__heroOverlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.news-single__heroTitle{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #fff;
  text-align: center;
  z-index: 1;
}

.news-single__content{
  width:100%;
  max-width: 1080px;
  padding: 0 24px;
  margin: 0 auto;
  color:#fff;
}

.news-single__card{
  margin-top: 0;
  padding: 80px;
  background: #554844;
}

.news-single__date{
  display: block;
  margin: 0 0 40px;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding-bottom: 24px;
  border-bottom:1px dashed #ccc;
}

.news-single__title{
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 40px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.news-single__body{
  margin-top: 24px;
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.04em;
}

.news-single__body > * + *{
  margin-top: 1.6em;
}

.news-single__body img{
  border-radius: 0;
  margin: 40px auto;
}

.news-single__body a{
  color: #9a6f37 !important;
  text-decoration: underline !important;
}

.news-single__pager{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 76px;
}

.news-single__pagerItem{
  min-height: 56px;
}

.news-single__pagerItem--next{
  text-align: right;
}

.news-single__pager a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 40px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--accent);
  color: #5b4d43 !important;
  box-shadow: none;
}

.news-single__pagerItem:empty::before{
  content: "";
  display: inline-flex;
  width: 180px;
  height: 40px;
}

@media (max-width: 900px){


  .news-single__hero{
    margin-bottom: 64px;
  }

  .news-single__heroImg{
    height: 220px;
  }

  .news-single__heroTitle{
    padding: 20px;
    font-size: 28px;
    line-height: 1.7;
  }

  .news-single__title{
    margin-bottom: 14px;
    font-size: 28px;
  }

  .news-single__card{
    padding: 28px 24px 32px;
  }

  .news-single__body{
    margin-top: 28px;
    font-size: 15px;
    line-height: 2.2;
  }

  .news-single__pager{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-bottom: 48px;
  }

  .news-single__pagerItem--next{
    text-align: center;
  }

  .news-single__pager a,
  .news-single__pagerItem:empty::before{
    min-width: 0;
    width: 100%;
  }

  .news-single__card{
    padding: 28px 24px 32px;
  }
}

/* =====================
   ABOUT (SP)
===================== */
@media (max-width: 900px){

  .lp-about, .lp-menu,.lp-shop,#info{
    padding: 120px 24px;
    overflow: hidden;
  }

  .lp-menu__inner{
    padding: 0;
  }

  .lp-about__inner{
    padding: 0;
  }

  .lp-about__head{
    margin-bottom: 48px;
  }

  .lp-about__jp{
            font-size: 43px;
        letter-spacing: var(--ls-sp-display);
        line-height: var(--lh-sp-tight);
  }

  /* 左右交互の3段 → SPは縦積み */
  .lp-about__row{
    flex-direction: column;
    gap: 40px;
    margin: 0 auto 64px;
    max-width: 100%;
  }
  .lp-about__row.is-reverse{
    flex-direction: column;
  }

  .lp-about__content,
  .lp-about__figure{
    width: 100%;
  }

  .lp-about__figure img{
    max-width: 100%;
    aspect-ratio: 4 / 3; /* 画像が安定する */
    object-fit: cover;
  }

  .lp-about__text{
    max-width: none;
    line-height: var(--lh-sp-loose);
    letter-spacing: var(--ls-sp-wide);
  }

  /* 湯気（でかすぎてレイアウト崩れ/見切れの原因になりやすいのでSP縮小） */
  .lp-about__steam{
    width: 320px;
    height: 420px;
    opacity: 0.18; /* 見え方弱め（好みでOK） */
  }
  .lp-about__steam.is-01{
    left: -15%;
    top: -50%;
  }
  .lp-about__steam.is-02{
    right: -35%;
    bottom: -15%;
  }
  .lp-about__steam.is-03{
    left: -30%;
    bottom: -20%;
  }


/* =========================================================
   SP
========================================================= */





  .lp-menuPop{
    margin-top:50px;
  }

  .lp-menuPop__track{
    gap:22px;
    letter-spacing: var(--ls-sp-wide);
  }

  .lp-menuPop__card{
    flex:0 0 280px;
  }

  .lp-menuPop__img img{
    height:210px;
    width: 280px;
  }

  .lp-menuPop__name,
  .lp-menuPop__desc{
    line-height: var(--lh-sp-base);
  }

  .lp-foodMenu{
    margin-top:80px;
    letter-spacing: var(--ls-sp-wide);
  }

  .lp-foodMenu__grid{
    grid-template-columns:1fr;
    gap:0px;
  }

  .lp-menuBreak{
    display: none;
  }

  /* SP: 長いメニューをカテゴリごとに開閉 */
  .lp-menu.is-spAccordion .lp-foodMenu__group{
    margin-top: 0;
    border-bottom: 1px solid #d8d1cb;
  }

  .lp-menu.is-spAccordion .lp-foodMenu__cat{
    margin: 0;
    padding: 16px 0;
    position: relative;
    cursor: pointer;
  }

  .lp-menu.is-spAccordion .lp-foodMenu__cat::after{
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--bg);
    border-bottom: 2px solid var(--bg);
    transform: translateY(-62%) rotate(45deg);
    transition: transform .2s ease;
  }

  .lp-menu.is-spAccordion .lp-foodMenu__group.is-open .lp-foodMenu__cat::after{
    transform: translateY(-40%) rotate(-135deg);
  }

  .lp-menu.is-spAccordion .lp-foodMenu__list{
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    padding-bottom: 14px;
    transition:
      max-height .45s cubic-bezier(.2,.7,.2,1),
      opacity .28s ease,
      transform .28s ease;
  }

  .lp-menu.is-spAccordion .lp-foodMenu__group.is-open .lp-foodMenu__list{
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
  }

  .lp-menu.is-spAccordion .lp-foodMenu__item{
    padding: 12px 0;
  }
 

}

/* =====================
   NEWS (SP) 2col grid
===================== */
@media (max-width: 900px){

  .lp-news{
    padding: 120px 24px; /* 他セクションのSPリズムに合わせる */
  }

  .lp-news__inner{
    padding: 0;  /* 他と揃える */
  }

/* 横並びflex → 2列グリッドにする */
.lp-news__list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;     /* 縦は広め/横は詰める（はみ出し防止） */
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .lp-news__item{
    width: 100%;
  }

  .lp-news__inner .lp-secTitle{
    margin-bottom:40px;
  }
  .lp-news__date{
    margin-bottom: 6px;
  }

  .lp-shop__cta {
      margin-top: 40px;
  }

}
