/*
    Theme Name: 2025 THE ART PLAZA
    Theme URI: 
    Description: Theme for 2025 THE ART PLAZA
    Author: Jungju
    Author URI: http://www.jungju.kr
    Version: 1.0
    Tags: none
*/

:root {
  --maxWidth: 1200px;
  --std: 16px;
  --cubeSize: calc((var(--std) * 1.5) * 5.0);
  --cubeRadius: calc(var(--std) * 1.5);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  text-decoration: none;
  font-size: inherit;
  color: inherit;
  text-transform: inherit;
  list-style-type: none;
  font-family: "pretendard", "NotoSansSC", "helvetica";
  word-break: keep-all;
}

*,
html,
body {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow-x: hidden;
}

*:focus {
  outline: none;
}

body {
  background-color: rgb(0, 0, 0);
}

img {
  width: 100%;
}

button,
a {
  cursor: pointer;
}

/* app */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#app {
  position: relative;
  width: 100%;
  height: auto;
  pointer-events: none;
}

#app.active {
  pointer-events: all;
}

/* main-header */
#main-header {
  padding: calc(var(--std) * 1.5) 0;
  position: fixed;
  top: 0;
  left: calc(var(--std) * 1.5);
  z-index: 100;
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  font-weight: 500;
  width: calc(100% - (var(--std) * 1.5) * 2.0);
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 750;
}

#main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--std) * 1.5 * 5);
  background: rgba(0, 0, 0, 0);
  background: -o-linear-gradient(
    bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom, left top,
    from(rgba(255, 255, 255, 0)),
    to(rgba(0, 0, 0, 1))
  );
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 0;
}

#main-header > .item-main-header {
  position: relative;
  z-index: 10;
}

#main-header > .item-main-header:first-child {
  position: absolute;
  left: 0;
}

#main-header > .item-main-header#main-nav {
  position: absolute;
  right: 0;
  width: calc(100% - (var(--std) * 1.5) * 25.0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#app.not-index #main-header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@-webkit-keyframes roundAround {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes roundAround {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.title-ko {
  display: inline-block;
  width: calc((var(--std) * 1.5) * 12.5);
  -webkit-animation-name: roundAround;
  animation-name: roundAround;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-filter: drop-shadow(0 0 0.375em rgba(0, 0, 0, 0.375));
          filter: drop-shadow(0 0 0.375em rgba(0, 0, 0, 0.375));
}

#app.not-index .title-ko {
  display: none;
}

#main-header > .item-main-header.title-en {
  width: calc((var(--std) * 1.5) * 25.0);
  z-index: 800;
}

#app.search #main-header > .item-main-header.title-en {
  height: calc((var(--std) * 1.5) * 1.75);
  overflow: hidden;
}

#main-header > .item-main-header#main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(var(--std) * 0.5);
}

#main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--std) * 0.5);
}

#sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: calc(var(--std) * 0.5);
}

.item-menu > a {
  padding: 0.35em 0.5em;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  border-radius: 0.375em;
  border: 2px solid rgba(255, 255, 255, 0.875);
  border-top: 1px solid rgba(255, 255, 255, 0.875);
  border-bottom: 1px solid rgba(255, 255, 255, 0.875);
  -webkit-backdrop-filter: blur(calc(var(--std) * 0.75));
  backdrop-filter: blur(calc(var(--std) * 0.75));
}

.item-menu > a:hover {
  background-color: rgb(255, 255, 255, 0.375);
}

.item-menu.active > a {
  background-color: rgba(255, 255, 255);
  color: rgb(0, 0, 0);
}

#cont-toggle-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--std) * 0.75);
}

#search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: calc(var(--std) * 0.75);
}

#search-form > input {
  border: none;
  background-color: transparent;
  border-radius: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.875);
  font-size: 1.5rem;
}

input::-webkit-input-placeholder {
  font-size: 1.5rem;
  color: rgb(200, 200, 200);
}

input::-moz-placeholder {
  font-size: 1.5rem;
  color: rgb(200, 200, 200);
}

input:-ms-input-placeholder {
  font-size: 1.5rem;
  color: rgb(200, 200, 200);
}

input::-ms-input-placeholder {
  font-size: 1.5rem;
  color: rgb(200, 200, 200);
}

input::placeholder {
  font-size: 1.5rem;
  color: rgb(200, 200, 200);
}

#toggle-search {
  padding: 0.35em 0.5em;
  display: inline-block;
  background-color: transparent;
  border-radius: 0.375em;
  border: 2px solid rgba(255, 255, 255, 0.875);
  border-top: 1px solid rgba(255, 255, 255, 0.875);
  border-bottom: 1px solid rgba(255, 255, 255, 0.875);
  -webkit-backdrop-filter: blur(calc(var(--std) * 0.75));
  backdrop-filter: blur(calc(var(--std) * 0.75));
  font-size: inherit;
}

#toggle-search:hover {
  background-color: rgb(255, 255, 255, 0.375);
}

#toggle-search.active {
  background-color: rgba(255, 255, 255);
  color: rgb(0, 0, 0);
}

#close-toggle-search {
  padding: 0.35em 0.5em;
  display: none;
  background-color: transparent;
  border-radius: 0.375em;
  border: 1px solid rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(calc(var(--std) * 0.75));
  backdrop-filter: blur(calc(var(--std) * 0.75));
  font-size: inherit;
}

#close-toggle-search:hover {
  background-color: rgb(255, 255, 255, 0.375);
}

#app.search #main-menu,
#app.search #sub-menu {
  display: none;
}

#app.search #close-toggle-search {
  display: inline-block;
}

#cont-search {
  padding: calc((var(--std) * 1.5) * 6) calc(var(--std) * 1.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 500;
  display: none;
}

#cont-search::-webkit-scrollbar {
  display: none;
}

#app.search #cont-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc((var(--std) * 1.5) * 3);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.875);
  -webkit-backdrop-filter: blur(calc(var(--std) * 0.75));
  backdrop-filter: blur(calc(var(--std) * 0.75));
}

.item-modal {
  color: rgb(255, 255, 255);
  width: var(--maxWidth);
}

#searched {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

/* main-content */
#main-content {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  z-index: 200;
}

#app.active #main-content {
  opacity: 1;
}

#cont-board {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#app.not-index #cont-board {
  -webkit-filter: blur(calc(var(--std) * 1.5));
  filter: blur(calc(var(--std) * 1.5));
}

#app.not-index #cont-board {
  pointer-events: none;
}

#cont-sections {
  margin: calc((var(--std) * 1.5) * 9) 0;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc((var(--std) * 1.5) * 2.0);
}

