@charset "UTF-8";
/* Responsive Design Variables */
:root {
  /* Breakpoints */
  --mobile: 320px;
  --tablet: 768px;
  --desktop: 1024px;
  --lg-desktop: 1440px;
  /* Container max-widths */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  /* Typography */
  --font-family-primary: "Pretendard GOV Variable", "Pretendard GOV", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

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

html {
  font-size: 10px;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.34;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-thumb {
  background-color: #2f3542;
  border-radius: 10px;
}

main {
  display: block;
}

img,
picture,
video,
canvas,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  color: inherit;
  background: none;
  border: none;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

[hidden] {
  display: none;
}

body, html {
  width: 100%;
}

#wrap {
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.mobile-block {
  display: none;
}
@media (max-width: 768px) {
  .mobile-block {
    display: block;
  }
}

@media (max-width: 900px) {
  .mobile-hidden {
    display: none;
  }
}

.footer {
  z-index: 1000;
  position: relative;
  background: rgb(17, 17, 19);
}
@media (max-width: 900px) {
  .footer {
    padding-bottom: 60px;
  }
}
.footer-links {
  display: flex;
  justify-content: center;
  padding: 40px 0 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid #A0A3AD;
  transition: border 0.4s ease-in;
  position: relative;
}
.footer-links::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  transition: all 0.2s ease-in;
}
.footer-links:has(a:hover) {
  border-color: #fff;
}
.footer-links:has(a:hover)::after {
  height: 100%;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0 6.5px;
  font-family: "SUIT";
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.2s ease-in;
}
.footer-links a:hover {
  color: #000;
}
.footer-links a:hover i {
  transform: translateX(15px);
  opacity: 1;
  background: #000;
}
.footer-links a i {
  display: block;
  width: 48px;
  height: 48px;
  forced-color-adjust: none;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  display: inline-flex;
  transition: all 0.5s;
  -webkit-mask-image: url("../images/solar_arrow-right-outline.svg");
  mask-image: url("../images/solar_arrow-right-outline.svg");
  opacity: 1;
  transition: all 0.3s 0.2s ease;
  background: rgb(117, 117, 117);
}
@media (max-width: 768px) {
  .footer-links {
    display: none;
  }
}
.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 6rem 5rem;
}
@media (max-width: 768px) {
  .footer-content {
    padding: 30px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.footer-call {
  display: flex;
  align-items: center;
  gap: 0 14px;
}
.footer-call i {
  width: 48px;
  height: 48px;
  background: url("../images/call.svg") no-repeat center center/contain;
}
.footer-call a {
  color: #fff;
  font-family: "SUIT";
  font-weight: 900;
  font-size: 30px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0 16px;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer-social {
    gap: 0 10px;
    justify-content: center;
  }
}
.footer-social__link {
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.footer-social__link.blog {
  background-image: url("../images/blog.png");
}
.footer-social__link.youtube {
  background-image: url("../images/youtube.png");
}
.footer-social__link.instargram {
  background-image: url("../images/instagram.png");
}
@media (max-width: 768px) {
  .footer-social__link {
    width: 28px;
    height: 28px;
  }
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-family: "SUIT";
  font-weight: 400;
  font-size: 12px;
  text-align: right;
}
@media (max-width: 768px) {
  .footer-copyright {
    text-align: center;
    font-size: 10px;
    opacity: 0.8;
  }
}

.nav {
  position: fixed;
  z-index: 9999;
}
.nav .mobile-menu-close {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background-size: contain;
}
@media (min-width: 901px) {
  .nav {
    left: 50%;
    transform: translateX(-50%);
    top: 35px;
    background: rgba(30, 31, 33, 0.5);
    padding: 23px 37px 11px;
    border-radius: 7px;
    -webkit-backdrop-filter: blur(120px);
    backdrop-filter: blur(120px);
  }
  .nav-wrap {
    display: flex;
    gap: 50px;
  }
  .nav-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 9px;
    position: relative;
    white-space: nowrap;
  }
  .nav-anchor::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .nav-anchor.current::after {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .nav {
    background: rgb(30, 31, 33);
    padding: 44px 28px;
    border-radius: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease-in-out;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
  }
  .nav-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    padding: 8px 19px;
    font-size: 16px;
    white-space: nowrap;
  }
  .nav-anchor.current {
    background-color: rgb(20, 21, 23);
  }
  .nav .mobile-menu-close {
    display: block;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 17px;
    height: 17px;
    background-image: url("../images/close.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
}

.mobile-menu {
  display: none;
  width: 48px;
  height: 48px;
  background-image: url("../images/codex_menu.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 10001;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .mobile-menu {
    display: block;
  }
}

@media (max-width: 900px) {
  .nav-open .mobile-menu {
    opacity: 0;
    visibility: hidden;
  }
  .nav-open .nav {
    transition: all 1s ease-in-out;
    opacity: 1;
    visibility: visible;
  }
}
.sticky-end {
  position: absolute !important;
}

.apply-s-btn {
  text-align: center;
  padding-bottom: 62px;
}
@media (max-width: 768px) {
  .apply-s-btn {
    padding-bottom: 0;
  }
}
.apply-s-btn button {
  width: 450px;
  height: 82px;
  border-radius: 5px;
  background: rgb(44, 123, 239);
  position: relative;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 0 6px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .apply-s-btn button {
    width: 300px;
    height: 60px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .apply-s-btn button {
    width: 100%;
    border-radius: 0;
    height: 60px;
    font-size: 17px;
  }
}
.apply-s-btn button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #033F8C 0%, #006BF5 52.88%);
  transition: all 0.5s ease;
  opacity: 0;
}
.apply-s-btn button:hover::after {
  opacity: 1;
}
.apply-s-btn button span {
  color: #fff;
  position: relative;
  z-index: 2;
}
.apply-s-btn button i {
  position: relative;
  z-index: 2;
  display: block;
  width: 36px;
  height: 32px;
  background: url("../images/material-symbols_app-registration-rounded.png") no-repeat center center/contain;
}

.open-apply {
  display: none;
  position: fixed;
  right: 25px;
  bottom: 1.5rem;
  z-index: 1001;
  transition: all 0.5s ease;
}
.open-apply__btn {
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 182px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #4a4a4a, #000);
  border-radius: 999px;
  font-size: 0;
}
.open-apply__btn span {
  display: none;
}
.open-apply__btn span {
  color: #fff !important;
}
.open-apply__btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.8s ease;
  background: linear-gradient(to bottom, #3182f6, #0f172a);
  opacity: 0;
}
.open-apply__btn:hover::before {
  opacity: 1;
}
.open-apply__btn:hover span {
  color: #fff;
}
.open-apply__btn span, .open-apply__btn svg, .open-apply__btn * {
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .open-apply {
    left: 0;
    position: fixed !important;
    bottom: 0 !important;
    top: initial !important;
    right: 0;
  }
  .open-apply__btn {
    width: 100%;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-size: 16px;
    background: rgb(44, 123, 239);
  }
  .open-apply__btn div {
    display: none;
  }
  .open-apply__btn span {
    display: block;
    font-weight: 700;
    color: rgb(17, 17, 19);
  }
}

.open-apply__btn .arrow {
  text-align: center;
  padding-top: 1rem;
}

.text-group {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  font-weight: 500;
  line-height: 24px;
}

.divider {
  width: 60%;
  margin: 1rem auto;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

#btnTop {
  display: flex;
  justify-content: center;
  width: 6rem;
  margin-top: 1rem;
  position: fixed;
  bottom: 60px;
  right: 10px;
  z-index: 1001;
}
#btnTop i {
  display: inline-block;
  width: 3.6rem;
  height: 3.6rem;
  forced-color-adjust: none;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  display: inline-flex;
  transition: all 0.5s;
  -webkit-mask-image: url("../images/btnTop.svg");
  mask-image: url("../images/btnTop.svg");
  background-color: #fff;
}
@media (max-width: 1024px) {
  #btnTop {
    right: 10px;
    position: fixed;
    bottom: 60px;
    z-index: 1001;
  }
}

.apply__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  z-index: 102;
  background: url("../images/apply-close.png") no-repeat center center/contain;
  transition: all 0.5s 0.5s ease;
}

.apply {
  z-index: 10001;
  width: 671px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid rgb(0, 107, 245);
  display: none;
  color: rgb(17, 17, 19);
  transition: all 0.5s ease;
  background-color: #fff;
}
@media (max-width: 640px) {
  .apply {
    width: 100%;
  }
}
.apply-wrap {
  overflow-y: auto;
  height: 100%;
  padding: 25px 25px;
}
.apply__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.apply__subtitle {
  font-size: 14px;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 400;
}
.apply__session-list {
  margin-bottom: 14px;
  list-style: none;
}
.apply__session-item {
  display: flex;
  align-items: center;
  gap: 0 42px;
  font-size: 12px;
  margin-bottom: 10px;
  position: relative;
}
.apply__session-item-info {
  flex: 1;
}
.apply__session-time {
  display: block;
  color: rgb(134, 134, 134);
}
.apply__session-title {
  color: rgb(17, 17, 19);
  font-size: 16px;
  padding-top: 0.3rem;
}
.apply__session-remove {
  font-size: 0;
  background: url("../images/trash.png") no-repeat center center/contain;
  width: 23px;
  height: 23px;
  transition: all 0.2s;
}
.apply__session-remove:hover {
  background: url("../images/trash-on.png") no-repeat center center/contain;
}
.apply__notice {
  font-size: 16px;
  color: rgb(17, 17, 19);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.apply__notice span {
  color: rgb(239, 44, 44);
  font-family: "SUIT";
  font-weight: 400;
  font-size: 1.5rem;
}

.apply__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apply__form .input {
  width: 100%;
  height: 36px;
  border-radius: 4px;
  background: rgb(232, 232, 232);
  padding: 0 10px;
  color: rgb(17, 17, 19);
  font-size: 12px;
}
.apply__form-input {
  flex: 1;
}
.apply__form-input .cols {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.apply__form-input .cols + .cols {
  margin-top: 10px;
}
.apply__form-input .cols .form-btn {
  flex-shrink: 0;
  width: 178px;
  height: 36px;
  background: rgb(63, 74, 87);
  border: 1px solid rgb(17, 17, 19);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 5px;
}
.apply__form-group {
  display: flex;
  align-items: center;
}
.apply__form-group .fir,
.apply__form-group .sec {
  display: flex;
  align-items: center;
  width: 50%;
}
.apply__form-group .sec label {
  width: auto;
  padding-right: 15px;
  padding-left: 15px;
}
.apply__form label {
  width: 60px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}
.apply__form-checkbox {
  display: flex;
  align-items: center;
  gap: 0 4rem;
  padding-top: 0.7rem;
}
.apply__form-checkbox label {
  display: inline-block;
  white-space: nowrap;
  color: rgb(17, 17, 19);
  font-weight: 500;
  font-size: 16px;
  width: auto;
}
.apply__form-checkbox a {
  color: rgb(17, 17, 19);
  font-weight: 500;
  font-size: 10px;
  padding-right: 15px;
  background: url("../images/arw.png") no-repeat right center;
}
.apply__form .apply__submit {
  border-radius: 4px;
  background: rgb(44, 123, 239);
  height: 53px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-top: 17px;
}

.apply_empty {
  padding: 30px 0 40px;
  text-align: center;
}
.apply_empty .text {
  font-size: 16px;
  color: rgb(150, 152, 156);
}

.notice-block {
  padding: 18px 0;
  background: rgb(58, 60, 65);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.notice-block .text {
  line-height: 21px;
  text-align: center;
  font-size: 15px;
  color: rgb(189, 223, 248);
}
.notice-block .apply__notice {
  margin-bottom: 0;
}

.apply-success {
  text-align: center;
  color: rgb(17, 17, 19);
  font-family: "SUIT";
  font-weight: 400;
}
.apply-success .text1 {
  font-size: 18px;
  line-height: 20px;
  padding-bottom: 20px;
}
.apply-success .text2 {
  font-size: 14px;
  line-height: 21px;
}

.apply-success-btn .form-btn {
  width: 100%;
  border-radius: 4px;
  background: rgb(44, 123, 239);
  height: 53px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-top: 17px;
}

.apply-success-links {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  margin-top: 24px;
}
.apply-success-links a {
  color: rgb(17, 17, 19);
  text-decoration: underline;
  font-weight: 600;
  font-size: 14px;
}

.apply-open .apply {
  display: block;
}
.apply-open .apply .apply__close {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .apply-open .apply {
    height: 100%;
  }
}
.alert-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  z-index: 100;
  border-radius: 12px;
  padding: 21px 30px;
  text-align: center;
  width: calc(100% - 80px);
}
.alert-popup .alert-content {
  font-size: 14px;
  color: rgb(28, 28, 28);
  font-weight: 400;
}
.alert-popup .alert-footer {
  display: flex;
  justify-content: center;
  gap: 0 40px;
  padding-top: 25px;
}
.alert-popup .alert-btn {
  font-size: 14px;
  font-weight: 500;
  color: rgb(28, 28, 28);
}
.alert-popup .alert-btn.primary {
  color: rgb(44, 123, 239);
  font-weight: 700;
}

body:has(.session) #btnTop i,
body:has(.location) #btnTop i {
  background-color: #000;
}

html,
body {
  overflow-x: hidden;
  background-color: rgb(17, 17, 19);
}

video {
  background-color: transparent;
  vertical-align: top;
}

.visual {
  background-color: #000;
  overflow: hidden;
  transform-origin: top center;
  position: relative;
  z-index: 15;
}
.visual__video {
  position: relative;
}
.visual__video video {
  clip-path: inset(50% 50% 50% 50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 2s;
  transform-origin: center center;
  vertical-align: top;
}
.visual__video video.loaded {
  clip-path: inset(0% 0% 0% 0%);
}
@media (max-width: 768px) {
  .visual__video video {
    object-fit: contain;
    background-color: #000;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .visual__video video {
    object-fit: cover;
    object-position: center 20%;
  }
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
.wrap-content {
  background: url("../images/bbg111.png") no-repeat center center/cover;
  padding-bottom: 134px;
}

.s1 {
  width: 100%;
  position: relative;
}

.s1-inner {
  margin: 0 auto;
  position: relative;
  max-width: 1280px;
  padding-top: 200px;
}
@media (max-width: 1024px) {
  .s1-inner {
    padding-top: 150px;
  }
}
@media (max-width: 768px) {
  .s1-inner {
    padding-top: 120px;
  }
}

.shape-1 {
  position: absolute;
  left: 0;
  top: -40px;
  display: flex;
  box-sizing: border-box;
  align-items: flex-start;
  justify-content: flex-start;
  animation: updown 3s infinite ease-in-out alternate;
}
@media (max-width: 768px) {
  .shape-1 {
    left: -50px;
    top: -60px;
  }
}

.shape-2 {
  position: absolute;
  right: 0;
  top: 44px;
  display: flex;
  box-sizing: border-box;
  align-items: flex-start;
  justify-content: flex-start;
  animation: updown 4s infinite ease-in-out alternate;
}
@media (max-width: 1024px) {
  .shape-2 {
    top: 20px;
  }
}
@media (max-width: 768px) {
  .shape-2 {
    display: none;
  }
}

.shape-3 {
  position: absolute;
  right: -50px;
  top: -80px;
  animation: updown 2s infinite ease-in-out alternate;
}
.shape-3 img {
  animation: rotate2 12s infinite linear;
}
@media (max-width: 768px) {
  .shape-3 {
    display: none;
  }
}

.s1-title {
  text-align: center;
  color: #fff;
  font-size: 80px;
  font-family: "SUIT";
}
@media (max-width: 1024px) {
  .s1-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .s1-title {
    font-size: 32px;
  }
}
.s1-title .l {
  display: inline-block;
  font-weight: 600;
}
.s1-title .r {
  display: inline-block;
  font-weight: 900;
}
.s1-title span {
  display: inline-block;
}

.s1-title-2 {
  overflow: hidden;
  font-size: 22px;
  font-family: "SUIT";
  font-weight: 400;
}
.s1-title-2 span {
  line-height: 16.82px;
  color: rgb(209, 209, 234);
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .s1-title-2 {
    font-size: 16px;
  }
}

.s2 {
  position: relative;
  width: 100%;
  padding-top: 68px;
}
@media (max-width: 768px) {
  .s2 {
    padding-top: 50px;
  }
}

.s2-title {
  font-family: "SUIT";
  font-weight: 600;
  font-size: 33px;
  line-height: 47px;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .s2-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 50px;
  }
}

.s2-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.hexagon-wrap-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .hexagon-wrap-inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
  }
}

.hexagon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: 0 0;
  transform-origin: center center;
}
.hexagon-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  background: rgb(242, 65, 201);
  display: block;
}
@media (max-width: 768px) {
  .hexagon-wrap::after {
    width: 10px;
    height: 10px;
  }
}
.hexagon-wrap .m-shape {
  display: none;
  position: absolute;
}
.hexagon-wrap.hexagon-1 {
  background-image: url("../images/hexagon-1.png");
  width: 335px;
  height: 385px;
  margin-left: 198px;
  margin-top: 36px;
}
@media (max-width: 1024px) {
  .hexagon-wrap.hexagon-1 {
    margin-left: 100px;
  }
}
@media (max-width: 768px) {
  .hexagon-wrap.hexagon-1 {
    margin: 0 auto;
    max-width: 100%;
    background-size: 100% auto;
  }
  .hexagon-wrap.hexagon-1 .m-shape {
    display: block;
    left: -30px;
    bottom: 0;
    width: 130px;
  }
  .hexagon-wrap.hexagon-1 .m-shape img {
    max-width: 100%;
    animation: rotate2 12s infinite linear;
  }
}
.hexagon-wrap.hexagon-2 {
  background-image: url("../images/hexagon-2.png");
  width: 386px;
  height: 334px;
  margin-top: 144px;
  margin-right: 240px;
}
@media (max-width: 1024px) {
  .hexagon-wrap.hexagon-2 {
    margin-right: 100px;
  }
}
@media (max-width: 768px) {
  .hexagon-wrap.hexagon-2 {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .hexagon-wrap.hexagon-2::before {
    content: "";
    display: block;
    padding-top: 86.5284974093%; /* 약 86.5% */
  }
  .hexagon-wrap.hexagon-2 .m-shape {
    display: block;
    bottom: 0;
    right: 0;
    animation: rotate 15s infinite linear;
  }
}
.hexagon-wrap .box {
  font-family: "SUIT";
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .hexagon-wrap .box {
    font-size: 23px;
    line-height: 35px;
  }
}
.hexagon-wrap .box div {
  overflow: hidden;
}
.hexagon-wrap .box b {
  font-weight: 800;
  font-size: 26px;
  color: rgb(255, 174, 236);
}
@media (max-width: 768px) {
  .hexagon-wrap .box b {
    font-size: 23px;
  }
}
.hexagon-wrap .box span {
  display: inline-block;
}

@keyframes rotate2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.shape-4 {
  position: absolute;
  left: 65px;
  top: -76px;
}
.shape-4 img {
  position: relative;
  animation: rotate 3s infinite linear;
}
@media (max-width: 768px) {
  .shape-4 {
    display: none;
  }
}

.shape-5 {
  position: absolute;
  left: 0;
  bottom: -80px;
  transform: translateX(-30%);
  margin-left: -70px;
}
.shape-5 img {
  position: relative;
  animation: rotate2 10s infinite linear;
}
@media (max-width: 768px) {
  .shape-5 {
    display: none;
  }
}

.s3 {
  padding-top: 127px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .s3 {
    padding-top: 50px;
  }
}

.s3-title {
  font-family: "SUIT";
  font-weight: 900;
  font-size: 32px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  padding-bottom: 44px;
}
.s3-title div {
  overflow: hidden;
}
.s3-title span {
  display: inline-block;
}
.s3-title em {
  font-style: normal;
  font-weight: 500;
}

.s3-content .square-flip {
  transform-origin: center center;
}

.s3-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1280px) {
  .s3-inner {
    padding-left: 37px;
    padding-right: 37px;
  }
}

