#pixel-transition {
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  inset: 0;
}
#pixel-transition.active {
  pointer-events: all;
  opacity: 1;
}
#oekaki-switch {
  z-index: 1000;
  background: var(--blue-bg);
  width: 280px;
  color: var(--white);
  border: 4px solid var(--white);
  cursor: pointer;
  image-rendering: pixelated;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px 24px;
  text-decoration: none;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  display: flex;
  position: fixed;
  top: 60px;
  right: 24px;
  box-shadow:
    6px 0 #80808066,
    0 6px #80808066,
    6px 6px #80808066,
    12px 0 #80808040,
    0 12px #80808040,
    12px 6px #80808040,
    6px 12px #80808040,
    12px 12px #80808026;
}
#oekaki-switch:hover {
  background: var(--blue-lt);
  transform: translate(3px, 3px);
  box-shadow:
    3px 0 #80808066,
    0 3px #80808066,
    3px 3px #80808066,
    6px 0 #80808040,
    0 6px #80808040,
    6px 3px #80808040,
    3px 6px #80808040,
    6px 6px #80808026;
}
#oekaki-switch:active {
  box-shadow: none;
  transform: translate(6px, 6px);
}
.switch-label {
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: none;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}
.switch-arrow {
  color: var(--green);
  margin-top: 8px;
  font-size: 40px;
  animation: 1s step-end infinite blink;
}
@keyframes blink {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
#main-header {
  z-index: 900;
  background: var(--white);
  border-bottom: 2px solid var(--black);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px #0000002e;
}
.header-inner {
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  display: flex;
}
.logo {
  font-family: var(--font-pixel);
  letter-spacing: 0.2em;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}
.logo-accent {
  color: var(--black);
  letter-spacing: 0.1em;
  font-weight: 400;
}
.header-board-link {
  font-family: var(--font-body);
  color: var(--blue);
  border: 2px solid var(--blue);
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin-left: 12px;
  padding: 4px 12px;
  font-size: 12px;
  text-decoration: none;
}
.header-board-link:hover {
  background: var(--blue);
  color: #fff;
}
.nav {
  gap: 24px;
  display: flex;
}
.nav a {
  font-family: var(--font-pixel);
  letter-spacing: 0.15em;
  color: var(--blue);
  border-bottom: 2px solid #0000;
  padding: 4px 0;
  font-size: 12px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.nav a:hover {
  border-color: var(--green);
  color: var(--black);
}
.menu-btn {
  cursor: pointer;
  -webkit-tap-highlight-color: #0000001a;
  background: 0 0;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 12px;
  display: none;
}
.menu-btn span {
  background: var(--blue);
  width: 20px;
  height: 2px;
  display: block;
}
#hero {
  background: var(--blue-bg);
  border-bottom: 3px solid var(--black);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}
