/* ベース */
* { box-sizing: border-box; }
:root{
  --card-bg:#fff; --card-ink:#141414; --muted:#666; --line:rgba(0,0,0,.08);
  --accent:#ff701e; --radius:14px; --shadow:0 8px 24px rgba(0,0,0,.08);
  --shadow-hover:0 12px 30px rgba(0,0,0,.12);
}

html { 
  scroll-behavior: smooth; 
}
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
}

body { 
  margin:0; 
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif; 
  background:#fff; 
  color:#111; 
}
ul,li{ 
  list-style:none; 
  margin:0; 
  padding:0; 
}
a{ 
  text-decoration:none; 
  color:inherit; 
}

/* ヘッダー */
header{
  position:sticky; 
  top:0; 
  width:100%; 
  height:80px; 
  z-index:100;
  background: rgba(255,255,180,.65);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-bottom:1px solid rgba(0,0,0,.08);
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}
.header-inner{
  max-width: 1200px;
   margin:0 auto; 
   height:80px;
  padding:0 40px; 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:24px;
}
.title{ 
  margin:0; 
  font-size:18px; 
  font-weight:800; 
}

.header-content{ 
  display:flex; 
  gap:30px; 
}
.header-content a{
  position:relative; 
  display:flex; 
  align-items:center; 
  height:80px; 
  padding:0 20px;
  font-weight:600;
}
.header-content a::after{
  content:""; 
  position:absolute;
  left:16px; 
  right:16px; 
  bottom:18px; 
  height:2px;
  background:var(--accent); 
  transform:scaleX(0); 
  transform-origin:center; 
  transition:transform .25s ease;
}
.header-content a:hover::after, .header-content a:focus-visible::after{ 
  transform:scaleX(1); 
}

#menu, #access{ 
  scroll-margin-top:100px; 
}

/* メイン */
.content{ 
  max-width:1200px; 
  margin:0 auto; 
  padding:32px 24px 80px;
 }

.menu-content{
  width: 100%;
  display: flex;
  justify-content: center;
}

.menu-content .content-title {      /* 「Menu」行 */
  margin: 16px 0 6px;              /* 上下の余白を小さく */
}

.submenu-content .content-title{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 8px 0 16px;              /* 上をさらに詰める・下は少し余白 */
}

.menu-content .content-title h2 {   /* 「Menu」：主見出し */
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;                  /* 真っ黒ではなく少し柔らかい黒 */
  letter-spacing: .02em;
  position: relative;
}

.submenu-content .content-title h3 {
  display: inline-block;         /* 下線を文字幅に合わせる */
  padding: 0 6px 6px;
  border-bottom: 3px solid var(--accent); /* 黒→アクセント色に */
  color: #222;                             /* 黒より少し柔らかい文字色 */
}

/* カードグリッド */
.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:20px;
  margin-bottom:32px;
}

/* カード */
.content-card{
  background:var(--card-bg); 
  border:1px solid var(--line); 
  border-radius:var(--radius);
  overflow:clip; 
  box-shadow:var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  content-visibility:auto; contain-intrinsic-size:400px;
}
.content-card:hover{ 
  transform:translateY(-2px); 
  box-shadow:var(--shadow-hover); 
  border-color:rgba(0,0,0,.12); 
}

.card-link{ 
  display:block; 
}
.card-thumb{ 
  aspect-ratio:16/9; 
  background:#f3f3f3;
  overflow:hidden; 
}
.card-thumb img{ 
  width:100%; 
  height:100%; 
  object-fit:cover; 
  display:block; 
}

.card-body{ 
  padding:14px 16px 18px; 
  color:var(--card-ink); 
}
.card-body.no-thumb{ 
  padding-top:16px; 
}

.card-meta{ 
  display:flex; 
  align-items:center; 
  gap:8px; 
  margin-bottom:8px; 
  min-height:24px; 
  color:var(--muted); 
  font-size:12px; 
}
.badges{ 
  display:flex; 
  align-items:center; 
  gap:6px; 
  margin-left:auto; 
}

