/* =============================================
   BAR オトナノノミカタ — Style Sheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  color: #111111;
  background: #FFFFFF;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* --- Design Tokens --- */
:root {
  --font-body: 'Zen Kaku Gothic New', 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
  --font-display: var(--font-body);
  --black: #000000;
  --warm-black: #000000;
  --charcoal: #111111;
  --dark-brown: #303030;
  --warm-gray: #5F5F5F;
  --medium-gray: #8C8C8C;
  --light-gray: #E5E5E5;
  --surface-soft: #F4F4F4;
  --surface-subtle: #FAFAFA;
  --cream: #FFFFFF;
  --off-white: #FFFFFF;
  --white: #FFFFFF;
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-xl: 0;
  --header-h: 100px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
}

/* --- Utility --- */
.container { max-width: 980px; margin: 0 auto; padding: 0; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0; }
.kicker { font-size: 14px; font-weight: 600; letter-spacing: normal; color: var(--charcoal); text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: normal; line-height: 1.3; margin-bottom: 50px; }
.section-subtitle { font-size: 16px; color: var(--dark-brown); line-height: 2.4; margin-bottom: 40px; }
.section-padding { padding: 76px 0; }
.bg-offwhite { background: var(--off-white); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--charcoal); color: var(--off-white); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border: 1px solid transparent; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; letter-spacing: normal;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, transform 0.25s ease;
  gap: 8px; white-space: nowrap;
}
.btn-primary,
.btn-accent {
  background: var(--black); color: var(--white); border-color: var(--black);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.btn-primary:hover,
.btn-accent:hover {
  background: var(--white); color: var(--black); border-color: var(--black);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1); transform: translateY(-2px);
}
.btn-secondary,
.btn-ghost { background: var(--white); color: var(--black); border-color: var(--black); }
.btn-secondary:hover,
.btn-ghost:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-link { padding: 0 0 2px; color: var(--black); border-bottom: 1px solid currentColor; font-weight: 600; }
.btn-link:hover { opacity: 0.58; }
.btn:focus-visible,
a:focus-visible,
button:focus-visible { outline: 2px solid var(--black); outline-offset: 4px; }

/* =====================
   HEADER
   ===================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); height: var(--header-h);
  display: flex; align-items: center;
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  width: min(1036px, calc(100% - 16px)); max-width: none; height: 100%; padding: 0;
}
.header-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--charcoal);
  letter-spacing: normal;
}
.header > .container > .header-logo {
  width: 137px; height: 120px; flex: 0 0 auto;
  background: var(--black);
  -webkit-mask: url('../images/logo-original-dark.png') center/contain no-repeat;
  mask: url('../images/logo-original-dark.png') center/contain no-repeat;
}
.header > .container > .header-logo .logo-icon,
.header > .container > .header-logo > span:last-child { display: none; }
.header-nav { display: none; }
.header-nav a {
  font-size: 13px; font-weight: 500; color: var(--medium-gray);
  letter-spacing: 0.02em; transition: color 0.2s;
}
.header-nav a:hover { color: var(--off-white); }
.header-actions { display: none; }
.header-actions .btn-accent { font-size: 12px; padding: 10px 20px; }
.header-ig { color: var(--medium-gray); transition: color 0.2s; }
.header-ig:hover { color: var(--off-white); }
.mobile-menu-btn {
  display: block; position: relative; width: 36px; height: 24px; margin-right: 24px;
  color: transparent; font-size: 0; overflow: hidden;
}
.mobile-menu-btn::before {
  content: ''; position: absolute; left: 0; top: 0; width: 36px; height: 2px;
  background: var(--charcoal); box-shadow: 0 11px 0 var(--charcoal), 0 22px 0 var(--charcoal);
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative; width: min(980px, calc(100% - 20px)); max-width: 980px;
  aspect-ratio: 1151 / 768; height: auto; overflow: hidden;
  margin: 77px auto 0; border-radius: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero.avif') center/cover no-repeat;
}
.hero-bg::after { display: none; }
.hero-logo {
  position: absolute; z-index: 1; left: 50%; top: calc(50% + 3px);
  width: 300px; transform: translate(-50%, -50%);
}
.hero-intro { position: relative; padding: 69px 0 24px; border-bottom: 1px solid var(--light-gray); }
.hero-title {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  letter-spacing: normal; line-height: 1.3; color: var(--charcoal); margin-bottom: 44px;
}
.about-copy {
  max-width: 980px; margin: 0 auto; padding: 0; border: 0; color: var(--dark-brown);
}
.about-copy p { font-size: 16px; line-height: 2.4; margin-bottom: 0; }
.about-copy p:last-child { margin-bottom: 0; }
.about-copy .about-lead {
  font-family: var(--font-body); font-size: 16px; font-weight: 400;
  line-height: 2.4; letter-spacing: normal; color: var(--dark-brown); margin-bottom: 0;
}

/* =====================
   CONCEPT
   ===================== */
.concept-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 0;
}
.concept-card { text-align: center; }
.concept-card-img {
  width: 100%; aspect-ratio: 4/3; background: var(--light-gray);
  border-radius: 0; margin-bottom: 20px; overflow: hidden;
}
.concept-card-img img { width: 100%; height: 100%; object-fit: cover; }
.concept-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.concept-card p { font-size: 14px; color: var(--dark-brown); line-height: 1.8; }

/* =====================
   STORY
   ===================== */