.section-above {
  margin-bottom: calc((var(--std) * 1.5) * 2.0);
  width: var(--maxWidth);
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(var(--std) * 1.5);
}

.item-section-above {
  padding: 0 calc((var(--std) * 1.5) * 2.0);
  -webkit-backdrop-filter: blur(calc(var(--std) * 0.75));
  backdrop-filter: blur(calc(var(--std) * 0.75));
  border-bottom: 3px solid rgb(255, 255, 255);
  border-top: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  min-height: calc(var(--std) * (1.5 * 5));
  -webkit-box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.375);
          box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.375);
}

#app.about .item-section-above {
  border-bottom: 3px solid rgba(250, 100, 0, 1);
  border-top: 3px solid rgba(250, 100, 0, 0.5);
  background-color: rgba(235, 85, 0, 0.875);
}

#app.exhibition .item-section-above {
  border-bottom: 3px solid rgba(140, 40, 140, 1);
  border-top: 3px solid rgba(140, 40, 140, 0.5);
  background-color: rgba(100, 25, 140, 0.875);
}

#app.program .item-section-above {
  border-bottom: 3px solid rgba(255, 75, 175, 1);
  border-top: 3px solid rgba(255, 75, 175, 0.5);
  background-color: rgba(255, 50, 150, 0.875);
}

#page-title {
  font-size: 4rem;
  line-height: 1.65;
  font-weight: 700;
  text-align: center;
  /* text-transform: uppercase; */
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1)));
    transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1)));
  }

  100% {
    -webkit-transform: translateY(calc(var(--std) * 1.5 * 2 * (-1)));
    transform: translateY(calc(var(--std) * 1.5 * 2 * (-1)));
  }
}

@keyframes floating {
  0% {
    -webkit-transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1)));
    transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1)));
  }

  100% {
    -webkit-transform: translateY(calc(var(--std) * 1.5 * 2 * (-1)));
    transform: translateY(calc(var(--std) * 1.5 * 2 * (-1)));
  }
}

@-webkit-keyframes floatingShadow {
  0% {
    -webkit-transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
            transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(calc(var(--std) * 1.5 * 2 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
            transform: translateY(calc(var(--std) * 1.5 * 2 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
    -webkit-filter: blur(16px);
            filter: blur(16px);
    opacity: 0.5;
  }
}

@keyframes floatingShadow {
  0% {
    -webkit-transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
            transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(calc(var(--std) * 1.5 * 2 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
            transform: translateY(calc(var(--std) * 1.5 * 2 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
    -webkit-filter: blur(16px);
            filter: blur(16px);
    opacity: 0.5;
  }
}

#page-title .item-page-title {
  display: inline-block;
  -webkit-transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1)));
  -ms-transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1)));
  transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1)));
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0.75, -0.5, 0.375, 1);
  animation-timing-function: cubic-bezier(0.75, -0.5, 0.375, 1);
  color: rgba(245, 245, 245, 0.875);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 0.375em rgba(255, 255, 255, 0.375);
}

#page-title #origin-title {
  position: relative;
  z-index: 10;
}

#page-title #shadow-title {
  padding: 0 calc((var(--std) * 1.5) * 2.0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  z-index: 0;
}

#page-title #shadow-title > .item-page-title {
  position: relative;
  top: 1rem;
  left: -0.375rem;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: transparent;
  color: rgba(255, 255, 255, 0.125);
  -webkit-transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
      -ms-transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
          transform: translateY(calc(var(--std) * 1.5 * 0.5 * (-1))) skew(-22.5deg) scale(1.0, -0.5);
  -webkit-filter: blur(4px);
          filter: blur(4px);
  text-shadow: none;
}

#app.program #page-title #shadow-title > .item-page-title {
  color: rgba(255, 255, 255, 0.175);
}

.sections {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc((var(--std) * 1.5) * 2.0);
}

.sections.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.section {
  width: calc(var(--maxWidth));
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: calc((var(--std) * 1.5) * 2.0) calc((var(--std) * 1.5) * 1.25);
}

.section:nth-child(2n - 1) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.connection {
  padding: 0 calc((100% - ((var(--std) * 1.5) * 5) * 3) / 2);
  width: 100%;
  height: calc(var(--std) * (1.5 * 3));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
}

.section:nth-child(2n - 1) > .connection {
  padding: 0;
  padding-left: calc((100% - ((var(--std) * 1.5) * 4) * 4));
  padding-right: calc(var(--std) * (1.5 * 4));
}

.section:nth-child(2n) > .connection {
  padding: 0;
  padding-right: calc((100% - ((var(--std) * 1.5) * 4) * 4));
  padding-left: calc(var(--std) * (1.5 * 4));
}

@-webkit-keyframes moveLeftRight {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    background-color: rgb(255, 255, 255, 0.125);
  }

  100% {
    -webkit-transform: translateX(calc(var(--std) * (1.5 * 0.375)));
    transform: translateX(calc(var(--std) * (1.5 * 0.375)));
    background-color: rgb(255, 255, 255, 0.375);
  }
}

@keyframes moveLeftRight {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    background-color: rgb(255, 255, 255, 0.125);
  }

  100% {
    -webkit-transform: translateX(calc(var(--std) * (1.5 * 0.375)));
    transform: translateX(calc(var(--std) * (1.5 * 0.375)));
    background-color: rgb(255, 255, 255, 0.375);
  }
}

.connection > .icon {
  position: relative;
  width: calc((var(--std) * 1.5) * 4);
  height: calc((var(--std) * 1.5) * 4);
  background-color: rgb(255, 255, 255, 0.375);
  border: 1px solid rgba(255, 255, 255, 0.875);
  -webkit-box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.375);
          box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.375);
  border-top: none;
  border-radius: 100%;
  -webkit-animation-name: moveLeftRight;
  animation-name: moveLeftRight;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.connection > .icon:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.connection > .icon:nth-child(2) {
  -webkit-animation-delay: 0.125s;
  animation-delay: 0.125s;
}

.connection > .icon:nth-child(3) {
  -webkit-animation-delay: 0.375s;
  animation-delay: 0.375s;
}

