/* ═══════════════════════════════════════════
   琥珀楼 — pc.css
   768px 以上のみ適用
═══════════════════════════════════════════ */
@media (min-width: 768px) {

/* body min-width 撤去（2026-06-23）
   旧: body { min-width: 1100px; }
   理由: ウィンドウ幅 935〜1279px で右端見切れ・横スクロール発生のため
   代わりに 1280px 未満は下部の中間 BP ブロックで個別調整 */

/* SP専用要素を非表示 */
.sp-only { display: none !important; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease),
              background 0.6s var(--ease);
}
.site-header.scrolled { background: rgba(14,12,9,0.82); }

.header-logo a {
  font-family: var(--font-serif);
  font-size: 1.0rem; font-weight: 400; letter-spacing: 0.35em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s var(--ease);
}
.header-logo a:hover { color: var(--amber); }

.header-nav { display: flex; align-items: center; }
.header-nav a {
  font-family: var(--font-serif);
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  padding: 0 28px;
  border-left: 1px solid rgba(255,255,255,0.2);
  transition: color 0.3s var(--ease);
}
.header-nav a:last-child { border-right: 1px solid rgba(255,255,255,0.2); }
.header-nav a:hover,
.header-nav a.active { color: var(--amber); }

/* ── BOOK NOW ── */
.book-now-fixed {
  position: fixed; right: 0; bottom: 0; z-index: 100;
  width: 44px; height: 200px;
  background: var(--amber); color: var(--black);
  writing-mode: vertical-rl;
  font-family: var(--font-serif); font-size: 15px; font-weight: 600; letter-spacing: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease);
}
.book-now-fixed:hover { background: var(--amber-light); }

/* ── MV ── */
#mv {
  position: relative; width: 100%; height: 100vh; min-height: 700px;
  overflow: hidden;
}
.mv-photo { position: absolute; inset: 0; overflow: hidden; }
.mv-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.0);
  transition: transform 8s linear; filter: brightness(0.65);
}
.mv-photo img.mv-kenburns {
  transform: scale(1.07); filter: brightness(1.0);
  transition: transform 8s linear, filter 2s ease-out;
}
.mv-photo::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(26,24,20,0.18); z-index: 1;
}
.mv-photo::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to bottom, transparent, var(--black)); z-index: 2;
}
.mv-content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 3; }
.mv-content .inner {
  display: flex; flex-direction: column; align-items: flex-start;
  margin-left: 240px; margin-right: auto; max-width: none; width: auto;
}
.mv-logo { width: 200px; height: auto; object-fit: contain; margin-bottom: 80px; }
.mv-catch-ja {
  font-family: var(--font-mincho); font-size: 28px; font-weight: 500;
  line-height: 1.5; letter-spacing: 8px; color: var(--white); white-space: nowrap;
}
.mv-catch-en {
  font-family: var(--font-serif); font-size: 15px; font-weight: 400;
  line-height: 24px; letter-spacing: 4px; color: rgba(212,184,122,0.7);
  margin-top: 20px; white-space: nowrap;
}
.mv-scroll {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; transition: opacity 0.8s var(--ease-out); pointer-events: none;
}
.mv-scroll.mv-enter { opacity: 1; }
.mv-scroll.mv-scroll--hidden { opacity: 0; pointer-events: none; }
.mv-scroll-label {
  font-family: var(--font-serif); font-size: 10px; font-weight: 400;
  letter-spacing: 0.35em; color: rgba(255,255,255,0.45);
}
.mv-scroll-bar {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.15); position: relative; overflow: hidden;
}
.mv-scroll-bar::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--amber) 50%, transparent 100%);
  animation: scrollDrop 1.8s cubic-bezier(0.4,0,0.6,1) infinite;
}

/* ── KAZARI 位置 ── */
/* position:relative は common.css に集約済み */

#intro .kazari--intro-l {
  width: 200px; height: 200px; bottom: 100px; left: 0;
  transform: translateX(-50%) rotate(45deg); opacity: 0.38;
}
#place .kazari--place-r {
  width: 200px; height: 200px; top: -10px; right: 0;
  transform: translateX(50%) rotate(45deg); opacity: 0.32;
}
#place .kazari--place-l {
  width: 250px; height: 250px; bottom: 20px; left: 0;
  transform: translateX(-50%) rotate(45deg); opacity: 0.22;
}
#menu .kazari--menu-tl {
  width: 320px; height: 320px; top: -140px; right: 40px;
  transform: rotate(-45deg); opacity: 0.13;
}
#menu .kazari--menu-br {
  width: 320px; height: 320px; bottom: -100px; right: 0;
  transform: translateX(50%) rotate(-45deg); opacity: 0.13;
}
#menu .kazari--menu-list-l {
  width: 260px; height: 260px; top: 560px; left: 0;
  transform: translateX(-38%) rotate(45deg); opacity: 0.28;
}
#footer .kazari--footer-l {
  width: 220px; height: 220px; top: 50%; left: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg); opacity: 0.18;
}
#footer .kazari--footer-r {
  width: 220px; height: 220px; top: 50%; right: 0;
  transform: translateX(50%) translateY(-50%) rotate(45deg); opacity: 0.18;
}