.story-content {
  display: grid; grid-template-columns: 409px 1fr; gap: 45px; align-items: start;
}
.story-text .section-title { text-align: center; }
.story-text blockquote {
  font-family: var(--font-body); font-size: 16px; font-weight: 600; line-height: 2.4;
  border: 0; padding: 0; margin: 0;
}
.story-text p { font-size: 16px; line-height: 2.4; color: var(--dark-brown); margin: 0; }
.story-img {
  aspect-ratio: 4/3; background: var(--light-gray);
  border-radius: 0; overflow: hidden; order: -1;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }

/* =====================
   FIRST VISIT
   ===================== */
.visit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.visit-card {
  background: var(--white); padding: 40px 28px; border-radius: var(--radius-lg);
  border: 0; text-align: center;
  transition: border-color 0.25s;
}
.visit-card:hover { border-color: var(--black); }
.visit-icon {
  width: 48px; height: 48px; background: var(--surface-soft); color: var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 20px;
}
.visit-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.visit-card p { font-size: 13px; color: var(--warm-gray); line-height: 1.8; }

/* =====================
   MENU
   ===================== */
.menu-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.shochu-cards { display: flex; flex-direction: column; gap: 24px; }
.shochu-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; border: 0; border-bottom: 1px solid var(--light-gray);
  display: flex; gap: 20px; padding: 20px;
}
.shochu-card-img {
  width: 80px; height: 100px; background: var(--cream);
  border-radius: var(--radius-sm); flex-shrink: 0; overflow: hidden;
}
.shochu-card-img img { width: 100%; height: 100%; object-fit: cover; }
.shochu-card-info { flex: 1; }
.shochu-card-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 2px 8px; border: 1px solid var(--black); border-radius: 4px; margin-bottom: 6px;
  background: var(--white); color: var(--black);
}
.shochu-card-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.shochu-card-info .origin { font-size: 12px; color: var(--warm-gray); margin-bottom: 6px; }
.shochu-card-info p { font-size: 13px; color: var(--dark-brown); line-height: 1.5; }

.menu-highlights h3 { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--light-gray);
}
.menu-item-name { font-size: 15px; font-weight: 500; }
.menu-item-desc { font-size: 13px; color: var(--warm-gray); margin-top: 4px; }
.menu-item-price { font-size: 15px; font-weight: 600; color: var(--black); white-space: nowrap; }

/* =====================
   GALLERY
   ===================== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.gallery-item {
  aspect-ratio: 1; background: var(--light-gray); border-radius: var(--radius-md);
  overflow: hidden; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* =====================
   PRIVATE PARTY
   ===================== */
.party-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; align-items: center; }
.party-img {
  aspect-ratio: 4/3; background: var(--light-gray);
  border-radius: var(--radius-md); overflow: hidden;
}
.party-img img { width: 100%; height: 100%; object-fit: cover; }
.party-info h3 { font-size: 20px; font-weight: 600; margin-bottom: 24px; }
.party-info p { font-size: 16px; color: var(--dark-brown); line-height: 2.2; margin-bottom: 24px; }
.party-details { margin-bottom: 32px; }
.party-details li {
  font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--light-gray);
  display: flex; align-items: center; gap: 8px;
}
.party-details li::before { content: '✓'; color: var(--black); font-weight: 700; }

/* =====================
   HOUSE RULES
   ===================== */
.rules-content { max-width: 980px; margin: 0 auto; }
.rules-content > p { font-size: 15px; line-height: 2; color: var(--dark-brown); margin-bottom: 32px; }
.rules-content h3 { font-size: 20px; font-weight: 600; margin-bottom: 24px; }
.rules-list { margin-bottom: 32px; }
.rules-list li {
  font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--light-gray);
  padding-left: 20px; position: relative; color: var(--dark-brown);
}
.rules-list li::before { content: '•'; position: absolute; left: 0; color: var(--black); font-weight: 700; }
.rules-note { font-size: 14px; color: var(--warm-gray); line-height: 1.9; }

/* =====================
   BLOG
   ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; border: 0;
  transition: box-shadow 0.3s;
}
.blog-card:hover { box-shadow: none; }
.blog-card-img {
  aspect-ratio: 16/10; background: var(--light-gray); overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card-body { padding: 28px; }
.blog-card-meta { font-size: 12px; color: var(--warm-gray); margin-bottom: 8px; }
.blog-card-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 2px 8px; border: 1px solid var(--black); border-radius: 4px;
  background: var(--white); color: var(--black); margin-left: 8px;
}
.blog-card h2,
.blog-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; line-height: 1.65; }
.blog-card p { font-size: 13px; color: var(--warm-gray); line-height: 1.8; }
.blog-card:hover .blog-card-img img { transform: scale(1.025); }

/* =====================
   BLOG ARTICLE
   ===================== */
