html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: rgb(236,234,225);
  --dark: rgb(19,38,63);
  --muted: #888;
  --white: #fff;
  --orange: #c0392b;
  --radius: 20px;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN','Noto Sans JP',sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
  height: 90px;
  display: flex; align-items: center; padding: 0 40px;
}
.hd-inner {
  width: 100%; max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.hd-logo img { height: 90px; width: auto; display: block; }
.hd-right { display: flex; align-items: center; }
nav.main-nav { display: flex; align-items: center; gap: 28px; }
nav.main-nav a {
  text-decoration: none; color: var(--dark);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  white-space: nowrap; transition: opacity .2s;
}
nav.main-nav a:hover { opacity: .55; }
.hd-div { width: 1px; height: 36px; background: #ccc; margin: 0 24px; }
.hd-tel { font-size: 15px; font-weight: 700; letter-spacing: 0.04em; color: var(--dark); white-space: nowrap;
text-decoration: none; 
}
.hd-tel:hover { opacity: .55; }

/* ── HERO ── */
.hero { width: 100%; height: 580px; overflow: hidden; }
.hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }

/* ── MAIN ── */
main { background: var(--bg); padding: 60px 0; }
.container { max-width: 1200px; width: 92%; margin: 0 auto; }

/* ── SHOP INFO ── */
.shop-card {
  background: var(--white); border-radius: 16px;
  padding: 48px 56px; display: flex; align-items: flex-start;
  gap: 56px; margin-bottom: 64px;
}
.calendar-wrapper {
  flex-shrink: 0;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.calendar-box {
  width: 100%;
  border-radius: 8px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.calendar-box img { width: 100%; height: auto; object-fit: contain; }
.calendar-note {
  font-size: 12px;
  color: #b24932;
  font-weight: 600;
  text-align: center;
}
.shop-right { flex: 1; }
.shop-right h2 {
  font-size: 22px; font-weight: 700; margin-bottom: 28px;
  color: var(--dark);
}
.shop-table { width: 100%; border-collapse: collapse; }
.shop-table tr { border-bottom: 1px solid #e8e8e8; }
.shop-table tr:last-child { border-bottom: none; }
.shop-table th {
  padding: 14px 20px 14px 0; font-size: 13px; font-weight: 600;
  color: var(--dark); text-align: left; white-space: nowrap;
  vertical-align: top; width: 90px;
}
.shop-table td { padding: 14px 0; font-size: 13px; line-height: 1.8; color: var(--dark); }

/* ── SECTION HEADING ── */
.sec-head { text-align: center; margin-bottom: 10px; }
.sec-head h2 { font-size: 34px; font-weight: 700; letter-spacing: .05em; color: var(--dark); }
.sec-note {
  text-align: center; font-size: 14px; font-weight: 400;
  color: var(--dark); margin-bottom: 8px; line-height: 1.8;
}
.sec-notice { text-align: center; margin-bottom: 28px; }
.sec-notice span {
  display: inline-block; border: none;
  background: var(--white);
  padding: 4px 18px; font-size: 12px; color: var(--dark); border-radius: 2px;
}
.sec-mb { margin-bottom: 64px; }

/* ── SLIDER ── */
.slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 0 36px;
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 20px;
  will-change: transform;
}

/* デフォルト（両脇の状態を基本にする） */
.slide-item {
  flex-shrink: 0;
  width: 75vw;
  max-width: 340px;
  display: flex;
  align-items: stretch;
  transition: transform .5s ease, opacity .5s ease;
  /* 最初は小さく、薄くしておく */
  transform: scale(0.88);
  opacity: 0.5;
  z-index: 1;
}

/* 中央（JSで .active が付いたとき） */
.slide-item.active {
  transform: scale(1) !important;
  opacity: 1 !important;
  z-index: 10 !important;
}

/* 遠くのカード */
.slide-item.far {
  transform: scale(0.75);
  opacity: 0.2;
}

/* カード本体 */
.card {
  width: 100%; /* 横幅いっぱい */
  height: 100%; /* 全てのカードの高さを統一 */
  background: var(--white);
  border-radius: 40px; /* 完成形に合わせた大きな角丸 */
  border: 3px solid #222;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  /* 【修正】完成形に合わせ全方向に角丸を適用 */
  border-radius: 25px; 
  margin-bottom: 15px;
}
.card-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-body { 
  padding: 0; /* paddingをcard側の余白に任せる */
  flex-grow: 1; 
}
.card-origin { font-size: 12px; color: #5aacb8; margin-bottom: 4px; font-weight: 600; }
.card-title-row {
  font-size: 22px; font-weight: 700; color: var(--dark);
  margin-bottom: 8px; line-height: 1.3;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px;
}
.card-season-inline { font-size: 14px; font-weight: 700; color: var(--dark); }
.card-price { font-size: 14px; color: var(--dark); margin-bottom: 12px; }
.card-divider { border: none; border-top: 1px solid #ddd; margin-bottom: 12px; }
.card-desc { font-size: 13px; color: var(--dark); line-height: 1.8; }

/* 矢印ボタン */
.sl-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: var(--white); border: 1px solid #ccc; border-radius: 50%;
  width: 44px; height: 44px; cursor: pointer; font-size: 22px; color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.sl-btn:hover { background: #f0f0f0; }
.sl-btn.prev { left: 4px; }
.sl-btn.next { right: 4px; }

/* ── NEWS ── */
.news-head { text-align: center; margin-bottom: 36px; }
.news-head h2 {
  font-size: 34px; font-weight: 700; letter-spacing: .1em;
  color: var(--dark); display: block; margin-bottom: 4px;
}
.news-head .en {
  display: block; font-size: 13px; font-weight: 700;
  letter-spacing: .25em; color: var(--dark);
}
.news-list { max-width: 760px; margin: 0 auto; }
.news-item {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1.5px solid var(--dark); padding: 18px 0;
  text-decoration: none; color: inherit; transition: opacity .2s;
}
.news-item:first-child { border-top: 1.5px solid var(--dark); }
.news-item:hover { opacity: .65; }
.news-left { display: flex; flex-direction: column; gap: 6px; }
.news-date { font-size: 12px; color: var(--dark); opacity: .7; }
.news-title { font-size: 20px; font-weight: 700; color: var(--dark); }
.news-arrow {
  width: 44px; height: 44px;
  background: var(--dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.news-arrow svg { stroke: white; stroke-width: 2.5; fill: none; width: 14px; height: 14px; }
.btn-more {
  display: block; margin: 36px auto 0;
  width: 180px; text-align: center;
  border: 1.5px solid var(--dark); padding: 14px 0;
  border-radius: 999px; font-size: 15px; font-weight: 600;
  text-decoration: none; color: var(--dark);
  transition: background .2s, color .2s;
}
.btn-more:hover { background: var(--dark); color: white; }


/* ── FAQ PAGE ── */
.faq-page-bg {
  background: var(--bg);
  padding: 60px 0;
}
.faq-page-section {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}

/* nav-current */
nav.main-nav a.nav-current {
  opacity: .45;
  pointer-events: none;
}

/* ── FAQ ── */
.faq-head { text-align: center; margin-bottom: 12px; }
.faq-head h2 {
  font-size: 48px; font-weight: 700; letter-spacing: .1em;
  color: var(--dark); line-height: 1;
}
.faq-sub {
  font-size: 13px; color: var(--dark); letter-spacing: .1em; margin-top: 6px;
}

.faq-categories {
  display: flex; justify-content: center; gap: 50px;
  flex-wrap: wrap; margin-bottom: 48px; margin-top: 48px;
}
.faq-cat-btn {
  padding: 5px 45px; border-radius: 12px; border: none;
  font-size: 14px; font-weight: 700; cursor: pointer;
  background: var(--cat-bg, rgb(192,64,40)); color: white;
  transition: opacity .2s;
  letter-spacing: .04em;
  opacity: .45;
}
.faq-cat-btn[data-cat="all"] {
  background: rgb(192,64,40);
}
.faq-cat-btn.active {
  opacity: 1;
}
.faq-cat-btn:hover {
  opacity: 1;
}

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item[style*="display:none"],
.faq-item.hidden { display: none !important; }

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 0; text-align: left;
}
.faq-q-icon {
  font-family: 'Jost', sans-serif;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange); color: white;
  font-size: 25px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.faq-q-text {
  font-size: 18px; font-weight: 700; color: var(--dark); flex: 1; line-height: 1.4;
}

.faq-a {
  display: none;
  gap: 16px; padding: 0 0 22px; align-items: flex-start;
}
.faq-a.open { display: flex; }
.faq-a-icon {
  background: var(--white);
  color: #b24932;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  flex-grow: 0;       
  min-width: 32px;    
  min-height: 32px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.faq-a p { font-size: 14px; color: var(--dark); line-height: 1.9; padding-top: 4px; }

/* 予約・お問い合わせ */
.faq-contact {
  max-width: 600px; margin: 56px auto 0;
  background: white; border-radius: 20px; padding: 40px 32px;
  text-align: center;
}
.faq-contact h3 {
  font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 32px;
}
.faq-contact-inner {
  display: flex; align-items: stretch; gap: 0;
}
.faq-contact-col {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 10px; padding: 8px 16px;
  text-decoration: none; color: var(--dark);
  transition: opacity .2s;
}
.faq-contact-col:hover { opacity: .7; }
.faq-contact-col img { width: 44px; height: 44px; object-fit: contain; }
.faq-contact-label { font-size: 18px; font-weight: 700; color: var(--dark); }
.faq-contact-sub { font-size: 13px; color: var(--dark); }
.faq-contact-note { font-size: 12px; color: var(--orange); font-weight: 600; }
.faq-contact-divider {
  width: 1px; background: #d8d8d8; align-self: stretch; margin: 0 8px;
}

.access-section { margin-bottom: 0; }
.access-inner { display: flex; gap: 60px; align-items: flex-start; }
.access-info { flex: 1; }
.access-heading-row {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 36px;
}
.access-heading-row h2 { font-size: 36px; font-weight: 700; color: var(--dark); }
.access-heading-row .en { font-size: 16px; font-weight: 700; letter-spacing: .18em; color: var(--dark); }
.access-name { font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.access-sub { font-size: 14px; color: var(--dark); margin-bottom: 10px; }
.access-addr { font-size: 13px; color: var(--dark); margin-bottom: 28px; }
.access-method { margin-bottom: 20px; }
.access-method h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.access-method p { font-size: 14px; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--orange); flex-shrink: 0; display: inline-block; }
.map-box { flex-shrink: 0; width: 520px; height: 400px; background: #111; border-radius: 4px; overflow: hidden; }
.map-box iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FOOTER ── */
footer { background: var(--dark); color: white; padding: 48px 32px 32px; }
.footer-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.footer-brand { font-size: 100px; font-weight: 700; margin-bottom: 22px; letter-spacing: .04em; }
.footer-brand img { height: 48px; width: auto; display: block; margin: 0 auto; filter: brightness(0) invert(1); }
.footer-sns { display: flex; justify-content: center; gap: 16px; margin-bottom: 24px; }
.footer-sns a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.footer-sns a:hover { background: rgba(255,255,255,.28); }
.footer-sns img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-nav { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-nav a { text-decoration: none; color: rgba(255,255,255,.75); font-size: 12px; transition: color .2s; }
.footer-nav a:hover { color: white; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.35); }

/* ════════════════════════════════════════
   HAMBURGER MENU
   ════════════════════════════════════════ */
.hd-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}
.hd-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hd-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-hamburger.open span:nth-child(2) { opacity: 0; }
.hd-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルナビ overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: 75vw;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 0;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
.mobile-nav-panel a {
  display: block;
  text-decoration: none;
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 0;
  border-bottom: 1px solid #e8e8e8;
  letter-spacing: .04em;
  transition: opacity .2s;
}
.mobile-nav-panel a:first-child { border-top: 1px solid #e8e8e8; }
.mobile-nav-panel a:hover { opacity: .55; }
.mobile-nav-tel {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: .04em;
}


/* ════════════════════════════════════════
   RESPONSIVE  （768px以下 = スマホ）
   ════════════════════════════════════════ */
@media (max-width: 768px) {

  html { scroll-padding-top: 64px; }

  /* ── HEADER ── */
  header { height: 64px; padding: 0 16px; }
  .hd-logo img { height: 48px; }
  nav.main-nav { display: none; }
  .hd-div { display: none; }
  .hd-tel { display: none; }
  .hd-hamburger { display: flex; }

  /* ── HERO ── */
  .hero { height: 240px; }

  /* ── MAIN ── */
  main { padding: 32px 0; }
  .container { width: 94%; }

  /* ── SHOP INFO ── */
  .shop-card {
    flex-direction: column;
    padding: 24px 20px;
    gap: 24px;
    margin-bottom: 40px;
    border-radius: 12px;
  }
  .calendar-wrapper { width: 100%; }
  .shop-right h2 { font-size: 18px; margin-bottom: 16px; }
  .shop-table th { font-size: 12px; width: 80px; padding: 10px 12px 10px 0; }
  .shop-table td { font-size: 12px; padding: 10px 0; }

  /* ── SECTION HEADING ── */
  .sec-head h2 { font-size: 26px; }
  .sec-note { font-size: 13px; }
  .sec-note br { display: none; }
  .sec-notice span { font-size: 11px; padding: 4px 10px; }
  .sec-mb { margin-bottom: 40px; }

  /* ── SLIDER ── */
  .slider-outer { padding: 16px 0 24px; }
  .slide-item { width: 80vw; max-width: 280px; }
  .sl-btn { width: 36px; height: 36px; font-size: 18px; }
  .card { border-radius: 24px; padding: 14px; }
  .card-img-wrap { border-radius: 16px; margin-bottom: 10px; }
  .card-title-row { font-size: 18px; }
  .card-price { font-size: 13px; }
  .card-desc { font-size: 12px; }

  /* ── NEWS（トップ） ── */
  .news-head h2 { font-size: 26px; letter-spacing: .06em; }
  .news-title { font-size: 15px; }
  .news-arrow { width: 36px; height: 36px; }
  .btn-more { width: 150px; font-size: 14px; padding: 12px 0; }

  /* ── NEWS（一覧ページ） ── */
  .news-page-head .en-title { font-size: 36px; }
  .news-filter { gap: 8px; }
  .news-filter-btn { padding: 6px 20px; font-size: 13px; }
  .news-thumb { width: 72px; height: 72px; border-radius: 8px; }
  .news-article-title { font-size: 15px; }
  .news-article-link { gap: 12px; padding: 14px 4px; }

  /* ── NEWS（詳細ページ） ── */
  .detail-title { font-size: 22px; }
  .detail-body { font-size: 13px; }
  .detail-page-bg { padding: 36px 0 60px; }

  /* ── FAQ ── */
  .faq-head h2 { font-size: 32px; }
  .faq-categories { gap: 8px; margin-top: 24px; margin-bottom: 24px; }
  .faq-cat-btn { padding: 6px 16px; font-size: 12px; }
  .faq-q-text { font-size: 15px; }
  .faq-a p { font-size: 13px; }
  .faq-contact { padding: 24px 16px; }
  .faq-contact h3 { font-size: 17px; margin-bottom: 20px; }
  .faq-contact-label { font-size: 14px; }
  .faq-contact-sub { font-size: 12px; }
  .faq-page-bg { padding: 36px 0 60px; }

  /* ── ACCESS ── */
  .access-inner { flex-direction: column; gap: 28px; }
  .access-heading-row { margin-bottom: 20px; }
  .access-heading-row h2 { font-size: 26px; }
  .access-heading-row .en { font-size: 13px; }
  .access-name { font-size: 18px; }
  .access-sub { font-size: 12px; }
  .access-addr { font-size: 12px; margin-bottom: 20px; }
  .access-method h4 { font-size: 14px; }
  .access-method p { font-size: 13px; }
  .map-box { width: 100%; height: 240px; }

  /* ── FOOTER ── */
  footer { padding: 36px 16px 24px; }
  .footer-brand { font-size: 16px; margin-bottom: 16px; }
  .footer-nav { gap: 16px; }
  .footer-nav a { font-size: 11px; }
}