#hero:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Crect x='0' y='0' width='2' height='2' fill='%23fff' opacity='0.04'/%3E%3Crect x='3' y='3' width='2' height='2' fill='%23fff' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 6px 6px;
  position: absolute;
  inset: 0;
}
.hero-inner {
  z-index: 0;
  justify-content: center;
  align-items: center;
  width: 200%;
  height: calc(98vh - 47.04px);
  padding: 0;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-kv {
  object-fit: contain;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  display: block;
}
#stamp-layer {
  pointer-events: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
#stamp-layer img {
  width: 15vw;
  height: auto;
  image-rendering: pixelated;
  position: absolute;
}
#announce {
  background-color: var(--white);
  background-image: var(--dot-bg);
  border-bottom: 2px solid var(--black);
  text-align: center;
  background-size: 5px 5px;
  padding: 120px 20px;
}
.announce-inner {
  letter-spacing: 0.08em;
  max-width: 900px;
  color: var(--black);
  background: #fffc;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  padding: 48px 40px;
  font-size: 24px;
  line-height: 1.8;
  display: flex;
}
.num-lg {
  vertical-align: -0.14em;
  font-size: 110%;
}
.announce-main {
  color: var(--blue);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  font-size: 42px;
  font-weight: 700;
}
.announce-note {
  color: #888;
  margin-top: 8px;
  font-size: 18px;
}
.section {
  background-color: var(--white);
  background-image: var(--dot-bg);
  background-size: 5px 5px;
  padding: 80px 20px;
}
.section-alt {
  background-color: var(--white);
  background-image: var(--dot-bg);
  background-size: 5px 5px;
}
.container {
  border: 1px solid var(--green);
  background: #ffffffbf;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px;
}
.section-title {
  font-family: var(--font-pixel);
  letter-spacing: 0.3em;
  color: var(--blue);
  text-align: center;
  margin-bottom: 48px;
  font-size: clamp(32px, 5.6vw, 45px);
  font-weight: 700;
  position: relative;
}
.section-title:after {
  content: "";
  background: var(--green);
  width: 40px;
  height: 3px;
  margin: 12px auto 0;
  display: block;
}
.sns-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  display: grid;
}
.sns-card {
  background: var(--white);
  border: 2px solid var(--black);
  text-align: center;
  padding: 20px;
  box-shadow: 3px 3px #0003;
}
.sns-card-link {
  color: inherit;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  display: flex;
}
.sns-card-link:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px #0003;
}
.sns-placeholder {
  aspect-ratio: 16/9;
  background: var(--blue-bg);
  border: 2px solid var(--black);
  width: 100%;
  font-family: var(--font-pixel);
  color: var(--white);
  letter-spacing: 0.2em;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  font-weight: 700;
  display: flex;
}
.sns-card p {
  color: #333;
  font-size: 16px;
  line-height: 2;
}
.sns-handle {
  font-family: var(--font-pixel);
  color: var(--blue);
  letter-spacing: 0.1em;
  font-size: 14px;
}
.sale-lead {
  text-align: center;
  color: #333;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 2;
}
.sale-lead .link-inline {
  color: var(--blue);
  text-decoration: underline;
}
.sale-sub-title {
  font-family: var(--font-pixel);
  letter-spacing: 0.2em;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  margin-top: 48px;
  margin-bottom: 24px;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}