.article-page main { padding-top: calc(var(--header-h) + 42px); }
.article-breadcrumbs {
  width: min(980px, calc(100% - 40px)); margin: 0 auto;
  color: var(--warm-gray); font-size: 12px; line-height: 1.7;
}
.article-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.article-breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.article-breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--medium-gray); }
.article-breadcrumbs a { border-bottom: 1px solid currentColor; }
.article-breadcrumbs a:hover { color: var(--black); }
.article-header {
  width: min(980px, calc(100% - 40px)); margin: 0 auto;
  padding: 52px 0 78px;
}
.article-kicker,
.article-title,
.article-meta { width: min(760px, 100%); margin-inline: auto; }
.article-kicker {
  margin-bottom: 18px; color: var(--black); font-size: 12px;
  font-weight: 700; letter-spacing: 0.16em;
}
.article-title {
  margin-bottom: 28px; color: var(--charcoal); font-size: clamp(30px, 3vw, 38px);
  font-weight: 600; letter-spacing: 0.01em; line-height: 1.55; text-wrap: balance;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  color: var(--warm-gray); font-size: 12px; line-height: 1.8;
}
.article-meta time { margin-left: 5px; color: var(--charcoal); font-variant-numeric: tabular-nums; }
.article-cover {
  display: block; width: 100%; aspect-ratio: 3 / 2; margin-top: 56px;
  object-fit: cover; background: var(--surface-soft);
}
.article-content {
  width: min(720px, calc(100% - 40px)); margin: 0 auto;
  color: var(--charcoal); font-size: 16px; line-height: 2.2;
}
.article-content p { margin: 0 0 1.75em; white-space: pre-line; }
.article-content h2 {
  margin: 82px 0 30px; color: var(--black); font-size: 27px;
  font-weight: 600; letter-spacing: 0.01em; line-height: 1.65;
}
.article-content h3 {
  margin: 58px 0 24px; color: var(--black); font-size: 20px;
  font-weight: 600; line-height: 1.7;
}
.article-content a {
  color: var(--black); font-weight: 600; text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 4px;
}
.article-content a:hover { text-decoration-thickness: 2px; }
.article-figure { margin: 52px 0 58px; }
.article-figure img {
  width: auto; max-width: 100%; height: auto; margin: 0 auto;
  object-fit: contain; background: var(--surface-soft);
}
.article-figure figcaption {
  margin-top: 12px; color: var(--warm-gray); font-size: 12px;
  line-height: 1.8; text-align: center;
}
.article-media-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px; margin: 52px 0 58px;
}
.article-media-grid .article-figure { margin: 0; }
.article-media-grid .article-figure img { width: 100%; height: 100%; object-fit: cover; }
.article-navigation {
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 32px; align-items: center; width: min(980px, calc(100% - 40px));
  margin: 90px auto 0; padding: 42px 0 96px; border-top: 1px solid var(--light-gray);
}
.article-navigation a { min-width: 0; color: var(--black); }
.article-navigation a > span {
  display: block; margin-bottom: 8px; color: var(--warm-gray);
  font-size: 11px; line-height: 1.5;
}
.article-navigation a > strong {
  display: block; max-width: 330px; font-size: 13px; font-weight: 600;
  line-height: 1.8;
}
.article-navigation__index {
  padding: 11px 20px; border: 1px solid var(--black); font-size: 12px;
  font-weight: 600; text-align: center;
}
.article-navigation__index:hover { background: var(--black); color: var(--white); }
.article-navigation__older { text-align: right; justify-self: end; }
.article-navigation__newer:hover strong,
.article-navigation__older:hover strong { text-decoration: underline; text-underline-offset: 4px; }
.blog-index-page .blog-grid { margin-bottom: 0; }
.blog-index-page .blog-card { border-bottom: 1px solid var(--light-gray); }
.blog-index-page .blog-card-body { padding-inline: 4px; }

@media (prefers-reduced-motion: reduce) {
  .blog-card-img img { transition: none; }
}

@media (max-width: 768px) {
  .article-page main { padding-top: calc(var(--header-h) + 36px); }
  .article-breadcrumbs { width: calc(100% - 20px); font-size: 11px; }
  .article-breadcrumbs li:last-child { width: 100%; color: var(--charcoal); }
  .article-header { width: calc(100% - 20px); padding: 40px 0 58px; }
  .article-kicker { margin-bottom: 16px; }
  .article-title { margin-bottom: 22px; font-size: 22px; line-height: 1.65; }
  .article-meta { gap: 6px 20px; }
  .article-cover { margin-top: 38px; }
  .article-content { width: calc(100% - 40px); font-size: 16px; line-height: 2.15; }
  .article-content h2 { margin: 68px 0 24px; font-size: 22px; line-height: 1.65; }
  .article-content h3 { margin: 48px 0 20px; font-size: 18px; }
  .article-figure { margin: 42px 0 48px; }
  .article-media-grid { gap: 10px; margin: 42px 0 48px; }
  .article-navigation {
    display: flex; flex-direction: column; align-items: stretch; gap: 28px;
    width: calc(100% - 40px); margin-top: 72px; padding: 34px 0 68px;
  }
  .article-navigation__index { order: -1; }
  .article-navigation__older { text-align: left; justify-self: auto; }
  .article-navigation a > strong { max-width: none; }
}

/* =====================
   SCHEDULE
   ===================== */
