/* =============================================
   RE:PEACE Official Website - Custom Styles
   ============================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=WDXL+Lubrifont+JP+N&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --color-bg: #fdfaf7;
  --color-primary: #b5808c;
  --color-primary-light: #d4a0ac;
  --color-primary-dark: #8c5866;
  --color-green: #257c47;
  --color-green-light: #5f9e61;
  --color-text: #3a3028;
  --color-text-light: #7a6a60;
  --color-white: #ffffff;
  --color-cream: #faf5f0;
  --color-border: #e8d8d0;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --max-width: 1200px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-serif);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #453a38;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 0 20px 0 16px;
}

.header-logo img {
  height: 36px;
  width: auto;
}

/* Header center tagline */
.header-tagline {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Header Instagram icon */
.header-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  flex-shrink: 0;
}

.header-instagram:hover {
  color: #ffffff;
}

.header-instagram svg {
  width: 24px;
  height: 24px;
}

/* ---------- Hamburger Button ---------- */
.hamburger-btn {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.hamburger-btn:hover {
  opacity: 0.7;
}

.hamburger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.hamburger-btn.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   DRAWER MENU
   ============================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 48, 40, 0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-green-light);
  z-index: 1200;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.drawer-menu.is-open {
  transform: translateX(0);
}

.drawer-menu nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer-menu nav ul li {
  border-bottom: 1px solid var(--color-border);
}

.drawer-menu nav ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 8px;
  font-family: 'Zen Maru Gothic';
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.08em;
  transition: color 0.2s, padding-left 0.2s;
}

.drawer-menu nav ul li a:hover {
  color: var(--color-primary);
  padding-left: 16px;
}

.drawer-menu nav ul li a .menu-arrow {
  margin-left: auto;
  color: var(--color-primary-light);
  font-size: 0.8rem;
}

.drawer-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.drawer-close-btn:hover {
  color: var(--color-primary);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  margin-top: var(--header-height);
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.hero-logo-wrap img {
  width: min(380px, 80vw);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(181, 128, 140, 0.18));
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-wrap {
  margin: 0 auto;
}

/* =============================================
   お知らせ SECTION
   ============================================= */

/* 2-column layout: left label + right list */
.news-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
}

/* Left: striped label column */
.news-label-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  /* Thick hazard-style green/white diagonal stripes as frame */
  background-image: repeating-linear-gradient(-45deg,
      #4caf50 0px,
      #4caf50 6px,
      #ffffff 6px,
      #ffffff 10px);
  background-color: #4caf50;
  /* White inner area via padding + pseudo element approach */
  padding: 16px;
  border-right: none;
}

.news-label-inner {
  background: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 20px 8px;
}

.news-label-text {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #3a8a3a;
  text-align: center;
  line-height: 1.2;
  font-family: 'Zen Maru Gothic', 'Arial Narrow', Arial, sans-serif;
}

/* Right: news list column */
.news-list-col {
  background: #ffffff;
  padding: 0;
}

.news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.news-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #e8ede4;
  transition: background 0.2s;
}

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

.news-item:hover {
  background: rgba(90, 122, 78, 0.04);
}

.news-date {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

.news-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 2px 7px;
  border-radius: 2px;
  white-space: nowrap;
}

.news-tag.tag-green {
  background: var(--color-green);
}

.news-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.7;
}

.news-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 4px;
}

.news-arrow {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-left: auto;
}

/* ---- Scrollable news list ---- */
.news-list-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding-top: 0;
  padding-bottom: 0;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light) #f3eae9;
}

/* Chrome / Edge / Safari */
.news-list-scroll::-webkit-scrollbar {
  width: 6px;
}

.news-list-scroll::-webkit-scrollbar-track {
  background: #f3eae9;
  border-radius: 8px;
}

.news-list-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--color-primary-light) 0%,
    var(--color-primary) 50%,
    var(--color-primary-dark) 100%
  );
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.2s;
}

.news-list-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
}

/* Fade hint at bottom of scroll area */
.news-list-col {
  position: relative;
}

.news-list-col::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9));
  pointer-events: none;
  border-radius: 0 0 4px 0;
}

/* =============================================
   EVENT SECTION
   ============================================= */
.event-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.event-left {
  position: relative;
  overflow: hidden;
}