.connection > .icon:nth-child(1) {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.connection > .icon:nth-child(3) {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.section:nth-child(2n) .connection > .icon:nth-child(1) {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.section:nth-child(2n) .connection > .icon:nth-child(3) {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.section > .heading {
  position: relative;
  padding: calc(var(--std) * 2.0) 0;
  text-align: center;
  color: rgb(255, 255, 255);
  border-radius: 1.375em;
  width: calc((100% - (var(--std) * 1.5) * 1.25) / 4 * 1);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section > .heading::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 53.75%;
  background-color: rgb(255, 255, 255);
  border-radius: 0.375em;
  border-bottom: 3px solid rgba(0, 0, 0, 0.375);
  z-index: -100;
  -webkit-box-shadow: inset 0 0 calc(var(--std) * 0.125) rgba(0, 0, 0, 0.25);
          box-shadow: inset 0 0 calc(var(--std) * 0.125) rgba(0, 0, 0, 0.25);
}

@-webkit-keyframes smallRotation {
  0% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@keyframes smallRotation {
  0% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@-webkit-keyframes smallRotation2 {
  0% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  100% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}

@keyframes smallRotation2 {
  0% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  100% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}

.section:nth-child(2n - 1) > .heading {
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
  -webkit-animation-name: smallRotation2;
  animation-name: smallRotation2;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.section:nth-child(2n - 1) > .heading::after {
  content: "";
  position: absolute;
  right: calc(var(--std) * (1.5 * 2.5) * (-1) + 0.5em);
  width: 0;
  height: 0;
  border-top: calc(var(--std) * (1.5 * 2.5)) solid transparent;
  border-bottom: calc(var(--std) * (1.5 * 2.5)) solid transparent;
  border-left: calc(var(--std) * (1.5 * 2.5)) solid rgb(255, 255, 255);
  -webkit-filter: drop-shadow(0.5em 0 0.375em rgba(0, 0, 0, 0.125));
  filter: drop-shadow(0.5em 0 0.375em rgba(0, 0, 0, 0.125));
}

.section:nth-child(2n) > .heading {
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  -webkit-animation-name: smallRotation;
  animation-name: smallRotation;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.section:nth-child(2n) > .content {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.section:nth-child(2n) > .connection {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.section:last-child > .connection {
  display: none;
}

.section:nth-child(2n) > .heading::after {
  content: "";
  position: absolute;
  left: calc(var(--std) * (1.5 * 2.5) * (-1) + 0.5em);
  width: 0;
  height: 0;
  border-top: calc(var(--std) * (1.5 * 2.5)) solid transparent;
  border-bottom: calc(var(--std) * (1.5 * 2.5)) solid transparent;
  border-right: calc(var(--std) * (1.5 * 2.5)) solid rgb(255, 255, 255);
  -webkit-filter: drop-shadow(-0.5em 0 0.375em rgba(0, 0, 0, 0.125));
  filter: drop-shadow(-0.5em 0 0.375em rgba(0, 0, 0, 0.125));
}

.section > .heading > .sub-label {
  position: absolute;
  top: -0.375em;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(245, 245, 245, 0.875);
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 0.375em rgba(255, 255, 255, 0.375);
  letter-spacing: 0.025em;
  display: inline-block;
}

.section > .heading > .label {
  position: relative;
  top: -0.375em;
  font-size: 2.5rem;
  line-height: 1.25;
  font-weight: 700;
  color: rgba(245, 245, 245, 0.875);
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 0.375em rgba(255, 255, 255, 0.375);
  display: inline-block;
}

.section:nth-child(2n) > .heading > .label,
.section:nth-child(2n) > .heading > .sub-label {
  -webkit-animation-name: smallRotation2;
  animation-name: smallRotation2;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.section:nth-child(2n-1) > .heading > .label,
.section:nth-child(2n-1) > .heading > .sub-label {
  -webkit-animation-name: smallRotation;
  animation-name: smallRotation;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

#app.about .section > .heading::before {
  background-color: rgb(235, 85, 0);
}

#app.about .section:nth-child(2n - 1) > .heading::after {
  border-left: calc(var(--std) * (1.5 * 2.5)) solid rgb(235, 85, 0);
}

#app.about .section:nth-child(2n) > .heading::after {
  border-right: calc(var(--std) * (1.5 * 2.5)) solid rgb(235, 85, 0);
}

#app.exhibition .section > .heading::before {
  background-color: rgb(140, 40, 140);
}

#app.exhibition .section:nth-child(2n - 1) > .heading::after {
  border-left: calc(var(--std) * (1.5 * 2.5)) solid rgb(140, 40, 140);
}

#app.exhibition .section:nth-child(2n) > .heading::after {
  border-right: calc(var(--std) * (1.5 * 2.5)) solid rgb(140, 40, 140);
}

#app.program .section > .heading::before {
  background-color: rgb(255, 75, 175);
}

#app.program .section:nth-child(2n - 1) > .heading::after {
  border-left: calc(var(--std) * (1.5 * 2.5)) solid rgb(255, 75, 175);
}

#app.program .section:nth-child(2n) > .heading::after {
  border-right: calc(var(--std) * (1.5 * 2.5)) solid rgb(255, 75, 175);
}

.section > .content {
  width: calc((100% - (var(--std) * 1.5) * 1.25) / 4 * 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section.full > .content {
  width: 100%;
}

.section > .content > .item-content {
  padding: calc(var(--std) * (1.5 * 2.0));
  -webkit-backdrop-filter: blur(calc(var(--std) * 0.75));
  backdrop-filter: blur(calc(var(--std) * 0.75));
  color: rgb(255, 255, 255);
  border-radius: 1.375em;
  width: 100%;
  -webkit-box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.375);
          box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.375);
}

#app.about .section > .content > .item-content {
  border: 2px solid rgba(0, 190, 250, 1);
  background-color: rgba(0, 175, 235, 0.875);
}

#app.exhibition .section > .content > .item-content {
  border: 2px solid rgba(0, 170, 90, 1);
  background-color: rgba(0, 140, 60, 0.875);
}

#app.program .section > .content > .item-content {
  border: 2px solid rgba(255, 230, 0, 1);
  background-color: rgba(255, 200, 0, 0.875);
}

.section > .content > .item-content {
  border-top: none !important;
  border-bottom: none !important;
}

.cont-view-more {
  position: relative;
  width: 100%;
  height: 0px;
  z-index: 100;
}

.view-more {
  padding: 0.5em;
  position: absolute;
  top: calc(var(--std) * ((1.5 * 2.5) / 2) * (-1));
  /* left: calc((100% - var(--std) * (1.5 * 2.0)) / 2); */
  right: calc(var(--std) * (1.5 * 2.0));
  width: calc(var(--std) * (1.5 * 2.5));
  height: calc(var(--std) * (1.5 * 2.5));
  border-radius: 0.375em;
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 140, 60, 0.875);
  border: 2px solid rgba(0, 170, 90, 1);
  border-top: 1px solid rgba(0, 170, 90, 1);
  border-bottom: 1px solid rgba(0, 170, 90, 1);
  -webkit-backdrop-filter: blur(calc(var(--std) * 1));
  backdrop-filter: blur(calc(var(--std) * 1));
  border-radius: 100%;
  -webkit-box-shadow: inset 0 0 calc(var(--std) * 0.125) rgba(0, 0, 0, 0.375);
          box-shadow: inset 0 0 calc(var(--std) * 0.125) rgba(0, 0, 0, 0.375);
}