.schedule-note {
  font-size: 14px; color: var(--warm-gray); text-align: center; margin-top: 24px;
}
.schedule-page .subpage-content { background: var(--surface-subtle); }
.schedule-intro { max-width: 640px; margin: 0 auto 44px; }
.schedule-intro h2 {
  margin-bottom: 14px; font-size: 28px; line-height: 1.4; color: var(--charcoal);
}
.schedule-intro > p:last-child {
  margin: 0; font-size: 15px; line-height: 2; color: var(--warm-gray);
}
.schedule-eyebrow {
  margin-bottom: 9px !important; color: var(--black); font-size: 11px !important;
  font-weight: 700; letter-spacing: 0.18em; line-height: 1.4 !important;
}
.schedule-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 24px;
  border: 1px solid var(--light-gray); background: var(--light-gray); gap: 1px;
}
.schedule-fact { min-height: 126px; padding: 24px 26px; background: var(--white); }
.schedule-fact span {
  display: block; margin-bottom: 9px; color: var(--black); font-size: 10px;
  font-weight: 700; letter-spacing: 0.16em;
}
.schedule-fact strong {
  display: block; color: var(--charcoal); font-size: 18px; line-height: 1.5;
}
.schedule-fact small {
  display: block; margin-top: 6px; color: var(--warm-gray); font-size: 12px; line-height: 1.6;
}
.schedule-calendar-card {
  overflow: hidden; border: 1px solid var(--light-gray); background: var(--white);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.08);
}
.schedule-calendar-bar {
  display: flex; align-items: center;
  padding: 16px 20px; background: var(--charcoal); color: var(--white);
}
.schedule-calendar-bar p { display: flex; align-items: center; gap: 10px; margin: 0; font-size: 13px; font-weight: 600; }
.schedule-live-dot {
  width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}
.schedule-calendar-frame { padding: 14px; background: var(--surface-soft); }
.schedule-calendar-frame iframe {
  display: block; width: 100%; height: 680px; border: 0; background: var(--white);
  filter: grayscale(1) contrast(1.02);
}
.schedule-calendar-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px;
}
.schedule-calendar-footer > p { max-width: 420px; margin: 0; color: var(--warm-gray); font-size: 12px; line-height: 1.8; }
.schedule-calendar-actions { display: flex; align-items: center; gap: 20px; }
.schedule-calendar-actions .btn { min-height: 46px; padding: 12px 20px; font-size: 12px; }
.schedule-calendar-link { font-size: 12px; font-weight: 600; border-bottom: 1px solid currentColor; }
.schedule-calendar-link:hover { opacity: 0.58; }
.schedule-visit-note {
  margin-top: 52px; padding: 32px 36px; border-left: 3px solid var(--black); background: var(--white);
}
.schedule-visit-note h2 { margin-bottom: 18px; font-size: 18px; }
.schedule-visit-note ul { display: grid; gap: 8px; }
.schedule-visit-note li {
  position: relative; padding-left: 18px; color: var(--dark-brown); font-size: 14px; line-height: 1.9;
}
.schedule-visit-note li::before { content: '・'; position: absolute; left: 0; color: var(--black); font-weight: 700; }

@media (max-width: 640px) {
  .schedule-intro { margin-bottom: 32px; padding: 0 10px; }
  .schedule-intro h2 { font-size: 22px; }
  .schedule-intro > p:last-child { font-size: 14px; }
  .schedule-facts { grid-template-columns: 1fr 1fr; margin-inline: 0; }
  .schedule-fact { min-height: 116px; padding: 20px 16px; }
  .schedule-fact:first-child { grid-column: 1 / -1; }
  .schedule-fact strong { font-size: 16px; }
  .schedule-calendar-bar { padding: 14px 16px; }
  .schedule-calendar-frame { padding: 7px; }
  .schedule-calendar-frame iframe { height: 620px; }
  .schedule-calendar-footer { align-items: stretch; flex-direction: column; padding: 18px 16px 20px; }
  .schedule-calendar-footer > p { max-width: none; }
  .schedule-calendar-actions { align-items: stretch; flex-direction: column-reverse; gap: 16px; }
  .schedule-calendar-actions .btn { width: 100%; }
  .schedule-calendar-link { align-self: center; }
  .schedule-visit-note { margin-top: 40px; padding: 26px 20px; }
  .schedule-visit-note h2 { font-size: 17px; }
}

/* =====================
   SNS / FOLLOW US
   ===================== */
.sns-tags {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 32px 0;
}
.sns-tags span {
  font-size: 13px; color: var(--black); background: var(--surface-soft);
  padding: 4px 12px; border-radius: 20px; opacity: 0.8;
}

/* =====================
   ACCESS
   ===================== */
.access-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.access-map {
  aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden;
  background: var(--light-gray);
}
.access-map iframe { width: 100%; height: 100%; border: 0; }
.access-info dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; }
.access-info dt { font-size: 13px; font-weight: 600; color: var(--warm-gray); padding: 8px 0; }
.access-info dd { font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--light-gray); }
.access-info dd:last-child { border-bottom: none; }

/* =====================
   STAFF
   ===================== */