.event-left-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-left-content {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-img-overlay {
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.event-right {
  background: #fff;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border: 20px solid #C97A8A;
}

/* --- Event Card Box (dashed border) --- */
.event-card-box {
  border: 2px dashed #C97A8A;
  padding: 20px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-card-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.event-card-accent {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.event-card-main-title {
  font-family: 'Kosugi Maru';
  font-size: 1.5rem;
  /*  font-display: swap;*/
  font-weight: 900;
  color: var(--color-green);
  letter-spacing: 0.08em;
}

.event-card-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.event-info-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.event-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.event-info-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  min-width: 52px;
  padding-top: 2px;
}

.event-info-value {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text);
}

.event-info-value strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.event-place-tag {
  font-weight: 600;
  color: var(--color-text);
}

/* MAP button */
.event-map-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.event-map-logo {
  width: 64px;
  height: auto;
  border-radius: 50%;
}

.event-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80px;
  height: 80px;
  background: var(--color-green);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50%;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 20px;
}

.event-map-link:hover {
  background: var(--color-primary-dark);
}

/* Detail link */
.event-card-link-wrap {
  text-align: right;
}

.event-card-link {
  font-family: 'Kosugi Maru';
  font-size: 0.8rem;
  color: var(--color-green);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.event-card-link:hover {
  opacity: 0.7;
}

/* =============================================
   INFO SECTIONS (SHOP / STAGE / FOOD)
   ============================================= */
#shop {
  padding-top: 20px;
}

.info-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.info-section-title-img {
  height: 70px;
  width: auto;
}

/* =============================================
   SHOP / STAGE GALLERY CAROUSEL
   ============================================= */
.shop-gallery-wrap {
  width: 100%;
  padding: 20px 0;
  /* NOTE: NO overflow:hidden here so arrows outside track are visible */
}

.shop-gallery-carousel {
  position: relative;
  width: 100%;
}

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

.shop-gallery-carousel .carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide: use specific selector to override general .carousel-track .carousel-slide rule */
.shop-gallery-carousel .carousel-track .carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0;
}

/* Desktop (>=1024px): show 4 photos */
@media (min-width: 1024px) {
  .shop-gallery-carousel .carousel-track .carousel-slide {
    flex: 0 0 25%;
    min-width: 25%;
  }
}

/* Mobile (<1024px): ensure 100% */
@media (max-width: 1023px) {
  .shop-gallery-carousel .carousel-track .carousel-slide {
    flex: 0 0 50%;
    min-width: 50%;
    padding: 0;
  }
}

@media (max-width: 680px) {
  .event-card-accent {
    font-size: 0.8rem;
  }

  .event-card-main-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .event-card-body {
    gap: 6px;
  }

  .event-map-link {
    width: 60px;
    height: 60px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin-top: 10px;
  }

  .shop-gallery-carousel .carousel-track .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0;
  }
}

.shop-gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shop-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.shop-gallery-item:hover img {
  transform: scale(1.04);
}

/* Badge centered on image */
.shop-badge {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #259954;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.4;
  pointer-events: auto;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
  z-index: 10;
}

/* Gallery navigation arrow buttons (on top of photos) */
.gal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.8);
  color: #3a3028;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 20;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.gal-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: #259954;
}

.gal-btn--prev {
  left: 8px;
}

.gal-btn--next {
  right: 8px;
}


.info-section-subtitle {
  font-family: 'zen maru gothic';
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.info-section-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cards-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------- Shop Card ---------- */
.shop-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(58, 48, 40, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(58, 48, 40, 0.14);
}

.shop-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #f0e8e0;
}

.shop-card-image.dummy {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0e8e0, #e8d8d0);
  min-height: 160px;
  color: var(--color-text-light);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

.shop-card-body {
  padding: 14px 14px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shop-card-genre {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--color-primary);
  border: 1px solid var(--color-primary-light);
  display: inline-block;
  padding: 1px 8px;
  border-radius: 2px;
  align-self: flex-start;
}

.shop-card-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.shop-card-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.65;
  flex: 1;
}

.shop-card-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.shop-card-icons-left,
.shop-card-icons-right {
  display: flex;
  gap: 6px;
  align-items: center;
}

.shop-card-icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.75;
}

/* ---------- Stage / Food Card ---------- */
.stage-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(58, 48, 40, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.stage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(58, 48, 40, 0.14);
}

