@charset "UTF-8";
/*
 Theme Name:   GeneratePress EP Theme
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme made by EP.
 Author:       EVERYDAY PRACTICE
 Author URI:   http://everyday-practice.com
 License:      GNU General Public License v3.0 (or later)
 License URI:  https://www.gnu.org/licenses/gpl-3.0.html
 Template:     generatepress
 Version:      0.1
*/
/* Initialize */
:root {
  --color-white: #fff;
  --color-black: #000;
  --minumsa-bg-green: #00ff66;
  --minumsa-bg-gray: #e2e2e2;
}

body.home {
  background-color: #ffed97;
}
body {
  background-color: var(--minumsa-bg-gray);
}

.intro-sidebar {
  --intro-sidebar-width: 10px;
  --intro-sidebar-count: 20;
  --intro-sidebar-stagger: 18ms;
  --intro-sidebar-ease: cubic-bezier(0.65, 0, 0.35, 1);
  --intro-sidebar-duration: 0.8s;
  --intro-sidebar-fade-duration: 0.45s;
  --intro-sidebar-phase-ms: calc(
      800ms + (var(--intro-sidebar-count, 20) - 1) *
          var(--intro-sidebar-stagger)
  );
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999999;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  pointer-events: none;
}
.intro-sidebar__strip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.intro-sidebar.is-shrinking .intro-sidebar__strip {
  align-items: flex-start;
}
.intro-sidebar.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: none;
}
.intro-sidebar__square {
  flex: 1 1 0;
  min-height: 0;
  width: var(--intro-sidebar-width);
  transition: width var(--intro-sidebar-duration) var(--intro-sidebar-ease);
  transition-delay: calc(var(--intro-sidebar-i, 0) * var(--intro-sidebar-stagger));
  will-change: width;
}
.intro-sidebar.is-expanding .intro-sidebar__square {
  width: 100%;
}
.intro-sidebar.is-expanded:not(.is-shrinking) .intro-sidebar__square {
  width: 100%;
  transition: none;
}
.intro-sidebar.is-shrinking .intro-sidebar__square {
  width: 0;
  min-width: 0;
  transition: width var(--intro-sidebar-duration) var(--intro-sidebar-ease);
  transition-delay: calc((var(--intro-sidebar-count, 20) - 1 - var(--intro-sidebar-i, 0)) * var(--intro-sidebar-stagger));
}

.intro-page-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: #ffed97;
}
@media (min-width: 1025px) {
  .intro-page-section {
    left: 50%;
    top: 50%;
    max-width: 480px;
    max-height: 810px;
    transform: translate(-50%, -50%);
  }
}
.intro-page-section.is-being-wiped {
  pointer-events: none;
}
.intro-page-section.is-dismissed {
  display: none !important;
}

html:has(.intro-page-section:not(.is-dismissed)),
body:has(.intro-page-section:not(.is-dismissed)) {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

@media (prefers-reduced-motion: reduce) {
  .intro-sidebar__square {
    transition: none;
  }
}
.intro-text-section {
  --intro-text-enter-duration: 0.85s;
  --intro-text-enter-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --intro-text-enter-start: 0.2s;
  display: flex;
  flex-direction: column;
  padding: var(--ep-margin);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  container-type: inline-size;
}
.intro-text-section .top-section,
.intro-text-section .bottom-section {
  flex: 0 0 50%;
  min-height: 0;
  width: 100%;
}
.intro-text-section .top-section .main-text,
.intro-text-section .bottom-section .main-text {
  font-size: 9cqi;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  opacity: 0;
  animation: intro-text-enter var(--intro-text-enter-duration) var(--intro-text-enter-ease) var(--intro-text-enter-start) forwards;
  animation-play-state: paused;
}
.intro-text-section .bottom-section {
  position: relative;
}
.intro-text-section .bottom-section .logo {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--ep-margin);
  opacity: 0;
  animation: intro-text-enter var(--intro-text-enter-duration) var(--intro-text-enter-ease) var(--intro-text-enter-start) forwards;
  animation-play-state: paused;
}
.intro-text-section .bottom-section .logo .sibf {
  width: 100px;
}
.intro-text-section .bottom-section .sub-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  background-color: #000;
  color: #ffed97;
  padding: calc(var(--ep-margin) / 2);
  width: fit-content;
  margin: var(--ep-margin) 0;
  line-height: 1.4;
  opacity: 0;
  animation: intro-text-enter var(--intro-text-enter-duration) var(--intro-text-enter-ease) var(--intro-text-enter-start) forwards;
  animation-play-state: paused;
}
.intro-text-section .bottom-section .enter-button {
  background-color: #000;
  width: fit-content;
  position: absolute;
  right: var(--ep-margin);
  bottom: 0;
  color: #ffed97;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 9px calc(var(--ep-margin) / 2);
  margin-bottom: 0;
  opacity: 0;
  animation: intro-text-enter var(--intro-text-enter-duration) var(--intro-text-enter-ease) var(--intro-text-enter-start) forwards;
  animation-play-state: paused;
  pointer-events: none;
  cursor: default;
  background-color: rgba(0, 0, 0, 0.5);
  color: rgba(255, 237, 151, 0.5);
}
.intro-text-section .bottom-section .enter-button::before {
  content: "6월 24일 오픈";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  margin-bottom: 8px;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #000;
}

