:root {
  --gold: #a6864f;
  --gold-light: #e3d3b8;
  --rose: #d27382;
  --green: #d27382;
  --footer-gold: #f6ebf3;
  --bg: #ffffff;
  --bg-alt: #f8f2ee;
  --ink: #4b5563;
  --ink-light: #6b7280;
  --border: #e5e7eb;
  --font-jp: "Zen Old Mincho", serif;
  --font-en: "Cormorant Garamond", serif;
  --font-script: "Cormorant Garamond", serif;
  --rose-muted: #dd9aa6;
  --gold-muted: #cba86f;
  --gradient-primary: linear-gradient(135deg, var(--rose-muted), var(--gold-muted));
  --gradient-primary-hover: linear-gradient(135deg, var(--gold-muted), var(--rose-muted));
  --gradient-gold-shine: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

/* Scroll reveal (class added by script.js; no-JS visitors see everything immediately) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-weight: 700;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav ul {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.site-nav ul a:hover {
  color: var(--green);
}

.site-nav ul a.active {
  color: var(--ink);
  font-weight: 700;
}

.btn-contact {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(154, 110, 82, 0.25);
  transition: background 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-contact:hover,
.btn-contact:focus-visible {
  background: var(--gradient-primary-hover);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 20px rgba(154, 110, 82, 0.35);
}

/* Bottom contact bar (always visible) */
body.has-bottom-bar {
  padding-bottom: 60px;
}

.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: flex;
  background: var(--gradient-primary);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.35s ease;
}

.bottom-bar.bottom-bar-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.contact-popover {
  position: fixed;
  z-index: 800;
  width: 230px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  padding: 0.5rem;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-popover.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-popover a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.contact-popover a:hover,
.contact-popover a:focus-visible {
  background: var(--bg-alt);
}

.contact-popover a svg {
  flex-shrink: 0;
  color: var(--gold);
}

.bottom-bar-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.5rem;
  color: #fff;
  letter-spacing: 0.02em;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.25s ease;
}

.bottom-bar-item:first-child {
  border-left: none;
}

.bottom-bar-item:hover,
.bottom-bar-item:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.bottom-bar-item svg {
  flex-shrink: 0;
}

.bottom-bar-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}

.bottom-bar-label {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.bottom-bar-value {
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 480px) {
  body.has-bottom-bar {
    padding-bottom: 60px;
  }

  .bottom-bar-item {
    padding: 0.55rem 0.4rem;
    gap: 0.35rem;
  }

  .bottom-bar-label {
    font-size: 0.6rem;
  }

  .bottom-bar-value {
    font-size: 0.72rem;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

/* Hero (Top page) */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.15), rgba(17, 24, 39, 0.45));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(246, 235, 243, 0) 0%, var(--footer-gold) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--font-en);
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
  opacity: 0;
  animation: hero-fade-up 0.8s ease 2.3s forwards;
}

.hero h1 {
  font-family: "Beau Rivage", cursive;
  font-size: 4.5rem;
  line-height: 1.4;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  clip-path: inset(0 100% 0 0);
  animation: handwrite-reveal 2s cubic-bezier(0.65, 0, 0.35, 1) 0.1s forwards;
}

@keyframes handwrite-reveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 {
    clip-path: none;
    animation: none;
  }

  .hero-eyebrow,
  .hero-sub-jp,
  .hero-sub {
    opacity: 1;
    animation: none;
  }
}

.hero-sub-jp {
  margin-top: 0.75rem;
  color: var(--gold-light);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  opacity: 0;
  animation: hero-fade-up 0.8s ease 2.5s forwards;
}

.hero-sub {
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  margin: 2.5rem 0 2rem;
  opacity: 0;
  animation: hero-fade-up 0.8s ease 2.7s forwards;
}

.hero .btn-contact {
  display: inline-block;
}


/* Page banner (subpages) */
.page-banner {
  position: relative;
  height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(210, 115, 130, 0.25), rgba(255, 255, 255, 0.55));
}

.page-banner .banner-title,
.page-banner .banner-sub {
  position: relative;
  z-index: 1;
}

.banner-title {
  font-family: var(--font-script);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 1rem;
}

.banner-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--gradient-gold-shine);
}

.banner-sub {
  margin-top: 0.5rem;
  color: var(--ink-light);
  letter-spacing: 0.1em;
}

/* Preview sections (Top page) */
.preview-section {
  padding: 5rem 2rem;
  text-align: center;
}

.preview-eyebrow {
  font-family: var(--font-script);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 1rem;
}

.preview-eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--gradient-gold-shine);
}

.preview-sub {
  margin: 0.5rem 0 3rem;
  color: var(--ink-light);
  letter-spacing: 0.05em;
}

.preview-section.on-green {
  background: linear-gradient(180deg, var(--footer-gold), var(--bg) 90%);
}

