@charset "utf-8";

/* 레이아웃 기초 설계 */
html {
  font-size: 10px;
  font-family: "pretendard";
  font-style: normal;
}

body {
  overflow-x: hidden;
  color: #d9d9d9;
  word-break: keep-all;
  background-color: #000;
}

section {
  width: 100%;
  position: relative;
}

.wrap {
  position: relative;
  width: 146.4rem;
  max-width: 100%;
  margin: 0 auto;
}

.wrap2 {
  position: relative;
  width: 178.4rem;
  max-width: 100%;
  margin: 0 auto;
}

.wrap3 {
  position: relative;
  width: 100rem;
  max-width: 100%;
  margin: 0 auto;
}

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

/* 디자인 시스템 */
:root {
  --main: #db1010e6;
  --sub: #ff0000;
}

.title {
  text-align: center;
  margin-bottom: 6rem;
}

.title .line {
  background-color: #c4c4c4;
  width: 4.8rem;
  height: 0.5px;
  margin: 2.4rem auto;
}

.title h5 {
  position: relative;
  display: inline-block;
}

.title h5::after {
  display: block;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  width: 130%;
  height: 2px;
  background-color: var(--main);
}

/* 텍스트 스타일 */

/* 타이틀 40px */
h2 {
  font-size: clamp(24px, 3vw, 4.6rem);
  font-weight: 600;
  line-height: 1.35em;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4rem;
}