html.intro-ready .intro-text-section .main-text,
html.intro-ready .intro-text-section .logo,
html.intro-ready .intro-text-section .sub-text,
html.intro-ready .intro-text-section .enter-button {
  animation-play-state: running;
}

@keyframes intro-text-enter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro-text-section .main-text,
  .intro-text-section .sub-text,
  .intro-text-section .logo,
  .intro-text-section .enter-button {
    animation: none;
    opacity: 1;
  }
}
body.home .bottom-banner {
  background-color: #ffed97;
}
body .bottom-banner {
  background-color: var(--minumsa-bg-green);
}

.bottom-banner {
  --bottom-banner-duration: 36s;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  overflow: hidden;
  color: #000;
  pointer-events: none;
}
.bottom-banner__track {
  display: flex;
  width: max-content;
  animation: bottom-banner-scroll var(--bottom-banner-duration) linear infinite;
  will-change: transform;
}
.bottom-banner__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.5rem;
  padding: 0.35rem 1.5rem;
  white-space: nowrap;
}
.bottom-banner__item {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.bottom-banner__sep {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.45;
}

@keyframes bottom-banner-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bottom-banner__track {
    animation: none;
  }
}
.site-menu {
  --site-menu-ease: cubic-bezier(0.65, 0, 0.35, 1);
  --site-menu-duration: 0.45s;
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  min-height: 100dvh;
  padding: var(--ep-pageTop);
  padding-top: calc(var(--ep-pageTop) + 80px);
  padding-bottom: var(--ep-margin);
  background-color: rgba(0, 255, 102, 0.8);
  color: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity var(--site-menu-duration) var(--site-menu-ease), visibility var(--site-menu-duration) var(--site-menu-ease);
}
.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-menu__inner {
  width: 100%;
  max-width: 100%;
}
.site-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.site-menu__list > li {
  width: fit-content;
  max-width: 100%;
}
.site-menu__list > li > a {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #000;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-menu__list > li > a:hover, .site-menu__list > li > a:focus-visible {
  color: #000;
}
.site-menu__list .sub-menu {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-menu__list .sub-menu a {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  background-color: transparent;
  color: #000;
}
.site-menu__list .sub-menu a:hover, .site-menu__list .sub-menu a:focus-visible {
  color: #000;
}
.site-menu__footer {
  margin-top: auto;
  width: 100%;
}
.site-menu__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.site-menu__social-item {
  width: fit-content;
}
.site-menu__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  text-decoration: none;
}
.site-menu__social-icon {
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: auto;
}
.site-menu__social-label {
  display: inline-block;
  font-size: 13px;
}

