/* 초기화 */
:root {
	--transition-basic: .3s;
	--transition-custom: .4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-custom2: 1s ease-in-out;
	--transition-custom3: 1.5s ease;
  --transition-custom4: 0.8s ease-in-out;
}

*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #191919;
  font-family: 'SUIT', sans-serif;
	font-size: 62.5% !important;
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color : transparent !important;
	animation:entry .3s ease forwards;
  opacity: 0;
}

html::-webkit-scrollbar {
	display: none;
}

html {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

body {
	font-size: 1.6rem;
}

a {
	color: inherit;
	outline: none;
	text-decoration: none;
}

ol, ul {
	list-style: none;
}

b, strong {
	font-weight: 700;
}

img {
	max-width: 100%;
}

button {
	font-family: inherit;
	border: none;
	outline: none;
	cursor: pointer;
	color: inherit;
	-webkit-appearance: none;
	background: none;
}

select {
	outline: none;
	border: 1px solid transparent;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
}

input, textarea {
	font-family: inherit;
	outline: none;
	border: 1px solid transparent;
}

:focus {
	outline: none;
}

::placeholder {
	color:#A4A4A4;
}
section.bg-black{
  background-color: #111111;
}
section.bg-gray{
  background-color: #F5F5F5;
}
em, i {
	font-style: normal;
}

@-webkit-keyframes entry {
	to{opacity: 1;}
}

@keyframes entry {
	to{opacity: 1;}
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


.hidden {
	overflow: hidden;
}

/* 블라인드 */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}


/* 줄바꿈 */
@media screen and (max-width:1200px) {
	.lg {
		display: none;
	}
}
@media screen and (max-width:1024px) {
	.md {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.sm {
		display: none;
	}
}
@media screen and (max-width:576px) {
	.xs {
		display: none;
	}
}


/* 블록 */
.d-block {
	display: block;
}
.d-inline-block {
	display: inline-block;
}


.ellip {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-1 {
	white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-2 {
	-webkit-line-clamp: 2; 
}

/* Ele Position */
.ele-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-custom4), transform var(--transition-custom4);
}
.ele-blur{
  letter-spacing:0.05em;
  filter:blur(20px);
  transition:letter-spacing var(--transition-custom4), filter var(--transition-custom4);
}

.ele-delay1 {transition-delay: .1s;}
.ele-delay2 {transition-delay: .2s;}
.ele-delay3 {transition-delay: .3s;}
.ele-delay4 {transition-delay: .4s;}
.ele-delay5 {transition-delay: .5s;}
.ele-delay6 {transition-delay: .6s;}
.ele-delay7 {transition-delay: .7s;}
.ele-delay8 {transition-delay: .8s;}
.ele-delay9 {transition-delay: .9s;}
.ele-delay10 {transition-delay: 1s;}
.ele-delay11 {transition-delay: 1.1s;}
.ele-delay12 {transition-delay: 1.2s;}

.ele-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.ele-blur.in-view {
  letter-spacing: 0em;
  filter: blur(0);
}

/* 컨테이너 */
.container {
	max-width:1600px;
	width: 95%;
	margin:0 auto;
  position: relative;
}
.container.w1650 {
  max-width: 1650px;
}
.container.w1410 {
  max-width: 1410px;
}


/* 메인 */
#main {
}

/* 헤더 */
/*header*/
#header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  padding: 20px 0;
  border-bottom: 1px solid #D80C24;
  z-index: 99;
}
#header .logo{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}
#header .gnb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .gnb > ul{
  display: flex;
}
#header .gnb > ul > li > a{
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  padding: 13px 30px;
}
#header .gnb > ul > li:hover > a{
  font-weight: 700;
  color: #BE201F;
}
/*moblie*/
#header .m_btn {
  display: none;
  width: 24px;
  text-align: right;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 0;
}

#header .m_btn i {
  display: inline-block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  background: #000;
  transition: all 0.5s;
}

