/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sidebar-bg:  #2d4a3e;   /* サイドバー背景 (BUNKITSU green) */
  --sidebar-w:   260px;
  --accent:      #4a7c6f;   /* アクセント緑 */
  --cream:       #f5f0e8;   /* クリーム */
  --cream-dark:  #ede6d8;
  --white:       #fafaf8;
  --text:        #2a2a2a;
  --text-muted:  #7a7a72;
  --label-color: #6b9e8f;   /* セクションラベル */
  --btn-bg:      #2d4a3e;
  --btn-hover:   #1d3329;
  --rule:        #d8d0c4;
  --radius-img:  12px;
  --serif:       'Noto Serif JP', serif;
  --sans:        'Noto Sans JP', sans-serif;
  --en:          'Cormorant Garamond', var(--serif);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.8;
  display: flex;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Fade-in ── */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .85s ease, transform .85s ease;
}
.fade.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   SIDEBAR
   ════════════════════════════════ */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--sidebar-bg);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  padding: 2rem 1.5rem 1.5rem;
}
.sidebar::-webkit-scrollbar { display: none; }

.sidebar-logo {
  display: block;
  text-align: center;
  margin-bottom: 1.8rem;
}
.sidebar-logo-img {
  width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  flex: 1;
  padding: 1.2rem 0 1rem;
}
.sidebar-nav a {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .28em;
  color: rgba(255,255,255,.8);
  transition: color .25s, opacity .25s;
  text-transform: lowercase;
}
.sidebar-nav a:hover { color: white; }

.sidebar-divider {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,.2);
  margin: .5rem 0;
}

.sidebar-sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.sidebar-sns a {
  color: rgba(255,255,255,.65);
  transition: color .25s;
  font-size: .65rem;
  letter-spacing: .12em;
}
.sidebar-sns a:hover { color: white; }

.sidebar-tel {
  font-size: .62rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.25rem;
}

/* hamburger (SP only) */
.hamburger {
  display: none;
  position: fixed;
  top: 1rem; left: 1rem;
  z-index: 300;
  flex-direction: column;
  gap: 5px;
  background: var(--sidebar-bg);
  border: none;
  padding: .75rem;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: white;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════════════
   MAIN CONTENT
   ════════════════════════════════ */
.main-content {
  margin-left: var(--sidebar-w);
  width: calc(100% - var(--sidebar-w));
  min-height: 100vh;
  background: var(--white);
}

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.hero-slide.active img { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(45,74,62,.1) 0%, rgba(45,74,62,.50) 100%);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 0 6rem 0 3rem;
  color: white;
}
.hero-title {
  font-family: var(--serif);
  /* vh基準: 9文字×font-size×line-height ≤ 画面高 */
  font-size: clamp(1.6rem, 7vh, 3rem);
  letter-spacing: .1em;
  line-height: 1.5;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
  animation: fadeUp 1s .3s both;
  /* 絶対に溢れないよう高さ上限を設定 */
  max-height: 75vh;
  overflow: hidden;
}
.hero-catch {
  font-size: .72rem;
  letter-spacing: .35em;
  opacity: .82;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s .5s both;
}
.hero-sub {
  font-size: .65rem;
  letter-spacing: .22em;
  opacity: .7;
  margin-top: 1.5rem;
  animation: fadeUp 1s .7s both;
}

/* dots */
.hero-dots {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: .7rem;
}
.dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .3s, width .3s;
}
.dot.active { background: white; width: 40px; }