.staff-section p { font-size: 15px; line-height: 2; margin-bottom: 24px; color: var(--dark-brown); }
.staff-section .note { font-size: 13px; color: var(--warm-gray); }
.recruit-page .subpage-content { background: var(--surface-subtle); }
.recruit-section { margin-bottom: 72px; }
.recruit-section h2,
.recruit-entry h2 { margin-bottom: 24px; font-size: 24px; line-height: 1.5; }
.recruit-section > p { max-width: 760px; }
.recruit-section-label {
  margin-bottom: 10px !important; color: var(--black); font-size: 10px !important;
  font-weight: 700; letter-spacing: 0.18em; line-height: 1.4 !important;
}
.recruit-text-link {
  display: inline-block; padding-bottom: 2px; border-bottom: 1px solid currentColor;
  color: var(--charcoal); font-size: 13px; font-weight: 600;
}
.recruit-text-link:hover { opacity: 0.58; }
.recruit-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.recruit-columns .recruit-section {
  padding: 34px; border: 1px solid var(--light-gray); background: var(--white);
}
.recruit-list { display: grid; gap: 10px; margin: 24px 0; }
.recruit-list li {
  position: relative; padding-left: 19px; color: var(--dark-brown); font-size: 14px; line-height: 1.9;
}
.recruit-list li::before { content: '・'; position: absolute; left: 0; color: var(--black); font-weight: 700; }
.recruit-note { color: var(--warm-gray); font-size: 13px; line-height: 1.9; }
.recruit-requirements .info-table { margin-bottom: 22px; background: var(--white); }
.recruit-requirements .info-table th { width: 170px; }
.recruit-requirements .info-table th,
.recruit-requirements .info-table td { vertical-align: top; }
.recruit-points { padding: 36px; border-left: 3px solid var(--black); background: var(--white); }
.recruit-points .recruit-list { grid-template-columns: 1fr 1fr; margin-bottom: 0; }
.recruit-entry { padding: 58px 24px; border: 1px solid var(--light-gray); background: var(--white); }
.recruit-entry > p { margin-bottom: 30px; }
.recruit-entry-actions { display: flex; align-items: center; justify-content: center; gap: 28px; }

@media (max-width: 768px) {
  .recruit-section { margin-bottom: 52px; }
  .recruit-section h2,
  .recruit-entry h2 { font-size: 20px; }
  .recruit-columns { grid-template-columns: 1fr; gap: 16px; }
  .recruit-columns .recruit-section { margin-bottom: 0; padding: 26px 20px; }
  .recruit-requirements .info-table th { width: 110px; }
  .recruit-points { padding: 28px 20px; }
  .recruit-points .recruit-list { grid-template-columns: 1fr; }
  .recruit-entry { padding: 42px 20px; }
  .recruit-entry-actions { align-items: stretch; flex-direction: column; gap: 22px; }
  .recruit-entry-actions .btn { width: 100%; }
  .recruit-entry-actions .recruit-text-link { align-self: center; }
}

/* =====================
   FOOTER
   ===================== */
.footer { background: #000; color: var(--off-white); padding: 50px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .header-logo {
  width: 160px; height: 131px; margin-bottom: 16px;
  background: url('../images/logo-original-white.png') center/contain no-repeat;
  font-size: 0;
}
.footer-brand .header-logo .logo-icon,
.footer-brand .header-logo > span:last-child { display: none; }
.footer-brand p { font-size: 13px; color: var(--medium-gray); line-height: 1.6; }
.footer h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--white); opacity: 0.62; margin-bottom: 16px; text-transform: uppercase; }
.footer-nav a { display: block; font-size: 13px; color: var(--medium-gray); padding: 4px 0; transition: color 0.2s; }
.footer-nav a:hover { color: var(--off-white); }
.footer-info p { font-size: 13px; color: var(--medium-gray); line-height: 1.6; margin-bottom: 4px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--medium-gray); transition: color 0.2s;
}
.footer-social a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12px; color: var(--warm-gray);
}

/* =====================
   MOBILE FIXED BAR
   ===================== */
.mobile-action-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--charcoal); height: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.mobile-action-bar .container {
  display: grid; grid-template-columns: repeat(3, 1fr); height: 100%;
}
.mobile-action-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--off-white); font-size: 10px; font-weight: 500; gap: 4px;
}
.mobile-action-bar a svg { width: 20px; height: 20px; }