#header .m_btn i:nth-of-type(2) {
  width: 84%;
}

#header .m_btn.on i:nth-of-type(1) {
  margin: 11px 0 -2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

#header .m_btn.on i:nth-of-type(2) {
  width: 0;
  margin: 0;
}

#header .m_btn.on i:nth-of-type(3) {
  margin: 0 0 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.m_menu_bg {
  z-index: 101;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  cursor: pointer;
}

.m_menu {
  z-index: 102;
  position: fixed;
  right: -100%;
  top: 0;
  width: 500px;
  max-width: 80%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.5s;
  overflow-y: auto;
}

.m_menu.on {
  right: 0;
}

.m_menu .top_box {
  position: relative;
  padding: 10px;
  height: 50px;
  box-sizing: border-box;
}

.m_menu .top_box .close_btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.m_menu .top_box .close_btn i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.m_menu .top_box .close_btn i:first-of-type {
  -webkit-transform: rotate(45deg) translate(9px, 9px);
  -moz-transform: rotate(45deg) translate(9px, 9px);
  -ms-transform: rotate(45deg) translate(9px, 9px);
  -o-transform: rotate(45deg) translate(9px, 9px);
  transform: rotate(45deg) translate(9px, 9px);
}

.m_menu .top_box .close_btn i:last-of-type {
  -webkit-transform: rotate(-45deg) translate(-7px, 8px);
  -moz-transform: rotate(-45deg) translate(-7px, 8px);
  -ms-transform: rotate(-45deg) translate(-7px, 8px);
  -o-transform: rotate(-45deg) translate(-7px, 8px);
  transform: rotate(-45deg) translate(-7px, 8px);
}

.m_menu .login_box {
  padding: 20px 0;
  background-color: #292929;
  text-align: center;
}

.m_menu .login_box a {
  position: relative;
  padding: 0 30px;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.04em;
}

.m_menu .login_box a:first-of-type:before {
  content: '';
  position: absolute;
  right: -1px;
  top: calc(50% - 7px);
  width: 2px;
  height: 15px;
  background-color: #fff;
}

.m_menu .gnb_box {
  border-top: 1px solid #ddd;
}

.m_menu .gnb_box > ul > li {
  border-bottom: 1px solid #dddddd;
}

.m_menu .gnb_box > ul > li > a {
  position: relative;
  display: block;
  padding: 11px 17px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #222222;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

.m_menu .gnb_box .depth02 {
  display: none;
  padding: 10px 0;
  background-color: #000;
}

.m_menu .gnb_box .depth02 li a {
  position: relative;
  display: block;
  padding: 7px 20px;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

@media all and (max-width: 1024px) {
  #header{
    padding: 15px 0;
  }
  #header .m_btn {
    display: flex;
  }
  #header .gnb {
    display: none;
  }
  #header .logo{
    position: unset;
    transform: none;
  }
  #header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media all and (max-width:768px){
  #header{
    padding: 3px 0;
  }
  #header .logo img{
    max-height: 35px;
  }
}

#footer{
  background-color: #BE201F;
}
#footer .top-foot,
#footer .bot-foot{
  display: flex;
  justify-content: space-between;
}
#footer .top-arw{
  width: 80px;
  height: 80px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .top-arw img{
  filter: brightness(0) invert(1);
}
#footer .top-arw:hover{
  background-color: #fff;
}
#footer .top-arw:hover i{
  animation: topBtn 1s forwards;
}
#footer .top-arw:hover img{
  filter: invert(20%) sepia(99%) saturate(2328%) hue-rotate(346deg) brightness(79%) contrast(98%);
}


@keyframes topBtn {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  45% {
    transform: translateY(-45px);
    opacity: 0;
  }

  50% {
    transform: translateY(45px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#footer .info-li{
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  max-width: 980px;
  overflow: hidden;
}

#footer .info-li li{
  position: relative;

}
#footer .info-li li + li:before{
  position: absolute;
  width: 1px;
  height: 12px;
  background-color: rgba(255,255,255,.5);
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
}