body.has-site-menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .site-menu {
    transition: none;
  }
}
@property --main-sibf-spread {
  syntax: "<number>";
  inherits: true;
  initial-value: 1;
}
.main-sibf-2026 {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 320px;
  overflow-x: clip;
  overflow-y: visible;
  clip-path: inset(-100vh 0 0 0);
  margin-top: -20px;
}
.main-sibf-2026__shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.main-sibf-2026__canvas {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.main-sibf-2026__shape {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  aspect-ratio: var(--ar);
  transform: translate(-50%, -50%);
  color: var(--color);
  --main-sibf-spread: 1;
  animation: main-sibf-fan 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.main-sibf-2026__head, .main-sibf-2026__tail {
  position: absolute;
  inset: 0;
  display: block;
}
.main-sibf-2026__head svg, .main-sibf-2026__tail svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.main-sibf-2026__head {
  z-index: 2;
  opacity: 1;
}
.main-sibf-2026__tail {
  z-index: 1;
  transform-origin: var(--tox) var(--toy);
  transform: rotate(calc(var(--i) * var(--steps) * var(--main-sibf-spread) * 1deg));
  opacity: calc((1 - var(--i) / var(--tcount)) * 0.55 * var(--main-sibf-spread));
}
.main-sibf-2026__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: var(--ep-margin);
  pointer-events: none;
}
.main-sibf-2026__top, .main-sibf-2026__bottom {
  width: 100%;
}
.main-sibf-2026__year, .main-sibf-2026__title-ko, .main-sibf-2026__title-en, .main-sibf-2026__brand, .main-sibf-2026__tagline {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #000;
}

@keyframes main-sibf-fan {
  0% {
    --main-sibf-spread: 0;
  }
  40% {
    --main-sibf-spread: 1;
  }
  70% {
    --main-sibf-spread: 1;
  }
  100% {
    --main-sibf-spread: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .main-sibf-2026__shape {
    animation: none;
    --main-sibf-spread: 1;
  }
}
.main-page-link {
  padding: var(--ep-margin);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.main-page-link p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.main-page-link p:nth-child(2) {
  font-weight: 600;
}
.main-page-link p.arrow {
  font-size: 20px;
  position: absolute;
  right: 10px;
}

.main-book-list {
  --book-min-h: 200px;
  width: 100%;
  padding: var(--ep-margin);
}
.main-book-list__stage {
  position: relative;
  width: 100%;
  min-height: calc(var(--book-max-h, 260px) + 88px);
  height: max(clamp(320px, 48vh, 460px), var(--book-max-h, 260px) + 88px);
  overflow: hidden;
  touch-action: none;
  cursor: grab;
}
.main-book-list__stage.is-dragging, .main-book-list__stage:active {
  cursor: grabbing;
}
.main-book-list__books {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.main-book-list__book {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 32px;
  height: var(--book-h, auto);
  min-height: var(--book-min-h);
  background-color: #585858;
  padding-bottom: 10px;
  box-sizing: border-box;
  visibility: hidden;
  pointer-events: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  transform-origin: center center;
  overflow: visible;
}
.main-book-list__book.is-measuring {
  visibility: visible;
  left: -9999px;
  top: 0;
  height: auto;
  min-height: 0;
}
.main-book-list__book.is-live {
  visibility: visible;
}
.main-book-list__book.is-dragging {
  cursor: grabbing;
  z-index: 2;
}
.main-book-list__title, .main-book-list__label {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.main-book-list__title {
  flex: 1 1 auto;
  min-height: var(--title-h, auto);
  padding: 6px 0;
  box-sizing: border-box;
}
.main-book-list__title-text, .main-book-list__label-text {
  display: block;
  white-space: nowrap;
  transform: rotate(90deg);
  transform-origin: center center;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}
.main-book-list__title-text {
  font-size: 14px;
  color: #fff;
}
.main-book-list__label {
  flex: 0 0 auto;
  height: var(--label-h, auto);
  min-height: 48px;
  padding: 10px 0;
  box-sizing: border-box;
  margin-top: auto;
}
.main-book-list__label-text {
  font-size: 10px;
  color: #000;
}
.main-book-list__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-title,
.booth-list-view-toggle,
.booth-list-hint {
  position: relative;
  z-index: 10;
}

.toggle-tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.toggle-tab-list button {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  border: #F1F1F1;
  padding: 5px 7px;
  color: #222222;
  background: #F1F1F1;
  cursor: pointer;
}
.toggle-tab-list button.is-active {
  color: var(--color-white);
  background: var(--color-black);
  border-color: var(--color-black);
}
.toggle-tab-list.s-sm {
  gap: 5px;
}
.toggle-tab-list.s-sm button {
  font-size: 12px;
}

.booth-list-hint {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  text-align: center;
  padding-top: 18px;
  margin: 0;
}

.booth__book {
  --gap: 14px;
  display: flex;
  gap: var(--gap);
  color: inherit;
  text-decoration: none;
}
.booth__book:hover .booth__book-title, .booth__book:focus-visible .booth__book-title {
  text-decoration: underline;
}
.booth__book p {
  margin: 0;
}
.booth__book .booth__book-cover,
.booth__book .booth__book-info {
  width: calc(50% - var(--gap) / 2);
  flex: 0 0 auto;
}
.booth__book .booth__book-cover-placeholder {
  position: relative;
  display: block;
  aspect-ratio: 2/3;
  background: #fafafa;
}
.booth__book .booth__book-cover-placeholder::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.booth__book[data-publisher=민음사] .booth__book-cover-placeholder::after {
  background: url(assets/svg/minumsa_logo.svg) no-repeat center/50% auto;
}
.booth__book[data-publisher=민음인] .booth__book-cover-placeholder::after {
  background: url(assets/svg/minumin_logo.svg) no-repeat center/50% auto;
}
.booth__book[data-publisher=황금가지] .booth__book-cover-placeholder::after {
  background: url(assets/svg/goldenbough_logo.svg) no-repeat center/50% auto;
}
.booth__book[data-publisher=반비] .booth__book-cover-placeholder::after {
  background: url(assets/svg/banbi_logo.svg) no-repeat center/50% auto;
}
.booth__book[data-publisher=판미동] .booth__book-cover-placeholder::after {
  background: url(assets/svg/panmidong_logo.svg) no-repeat center/50% auto;
}
.booth__book[data-publisher=사이언스북스] .booth__book-cover-placeholder::after {
  background: url(assets/svg/sciencebooks_logo.svg) no-repeat center/50% auto;
}
.booth__book[data-publisher=세미콜론] .booth__book-cover-placeholder::after {
  background: url(assets/svg/semicolon_logo.svg) no-repeat center/50% auto;
}
.booth__book .booth__book-cover {
  overflow: hidden;
  background: #f2f2f2;
  height: max-content;
}
.booth__book .booth__book-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.booth__book .booth__book-info-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booth__book .booth__book-publisher {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  padding: 2px 3px;
  color: #fff;
  background-color: #222;
  margin-bottom: 7px;
}
.booth__book .booth__book-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}
.booth__book .booth__book-author {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
}
.booth__book .booth__book-labels {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.booth__book .booth__book-labels[data-type=list] {
  display: none;
}
.booth__book .booth__book-label {
  font-family: Pretendard;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  background-color: var(--color-white);
  padding: 3px;
}
.booth__book .booth__book-status--available {
  color: #000;
  background: var(--minumsa-bg-green);
}
.booth__book .booth__book-status--unavailable {
  background: var(--minumsa-bg-unavailable);
}

.booth {
  --header-h: 100px;
  --footer-h: 72.59px;
  --paragraph-h: 26.59px;
  --section-title-h: 104px;
  --booth-list-view-toggle-h: 26px;
  --booth-list-hint-h: 38.3px;
  --canvas-h: calc(100vw * 1.5 + var(--section-title-h) + var(--booth-list-view-toggle-h) + var(--booth-list-hint-h));
  --offset-h: calc(100vh - var(--footer-h) - var(--paragraph-h) - var(--canvas-h));
  position: relative;
  width: 100%;
  background: #e2e2e2;
}
.booth.is-debug {
  display: flex;
  align-items: stretch;
}
.booth .booth__stand-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  user-select: none;
  cursor: pointer;
}
.booth .booth__stand-marker .booth__stand-marker-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #222;
  background: #0F6;
  border: 1px solid #222;
  line-height: 1;
  margin-bottom: 2px;
}
.booth .booth__stand-marker .booth__stand-marker-arrow {
  display: block;
  width: 8px;
  height: auto;
}
.booth .booth__canvas {
  position: relative;
  width: 100%;
  height: calc(var(--canvas-h));
  margin-top: calc(var(--section-title-h) * -1 - var(--booth-list-view-toggle-h) - var(--booth-list-hint-h) - var(--header-h));
  overflow: hidden;
  touch-action: none;
}
.booth.is-debug .booth .booth__canvas {
  flex: 1;
  width: auto;
  min-width: 0;
}
.booth .booth__canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.booth .booth__books-empty {
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.875rem;
  text-align: center;
  padding: 40px 0;
}

.booth-list {
  padding: 20px var(--ep-margin);
}
.booth-list[hidden] {
  display: none;
}
.booth-list .booth-list__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.booth-list .booth-list__filters {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.booth-list .booth-list__filters-inner {
  display: flex;
  justify-content: space-between;
}
.booth-list .booth-list__search {
  --search-icon-size: 16px;
  --search-icon-gap: 4px;
  --search-actions-gap: 8px;
  --search-single-action-width: calc(var(--search-icon-size) + var(--search-icon-gap));
  --search-actions-width: calc(var(--search-icon-size) * 2 + var(--search-actions-gap) + var(--search-icon-gap));
  position: relative;
  width: 50%;
  max-width: 240px;
}
.booth-list .booth-list__search-input {
  width: 100%;
  font-size: 16px !important;
  font-weight: 600;
  background: transparent;
  color: var(--color-black);
  border: 0;
  border-bottom: 1px solid #000;
  padding: 4px 0;
  padding-right: var(--search-single-action-width);
}
.booth-list .booth-list__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.booth-list .booth-list__search-input::placeholder {
  color: var(--color-black);
}
.booth-list .booth-list__search-input:focus, .booth-list .booth-list__search-input:focus-visible {
  outline: none;
  background: transparent;
  border-bottom: 1px solid #000;
}
.booth-list .booth-list__search.has-clear .booth-list__search-input {
  padding-right: var(--search-actions-width);
}
.booth-list .booth-list__search .booth-list__search-button,
.booth-list .booth-list__search .booth-list__search-clear {
  display: block;
  position: absolute;
  font-size: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--search-icon-size);
  height: var(--search-icon-size);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.booth-list .booth-list__search .booth-list__search-button {
  right: 0;
  background: url(assets/svg/booth_search.svg) no-repeat center/contain;
}
.booth-list .booth-list__search .booth-list__search-clear {
  right: calc(var(--search-icon-size) + var(--search-actions-gap));
  background: url(assets/svg/booth_search_clear.svg) no-repeat center/contain;
}
.booth-list .booth-list__search .booth-list__search-clear[hidden] {
  display: none;
}
.booth-list .booth-list__available {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
}
.booth-list .booth-list__available input {
  width: 14px;
  height: 14px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  background: transparent;
  background: url(assets/svg/checkbox_off.svg) no-repeat center/contain;
}
.booth-list .booth-list__available input:checked {
  background: url(assets/svg/checkbox_on.svg) no-repeat center/contain;
}
.booth-list .booth-list__publishers {
  justify-content: flex-start;
}
.booth-list .booth-list__results {
  min-height: 120px;
}
.booth-list .booth-list__loading,
.booth-list .booth-list__empty {
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.875rem;
  text-align: center;
  padding: 40px 0;
}
.booth-list .booth__books {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.booth-list .booth__book-cover {
  position: relative;
}
.booth-list .booth__book-labels[data-type=list] {
  display: flex;
  position: absolute;
  bottom: 6px;
  right: 5px;
}
.booth-list .booth__book-labels[data-type=booth] {
  display: none;
}
.booth-list .booth__book {
  --gap: 10px;
  display: flex;
  flex-direction: column;
}
.booth-list .booth__book .booth__book-cover,
.booth-list .booth__book .booth__book-info {
  width: 100%;
}

.booth__modal {
  --modal-width: 360px;
  position: fixed;
  inset: 0;
  z-index: 9999999;
  pointer-events: none;
}
.booth__modal[hidden] {
  display: none;
}
.booth__modal.is-open {
  pointer-events: auto;
}
.booth__modal.is-open .booth__modal-backdrop {
  opacity: 1;
}
.booth__modal.is-open .booth__modal-panel {
  transform: translateX(0);
}
.booth__modal .booth__books {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booth__modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.9) !important;
  backdrop-filter: blur(5px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booth__modal-panel {
  --modal-offset: calc(100vw - var(--modal-width));
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: min(100%, var(--modal-width));
  height: 100%;
  background: var(--color-white);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media (max-width: 780px) {
  .booth__modal-panel {
    --modal-width: 265px;
  }
}
.booth__modal-panel .booth__modal-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  height: 100%;
}
.booth__modal-panel .booth__modal-inner .booth__modal-close {
  --close-button-size: 45px;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc((var(--modal-offset) - var(--close-button-size)) / 2 - var(--modal-offset));
  width: var(--close-button-size);
  height: var(--close-button-size);
  background: url(assets/svg/booth_modal_close.svg) no-repeat center/contain;
  padding: 0;
}
.booth__modal-panel .booth__modal-inner .booth__modal-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #DDD;
}
.booth__modal-panel .booth__modal-inner .booth__modal-body {
  padding: 10px;
}
.booth__modal-panel .booth__modal-stand-wrap {
  position: absolute;
  top: 0;
  left: calc(var(--modal-offset) * -1);
  width: var(--modal-offset);
  padding: 20px;
}
.booth__modal-panel .booth__modal-stand-wrap .booth__modal-stand {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}
.booth__modal-panel .booth__modal-stand-wrap .booth__modal-stand-logo {
  width: 100%;
  height: 100%;
  background: #ddd;
  text-align: center;
  padding: 6px 10px;
}
.booth__modal-panel .booth__modal-stand-wrap .booth__modal-stand-number {
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  padding: 6px 10px 7px;
  margin: 0;
}

html.booth-modal-open,
body.booth-modal-open {
  overflow: hidden;
}

.booth__debug-badge {
  position: absolute;
  top: var(--ep-margin);
  left: var(--ep-margin);
  z-index: 2;
  padding: 0.35rem 0.6rem;
  font-size: 0.875rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

.booth__debug-sidebar {
  --debug-sidebar-width: 320px;
  flex-shrink: 0;
  width: min(var(--debug-sidebar-width), 40vw);
  height: calc(100vh - var(--ep-headerH) - var(--ep-pageTop));
  min-height: 480px;
  background: var(--color-white);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 780px) {
  .booth__debug-sidebar {
    --debug-sidebar-width: 270px;
  }
}

.booth__debug-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.booth__debug-sidebar-header {
  flex-shrink: 0;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.booth__debug-sidebar-title {
  margin: 0 0 0.75rem;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.booth__debug-sidebar-count {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.45);
}

.booth__debug-search {
  display: block;
  width: 100%;
}

.booth__debug-search-input {
  width: 100%;
  padding: 0.5rem 0.65rem;
  font-size: 0.875rem;
  color: #222;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}
.booth__debug-search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.booth__debug-search-input:focus {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  outline-offset: 1px;
  background: var(--color-white);
}

.booth__debug-sidebar-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.booth__debug-mesh-list {
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
}

.booth__debug-mesh-row {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  padding-right: 0.5rem;
}
.booth__debug-mesh-row.is-hovered .booth__debug-mesh-item {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
}
.booth__debug-mesh-row.is-active .booth__debug-mesh-item {
  color: #000;
  background: rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

.booth__debug-mesh-item {
  flex: 1;
  min-width: 0;
  padding: 0.45rem 0 0.45rem 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  line-height: 1.35;
  text-align: left;
  color: rgba(0, 0, 0, 0.78);
  background: transparent;
  border: 0;
  cursor: pointer;
  word-break: break-all;
}

.booth__debug-mesh-copy {
  flex-shrink: 0;
  align-self: center;
  padding: 0.2rem 0.45rem;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  cursor: pointer;
}
.booth__debug-mesh-copy:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.08);
}

.booth__debug-shadow-panel {
  position: absolute;
  bottom: var(--ep-margin);
  left: var(--ep-margin);
  z-index: 2;
  padding: 0.75rem;
  min-width: 220px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.booth__debug-shadow-title {
  margin: 0 0 0.6rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.booth__debug-shadow-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.55rem;
  cursor: default;
}

.booth__debug-shadow-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.booth__debug-shadow-val {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: #ffd060;
}

.booth__debug-shadow-slider {
  width: 100%;
  cursor: pointer;
  accent-color: #ffd060;
}

.booth__debug-shadow-copy {
  margin-top: 0.35rem;
  width: 100%;
  padding: 0.3rem 0.5rem;
  font-size: 11px;
  font-weight: 600;
  color: #000;
  background: rgba(255, 255, 255, 0.82);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s;
}
.booth__debug-shadow-copy:hover {
  background: #fff;
}

.booth__debug-toast {
  display: none !important;
  position: absolute;
  z-index: 3;
  max-width: min(90%, 24rem);
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #fff;
  background: rgba(0, 0, 0, 0.88);
  border-radius: 4px;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 8px));
  opacity: 0;
  transition: opacity 0.2s ease;
  word-break: break-all;
}
.booth__debug-toast.is-visible {
  opacity: 1;
}
.booth__debug-toast strong {
  font-weight: 700;
}

.book-single {
  padding: 0 var(--ep-margin);
}
.book-single * {
  margin-bottom: 0;
}
.book-single__divider {
  padding-bottom: 5px;
  border-bottom: 1px solid #222;
}
.book-single__inner {
  --book-single-gap: 20px;
  display: grid;
  grid-template-columns: 50% minmax(0, 1fr);
  gap: var(--book-single-gap);
  align-items: start;
  width: 100%;
  margin: 0 auto;
}
.book-single__cover {
  width: 100%;
  min-width: 0;
}
.book-single__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
}
.book-single__cover-image, .book-single__cover-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  background: #f2f2f2;
}
.book-single__header {
  display: flex;
  align-items: center;
}
.book-single__labels {
  display: flex;
  flex-wrap: wrap;
}
.book-single__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  background-color: var(--color-white);
  padding: 3px;
}
.book-single__status--available {
  background: var(--minumsa-bg-green);
}
.book-single__status--unavailable {
  background: var(--minumsa-bg-unavailable);
}
.book-single__publisher {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  padding: 4px;
  color: #fff;
  background-color: #222;
  margin-right: 5px;
}
.book-single__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.book-single__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.book-single__meta-divider {
  margin: 6px 0 8px;
}
.book-single__meta-row {
  display: grid;
  grid-template-columns: 53px minmax(0, 1fr);
  gap: 10px;
  padding: px 0;
}
.book-single__meta-row:last-child {
  border-bottom: 0;
}
.book-single__meta-term, .book-single__meta-value {
  margin: 0;
  color: #222;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.book-single__description-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 20px;
}
.book-single__description-text {
  padding-top: 5px;
}
.book-single__description-text, .book-single__description-text * {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

/* Book custom event ------------------------------------------------------ */
/*
 * Styling for the [event_book_cover] flow (assets/js/event/*). The step modules
 * build their DOM in JS and only assign class names — all presentation lives
 * here.
 */
/* Shared building blocks ----- */
#event-content {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
}

.event-input {
  display: block;
  width: 100%;
  margin: 8px 0;
  font-size: 16px;
  font-weight: 600;
  padding: 5px;
}

.event-nav,
.event-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: var(--ep-margin) 0;
}
.event-nav button,
.event-actions button {
  font-size: 16px;
  font-weight: 700;
  background-color: var(--minumsa-bg-green);
  color: #000;
  padding: 8px 10px 9px;
  line-height: 1;
}
.event-nav button:hover, .event-nav button:focus-visible,
.event-actions button:hover,
.event-actions button:focus-visible {
  background-color: var(--minumsa-bg-green);
  color: #000;
}
.event-nav button:active,
.event-actions button:active {
  background-color: var(--minumsa-bg-green);
  color: #000;
}
.event-nav button:disabled,
.event-actions button:disabled {
  opacity: 0.5;
}

.event-cover-media--lottie {
  aspect-ratio: 162/278;
}
.event-cover-media--lottie svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Step 0 — intro slideshow ----- */
.event-intro {
  text-align: center;
}
.event-intro__intro {
  margin: var(--ep-margin) 0 0;
  padding: 0 var(--ep-margin);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}
.event-intro__intro p,
.event-intro__intro ul,
.event-intro__intro li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}
.event-intro__intro p {
  margin: 0 0 1em;
}
.event-intro__intro ul {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
}
.event-intro__intro li {
  margin: 2px 0;
}
.event-intro__intro :last-child {
  margin-bottom: 0;
}
.event-intro__intro .intro-text,
.event-intro__intro .intro-text-2,
.event-intro__intro .intro-text-3 {
  margin-bottom: 24px;
}
.event-intro__intro .intro-text-2 > p,
.event-intro__intro .intro-text-3 > p {
  margin-bottom: 4px;
  font-weight: 700;
}
.event-intro__intro .intro-text-3 {
  padding: var(--ep-margin) 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.event-intro__swiper {
  width: 100%;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 8px 0;
  overflow: hidden;
  animation: event-rise-in 0.7s 0.05s ease both;
}
.event-intro__swiper .swiper-slide {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-intro__swiper .swiper-slide img,
.event-intro__swiper .swiper-slide .event-cover-media,
.event-intro__swiper .swiper-slide .event-cover-media svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes event-rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Step 1 — template select ----- */
.event-select {
  text-align: center;
}
.event-select__intro {
  margin: var(--ep-margin) 0 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  padding: 0 var(--ep-margin);
}
.event-select__arrow {
  display: block;
  width: 17px;
  height: auto;
  margin: 16px auto 0;
}
.event-select__arrow + .event-select__name {
  margin-top: 6px;
}
.event-select__swiper {
  width: 100%;
  max-width: 100%;
  margin: 24px 0 0;
  padding: 12px 0;
  overflow: hidden;
}
.event-select__swiper .swiper-slide {
  width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.45;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.event-select__swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.event-select__swiper .swiper-slide img,
.event-select__swiper .swiper-slide .event-cover-media,
.event-select__swiper .swiper-slide .event-cover-media svg {
  display: block;
  width: 100%;
  height: auto;
}
.event-select__name {
  margin: 20px 0 8px;
  font-size: 20px;
  font-weight: 600;
  min-height: 28px;
}

/* Step 2 — customize ----- */
.event-customize {
  text-align: center;
}
.event-customize__stage {
  display: inline-block;
  width: 100%;
  max-width: 34.0525059666vh;
  margin: 8px auto 0;
  line-height: 0;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.event-customize__stage svg {
  display: block;
  width: 100%;
  height: auto;
}
.event-customize__stage [data-editable] {
  cursor: pointer;
}
.event-customize:not(.is-info) .event-customize__stage [data-editable]:hover {
  outline: 1px dashed rgba(0, 0, 0, 0.4);
}
.event-customize:not(.is-info):not(.is-customized) .event-customize__pulse {
  animation: event-pulse 1.6s ease-in-out infinite;
}
.event-customize.is-info .event-customize__stage {
  width: 55%;
}
.event-customize.is-info .event-customize__stage [data-editable] {
  pointer-events: none;
  cursor: default;
}
.event-customize.is-info .event-customize__cover-nav {
  display: none;
}
.event-customize__info {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.5s ease, opacity 0.5s ease;
}
.event-customize__info-inner {
  overflow: hidden;
  text-align: left;
  padding: 0 var(--ep-margin);
}
.event-customize.is-info .event-customize__info {
  grid-template-rows: 1fr;
  opacity: 1;
}
.event-customize__file {
  display: none;
}
.event-customize__thumb {
  display: block;
  max-width: 100%;
  margin-bottom: 8px;
}

@keyframes event-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.event-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999998;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.event-sheet-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.event-sheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 9999999;
  width: 100%;
  max-width: 640px;
  transform: translate(-50%, 100%);
  background-color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 12px var(--ep-margin) calc(var(--ep-margin) + 12px);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.event-sheet.is-open {
  transform: translate(-50%, 0);
}
.event-sheet__handle {
  width: 40px;
  height: 4px;
  margin: 0 auto 12px;
  border-radius: 2px;
  background-color: #d0d0d0;
}
.event-sheet__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.event-sheet__body {
  margin: 0 auto;
}
.event-sheet__done {
  display: block;
  width: 100%;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--minumsa-bg-green);
  color: #000;
  border: 0;
  padding: 10px;
  line-height: 1;
  cursor: pointer;
}

.image-upload-zone {
  border: 2px dashed #bbb;
  border-radius: 8px;
  padding: 32px 16px;
  text-align: center;
  cursor: pointer;
}

.event-field {
  margin: 16px 0;
}
.event-field__label {
  display: block;
  margin-bottom: 4px;
}

/* Step 3 — form ----- */
.event-form__field {
  margin: 16px 0;
}
.event-form__field .event-input {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  padding: 5px;
}
.event-form__label {
  display: block;
  width: fit-content;
  margin-bottom: 0;
  padding: 3px 8px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
.event-form__consent-box {
  margin: 16px 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600 !important;
  color: #000;
}
.event-form__consent {
  display: block;
  margin: 12px 0 0;
}
.event-form__consent input {
  margin-right: 6px;
}
.event-form__error {
  color: #c00;
  margin: 8px 0;
}

/* Step 4 — result ----- */
.event-result {
  text-align: center;
}
.event-result__swiper {
  width: 100vw;
  margin: 8px 0 0 calc(50% - 50vw);
  overflow: hidden;
}
.event-result__swiper .swiper-slide {
  width: 62vw;
  max-width: 300px;
}
.event-result__swiper .swiper-pagination {
  position: static;
  margin-top: 10px;
}
.event-result__media {
  display: block;
  width: 100%;
  height: auto;
}
.event-result__share-msg {
  margin-top: 8px;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 var(--ep-margin);
}
.intro-text p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.archive-page-section {
  overflow-x: hidden;
  padding: 0 var(--ep-margin);
}
.archive-page-section * {
  margin-bottom: 0;
}
.archive-page-section .archive-part[hidden] {
  display: none;
}
.archive-page-section .archive-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.archive-page-section .archive-tabs::-webkit-scrollbar {
  display: none;
}
.archive-page-section .archive-tabs.is-dragging {
  cursor: grabbing;
}
.archive-page-section .archive-tabs.is-dragging button {
  cursor: grabbing;
  pointer-events: none;
}
.archive-page-section .archive-tabs {
  margin-left: calc(-1 * var(--ep-margin));
  margin-right: calc(-1 * var(--ep-margin));
  padding-left: var(--ep-margin);
  padding-right: var(--ep-margin);
  margin-bottom: 20px;
  gap: 5px;
}
.archive-page-section .archive-tabs button {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 2px 5px;
  background-color: var(--minumsa-bg-green);
  color: #222;
}
.archive-page-section .archive-tabs button.is-active {
  color: var(--color-white);
  background: var(--color-black);
  opacity: 1;
}
.archive-page-section .archive-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 10px;
}
.archive-page-section .archive-sub-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background-color: var(--color-black);
  color: var(--color-white);
  margin-bottom: 7px;
  margin-right: auto;
  padding: 2px 5px;
}
.archive-page-section .archive-description {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}
.archive-page-section .archive-tables {
  padding-top: 20px;
}
.archive-page-section .archive-tables table, .archive-page-section .archive-tables thead, .archive-page-section .archive-tables tbody, .archive-page-section .archive-tables th, .archive-page-section .archive-tables td {
  display: block;
  border: none;
}
.archive-page-section .archive-tables tr {
  display: grid;
  grid-template-columns: 113px 1fr;
  gap: 10px;
}
.archive-page-section .archive-tables th, .archive-page-section .archive-tables td {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  padding: 4px 0;
  border: none;
  border-bottom: 1px solid #A8A8A8;
}
.archive-page-section .archive-tables thead th {
  background: #C7C7C7;
  padding-left: 5px;
  padding-right: 5px;
}
.archive-page-section .archive-tables tbody td:first-child {
  padding-left: 5px;
}
.archive-page-section .archive-notes {
  padding-top: 20px;
}

.site-footer {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  column-gap: var(--ep-margin);
  padding: var(--ep-margin);
}
.site-footer__logo {
  height: 100%;
  display: flex;
  align-items: stretch;
  line-height: 0;
}
.site-footer__logo img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: invert(1);
}
.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  justify-self: end;
  gap: calc(var(--ep-margin) / 2);
  text-align: right;
}
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--ep-margin);
}
.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-decoration: none;
}
.site-footer__social-link:hover, .site-footer__social-link:focus-visible {
  color: #fff;
}
.site-footer__social-icon {
  display: block;
  flex-shrink: 0;
  filter: invert(1);
}
.site-footer__contact {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

@media (min-width: 1025px) {
  html:has(body.home) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    background-color: #ffed97;
  }
  body.home {
    width: 480px;
    height: 810px;
    max-width: 100%;
    max-height: 100dvh;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateZ(0);
    background-color: #ffed97;
    --frame-shadow-x: 0px;
    --frame-shadow-y: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04), var(--frame-shadow-x) var(--frame-shadow-y) 48px rgba(0, 0, 0, 0.13);
    transition: box-shadow 0.3s ease-out;
  }
  body.home:has(.intro-page-section:not(.is-dismissed)) {
    overflow: hidden;
  }
  body.home .intro-sidebar {
    top: 0;
    right: 0;
    left: auto;
    width: 100%;
    height: 100%;
  }
}
:root[data-size=desktop] {
  --ep-margin: 20px;
  --ep-pageTop: 12px;
  --ep-headerH: 64px;
}