@keyframes fadeUp {
  from { opacity:0; transform: translateY(16px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ════════════════════════════════
   SECTION SHARED
   ════════════════════════════════ */
.section { padding: 6rem 4rem; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--green { background: var(--sidebar-bg); color: var(--cream); }

/* Section heading: en label + jp subtitle + rule */
.sec-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.sec-en {
  display: block;
  font-family: var(--en);
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: .3em;
  color: var(--label-color);
  margin-bottom: .3rem;
}
.sec-jp {
  display: block;
  font-size: .72rem;
  letter-spacing: .45em;
  color: var(--text-muted);
  margin-bottom: .9rem;
}
.sec-rule {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--label-color);
  margin: 0 auto;
}

/* ════════════════════════════════
   INTRODUCTION
   ════════════════════════════════ */
.intro-wrap {
  max-width: 660px;
  position: relative;
}
.intro-label {
  font-family: var(--en);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .3em;
  color: var(--label-color);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.intro-label::after {
  content: '';
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--label-color);
}
.intro-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: .12em;
  line-height: 2;
  color: var(--label-color);
  margin-bottom: 1.75rem;
}
.intro-body {
  font-size: .8rem;
  line-height: 2.5;
  color: var(--text-muted);
}
.intro-body p + p { margin-top: 1.2rem; }

/* ════════════════════════════════
   POINT SECTIONS
   ════════════════════════════════ */
.point-section { background: var(--sidebar-bg); padding: 0; }
.point-inner {
  display: flex;
  align-items: stretch;
  min-height: 480px;
}
.point-inner--rev { flex-direction: row-reverse; }

.point-photo {
  flex: 1;
  position: relative;
}
.point-photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.point-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  color: var(--cream);
}
.point-label {
  font-family: var(--en);
  font-style: italic;
  font-size: .85rem;
  letter-spacing: .35em;
  color: rgba(245,240,232,.5);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.point-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(245,240,232,.35);
}
.point-h {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  letter-spacing: .14em;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.point-body {
  font-size: .78rem;
  line-height: 2.4;
  color: rgba(245,240,232,.7);
  margin-bottom: 2rem;
}
.btn-more {
  display: block;
  width: 100%;
  max-width: 320px;
  background: var(--accent);
  color: white;
  border: none;
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .4em;
  text-align: center;
  padding: 1rem 2rem;
  transition: background .28s;
  text-transform: uppercase;
}
.btn-more:hover { background: #3d6b5e; }

/* ════════════════════════════════
   MENU SECTION
   ════════════════════════════════ */
.menu-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.menu-col {
  position: relative;
  border-radius: var(--radius-img);
  overflow: hidden;
}
.menu-col img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.menu-col-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: .18em;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.52));
  padding: 2rem 1rem .9rem;
}
.btn-more--dark {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--btn-bg);
  color: white;
  border: none;
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .4em;
  text-align: center;
  padding: 1.1rem 2rem;
  transition: background .28s;
  text-transform: uppercase;
}
.btn-more--dark:hover { background: var(--btn-hover); }

/* ════════════════════════════════
   MOOD GALLERY
   ════════════════════════════════ */
.mood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.mood-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-img);
  transition: opacity .3s, transform .4s;
}
.mood-item img:hover { opacity: .9; transform: scale(1.01); }

/* ════════════════════════════════
   NEWS
   ════════════════════════════════ */
.news-table {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  border-top: 1px solid var(--rule);
}
.news-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: .78rem;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
a.news-row:hover { opacity: .7; }

/* ── NEWS DETAIL ── */
.page-hero--sm { height: 35vh; min-height: 200px; }
.news-detail-wrap { max-width: 680px; margin: 0 auto; }
.news-back {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-decoration: none;
  transition: color .2s;
}
.news-back:hover { color: var(--accent); }
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.news-detail-date {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .06em;
}
.news-detail-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
/* ── NEWS CARD LIST ── */
.news-card-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.news-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  transition: opacity .2s;
}
.news-card:first-child { border-top: 1px solid var(--rule); }
.news-card:hover { opacity: .7; }
.news-card-img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-img);
  flex-shrink: 0;
}
.news-card-img--placeholder {
  background: var(--cream-dark);
}
.news-card-body {
  flex: 1;
  min-width: 0;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.news-card-title {
  font-family: var(--serif);
  font-size: .92rem;
  letter-spacing: .06em;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .news-card { flex-direction: column; gap: 1rem; }
  .news-card-img { width: 100%; height: 180px; }
}

.news-detail-eyecatch {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-img);
  margin-bottom: 2.5rem;
}
.news-detail-body p {
  font-size: .82rem;
  line-height: 2.2;
  color: var(--text);
  margin-bottom: .5rem;
}
.news-date {
  color: var(--text-muted);
  letter-spacing: .06em;
  flex-shrink: 0;
  min-width: 6rem;
}
.news-txt { color: var(--text); line-height: 1.6; }