/* 서브 타이틀 28px */
h3 {
  font-size: clamp(14px, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.45em;
  letter-spacing: -0.02em;
  color: #d9d9d9;
}

/* 서브 타이틀 22px */
h4 {
  font-size: clamp(17px, 2vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.4em;
}

/* 아이브로우 20px */
h5 {
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(12px, 2vw, 2.2rem);
  color: #fff;
  font-weight: 500;
  line-height: 1em;
}

/* 세부 폰트 16px  */
p {
  font-size: clamp(14px, 2vw, 1.6rem);
  font-style: 300;
  line-height: 1.5em;
  color: #d8d8d8;
  letter-spacing: -0.01em;
}

/* 세부 폰트 18px */
.p18 {
  font-size: clamp(15px, 2vw, 1.8rem);
  font-family: "Mark Pro", sans-serif;
  font-weight: 500;
  color: #fff;
  line-height: 1.45em;
}

/* 세부 폰트 14px */
.p14 {
  font-size: clamp(12px, 2vw, 1.4rem);
  font-family: "Mark Pro", sans-serif;
  font-weight: 400;
  color: #d9d9d9;
  line-height: 1.5em;
}

.pc {
  display: block;
}

.mobile {
  display: none;
}

.tablet {
  display: none;
}

/* ================================
   fullpage
================================ */
.fp-watermark {
  display: none !important;
}

.abc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.price {
  display: flex;
  justify-content: center;
  align-items: center;
}

.abc img {
  width: 100%;
  height: auto;
  max-width: 100em;
}

.price img {
  width: 100%;
  height: auto;
  max-width: 100em;
}

.section {
  will-change: transform;
}

/* ================================
   Header, aside, copyright
================================ */
header,
.copyright,
aside {
  /* aside(퀵메뉴)도 같이 숨기고 싶다면 추가하세요 */
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

.ui-hidden {
  opacity: 0;
  pointer-events: none;
}
/* ================================
   Header
================================ */
header {
  position: relative;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 999;
  background-color: transparent; /* 초기값 */
  transition: background-color 0.3s ease-in-out;
}

header.scrolled {
  background-color: #000;
}

header .wrap2 {
  width: 100%;
  padding: 0 68px;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .menu {
  display: flex;
}

header .has-sub > a,
.mobile-menu .has-sub > a {
  position: relative;
  font-family: "Mark Pro", sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.04em;
}

header .has-sub > a {
  padding: 1rem 2.2rem;
}

header .has-sub a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 6px;
}

header .sub_menu {
  position: absolute;
  top: calc(100% + 6px);
  background-color: #222;
  white-space: nowrap;
  border-radius: 1px;
  padding: 2rem 0;
  display: none;
}

header .sub_menu a {
  padding: 1rem 3rem;
  transition: ease 0.4s;
}

header .sub_menu li {
  font-size: 15px;
  color: #7d7d7d;
  font-weight: 500;
  padding: 1rem 0;
}

header .sub_menu a:hover,
header .sub_menu a.active {
  color: #fff;
}

header .logo img {
  max-width: 6.6rem;
}

header .navbox {
  display: flex;
  align-items: center;
}

header .cta {
  font-family: "Mark Pro", sans-serif;
  font-size: 1.6rem;
  line-height: 150%;
  color: #fff;
  background-color: var(--main);
  border-radius: 999px;
  padding: 0.6rem 2rem;
  font-weight: 500;
  margin-left: 1rem;
}

header .header-title {
  font-family: "Mark Pro", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
}

/* 모바일 메뉴 */
header .hamburger {
  margin-left: auto;
  display: none;
  padding: 10px 0 10px 10px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: calc(var(--vh, 1vh) * 120);
  background-color: #000;
  color: #fff;
  z-index: 999;
  transition: right 0.6s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2rem;
  height: 70px;
}

.mobile-menu .logo img {
  padding: 10px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}

.mobile-menu li {
  width: 100%;
  text-align: center;
}

.mobile-menu li.active > a {
  color: #fff;
  font-weight: 500;
}

.mobile-menu .ci img {
  max-width: 110px;
}

.mobile-menu .has-sub > a {
  font-size: 16px;
  display: block;
  font-weight: 400;
  padding: 3rem 2rem;
  color: #aeaeae;
}

.mobile-menu .sub_menu a {
  display: block;
  font-size: 14px;
  padding: 1.5rem 2rem;
  color: #7d7d7d;
  transition: ease 0.4s;
}

.mobile-menu .sub_menu a:hover,
.mobile-menu .sub_menu a.active {
  color: #fff;
}

/* Overlay for mobile menu */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998; /* below .mobile-menu (999), above header/content */
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ================================
   copyright
================================ */
.copyright {
  position: fixed;
  left: 68px;
  bottom: 30px;
  z-index: 999;
}

.copyright span {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

/* ================================
   aside
================================ */
aside {
  position: fixed;
  right: 68px;
  bottom: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

aside img {
  width: 100%;
  height: auto;
  max-width: 6rem;
}

/* ================================
   Popup
================================ */

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 1000;
}

.popup .content {
  width: 44rem;
  height: 50rem;
  border-radius: 2.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.popup .downbox {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  background-color: #fff;
  padding: 1.5rem 2.2rem;
  border-radius: 0 0 2rem 2rem;
}

.popup button {
  font-size: clamp(13px, 2vw, 1.5rem);
  color: #111;
  line-height: 1.3em;
  background: none;
  border: none;
  cursor: pointer;
}

.popup .btn-today {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #111;
  font-size: clamp(13px, 2vw, 1.5rem);
  transition: color 0.3s ease;
}

.popup .btn-today .icon-wrapper {
  position: relative;
  width: 2rem;
  height: 2rem;
}

.popup .btn-today img {
  width: 2rem;
  height: 2rem;
  transition: opacity 0.4s ease;
}

.popup .btn-today .icon-default {
  opacity: 1;
  position: absolute;
  left: 0;
}

.popup .btn-today .icon-full {
  opacity: 0;
  position: absolute;
  left: 0;
}

.popup .btn-today:hover .icon-default {
  opacity: 0;
}

.popup .btn-today:hover .icon-full {
  opacity: 1;
}

/* ================================
   Footer
================================ */
footer {
  z-index: 999;
  margin-top: 15rem;
  border-top: 0.5px solid #555;
  display: none;
}

footer .wrap2 {
  position: relative;
  width: 178.4rem;
  max-width: 100%;
  margin: 0 auto;
}

footer img {
  width: 100%;
  height: auto;
  max-width: 8.3rem;
  margin-top: 8rem;
  margin-bottom: 2rem;
}

footer .downbox {
  display: flex;
  justify-content: space-between;
}

footer .leftbox {
  margin-bottom: 12rem;
}

footer .p14 {
  margin-top: 3.4rem;
  color: #999;
}

footer .leftbox span {
  font-size: clamp(12px, 2vw, 1.4rem);
  font-family: "Mark Pro", sans-serif;
  font-weight: 500;
  color: #fff;
  line-height: 1.5em;
}

footer .rightbox {
  padding-right: 43.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

footer .rightbox span {
  font-size: clamp(12px, 2vw, 1.4rem);
  font-family: "Mark Pro", sans-serif;
  font-weight: 400;
  color: #d8d8d8;
  line-height: 1.5em;
}

footer .rightbox p {
  font-weight: 700;
  color: #fff;
  margin-top: 0.4rem;
  font-family: "Mark Pro", sans-serif;
  letter-spacing: 0.03em;
}

footer .pc {
  display: none;
}

footer .mobile {
  display: none;
  font-weight: 500;
}
