/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*root*/
:root {
  --main: #d6e7d1;
  --bg: #000000;
}

@font-face {
  font-family: "Jugador-Stocky";
  font-style: normal;
  src: url(../fonts/JUGADOR-Stocky.woff2) format("woff2");
}

@font-face {
  font-family: "PpPierSans-Light";
  font-style: normal;
  src: url(../fonts/PPPierSans-Light.woff2) format("woff2");
}

@font-face {
  font-family: "42DotSans-Medium";
  font-weight: 500;
  font-style: normal;
  src: url(../fonts/42dotSans-Medium.woff2) format("woff2");
}

@font-face {
  font-family: "42DotSans-SemiBold";
  font-weight: 600;
  font-style: normal;
  src: url(../fonts/42dotSans-SemiBold.woff2) format("woff2");
}

@font-face {
  font-family: "42DotSans-Bold";
  font-weight: 700;
  font-style: normal;
  src: url(../fonts/42dotSans-Bold.woff2) format("woff2");
}

@font-face {
  font-family: "42DotSans-ExtraBold";
  font-weight: 800;
  font-style: normal;
  src: url(../fonts/42dotSans-ExtraBold.woff2) format("woff2");
}

::selection {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 1); /* Safari */
  background-color: #d6e7d1;
  color: #000000;
  opacity: 1;
}

::-webkit-selection { /* Safari와 Chrome */
  background-color: #d6e7d1;
  color: #000000;
  opacity: 1;
}

::-moz-selection { /* Firefox */
  background-color: #d6e7d1;
  color: #000000;
  opacity: 1;
}

.header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

* {
  -webkit-tap-highlight-color: transparent;  /* iOS Safari */
  -webkit-touch-callout: none;              /* iOS Safari */
}
body,
.txt-field-e,
.txt-field-k,
.txt-club-name-e,
.txt-club-name-k,
.txt-page-name,
.txt-info-title,
.txt-info-detail,
.txt-info-des,
.fo-txt-copyright,
.fo-txt-instagram,
p,
span,
div {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
a, 
button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  padding-top: 97px;
}

.index-a {
  word-break: keep-all;
}

a {
  text-decoration: none;
}
a:link {
  color: #d6e7d1;
}
a:visited {
  color: #d6e7d1;
}
a:hover {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
a.he-txt-maintitle:hover {
  opacity: 1;
  transition: none;
}
.div, .div2, .div3 {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0.8px;
  text-underline-offset: 7.6px;
}
#btn-back-to-top1 {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
  border-radius: 10px;
  color: #d6e7d1;
  text-align: center;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 120px;
  line-height: 40%;
  font-weight: 400;
  transition: color 0.2s;
}
#btn-back-to-top1:hover {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

#btn-back-to-top1:active {
  color: #d6e7d1;
}

/* Safari 전용 스타일 */
@media not all and (min-resolution:.001dpcm) { 
  @supports (-webkit-appearance:none) {
    #btn-back-to-top1 {
      -webkit-touch-callout: none; /* iOS Safari에서 길게 누르기 방지 */
    }
    
    #btn-back-to-top1:hover {
      color: #d6e7d1; /* Safari에서 기본 색상 유지 */
    }
    
    #btn-back-to-top1:active:hover {
      opacity: 0.7;
      transition: opacity 0.2s ease;
    }
  }
}

* {
  -webkit-tap-highlight-color: transparent;  /* iOS Safari */
  -webkit-touch-callout: none;              /* iOS Safari */
  -webkit-user-select: none;                /* Safari */
  -khtml-user-select: none;                 /* Konqueror HTML */
  -moz-user-select: none;                   /* Firefox */
  -ms-user-select: none;                    /* Internet Explorer/Edge */
  user-select: none;                        /* Non-prefixed version */
}
a, button {
  -webkit-tap-highlight-color: transparent;
}
.header {
  background: #000000;
  padding: 31px 36px 31px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.header-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  height: 26px;
  position: relative;
}
.he-txt-maintitle {
  color: #d6e7d1;
  text-align: center;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 36px;
  line-height: 85%;
  font-weight: 400;
  position: relative;
  width: 167px;
  height: 21px;
  text-decoration: none;
  color: inherit;
}

.he-menu {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
.he-txt-wo {
  color: #d6e7d1;
  text-align: right;
  font-family: "-", sans-serif;
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  position: relative;
  transition: opacity 0.2s ease-in-out;
  opacity: 1; /* 초기값 변경 */
  pointer-events: auto;
}
.he-txt-wo-span {
  font-family: "42DotSans-SemiBold", sans-serif;
  font-weight: 600;
}
.he-txt-wo-span2 {
  font-family: "PpPierSans-Light", sans-serif;
  font-weight: 300;
}
.menu-container.active .he-txt-wo {
  opacity: 0;
}
.he-menu.active .he-txt-wo {
  opacity: 0;
}
.menu-container {
  position: fixed;
  top: -280px;
  left: 0;
  width: 100%;
  background-color: #000000;
  /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
  outline: #d6e7d1 solid 1px;
  transition: top 0.3s ease-in-out;
  z-index: 1000;
}
.menu-container.active {
  top: 0;
}
.menu-content {
  padding: 31px 36px;
}
.menu-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  height: 26px;
}
.menu-header .he-txt-maintitle {
  color: #d6e7d1;
  text-align: center;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 36px;
  line-height: 85%;
  font-weight: 400;
  width: 167px;
  height: 21px;
}
.menu-content ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-content ul li {
  margin: 0;
}
.menu-content ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.menu-content ul li a .menu-text-kr {
  color: #d6e7d1;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
}
.menu-content ul li a .menu-text-en {
  color: #d6e7d1;
  font-family: "PpPierSans-Light", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 160%;
}