:root[data-size=tablet],
:root[data-size=phone_large],
:root[data-size=phone] {
  --ep-margin: 10px;
  --ep-pageTop: 10px;
  --ep-headerH: 50px;
}

* {
  word-break: keep-all;
  box-sizing: border-box;
  position: relative;
}

html {
  font-size: 14px !important;
}

body,
input,
select,
optgroup,
textarea {
  font-size: 1rem !important;
  line-height: 1.4em !important;
  font-family: "Kigsans", "SL Gothic", "Br Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
}

body {
  background-color: var(--minumsa-bg-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
}

h1 {
  font-size: 3.125rem;
  line-height: 1.1;
  font-weight: 600;
}

h2 {
  font-size: 1.8125rem;
  line-height: 1.1;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
}

p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.caption {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
  color: #000;
}

/* ----- Initialize End ----- */
/* Global Styles */
.site {
  min-height: 100vh;
}

.site-main {
  margin: 0 !important;
}

.inside-article {
  background-color: transparent !important;
  padding: 0 !important;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  padding: var(--ep-pageTop);
  height: 100px;
  overflow: visible;
}
.header__inner {
  display: flex;
  align-items: stretch;
  overflow: visible;
}
.header__menu-btn {
  --menu-spine-w: 4px;
  --menu-spine-gap: 10px;
  --menu-pad-left: 0px;
  --menu-stand-width: calc(
      3 * var(--menu-spine-w) + 2 * var(--menu-spine-gap)
  );
  margin-left: auto;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: stretch;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  width: var(--menu-stand-width);
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
}
.header__menu-btn:hover, .header__menu-btn:focus, .header__menu-btn:active, .header__menu-btn.is-active {
  background: none;
  border: 0;
  box-shadow: none;
}
.header__menu-btn:focus-visible {
  background: none;
  outline: 2px solid #000;
  outline-offset: 3px;
}
.header__menu-btn-inner {
  position: relative;
  display: block;
  width: calc(var(--menu-stand-width) + var(--menu-pad-left));
  height: 100%;
  margin-left: calc(var(--menu-pad-left) * -1);
  padding: 0;
  overflow: visible;
}
.header__menu-canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.header__logo {
  background-color: #000;
  padding: 15px;
  padding-bottom: 6px;
  width: fit-content;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo img {
  filter: invert(1);
  width: 60px;
}
.header__slogan {
  margin: 0;
  background-color: #fff;
  padding: var(--ep-margin);
  width: fit-content;
  height: fit-content;
}
.header__slogan p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

body.home .section-title h2 {
  background-color: #ffed97;
}
body .section-title h2 {
  background-color: var(--minumsa-bg-green);
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  width: max-content;
  margin: 0 auto;
}
.section-title h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  background-color: #ffed97;
  width: fit-content;
  padding: calc(var(--ep-margin) / 2) var(--ep-margin);
}
.section-title h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  background-color: #fff;
  width: fit-content;
  padding: calc(var(--ep-margin) / 2) var(--ep-margin);
}
.section-title h2,
.section-title h3 {
  width: 100%;
  text-align: center;
}

.bg-sub {
  background-color: #fcf3c7;
}

/* ----- Global Styles End ----- */
/* Custom Styles */
/* ----- Custom Styles End ----- */