/* =====================
   MOBILE MENU OVERLAY
   ===================== */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: #000; overflow-y: auto;
  flex-direction: column; align-items: center; padding: 80px 24px 48px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  width: min(100%, 420px); font-size: 20px; font-weight: 400; line-height: 29px; color: #fff;
  text-align: center; padding: 17px 0; border: 0;
}
.mobile-nav-close {
  position: absolute; top: 30px; right: max(24px, calc((100vw - 1036px) / 2));
  color: #fff; font-size: 32px; cursor: pointer;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .visit-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container, .container-narrow { width: calc(100% - 20px); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  html { scroll-padding-top: 60px; }
  .container, .container-narrow { width: 100%; padding-inline: 10px; }
  .section-padding { padding: 62px 0; }
  .section-title { font-size: 18px; line-height: 1.3; margin-bottom: 44px; }
  .section-subtitle { font-size: 16px; line-height: 2.4; margin-bottom: 40px; }
  .header > .container > .header-logo { width: 88px; height: 80px; }
  .mobile-menu-btn { width: 36px; height: 24px; margin-right: 24px; }
  .hero { width: calc(100% - 20px); aspect-ratio: 1151 / 768; height: auto; margin-top: 77px; border-radius: 0; }
  .hero-logo { width: 300px; }
  .hero-intro { padding: 58px 0 50px; }
  .hero-title { font-size: 20px; line-height: 1.3; margin-bottom: 44px; }
  .about-copy { margin: 0; padding: 0; }
  .about-copy p, .about-copy .about-lead { font-size: 16px; line-height: 2.4; margin: 0; }
  .concept-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-content { grid-template-columns: 1fr; gap: 46px; }
  .story-text .section-title { font-size: 18px; }
  .visit-grid { grid-template-columns: 1fr; }
  .menu-layout { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .party-layout { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: 1fr; }
  .access-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .mobile-action-bar { display: none; }
  body { padding-bottom: 0; }
  .header-actions .btn-accent { display: none; }
  .mobile-nav { padding-top: 64px; }
  .mobile-nav-close { top: 14px; right: 18px; }
}

@media (max-width: 520px) {
  .hero-logo { width: 200px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 20px; }
}

/* 元サイトと同じく、コンテンツはアニメーションなしで表示 */
.fade-in,
.fade-in.visible { opacity: 1; transform: none; transition: none; }

/* --- Subpage shared --- */
.subpage-hero { padding: 154px 0 72px; background: var(--white); text-align: center; border-bottom: 1px solid var(--light-gray); }
.subpage-hero .kicker { color: var(--charcoal); }
.subpage-hero .section-title { color: var(--charcoal); font-size: 30px; margin-bottom: 18px; }
.subpage-hero p { color: var(--dark-brown); max-width: 600px; line-height: 2.4; margin: 0 auto; }
.subpage-content { padding: 76px 0; }
.subpage-content h3 { font-size: 20px; margin-bottom: 24px; }
.subpage-content p { margin-bottom: 24px; line-height: 2.2; }

.info-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.info-table th, .info-table td { padding: 18px 20px; border-bottom: 1px solid var(--light-gray); text-align: left; }
.info-table th { width: 140px; font-weight: 600; color: var(--charcoal); background: var(--white); }
.info-table td { color: var(--dark-brown); }

.back-link {
  display: inline-flex; align-items: center; gap: 6px; color: var(--black);
  border-bottom: 1px solid currentColor; font-weight: 500; margin-top: 40px;
}
.back-link:hover { opacity: 0.58; }

@media (max-width: 768px) {
  .subpage-hero { padding: 112px 0 54px; }
  .subpage-hero .section-title { font-size: 20px; }
  .subpage-content { padding: 62px 0; }
  .info-table th { width: 100px; font-size: 14px; }
  .info-table th, .info-table td { padding: 16px 14px; }
}

/* =====================
   HOME — ORIGINAL SITE DIRECTION
   ===================== */
.home-page section { background: #fff; }
.home-page .section-title { color: var(--dark-brown); }
.home-page .btn {
  min-width: 220px; min-height: 61px; padding: 16px 28px;
  border-radius: 10px; font-size: 14px; font-weight: 700;
}
.home-page .btn-primary,
.home-page .btn-accent {
  background: var(--black); color: var(--white); border-color: var(--black);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}
.home-page .btn-primary:hover,
.home-page .btn-accent:hover {
  background: var(--white); color: var(--black); border-color: var(--black);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1); transform: translateY(-2px);
}
.inline-detail-link { padding-bottom: 2px; border-bottom: 1px solid currentColor; font-weight: 600; }
.inline-detail-link:hover { opacity: 0.58; }
.section-small-title { font-size: 16px; line-height: 1.5; margin-bottom: 34px; }

.home-page #story { padding: 54px 0 51px; }
.home-page .story-img { aspect-ratio: 1; }
.home-page #story .story-img { margin-top: 8px; }
.home-page .story-text .section-title { margin-bottom: 42px; }

.concept-lead-layout {
  display: grid; grid-template-columns: 409px 409px; gap: 162px; align-items: start;
}
.concept-lead { padding-top: 26px; }
.concept-lead .section-title { margin-bottom: 42px; }
.concept-lead .section-subtitle { margin: 0; }
.concept-main-img { aspect-ratio: 1; overflow: hidden; }
.concept-main-img img { width: 100%; height: 100%; object-fit: cover; }
.home-page #concept { padding: 0 0 54px; }
.home-page #concept .concept-grid { gap: 54px; margin-top: 79px; }
.home-page #concept .concept-card h3 { margin-bottom: 30px; }
.home-page #concept .concept-card p { text-align: left; font-size: 14px; line-height: 2; }

.home-page #gallery { padding: 78px 0 76px; overflow: hidden; }
.home-page #gallery .section-title { font-size: 30px; margin-bottom: 54px; }
.gallery-carousel { position: relative; }
.home-page .gallery-grid {
  --gallery-slide-width: min(870px, calc(100vw - 170px));
  display: flex; gap: 20px; overflow-x: auto;
  padding: 0 max(20px, calc((100% - var(--gallery-slide-width)) / 2)) 10px;
  scroll-padding-inline: max(20px, calc((100% - var(--gallery-slide-width)) / 2));
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; overscroll-behavior-inline: contain; cursor: grab;
}
.home-page .gallery-grid:active { cursor: grabbing; }
.home-page .gallery-grid.is-dragging { scroll-snap-type: none; user-select: none; }
.home-page .gallery-grid:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }
.home-page .gallery-grid::-webkit-scrollbar { display: none; }
.home-page .gallery-item {
  flex: 0 0 var(--gallery-slide-width); aspect-ratio: 3 / 2;
  border: 1px solid var(--light-gray); border-radius: 0;
  scroll-snap-align: center; scroll-snap-stop: always;
  opacity: 0.42; transform: scale(0.965);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.home-page .gallery-item.is-active { opacity: 1; transform: scale(1); }
.home-page .gallery-item:hover img { transform: none; }
.gallery-toolbar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 28px; margin-top: 28px; padding-inline: 55px;
}
.gallery-status {
  display: flex; align-items: center; gap: 18px; margin: 0;
  color: var(--charcoal); font-size: 13px; text-align: left;
}
.gallery-status-count {
  flex: 0 0 auto; font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
}
.gallery-status-caption { color: var(--warm-gray); }
.gallery-dots { display: flex; align-items: center; justify-content: center; gap: 0; margin: 0; }
.gallery-dot {
  position: relative; width: 44px; height: 44px; border: 0; color: var(--black);
}
.gallery-dot::before {
  content: ''; position: absolute; left: 50%; top: 50%; width: 7px; height: 7px;
  border-radius: 999px; background: #BDBDBD; transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}
.gallery-dot.active::before { width: 24px; height: 3px; background: var(--black); }
.gallery-nav { display: flex; justify-content: flex-end; gap: 8px; }
.gallery-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--black);
  background: var(--white); color: var(--black);
  transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.gallery-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.gallery-arrow:hover:not(:disabled) { background: var(--black); color: var(--white); }