/* .view-more:hover {
  opacity: 0.5;
} */

.view-more > .label {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.view-more > .label > .icon {
  position: absolute;
  width: calc(var(--std) * (1.5 * 2.5) * 0.5);
  height: 2px;
  border-radius: 10em;
  background-color: rgba(255, 255, 255, 0.875);
}

.view-more > .label > .icon:nth-child(2) {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.view-more > .label:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.view-more > .label:nth-child(1)::before {
  position: absolute;
  content: "참여 작품";
  text-shadow: 0 0 0.5em rgba(255, 255, 255, 1);
  top: -3.25em;
  /* bottom: -1.75em; */
  /* left: -6em; */
  font-size: 1.25rem;
  line-height: 1.25;
  white-space: nowrap;
}

.view-more > .label:nth-child(2) {
  display: none;
}

.cont-view-more + .item-content {
  display: none;
}

.cont-view-more.active {
  -webkit-box-ordinal-group: 1000;
  -ms-flex-order: 999;
  order: 999;
}

.cont-view-more.active > .view-more > .label:nth-child(1) {
  display: none;
}

.cont-view-more.active > .view-more > .label:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cont-view-more.active > .view-more > .label:nth-child(2) > .icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cont-view-more.active > .view-more > .label:nth-child(2) > .icon:nth-child(2) {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.cont-view-more.active + .item-content {
  display: block;
}

.section > .content > .item-content.full {
  width: 100%;
}

.section > .content > .item-content.no-border {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 1) !important;
  background-color: transparent;
  line-height: 0;
}

.section > .content p,
.section > .content > .item-content li {
  font-size: 1.5rem;
  line-height: 1.65;
  font-weight: 400;
}

.section > .content p strong,
.section > .content li strong {
  font-size: 1.65rem;
  line-height: inherit;
  font-weight: 700;
}

.section > .content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section > .content li::before {
  position: relative;
  top: 0.7em;
  margin-right: 0.375em;
  content: "";
  min-width: 0.375em;
  height: 0.375em;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.875);
  border-radius: 100%;
}

.section > .content ul > ul {
  margin-left: 1.125em;
  width: 100%;
}

.section > .content ul > ul li::before {
  position: relative;
  top: 0.7em;
  margin-right: 0.375em;
  content: "";
  min-width: 0.375em;
  height: 2px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.875);
}

ul.participating-artists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: calc(var(--std) * (1.5 * 1));
}

ul.participating-artists > li::before {
  content: none !important;
}

ul.participating-artists > li {
  padding: calc(var(--std) * (1.5 * 0.75));
  border-radius: 0.375em;
  -webkit-box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.5);
  width: calc((100% - (var(--std) * (1.5 * 1) * 2.0)) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(var(--std) * 1.5);
}

ul.participating-artists > li a {
  border-bottom: none;
  line-height: 0;
}

ul.participating-artists > li > .title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.375;
  min-height: 55px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

a.anchor-naver-shop {
  display: inline-block;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

a.anchor-naver-shop > img {
  width: calc(var(--std) * (1.5 * 1.5));
  height: calc(var(--std) * (1.5 * 1.5));
}

.two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: calc((var(--std) * 1.5) * 2.0);
}

.two-columns > .columns {
  width: calc((100% - (var(--std) * 1.5) * 2.0) / 2);
}

.two-columns.border {
  gap: calc((var(--std) * 1.5) * 1);
}

.two-columns.border > .columns {
  width: calc((100% - (var(--std) * 1.5) * 1) / 2);
}

.two-columns.border > .columns .item-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(var(--std) * 1.5);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.two-columns.border.full > .columns {
  width: 100%;
}

.two-columns.border.full > .columns .item-columns {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.two-columns.border.full > .columns .item-columns > .child-item-columns {
  width: 100%;
}

.two-columns.border.full > .columns .item-columns:has(> .child-item-columns:nth-child(2)) > .child-item-columns {
  width: calc((100% - var(--std) * 1.5) / 2);
}

.two-columns.border.full > .columns .item-columns > .child-item-columns.thumb {
  width: calc((100% - var(--std) * 1.5) / 4) !important;
  padding-top: calc(((100% - var(--std) * 1.5) / 4) * (1 / 1));
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.two-columns.border.five > .columns {
  width: calc((100% - (var(--std) * 1.5) * 4) / 5);
  text-align: center;
}

.two-columns.border > .columns {
  padding: calc(var(--std) * 1.5);
  border-radius: 1.375em;
  -webkit-box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.two-columns.border > .columns > a {
  position: relative;
}

.two-columns.border > .columns > a::after {
  content: "예약하기↗";
  position: absolute;
  top: calc(var(--std) * 1.5 * (-1));
  left: calc(var(--std) * 1.5 * (-1) * 3.0);
  width: calc(100% + var(--std) * (1.5 * 2.0) * 2.0);
  height: calc(100% + var(--std) * (1.5 * 2.0));
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  -webkit-transition: opacity 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  z-index: 100;
}

.two-columns.border > .columns > a:hover::after {
  opacity: 1;
}

.cont-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(100% * (1 / 1));
}

.cont-map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

/* cont-like-table */
.cont-like-table {
  width: 100%;
  height: auto;
}

.like-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* width: calc(100% * 1.25); */
}

.like-table > .thead > .tr,
.like-table > .tbody > .item-tbody > .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.like-table > .thead {
  background-color: rgba(255, 50, 150, 0.875);
  color: rgb(255, 255, 255);
  border: 2px solid rgba(255, 75, 175, 1);
  border-top: 1px solid rgba(255, 75, 175, 1);
  border-bottom: 1px solid rgba(255, 75, 175, 1);
  border-radius: 0.75em;
  /* box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.375); */
}

.like-table > .thead > .tr {
  gap: calc(var(--std) * (1.5 * 1));
}

.like-table > .thead > .tr > .th {
  padding: 0.75em 0.75em 1.5em 0.75em;
  width: calc((100% - (var(--std) * ((1.5 * 1) * 7))) / 8);
  height: auto;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.375;
}

.like-table > .tbody > .item-tbody {
  border-radius: 0.75em;
  overflow: hidden;
}

.like-table > .tbody > .item-tbody > .tr > .td {
  position: relative;
  padding: 0.75em 0.75em 1.5em 0.75em;
  width: calc(100% / 8);
  min-height: calc(var(--std) * (1.5 * 3));
  height: auto;
  font-size: 1.125rem;
  line-height: 1.375;
  background-color: rgba(255, 255, 255, 0.875);
  -webkit-box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.125);
}