/* ════════════════════════════════
   INFORMATION / ACCESS
   ════════════════════════════════ */
.info-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.info-dl { display: flex; flex-direction: column; gap: 1.5rem; }
.info-row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.info-dt {
  font-size: .6rem;
  letter-spacing: .28em;
  color: var(--text-muted);
  padding-top: .2rem;
}
.info-dd {
  font-size: .78rem;
  line-height: 2;
}
.info-dd a {
  color: var(--label-color);
  transition: opacity .2s;
}
.info-dd a:hover { opacity: .7; }
.info-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius-img);
}
.btn-access {
  display: block;
  width: 100%;
  background: var(--btn-bg);
  color: white;
  border: none;
  font-size: .65rem;
  letter-spacing: .4em;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  transition: background .28s;
}
.btn-access:hover { background: var(--btn-hover); }

/* ════════════════════════════════
   LIBRARY (top)
   ════════════════════════════════ */
.lib-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lib-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-img);
}
.lib-text-h {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  letter-spacing: .14em;
  line-height: 1.9;
  margin-bottom: 1.25rem;
  color: var(--cream);
}
.lib-text-body {
  font-size: .78rem;
  line-height: 2.4;
  color: rgba(245,240,232,.7);
  margin-bottom: 2rem;
}

/* ════════════════════════════════
   MESSAGE
   ════════════════════════════════ */
.message-title {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: .3em;
  margin-bottom: 1.5rem;
}
.message-body {
  font-size: .78rem;
  line-height: 2.6;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.text-link { color: var(--label-color); text-decoration: underline; text-underline-offset: .25em; }

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.site-footer {
  background: var(--sidebar-bg);
  color: var(--cream);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: .9rem;
  letter-spacing: .22em;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: .62rem;
  letter-spacing: .22em;
  opacity: .6;
  transition: opacity .25s;
}
.footer-links a:hover { opacity: 1; }
.footer-copy {
  font-size: .58rem;
  letter-spacing: .14em;
  opacity: .35;
}

/* ════════════════════════════════
   PAGE HERO (subpages)
   ════════════════════════════════ */
.page-hero {
  position: relative;
  height: 50vh; min-height: 320px;
  overflow: hidden;
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(45,74,62,.45);
}
.page-hero-body {
  position: relative; z-index: 1;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: white;
  padding: 4rem 2rem 2rem;
}
.page-hero-sub  { font-size: .6rem; letter-spacing: .35em; opacity: .75; margin-bottom: .75rem; }
.page-hero-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: .25em; }

/* ════════════════════════════════
   SUBPAGE SHARED
   ════════════════════════════════ */
.story-body { font-size: .8rem; line-height: 2.5; color: var(--text-muted); }
.story-body p + p { margin-top: 1.25rem; }
.story-en {
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: .25em;
  color: var(--label-color);
  margin: 2rem 0 1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.pillar { padding: 2.5rem 1.5rem; background: var(--white); border-radius: var(--radius-img); }
.pillar-en { font-family: var(--serif); font-size: 2.4rem; color: rgba(45,74,62,.1); }
.pillar-ja { font-family: var(--serif); font-size: .95rem; letter-spacing: .22em; margin: .5rem 0 1rem; }
.pillar-rule { width: 28px; height: 1px; background: var(--label-color); margin: 0 auto 1.25rem; }
.pillar-body { font-size: .72rem; line-height: 2.1; color: var(--text-muted); }

.about-photos {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.about-photos img { height: 260px; width: 100%; object-fit: cover; border-radius: var(--radius-img); }

/* menu page */
.menu-photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 4rem; }
.menu-photo-img { overflow: hidden; border-radius: var(--radius-img); margin-bottom: 1rem; }
.menu-photo-img img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s; }
.menu-photo-item:hover .menu-photo-img img { transform: scale(1.04); }
.menu-photo-name { font-family: var(--serif); font-size: .92rem; letter-spacing: .18em; margin-bottom: .4rem; }
.menu-photo-desc { font-size: .7rem; line-height: 1.9; color: var(--text-muted); }

