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

body {
  padding-top: 97px; /* 헤더 높이만큼 여백 추가 */
  margin: 0;
}

* {
  -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;
}

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 {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #d6e7d1;
}

main.pr {
  padding: 40px 16px 40px 16px;
}

@media screen and (min-width: 935px) {
  main.pr {
    padding: 40px 36px 40px 36px;
  }
}

@media screen and (min-width: 1440px) {
  main.pr {
    padding: 40px 0px 40px 0px;
  }
}

.pr {
  padding-top: 97px;
}

.program {
    word-break: keep-all;
}

* {
  -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*/
.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%;
}

/* 320-934 */
@media only screen and (min-width: 320px) and (max-width: 934px) {
.pr {
    box-sizing: border-box;
    background: var(--main, #d6e7d1);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
.program,
.program * {
  box-sizing: border-box;
}
.program {
  background: var(--main, #d6e7d1);
  padding: 31px 16px 31px 16px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.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;
}
.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: var(--bg, #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;
}
.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: var(--bg, #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;
}
.pr {
  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);
  text-align: right;
  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;
}
._1 {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  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;
}
.program-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  min-width: 248px;
  max-width: 799px;
  position: relative;
}
.divider-ha-1 {
  border-style: solid;
  border-color: var(--bg, #000000);
  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;
}
._5 .program-box:last-child .divider-ha-1 {
    display: none;
  }
.info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.txt-info-title {
  color: var(--bg, #000000);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 800;
  position: relative;
}
.txt-info-detail {
  color: var(--bg, #000000);
  text-align: left;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 16px;
  line-height: 140%;
  font-weight: 300;
  position: relative;
}
.txt-info-des {
  color: var(--bg, #000000);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 160%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
._2 {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  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;
}
._3 {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  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;
}
._4 {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  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;
}
._5 {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.footer {
  padding: 80px 16px 31px 16px;
  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;
}

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

.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: var(--bg, #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%;
}
}

@media (min-width: 935px) and (max-width: 1439px) {
  .pr {
    box-sizing: border-box;
    background: var(--main, #d6e7d1);
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
  }
.program,
.program * {
  box-sizing: border-box;
}
.program {
  background: var(--main, #d6e7d1);
  padding: 31px 36px 31px 36px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  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: var(--bg, #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;
}
.he-menu {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.he-txt-wo {
  color: var(--bg, #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: var(--bg, #000000);
  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: var(--bg, #000000);
  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;
}
.pr {
  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);
  text-align: right;
  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;
}
._1 {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  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;
}
.program-box {
  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-1 {
  border-style: solid;
  border-color: var(--bg, #000000);
  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;
}
.info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.txt-info-title {
  color: var(--bg, #000000);
  text-align: left;
  font-family: "42DotSans-ExtraBold", sans-serif;
  font-size: 18px;
  line-height: 140%;
  font-weight: 800;
  position: relative;
  width: 364.5px;
}
.txt-info-detail {
  color: var(--bg, #000000);
  text-align: left;
  font-family: "PpPierSans-Light", sans-serif;
  font-size: 18px;
  line-height: 140%;
  font-weight: 300;
  position: relative;
}
.txt-info-des {
  color: var(--bg, #000000);
  text-align: left;
  font-family: "42DotSans-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 160%;
  font-weight: 600;
  position: relative;
  align-self: stretch;
}
._2 {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  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;
}
._3 {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  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;
}
._4 {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  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;
}
._5 {
  display: flex;
  flex-direction: row;
  gap: 5.5vw;
  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;
}
.footer {
  padding: 80px 36px 31px 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  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;
}

.menu-container.active .he-txt-wo {
  opacity: 0;
}
  
.he-menu.active .he-txt-wo {
  opacity: 0;
}
  
.menu-container {
  position: fixed;
  top: -300px;
  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: var(--bg, #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%;
}
}

@media (min-width: 1440px) {
  .pr {
    background: var(--main, #d6e7d1);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    width: 1368px;
    margin: 0 auto;
  }
  .program {
    width: 100%;
    max-width: 1368px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: flex-start;  /* 왼쪽 정렬 유지 */
  }
  .txt-page-name,
  .txt-info-title,
  .txt-info-detail,
  .txt-info-des {
    text-align: left;
  }
    .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%;
      }
    .txt-page-name {
      color: var(--bg, #000000);
      text-align: left;
      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;
    }
    ._1 {
      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;
    }
    .program-box {
      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-1 {
      border-style: solid;
      border-color: var(--bg, #000000);
      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;
    }
    .info {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-start;
      justify-content: flex-start;
      flex-shrink: 0;
      position: relative;
    }
    .txt-info-title {
      color: var(--bg, #000000);
      text-align: left;
      font-family: "42DotSans-ExtraBold", sans-serif;
      font-size: 18px;
      line-height: 140%;
      font-weight: 800;
      position: relative;
      width: 364.5px;
    }
    .txt-info-detail {
      color: var(--bg, #000000);
      text-align: left;
      font-family: "PpPierSans-Light", sans-serif;
      font-size: 18px;
      line-height: 140%;
      font-weight: 300;
      position: relative;
      width: 607px;
    }
    .txt-info-des {
      color: var(--bg, #000000);
      text-align: left;
      font-family: "42DotSans-SemiBold", sans-serif;
      font-size: 16px;
      line-height: 160%;
      font-weight: 600;
      position: relative;
      align-self: stretch;
    }
    ._2 {
      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;
    }
    ._3 {
      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;
    }
    ._4 {
      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;
    }
    ._5 {
      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;
    }
    .footer-frame {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 80px 36px 31px 36px;
    }
    .footer {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
      width: 1368px;
      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;
    }

    .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: var(--bg, #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%;
      }
}