.sale-detail-grid {
  flex-direction: column;
  gap: 16px;
  display: flex;
}
.sale-detail-card {
  background: var(--white);
  border: 2px solid var(--black);
  color: inherit;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 20px;
  text-decoration: none;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  display: grid;
  box-shadow: 3px 3px #0003;
}
.sale-detail-card:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px #0003;
}
.sale-detail-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--blue-bg);
  border: 2px solid var(--black);
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}
.sale-detail-body {
  flex-direction: column;
  gap: 8px;
  display: flex;
}
.sale-detail-date {
  font-family: var(--font-pixel);
  letter-spacing: 0.15em;
  color: #888;
  font-size: 15px;
}
.sale-detail-name {
  color: var(--blue);
  letter-spacing: 0.1em;
  font-size: 20px;
  font-weight: 700;
}
.sale-detail-desc {
  color: #333;
  font-size: 16px;
  line-height: 2;
}
.sale-detail-sub {
  color: #888;
  font-size: 13px;
  line-height: 1.8;
}
.sale-detail-more {
  font-family: var(--font-pixel);
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-top: auto;
  font-size: 14px;
}
.wagon-lead {
  text-align: center;
  color: #333;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 2;
}
.wagon-grid {
  flex-direction: column;
  gap: 2px;
  display: flex;
}
.wagon-day {
  background: var(--white);
  border: 2px solid var(--black);
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  display: grid;
  box-shadow: 3px 3px #0003;
}
.wagon-date {
  font-family: var(--font-pixel);
  color: var(--blue);
  letter-spacing: 0.1em;
  font-size: 15px;
  font-weight: 700;
}
.wagon-shops {
  flex-wrap: wrap;
  gap: 4px 16px;
  display: flex;
}
.wagon-shop-name {
  color: #333;
  font-size: 14px;
}
.wagon-brands {
  background: var(--white);
  border: 1px solid #ccc;
  margin-top: 20px;
  padding: 16px;
}
.wagon-brand-note {
  color: #888;
  font-size: 13px;
  line-height: 1.8;
}
.wagon-note {
  color: #888;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
}
.food-card {
  background: var(--white);
  border: 2px solid var(--black);
  color: inherit;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  padding: 24px;
  text-decoration: none;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  display: grid;
  box-shadow: 3px 3px #0003;
}
.food-card:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px #0003;
}
.food-img-placeholder {
  aspect-ratio: 1;
  background: var(--green);
  border: 2px solid var(--black);
  width: 100%;
  font-family: var(--font-pixel);
  color: var(--black);
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: 700;
  display: flex;
}
.food-body {
  flex-direction: column;
  gap: 8px;
  display: flex;
}
.food-name {
  font-family: var(--font-pixel);
  color: var(--blue);
  letter-spacing: 0.1em;
  font-size: 27px;
  font-weight: 700;
}
.food-desc {
  color: #333;
  font-size: 16px;
  line-height: 2;
}
.popup-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  display: grid;
}
.popup-card {
  background: var(--white);
  border: 2px solid var(--black);
  overflow: hidden;
  box-shadow: 3px 3px #0003;
}
.popup-img-placeholder {
  aspect-ratio: 16/9;
  background: var(--blue-bg);
  border-bottom: 2px solid var(--black);
  width: 100%;
}
.popup-body {
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  display: flex;
}
.popup-name {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}
.popup-meta {
  font-family: var(--font-pixel);
  color: #888;
  letter-spacing: 0.1em;
  font-size: 14px;
}
.popup-desc {
  color: #333;
  font-size: 16px;
  line-height: 2;
}
.event-card {
  background: var(--white);
  border: 2px solid var(--black);
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-bottom: 20px;
  padding: 24px;
  display: grid;
  box-shadow: 3px 3px #0003;
}
.event-img-placeholder {
  aspect-ratio: 3/4;
  background: var(--blue-bg);
  border: 2px solid var(--black);
  width: 100%;
}
.event-body {
  flex-direction: column;
  gap: 12px;
  display: flex;
}
.event-name {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
.event-desc {
  color: #333;
  font-size: 16px;
  line-height: 2;
}
.event-sub {
  color: #333;
  background: #ffffffd9;
  border: 1px solid #ccc;
  padding: 16px;
  font-size: 14px;
  line-height: 2;
}
.event-sub strong {
  color: var(--blue);
}
.event-link {
  font-family: var(--font-pixel);
  color: var(--blue);
  letter-spacing: 0.1em;
  font-size: 14px;
  text-decoration: none;
}
.event-link:hover {
  text-decoration: underline;
}
.theme-block {
  text-align: center;
  margin-bottom: 60px;
}
.theme-title-text {
  font-family: var(--font-pixel);
  color: var(--blue);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  font-size: 27px;
  font-weight: 700;
}
.theme-message {
  font-family: var(--font-pixel);
  letter-spacing: 0.15em;
  color: #444;
  font-size: 15px;
  line-height: 2.4;
}
.credit-block {
  max-width: 640px;
  margin: 0 auto;
}
.credit-heading {
  font-family: var(--font-pixel);
  color: var(--blue);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
}
.credit-list {
  flex-direction: column;
  gap: 4px;
  display: flex;
}
.credit-row {
  border-bottom: 1px solid #e0e0e0;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  padding: 8px 0;
  font-size: 12px;
  display: grid;
}
.credit-role {
  color: #888;
}
.credit-name {
  color: #333;
  font-size: 12px;
}
.notes-list {
  flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style: none;
  display: flex;
}
.notes-list li {
  color: #888;
  font-size: 13px;
  line-height: 1.8;
}
#footer {
  background: var(--white);
  color: var(--black);
  border-top: 3px solid var(--green);
  text-align: center;
  padding: 40px 20px;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--font-pixel);
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}
.footer-links {
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  display: flex;
}
.footer-links a {
  font-family: var(--font-pixel);
  letter-spacing: 0.15em;
  color: #0006;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--blue);
}
.footer-sns {
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  display: flex;
}
.footer-sns-btn {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.15s;
  display: flex;
}
.footer-sns-btn:hover {
  opacity: 0.6;
}
.footer-sns-icon {
  display: block;
}
.footer-sns-icon--instagram {
  width: 22px;
  height: 22px;
}
.footer-sns-icon--x {
  width: 28px;
  height: 28px;
}
.footer-sns-icon--facebook {
  width: 31px;
  height: 31px;
}
.footer-sns-icon--line {
  width: 22px;
  height: 22px;
}
.footer-copy {
  font-family: var(--font-noto), "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  color: #0000004d;
  font-size: 10px;
}
.footer-laforet {
  font-family: var(--font-pixel);
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--green);
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 13px 28px 11px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  display: inline-flex;
}
.footer-laforet:hover {
  box-shadow: 4px 4px 0 var(--green);
  transform: translate(-1px, -1px);
}
@media (max-width: 767px) {
  #hero {
    height: 100vh;
    min-height: 100vh;
  }
  .hero-inner {
    width: 100%;
    height: 100%;
    padding: 24px 3vw 12vh;
    top: 0;
    left: 0;
    transform: none;
  }
  .hero-kv {
    object-fit: contain;
    object-position: center 38%;
    width: 100%;
    height: 100%;
  }
  #stamp-layer img {
    width: 25vw;
  }
  .header-board-link,
  .nav {
    display: none;
  }
  .nav.open {
    background: var(--white);
    border-bottom: 2px solid var(--black);
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px;
    display: flex;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    box-shadow: 0 4px #0000001a;
  }
  .menu-btn {
    display: flex;
  }
  #oekaki-switch {
    border-width: 2px;
    width: 112px;
    height: 112px;
    padding: 12px 10px;
    inset: auto 12px 20px auto;
    box-shadow:
      3px 0 #80808066,
      0 3px #80808066,
      3px 3px #80808066,
      6px 0 #80808040,
      0 6px #80808040,
      6px 3px #80808040,
      3px 6px #80808040,
      6px 6px #80808026;
  }
  .switch-label {
    font-size: 13px;
  }
  .switch-arrow {
    margin-top: 4px;
    font-size: 24px;
  }
  .section {
    padding: 48px 12px;
  }
  .container {
    padding: 20px 16px;
  }
  #announce {
    padding: 60px 12px;
  }
  .announce-inner {
    padding: 28px 16px;
    font-size: 16px;
  }
  .announce-main {
    letter-spacing: 0.08em;
    font-size: 24px;
  }
  .announce-note {
    font-size: 13px;
  }
  .sns-grid,
  .popup-grid {
    grid-template-columns: 1fr;
  }
  .sns-card,
  .sale-detail-card,
  .food-card,
  .popup-card,
  .wagon-day {
    box-shadow: none;
    word-break: break-word;
    overflow: hidden;
  }
  .sale-detail-card {
    grid-template-columns: 1fr;
  }
  .sale-detail-img-placeholder {
    aspect-ratio: 16/9;
  }
  .food-card {
    grid-template-columns: 1fr;
  }
  .food-img-placeholder {
    aspect-ratio: 16/9;
  }
  .event-card {
    box-shadow: none;
    word-break: break-word;
    grid-template-columns: 1fr;
    padding: 12px;
    overflow: hidden;
  }
  .event-sub {
    padding: 10px;
  }
  .event-img-placeholder {
    aspect-ratio: 16/9;
  }
  .wagon-day {
    grid-template-columns: 90px 1fr;
    padding: 12px;
  }
  .credit-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .section-title {
    letter-spacing: 0.12em;
    font-size: clamp(24px, 7vw, 36px);
  }
  .sale-sub-title {
    letter-spacing: 0.1em;
    font-size: 16px;
  }
  .theme-title-text {
    letter-spacing: 0.1em;
    font-size: 20px;
  }
  .theme-message {
    letter-spacing: 0.08em;
    font-size: 13px;
  }
  .food-name {
    font-size: 22px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}