/* ── INTRO ── */
#intro {
  background: var(--black); padding-top: 60px; padding-bottom: 160px; overflow: hidden;
}
.intro-stage {
  position: relative; width: 1100px; height: 500px; margin: 0 auto;
}
.intro-tate-block {
  position: absolute; top: 8px; left: 140px;
  display: flex; flex-direction: row-reverse; gap: 0;
}
.intro-tate-col {
  writing-mode: vertical-rl; font-family: var(--font-sans);
  font-size: 16px; font-weight: 200;
  color: var(--white); line-height: 1.9; letter-spacing: 0.2em;
}
.intro-photo-a { position: absolute; top: 30px;  left: 360px; width: 340px; height: 240px; overflow: hidden; }
.intro-photo-b { position: absolute; top: -10px;  left: 740px; width: 220px; height: 190px; overflow: hidden; }
.intro-photo-c { position: absolute; top: 310px; left: 660px; width: 220px; height: 190px; overflow: hidden; }
.intro-photo-a img, .intro-photo-b img, .intro-photo-c img {
  width: 100%; height: 100%; object-fit: cover;
}
/* トーン統一の薄膜（アンバー） */
.intro-photo-a::after, .intro-photo-b::after, .intro-photo-c::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: rgba(168,137,58,0.2);
}
.intro-en-block { position: absolute; top: 400px; left: 160px; width: 420px; }
.intro-en-block p {
  font-family: var(--font-serif); font-size: 15px; font-weight: 400;
  line-height: 20px; letter-spacing: 2.5px; color: var(--brown); opacity: 0.8;
}

/* ── PLACE ── */
#place {
  background: var(--black); padding-top: 160px; padding-bottom: 160px; overflow: hidden;
}
.place-stage {
  position: relative; width: 1100px; height: 550px; margin: 0 auto;
}
.place-photo-a { position: absolute; top: -10px; left: 70px;  width: 320px; height: 220px; overflow: hidden; }
.place-photo-b { position: absolute; top: -40px; left: 430px; width: 240px; height: 190px; overflow: hidden; }
.place-photo-c { position: absolute; top: 330px; left: 120px; width: 220px; height: 190px; overflow: hidden; }
.place-photo-d { position: absolute; top: 240px; left: 380px; width: 350px; height: 240px; overflow: hidden; }
.place-photo-a img, .place-photo-b img, .place-photo-c img, .place-photo-d img {
  width: 100%; height: 100%; object-fit: cover;
}
/* トーン統一の薄膜（アンバー） */
.place-photo-a::after, .place-photo-b::after, .place-photo-c::after, .place-photo-d::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: rgba(168,137,58,0.2);
}
.place-tate-block {
  position: absolute; top: 20px; left: 840px;
  display: flex; flex-direction: row-reverse; gap: 0;
}
.place-tate-col {
  writing-mode: vertical-rl; font-family: var(--font-sans);
  font-size: 16px; font-weight: 200;
  color: var(--white); line-height: 1.9; letter-spacing: 0.2em;
}
.place-en-block { position: absolute; top: 530px; left: 640px; width: 460px; }
.place-en-block p {
  font-family: var(--font-serif); font-size: 15px; font-weight: 400;
  line-height: 20px; letter-spacing: 2.5px; color: var(--brown); opacity: 0.75;
}

/* ── MENU ── */
#menu { background: #fff; color: var(--black); padding: var(--section-py) 0; overflow: hidden; }
.menu-header {
  text-align: center; margin-bottom: 40px;
  padding-right: 44px;  /* BOOK NOWボタン(44px)分を相殺し、視認センターに寄せる */
}
.menu-title-ja {
  font-family: 'Noto Serif JP', var(--font-mincho); font-size: 32px; font-weight: 400;
  line-height: 40px; letter-spacing: 0.15em; color: var(--black); margin-bottom: 20px;
}
.menu-title-en {
  font-family: var(--font-mincho); font-size: 13px; font-weight: 800;
  letter-spacing: 3.9px; color: var(--brown); margin-bottom: 12px;
}
.menu-title-line { width: 1px; height: 40px; background: var(--amber); margin: 0 auto 20px; }
.menu-sub-copy {
  font-family: var(--font-serif); font-size: 16px; font-weight: 400;
  line-height: 1.9; letter-spacing: 3px; color: var(--brown);
}
.menu-sub-en {
  font-family: var(--font-serif); font-size: 15px; font-weight: 400;
  line-height: 1.9; letter-spacing: 2px; color: var(--amber);
  opacity: 0.75; margin-top: 35px;
}
.menu-hero {
  position: relative; width: 100%; height: 300px;
  overflow: hidden; margin-bottom: 120px; background: var(--black);
}
.menu-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; }
.menu-hero-slide.is-active { opacity: 1; }
.menu-hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); transition: transform 7s linear;
}
.menu-hero-slide.is-active img { transform: scale(1.0); }
.menu-hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(14,12,9,0.15); pointer-events: none;
}
.menu-list { display: flex; flex-direction: column;}