.gallery-arrow:disabled { opacity: 0.22; cursor: default; }
.gallery-dot:focus-visible,
.gallery-arrow:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .home-page .gallery-grid { scroll-behavior: auto; }
  .home-page .gallery-item,
  .gallery-dot::before,
  .gallery-arrow { transition: none; }
}

.home-page #party { padding: 0 0 39px; }
.home-page #party .section-title { margin-bottom: 34px; }
.home-page .party-info p {
  margin-bottom: 0; color: var(--dark-brown); font-size: 16px; line-height: 2.4;
}
.home-page #menu { padding: 0 0 82px; }
.home-page #menu .section-title { margin-bottom: 30px; }
.home-page #menu .section-subtitle { margin: 0 auto 36px; }

.home-page #rules { padding: 0 0 31px; }
.home-page .rules-content {
  max-width: 900px; padding: 10px; border: 1px solid #e3e3e3; text-align: left;
}
.home-page .rules-content .section-title {
  font-size: 22px; line-height: 1.3; margin: 24.2px 0 1px; padding-bottom: 50px; text-align: center;
}
.home-page .rules-content > p,
.home-page .rules-note {
  padding: 3px 2px; margin: 1px 0; font-size: 15px; line-height: 24px; color: var(--dark-brown);
}
.home-page .rules-content h3 {
  padding: 10px; margin: 20px 0; font-size: 16px; line-height: 1.3; text-align: center;
}
.home-page .rules-list { margin: 0 0 30px; list-style: none; }
.home-page .rules-list li {
  min-height: 34px; padding: 5px 0 5px 27.2px; border: 0;
  font-size: 16px; line-height: 24px; color: var(--dark-brown); text-align: left;
}
.home-page .rules-list li::before { content: '•'; left: 8px; color: var(--black); }

.home-page #staff,
.home-page #schedule { padding: 70px 0; border-top: 1px solid #efefef; }
.home-page #staff { padding-bottom: 59px; }
.home-page #schedule { padding-bottom: 92px; }
.home-page #staff .section-title,
.home-page #schedule .section-title { font-size: 30px; margin-bottom: 50px; }
.home-page .staff-section p,
.home-page #schedule .section-subtitle { font-size: 16px; line-height: 2.4; margin-bottom: 0; color: var(--dark-brown); }
.home-page .staff-section .note { font-size: 16px; color: var(--medium-gray); }
.home-page .staff-section .btn { margin-top: 42px !important; }
.home-page #schedule .btn { margin-top: 38px; }

.home-page #blog { padding: 70px 0 76px; border-top: 1px solid #efefef; }
.home-page #blog .section-title { font-size: 30px; margin-bottom: 48px; }
.home-page #blog .section-subtitle { margin-bottom: 52px; }
.home-page .blog-grid {
  grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 42px;
}
.home-page .blog-card { border: 0; box-shadow: none; }
.home-page .blog-card-img { aspect-ratio: 233 / 199; }
.home-page .blog-card-body { min-height: 92px; padding: 14px 8px 8px; }
.home-page .blog-card h3 { margin: 0; font-size: 14px; line-height: 1.8; text-align: left; }

