/* 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");
  }

  .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;
}

::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;
}

body {
    padding-top: 97px;
}
  
  .archive {
    word-break: keep-all;
  }
  
  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 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: #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%;
  }

/*archive*/
.archive {
  box-sizing: border-box;
  background: var(--main, #d6e7d1);
  padding: 40px 36px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.ar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.txt-page-name {
  color: var(--bg, #000000);
  font-family: "-", sans-serif;
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  position: relative;
}
.txt-page-name-span {
  font-family: "42DotSans-SemiBold", sans-serif;
  font-weight: 600;
}
.txt-page-name-span2 {
  font-family: "PpPierSans-Light", sans-serif;
  font-weight: 300;
}
.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: 100%;
    height: auto;
    position: relative;
    object-fit: contain;
    max-width: 100%;
    display: block;
}

/*320-934px*/
@media only screen and (min-width: 320px) and (max-width: 934px) {
  .header {
    background: #d6e7d1;
    padding: 31px 16px 31px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  .menu-content {
    padding: 31px 16px;
  }

  .archive {
    box-sizing: border-box;
    background: var(--main, #d6e7d1);
    padding: 40px 16px 80px 16px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
  .ar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
  }

    .footer-frame {
        background: #d6e7d1;
        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: 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-weight: 300;
        font-size: 13px;
        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) {
    .footer-frame {
        background: #d6e7d1;
        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(--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) {
    .header {
        background: #d6e7d1;
        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: #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: 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;
      }
      .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;
      }
}