/* ── 現行：2カラム均等 ── */
.menu-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* ── カード内スライドショー ── */
.menu-item-slider {
  position: relative;
  overflow: hidden;
}
.mi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.mi-slide.is-active { opacity: 1; }
.mi-slide img { width: 100%; height: 100%; object-fit: cover; }

.menu-item { display: flex; flex-direction: column; position: relative; }
.menu-item-img { overflow: hidden; aspect-ratio: 5/3.5; margin-bottom: 24px; border-radius: 5px; }
.menu-item-img img { transition: transform 0.6s var(--ease); }
.menu-item:hover .menu-item-img img { transform: scale(1.05); }
.menu-item-name {
  font-family: 'Noto Serif JP', var(--font-mincho); font-size: 16px; font-weight: 500;
  line-height: 34px; color: var(--black); margin-bottom: 12px;
  display: flex; align-items: center;
}
.menu-item-jade {
  font-family: var(--font-serif); font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; color: var(--amber); margin-bottom: 8px;
}
.menu-item-name-main { line-height: 1; }
.menu-item-name-ruby {
  font-size: 11px; letter-spacing: 2px; line-height: 1; margin-left: 8px;
}
.menu-item-desc {
  font-family: 'Noto Serif JP', var(--font-mincho); font-size: 13px; font-weight: 500;
  line-height: 26px; letter-spacing: 1.5px; color: var(--brown); margin-bottom: 12px; flex: 1;
}
.menu-item-price {
  font-family: 'Noto Serif JP', var(--font-mincho); font-size: 13px; font-weight: 400;
  letter-spacing: 2px; color: var(--black); margin-bottom: 20px;
}
.menu-item-price .small { font-size: 10px; font-weight: 300; letter-spacing: 1.5px; }
.menu-item-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 11px; font-weight: 700; letter-spacing: 5px;
  color: var(--white); background: var(--amber); border-radius: 2px; padding: 6px 20px;
  transition: background 0.3s var(--ease); align-self: flex-start;
}
.menu-item-btn:hover { background: var(--amber-dark); }
.menu-section-cta { text-align: center; margin-top: 80px; }
.menu-section-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Noto Serif JP', var(--font-mincho); font-size: 14px; font-weight: 600;
  letter-spacing: 0.35em; color: var(--white); background: var(--black);
  padding: 8px 40px; border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease); white-space: nowrap;
}
.menu-section-cta-btn::after { content: '›'; font-size: 18px; font-weight: 300; letter-spacing: 0; opacity: 0.7; }
.menu-section-cta-btn:hover { background: var(--amber); color: var(--black); }

/* ── INFORMATION ── */
#information {
  background: var(--ivory); color: var(--black);
  padding: var(--section-py) 0 80px; border-top: 1px solid rgba(122,112,96,0.15);
}
/* ── INFO ギャラリー（正方形6枚 3列×2段） ── */
.info-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  width: 75%;
  margin: 0 auto 85px;
  padding-right: 44px;  /* BOOK NOWボタン(44px)分を相殺し、視認センターに寄せる */
}
.info-gallery figure { overflow: hidden; position: relative; aspect-ratio: 5 / 3; }
.info-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
/* トーン統一の薄膜（アンバー） */
.info-gallery figure::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: rgba(168,137,58,0.15);
}
.info-gallery figure:hover img { transform: scale(1.04); }