.preview-more {
  display: inline-block;
  margin-top: 2.5rem;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.7rem 1.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(154, 110, 82, 0.25);
  transition: background 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.preview-more:hover,
.preview-more:focus-visible {
  background: var(--gradient-primary-hover);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 20px rgba(154, 110, 82, 0.35);
}

/* Values (About) */
.values-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.values-grid::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: var(--gradient-gold-shine);
  z-index: 0;
}

.value-item {
  position: relative;
  z-index: 1;
}

.value-circle {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(166, 134, 79, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.value-circle span {
  font-family: "Prata", serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  transition: color 0.3s ease;
}

.value-circle:hover {
  transform: scale(1.08);
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(166, 134, 79, 0.28);
}

.value-circle:hover span {
  color: #fff;
}

.value-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.value-item p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-grid::before {
    display: none;
  }

  .value-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 3rem;
    background: linear-gradient(180deg, var(--gold), transparent);
    z-index: 0;
  }
}

/* Intro block (subpages) */
.intro-block {
  max-width: 960px;
  margin: 0 auto;
  padding: 4.5rem 2rem 3rem;
  text-align: center;
}

.intro-block h2 {
  font-size: 1.3rem;
  font-weight: 500;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.intro-block p {
  color: var(--ink-light);
}

/* Sections */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-en);
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.section-text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-light);
}

.faq {
  background: var(--bg-alt);
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.concept {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

/* Concept */
.concept-block {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 5rem;
}

.concept-block.reverse {
  flex-direction: row-reverse;
}

.concept-img {
  width: 58%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.concept-text {
  background: #fff;
  width: 46%;
  margin-left: -12%;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.concept-block.reverse .concept-text {
  margin-left: 0;
  margin-right: -12%;
}

.concept-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}

.concept-text p {
  color: var(--ink-light);
  font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-alt);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(210, 115, 130, 0.4), rgba(255, 255, 255, 0.55));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 0.35;
}

.gallery-word {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 14px);
  opacity: 0;
  color: #fff;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover .gallery-word,
.carousel-slide:hover .gallery-word {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Carousel */
.carousel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 4px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(210, 115, 130, 0.4), rgba(255, 255, 255, 0.55));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.carousel-slide:hover::after {
  opacity: 0.35;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
}

.carousel-arrow:hover {
  background: #fff;
}

.carousel-arrow.prev {
  left: -22px;
}

.carousel-arrow.next {
  right: -22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dots .dot.active {
  background: var(--gradient-primary);
}

/* Staff */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.staff-card {
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.staff-card:hover {
  box-shadow: 0 14px 32px rgba(166, 134, 79, 0.14);
  transform: translateY(-4px);
  border-color: var(--gold-muted);
}

.staff-en {
  font-family: var(--font-en);
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.staff-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.staff-card h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0.9rem auto 0;
}

.staff-role {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}

.staff-desc {
  color: var(--ink-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.staff-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s ease;
}

.staff-instagram:hover {
  color: var(--rose);
}

/* Menu */
.menu-category {
  font-family: var(--font-en);
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin: 2.5rem 0 0.5rem;
}

.menu-category:first-of-type {
  margin-top: 0;
}

.menu-sub {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
  font-size: 0.8rem;
  color: var(--ink-light);
  letter-spacing: 0.1em;
  padding-top: 0.75rem;
}

.menu-list {
  max-width: 480px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-price {
  color: var(--gold);
  font-family: var(--font-en);
}

.menu-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--ink-light);
}

/* FAQ */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.faq-category {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-category:first-of-type {
  margin-top: 0;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--ink-light);
}

/* Privacy Policy */
.privacy-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.privacy-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.privacy-item:first-child {
  padding-top: 0;
}

.privacy-item:last-child {
  border-bottom: none;
}

.privacy-item h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.privacy-item p {
  color: var(--ink-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.privacy-date {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: right;
  font-size: 0.8rem;
  color: var(--ink-light);
}

/* Access */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
  align-items: start;
}

.access-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.access-map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 4px;
}

.access-info dt {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.access-info dt:first-child {
  margin-top: 0;
}

.access-info dd {
  margin: 0.25rem 0 0;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--footer-gold), #f3e0d8);
  color: #4a4130;
  text-align: center;
  padding: 3rem 2rem 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-links.secondary {
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #6b5f42;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-sub-jp {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .concept-block,
  .concept-block.reverse {
    flex-direction: column;
  }

  .concept-img {
    width: 100%;
  }

  .concept-text,
  .concept-block.reverse .concept-text {
    width: 100%;
    margin: -2rem 1rem 0;
    padding: 1.5rem;
  }

  .staff-grid {
    grid-template-columns: 1fr;
  }

  .staff-card {
    padding: 2rem 1.5rem;
  }

}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