.s3-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 1024px) {
  .s3-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .s3-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

.square-flip {
  height: 350px;
  perspective: 1000;
  transform: perspective(1000px);
  transform-style: preserve-3d;
  position: relative;
}

.square {
  background-size: cover;
  background-position: center center;
  -ms-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  -webkit-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.square-flip .square {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  z-index: 1;
}

.square-flip:hover .square {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
}

.square2 {
  background-size: cover;
  background-position: center center;
  -ms-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  -webkit-transition: transform 0.6s cubic-bezier(0.5, 0.3, 0.3, 1);
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.square-flip .square2 {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  z-index: 1;
}

.square-flip:hover .square2 {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

.boxing {
  position: relative;
  width: 100%;
  height: 100%;
}
.boxing .arrw {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media (max-width: 768px) {
  .boxing .arrw {
    display: none;
  }
}
.boxing .image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .boxing .image {
    width: 100%;
    text-align: center;
  }
}
.boxing .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "SUIT";
  font-weight: 800;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  color: #fff;
}
.boxing .text span {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .boxing .text {
    font-size: 24px;
  }
}

.square2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.square2 .text {
  font-family: "SUIT";
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  color: rgb(4, 22, 48);
}
@media (max-width: 768px) {
  .square2 .text {
    font-size: 16px;
    line-height: 20px;
  }
}
.square2 .text b {
  font-weight: 700;
  font-size: 28px;
  line-height: 35px;
}
@media (max-width: 768px) {
  .square2 .text b {
    font-size: 20px;
    line-height: 26px;
  }
}
.square2 .text div + div {
  padding-top: 20px;
}

.square-flip-1 .square {
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #041630 0%, #3555FF 100%);
}
.square-flip-1 .square2 {
  height: 100%;
  width: 100%;
  background: rgb(190, 201, 255);
  border: 1px solid rgba(4, 22, 48, 0.8);
}
.square-flip-1 .square2 b {
  color: rgb(0, 27, 173);
}

.square-flip-2 .square {
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #041630 0%, #6C43FF 100%);
}
.square-flip-2 .square2 {
  height: 100%;
  width: 100%;
  background: rgb(209, 204, 255);
  border: 1px solid rgba(4, 22, 48, 0.8);
}
.square-flip-2 .square2 b {
  font-size: 22px;
  color: rgb(4, 22, 48);
}
@media (max-width: 768px) {
  .square-flip-2 .square2 b {
    font-size: 16px;
  }
}

.square-flip-3 .square {
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #041630 0%, #8936EE 100%);
}
.square-flip-3 .square2 {
  height: 100%;
  width: 100%;
  background: rgb(236, 222, 255);
  border: 1px solid rgba(4, 22, 48, 0.8);
}
.square-flip-3 .square2 b {
  font-size: 22px;
  color: rgb(4, 22, 48);
}
@media (max-width: 768px) {
  .square-flip-3 .square2 b {
    font-size: 16px;
  }
}

.session-top {
  padding-top: 200px;
  background-color: rgb(17, 17, 19);
  box-sizing: content-box;
  padding-bottom: 100px;
}
@media (max-width: 1340px) {
  .session-top {
    padding-left: 40px;
    padding-right: 70px;
  }
}
@media (max-width: 1024px) {
  .session-top {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 46px;
  }
}
@media screen and (max-width: 900px) {
  .session-top {
    height: auto;
    min-height: auto;
    padding-bottom: 70px;
  }
}
.session-top-wrap {
  position: relative;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.program-morning {
  padding-top: 34px;
  margin: 0 auto;
  max-width: 1280px;
}
@media (max-width: 1024px) {
  .program-morning {
    flex-direction: column;
    gap: 20px;
    padding-top: 80px;
  }
}
.program-morning .program-title {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .program-morning .program-title {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
  }
}
.program-morning .details {
  width: 24px;
  height: 24px;
  background: url("../images/white.png") no-repeat center center/cover;
}

.session-track {
  background-color: #E7E7E7;
  padding: 27px 0 0;
  position: relative;
}
@media (max-width: 1340px) {
  .session-track {
    padding-left: 40px;
    padding-right: 70px;
  }
}
.session-track-wrap {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1001;
}
@media (max-width: 1024px) {
  .session-track {
    padding: 27px 20px 0;
  }
}
.session-track header {
  display: flex;
  justify-content: space-between;
  position: sticky;
  width: 100%;
}
@media (max-width: 1024px) {
  .session-track header {
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
  }
}
.session-track header h2 {
  font-weight: 700;
  color: rgb(28, 28, 28);
  font-size: 16px;
}
.session-track header button {
  width: 140px;
  height: 42px;
  opacity: 1;
  border-radius: 5px;
  border-width: 1px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgb(63, 74, 87);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: SUIT;
  font-weight: 700;
  font-size: 15px;
  line-height: 12px;
  color: rgb(28, 28, 28);
  gap: 0 3px;
}
.session-track header button i {
  display: block;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  width: 17px;
  height: 17px;
}
.session-track header button i.ico-time {
  background-image: url("../images/lsicon_list-outline.png");
}
.session-track header button i.ico-track {
  background-image: url("../images/uil_calender.png");
  width: 21px;
  height: 21px;
}
.session-track header button i.ico-all {
  background-image: url("../images/ico-all.png");
  width: 21px;
  height: 21px;
}
@media screen and (max-width: 768px) {
  .session-track header {
    align-items: center;
  }
  .session-track header button {
    align-self: flex-end;
  }
}

.session-track-btn {
  display: flex;
  gap: 0 7px;
}

.session-content {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
}

.session-item {
  display: flex;
}
.session-item + .session-item {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid rgb(0, 0, 0);
}
@media (max-width: 1024px) {
  .session-item + .session-item {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
  }
}
@media (max-width: 1024px) {
  .session-item {
    flex-direction: column;
  }
}

.session-item-title {
  width: 250px;
}
@media (max-width: 1024px) {
  .session-item-title {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 8px;
  }
}
.session-item-title span {
  font-family: "SUIT";
  font-size: 14px;
  color: rgb(63, 74, 87);
  font-weight: 600;
}
.session-item-title .session-item-category {
  font-family: "SUIT";
  font-weight: 800;
  font-size: 33px;
  line-height: 24px;
  color: rgb(28, 28, 28);
  padding-top: 10px;
}
@media (max-width: 1024px) {
  .session-item-title .session-item-category {
    font-size: 16px;
    line-height: 24px;
  }
}
.session-item-title .session-item-category:has(i) {
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.session-item-title .session-item-category i {
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/ico-clock.png") no-repeat center center/cover;
}
@media (max-width: 1024px) {
  .session-item-title {
    flex: 0;
  }
}

.session-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .session-details {
    width: 100%;
  }
}
.session-details .details-item {
  border-radius: 5px;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 15px 16px 15px 27px;
  transition: all 0.3s ease-in;
}
@media (max-width: 1024px) {
  .session-details .details-item {
    padding: 15px 19px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    background-color: #fff;
    border: 1px solid #fff;
  }
  .session-details .details-item:has(input:checked) {
    border-color: rgb(0, 107, 245) !important;
  }
  .session-details .details-item .details {
    display: none;
  }
}
.session-details .details-item:hover {
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .session-details .checkbox {
    position: absolute;
    top: 35px;
    right: 15px;
  }
  .session-details .checkbox label {
    margin-right: 0;
  }
}
.session-details .label-chk {
  display: block;
  border-radius: 2px;
  width: 21px;
  height: 21px;
  background: url("../images/ch.png") no-repeat 0 center/contain;
  position: relative;
  transition: all 0.2s;
  margin-right: 28px;
}
.session-details .label-chk input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.session-details .label-chk:has(input:checked) {
  background: url("../images/ch-n.png") no-repeat 0 center/contain;
}

.session-detail-time {
  flex: 1;
}
.session-detail-time div {
  font-family: "SUIT";
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: rgb(63, 74, 87);
}
@media (max-width: 1024px) {
  .session-detail-time div {
    font-size: 0;
  }
}
.session-detail-time div:has(span) {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.session-detail-time div:has(span) span {
  color: rgb(44, 123, 239);
  font-weight: 600;
}
@media (max-width: 1024px) {
  .session-detail-time div:has(span) span {
    font-size: 12px;
    line-height: 12px;
    color: rgb(63, 74, 87);
  }
}
.session-detail-time p {
  font-family: "SUIT";
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  padding-top: 4px;
}
@media (max-width: 1024px) {
  .session-detail-time p {
    font-size: 16px;
    line-height: 24px;
  }
}

.session-detail-speaker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-self: flex-end;
  gap: 0 23px;
}
@media screen and (max-width: 900px) {
  .session-detail-speaker {
    width: 100%;
    position: relative;
  }
}
@media screen and (max-width: 900px) {
  .session-detail-speaker .session-detail-speaker-info {
    display: flex;
    gap: 0 5px;
    padding-top: 7px;
  }
}
.session-detail-speaker .details {
  width: 24px;
  height: 24px;
  background: url("../images/black.png") no-repeat center center/cover;
}
@media screen and (max-width: 900px) {
  .session-detail-speaker .details {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.session-detail-speaker-info {
  display: flex;
  align-items: center;
}

.session-detail-speaker-info-name {
  font-family: "SUIT";
  font-weight: 500;
  color: rgb(28, 28, 28);
  font-size: 16px;
}

.session-detail-speaker-info-aff {
  font-family: "SUIT";
  font-weight: 400;
  color: rgb(63, 74, 87);
  font-size: 13px;
  padding-left: 4px;
}

@keyframes expandCircle {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.custom-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  font-family: "SUIT", sans-serif;
  transition: all 0.3s ease-in-out;
}
.custom-modal.active {
  transition: all 0s ease-in-out;
  opacity: 1;
  visibility: visible;
}
.custom-modal.active .custom-modal__backdrop {
  opacity: 1;
  visibility: visible;
  animation: expandCircle 1s ease-out forwards;
}
.custom-modal.active .custom-modal__content {
  transform: translateY(0px);
  opacity: 1;
  transition: all 0.3s 0.4s ease-in-out;
}
.custom-modal__backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw;
  height: 150vw;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
@media (max-width: 1024px) {
  .custom-modal__backdrop {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}
.custom-modal__content {
  position: relative;
  transform: translateY(-30px);
  opacity: 0;
  transition: all 0s 0s ease-in-out;
  z-index: 2;
  background: #3E4045;
  border-radius: 15x;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 60px 70px;
  min-width: 480px;
  max-width: 680px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .custom-modal__content {
    min-width: 0;
    width: 90vw;
    padding: 30px;
  }
}
.custom-modal__close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 30px;
  height: 30px;
  background: url("../images/close.svg") no-repeat center center;
  border: none;
  cursor: pointer;
  z-index: 3;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.custom-modal__close:hover {
  opacity: 1;
}
@media (max-width: 600px) {
  .custom-modal__close {
    right: 10px;
    top: 10px;
  }
}
.custom-modal__time {
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 600;
  color: rgb(210, 157, 255);
}
.custom-modal__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 9px;
}
@media (max-width: 600px) {
  .custom-modal__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.custom-modal__speaker {
  align-self: flex-end;
  text-align: right;
}
.custom-modal__speaker .custom-modal__name {
  font-size: 18px;
  font-weight: 500;
}
.custom-modal__speaker .custom-modal__aff {
  font-size: 13px;
  font-weight: 600;
  color: rgb(137, 137, 137);
}
.custom-modal__divider {
  width: 100%;
  border: none;
  border-top: 1px solid #6b6d72;
  margin: 20px 0 30px 0;
}
.custom-modal__desc {
  font-size: 15px;
  font-family: var(--font-family-primary);
  color: #fff;
  line-height: 1.67;
}
@media (max-width: 600px) {
  .custom-modal__desc {
    font-size: 13px;
  }
}

.session-top {
  opacity: 0;
}

.sub-title-text, .sub-title-date, .sub-title-hi, .sub-hrc-ver, .sub-title-video {
  opacity: 0;
  transform: translateY(30px);
}

.sub-title-video {
  opacity: 0;
  filter: blur(20px);
  transition: all 0.8s ease;
}

.sub-title-video.blur-reveal {
  opacity: 1;
  filter: blur(0px);
}

.program-morning {
  opacity: 0;
  transform: scale(0.97);
  filter: blur(10px);
}

.track-image {
  position: fixed !important;
  bottom: 40px !important;
  left: 0 !important;
  width: 100%;
  z-index: 999 !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  will-change: opacity, transform;
}
.track-image div {
  margin: 0 auto;
  max-width: 1280px;
}
.track-image img {
  max-width: 300px;
  height: auto;
  display: block;
}

.track-image.show {
  opacity: 1 !important;
  pointer-events: auto;
}

.sticky-header {
  width: 100%;
  z-index: 100;
}

.session-track.hidden {
  visibility: hidden !important;
  position: absolute !important;
  z-index: -1;
}
.session-track.visible {
  visibility: visible !important;
  position: relative !important;
  z-index: 0;
}

.notice_txt {
  font-family: "SUIT";
  font-size: 14px;
  color: rgb(17, 17, 19);
  padding-top: 10px;
  padding-bottom: 50px;
  margin: 0 auto;
  max-width: 1280px;
  line-height: 100%;
}
@media (max-width: 1280px) {
  .notice_txt {
    padding: 20px 20px 50px;
  }
}
@media (max-width: 1024px) {
  .notice_txt {
    font-size: 12px;
    line-height: 1.34;
  }
}

.track-wrap {
  position: relative;
  z-index: 2;
  background: #E7E7E7;
}

.session-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.session-table-header {
  display: flex;
  background: #2d3a4a;
  color: #fff;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.session-table-row {
  display: flex;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 10px;
}

.session-table-cell {
  flex: 1 1 0;
  padding: 18px 14px 14px 14px;
  font-size: 15px;
  color: #222;
  font-weight: 500;
  line-height: 1.5;
  border-right: 1px solid #e5e5e5;
  min-width: 120px;
  background: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.session-table-header .session-table-cell {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 16px;
  padding: 16px 0;
  justify-content: center;
  align-items: center;
}

.session-table-header .session-table-cell:last-child,
.session-table-row .session-table-cell:last-child {
  border-right: none;
}

.session-table-cell span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

@media (max-width: 900px) {
  .session-table-header, .session-table-row {
    flex-direction: column;
  }
  .session-table-cell {
    min-width: 0;
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid #e5e5e5;
  }
  .session-table-cell:last-child {
    border-bottom: none;
  }
}
/*

*/
.time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .time-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .time-grid .column {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 16px 21px;
  }
}
.time-grid .time {
  background: rgb(188, 182, 207);
  text-align: center;
  height: 22px;
  font-weight: 500;
  font-size: 12px;
  font-family: "SUIT";
  color: rgb(28, 28, 28);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgb(99, 109, 135);
}
.time-grid .time.bd0 {
  border-right: 0;
}
@media (max-width: 1024px) {
  .time-grid .time {
    height: auto;
    background: none;
    font-family: "SUIT";
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    border-right: none;
    text-align: left;
    color: rgba(255, 255, 255, 0.6);
    justify-content: flex-start;
    padding-bottom: 6px;
  }
}
.time-grid .h {
  padding-top: 33px;
  padding-left: 28px;
  padding-right: 28px;
  border-right: 1px solid #fff;
  height: 130px;
}
@media (max-width: 1024px) {
  .time-grid .h {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    border-right: none;
    height: auto;
  }
}
.time-grid .h.bd0 {
  border-right: 0;
}
.time-grid .subject {
  display: flex;
  justify-content: space-between;
}
.time-grid .subject strong {
  font-family: "SUIT";
  font-weight: 600;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
}
@media (max-width: 1024px) {
  .time-grid .subject .details {
    display: none;
  }
}
.time-grid .speaker {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #fff;
}
@media (max-width: 1024px) {
  .time-grid .speaker {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
    padding-top: 15px;
  }
}
.time-grid .speaker span {
  font-family: "SUIT";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}
.time-grid .speaker em {
  font-family: "SUIT";
  font-weight: 400;
  font-size: 13px;
  font-style: normal;
  line-height: 18px;
  color: rgb(109, 109, 109);
}
@media (max-width: 1024px) {
  .time-grid .speaker em {
    display: block;
    font-family: SUIT;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
  }
}

.time-grid-break {
  background: rgb(91, 87, 102);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .time-grid-break {
    display: none;
  }
}
.time-grid-break span {
  font-family: "SUIT";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

.cate {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  display: grid;
  gap: 0 7px;
}
.cate div {
  background: rgb(63, 74, 87);
  height: 4rem;
  font-family: "SUIT";
  font-weight: 600;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .cate {
    display: none;
  }
}

.tiem-v {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  background: rgb(182, 197, 207);
}
.tiem-v span {
  font-family: SUIT;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: rgb(28, 28, 28);
}
@media (max-width: 1024px) {
  .tiem-v {
    height: auto;
    background: none;
    padding-bottom: 8px;
  }
  .tiem-v span {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    height: 24px;
    padding-left: 21px;
    background: url("../images/ico-clo.png") no-repeat 0 center;
  }
}

.chk-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .chk-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
  .chk-grid + .tiem-v {
    margin-top: 15px;
  }
}
.chk-grid .mcate {
  font-size: 12px;
  line-height: 12px;
  color: rgb(63, 74, 87);
  display: none;
}
@media (max-width: 1024px) {
  .chk-grid .mcate {
    display: block;
  }
}
.chk-grid .session-chk {
  background: rgb(255, 255, 255);
  padding: 30px 18px;
  position: relative;
}
@media (max-width: 1024px) {
  .chk-grid .session-chk {
    padding: 15px 19px;
  }
}
@media screen and (max-width: 1024px) {
  .chk-grid .session-chk {
    border-left: none;
    border: 1px solid #fff !important;
    border-radius: 5px;
  }
  .chk-grid .session-chk:has(input:checked) {
    border-color: rgb(0, 107, 245) !important;
  }
}
.chk-grid .session-chk + .session-chk {
  border-left: 1px solid rgb(99, 109, 135);
}
@media (max-width: 1024px) {
  .chk-grid .session-chk + .session-chk {
    border-left: none;
  }
}
.chk-grid .session-chk .tit {
  font-family: "SUIT";
  font-weight: 600;
  font-size: 17px;
  line-height: 28px;
  color: rgb(28, 28, 28);
  height: 84px;
  margin-bottom: 10px;
  margin-top: 18px;
}
@media (max-width: 1024px) {
  .chk-grid .session-chk .tit {
    font-size: 16px;
    line-height: 24px;
    height: auto;
    margin-top: 0;
    margin-bottom: 6px;
    padding-top: 4px;
  }
}
.chk-grid .session-chk .speaker {
  margin-top: 10px;
  border-top: 1px solid rgb(178, 178, 178);
  padding-top: 10px;
}
@media (max-width: 1024px) {
  .chk-grid .session-chk .speaker {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
}
.chk-grid .session-chk .speaker div {
  font-family: "SUIT";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}
.chk-grid .session-chk .speaker div span {
  font-family: "SUIT";
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: rgb(109, 109, 109);
}
@media (max-width: 1024px) {
  .chk-grid .session-chk .chk {
    position: absolute;
    right: 15px;
    top: 35px;
  }
  .chk-grid .session-chk .chk label {
    font-size: 0;
  }
  .chk-grid .session-chk .chk label span {
    font-size: 0;
  }
}
.chk-grid .session-chk label {
  height: 21px;
  position: relative;
  background: url("../images/ch.png") no-repeat 0 center/contain;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.chk-grid .session-chk label span {
  display: block;
  padding-left: 26px;
  font-family: "SUIT";
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: rgb(28, 28, 28);
}
.chk-grid .session-chk label input {
  position: absolute;
  top: 0;
  left: 0;
  left: -999em;
  opacity: 0;
}
.chk-grid .session-chk label:has(input:checked) {
  background: url("../images/ch-n.png") no-repeat 0 center/contain;
}

.special-net {
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  font-family: "SUIT";
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgb(108, 67, 255);
  position: relative;
}
.special-net div {
  position: relative;
}
.special-net div::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -17px;
  width: 13px;
  height: 13px;
  background: url("../images/ico-shp.png") no-repeat center center/contain;
}
@media (max-width: 1024px) {
  .special-net {
    font-size: 14px;
    line-height: 22px;
  }
}
.special-net b {
  font-family: "SUIT";
  font-weight: 700;
  font-size: 17px;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .special-net b {
    font-size: 14px;
    line-height: 22px;
  }
}

.time-grid-text {
  text-align: right;
  font-family: "SUIT";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  padding-top: 10px;
}
@media (max-width: 1024px) {
  .time-grid-text {
    font-size: 12px;
    line-height: 1.34;
  }
}

.session {
  position: relative;
  z-index: 1;
}
.session-top {
  position: relative;
  z-index: 100;
}
.session-track {
  position: relative;
  z-index: 99;
}

.location {
  position: relative;
  z-index: 1;
  background-color: rgb(17, 17, 19);
  padding-top: 200px;
}
@media (max-width: 1280px) {
  .location {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 900px) {
  .location {
    height: auto;
    padding-top: 100px;
  }
}
.location-top {
  position: relative;
  max-width: 1280px;
}
.location-container {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  height: 100%;
}
@media (max-width: 900px) {
  .location-container {
    height: auto;
  }
}
.location-content {
  display: flex;
  gap: 0 15px;
  padding-top: 130px;
  padding-bottom: 40px;
}
@media (max-width: 900px) {
  .location-content {
    position: static;
    flex-direction: column;
    gap: 20px;
    padding-top: 80px;
  }
}
.location-transport {
  width: 217px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 98px 24px;
  color: #fff;
}
@media (max-width: 768px) {
  .location-transport {
    width: 100%;
    padding: 17px;
  }
}
.location-transport .block + .block {
  margin-top: 42px;
  padding-top: 50px;
  border-top: 1px solid rgb(87, 87, 97);
}
.location-transport .block-title {
  font-family: "SUIT";
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.location-transport .block-title i {
  display: block;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 24px;
  height: 24px;
}
.location-transport .block-title i.ico-subway {
  background-image: url("../images/ico-subway.svg");
}
.location-transport .block-title i.ico-bus {
  background-image: url("../images/ico-bus.svg");
}
.location-transport .block .how div {
  display: flex;
  align-items: center;
  gap: 0 4px;
}
.location-transport .block .how div + div {
  margin-top: 4px;
}
.location-transport .block .how div span {
  font-family: "SUIT";
  font-weight: 400;
  font-size: 14px;
}
.location-transport .block.bus .how {
  font-family: "SUIT";
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.location-map {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .location-map {
    margin-bottom: 40px;
  }
  .location-map iframe {
    height: 300px;
  }
}
.location-map .address {
  padding: 24px;
  background: rgba(62, 64, 69, 0.8);
  color: #fff;
  font-family: "SUIT";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: right;
  padding: 12px;
}
@media (max-width: 768px) {
  .location-map .address {
    padding: 12px;
  }
}
.location-map .address div {
  font-size: 13px;
  font-weight: 700;
}
.location-map .address div b {
  font-weight: 900;
  font-size: 15px;
}
@media (max-width: 768px) {
  .location-map .address div {
    font-size: 11px;
  }
  .location-map .address div b {
    font-size: 13px;
  }
}
.location-map .address p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 400;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .location-map .address p {
    font-size: 11px;
  }
}

.sub-hrc-ver {
  font-family: "SUIT";
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  right: 0;
  bottom: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1;
  text-transform: uppercase;
}
.sub-hrc-ver span + span {
  padding-top: 3px;
}
@media (max-width: 900px) {
  .sub-hrc-ver {
    position: static;
  }
}

@media (max-width: 900px) {
  .sub-title-hi-wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 31px;
  }
}

.sub-title {
  color: #fff;
}
.sub-title-text {
  font-family: "SUIT";
  font-weight: 400;
  font-size: 60px;
  line-height: 1.2;
}
.sub-title-text b {
  font-weight: 900;
}
@media (max-width: 900px) {
  .sub-title-text {
    line-height: 1.1;
    font-size: 30px;
  }
}
.sub-title-date {
  font-family: "SUIT";
  font-weight: 400;
  font-size: 40px;
  margin-top: 15px;
  display: flex;
  gap: 0 20px;
  align-items: center;
}
.sub-title-date b {
  font-weight: 900;
}
@media (max-width: 768px) {
  .sub-title-date b {
    font-size: 20px;
  }
}
.sub-title-date span {
  font-weight: 300;
  font-size: 34px;
}
@media (max-width: 768px) {
  .sub-title-date span {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .sub-title-date {
    margin-top: 0;
    font-weight: 400;
    font-size: 20px;
    margin-top: 20px;
    gap: 4px;
  }
}
@media (max-width: 768px) {
  .sub-title-date {
    margin-top: 5px;
  }
}
.sub-title-hi {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  font-family: "SUIT";
  font-weight: 900;
  font-size: 130px;
  line-height: 1;
}
@media (max-width: 900px) {
  .sub-title-hi {
    position: static;
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .sub-title-hi {
    font-size: 80px;
  }
}
.sub-title-video {
  padding-top: 60px;
}
.sub-title-video .mobile-image {
  display: none;
}
@media (max-width: 900px) {
  .sub-title-video {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .sub-title-video #canvas {
    display: none;
  }
  .sub-title-video .mobile-image {
    display: block;
  }
  .sub-title-video .mobile-image img {
    width: 100%;
    height: 100%;
  }
}

.re {
  position: relative;
}

.scroll-move {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 1s ease;
  opacity: 1;
  visibility: visible;
}
.scroll-move.hidden {
  opacity: 0;
  visibility: hidden;
}
.scroll-move i {
  width: 48px;
  height: 48px;
  background: url("../images/scroll-down.png") no-repeat center center/contain;
  animation: scrollBounce 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .scroll-move {
    display: none;
  }
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.7;
  }
}