@media all and (max-width:768px){
  #footer .ft-logo img{
    max-height: 38px;
  }
  #footer .top-arw{
    width: 45px;
    height: 45px;
  }
  #footer .top-arw img{
    height: 20px;
  }
  #footer .top-arw:hover i{
    animation: none;
  }

  #footer .bot-foot{
    flex-direction: column;
    gap: 20px 0;
  }
  #footer .info-li{
    gap: 5px 8px;
  }
  #footer .info-li li + li:before{
    left: -4px;
    height: 8px;
  }
  #footer .ft-btn{
    text-align: right;
  }
  
}



/* 무한 롤링 컨테이너 */
.main-banner-slide {
  width: 100%;
  overflow: hidden;
  position: relative;
  pointer-events: none;
}
.main-banner-slide.none{display: none;}

.main-banner-slide .marquee-wrapper {
  display: flex;
  white-space: nowrap;
  /* 애니메이션: 이름 시간 타이밍함수 반복 */
  animation: bannerScroll 20s linear infinite;
  width: max-content;
}

.main-banner-slide .marquee-text {
  font-size: 15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -4.5px;
  background: linear-gradient(180deg, #D80C24 -66.05%, rgba(255, 245, 246, 0.80) 71.29%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes bannerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media all and (max-width:1200px){
  .main-banner-slide .marquee-text {
    font-size: 10rem;
  }
}
@media all and (max-width:768px){
  .main-banner-slide .marquee-text {
    font-size: 8rem;
  }
}
@media all and (max-width:576px){
  .main-banner-slide .marquee-text {
    font-size: 6rem;
  }
}



.main-tit .view-more {
  display: flex;
  justify-content: center;
}

.main-tit .vm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.main-tit .view-more .vm-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #111;
  overflow: hidden;
  position: relative;
}

.main-tit .vm-btn .vm-icon i {
  transition: all 0.3s ease-in-out;
}

.main-tit .vm-btn:hover .vm-icon {
  background-color: #D80C24;
  border-color: #D80C24;
}

/* Hover 시 작동할 애니메이션 */
.main-tit .vm-btn:hover .vm-icon i {
  animation: arrowOutIn 1s forwards;
}

.main-tit .vm-btn:hover .vm-icon img {
  filter: brightness(0) invert(1);
}

@keyframes arrowOutIn {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  45% {
    transform: translate(10px, -10px);
    /* 오른쪽 위로 발사 */
    opacity: 0;
  }

  50% {
    transform: translate(-10px, 10px);
    /* 왼쪽 아래로 순간이동 (안 보임) */
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    /* 제자리로 복귀 */
    opacity: 1;
  }
}



.privacy-pop-up {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, .6);
}

.privacy-pop-up.active {
  display: block;
}

.privacy-pop-up .pop-wrap {
  width: 1200px;
  max-width: 95%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 60px;
  border-radius: 10px;
}

.privacy-pop-up .pop-closed {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url(/asset/img/common/btn_close.svg) no-repeat 50% 50%;
  cursor: pointer;
  z-index: 8040;
}

.privacy-pop-up .pop-contents {
  max-height: 65vh;
  overflow-y: auto;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar-thumb:hover {
  background: #999;
}

@media all and (max-width:1024px) {
  .privacy-pop-up .pop-closed {
    width: 70px;
    height: 70px;
  }
}

@media all and (max-width:650px) {
  .privacy-pop-up .pop-closed {
    width: 55px;
    height: 55px;
  }

  .privacy-pop-up .pop-wrap {
    padding: 40px 30px;
  }
}

@media all and (max-width:576px) {
  .privacy-pop-up .pop-wrap {
    padding: 20px 15px;
  }
}