.home-page #sns { padding: 70px 0 58px; border-top: 1px solid #efefef; }
.home-page #sns .section-title { font-size: 30px; margin-bottom: 32px; }
.home-page #sns .section-subtitle { margin-bottom: 20px; }
.instagram-link { display: inline-block; }
.instagram-link svg {
  display: block; width: 58px; height: 58px; color: var(--black);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.instagram-link:hover svg { opacity: 0.58; transform: translateY(-2px); }
.home-page .sns-tags {
  display: block; max-width: 760px; margin: 22px auto 0; padding: 0;
  background: none; color: var(--dark-brown); font-size: 15px; line-height: 2;
}

.home-page #access { padding: 70px 0 0; border-top: 1px solid #dedede; }
.home-page .access-layout { grid-template-columns: 409px 1fr; gap: 45px; align-items: start; }
.home-page .access-info { order: -1; }
.home-page .access-info .section-title { font-size: 30px; margin-bottom: 32px; text-align: center; }
.home-page .access-info dl { display: block; }
.home-page .access-info dt,
.home-page .access-info dd {
  display: inline; padding: 0; border: 0; font-size: 14px; line-height: 2; color: var(--dark-brown);
}
.home-page .access-info dt { font-weight: 700; }
.home-page .access-info dt::before { content: ''; display: block; }
.home-page .access-info dd::after { content: ''; display: block; }
.home-page .access-contact { margin-top: 8px; font-size: 14px; line-height: 2; }
.home-page .access-contact a { font-weight: 600; text-decoration: underline; }
.home-page .access-map { aspect-ratio: 1; }

.home-footer { min-height: 360px; padding: 66px 0 48px; text-align: center; }
.home-footer .footer-logo { width: 200px; margin: 0 auto 42px; }
.home-footer .footer-address { color: #fff; font-size: 11px; line-height: 1.7; }

@media (max-width: 1024px) and (min-width: 769px) {
  .concept-lead-layout { grid-template-columns: 1fr 1fr; gap: 60px; }
  .home-page .gallery-item { flex-basis: calc(100vw - 154px); }
  .home-page .access-layout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .home-page .section-title { font-size: 18px; }
  .home-page #story { padding: 36px 0 123px; }
  .home-page #story .story-img { margin-top: 0; }
  .home-page .story-content { gap: 46px; }
  .home-page .story-img { aspect-ratio: 1; }
  .home-page .story-text .section-title { margin-bottom: 50px; }
  .home-page .story-text blockquote,
  .home-page .story-text p { font-size: 16px; line-height: 2.4; }

  .home-page #concept { padding: 0 0 66px; }
  .concept-lead-layout { display: flex; flex-direction: column; gap: 22px; }
  .concept-lead { padding-top: 0; }
  .concept-lead .section-title { margin-bottom: 60px; }
  .concept-lead .section-subtitle { text-align: left; margin-bottom: 0; }
  .concept-main-img { width: 100%; aspect-ratio: 1; }
  .home-page #concept .concept-grid { gap: 58px; margin-top: 64px; }
  .home-page #concept .concept-card h3 { font-size: 20px; margin-bottom: 40px; }
  .home-page #concept .concept-card p { font-size: 14px; line-height: 2; }

  .home-page #gallery { padding: 68px 0 66px; }
  .home-page #gallery .section-title { font-size: 20px; margin-bottom: 48px; }
  .home-page .gallery-grid {
    --gallery-slide-width: min(84vw, 328px); gap: 12px;
    padding-inline: calc((100% - var(--gallery-slide-width)) / 2);
    scroll-padding-inline: calc((100% - var(--gallery-slide-width)) / 2);
  }
  .home-page .gallery-item { aspect-ratio: 3 / 2; }
  .gallery-toolbar {
    grid-template-columns: 1fr auto; grid-template-areas: 'status nav' 'dots dots';
    gap: 14px 12px; margin-top: 20px; padding-inline: 20px;
  }
  .gallery-status { grid-area: status; gap: 12px; min-width: 0; }
  .gallery-status-caption { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .gallery-dots { grid-area: dots; }
  .gallery-nav { grid-area: nav; }
  .gallery-arrow { width: 44px; height: 44px; }

  .home-page #party { padding: 0 0 28px; }
  .home-page #party .section-title { font-size: 18px; margin-bottom: 34px; }
  .home-page .party-info p { font-size: 16px; line-height: 2.4; }
  .section-small-title { font-size: 16px; margin-bottom: 34px; }
  .home-page #menu { padding: 0 0 96px; }
  .home-page #menu .section-title { margin-bottom: 24px; }
  .home-page #menu .section-subtitle { text-align: center; margin-bottom: 36px; }

  .home-page #rules { padding: 0; }
  .home-page .rules-content { padding: 10px; }
  .home-page .rules-content .section-title { font-size: 22px; }
  .home-page .rules-content > p,
  .home-page .rules-note { font-size: 15px; line-height: 24px; }
  .home-page .rules-content h3 { font-size: 16px; line-height: 1.3; }

  .home-page #staff { padding: 19px 0 52px; }
  .home-page #schedule { padding: 66px 0; }
  .home-page #staff .section-title,
  .home-page #schedule .section-title { font-size: 20px; margin-bottom: 50px; }
  .home-page .staff-section p,
  .home-page #schedule .section-subtitle { font-size: 16px; line-height: 2.4; }

  .home-page #blog { padding: 86px 0 66px; }
  .home-page #blog .section-title { font-size: 20px; margin-bottom: 48px; }
  .home-page #blog .section-subtitle { margin-bottom: 52px; }
  .home-page .blog-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 42px; }
  .home-page .blog-card-img { aspect-ratio: 353 / 199; }
  .home-page .blog-card-body { min-height: 81px; padding: 12px 8px 8px; }
  .home-page .blog-card h3 { font-size: 16px; line-height: 1.8; }

  .home-page #sns { padding: 66px 0 58px; }
  .home-page #sns .section-title { font-size: 20px; margin-bottom: 32px; }
  .home-page #sns .section-subtitle { margin-bottom: 20px; }
  .home-page .sns-tags { font-size: 15px; line-height: 2; margin-top: 22px; }

  .home-page #access { padding: 66px 0 0; }
  .home-page .access-layout { grid-template-columns: 1fr; gap: 58px; }
  .home-page .access-info .section-title { font-size: 20px; margin-bottom: 32px; }
  .home-page .access-info dt,
  .home-page .access-info dd { font-size: 16px; line-height: 1.9; }
  .home-page .access-contact { font-size: 16px; line-height: 1.9; }
  .home-page .access-map { aspect-ratio: 1; }

  .home-footer { min-height: 360px; padding: 66px 0 48px; }
  .home-footer .footer-logo { width: 200px; margin-bottom: 42px; }
}