.like-table > .tbody > .item-tbody > .tr > .td::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.75em;
  width: calc(100% - (0.75em * 2.0));
  height: 1px;
  /* border-top: 1px solid rgba(100, 100, 100, 0.5); */
}

.like-table > .tbody > .item-tbody {
  /* margin-top: 4px; */
}

.like-table > .tbody > .item-tbody > .tr:first-child > .td::before {
  content: none;
}

.like-table > .tbody > .item-tbody > .tr > .td:first-child {
  padding: 1em;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: rgba(0, 140, 60, 0.875);
  border: 2px solid rgba(0, 170, 90, 1);
  border-top: none;
  border-bottom: none;
  color: rgb(255, 255, 255);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.like-table > .tbody > .item-tbody:nth-child(2) > .tr > .td:first-child {
  background-color: rgba(255, 100, 0, 0.875);
  border: 2px solid rgba(255, 125, 0, 1);
  border-top: none;
  border-bottom: none;
}

.like-table > .tbody > .item-tbody:nth-child(3) > .tr > .td:first-child {
  background-color: rgba(0, 100, 255, 0.875);
  border: 2px solid rgba(0, 130, 255, 1);
  border-top: none;
  border-bottom: none;
}

.like-table > .tbody > .item-tbody > .tr > .td:first-child::before {
  content: none;
}

.like-table > .tbody > .item-tbody > .tr > .td.no-border {
  border-top: none;
}

.like-table > .tbody > .item-tbody > .tr > .td:first-child {
  font-weight: 700;
}

/* gallery */
.gallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: calc((var(--std) * 1.5) * 2.0);
}

.gallery > .item-gallery {
  position: relative;
  padding: calc(var(--std) * 2.0);
  width: calc((100% - ((var(--std) * 1.5) * 2.0) * 2.0) / 3);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(var(--std) * 1.5);
  -webkit-backdrop-filter: blur(calc(var(--std) * 0.75));
  backdrop-filter: blur(calc(var(--std) * 0.75));
  color: rgb(255, 255, 255);
  border-radius: 1.375em;
}

.gallery > .item-gallery.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

#app.exhibition .gallery > .item-gallery {
  border: 1px solid rgba(0, 170, 90, 1);
  background-color: rgba(0, 140, 60, 0.875);
}

.gallery > .item-gallery > .desc {
  margin-bottom: calc((var(--std) * 1.5) * 2.0);
}

.gallery .desc .title {
  font-size: 1.5rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.gallery .desc .artist,
.gallery .desc .space,
.gallery .desc .caption {
  font-size: 1.125rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.item-desc:nth-child(2) {
  position: absolute;
  bottom: calc(var(--std) * 2.0);
  right: calc(var(--std) * 2.0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.go-to-shop {
  width: calc((var(--std) * 1.5) * 1.75);
  line-height: 0;
}

.cat {
  position: absolute;
  left: calc(var(--std) * 2.0);
  bottom: calc(var(--std) * 2.0);
  font-size: 1.125rem;
}

.cat::before {
  content: "#";
}

/* thumb */
.thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(100% * (1 / 1));
  background-color: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  border-radius: 0.375em;
}

.thumb > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

a .thumb > img {
  transition: transform 0.25s ease-out;
}

a:hover .thumb > img {
  transform: scale(1.1);
}

.thumb.ratio-16-9 {
  width: 100%;
  height: 0;
  padding-top: calc(100% * (9 / 16));
  background-color: rgba(255, 255, 255, 0.5);
}

/* logo */
.logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: calc(var(--std) * 1.5);
}

.section > .content li.logo::before {
  content: none;
}

.logos > .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - (var(--std) * 1.5) * 3.0) / 4);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(var(--std) * (1.5 * 0.5));
}

.logo > .item-logo:nth-child(1) {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(100% * (1 / 1));
  background-color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
  border-left: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  border-radius: 0.375em;
}

.logo > .item-logo:nth-child(1) > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

/* instant-modal */
#instant-modal {
  position: fixed;
  z-index: 500;
  width: calc(var(--std) * (1.5 * 20));
  height: 0;
  padding-top: calc((var(--std) * (1.5 * 20)) * (9 / 16));
  overflow: hidden;
  border-radius: 1em;
  -webkit-box-shadow: 0 0 calc(var(--std) * 0.375) rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 calc(var(--std) * 0.375) rgba(0, 0, 0, 0.125);
  background-color: rgba(255, 255, 255, 0.375);
  -webkit-backdrop-filter: blur(calc(var(--std) * 0.75));
  backdrop-filter: blur(calc(var(--std) * 0.75));
  opacity: 0;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

#instant-modal > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  opacity: 0.5;
}

#instant-modal:hover > iframe {
  opacity: 1;
}

/* main-footer */
#main-footer {
  padding: calc(var(--std) * 1.5) 0;
  position: fixed;
  bottom: 0;
  left: calc(var(--std) * 1.5);
  z-index: 100;
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  width: calc(100% - (var(--std) * 1.5) * 2.0);
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 500;
}

.item-main-footer:nth-child(1) {
  position: absolute;
  left: 0;
  height: calc(var(--std) * 1.5 * 2.0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc((var(--std) * 1.5) * 1.5);
}

#toggle-previous-website {
  border: none;
  background-color: transparent;
  width: calc(var(--std) * (1.5 * 2.25));
  height: calc(var(--std) * (1.5 * 2.25));
  background-color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
  border-left: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  border: none;
  border-radius: 0.375em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#toggle-previous-website > .icon {
  position: absolute;
  width: calc(var(--std) * (1.5 * 0.75));
  height: 2px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: -webkit-transform 0.375s ease-out;
  transition: -webkit-transform 0.375s ease-out;
  -o-transition: transform 0.375s ease-out;
  transition: transform 0.375s ease-out;
  transition: transform 0.375s ease-out, -webkit-transform 0.375s ease-out;
}

#toggle-previous-website > .icon:nth-child(2) {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#toggle-previous-website.active > .icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#toggle-previous-website.active > .icon:nth-child(2) {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

#footer-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(var(--std) * (1.5 * 1.5));
}

#footer-icons > .item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(var(--std) * 1.5 * 0.75);
}