.stage-card-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.stage-card-body {
  padding: 14px;
  flex: 1;
}

.stage-card-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.stage-card-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-top: 4px;
}

/* ---------- Carousel ---------- */
.card-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track .carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-track img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: rgba(58, 48, 40, 0.55);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  z-index: 10;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: rgba(58, 48, 40, 0.85);
}

.carousel-btn.prev {
  left: 6px;
}

.carousel-btn.next {
  right: 6px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 6px 0;
  background: var(--color-white);
}

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

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

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding-top: 60px;
}

.about-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text);
  font-family: 'Zen Maru Gothic';
  margin-bottom: 20px;
}

.about-label-icon {
  width: 28px;
  height: auto;
  opacity: 0.8;
}

.about-label-icon.flipped {
  transform: scaleX(-1);
}

.about-banner {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  background-image: url('../img/repeace_about.jpg');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.about-banner .about-content-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-tagline {
  font-family: 'Zen Maru Gothic';
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-desc {
  font-family: 'Zen Maru Gothic';
  font-size: 1.0rem;
  line-height: 2;
  opacity: 0.95;
  margin: 0 30px;
  font-weight: 500;
}

.about-desc p {
  margin-bottom: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #2a2018;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 32px;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 24px;
  list-style: none;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-primary-light);
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-sns a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.footer-sns a:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}

.hero-catch-mobile {
  position: absolute;
  /*fixed;*/
  left: 0;
  right: 0;
  z-index: 25;
}

/* =============================================
   RESPONSIVE - TABLET (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  /*
  .hero-catch-mobile {
    position: absolute;
  left: 0;
  right: 0;
  z-index: 25;
}
*/
  .header-tagline {
    display: none;
  }

  .hero-section {
    min-height: 380px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0 10px 0 16px;
  }

  .event-inner {
    grid-template-columns: 1fr;
  }

  .event-left {
    min-height: 240px;
  }

  .event-right {
    padding: 32px 28px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cards-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-banner {
    padding: 0;
    /*60px 20px;*/
    background-image: none;
  }

  .about-tagline {
    font-size: 1.25rem;
  }

  .info-section-subtitle {
    font-size: 1.4rem;
  }

  .carousel-btn {
    display: none;
  }

  .news-inner {
    grid-template-columns: 80px 1fr;
  }

  .news-label-text {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  .news-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 6px 10px;
  }

  .news-date {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.72rem;
  }

  .news-tag {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .news-text {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.8rem;
  }

  .news-arrow {
    display: none;
  }
}

/* =============================================
   RESPONSIVE - MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-section {
    min-height: 300px;
  }

  .hero-logo-wrap img {
    width: min(280px, 85vw);
  }

  .news-inner {
    display: block;
  }

  .news-label-col {
    width: 100%;
    min-height: auto;
    background: transparent;
    padding: 10px 10px;
    background-image: repeating-linear-gradient(-45deg, #4caf50 0px, #4caf50 6px, #ffffff 6px, #ffffff 10px);
    background-color: #4caf50;

  }

  .news-label-inner {
    padding: 12px 0;
    /*    background: transparent;*/
  }

  .news-label-text {
    writing-mode: horizontal-tb;
    text-align: center;
    color: #5a7a4e;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    display: block;
    background-color: #fff;
  }

  .news-item {
    grid-template-columns: auto 1fr;
    padding: 12px 12px;
    gap: 6px;
  }

  .news-text {
    grid-column: 1 / -1;
    font-size: 0.8rem;
  }

  .event-right {
    padding: 14px 10px;
  }

  .event-card-box {
    padding: 10px 10px;
  }

  .event-card-link {
    font-size: 0.7rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cards-grid--3col {
    grid-template-columns: 1fr;
  }

  .info-section {
    padding: 0px 0;
  }

  .info-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .info-section-subtitle {
    font-size: 1.2rem;
    margin: auto;
  }

  .info-section-title-img {
    height: auto;
    width: 80%;
    margin: auto;
  }

  .about-section {
    padding: 40px 0;
  }

  .about-section-header {
    margin-bottom: 32px;
  }

  .about-section-label {
    font-size: 1rem;
    gap: 10px;
  }

  .about-label-icon {
    width: 22px;
  }

  .about-tagline {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .about-desc {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

/* =============================================
   UTILITY
   ============================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Smooth reveal animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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