/* 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: #000000;
  color: #d6e7d1;
  opacity: 1;
}

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

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

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

body {
  -webkit-user-select: text;  /* Safari */
  -moz-user-select: text;     /* Firefox */
  -ms-user-select: text;      /* IE/Edge */
  user-select: text;          /* Standard syntax */
}
.txt-field-e,
.txt-field-k,
.txt-club-name-e,
.txt-club-name-k,
.txt-page-name,
.fo-txt-copyright,
.fo-txt-instagram {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  pointer-events: auto;
}

body {
  padding-top: 97px;
}

.works {
  word-break: keep-all;
}
.works a:hover {
  opacity: 1;
}

a {
  text-decoration: none;
}
a, button {
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
a.he-txt-maintitle:hover {
  opacity: 1;
  transition: none;
}

/*header*/
.header {
  background: #d6e7d1;
  padding: 31px 36px 40px 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: #000000;
  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: #000000;
  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: #d6e7d1;
  /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
  outline: #000000 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: #000000;
  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: #000000;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
}
.menu-content ul li a .menu-text-en {
  color: #000000;
  font-family: "PpPierSans-Light", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 160%;
}

/*works*/


/*320-934px*/
@media only screen and (min-width: 320px) and (max-width: 934px) {
  .works {
    box-sizing: border-box;
    background: var(--main, #d6e7d1);
    display: flex;
    flex-direction: column;
    padding: 40px 0;
    gap: 13.58vw;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  .wo {
    align-self: stretch;
    flex-shrink: 0;
    display: grid;
    gap: 0;
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, minmax(0, 1fr));
    grid-auto-flow: dense; /* 격자 순서 조정 */
  }
  .box, .box2, .box3, .box4, .box5, .box6, .box7, .box8, .box9, .box10 {
    border-style: solid;
    border-color: #000000;
    padding: 4.25vw 5.42vw;
    display: flex;
    flex-direction: column;
    gap: 5.4vw;
    align-items: center;
    justify-content: center;
    height: 68.27vw;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
  }
  .box {
    border-width: 0px 1px 1px 0px;
  }
  .box2 {
    border-width: 0px 0px 1px 0px;
  }
  .box3 {
    border-width: 0px 1px 1px 0px;
  }
  .box4 {
    border-width: 0px 0px 1px 0px;
  }
  .box5 {
    border-width: 0px 1px 1px 0px;
  }
  .box6 {
    border-width: 0px 0px 1px 0px;
  }
  .box7 {
    border-width: 0px 1px 1px 0px;
  }
  .box8 {
    border-width: 1px 0px 1px 0px;
  }
  .box9 {
    border-width: 1px 1px 1px 0px;
  }
  .box10 {
    border-width: 0px 0px 1px 0px;
    cursor: default;
    pointer-events: none;
  }
  .box:hover, .box:active,
  .box2:hover, .box2:active,
  .box3:hover, .box3:active,
  .box4:hover, .box4:active, 
  .box5:hover, .box5:active,
  .box6:hover, .box6:active,
  .box7:hover, .box7:active,
  .box8:hover, .box8:active,
  .box9:hover, .box9:active {
    background-color: var(--bg);
    border-color: var(--bg);
    opacity: 1 !important;
  }
  .box:hover *, .box:active *,
  .box2:hover *, .box2:active *,
  .box3:hover *, .box3:active *,
  .box4:hover *, .box4:active *,
  .box5:hover *, .box5:active *,
  .box6:hover *, .box6:active *,
  .box7:hover *, .box7:active *,
  .box8:hover *, .box8:active *,
  .box9:hover *, .box9:active * {
    color: var(--main);
  }
  .txt-field {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  .txt-field-e {
    color: var(--bg, #000000);
    text-align: center;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: clamp(14px, 3.2vw, 16px);
    line-height: 140%;
    font-weight: 300;
    position: relative;
  }
  .txt-field-k {
    margin: -0.34vw 0 0 0;
    color: var(--bg, #000000);
    text-align: center;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: clamp(14px, 3.2vw, 16px);
    line-height: 160%;
    font-weight: 600;
    position: relative;
  }
  .txt-club-name-frame {
    display: flex;
    flex-direction: column;
    gap: 0.67vw;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  .txt-club-name-e {
    color: var(--bg, #000000);
    text-align: center;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: clamp(28px, 6.11vw, 34px);
    line-height: 85%;
    font-weight: 400;
    position: relative;
    width: 43.42vw;
  }
  .txt-club-name-k {
    color: var(--bg, #000000);
    text-align: right;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: clamp(16px, 3.05vw, 18px);
    line-height: 160%;
    font-weight: 600;
    position: relative;
  }
  .txt-field2 {
    height: 7.80vw;
  }
  .icon-hicvd {
    flex-shrink: 0;
    width: auto;
    height: 18vw;
    position: relative;
    overflow: visible;
  }
  .icon-hips {
    flex-shrink: 0;
    width: auto;
    height: 18vw;
    position: relative;
    overflow: visible;
  }
  .icon-hangulggol {
    flex-shrink: 0;
    width: auto;
    height: 18vw;
    position: relative;
    overflow: visible;
  }
  .icon-hyphen {
    flex-shrink: 0;
    width: auto;
    height: 18vw;
    position: relative;
    overflow: visible;
  }
  .icon-proto {
    flex-shrink: 0;
    width: auto;
    height: 18vw;
    position: relative;
    overflow: visible;
  }
  .icon-adrenalin {
    flex-shrink: 0;
    width: auto;
    height: 18vw;
    position: relative;
    overflow: visible;
  }
  .icon-yadz {
    flex-shrink: 0;
    width: auto;
    height: 18vw;
    position: relative;
    overflow: visible;
  }
  .icon-iray {
    flex-shrink: 0;
    width: auto;
    height: 18vw;
    position: relative;
    overflow: visible;
  }
  .icon-dromapic {
    flex-shrink: 0;
    width: auto;
    height: 18vw;
    position: relative;
    overflow: visible;
  }
  .icon-greenbee {
    flex-shrink: 0;
    width: auto;
    height: 18vw;
    position: relative;
    overflow: visible;
  }

.header {
  background: #d6e7d1;
  padding: 31px 16px 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.menu-content {
  padding: 31px 16px;
}

  .footer-frame {
      background: #d6e7d1;
      padding: 40px 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: 266px;
      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(--bg, #000000);
      font-family: "PpPierSans-Light", sans-serif;
      font-size: 13px;
      font-weight: 300;
      position: relative;
    }
    .fo-txt-instagram {
      color: var(--bg, #000000);
      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;
    }
    
    .fo-txt-instagram-link {
      text-decoration: none;
      display: block;
      cursor: pointer;
    }
    
    .fo-txt-instagram-link:hover {
      opacity: 0.7;
      transition: opacity 0.2s ease;
    }
}

/*935-1439px*/
@media (min-width: 935px) and (max-width: 1439px) {
  .works {
    box-sizing: border-box;
    background: var(--main, #d6e7d1);
    padding: 40px 0px 40px 0px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  .wo {
    align-self: stretch;
    flex-shrink: 0;
    display: grid;
    gap: 0px;
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .box {
    border-style: solid;
    border-color: #000000;
    border-width: 0px 0px 1px 0px;
    padding: 25px 32px 25px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    height: 389.33px;
    position: relative;
    grid-column: 3 / span 1;
    grid-row: 3 / span 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
  }
  .box10 {
    display: none;
  }
  .box:hover, .box:active,
  .box2:hover, .box2:active,
  .box3:hover, .box3:active,
  .box4:hover, .box4:active, 
  .box5:hover, .box5:active,
  .box6:hover, .box6:active,
  .box7:hover, .box7:active,
  .box8:hover, .box8:active,
  .box9:hover, .box9:active {
    background-color: var(--bg);
    border-color: var(--bg);
  }
  .box:hover *, .box:active *,
  .box2:hover *, .box2:active *,
  .box3:hover *, .box3:active *,
  .box4:hover *, .box4:active *,
  .box5:hover *, .box5:active *,
  .box6:hover *, .box6:active *,
  .box7:hover *, .box7:active *,
  .box8:hover *, .box8:active *,
  .box9:hover *, .box9:active * {
    color: var(--main);
  }
  .txt-field {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  .txt-field-e {
    color: var(--bg, #000000);
    text-align: center;
    font-family: "PpPierSans-Light", sans-serif;
    font-size: 16px;
    line-height: 160%;
    font-weight: 300;
    position: relative;
  }
  .txt-field-k {
    margin: -2px 0 0 0;
    color: var(--bg, #000000);
    text-align: right;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
  }
  .icon-hips {
    flex-shrink: 0;
    width: 134px;
    height: 128px;
    position: relative;
    overflow: visible;
  }
  .txt-club-name-frame {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
  }
  .txt-club-name-e {
    color: var(--bg, #000000);
    text-align: center;
    font-family: "Jugador-Stocky", sans-serif;
    font-size: 36px;
    line-height: 85%;
    font-weight: 400;
    position: relative;
    width: 256px;
  }
  .txt-club-name-k {
    color: var(--bg, #000000);
    text-align: right;
    font-family: "42DotSans-SemiBold", sans-serif;
    font-size: 18px;
    line-height: 160%;
    font-weight: 600;
    position: relative;
  }
  .box2 {
    border-style: solid;
    border-color: #000000;
    border-width: 0px 1px 1px 1px;
    padding: 25px 32px 25px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    height: 389.33px;
    position: relative;
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
  }
  .icon-hangulggol {
    flex-shrink: 0;
    width: 149px;
    height: 128px;
    position: relative;
    overflow: visible;
  }
  .box3 {
    border-style: solid;
    border-color: #000000;
    border-width: 0px 0px 1px 0px;
    padding: 25px 32px 25px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    height: 389.33px;
    position: relative;
    grid-column: 1 / span 1;
    grid-row: 3 / span 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
  }
  .icon-hyphen {
    flex-shrink: 0;
    width: 160px;
    height: 128px;
    position: relative;
    overflow: visible;
  }
  .box4 {
    border-style: solid;
    border-color: #000000;
    border-width: 1px 0px 1px 0px;
    padding: 25px 32px 25px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    height: 389.33px;
    position: relative;
    grid-column: 3 / span 1;
    grid-row: 2 / span 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
  }
  .icon-proto {
    flex-shrink: 0;
    width: 142px;
    height: 128px;
    position: relative;
    overflow: visible;
  }
  .box5 {
    border-style: solid;
    border-color: #000000;
    border-width: 1px;
    padding: 25px 32px 25px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    height: 389.33px;
    position: relative;
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
  }
  .icon-a-drenalin {
    flex-shrink: 0;
    width: 141px;
    height: 128px;
    position: relative;
    overflow: visible;
  }
  .box6 {
    border-style: solid;
    border-color: #000000;
    border-width: 1px 0px 1px 0px;
    padding: 25px 32px 25px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    height: 389.33px;
    position: relative;
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
  }
  .icon-yadz {
    flex-shrink: 0;
    width: 137px;
    height: 128px;
    position: relative;
    overflow: visible;
  }
  .box7 {
    border-style: solid;
    border-color: #000000;
    border-width: 1px 0px 0px 0px;
    padding: 25px 32px 25px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    height: 389.33px;
    position: relative;
    grid-column: 3 / span 1;
    grid-row: 1 / span 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
  }
  .icon-iray {
    flex-shrink: 0;
    width: 113px;
    height: 128px;
    position: relative;
    overflow: visible;
  }
  .box8 {
    border-style: solid;
    border-color: #000000;
    border-width: 1px 1px 0px 1px;
    padding: 25px 32px 25px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    height: 389.33px;
    position: relative;
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
  }
  .icon-dromapic {
    flex-shrink: 0;
    width: 146px;
    height: 128px;
    position: relative;
    overflow: visible;
  }
  .box9 {
    border-style: solid;
    border-color: #000000;
    border-width: 1px 0px 0px 0px;
    padding: 25px 32px 25px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    height: 389.33px;
    position: relative;
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
  }
  .icon-greenbee {
    flex-shrink: 0;
    width: 161px;
    height: 128px;
    position: relative;
    overflow: visible;
  }
  .footer-frame {
      background: #d6e7d1;
      padding: 40px 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(--bg, #000000);
      text-align: center;
      font-family: "PpPierSans-Light", sans-serif;
      font-size: 15px;
      font-weight: 300;
      position: relative;
    }
    .fo-txt-instagram {
      color: var(--bg, #000000);
      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;
    }
    
    .fo-txt-instagram-link {
      text-decoration: none;
      display: block;
      cursor: pointer;
    }
    
    .fo-txt-instagram-link:hover {
      opacity: 0.7;
      transition: opacity 0.2s ease;
    }
}

/*1440-*/
@media (min-width: 1440px) {
.works {
  box-sizing: border-box;
  background: var(--main, #d6e7d1);
  padding: 40px 36px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.wo {
  flex-shrink: 0;
  display: grid;
  gap: 0px;
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  width: 1440px;
}
.box {
  border-style: solid;
  border-color: #000000;
  border-width: 0px 0px 1px 0px;
  padding: 25px 32px 25px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  height: 389.33px;
  position: relative;
  grid-column: 3 / span 1;
  grid-row: 3 / span 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: auto;
}
.box10 {
  display: none;
}
.box:hover, .box:active,
.box2:hover, .box2:active,
.box3:hover, .box3:active,
.box4:hover, .box4:active, 
.box5:hover, .box5:active,
.box6:hover, .box6:active,
.box7:hover, .box7:active,
.box8:hover, .box8:active,
.box9:hover, .box9:active {
  background-color: var(--bg);
  border-color: var(--bg);
}
.box:hover *, .box:active *,
.box2:hover *, .box2:active *,
.box3:hover *, .box3:active *,
.box4:hover *, .box4:active *,
.box5:hover *, .box5:active *,
.box6:hover *, .box6:active *,
.box7:hover *, .box7:active *,
.box8:hover *, .box8:active *,
.box9:hover *, .box9:active * {
  color: var(--main);
}
.txt-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.txt-field-e {
  color: var(--bg, #000000);
  text-align: center;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 16px;
  line-height: 160%;
  font-weight: 300;
  position: relative;
}
.txt-field-k {
  margin: -2px 0 0 0;
  color: var(--bg, #000000);
  text-align: right;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 160%;
  font-weight: 600;
  position: relative;
}
.icon-hips {
  flex-shrink: 0;
  width: 134px;
  height: 128px;
  position: relative;
  overflow: visible;
}
.txt-club-name-frame {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.txt-club-name-e {
  color: var(--bg, #000000);
  text-align: center;
  font-family: "Jugador-Stocky", sans-serif;
  font-size: 36px;
  line-height: 85%;
  font-weight: 400;
  position: relative;
  width: 256px;
}
.txt-club-name-k {
  color: var(--bg, #000000);
  text-align: right;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 160%;
  font-weight: 600;
  position: relative;
}
.box2 {
  border-style: solid;
  border-color: #000000;
  border-width: 0px 1px 1px 1px;
  padding: 25px 32px 25px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  height: 389.33px;
  position: relative;
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: auto;
}
.icon-hangulggol {
  flex-shrink: 0;
  width: 149px;
  height: 128px;
  position: relative;
  overflow: visible;
}
.box3 {
  border-style: solid;
  border-color: #000000;
  border-width: 0px 0px 1px 0px;
  padding: 25px 32px 25px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  height: 389.33px;
  position: relative;
  grid-column: 1 / span 1;
  grid-row: 3 / span 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: auto;
}
.icon-hyphen {
  flex-shrink: 0;
  width: 160px;
  height: 128px;
  position: relative;
  overflow: visible;
}
.box4 {
  border-style: solid;
  border-color: #000000;
  border-width: 1px 0px 1px 0px;
  padding: 25px 32px 25px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  height: 389.33px;
  position: relative;
  grid-column: 3 / span 1;
  grid-row: 2 / span 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: auto;
}
.icon-proto {
  flex-shrink: 0;
  width: 142px;
  height: 128px;
  position: relative;
  overflow: visible;
}
.box5 {
  border-style: solid;
  border-color: #000000;
  border-width: 1px;
  padding: 25px 32px 25px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  height: 389.33px;
  position: relative;
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: auto;
}
.icon-adrenalin {
  flex-shrink: 0;
  width: 141px;
  height: 128px;
  position: relative;
  overflow: visible;
}
.box6 {
  border-style: solid;
  border-color: #000000;
  border-width: 1px 0px 1px 0px;
  padding: 25px 32px 25px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  height: 389.33px;
  position: relative;
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: auto;
}
.icon-yadz {
  flex-shrink: 0;
  width: 137px;
  height: 128px;
  position: relative;
  overflow: visible;
}
.box7 {
  border-style: solid;
  border-color: #000000;
  border-width: 1px 0px 0px 0px;
  padding: 25px 32px 25px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  height: 389.33px;
  position: relative;
  grid-column: 3 / span 1;
  grid-row: 1 / span 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: auto;
}
.icon-iray {
  flex-shrink: 0;
  width: 113px;
  height: 128px;
  position: relative;
  overflow: visible;
}
.box8 {
  border-style: solid;
  border-color: #000000;
  border-width: 1px 1px 0px 1px;
  padding: 25px 32px 25px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  height: 389.33px;
  position: relative;
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: auto;
}
.icon-dromapic {
  flex-shrink: 0;
  width: 146px;
  height: 128px;
  position: relative;
  overflow: visible;
}
.box9 {
  border-style: solid;
  border-color: #000000;
  border-width: 1px 0px 0px 0px;
  padding: 25px 32px 25px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  height: 389.33px;
  position: relative;
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: auto;
}
.icon-greenbee {
  flex-shrink: 0;
  width: 161px;
  height: 128px;
  position: relative;
  overflow: visible;
}


  .header {
      background: #d6e7d1;
      padding: 31px 36px 40px 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: #000000;
      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: #d6e7d1;
        /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
        outline: #000000 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: #000000;
        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: #000000;
        font-family: "42DotSans-SemiBold", sans-serif;
        font-weight: 600;
        font-size: 16px;
        line-height: 160%;
      }
      
      .menu-content ul li a .menu-text-en {
        color: #000000;
        font-family: "PpPierSans-Light", sans-serif;
        font-weight: 300;
        font-size: 16px;
        line-height: 160%;
      }

  .ar {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
      justify-content: center;
      width: 100%;
  }

  .txt-page-name {
      align-self: flex-start;
      width: 100%;
      max-width: 1368px;
      margin: 0 auto;
      padding: 0;
  }

  .img-ac-1, .img-ac-2, .img-ac-3, .img-ac-4, .img-ac-5, .img-ac-6, .img-ac-7, .img-ac-8, .img-ac-9, .img-ac-10, .img-ac-11, .img-ac-12, .img-ac-13, .img-ac-14, .img-ac-15 {
      width: 1368px;
      height: auto;
      position: relative;
      object-fit: contain;
      display: block;
  }

  .footer-frame {
      background: #d6e7d1;
      padding: 40px 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;
    }
    .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(--bg, #000000);
      font-family: "PpPierSans-Light", sans-serif;
      font-size: 15px;
      font-weight: 300;
      position: relative;
    }
    .fo-txt-instagram {
      color: var(--bg, #000000);
      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;
    }
    
    .fo-txt-instagram-link {
      text-decoration: none;
      display: block;
      cursor: pointer;
    }
    
    .fo-txt-instagram-link:hover {
      opacity: 0.7;
      transition: opacity 0.2s ease;
    }
}