#footer-icons > .item-right:nth-child(1) {
  gap: calc(var(--std) * 1.5 * 0.5);
}

#footer-icons > .item-right a {
  position: relative;
  width: calc((var(--std) * 1.5) * 2.0);
  height: calc((var(--std) * 1.5) * 2.0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-filter: drop-shadow(0 0 0.375em rgba(0, 0, 0, 0.375));
          filter: drop-shadow(0 0 0.375em rgba(0, 0, 0, 0.375));
}

#footer-icons > .item-right a.previous-website {
  width: calc(var(--std) * (1.5 * 2.25));
  height: calc(var(--std) * (1.5 * 2.25));
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border-radius: 100%;
  font-size: 1rem;
  font-weight: 700;
}

#footer-icons > .item-right a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

#footer-icons > .item-right:nth-child(2) a:nth-child(2) {
  width: calc((var(--std) * 1.5) * 2.0);
  height: calc((var(--std) * 1.5) * 2 * (1164.364 / 1020.472));
}

.item-main-footer:nth-child(3) {
  position: absolute;
  right: 0;
}

.footer-date {
  width: calc(((var(--std) * 1.5) * 25.0) * (498.82 / 554));
}

/* dice */
#cont-dice {
  position: relative;
  width: calc((var(--std) * 1.5) * 12.5);
  height: calc((var(--std) * 1.5) * 12.5);
  background-color: rgba(0, 140, 60, 0.875);
  border: 1px solid rgba(0, 170, 90, 1);
  -webkit-box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.375);
          box-shadow: inset 0 0 calc(var(--std) * 0.25) rgba(0, 0, 0, 0.375);
  border-radius: 100%;
  -webkit-backdrop-filter: blur(calc(var(--std) * 0.75));
  backdrop-filter: blur(calc(var(--std) * 0.75));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border 0.75s ease-out, background-color 0.75s ease-out;
}

#cont-dice.active {
  background-color: rgb(245, 245, 245);
  border: 1px solid rgba(255, 255, 255, 1);
  pointer-events: none;
}

#dice {
  width: var(--cubeSize);
  height: var(--cubeSize);
  background-color: rgb(255, 255, 255);
  border-radius: var(--cubeRadius);
  position: relative;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(calc(var(--cubeSize) * 0.5 * (-1)));
  transform: translateZ(calc(var(--cubeSize) * 0.5 * (-1)));
  -webkit-transition: -webkit-transform 0.375s ease-out;
  transition: -webkit-transform 0.375s ease-out;
  -o-transition: transform 0.375s ease-out;
  transition: transform 0.375s ease-out;
  transition: transform 0.375s ease-out, -webkit-transform 0.375s ease-out;
  will-change: transform;
  pointer-events: none;
}

.item-dice {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--cubeRadius);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 1);
  background-color: rgba(245, 245, 245, 1);
  box-shadow: inset 0 0 calc(var(--std) * 0.75) rgba(0, 0, 0, 0.25);
  color: rgb(0, 0, 0);
  pointer-events: none;
}

.item-dice > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.item-dice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 245, 245, 1);
  border-radius: var(--cubeRadius);
  -webkit-transform: translateZ(-1px);
  transform: translateZ(-1px);
  z-index: -10;
}

.item-dice::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle,rgba(255, 255, 255, 0) 50%, rgba(100, 100, 100, 0.125) 100%);
  border-radius: var(--cubeRadius);
  -webkit-transform: translateZ(1px);
  transform: translateZ(1px);
  z-index: 10;
}

.item-dice:nth-child(1) {
  top: 0;
  left: 0;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: translateZ(calc(var(--cubeSize)));
  transform: translateZ(calc(var(--cubeSize)));
}

.item-dice:nth-child(2) {
  top: 0;
  left: 0;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
}

.item-dice:nth-child(3) {
  top: 0;
  left: 0;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotateY(180deg) translateZ(0);
  transform: rotateY(180deg) translateZ(0);
}

.item-dice:nth-child(4) {
  top: 0;
  left: 0;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}

.item-dice:nth-child(5) {
  top: 0;
  left: 0;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}

.item-dice:nth-child(6) {
  top: 0;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
}

#app.not-index #main-footer > .item-main-footer {
  -webkit-transition: opacity 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  opacity: 0;
  pointer-events: none;
}

#app.not-index.ended #main-footer > .item-main-footer {
  opacity: 1;
  pointer-events: all;
}

#app.not-index #main-footer {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#app.not-index .item-main-footer:nth-child(1) {
  position: static;
  left: auto;
}

#app.not-index #cont-dice {
  display: none;
}

#toggle-mobile-menu {
  display: none;
}

/* svg */
.svg-container {
  position: relative;
  width: 100%;
  height: auto;
}

.svg-container.main {
  width: calc(var(--maxWidth));
  height: 0;
  padding-top: calc(var(--maxWidth) * (567.21 / 728.65));
}

.svg-container.main > svg {
  -webkit-transform: rotate(90deg) scale(calc(728.65 / 567.21));
      -ms-transform: rotate(90deg) scale(calc(728.65 / 567.21));
          transform: rotate(90deg) scale(calc(728.65 / 567.21));
}

.svg-container.main .cls-1 {
  fill: #fff;
}

.svg-container.main .cls-2 {
  fill: #fff100;
}

.svg-container.main .cls-2:hover {
  opacity: 0.5;
}

.svg-container.main .cls-3 {
  fill: #e85298;
}

.svg-container.main .cls-4 {
  fill: #f5b087;
}

.svg-container.main .cls-5,
.svg-container.main .cls-6,
.svg-container.main .cls-8,
.svg-container.main .cls-9 {
  fill: none;
  stroke: #000;
}

.svg-container.main .cls-5,
.svg-container.main .cls-6 {
  stroke-miterlimit: 10;
}

.svg-container.main .cls-5 {
  stroke-width: 0.709px;
}

.svg-container.main .cls-7 {
  fill: #1f1f1f;
}

.svg-container.main .cls-8 {
  stroke-miterlimit: 1;
  stroke-width: 2.911px;
}

.svg-container.main .cls-9 {
  stroke-width: 1.455px;
}

.svg-container.eulji-poly {
  width: 100%;
  height: 0;
  padding-top: calc(100% * (404.85 / 884));
  overflow: hidden;
}

.svg-container.eulji-poly svg {
  -webkit-filter: drop-shadow(0 0 0.375em rgba(0, 0, 0, 0.375));
  filter: drop-shadow(0 0 0.375em rgba(0, 0, 0, 0.375));
}

.svg-container.eulji-poly .cls-1 {
  fill: #ec75a9;
}