@media (min-width: 320px) and (max-width: 359px) {
  .menu-content {
    padding: 31px 16px;
  }
    
  .index-a,
  .index-a * {
    box-sizing: border-box;
  }
  .header {
    background: #000000;
    margin: 0 auto;
    padding: 20px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  .index-a {
    background: #000000;
    padding: 20px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  ._1-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    flex-shrink: 0;
    height: 281px;
    position: relative;
  }
  .frame-744 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 44px;
    position: relative;
  }
  .g-hongiksidi {
    flex-shrink: 0;
    width: 24px;
    height: 25px;
    position: relative;
    overflow: visible;
    aspect-ratio: 24/25;
    cursor: pointer;
  }
  .g-ruler {
    flex-shrink: 0;
    width: 22px;
    height: 160px;
    position: relative;
    overflow: visible;
    aspect-ratio: 22/160;
  }
  .txt-maintitle {
    color: #d6e7d1;
    text-align: center;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 76px;
    line-height: 85%;
    font-weight: 400;
    position: relative;
  }
  .txt-club-list {
    color: #d6e7d1;
    text-align: right;
    font-family: "-", sans-serif;
    font-size: 9px;
    line-height: 220%;
    font-weight: 400;
    position: relative;
  }
  .txt-club-list-span {
    color: #d6e7d1;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 9px;
    line-height: 220%;
    font-weight: 300;
  }
  .txt-club-list-span2 {
    color: #d6e7d1;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 9px;
    line-height: 220%;
    font-weight: 600;
  }
  ._2-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  ._2-1-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    gap: 40px;
    max-width: 696px;
    position: relative;
  }
  .divider-ha-1 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  .txt-header {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    width: 200px;
  }
  .txt-header-2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    align-self: stretch;
  }
  .txt-description {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }
  .divider-ha-2 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  .txt-location {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    width: 179px;
  }
  .txt-schedule {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 300;
    position: relative;
    align-self: stretch;
  }
  .divider-ha-3 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  ._2-1-description2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    min-width: 288px;
    max-width: 696px;
    position: relative;
  }
  .divider-ha-4 {
    border-style: solid;
  }
  ._2-2-credit {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    flex-shrink: 0;
    min-width: 288px;
    max-width: 320px;
    position: relative;
  }
  .txt-credit {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  .txt-credit-title {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-Bold", sans-serif;
    font-size: 16px;
    line-height: 100%;
    font-weight: 700;
    position: relative;
    align-self: stretch;
  }
  .txt-credit-name {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    min-width: 86px;
    position: relative;
  }
  .txt-c-1 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-4 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-5 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-6 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-7 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-8 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 64px;
  }
  .txt-c-10 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-namelist {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  .txt-n-1 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-4 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-5 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-6 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-7 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-8 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 64px;
  }
  .txt-n-10 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .divider-ha-5 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  ._3-exhibition-map {
    padding: 20px 0px 20px 0px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .txt-map-title {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 76px;
    line-height: 100%;
    font-weight: 400;
    position: relative;
    width: 358px;
  }
  .txt-map-guide {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
    width: 358px; 
    margin-top: -20px;
  }
  .img-map-1 {
    flex-shrink: 0;
    width: 84.7vw;
    height: auto;
    position: relative;
    object-fit: cover;
    aspect-ratio: 288/314;
  }
  .img-map-2 {
    flex-shrink: 0;
    width: 34vw;
    height: auto;
    position: relative;
    object-fit: cover;
    aspect-ratio: 124/466;
  }
  .frame-746 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 124px;
    position: relative;
  }
  .num-txt-club-1 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-1 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .div {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    width: 132px;
  }
  .num-txt-club-2 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-2 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .num-txt-club-3 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-3 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .num-txt-club-4 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-4 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .num-txt-club-5 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-5 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .div2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    width: 132px;
  }
  .num-txt-club-6 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-6 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .num-txt-club-7 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-7 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .div3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    width: 132px;
  }
  .num-txt-club-8 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-8 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .num-txt-club-9 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-9 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  ._4-goods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .divider-f-1 {
    margin-top: -1px;
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 1px 0 0 0;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
  }
  .divider-f-2 {
    margin-top: -1px;
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 1px 0 0 0;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
  }
  .txt-map-title2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 82px;
    line-height: 100%;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    margin-top: 20px;
  }
  .goods-img {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .img-goods-1 {
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    object-fit: cover;
    aspect-ratio: 3/2;
  }
  .img-goods-2 {
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    object-fit: cover;
    aspect-ratio: 3/2;
  }
  .img-goods-3 {
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    object-fit: cover;
    aspect-ratio: 3/2;
  }
  .events {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .frame-747 {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .txt-map-title3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 82px;
    line-height: 100%;
    font-weight: 400;
    position: relative;
    width: 364.5px;
  }
  .div4 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    width: 364.5px;
  }
  ._2025-03-03-03-07 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 300;
    position: relative;
    align-self: stretch;
  }
  .hivcdsiso-2025 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }
  .frame-748 {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  ._9-4-2025 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }  

  .footer-frame {
    background: var(--bg, #000000);
    padding: 31px 16px 31px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  .footer {
    padding: 40px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .footer-txtbox {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .fo-txt-copyright {
    color: var(--main, #d6e7d1);
    text-align: center;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 13px;
    font-weight: 300;
    position: relative;
  }
  .fo-txt-instagram {
    color: var(--main, #d6e7d1);
    text-align: right;
    font-family: "-", sans-serif;
    font-size: 13px;
    line-height: 160%;
    font-weight: 400;
    position: relative;
  }
  .fo-txt-instagram-span {
    font-family: "42DotSans-SemiBold", sans-serif;
    font-weight: 600;
  }
  .fo-txt-instagram-span2 {
    font-family: "PpPierSans-Light", sans-serif;
    font-weight: 300;
  }
}

/* 모바일 스타일 (360px-767px) */
@media (min-width: 360px) and (max-width: 687px) {
  .menu-content {
    padding: 31px 16px;
  }

  .index-a,
  .index-a * {
    box-sizing: border-box;
  }
  .header, .index-a {
    background: #000000;
    padding: 20px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  ._1-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    flex-shrink: 0;
    height: 281px;
    position: relative;
  }
  .frame-744 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 54px;
    position: relative;
  }
  .g-hongiksidi {
    flex-shrink: 0;
    width: 25px;
    height: 26px;
    position: relative;
    overflow: visible;
    aspect-ratio: 25/26;
    cursor: pointer;
  }
  .g-ruler {
    flex-shrink: 0;
    width: 24px;
    height: 173px;
    position: relative;
    overflow: visible;
    aspect-ratio: 24/173;
  }
  .txt-maintitle {
    color: #d6e7d1;
    text-align: center;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 90px;
    line-height: 85%;
    font-weight: 400;
    position: relative;
  }
  .txt-club-list {
    color: #d6e7d1;
    text-align: right;
    font-family: "-", sans-serif;
    font-size: 11px;
    line-height: 200%;
    font-weight: 400;
    position: relative;
  }
  .txt-club-list-span {
    color: #d6e7d1;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 11px;
    line-height: 200%;
    font-weight: 300;
  }
  .txt-club-list-span2 {
    color: #d6e7d1;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 11px;
    line-height: 200%;
    font-weight: 600;
  }
  ._2-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  ._2-1-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    gap: 40px;
    min-width: 328px;
    position: relative;
  }
  .divider-ha-1 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  .txt-header {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }
  .txt-header-2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    align-self: stretch;
  }
  .txt-description {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }
  .divider-ha-2 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  .txt-location {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    align-self: stretch;
  }
  .txt-schedule {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 300;
    position: relative;
    align-self: stretch;
  }
  .divider-ha-3 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  ._2-1-description2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    min-width: 328px;
    position: relative;
  }
  .divider-ha-4 {
    border-style: solid;
  }
  ._2-2-credit {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    flex-shrink: 0;
    min-width: 320px;
    max-width: 320px;
    position: relative;
  }
  .txt-credit {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  .txt-credit-title {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-Bold", sans-serif;
    font-size: 16px;
    line-height: 100%;
    font-weight: 700;
    position: relative;
    align-self: stretch;
  }
  .txt-credit-name {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    min-width: 86px;
    position: relative;
  }
  .txt-c-1 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-4 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-5 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-6 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-7 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-c-8 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 64px;
  }
  .txt-c-10 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-namelist {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  .txt-n-1 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-4 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-5 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-6 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-7 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .txt-n-8 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 64px;
  }
  .txt-n-10 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 36px;
  }
  .divider-ha-5 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  ._3-exhibition-map {
    padding: 20px 0px 20px 0px;
    display: flex;
    flex-direction: row;
    row-gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .txt-map-title {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 76px;
    line-height: 100%;
    font-weight: 400;
    position: relative;
    width: 693px;
  }
  .txt-map-guide {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
    width: 358px; 
    margin-top: -20px;
  }
  .img-map-1 {
    flex-shrink: 0;
    width: 85vw;
    height: auto;
    position: relative;
    object-fit: cover;
    aspect-ratio: 328/359;
  }
  .img-map-2 {
    flex-shrink: 0;
    width: 35vw;
    height: auto;
    position: relative;
    object-fit: cover;
    aspect-ratio: 149/563;
  }

  .frame-746 {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 124px;
    position: relative;
    margin-right: auto;
    margin-left: 60px;
  }
  .num-txt-club-1 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-1 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .div {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    width: 132px;
  }
  .num-txt-club-2 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-2 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .num-txt-club-3 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-3 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .num-txt-club-4 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-4 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .num-txt-club-5 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-5 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .div2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    width: 132px;
  }
  .num-txt-club-6 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-6 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .num-txt-club-7 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-7 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .div3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    width: 132px;
  }
  .num-txt-club-8 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-8 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }
  .num-txt-club-9 {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    cursor : pointer;
  }
  .num-9 {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
    margin-top: 6px;
  }  
  ._4-goods {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .divider-f-1 {
    margin-top: -1px;
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 1px 0 0 0;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
  }
  .divider-f-2 {
    margin-top: -1px;
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 1px 0 0 0;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
  }
  .txt-map-title2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 82px;
    line-height: 100%;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    margin-bottom: -20px;
  }
  .img-goods-1 {
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    object-fit: cover;
    aspect-ratio: 328/218.67;
    margin-bottom: -20px;
  }
  .img-goods-2 {
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    object-fit: cover;
    aspect-ratio: 328/218.67;
    margin-bottom: -20px;
  }
  .img-goods-3 {
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    object-fit: cover;
    aspect-ratio: 328/218.67;
  }
  .events {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .frame-747 {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .txt-map-title3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 82px;
    line-height: 100%;
    font-weight: 400;
    position: relative;
    width: 364.5px;
  }
  .div4 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    width: 364.5px;
  }
  ._2025-03-03-03-07 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 300;
    position: relative;
    align-self: stretch;
  }
  .hivcdsiso-2025 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }
  .frame-748 {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  ._9-4-2025 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 14px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }

  .footer-frame {
    background: var(--bg, #000000);
    padding: 31px 16px 31px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  .footer {
    padding: 40px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .footer-txtbox {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .fo-txt-copyright {
    color: var(--main, #d6e7d1);
    text-align: center;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 13px;
    font-weight: 300;
    position: relative;
  }
  .fo-txt-instagram {
    color: var(--main, #d6e7d1);
    text-align: right;
    font-family: "-", sans-serif;
    font-size: 13px;
    line-height: 160%;
    font-weight: 400;
    position: relative;
  }
  .fo-txt-instagram-span {
    font-family: "42DotSans-SemiBold", sans-serif;
    font-weight: 600;
  }
  .fo-txt-instagram-span2 {
    font-family: "PpPierSans-Light", sans-serif;
    font-weight: 300;
  }
}

@media (min-width: 688px) and (max-width: 849px) {
  
  #btn-back-to-top1:hover {
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
  
.index-a,
.index-a * {
  box-sizing: border-box;
}
.index-a {
  background: #000000;
  padding: 40px 36px 80px 36px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
._1-title {
  padding: 0px 0px 20px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-744 {
  display: flex;
  flex-direction: column;
  gap: 75px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 97px;
  position: relative;
}
.g-hongiksidi {
  flex-shrink: 0;
  width: 42px;
  height: 44px;
  position: relative;
  overflow: visible;
  aspect-ratio: 42/44;
  cursor: pointer;
}
.g-ruler {
  flex-shrink: 0;
  width: 40px;
  height: 289px;
  position: relative;
  overflow: visible;
  aspect-ratio: 40/289;
}
.txt-maintitle {
  color: #d6e7d1;
  text-align: center;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 170px;
  line-height: 85%;
  font-weight: 400;
  position: relative;
}
.txt-club-list {
  color: #d6e7d1;
  text-align: right;
  font-family: "-", sans-serif;
  font-size: 20px;
  line-height: 210%;
  font-weight: 400;
  position: relative;
}
.txt-club-list-span {
  color: #d6e7d1;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 20px;
  line-height: 210%;
  font-weight: 300;
}
.txt-club-list-span2 {
  color: #d6e7d1;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 20px;
  line-height: 210%;
  font-weight: 600;
}
._2-info {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  row-gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
._2-1-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
  gap: 40px;
  min-width: 328px;
  position: relative;
}
.divider-ha-1 {
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}
.txt-header {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
.txt-header-2 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 800;
  position: relative;
  align-self: stretch;
}
.txt-description {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 160%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
.divider-ha-2 {
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}
.txt-location {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 800;
  position: relative;
  align-self: stretch;
}
.txt-schedule {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 300;
  position: relative;
  align-self: stretch;
}
.divider-ha-3 {
  border-style: solid;
}
.divider-ha-4 {
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}
._2-2-credit {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
  width: 342px;
  min-width: 320px;
  max-width: 320px;
  position: relative;
}
.txt-credit {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.txt-credit-title {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-Bold", sans-serif;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.txt-credit-name {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 86px;
  position: relative;
}
.txt-c-1 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-2 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-3 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-4 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-5 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-6 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-7 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-8 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 76px;
}
.txt-c-10 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-namelist {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.txt-n-1 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-2 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-3 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-4 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-5 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-6 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-7 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-8 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 76px;
}
.txt-n-10 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.divider-ha-5 {
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}
._3-exhibition-map {
  display: flex;
  flex-direction: row;
  gap: 80px;
  row-gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.txt-map-title {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 82px;
  line-height: 100%;
  font-weight: 400;
  position: relative;
  width: 1351px;
  height: 74px;
}
.txt-map-guide {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 160%;
  font-weight: 600;
  position: relative;
  width: 358px; 
  margin-top: -20px;
}
.img-map-1 {
  flex-shrink: 0;
  width: 86vw;
  height: auto;
  position: relative;
  object-fit: cover;
  aspect-ratio: 660/721;
}
.img-map-2 {
  flex-shrink: 0;
  width: 36vw;
  height: auto;
  min-width: 150px;
  max-width: 238px;
  min-height: 565.97px;
  max-height: 898px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 238/898;
}
.frame-746 {
  display: flex;
  flex-direction: row;
  gap: 22px;
  row-gap: 26px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  flex-shrink: 0;
  width: 594px;
  position: relative;
}
.num-txt-club-1 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.div {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 800;
  position: absolute;
  left: 51px;
  top: 0px;
  width: 132px;
  height: 34px;
}
.num-1 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-4 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-4 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-7 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.div2 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 800;
  position: absolute;
  left: 51px;
  top: 0px;
  width: 132px;
  height: 34px;
}
.num-7 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-2 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-2 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-5 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.div3 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 800;
  position: absolute;
  left: 50px;
  top: 0px;
  width: 132px;
  height: 34px;
}
.num-5 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-8 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-8 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-3 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-3 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-6 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-6 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-9 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-9 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
._4-goods {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.divider-f-1 {
  margin-top: -1px;
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 1px 0 0 0;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
}
.divider-f-2 {
  margin-top: -1px;
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 1px 0 0 0;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
}
.txt-map-title2 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 82px;
  line-height: 100%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.img-goods-1 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
  object-fit: cover;
  aspect-ratio: 3/2;
}
.img-goods-2 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
  object-fit: cover;
  aspect-ratio: 3/2;
}
.img-goods-3 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
  object-fit: cover;
  aspect-ratio: 3/2;
}
.events {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
._2-1-description2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  min-width: 328px;
  position: relative;
}
.frame-747 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.txt-map-title3 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 82px;
  line-height: 100%;
  font-weight: 400;
  position: relative;
  width: 364.5px;
}
.div4 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 18px;
  line-height: 140%;
  font-weight: 800;
  position: relative;
  width: 364.5px;
}
._2025-03-03-03-07 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 300;
  position: relative;
  align-self: stretch;
}
.hivcdsiso-2025 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
.frame-748 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
._9-4-2025 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}

.footer-frame {
  background: var(--bg, #000000);
  padding: 31px 36px 31px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.footer {
  padding: 40px 0px 0px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  height: 66px;
  position: relative;
}
.footer-txtbox {
  display: flex;
  flex-direction: row;
  row-gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
  flex: 1;
  position: relative;
}
.fo-txt-copyright {
  color: var(--main, #d6e7d1);
  text-align: center;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 13px;
  font-weight: 300;
  position: relative;
}
.fo-txt-instagram {
  color: var(--main, #d6e7d1);
  text-align: right;
  font-family: "-", sans-serif;
  font-size: 13px;
  line-height: 160%;
  font-weight: 400;
  position: relative;
}
.fo-txt-instagram-span {
  font-family: "42DotSans-SemiBold", sans-serif;
  font-weight: 600;
}
.fo-txt-instagram-span2 {
  font-family: "PpPierSans-Light", sans-serif;
  font-weight: 300;
}
}

@media (min-width: 850px) {
  ._2-info {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch; /* 자식 요소들 높이 맞춤 */
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  ._2-1-description,
  ._2-1-description2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    min-width: 360px;
    max-width: 696px;
    position: relative;
  }
}

/* 태블릿 스타일 (768px-1439px) */
@media (min-width: 850px) and (max-width: 1439px) {
    
  #btn-back-to-top1:hover {
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }

  
.index-a,
.index-a * {
  box-sizing: border-box;
}
.index-a {
  background: #000000;
  padding: 40px 36px 80px 36px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
._1-title {
  padding: 0px 0px 20px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-744 {
  display: flex;
  flex-direction: column;
  gap: 75px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 97px;
  position: relative;
}
.g-hongiksidi {
  flex-shrink: 0;
  width: 42px;
  height: 44px;
  position: relative;
  overflow: visible;
  aspect-ratio: 42/44;
  cursor: pointer;
}
.g-ruler {
  flex-shrink: 0;
  width: 40px;
  height: 289px;
  position: relative;
  overflow: visible;
  aspect-ratio: 40/289;
}
.txt-maintitle {
  color: #d6e7d1;
  text-align: center;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 16vw;
  line-height: 85%;
  font-weight: 400;
  position: relative;
}
.txt-club-list {
  color: #d6e7d1;
  text-align: right;
  font-family: "-", sans-serif;
  font-size: 20px;
  line-height: 210%;
  font-weight: 400;
  position: relative;
}
.txt-club-list-span {
  color: #d6e7d1;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 20px;
  line-height: 210%;
  font-weight: 300;
}
.txt-club-list-span2 {
  color: #d6e7d1;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 20px;
  line-height: 210%;
  font-weight: 600;
}
._2-info {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  row-gap: 61px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
._2-1-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
  height: 660px;
  min-width: 328px;
  position: relative;
}
.divider-ha-1 {
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}
.txt-header {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
.txt-header-2 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 800;
  position: relative;
  align-self: stretch;
}
.txt-description {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 160%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
.divider-ha-2 {
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}
.txt-location {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 800;
  position: relative;
  align-self: stretch;
}
.txt-schedule {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 300;
  position: relative;
  align-self: stretch;
}
.divider-ha-3 {
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}
.divider-ha-4 {
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}
._2-2-credit {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
  width: 342px;
  min-width: 320px;
  max-width: 320px;
  position: relative;
}
.txt-credit {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.txt-credit-title {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-Bold", sans-serif;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.txt-credit-name {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 86px;
  position: relative;
}
.txt-c-1 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-2 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-3 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-4 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-5 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-6 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-7 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-c-8 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 76px;
}
.txt-c-10 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-namelist {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.txt-n-1 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-2 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-3 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-4 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-5 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-6 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-7 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.txt-n-8 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 76px;
}
.txt-n-10 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 48px;
}
.divider-ha-5 {
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
}
._3-exhibition-map {
  display: flex;
  flex-direction: row;
  gap: 80px;
  row-gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.txt-map-title {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 82px;
  line-height: 100%;
  font-weight: 400;
  position: relative;
  width: 1351px;
  height: 74px;
}
.txt-map-guide {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 160%;
  font-weight: 600;
  position: relative;
  width: 630px; 
  margin-top: -20px;
}
.img-map-1 {
  flex-shrink: 0;
  width: 660px;
  height: auto;
  position: relative;
  object-fit: cover;
  aspect-ratio: 660/721;
}
.img-map-2 {
  flex-shrink: 0;
  width: 238px;
  height: auto;
  min-width: 150px;
  max-width: 238px;
  min-height: 565.97px;
  max-height: 898px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 238/898;
}
.frame-746 {
  display: flex;
  gap: 20px;
  row-gap: 26px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  flex-shrink: 0;
  width: 594px;
  position: relative;
}
.num-txt-club-1 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.div {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 800;
  position: absolute;
  left: 51px;
  top: 0px;
  width: 132px;
  height: 34px;
}
.num-1 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-4 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-4 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-7 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.div2 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 800;
  position: absolute;
  left: 51px;
  top: 0px;
  width: 132px;
  height: 34px;
}
.num-7 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-2 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-2 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-5 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.div3 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 800;
  position: absolute;
  left: 50px;
  top: 0px;
  width: 132px;
  height: 34px;
}
.num-5 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-8 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-8 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-3 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-3 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-6 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-6 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
.num-txt-club-9 {
  flex-shrink: 0;
  width: 183px;
  height: 34px;
  position: relative;
  cursor : pointer;
}
.num-9 {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  aspect-ratio: 1;
}
._4-goods {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.divider-f-1 {
  margin-top: -1px;
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 1px 0 0 0;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
}
.divider-f-2 {
  margin-top: -1px;
  border-style: solid;
  border-color: var(--main, #d6e7d1);
  border-width: 1px 0 0 0;
  align-self: stretch;
  flex-shrink: 0;
  height: 0px;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
}
.txt-map-title2 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 82px;
  line-height: 100%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}
.img-goods-1 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
  object-fit: cover;
  aspect-ratio: 986/657.33;
}
.img-goods-2 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
  object-fit: cover;
  aspect-ratio: 986/657.33;
}
.img-goods-3 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  transform-origin: 0 0;
  transform: rotate(0deg) scale(1, 1);
  object-fit: cover;
  aspect-ratio: 986/657.33;
}
.events {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  row-gap: 61px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
._2-1-description2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  min-width: 328px;
  position: relative;
}
.frame-747 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.txt-map-title3 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 82px;
  line-height: 100%;
  font-weight: 400;
  position: relative;
  width: 364.5px;
}
.div4 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 18px;
  line-height: 140%;
  font-weight: 800;
  position: relative;
  width: 364.5px;
}
._2025-03-03-03-07 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 20px;
  line-height: 140%;
  font-weight: 300;
  position: relative;
  align-self: stretch;
}
.hivcdsiso-2025 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
.frame-748 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
._9-4-2025 {
  color: var(--main, #d6e7d1);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}

.footer-frame {
  background: var(--bg, #000000);
  padding: 31px 36px 31px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.footer {
  padding: 40px 0px 0px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  height: 66px;
  position: relative;
}
.fo-txt-copyright {
  color: var(--main, #d6e7d1);
  text-align: center;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 15px;
  font-weight: 300;
  position: relative;
}
.fo-txt-instagram {
  color: var(--main, #d6e7d1);
  text-align: right;
  font-family: "-", sans-serif;
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  position: relative;
}
.fo-txt-instagram-span {
  font-family: "42DotSans-SemiBold", sans-serif;
  font-weight: 600;
}
.fo-txt-instagram-span2 {
  font-family: "PpPierSans-Light", sans-serif;
  font-weight: 300;
}
}

/* 데스크탑 스타일 (1440px-1919px) */
@media (min-width: 1440px) {
   #btn-back-to-top1:hover {
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }

  .header {
    background: #000000;
    padding: 31px 36px 31px 36px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .header-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 1368px;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }

  .he-txt-maintitle {
    line-height: 85%;
    font-weight: 400;
    position: relative;
    width: 167px;
    height: 21px;
  }
  .he-menu {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  .he-txt-wo {
    color: #d6e7d1;
    text-align: right;
    font-family: "-", sans-serif;
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
    position: relative;
    transition: opacity 0.2s ease-in-out;
    opacity: 1; /* 초기값 변경 */
    pointer-events: auto;
  }
  .he-txt-wo-span {
    font-family: "42DotSans-SemiBold", sans-serif;
    font-weight: 600;
  }
  .he-txt-wo-span2 {
    font-family: "PpPierSans-Light", sans-serif;
    font-weight: 300;
  }
  .he-txt-ar {
    color: #d6e7d1;
    text-align: right;
    font-family: "-", sans-serif;
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
    position: relative;
  }
  .he-txt-ar-span {
    font-family: "42DotSans-SemiBold", sans-serif;
    font-weight: 600;
  }
  .he-txt-ar-span2 {
    font-family: "PpPierSans-Light", sans-serif;
    font-weight: 300;
  }
  .he-txt-pr {
    color: #d6e7d1;
    text-align: right;
    font-family: "-", sans-serif;
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
    text-decoration: underline;
    position: relative;
  }
  .he-txt-pr-span {
    font-family: "42DotSans-SemiBold", sans-serif;
    font-weight: 600;
  }
  .he-txt-pr-span2 {
    font-family: "PpPierSans-Light", sans-serif;
    font-weight: 300;
  }
.menu-container.active .he-txt-wo {
      opacity: 0;
    }
    
    .he-menu.active .he-txt-wo {
      opacity: 0;
    }
    
    .menu-container {
      position: fixed;
      top: -280px;
      left: 0;
      width: 100%;
      background-color: #000000;
      /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
      outline: #d6e7d1 solid 1px;
      transition: top 0.3s ease-in-out;
      z-index: 1000;
      display: flex;
      justify-content: center;
    }
    
    .menu-container.active {
      top: 0;
      position: fixed;
      width: 100%;
    }
    
    .menu-content {
      padding: 31px 36px;
      width:  1440px;
      margin: 0 auto;
    }

    body.menu-open {
      position: static;
    }
    
    .menu-header {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
      height: 26px;
    }
    
    .menu-header .he-txt-maintitle {
      color: #d6e7d1;
      text-align: center;
      font-family: "Jugador-Stocky", sans-serif;
      font-size: 36px;
      line-height: 85%;
      font-weight: 400;
      width: 167px;
      height: 21px;
    }
    
    .menu-content ul {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .menu-content ul li {
      margin: 0;
    }
    
    .menu-content ul li a {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 4px;
    }
    
    .menu-content ul li a .menu-text-kr {
      color: #d6e7d1;
      font-family: "42DotSans-SemiBold", sans-serif;
      font-weight: 600;
      font-size: 16px;
      line-height: 160%;
    }
    
    .menu-content ul li a .menu-text-en {
      color: #d6e7d1;
      font-family: "PpPierSans-Light", sans-serif;
      font-weight: 300;
      font-size: 16px;
      line-height: 160%;
    }
  
  .index-a,
  .index-a * {
    box-sizing: border-box;
  }
  .index-a {
    background: #000000;
    padding: 40px 52px 80px 52px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  ._1-title {
    padding: 0px 0px 20px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    width: 1368px;
    position: relative;
  }
  .frame-744 {
    flex-shrink: 0;
    width: 155px;
    height: 512px;
    position: relative;
  }
  .g-hongiksidi {
    width: 60px;
    height: auto;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: visible;
    aspect-ratio: 81.69/86;
    cursor: pointer;
  }
  .g-ruler {
    width: 49px;
    height: 354px;
    position: absolute;
    left: 0px;
    top: 158px;
    overflow: visible;
  }
  .txt-maintitle {
    color: #d6e7d1;
    text-align: center;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 250px;
    line-height: 85%;
    font-weight: 400;
    position: relative;
  }
  .txt-club-list {
    color: #d6e7d1;
    text-align: right;
    font-family: "-", sans-serif;
    font-size: 26px;
    line-height: 197%;
    font-weight: 400;
    position: relative;
  }
  .txt-club-list-span {
    color: #d6e7d1;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 26px;
    line-height: 160%;
    font-weight: 300;
  }
  .txt-club-list-span2 {
    color: #d6e7d1;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 26px;
    line-height: 160%;
    font-weight: 600;
  }
  ._2-info {
    display: flex;
    flex-direction: row;
    gap: 80px;
    row-gap: 61px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    flex-shrink: 0;
    width: 1368px;
    position: relative;
  }
  ._2-1-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    height: 634.4px;
    min-width: 360px;
    max-width: 696px;
    position: relative;
  }
  .divider-ha-1 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  .txt-header {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }
  .txt-header-2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 20px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    align-self: stretch;
  }
  .txt-description {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }
  .divider-ha-2 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  .txt-location {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 20px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    align-self: stretch;
  }
  .txt-schedule {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 20px;
    line-height: 140%;
    font-weight: 300;
    position: relative;
    align-self: stretch;
  }
  .divider-ha-3 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  ._2-1-description2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    min-width: 360px;
    max-width: 696px;
    position: relative;
  }
  .divider-ha-4 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  ._2-2-credit {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
    width: 342px;
    min-width: 320px;
    max-width: 320px;
    position: relative;
  }
  .txt-credit {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  .txt-credit-title {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-Bold", sans-serif;
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    position: relative;
    align-self: stretch;
  }
  .txt-credit-name {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    min-width: 86px;
    position: relative;
  }
  .txt-c-1 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-c-2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-c-3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-c-4 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-c-5 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-c-6 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-c-7 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-c-8 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 76px;
  }
  .txt-c-10 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }
  .txt-namelist {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  .txt-n-1 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-n-2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-n-3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-n-4 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-n-5 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-n-6 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-n-7 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 48px;
  }
  .txt-n-8 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
    height: 76px;
  }
  .txt-n-10 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }
  .divider-ha-5 {
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
  }
  ._3-exhibition-map {
    display: flex;
    flex-direction: row;
    gap: 80px;
    row-gap: 28px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    flex-shrink: 0;
    width: 1368px;
    position: relative;
  }
  .txt-map-title {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 82px;
    line-height: 100%;
    font-weight: 400;
    position: relative;
    width: 587px;
    height: 74px;
  }
  .txt-map-guide {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 18px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
    width: 1351px;
    margin-top: -20px;
  }
  .img-map-1 {
    flex-shrink: 0;
    width: 814px;
    height: 890px;
    min-width: 320px;
    max-width: 814px;
    min-height: 349.88px;
    max-height: 890px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 814/890;
  }
  .img-map-2 {
    flex-shrink: 0;
    width: 238px;
    height: 898px;
    min-width: 150px;
    max-width: 238px;
    min-height: 565.97px;
    max-height: 898px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 238/898;
  }
  .frame-746 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    row-gap: 26px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    flex-shrink: 0;
    width: 594px;
    position: relative;
  }
  .num-txt-club-1 {
    flex-shrink: 0;
    width: 183px;
    height: 34px;
    position: relative;
    cursor : pointer;
  }
  .div {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 24px;
    line-height: 140%;
    font-weight: 800;
    position: absolute;
    left: 51px;
    top: 0px;
    width: 132px;
    height: 34px;
  }
  .num-1 {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    aspect-ratio: 1;
  }
  .num-txt-club-4 {
    flex-shrink: 0;
    width: 183px;
    height: 34px;
    position: relative;
    cursor : pointer;
  }
  .num-4 {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    aspect-ratio: 1;
  }
  .num-txt-club-7 {
    flex-shrink: 0;
    width: 183px;
    height: 34px;
    position: relative;
    cursor : pointer;
  }
  .div2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 24px;
    line-height: 140%;
    font-weight: 800;
    position: absolute;
    left: 51px;
    top: 0px;
    width: 132px;
    height: 34px;
  }
  .num-7 {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    aspect-ratio: 1;
  }
  .num-txt-club-2 {
    flex-shrink: 0;
    width: 183px;
    height: 34px;
    position: relative;
    cursor : pointer;
  }
  .num-2 {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    aspect-ratio: 1;
  }
  .num-txt-club-5 {
    flex-shrink: 0;
    width: 183px;
    height: 34px;
    position: relative;
    cursor : pointer;
  }
  .div3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 24px;
    line-height: 140%;
    font-weight: 800;
    position: absolute;
    left: 50px;
    top: 0px;
    width: 132px;
    height: 34px;
  }
  .num-5 {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    aspect-ratio: 1;
  }
  .num-txt-club-8 {
    flex-shrink: 0;
    width: 183px;
    height: 34px;
    position: relative;
    cursor : pointer;
  }
  .num-8 {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    aspect-ratio: 1;
  }
  .num-txt-club-3 {
    flex-shrink: 0;
    width: 183px;
    height: 34px;
    position: relative;
    cursor : pointer;
  }
  .num-3 {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    aspect-ratio: 1;
  }
  .num-txt-club-6 {
    flex-shrink: 0;
    width: 183px;
    height: 34px;
    position: relative;
    cursor : pointer;
  }
  .num-6 {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    aspect-ratio: 1;
  }
  .num-txt-club-9 {
    flex-shrink: 0;
    width: 183px;
    height: 34px;
    position: relative;
    cursor : pointer;
  }
  .num-9 {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    aspect-ratio: 1;
  }
  ._4-goods {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 1368px;
    position: relative;
  }
  .divider-f-1 {
    margin-top: -1px;
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 1px 0 0 0;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    width: 1368px;
    margin: 0 auto;
  }
  .divider-f-2 {
    margin-top: -1px;
    border-style: solid;
    border-color: var(--main, #d6e7d1);
    border-width: 1px 0 0 0;
    align-self: stretch;
    flex-shrink: 0;
    height: 0px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
  }
  .txt-map-title2 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 82px;
    line-height: 100%;
    font-weight: 400;
    position: relative;
    align-self: stretch;
  }
  .img-goods-1 {
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    object-fit: cover;
    aspect-ratio: 1368/890.67;
  }
  .img-goods-2 {
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    object-fit: cover;
    aspect-ratio: 1368/890.67;
  }
  .img-goods-3 {
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    object-fit: cover;
    aspect-ratio: 1368/890.67;
  }
  .events {
    display: flex;
    flex-direction: row;
    gap: 80px;
    row-gap: 61px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .frame-747 {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  .txt-map-title3 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 82px;
    line-height: 100%;
    font-weight: 400;
    position: relative;
    width: 364.5px;
  }
  .div4 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-ExtraBold", sans-serif;
    font-size: 20px;
    line-height: 140%;
    font-weight: 800;
    position: relative;
    width: 364.5px;
  }
  ._2025-03-03-03-07 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 20px;
    line-height: 140%;
    font-weight: 300;
    position: relative;
    align-self: stretch;
  }
  .hivcdsiso-2025 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }
  .frame-748 {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }
  ._9-4-2025 {
    color: var(--main, #d6e7d1);
    text-align: left;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    align-self: stretch;
  }

  .footer-frame {
    background: var(--bg, #000000);
    padding: 31px 36px 31px 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .footer {
    padding: 40px 0px 0px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    width: 1368px;
    height: 66px;
    position: relative;
  }
  .fo-txt-copyright {
    color: var(--main, #d6e7d1);
    text-align: center;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 15px;
    font-weight: 300;
    position: relative;
  }
  .fo-txt-instagram {
    color: var(--main, #d6e7d1);
    text-align: right;
    font-family: "-", sans-serif;
    font-size: 15px;
    line-height: 160%;
    font-weight: 400;
    position: relative;
  }
  .fo-txt-instagram-span {
    font-family: "42DotSans-SemiBold", sans-serif;
    font-weight: 600;
  }
  .fo-txt-instagram-span2 {
    font-family: "PpPierSans-Light", sans-serif;
    font-weight: 300;
  }
  
}