.menu-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--rule); }
.menu-list-item { padding: 1.6rem 1.5rem 1.6rem 0; border-bottom: 1px solid var(--rule); }
.menu-list-item:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--rule); }
.menu-list-name { font-family: var(--serif); font-size: .9rem; letter-spacing: .18em; margin-bottom: .4rem; }
.menu-list-desc { font-size: .72rem; line-height: 2; color: var(--text-muted); }

.menu-cover-link {
  display: inline-block; position: relative;
  overflow: hidden; border-radius: var(--radius-img);
  box-shadow: 0 8px 32px rgba(45,74,62,.14);
  max-width: 460px; width: 100%;
}
.menu-cover-link img { width: 100%; display: block; transition: opacity .3s; }
.menu-cover-link:hover img { opacity: .85; }
.menu-cover-hover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(45,74,62,0); transition: background .3s;
}
.menu-cover-link:hover .menu-cover-hover { background: rgba(45,74,62,.3); }
.menu-cover-hover span {
  color: white; font-size: .65rem; letter-spacing: .3em;
  opacity: 0; transition: opacity .3s;
}
.menu-cover-link:hover .menu-cover-hover span { opacity: 1; }
.menu-cover-note { font-size: .6rem; letter-spacing: .2em; opacity: .45; margin-top: 1.2rem; }

.text-center { text-align: center; }

/* ════════════════════════════════
   HOTPEPPER
   ════════════════════════════════ */
.sidebar-hotpepper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: opacity .2s;
}
.sidebar-hotpepper:hover { opacity: .75; }
.sidebar-hotpepper-label {
  font-size: .48rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.65);
}

/* ════════════════════════════════
   NEWS TAG
   ════════════════════════════════ */