.svg-container.eulji-poly .cls-2 {
  fill: #a18cc1;
}

.svg-container.eulji-poly .cls-3 {
  fill: #00b4ed;
}

.svg-container.eulji-poly .cls-4 {
  fill: #094;
}

.svg-container.eulji-poly .cls-5 {
  fill: #ee7a00;
}

.svg-container.eulji-poly .cls-6 {
  fill: #fff100;
}

.svg-container.eulji-poly .cls-7 {
  fill: none;
}

.svg-container.eulji-poly .cls-8 {
  fill: #fff;
}

.svg-container.eulji-arcade {
  width: calc(100%);
  height: 0;
  padding-top: calc(100% * (385.58 / 1150.84));
  overflow: hidden;
}

.svg-container.eulji-arcade .cls-1 {
  fill: #ec75a9;
  cursor: pointer;
}

.svg-container.eulji-arcade .cls-2 {
  fill: #fff;
}

.svg-container.eulji-arcade .line {
  fill: none;
  stroke: #000;
  stroke-width: .41px;
}

.svg-container.partners-and-friends {
  width: 100%;
  height: 0;
  padding-top: calc(100% * (466.89 / 884));
  overflow: hidden;
}

.svg-container > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* go-to-top */
#go-to-top {
  position: fixed;
  left: calc((100% - (var(--std) * (1.5 * 2.5))) / 2);
  width: calc(var(--std) * (1.5 * 2.5));
  height: calc(var(--std) * (1.5 * 2.5));
  background-color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
  border-left: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  border-radius: 0.375em;
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease-out;
  -o-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backdrop-filter: blur(calc(var(--std) * 0.75));
          backdrop-filter: blur(calc(var(--std) * 0.75));
}

#app.not-index.started #go-to-top {
  opacity: 1;
  pointer-events: all;
}

#app.not-index.ended #go-to-top {
  opacity: 0;
  pointer-events: none;
}

/* common */
::-webkit-scrollbar {
  width: calc(var(--std) * 0.5);
}

.cont-like-table::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 1); /* 스크롤바 색상 */
  border-radius: 1.375em;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.875); /*스크롤바 뒷 배경 색상*/
}

p > small {
  font-size: 0.575em;
}

.content p > a,
.content li > a {
  line-height: inherit;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.content p > a:hover {
  opacity: 0.5;
}

#cont-slogan {
  margin-top: calc(var(--std) * (1.5 * 3.0));
  width: var(--maxWidth);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#cont-slogan > img {
  max-width: 240px;
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
}

/* grid */
#cont-grid {
  position: fixed;
  z-index: 9999;
  display: none;
}

#cont-grid.active {
  display: block;
}

.grid {
  position: fixed;
  z-index: 9999;
}

.grid:nth-child(1) {
  top: calc(var(--std) * 1.5);
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(255, 0, 255);
}

.grid:nth-child(2) {
  top: 0;
  right: calc(var(--std) * 1.5);
  width: 1px;
  height: 100%;
  border-right: 1px solid rgb(255, 0, 255);
}

.grid:nth-child(3) {
  bottom: calc(var(--std) * 1.5);
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(255, 0, 255);
}

.grid:nth-child(4) {
  top: 0;
  left: calc(var(--std) * 1.5);
  width: 1px;
  height: 100%;
  border-right: 1px solid rgb(255, 0, 255);
}

.grid:nth-child(5) {
  top: 0;
  left: calc((100% - var(--maxWidth)) / 2);
  width: 1px;
  height: 100%;
  border-right: 1px solid rgb(0, 255, 255);
}

.grid:nth-child(6) {
  top: 0;
  right: calc((100% - var(--maxWidth)) / 2);
  width: 1px;
  height: 100%;
  border-right: 1px solid rgb(0, 255, 255);
}

.grid:nth-child(7) {
  top: calc((100% - ((var(--vh, 1vh) * 100) / 2)) / 2);
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed rgb(255, 255, 0);
}

.grid:nth-child(8) {
  bottom: calc((100% - ((var(--vh, 1vh) * 100) / 2)) / 2);
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed rgb(255, 255, 0);
}

.grid:nth-child(9) {
  bottom: calc((var(--std) * 1.5) * 3);
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(255, 0, 255);
}

.grid:nth-child(10) {
  top: calc((var(--std) * 1.5) * 3);
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(255, 0, 255);
}

.grid:nth-child(11) {
  top: calc((var(--std) * 1.5) * 5);
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(255, 0, 255);
}

.grid:nth-child(12) {
  top: calc((var(--std) * 1.5) * 7);
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(255, 0, 255);
}

.grid:nth-child(13) {
  top: 0;
  left: calc(
    (100% - var(--maxWidth)) / 2 +
      ((var(--maxWidth) - (var(--std) * (1.5 * 1.25))) / 3)
  );
  width: 1px;
  height: 100%;
  border-right: 1px solid rgb(0, 255, 255);
}

.grid:nth-child(14) {
  top: 0;
  left: calc(
    (100% - var(--maxWidth)) / 2 +
      ((var(--maxWidth) - (var(--std) * (1.5 * 1.25))) / 3) +
      (var(--std) * (1.5 * 1.25))
  );
  width: 1px;
  height: 100%;
  border-right: 1px solid rgb(0, 255, 255);
}

.grid:nth-child(15) {
  top: 0;
  right: calc(
    (100% - var(--maxWidth)) / 2 +
      ((var(--maxWidth) - (var(--std) * (1.5 * 1.25))) / 3)
  );
  width: 1px;
  height: 100%;
  border-right: 1px solid rgb(0, 255, 255);
}

.grid:nth-child(16) {
  top: 0;
  right: calc(
    (100% - var(--maxWidth)) / 2 +
      ((var(--maxWidth) - (var(--std) * (1.5 * 1.25))) / 3) +
      (var(--std) * (1.5 * 1.25))
  );
  width: 1px;
  height: 100%;
  border-right: 1px solid rgb(0, 255, 255);
}

.grid:nth-child(17) {
  bottom: calc((var(--std) * 1.5) * 5);
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid rgb(255, 0, 255);
}

/* responsive */
@media screen and (max-width: 1440px) {
  #main-header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .title-ko {
    top: calc(var(--std) * (1.5 * 6.5));
  }

  #app.index #main-footer {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .item-main-footer:nth-child(1) {
    position: static;
  }

  .item-main-footer:nth-child(3) {
    bottom: calc(var(--std) * (1.5 * 5.0));
  }
}