.info-section-header {
  text-align: center; margin-bottom: 60px;
  padding-right: 44px;  /* BOOK NOWボタン(44px)分を相殺し、視認センターに寄せる */
}
.info-section-title-ja {
  font-family: 'Noto Serif JP', var(--font-mincho); font-size: 32px; font-weight: 400;
  line-height: 40px; letter-spacing: 0.1em; color: var(--black); margin-bottom: 20px;
}
.info-section-title-en {
  font-family: var(--font-mincho); font-size: 13px; font-weight: 800;
  letter-spacing: 3.9px; color: var(--brown); margin-bottom: 12px;
}
.info-title-line { width: 1px; height: 40px; background: var(--amber); margin: 0 auto; }
.info-inner { display: flex; gap: 80px; align-items: stretch; }
.info-left { flex: 0 0 180px; display: flex; flex-direction: column; align-items: center; }
.info-logo-box {
  width: 160px; height: 160px; background: #1A1814;
  display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
  margin-bottom: 32px;
}
.info-logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.info-right { flex: 1; }
.info-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.info-table th, .info-table td {
  padding: 13px 0; border-bottom: 1px solid rgba(122,112,96,0.2); vertical-align: top;
  font-family: 'Noto Serif JP', var(--font-mincho); font-size: 13px; font-weight: 500;
  line-height: 26px; letter-spacing: 1.3px; text-align: left;
}
.info-table tr:first-child th, .info-table tr:first-child td { padding-top: 0; }
.info-table th { width: 110px; color: var(--black); white-space: nowrap; }
.info-table td { color: var(--black); }
.info-table td a { color: var(--black); transition: color 0.2s; }
.info-table td a:hover { color: var(--amber-dark); }
.info-note { display: block; font-size: 11px; color: var(--brown); margin-top: 2px; letter-spacing: 1.1px; }
/* ── 地図埋め込み（横長・アンバートーン） ── */
.info-map {
  position: relative; width: 100%; aspect-ratio: 16 / 6;
  overflow: hidden; margin: 12px 0 8px; background: rgba(122,112,96,0.1);
}
.info-map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: sepia(0.4) saturate(0.85) hue-rotate(-8deg) brightness(0.97);
}
.info-map-link {
  font-family: 'Noto Serif JP', var(--font-mincho); font-size: 11px; letter-spacing: 1.1px;
  color: var(--brown); transition: color 0.2s;
}
.info-map-link:hover { color: var(--black); }
.info-notices { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.info-notices p {
  font-family: 'Noto Serif JP', var(--font-mincho); font-size: 11px; font-weight: 500;
  color: var(--black); line-height: 20px; letter-spacing: 1.1px;
}

/* ── FOOTER ── */
#footer { position: relative; background: var(--black); overflow: hidden; }
.footer-inner {
  position: relative; height: 140px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; z-index: 1;
}
.footer-shigira { width: 180px; display: flex; justify-content: center; }
.footer-shigira img { width: 100%; height: auto; object-fit: contain; opacity: 1; }


} /* end @media (min-width: 768px) */


/* ═══════════════════════════════════════════════════════════════
   中間ブレイクポイント（768px〜1279px）
   ── 元の固定 px 設計（1280px+ 想定）を、画面幅に合わせて再配置
   ── HV / INTRO / PLACE のみ調整
   ── MENU / INFO は body の min-width 撤去だけで自動解消
═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1279px) {

  /* ── HV ── 左マージンを画面幅に応じて可変化 */
  .mv-content .inner {
    margin-left: clamp(40px, 8vw, 240px);
  }
  /* ロゴ下マージンを中間幅では少し詰める（バランス調整） */
  .mv-logo { margin-bottom: 60px; }

  /* ── INTRO ── ステージを画面幅基準に */
  .intro-stage {
    width: 100%;
    max-width: 1100px;
    padding: 0 4%;
  }
  /* 写真と縦書きの left を % に変換（元 1100px 基準を換算） */
  .intro-tate-block { left: 12.7%; }                       /* 元 140/1100 */
  .intro-photo-a    { left: 32.7%; width: 30.9%; }         /* 元 360/1100, 340/1100 */
  .intro-photo-b    { left: 67.3%; width: 20%;   }         /* 元 740/1100, 220/1100 */
  .intro-photo-c    { left: 60%;   width: 20%;   }         /* 元 660/1100, 220/1100 */
  .intro-en-block   { left: 14.5%; width: 38.2%; }         /* 元 160/1100, 420/1100 */

  /* ── PLACE ── ステージを画面幅基準に */
  .place-stage {
    width: 100%;
    max-width: 1100px;
    padding: 0 4%;
  }
  /* 写真と縦書きの left を % に変換（元 1100px 基準を換算） */
  .place-photo-a    { left: 6.4%;  width: 29.1%; }         /* 元 70/1100, 320/1100 */
  .place-photo-b    { left: 39.1%; width: 20%;   }         /* 元 430/1100, 220/1100 */
  .place-photo-c    { left: 10.9%; width: 20%;   }         /* 元 120/1100, 220/1100 */
  .place-photo-d    { left: 34.5%; width: 33.6%; }         /* 元 380/1100, 370/1100 */
  .place-tate-block { left: 76.4%; }                       /* 元 840/1100（右端寄り縦書き） */
  .place-en-block   { left: 58.2%; right: 6%; width: auto; } /* BOOK NOW(44px)被り回避：右側に余白確保 */

} /* end @media (min-width: 768px) and (max-width: 1279px) */