.news-tag {
  font-size: .55rem;
  letter-spacing: .12em;
  background: var(--label-color);
  color: white;
  padding: .15rem .5rem;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ════════════════════════════════
   CALENDAR
   ════════════════════════════════ */
/* 月カレンダー */
.cal-month-wrap {
  max-width: 540px;
  margin: 0 auto;
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.4rem;
}
.cal-nav button {
  background: none;
  border: 1px solid var(--rule);
  color: var(--brown);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  line-height: 1;
  transition: background .15s;
}
.cal-nav button:hover { background: var(--rule); }
.cal-title {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .14em;
  color: var(--brown);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-dow {
  text-align: center;
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--text-muted);
  padding: .4rem 0 .6rem;
}
.cal-dow--sat { color: #3a6fa8; }
.cal-dow--sun { color: #a83a3a; }
.cal-cell {
  background: #fff;
  padding: .45rem .2rem .4rem;
  text-align: center;
  min-height: 52px;
}
.cal-cell--empty { background: transparent; }
.cal-cell--sat .cal-num { color: #3a6fa8; }
.cal-cell--sun .cal-num { color: #a83a3a; }
.cal-cell--closed { opacity: .32; }
.cal-cell--today .cal-num {
  background: var(--sidebar-bg);
  color: #fff;
  border-radius: 50%;
  width: 22px; height: 22px;
  line-height: 22px;
  display: inline-block;
}
.cal-num {
  font-size: .78rem;
  display: block;
  margin-bottom: .18rem;
}
.cal-hours {
  font-size: .56rem;
  color: var(--text-muted);
  letter-spacing: .01em;
  display: block;
  line-height: 1.4;
}
.cal-hours--special { color: var(--accent); }
.cal-note {
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.2rem;
}

/* ════════════════════════════════
   LIBRARY GUIDE TEXT
   ════════════════════════════════ */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.guide-item {
  background: var(--white);
  border-radius: var(--radius-img);
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--label-color);
}
.guide-item-title {
  font-family: var(--serif);
  font-size: .9rem;
  letter-spacing: .18em;
  margin-bottom: 1rem;
  color: var(--label-color);
}
.guide-item-body {
  font-size: .72rem;
  line-height: 2.2;
  color: var(--text-muted);
}
.btn-coming-soon {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 3.5rem auto 0;
  background: var(--rule);
  color: var(--text-muted);
  border: none;
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .4em;
  text-align: center;
  padding: 1.1rem 2rem;
  cursor: default;
  position: relative;
}
.btn-coming-soon::after {
  content: '準備中';
  font-size: .55rem;
  letter-spacing: .1em;
  background: var(--text-muted);
  color: white;
  padding: .15rem .4rem;
  border-radius: 2px;
  margin-left: .75rem;
}
@media (max-width: 900px) {
  .guide-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.lib-caution {
  font-size: .68rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  line-height: 1.9;
  text-align: center;
  margin-top: 1.2rem;
}

/* library page */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; text-align: center; }
.step-num { font-family: var(--serif); font-size: 3rem; color: rgba(45,74,62,.1); line-height:1; }
.step-rule { width: 28px; height: 1px; background: var(--label-color); margin: .75rem auto 1rem; }
.step-title { font-family: var(--serif); font-size: .9rem; letter-spacing: .2em; margin-bottom: .75rem; }
.step-body { font-size: .72rem; line-height: 2.1; color: var(--text-muted); }

.genres-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.genres-list li {
  display: flex; align-items: center; gap: 1rem;
  font-size: .82rem; color: var(--brown);
}
.genres-list li::before {
  content:''; display: inline-block;
  width: 1.1rem; height: 1px;
  background: var(--accent); flex-shrink: 0;
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 900px) {
  :root { --sidebar-w: 0px; }

  body { display: block; }
  .sidebar { transform: translateX(-100%); width: 260px; transition: transform .35s ease; }
  .sidebar.open { transform: translateX(0); }
  .hamburger { display: flex; }
  .main-content { margin-left: 0; width: 100%; }

  .section { padding: 4.5rem 1.5rem; }

  .hero-body {
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
  }

  .point-inner,
  .point-inner--rev { flex-direction: column; }
  .point-photo img { min-height: 260px; height: 260px; }
  .point-text { padding: 2.5rem 1.5rem; }

  .menu-cols { grid-template-columns: 1fr; }
  .menu-col img { height: 200px; }

  /* mood: 横スクロール */
  .mood-section-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: .5rem; scrollbar-width: none; }
  .mood-section-wrap::-webkit-scrollbar { display: none; }
  .mood-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: .75rem;
    width: max-content;
  }
  .mood-item { flex-shrink: 0; width: 72vw; }
  .mood-item:first-child { grid-column: unset; width: 80vw; }
  .mood-item img { width: 100%; height: 220px; }
  .mood-item:first-child img { height: 220px; }

  .lib-row { grid-template-columns: 1fr; gap: 2rem; }
  .lib-img img { height: 240px; }

  .info-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-map iframe { height: 240px; }

  .pillars-grid,
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-photos { grid-template-columns: 1fr 1fr; }
  .menu-photo-grid { grid-template-columns: 1fr; }
  .menu-list-grid { grid-template-columns: 1fr; }
  .menu-list-item:nth-child(even) { padding-left: 0; border-left: none; }
  .hero-title { font-size: 2rem; }

  .cal-month-wrap { max-width: 100%; }

  /* ニュース行折り返し */
  .news-row { flex-wrap: wrap; gap: .5rem 1rem; }
  .news-date { min-width: auto; }

  /* menu-col オーバーレイ高さ補正 */
  .menu-col img { height: 240px; }
}

@media (max-width: 600px) {
  .mood-grid { grid-template-columns: 1fr; }
  .mood-item:first-child { grid-column: span 1; }
  .about-photos { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 1.2rem; }
  .intro-title { font-size: 1.35rem; }
  .page-hero-title { font-size: 2rem; }
  .point-inner { gap: 0; }
  .menu-col img { height: 200px; }
}