@media screen and (max-width: 1245px) {
  :root {
    --maxWidth: 100vw;
  }

  .svg-container.main {
    width: calc(100vw - var(--std) * (1.5 * 2.0));
  }

  .svg-container.main > svg {
    -webkit-transform: rotate(90deg) scale(calc((728.65 / 567.21) * ((100vw - var(--std) * (1.5 * 2.0)) / 100vw)));
        -ms-transform: rotate(90deg) scale(calc((728.65 / 567.21) * ((100vw - var(--std) * (1.5 * 2.0)) / 100vw)));
            transform: rotate(90deg) scale(calc((728.65 / 567.21) * ((100vw - var(--std) * (1.5 * 2.0)) / 100vw)));
  }

  .section {
    padding: 0 calc(var(--std) * 1.5);
  }

  .section > .heading {
    min-width: calc(var(--std) * (1.5 * 12.5));
  }

  .section > .content {
    max-width: calc(
      (100% - var(--std) * (1.5 * 12.5) - var(--std) * (1.5 * 2.0))
    );
  }

  .section.full > .content {
    max-width: 100%;
  }

  ul.participating-artists > li {
    width: calc((100% - (var(--std) * (1.5 * 1) * 1)) / 2);
  }
}

@media screen and (max-width: 1024px) {
  .section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section:nth-child(2n) > .heading {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .section:nth-child(2n) > .content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .section > .content {
    width: 100%;
    max-width: 100%;
  }

  .cont-like-table {
    position: relative;
    overflow: auto;
    width: 100%;
    height: 0;
    padding-top: calc(100% * (1 / 1));
  }

  .like-table {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% * 2.5);
  }

  #main-header > .item-main-header#main-nav {
    display: none;
  }

  #toggle-mobile-menu {
    position: fixed;
    top: calc(var(--std) * 1.5);
    right: calc(var(--std) * 1.5);
    width: calc(var(--std) * (1.5 * 2.25));
    height: calc(var(--std) * (1.5 * 2.25));
    background-color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgb(255, 255, 255);
    border-bottom: 1px solid rgb(255, 255, 255);
    border-left: 2px solid rgb(255, 255, 255);
    border-right: 2px solid rgb(255, 255, 255);
    border: none;
    border-radius: 0.375em;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: calc(var(--std) * (1.5 * 0.2));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #toggle-mobile-menu > .icon {
    width: calc(var(--std) * (1.5 * 0.75));
    height: 2px;
    background-color: rgb(255, 255, 255);
    -webkit-transition: -webkit-transform 0.25s ease-out;
    transition: -webkit-transform 0.25s ease-out;
    -o-transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
  }

  #main-header > #toggle-mobile-menu.active + #main-nav {
    padding: calc(var(--std) * 1.5);
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.875);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: calc(var(--std) * 1.5);
    z-index: 500;
  }

  #toggle-mobile-menu.active > .icon {
    position: absolute;
  }

  #toggle-mobile-menu.active > .icon:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #toggle-mobile-menu.active > .icon:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #toggle-mobile-menu.active > .icon:nth-child(2) {
    display: none;
  }

  #sub-menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #cont-slogan > img {
    max-width: 240px;
  }

  #toggle-previous-website {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #footer-icons {
    padding: 0 calc(var(--std) * 1.5);
    position: fixed;
    left: 0;
    bottom: calc(var(--std) * (1.5 * (3.0 + 1.0)));
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 100;
    display: none;
  }

  #toggle-previous-website.active + #footer-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 720px) {
  :root {
    --std: 11px;
  }

  html {
    font-size: 11px;
  }

  .section > .content p strong,
  .section > .content li strong {
    font-size: 1.5rem;
  }

  .svg-container.main {
    width: 100%;
    padding-top: calc(100% * (728.65 / 567.21));
  }

  .svg-container.main > svg {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .item-main-footer:nth-child(1) {
    gap: calc(var(--std) * (1.5 * 0.75));
  }

  #cont-slogan > img {
    max-width: 160px;
  }

  .two-columns.border.full > .columns .item-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .two-columns.border.full > .columns .item-columns:has(> .child-item-columns:nth-child(2)) > .child-item-columns {
    width: 100%;
  }

  .two-columns.border.full > .columns .item-columns > .child-item-columns.thumb {
    margin: 0 auto;
    width: 100% !important;
    padding-top: calc(100% * (1 / 1));
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
    border-radius: 1.375em;
  }

  ul.participating-artists > li > .title {
    min-height: 48px;
  }
}

@media screen and (max-width: 500px) {
  :root {
    --cubeSize: calc(120px * (5.0 / 12.5));
    --cubeRadius: calc(var(--std) * (1.5 * 0.5));
  }

  #main-header > .item-main-header.title-en {
    max-width: 240px;
  }

  .title-ko {
    top: calc(var(--std) * (1.5 * 4.5));
    max-width: 140px;
  }

  .footer-date {
    width: calc(240px * (498.82 / 554));
  }

  #instant-modal {
    width: calc(var(--std) * (1.5 * 15));
    padding-top: calc((var(--std) * (1.5 * 15)) * (9 / 16));
  }

  .section > .content > .item-content {
    padding: calc(var(--std) * (1.5 * 1.5));
  }

  .item-main-footer:nth-child(3) {
    bottom: calc(var(--std) * (1.5 * 3.0));
  }
  
  #cont-dice {
    width: 120px;
    height: 120px;
  }

  #app.exhibition .item-section-above {
    max-width: calc(100% - (var(--std) * (1.5 * 2.0)));
  }

  .two-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .two-columns.border.full.five {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .two-columns.border.five > .columns {
    width: calc((100% - (var(--std) * 1.5) * 1) / 2);
  }

  .two-columns > .columns,
  .two-columns.border > .columns {
    width: 100%;
  }

  .view-more {
    width: calc(var(--std) * (1.5 * 2.0));
    height: calc(var(--std) * (1.5 * 2.0));
    top: calc(var(--std) * ((1.5 * 2.0) / 2) * (-1));
    right: calc(var(--std) * (1.5 * 1.5));
  }

  .view-more > .label > .icon {
    width: calc(var(--std) * (1.5 * 2.0) * 0.5);
  }

  .cont-view-more.active > .view-more {
    bottom: calc(var(--std) * ((1.5 * 2.0) / 2) * (-1));
    /* right: calc((100% - var(--std) * (1.5 * 2.0)) / 2); */
  }

  .view-more > .label:nth-child(1)::before {
    content: none;
  }

  .logos > .logo {
    width: calc((100% - (var(--std) * 1.5) * 1.0) / 2);
  }
}

@media screen and (max-width: 375px) {
  ul.participating-artists > li {
    width: 100%;
  }
}