@charset "UTF-8";
.bg-dark {
  background: #111;
}
.bg-dark .channel-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.bg-dark .channel-title-wrap h2 {
  background: linear-gradient(92deg, #E50914 0%, #EF32D3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 160%;
}
.bg-dark .channel-title-wrap h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 140%;
}
.bg-dark .channel-title-wrap h3 {
  color: #7b7b8a;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 160%;
  text-align: center;
}

.bg-gradient {
  background: linear-gradient(180deg, #111 40%, rgba(17, 17, 17, 0.85) 100%), linear-gradient(92deg, #E50914 0%, #731F76 100%);
}

.bg-gray {
  background: #f2f4f7;
}

.line {
  width: 1px;
  height: 1rem;
  background: #d2d4db;
  display: inline-block;
}

html {
  font-size: 16px;
  font-family: "Wanted Sans", sans-serif;
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Wanted Sans";
  min-height: 100%;
}

html, body {
  min-height: 100%;
  overflow-x: clip;
}

body::-webkit-scrollbar {
  width: 1rem;
}

body::-webkit-scrollbar-thumb {
  height: 4rem;
  border-radius: 0.5rem;
  border: 4px solid transparent;
  background-clip: padding-box;
  background-color: #d2d4db;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #d2d4db;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

.pc-none {
  display: none;
}

.btn {
  font-weight: 500;
  line-height: 160%;
  border-radius: 1.75rem;
  cursor: pointer;
  border: none;
}
.btn.large {
  height: 3.5rem;
  padding: 0 1.75rem;
  font-size: 1.25rem;
}
.btn.medium {
  height: 2.5rem;
  padding: 0 1.25rem;
  font-size: 0.875rem;
}
.btn.primary {
  background: #e50914;
  color: #fff;
}
.btn.primary:hover {
  background: #c40d25;
}
.btn.primary:disabled {
  background: #e6e8ed;
  color: #b2b3bf;
  cursor: default;
}
.btn.outlined {
  border: 1px solid #d2d4db;
  color: #3a383f;
  background: #fff;
}
.btn.outlined:hover {
  background: #f2f4f7;
}
.btn.transparent {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.375rem);
  color: #fff;
}
.btn.transparent:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn-text {
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  padding: 0;
  font-weight: 500;
}
.btn-text:hover .icon-arrow-animation {
  -webkit-mask: url("../images/icon-animation-arrow2.svg") no-repeat center/contain;
  mask: url("../images/icon-animation-arrow2.svg") no-repeat center/contain;
}
.btn-text.large {
  font-size: 1.5rem;
  color: #585763;
  height: 2.5rem;
}
.btn-text.large i {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  color: #7b7b8a;
}
@media screen and (max-width: 991px) {
  .btn-text.large {
    font-size: 1rem;
    height: 2rem;
  }
  .btn-text.large i {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
  }
}
.btn-text.medium {
  font-size: 1.25rem;
  color: #7b7b8a;
  height: 2.5rem;
}
.btn-text.medium i {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.75rem;
}
@media screen and (max-width: 991px) {
  .btn-text.medium {
    font-size: 1rem;
    height: 2rem;
  }
  .btn-text.medium i {
    font-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.btn-text.small {
  font-size: 1rem;
  color: #7b7b8a;
  height: 2rem;
  min-width: 2rem;
}
.btn-text.small i {
  font-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.btn-text.link {
  color: #06C;
  text-decoration: underline;
}

.btn-fill {
  border-radius: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn-fill.large {
  height: 3.5rem;
  font-size: 1.25rem;
  line-height: 160%;
  padding: 0 1.75rem;
  gap: 0.75rem;
  font-weight: 500;
}
.btn-fill.large .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.btn-fill.medium {
  height: 2.5rem;
  padding: 0 1.25rem;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
}
.btn-fill.medium .icon {
  width: 1rem;
  height: 1rem;
}
.btn-fill.btn-primary {
  background: #e50914;
  color: #fff;
  border: none;
}
.btn-fill.btn-primary:hover {
  background: #c40d25;
}
.btn-fill.btn-primary .icon {
  background: #fff;
}
.btn-fill.btn-outlined {
  border: 1px solid #d2d4db;
  background: #fff;
  color: #3a383f;
}
.btn-fill.btn-outlined:hover {
  background: #f2f4f7;
}

.btn-icon {
  border-radius: 1.75rem;
  display: flex;
  align-items: center;
}
.btn-icon.large {
  height: 3.5rem;
  font-size: 1.25rem;
  line-height: 160%;
  padding: 0 1.75rem 0 1.5rem;
  gap: 0.75rem;
}
.btn-icon.large .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.btn-icon.medium {
  height: 2.5rem;
  padding: 0 1.25rem 0 1rem;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 160%;
}
.btn-icon.medium .icon {
  width: 1rem;
  height: 1rem;
}
.btn-icon.btn-primary {
  background: #e50914;
  color: #fff;
}
.btn-icon.btn-primary:hover {
  background: #c40d25;
}
.btn-icon.btn-outlined {
  border: 1px solid #d2d4db;
  background: #fff;
  color: #3a383f;
}
.btn-icon.btn-outlined:hover {
  background: #f2f4f7;
}
.btn-icon i {
  color: #7b7b8a;
}

.wrap {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.header-wrap {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.main-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/*HEADER*/
.header {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: var(--scrollbar-w, 0px);
  z-index: 1002;
}
.header.is-hide-top .header-top {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  height: 0;
}
.header .header-top {
  width: 100%;
  height: 2.75rem;
  background: #201f22;
  transition: height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}
.header .header-top .header-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0.5rem 3rem 0.25rem;
}
.header .header-top .header-wrap .header-top-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-top .header-wrap .util-nav-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  line-height: 160%;
  display: flex;
  align-items: center;
  white-space: pre;
}
.header .header-top .header-wrap .util-nav-text span {
  font-weight: 700;
  background: linear-gradient(92deg, #E50914 0%, #EF32D3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header .header-top .header-wrap .header-top-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .header-top .header-wrap .header-top-nav ul li {
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-top .header-wrap .header-top-nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #b2b3bf;
}
.header .header-top .header-wrap .header-top-nav ul li a img {
  width: 7.5rem;
}
.header .header-main {
  height: 4.5rem;
  display: flex;
  align-items: center;
  position: relative;
  top: 0; /* ✅ viewport 상단 */
  z-index: 1003;
}
.header .header-main.is-scrolled {
  background: #fff;
}
.header .header-main.is-scrolled .header-wrap .header-main-inner .nav .navbar a {
  color: #3a383f;
}
.header .header-main.is-scrolled .header-wrap .header-main-inner .nav .navbar .dropdown .dropbtn {
  color: #3a383f;
}
.header .header-main.is-scrolled .header-wrap .header-main-inner .nav .navbar .dropdown .dropbtn i {
  width: 1.25rem;
  height: 1.25rem;
}
.header .header-main.is-scrolled .header-wrap .header-main-inner .header-main-btn .btn.btn-download {
  color: #3a383f;
  border: 1px solid #d2d4db;
}
.header .header-main.is-ticket {
  background: #fff;
}
.header .header-main.is-ticket .header-wrap .header-main-inner .nav .navbar a {
  color: #3a383f;
}
.header .header-main.is-ticket .header-wrap .header-main-inner .nav .navbar .dropdown .dropbtn {
  color: #3a383f;
}
.header .header-main.is-ticket .header-wrap .header-main-inner .nav .navbar .dropdown .dropbtn i {
  width: 1.25rem;
  height: 1.25rem;
}
.header .header-main.is-ticket .header-wrap .header-main-inner .header-main-btn .btn.btn-download {
  color: #3a383f;
  background: #fff;
  border: 1px solid #d2d4db;
}
.header .header-main.is-ticket .header-wrap .header-main-inner .btn-menu i {
  color: #7b7b8a;
}
.header .header-main.is-top {
  background: transparent;
}
.header .header-main .header-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 3rem;
}
.header .header-main .header-wrap .header-main-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header .header-main .header-wrap .header-main-inner .logo {
  display: flex;
  align-items: center;
  height: 2.625rem;
}
.header .header-main .header-wrap .header-main-inner .logo a {
  height: 100%;
  display: flex;
  align-items: center;
}
.header .header-main .header-wrap .header-main-inner .logo img {
  width: 8rem;
}
.header .header-main .header-wrap .header-main-inner .nav .navbar {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.header .header-main .header-wrap .header-main-inner .nav .navbar a {
  font-size: 1rem;
  color: #fff;
  height: 2.5rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.header .header-main .header-wrap .header-main-inner .nav .navbar .dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.header .header-main .header-wrap .header-main-inner .nav .navbar .dropdown .dropbtn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.header .header-main .header-wrap .header-main-inner .nav .navbar .dropdown .dropbtn i {
  transition: transform 0.2s ease;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}
.header .header-main .header-wrap .header-main-inner .nav .navbar .dropdown .dropbtn.is-active {
  background: #f2f4f7;
  border-radius: 1.25rem;
  color: #3a383f;
}
.header .header-main .header-wrap .header-main-inner .nav .navbar .dropdown .dropbtn.is-active .iconoir-nav-arrow-down {
  transform: rotate(180deg);
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background: #fff;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
  box-sizing: border-box;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content.posts-content--grid.show {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 0.75rem;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content.posts-content--player.show {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 22rem;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content.posts-content--player .player-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #3a383f;
  font-size: 1rem;
  transition: background 0.15s ease;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content.posts-content--player .player-item:hover {
  background: #f2f4f7;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content.posts-content--player .player-item__text span {
  font-size: 0.875rem;
  color: #7b7b8a;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content.posts-content--player .player-item i {
  color: #7b7b8a;
  flex-shrink: 0;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content.posts-content--player .player-desc {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e6e8ed;
  font-size: 13px;
  color: #7b7b8a;
  line-height: 160%;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content.posts-content--player .player-desc a {
  color: #e50914;
  text-decoration: underline;
  font-size: inherit;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content a {
  height: 2.5rem;
  padding: 0 1rem;
  width: 9rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #3a383f;
  text-decoration: none;
  border-radius: 1.25rem;
  transition: background 0.15s ease;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content a:hover {
  background: #f2f4f7;
}
.header .header-main .header-wrap .header-main-inner .nav .posts-content.show {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .dropdown .dropbtn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .dropdown .dropbtn i {
  transition: transform 0.2s ease;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .dropdown .dropbtn.is-active {
  border-radius: 1.25rem;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .dropdown .dropbtn.is-active .iconoir-nav-arrow-down {
  transform: rotate(180deg);
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: #fff;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
  box-sizing: border-box;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content.posts-content--player.show {
  display: flex;
  flex-direction: column;
  width: 20rem;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content.posts-content--player .player-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #3a383f;
  font-size: 1rem;
  transition: background 0.15s ease;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content.posts-content--player .player-item:hover {
  background: #f2f4f7;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content.posts-content--player .player-item__text span {
  font-size: 0.875rem;
  color: #7b7b8a;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content.posts-content--player .player-item i {
  color: #7b7b8a;
  flex-shrink: 0;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content.posts-content--player .player-desc {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e6e8ed;
  font-size: 13px;
  color: #7b7b8a;
  line-height: 160%;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content.posts-content--player .player-desc a {
  color: #06C;
  text-decoration: underline;
  font-size: inherit;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content > a {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  gaP: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #3a383f;
  text-decoration: none;
  border-radius: 1.25rem;
  transition: background 0.15s ease;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content > a .text {
  flex: 1;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content > a .text.windows {
  font-size: 1.125rem;
  font-weight: 700;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content > a i {
  font-size: 1.25rem;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content > a span {
  font-size: 0.875rem;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .posts-content.show {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .btn {
  border-radius: 1.25rem;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .btn.btn-download {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}
.header .header-main .header-wrap .header-main-inner .header-main-btn .btn.btn-start {
  background: #e50914;
  border: none;
}
.header .mobile-menu {
  display: none;
}

.pay-header .mobile-menu {
  display: none;
}

/* 기본은 햄버거 숨김 */
.btn-menu {
  display: none;
}

/*FOOTER*/
.footer {
  border-top: 1px solid #b2b3bf;
  padding: 3rem 3rem 3.5rem;
}
.footer .wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-direction: initial;
  gap: 2.5rem;
}
.footer .wrap .footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer .wrap .footer-left .footer-logo {
  width: 8rem;
}
.footer .wrap .footer-left .footer-logo img {
  width: 100%;
}
.footer .wrap .footer-left .footer-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer .wrap .footer-left .footer-menu .link {
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
  color: #3a383f;
  padding: 0.5rem 0;
}
.footer .wrap .footer-left .footer-customer {
  font-size: 1.125rem;
  color: #3a383f;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer .wrap .footer-left .footer-customer span {
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
  color: #7b7b8a;
}
.footer .wrap .footer-left .footer-copyright {
  font-size: 13px;
  line-height: 160%;
  font-weight: 500;
  color: #7b7b8a;
  letter-spacing: -0.13px;
}
.footer .wrap .footer-right {
  display: flex;
  align-items: end;
  gap: 1rem;
}
.footer .wrap .footer-right .footer-right-text {
  font-size: 13px;
  font-weight: 500;
  color: #7b7b8a;
  line-height: 160%;
}
.footer .wrap .footer-right .footer-right-img {
  display: flex;
  align-items: end;
  gap: 1.5rem;
}
.footer .wrap .footer-right .footer-right-img .footer-right-img1 {
  width: 5rem;
}
.footer .wrap .footer-right .footer-right-img .footer-right-img1 img {
  width: 100%;
}
.footer .wrap .footer-right .footer-right-img .footer-right-img2 {
  width: 4rem;
}
.footer .wrap .footer-right .footer-right-img .footer-right-img2 img {
  width: 100%;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.modal.is-open {
  display: block;
}
.modal .modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.modal .modal__dialog {
  position: relative;
  width: 100%;
  max-width: 45rem;
  max-height: calc(100vh - 96px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  outline: none;
  display: flex;
  flex-direction: column;
}
.modal .modal__dialog .modal__header {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem 0.75rem 0.5rem 0.75rem;
  gap: 1rem;
  flex: 0 0 auto;
}
.modal .modal__dialog .modal__header .modal__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 140%;
  color: #201f22;
  margin: 0;
}
.modal .modal__dialog .modal__header button {
  position: absolute;
  right: 0.75rem;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal .modal__dialog .modal__header button .icon {
  width: 1.5rem;
  height: 1.5rem;
  background: #3a383f;
}
.modal .modal__dialog .modal__body {
  flex: 1 1 auto;
  overflow-y: auto;
  line-height: 1.7;
  color: #222;
}
.modal .modal__dialog .modal__body .modal-agree {
  padding: 1.5rem 1.25rem 5rem 1.25rem;
}
.modal .modal__dialog .modal__body::-webkit-scrollbar {
  width: 1rem;
}
.modal .modal__dialog .modal__body::-webkit-scrollbar-thumb {
  height: 4rem;
  border-radius: 0.5rem;
  border: 4px solid transparent;
  background-clip: padding-box;
  background-color: #d2d4db;
}
.modal .modal__dialog .modal__body::-webkit-scrollbar-thumb:hover {
  background-color: #d2d4db;
}
.modal .modal__dialog .modal__body::-webkit-scrollbar-track {
  background-color: transparent;
}
.modal .modal__dialog--sm {
  max-width: 22.5rem;
  height: auto;
}
.modal .modal__dialog--sm .modal__header {
  padding: 2rem 0.75rem 1.5rem 1.5rem;
}
.modal .modal__small {
  position: relative;
  width: auto;
  max-width: 22rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1rem;
  outline: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 2rem 1.5rem;
}
.modal .modal__small .modal__small-text {
  font-size: 1rem;
  font-weight: 500;
  color: #3a383f;
  line-height: 160%;
  white-space: nowrap;
}
.modal .modal__small .modal__small-footer {
  display: flex;
  justify-content: flex-end;
}
.modal .modal__small .modal__small-close {
  height: 2.5rem;
  padding: 0 1.25rem;
  border: 1px solid #d2d4db;
  border-radius: 2.5rem;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #585763;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.modal .modal__small .modal__small-close:hover {
  border-color: #7b7b8a;
  color: #201f22;
}

/* INPUT */
.input-item {
  max-width: 30rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.input-item label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
  color: #3a383f;
  padding: 0 0.25rem 0.5rem;
}
.input-item .input-wrap {
  width: 100%;
  display: flex;
  align-items: center;
}
.input-item .input-wrap.row {
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.input-item .input-wrap.row .btn-verify {
  background: #3a383f;
  height: 3.5rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  line-height: 160%;
  color: #fff;
  border-radius: 0.5rem;
  white-space: nowrap;
}
.input-item .input-wrap.row .btn-verify:disabled {
  background: #e6e8ed;
  color: #b2b3bf;
  cursor: default;
}
.input-item .input-wrap .input-box {
  width: 100%;
  height: 3.5rem;
  padding: 0.25rem 0.5rem 0.25rem 1rem;
  border: 1px solid #d2d4db;
  border-radius: 0.5rem;
  box-sizing: border-box;
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.input-item .input-wrap .input-box:has(input[readonly]) {
  background-color: #f2f4f7;
}
.input-item .input-wrap .input-box:has(input[readonly]) input {
  color: #7b7b8a;
  background: #f2f4f7;
}
.input-item .input-wrap .input-box input {
  color: #201f22;
  font-weight: 500;
  flex: 1;
  border: none;
  outline: none;
  font-weight: 500;
  line-height: 160%;
  width: 100%;
  height: 100%;
}
.input-item .input-wrap .input-box .btn-wrap {
  display: flex;
  align-items: center;
}
.input-item .input-wrap .input-box .btn-wrap .btn {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.75rem;
}
.input-item .input-wrap .input-box .btn-wrap .btn i {
  font-size: 1rem;
  width: 1rem;
  height: 1rem;
  color: #7b7b8a;
}
.input-item .input-wrap .input-box .btn-wrap .btn .icon {
  width: 1rem;
  height: 1rem;
}
.input-item .desc {
  padding: 0.5rem 0.25rem;
  color: #7b7b8a;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 150%;
}

/*LOGIN*/
.login {
  width: 100%;
  height: 100vh;
  background: #f2f4f7;
}
@media screen and (max-width: 991px) {
  .login {
    background: #fff;
  }
}
.login .login-wrap {
  height: 100%;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  .login .login-wrap {
    padding: 0;
    justify-content: flex-start;
    padding-top: 2.5rem;
  }
}
.login .login-wrap h2 {
  height: 4.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .login .login-wrap h2 {
    height: 3rem;
  }
}
.login .login-wrap h2 img {
  max-width: 16.25rem;
}
@media screen and (max-width: 991px) {
  .login .login-wrap h2 img {
    max-width: 10rem;
  }
}
.login .login-wrap .login-box {
  width: 100%;
  height: auto;
  max-width: 30rem;
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 2.5rem 2.5rem;
}
@media screen and (max-width: 991px) {
  .login .login-wrap .login-box {
    padding: 2rem 1.75rem 0.75rem;
  }
}
.login .login-wrap .login-box .form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.login .login-wrap .login-box .form .login-text {
  padding: 0.5rem 0.25rem;
  color: #c40d25;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
}
.login .login-wrap .login-box .login-option {
  padding: 1rem 0;
  gap: 0.5rem;
  display: flex;
  align-items: center;
}
.login .login-wrap .login-box .login-option .check {
  padding: 0.375rem 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.login .login-wrap .login-box .login-option .check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.login .login-wrap .login-box .login-option .check input:checked + .check-box {
  background: #201f22;
  border-color: #201f22;
}
.login .login-wrap .login-box .login-option .check input:checked + .check-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 0.25rem;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.login .login-wrap .login-box .login-option .check .check-box {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}
.login .login-wrap .login-box .login-option .check .check-text {
  color: #585763;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
}
.login .login-wrap .login-box .login-option .check:hover .check-box {
  border-color: #111;
}
.login .login-wrap .login-box .login-btn-wrap {
  padding-top: 1rem;
}
.login .login-wrap .login-box .login-btn-wrap button {
  width: 100%;
}
.login .login-wrap .login-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #f2f4f7;
  width: 100%;
  align-items: center;
  padding: 1.5rem 0 5rem;
  flex: 1;
}
.login .login-wrap .login-bottom .login-link-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 1rem;
}
.login .login-wrap .login-bottom .login-link-wrap .login-link {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}
.login .login-wrap .login-bottom .login-link-wrap .balloon {
  position: relative;
  background: #201f22;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  line-height: 160%;
  animation: balloon-float 2s ease-in-out infinite;
}
.login .login-wrap .login-bottom .login-link-wrap .balloon span {
  background: linear-gradient(92deg, #E50914 0%, #EF32D3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.login .login-wrap .login-bottom .login-link-wrap .balloon .tail {
  position: absolute;
  right: 1rem;
  top: -6px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #201f22;
}
@keyframes balloon-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.login .login-wrap .login-bottom .login-inquary {
  display: flex;
  justify-content: center;
}

/*회원가입*/
.join {
  width: 100%;
  min-height: 100vh;
  background: #f2f4f7;
}
@media screen and (max-width: 991px) {
  .join {
    background: #fff;
  }
}
.join .join-wrap {
  padding: 5rem 0 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f2f4f7;
  gap: 2.5rem;
}
@media screen and (max-width: 991px) {
  .join .join-wrap {
    background: #fff;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    gap: 0;
    height: auto;
  }
}
.join .join-wrap h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
}
.join .join-wrap h2 img {
  max-width: 11.25rem;
}
@media screen and (max-width: 991px) {
  .join .join-wrap h2 img {
    max-width: 7.5rem;
  }
}
.join .join-wrap .join-box {
  width: 100%;
  height: auto;
  max-width: 30rem;
  background: #fff;
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 991px) {
  .join .join-wrap .join-box {
    padding: 0 1.25rem;
    gap: 3rem;
  }
}
.join .join-wrap .join-box .terms-card {
  padding: 0 0.5rem;
}
@media screen and (max-width: 991px) {
  .join .join-wrap .join-box .terms-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 0.5rem 0 0.5rem;
  }
  .join .join-wrap .join-box .terms-card .join-step {
    display: flex;
    justify-content: center;
  }
  .join .join-wrap .join-box .terms-card .join-step .join-step__list {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.75rem;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
  }
  .join .join-wrap .join-box .terms-card .join-step .join-step__list .item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 160%;
    height: 4rem;
  }
  .join .join-wrap .join-box .terms-card .join-step .join-step__list .item.is-done .num {
    background: #f2f4f7;
    border: none;
  }
  .join .join-wrap .join-box .terms-card .join-step .join-step__list .item.is-done .num .icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  .join .join-wrap .join-box .terms-card .join-step .join-step__list .item.is-active {
    color: #111827;
  }
  .join .join-wrap .join-box .terms-card .join-step .join-step__list .item.is-active .num {
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(92deg, #E50914 0%, #731F76 100%) border-box;
    color: #201f22;
  }
  .join .join-wrap .join-box .terms-card .join-step .join-step__list .item .num {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #9ca3af;
    font-weight: 800;
  }
  .join .join-wrap .join-box .terms-card .join-step .join-step__list .item .label {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 160%;
    display: flex;
    align-items: center;
  }
  .join .join-wrap .join-box .terms-card .join-step .join-step__list .arrow {
    color: #d1d5db;
    height: 3.875rem;
    display: flex;
    align-items: flex-end;
  }
  .join .join-wrap .join-box .terms-card .join-step .join-step__list .arrow .icon {
    background-color: #d2d4db;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.join .join-wrap .join-box .terms-card .agree-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #e6e8ed;
}
@media screen and (max-width: 991px) {
  .join .join-wrap .join-box .terms-card .agree-all {
    margin-top: 2.25rem;
    margin-bottom: 0;
  }
}
.join .join-wrap .join-box .terms-card .agree-all .txt {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  line-height: 140%;
}
.join .join-wrap .join-box .terms-card .agree-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.join .join-wrap .join-box .terms-card .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  cursor: pointer;
}
.join .join-wrap .join-box .terms-card .item .agree-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}
.join .join-wrap .join-box .terms-card .item .agree-checkbox .txt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #3a383f;
}
.join .join-wrap .join-box .terms-card .item .agree-checkbox .txt span {
  color: #7b7b8a;
  font-style: normal;
  font-weight: 800;
}
.join .join-wrap .join-box .terms-card .item .agree-checkbox .txt span.req {
  color: #e50914;
}
.join .join-wrap .join-box .terms-card .item .checkbox {
  display: inline-flex;
  align-items: center;
}
.join .join-wrap .join-box .terms-card .item .checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.join .join-wrap .join-box .terms-card .item .checkbox input:checked + .box .icon {
  background-color: #e50914;
}
.join .join-wrap .join-box .terms-card .item .checkbox input:checked + .box i {
  color: #e50914;
}
.join .join-wrap .join-box .terms-card .item .checkbox .box {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
.join .join-wrap .join-box .terms-card .item .checkbox .box i {
  font-size: 1.5rem;
  color: #d2d4db;
}
.join .join-wrap .join-box .terms-card .item .view {
  display: flex;
  align-items: center;
  margin-left: auto;
  color: #7b7b8a;
  height: 2rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.join .join-wrap .join-box .join-btn-wrap {
  padding-top: 1rem;
}
@media screen and (max-width: 991px) {
  .join .join-wrap .join-box .join-btn-wrap {
    padding-top: 0;
  }
}
.join .join-wrap .join-box .join-btn-wrap button {
  width: 100%;
}

/* 회원가입 단계 */
.join-form {
  width: 100%;
  height: auto;
  max-width: 42.5rem;
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 991px) {
  .join-form {
    max-width: 100%;
    gap: 3rem;
    padding: 3rem 1.25rem;
  }
}
.join-form .join-form-inner {
  max-width: 30rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 991px) {
  .join-form .join-form-inner {
    gap: 3rem;
  }
}
.join-form .join-form-inner .join-step {
  display: flex;
  justify-content: center;
}
.join-form .join-form-inner .join-step .join-step__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 500;
}
.join-form .join-form-inner .join-step .join-step__list .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
}
@media screen and (max-width: 991px) {
  .join-form .join-form-inner .join-step .join-step__list .item {
    height: 4rem;
    flex-direction: column;
  }
}
.join-form .join-form-inner .join-step .join-step__list .item.is-done .num {
  background: #f2f4f7;
  border: none;
}
.join-form .join-form-inner .join-step .join-step__list .item.is-done .num i {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}
.join-form .join-form-inner .join-step .join-step__list .item.is-active {
  color: #111827;
}
.join-form .join-form-inner .join-step .join-step__list .item.is-active .num {
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(92deg, #E50914 0%, #731F76 100%) border-box;
  color: #201f22;
}
.join-form .join-form-inner .join-step .join-step__list .item .num {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #9ca3af;
  font-weight: 800;
}
.join-form .join-form-inner .join-step .join-step__list .item .label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
}
.join-form .join-form-inner .join-step .join-step__list .arrow {
  color: #d1d5db;
}
@media screen and (max-width: 991px) {
  .join-form .join-form-inner .join-step .join-step__list .arrow {
    height: 3.75rem;
    align-items: flex-end;
    display: flex;
  }
}
.join-form .join-form-inner .join-step .join-step__list .arrow i {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}
.join-form .join-form-inner .join-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 0.5rem;
}
.join-form .join-form-inner .join-form-wrap h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #201f22;
  line-height: 140%;
}
@media screen and (max-width: 991px) {
  .join-form .join-form-inner .join-form-wrap h1 {
    font-size: 1.25rem;
  }
}
.join-form .join-form-inner .join-form-wrap .join-tabs {
  display: flex;
  gap: 0.75rem;
}
.join-form .join-form-inner .join-form-wrap .join-tabs .join-tab {
  flex: 1;
  height: 3.125rem;
  border-radius: 0.5rem;
  border: 1px solid #d2d4db;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  color: #201f22;
}
.join-form .join-form-inner .join-form-wrap .join-tabs .join-tab.is-active {
  border-color: #3a383f;
}
.join-form .join-form-inner .join-form-wrap .join-input-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.join-form .join-form-inner .join-form-wrap .join-input-wrap.tab-cont {
  display: none;
}
.join-form .join-form-inner .join-form-wrap .join-input-wrap.tab-cont.is-active {
  display: flex;
}
.join-form .join-form-inner .industry-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.join-form .join-form-inner .industry-wrap .industry {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.join-form .join-form-inner .industry-wrap .industry .label {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.join-form .join-form-inner .industry-wrap .industry .label span {
  color: #7b7b8a;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
}
.join-form .join-form-inner .industry-wrap .industry .industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.join-form .join-form-inner .industry-wrap .industry .industry-list .item {
  height: 3.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #d2d4db;
  background: none;
  color: #7b7b8a;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}
.join-form .join-form-inner .industry-wrap .industry .industry-list .item:active {
  transform: scale(0.98);
}
.join-form .join-form-inner .industry-wrap .industry .industry-list .item.is-active {
  border-color: #3a383f;
  color: #201f22;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.join-form .join-form-inner .industry-wrap .industry .ratio .ratio__tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.join-form .join-form-inner .industry-wrap .industry .ratio .ratio__tags .ratio__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  height: 1.875rem;
  font-weight: 500;
  font-size: 0.875rem;
}
.join-form .join-form-inner .industry-wrap .industry .ratio .ratio__tags .ratio__tag i {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
}
.join-form .join-form-inner .industry-wrap .industry .ratio .ratio__tags .ratio__tag.ratio__tag--left {
  background: #e4f6ff;
  color: #4b77b5;
  padding: 0.25rem 0.75rem 0.25rem 0.375rem;
}
.join-form .join-form-inner .industry-wrap .industry .ratio .ratio__tags .ratio__tag.ratio__tag--right {
  background: #FDEBF4;
  color: #B44E83;
  padding: 0.25rem 0.375rem 0.25rem 0.75rem;
}
.join-form .join-form-inner .industry-wrap .industry .ratio__rail {
  position: relative;
  height: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.join-form .join-form-inner .industry-wrap .industry .ratio__rail::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: #e6e8ed;
}
.join-form .join-form-inner .industry-wrap .industry .ratio__rail .dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: none;
  background: #fff;
  border: 1px solid #d2d4db;
  position: relative;
  z-index: 1;
  cursor: pointer;
  box-shadow: 0 0 0 0.5rem #fff;
}
.join-form .join-form-inner .industry-wrap .industry .ratio__rail .dot.is-active {
  border-color: #e50914;
  background: #e50914;
}
.join-form .join-form-inner .industry-wrap .industry .ratio__rail .dot.is-active::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.join-form .join-form-inner .industry-wrap .industry {
  /* 연령대 칩 */
}
.join-form .join-form-inner .industry-wrap .industry .chip-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}
.join-form .join-form-inner .industry-wrap .industry .chip-row .chip {
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 1.25rem;
  border: 1px solid #d2d4db;
  background: #fff;
  color: #7b7b8a;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.join-form .join-form-inner .industry-wrap .industry .chip-row .chip.is-active {
  border-color: #3a383f;
  color: #201f22;
}
.join-form .btn-address {
  border: none;
  background: #3a383f;
  height: 3.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
.join-form .join-btn-wrap {
  width: 100%;
}
.join-form .join-btn-wrap button {
  width: 100%;
}
.join-form.join-complete {
  max-width: 30rem;
  padding: 3rem 2rem 2.5rem;
}
.join-form.join-complete .join-form-inner {
  gap: 2.5rem;
}
.join-form.join-complete .join-form-inner .join-complete-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
  gap: 0.75rem;
}
.join-form.join-complete .join-form-inner .join-complete-wrap .join-complete-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 140%;
  color: #201f22;
}
.join-form.join-complete .join-form-inner .join-complete-wrap .join-complete-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 160%;
  color: #585763;
  text-align: center;
}
.join-form.join-complete .join-form-inner .join-complete-wrap .join-coupon {
  max-width: 20rem;
}
.join-form.join-complete .join-form-inner .join-complete-wrap .join-coupon img {
  width: 100%;
}
.join-form.join-complete .join-form-inner .join-complete-wrap .join-coupon-period {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
  color: #7b7b8a;
}

.pay-select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 101;
  overflow: hidden;
  border: 1px solid #d2d4db;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0.75rem 2.25rem rgba(58, 56, 63, 0.16);
  display: none;
}
.pay-select-dropdown .pay-select-check {
  height: 3rem;
  padding: 11px 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e8ed;
}
.pay-select-dropdown .pay-select-check .pay-select-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #3a383f;
  cursor: pointer;
}
.pay-select-dropdown .pay-select-check .pay-select-check-label .pay-select-checkbox {
  width: 16px;
  height: 16px;
}
.pay-select-dropdown .pay-select-list {
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
}
.pay-select-dropdown .pay-select-list .pay-select-option {
  width: 100%;
  padding: 11px 1rem;
  height: 3rem;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s ease;
}
.pay-select-dropdown .pay-select-list .pay-select-option:hover {
  background: #f7f8fa;
}
.pay-select-dropdown .pay-select-list .pay-select-option.is-selected {
  background: #f3f4f6;
}
.pay-select-dropdown .pay-select-list .pay-select-option .pay-select-main {
  font-size: 1rem;
  color: #3a383f;
  font-weight: 500;
  line-height: 160%;
}
.pay-select-dropdown .pay-select-list .pay-select-option .pay-select-sub {
  font-size: 0.875rem;
  color: #7b7b8a;
  font-weight: 500;
}
.pay-select-dropdown .pay-select-footer {
  padding: 0.75rem 1rem;
  background: #f2f4f7;
  color: #7b7b8a;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
}

.modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid #eee;
  flex-shrink: 0; /* 푸터도 고정 */
}

/*PAGE HERO*/
.page-hero {
  width: 100%;
  height: 32.75rem;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  padding-top: 7.25rem; /* header-top(44px) + header-main(72px) */
}
@media screen and (max-width: 991px) {
  .page-hero {
    height: 20rem;
  }
  .page-hero .text-wrap {
    top: auto;
    bottom: 2rem;
    left: 1.25rem;
    transform: initial;
    gap: 0.75rem;
  }
  .page-hero .text-wrap .channel-title span {
    padding: 0 1.25rem;
    height: 2.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
  }
  .page-hero .text-wrap .main {
    margin-top: 0.75rem;
    font-size: 1.5rem;
  }
  .page-hero .hero-scroll-wrap {
    position: absolute;
    left: 50%;
    bottom: 2.5rem;
    transform: translateX(-50%);
    z-index: 2;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .page-hero .hero-scroll-wrap.is-hide {
    opacity: 0;
    pointer-events: none;
  }
  .page-hero .hero-scroll-wrap .hero-bounce {
    animation: arrowBounce 1.4s ease-in-out infinite;
    animation-delay: 1.9s;
  }
  .page-hero .hero-scroll {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    color: #fff;
    font-size: 1rem;
    letter-spacing: -0.01em;
    background: #201f22;
    border: 1px solid #3a383f;
  }
}
.page-hero .text-wrap {
  color: #fff;
  position: absolute;
  top: 4.5rem;
  left: 3rem;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .page-hero .text-wrap {
    top: auto;
    bottom: 2rem;
    left: 1.25rem;
    transform: initial;
    gap: 0.75rem;
  }
  .page-hero .text-wrap .page-title span {
    padding: 0 1.25rem;
    height: 2.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
  }
  .page-hero .text-wrap .main {
    margin-top: 0.75rem;
    font-size: 1.5rem;
  }
}
.page-hero .text-wrap .page-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.75rem;
  border-radius: 2rem;
  height: 3.5rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 160%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}
@media screen and (max-width: 991px) {
  .page-hero .text-wrap .page-title span {
    padding: 0 1.25rem;
    height: 2.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
  }
}
.page-hero .text-wrap .main {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -2.24px;
  color: #fff;
  line-height: 140%;
}
@media screen and (max-width: 991px) {
  .page-hero .text-wrap .main {
    margin-top: 0.75rem;
    font-size: 1.5rem;
  }
}
.page-hero .hero-scroll-wrap {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.page-hero .hero-scroll-wrap.is-hide {
  opacity: 0;
  pointer-events: none;
}
.page-hero .hero-scroll-wrap .hero-bounce {
  animation: arrowBounce 1.4s ease-in-out infinite;
  animation-delay: 1.9s;
}
.page-hero .hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.01em;
  background: #201f22;
  border: 1px solid #3a383f;
}
.page-hero .hero-scroll .hero-scroll__text {
  white-space: nowrap;
}

.hero {
  width: 100%;
  height: calc(100vh - 2.75rem);
  position: relative;
  overflow: hidden;
  background: #111;
  margin-top: 2.75rem;
}
.hero:after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.5) 0%, rgba(17, 17, 17, 0.9) 10%, #111 30%, #111 70%, rgba(17, 17, 17, 0.9) 90%, rgba(17, 17, 17, 0.5) 100%);
  width: 100%;
  height: 100%;
}
.hero .hero-grid {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  pointer-events: none;
}
@media (min-width: 1921px) {
  .hero .hero-grid {
    justify-content: stretch;
  }
}
.hero .hero-col {
  width: 35rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 1921px) {
  .hero .hero-col {
    width: auto;
    flex: 1;
  }
}
.hero .hero-col__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  will-change: transform;
}
.hero .hero-col__inner img {
  width: 35rem;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}
@media (min-width: 1921px) {
  .hero .hero-col__inner img {
    width: 100%;
  }
}
.hero .hero-col.hero-col--down .hero-col__inner {
  animation: heroScrollDown 50s linear infinite;
}
.hero .hero-col.hero-col--up .hero-col__inner {
  animation: heroScrollUp 50s linear infinite;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.hero .text-wrap {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  z-index: 1;
  padding: 4.5rem 3rem 5rem 3rem;
}
.hero .text-wrap .sub {
  font-size: 2rem;
  font-weight: 700;
  line-height: 140%;
  background: linear-gradient(92deg, #E50914 0%, #EF32D3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .text-wrap .main {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 140%;
}
.hero .hero-scroll-wrap {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero .hero-scroll-wrap.is-hide {
  opacity: 0;
  pointer-events: none;
}
.hero .hero-scroll-wrap .hero-bounce {
  animation: arrowBounce 1.4s ease-in-out infinite;
  animation-delay: 1.9s;
}
.hero .hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.01em;
  background: #201f22;
  border: 1px solid #3a383f;
}
.hero .hero-scroll .hero-scroll__text {
  white-space: nowrap;
  font-weight: 500;
}
.hero .hero-scroll i {
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

@keyframes heroScrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes heroScrollUp {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-50%);
  }
}
.hero2 {
  width: 100%;
  height: 45rem;
  min-height: 35rem;
  position: relative;
  overflow: hidden;
}
.hero2 .wrap {
  margin-top: 2.75rem;
  height: calc(100% - 2.75rem);
}
.hero2 .hero2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero2 .hero2-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.hero2 .hero2-bg__img:nth-child(1):nth-last-child(2), .hero2 .hero2-bg__img:nth-child(2):nth-last-child(1) {
  animation-name: hero2Fade2;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.hero2 .hero2-bg__img:nth-child(1):nth-last-child(2) {
  animation-delay: 0s;
}
.hero2 .hero2-bg__img:nth-child(2):nth-last-child(1) {
  animation-delay: 5s;
}
.hero2 .hero2-bg__img:nth-child(1):nth-last-child(3), .hero2 .hero2-bg__img:nth-child(2):nth-last-child(2), .hero2 .hero2-bg__img:nth-child(3):nth-last-child(1) {
  animation-name: hero2Fade3;
  animation-duration: 15s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.hero2 .hero2-bg__img:nth-child(1):nth-last-child(3) {
  animation-delay: 0s;
}
.hero2 .hero2-bg__img:nth-child(2):nth-last-child(2) {
  animation-delay: 5s;
}
.hero2 .hero2-bg__img:nth-child(3):nth-last-child(1) {
  animation-delay: 10s;
}
.hero2 .text-wrap {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero2 .text-wrap .sub span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 140%;
  background: linear-gradient(92deg, #E50914 0%, #EF32D3 100%);
  background-clip: text;
  letter-spacing: -2.24px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero2 .text-wrap .main {
  margin-top: 0.75rem;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -2.24px;
  color: #fff;
  line-height: 140%;
}
.hero2 .text-wrap .btn-wrap {
  margin-top: 2.5rem;
}
.hero2 .hero-scroll-wrap {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero2 .hero-scroll-wrap.is-hide {
  opacity: 0;
  pointer-events: none;
}
.hero2 .hero-scroll-wrap .hero-bounce {
  animation: arrowBounce 1.4s ease-in-out infinite;
  animation-delay: 1.9s;
}
.hero2 .hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.01em;
  background: #201f22;
  border: 1px solid #3a383f;
}

@keyframes hero2Fade2 {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hero2Fade3 {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  97% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrowBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=common.css.map */