.badge{
  font-size:11px; 
  font-weight:700; 
  line-height:1; 
  padding:6px 8px; 
  border-radius:999px;
  white-space:nowrap; 
  border:1px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.orenge{ 
  background:rgba(255,112,30,.12); 
  color:#ff701e; 
  border-color:rgba(255,112,30,.25);
}
.brown{ 
  background:rgba(120,70,30,.12); 
  color:#754c24; 
  border-color:rgba(120,70,30,.25); 
}
.green{ 
  background:rgba(60,179,113,.12); 
  color:#3cb371; 
  border-color:rgba(60,179,113,.25); 
}
.red{ 
  background:rgba(255,69,58,.12); 
  color:#ff453a; 
  border-color:rgba(255,69,58,.25); 
}
.gold{ 
  background:rgba(212,175,55,.15); 
  color:#b7950b; 
  border-color:rgba(212,175,55,.35); 
}
.badge.subtle{ 
  background:rgba(0,0,0,.04); 
  color:#333; 
  border-color:rgba(0,0,0,.08); 
}

.card-header{ 
  display:flex; 
  align-items:flex-start; 
  justify-content:space-between; 
  margin-bottom:16px; 
  gap:12px; 
}
.card-price{ 
  display:flex; 
  flex-direction:column; 
  align-items:flex-start; 
  text-align:left; 
  line-height:1.1; 
}
.price-current{ 
  font-size:24px; 
  font-weight:800; 
  color:#111; 
  font-variant-numeric:tabular-nums; 
  letter-spacing:.02em;
}
.price-current .currency{ 
  font-size:.9em; 
  margin-right:2px; 
}
.price-note{ 
  font-size:12px; 
  color:#555; 
  margin-top:4px; 
  line-height:1.3; 
}

.card-title{ 
  margin:6px 0 6px; 
  font-size:16px; 
  line-height:1.5; 
  letter-spacing:.02em; 
}
.card-desc{ 
  margin:0; 
  font-size:13px; 
  line-height:1.7; 
  color:var(--muted); 
}
.card-red{ 
  color:#ff453a; 
}

/* サイドメニュー（カテゴリ） */
.side-cats{
  display:grid; 
  grid-template-columns:repeat(3, minmax(0,1fr)); 
  gap:20px; 
  margin:32px 0;
}
.cat-card{
  background:var(--card-bg); 
  border:1px solid var(--line); 
  border-radius:var(--radius);
  box-shadow:var(--shadow); 
  overflow:clip; 
  transition: transform .18s ease, box-shadow .18s ease;
}
.cat-card:hover{ 
  transform:translateY(-2px); 
  box-shadow:var(--shadow-hover); 
}
.cat-head{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  padding:14px 16px; 
  border-bottom:1px solid var(--line); 
}
.cat-title{ 
  margin:0; 
  font-size:18px; 
  font-weight:800; 
  letter-spacing:.02em; 
}
.cat-badge{ 
  font-size:11px; 
  font-weight:700; 
  line-height:1; 
  padding:6px 8px; 
  border-radius:999px; 
  white-space:nowrap; 
  border:1px solid; 
}
.cat-body{ 
  padding:10px 12px; 
}
.menu-row{ 
  display:grid; 
  grid-template-columns:1fr auto; 
  align-items:end; 
  gap:12px; 
  padding:12px 10px; 
  font-size:14px; 
  border-bottom:1px dashed rgba(0,0,0,.08); 
}
.menu-row:last-child{ 
  border-bottom:none; 
}
.item-name{ 
  font-weight:600; 
}
.item-desc{ 
  margin:2px 0 0; 
  font-size:12px; 
  color:var(--muted); 
}
.item-price{ 
  font-weight:800; 
  font-size:18px; 
}
.note{ 
  margin:12px 0 0; 
  font-size:12px; 
  color:#444; 
}

/* シーズナル */
.seasonal-list{ 
  display:flex; 
  flex-direction:column; 
  gap:40px; 
  margin:60px 0; 
}
.seasonal-item{
  background:var(--card-bg); border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow); overflow:hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.seasonal-item:hover{ transform:translateY(-4px); box-shadow:var(--shadow-hover); border-color:rgba(0,0,0,.12); }
.seasonal-header{ background:rgba(255,112,30,.08); color:#ff701e; font-weight:800; font-size:20px; text-align:center; padding:14px 0; letter-spacing:.05em; border-bottom:1px solid rgba(0,0,0,.05); }
.seasonal-thumb{ width:100%; aspect-ratio:16/9; background:#f3f3f3; overflow:hidden; }
.seasonal-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.seasonal-body{ padding:16px 20px 22px; text-align:center; }
.seasonal-body p{ margin:0; font-size:14px; color:var(--muted); line-height:1.7; }

/* アクセス */
#access{ text-align:center; margin-top:60px; margin-bottom:40px; }
.access-grid{
  display:grid; grid-template-columns:1.1fr 1.4fr; gap:30px;
  max-width:1000px; margin:0 auto; padding:0 16px;
}
@media (max-width:920px){
  .access-grid{ grid-template-columns:1fr; max-width:95%; }
}
.access-card, .map-card{
  background:var(--card-bg); border:1px solid var(--line); border-radius:20px;
  box-shadow:var(--shadow); overflow:hidden;
  /* scale はみ出し対策のため削除 */
}
.access-card .ac-head{ padding:18px 20px; border-bottom:1px solid var(--line); }
.ac-title{ margin:0; font-size:20px; font-weight:800; letter-spacing:.02em; }
.access-card .ac-body{ padding:18px 20px 24px; display:grid; gap:14px; }
.ac-row{ display:grid; grid-template-columns:24px 1fr; align-items:start; gap:10px; font-size:14px; color:#222; }
.ac-label{ font-weight:700; color:#111; }
.ac-sub{ font-size:12px; color:var(--muted); margin-top:2px; }
.ac-actions{ display:flex; gap:10px; margin-top:6px; flex-wrap:wrap; }
.button{
  display:inline-flex; align-items:center; gap:8px; padding:10px 14px; border-radius:999px;
  font-weight:700; font-size:14px; border:1px solid rgba(0,0,0,.08);
  background:rgba(255,112,30,.08); color:#1a1a1a;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.button:hover{ transform:translateY(-1px); box-shadow:var(--shadow-hover); background:rgba(255,112,30,.12); }

.map-card .map-wrap{ position:relative; aspect-ratio:16/10; background:#f3f3f3; }
.map-card iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

/* フッター */
footer{
  width:100%; height:48px; display:flex; justify-content:center; align-items:center;
  background: rgba(255,255,180,.65);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-top: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 -4px 10px rgba(0,0,0,.05);
  font-weight:500;
}

/* レスポンシブ */
@media (max-width:480px){
  .header-inner{ padding:0 16px; }
  .header-content{ gap:10px; }
  .title{ font-size:16px; }

  .cards{ grid-template-columns:1fr; gap:16px; }
  .card-title{ font-size:15px; }
  .price-current{ font-size:20px; }

  .side-cats{ grid-template-columns:1fr; gap:16px; }

  .seasonal-list{ gap:24px; margin:40px 0; }
  .seasonal-header{ font-size:18px; }

  .access-grid{ grid-template-columns:1fr; gap:20px; max-width:100%; }
  .ac-row{ font-size:13px; }
  .button{ font-size:13px; padding:8px 12px; }

  footer{ font-size:12px; }
}

@media (min-width:481px) and (max-width:920px){
  .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); gap:20px; }
  .side-cats{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .access-grid{ grid-template-columns:1fr; }
}

/* ハンバーガー */
.nav-toggle{
  display:none; appearance:none; border:0; background:transparent; width:44px; height:44px;
  border-radius:8px; align-items:center; justify-content:center; cursor:pointer; position:relative;
}
.nav-toggle:focus-visible{ outline:2px solid rgba(255,112,30,.6); outline-offset:2px; }
.nav-icon{ display:inline-flex; flex-direction:column; gap:5px; }
.nav-icon i{ display:block; width:22px; height:2px; background:#1a1a1a; border-radius:2px; transition: transform .2s ease, opacity .2s ease, width .2s ease; }
.header.is-open .nav-icon i:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.header.is-open .nav-icon i:nth-child(2){ opacity:0; width:0; }
.header.is-open .nav-icon i:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width:768px){
  .nav-toggle{ display:inline-flex; }
  .header-inner{ padding:0 14px; }
  .header-content{
    position:absolute; top:80px; left:0; right:0;
    background: rgba(255,255,180,.98);
    -webkit-backdrop-filter:saturate(1.2) blur(8px); backdrop-filter:saturate(1.2) blur(8px);
    border-bottom:1px solid rgba(0,0,0,.08);
    display:grid; grid-auto-rows:minmax(48px,auto); padding:6px 12px;
    max-height:0; overflow:hidden; transition:max-height .28s ease; z-index:99;
  }
  .header.is-open .header-content{ max-height:300px; }
  .header-content li + li{ border-top:1px dashed rgba(0,0,0,.08); }
  .header-content a{ height:auto; padding:14px 10px; font-size:15px; }
  .header-content a::after{ bottom:8px; left:10px; right:10px; }
}

@media (min-width:769px){
  .header-content{
    position:static; display:flex; padding:0; max-height:none !important;
    overflow:visible; background:transparent; border-bottom:none;
  }
}
