@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("https://lwi.nexon.com/m_mabinogim/fonts/pretendard/Pretendard-SemiBold.woff2") format("woff2"), url("https://lwi.nexon.com/m_mabinogim/fonts/pretendard/Pretendard-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Pretendard-Regular";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("https://lwi.nexon.com/m_mabinogim/fonts/pretendard/Pretendard-Regular.woff2") format("woff2"), url("https://lwi.nexon.com/m_mabinogim/fonts/pretendard/Pretendard-Regular.woff") format("woff");
}
:root {
  --vh: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
* {
  margin: 0;
  padding: 0;
  line-height: inherit;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  box-sizing: border-box;
  word-break: break-all;
  cursor : url(https://lwi.nexon.com/m_mabinogim/teaser/cursor.png) -23 -23, auto;
}

body {
  margin:0 auto;
  min-width: 280px;
  max-width: 2560px;
  height: 100%;
  background: #000;
}

input, button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.text_blind{
  display: block;
  text-indent: 200%;
  overflow: hidden;
  white-space: nowrap;
}
ul li{
  list-style: none;
}

.gnbWrapper{min-width: 720px !important;}

.wrap{
  position: relative;
  width: 100%;
  max-width: 2560px;
  height: max(calc((var(--vh, 1vh) * 100) - 63px), 700px);
  margin:0 auto;
  overflow: hidden;
  transition: 0.3s;
}

.progress_wrap{
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress_wrap video{
  margin-top:60px;
  width: 266px;
  height: 266px;
}

.progress_wrap.start{
  animation: progressCheck 1.8s forwards;
}

@keyframes progressCheck {
  from {} to {}
}
@keyframes progress {
  from {
    top: 0;
  }
  to {
    top: -1600%;
  }
}
.intro_video_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 105px);
}
.intro_video_wrap.close{
  animation: fadeOut 0.3s forwards linear;
}
.intro_video_wrap video {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.onlyPc{
  visibility: visible;
}
.onlyMobile{
  visibility: hidden;
}
.intro_video_wrap .dimmed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.intro_video_wrap .dimmed::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: linear-gradient(180deg, rgba(1, 1, 1, 0) 89.17%, #010101 100%);
}
.intro_video_wrap button{
  position: absolute;
  right:40px;
  bottom:140px;
  width: 70px;
  height: 24px;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/577F1D48F3FD3B45.png);
  background-position: -19px -25px;
  white-space: nowrap;
  text-indent: 200%;
  overflow: hidden;
  cursor: pointer;
}
@media (hover: hover) {
  .intro_video_wrap button:hover{
    background-position: -19px -79px;
  }
}
.background_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 105px);
  pointer-events: none;
}
.background_wrap video {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.background_wrap .dimmed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.background_wrap .dimmed::after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: linear-gradient(180deg, rgba(1, 1, 1, 0) 89.17%, #010101 100%);
}

.d-day_banner_wrap{
  position: fixed;
  bottom:0px;
  right:0px;
  width: 252px;
  height: 252px;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/630E5E7EF3A5EEC7.png);
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .d-day_banner_wrap:hover{
    transition: 1s;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/630E5E7EF3A5EEC7_on.png);
  }
}
.d-day_banner_wrap .se{
  display: block;
  position: absolute;
  top:-49px;
  left:82px;
  width: 86px;
  height: 100px;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/se.png);
  opacity: 0;
  animation: upAndDown 1.5s 0.3s linear forwards;
}
.d-day_banner_wrap .se.left_and_right{
  opacity: 1;
  animation: leftAndRight 4s ease-in-out infinite;
}
@keyframes upAndDown {
  0% {
    opacity: 0;
    transform: translateY(-4%);
  }
  20% {
    opacity: 1;
    transform: translateY(2%);
  }
  40% {
    transform: translateY(-2%);
  }
  60% {
    transform: translateY(1%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes leftAndRight {
  5% {
    transform: translateX(-2%) rotate(-2deg);
  }
  10% {
    transform: translateX(0%) rotate(0);
  }
  20% {
    transform: translateX(-2%) rotate(-2deg);
  }
  25% {
    transform: translateX(0%) rotate(0);
  }
  
}
.d-day_banner_wrap .showcase{
  position: absolute;
  top: 78px;
  left: 90px;
}
.d-day_banner_wrap .d-day{
  position: absolute;
  width: 100%;
  top: 100px;
  left: 0px;
  display: flex;
  justify-content: center;
}
.d-day_banner_wrap .d-day span{
  font-size: 36px;
  color:#fff;
  white-space: nowrap;
}
.d-day_banner_wrap .detail_button,
.d-day_banner_wrap .show_button{
  display: block;
  position: absolute;
  top: 79px;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 140px;
}

.d-day_banner_wrap .detail_button a,
.d-day_banner_wrap .show_button a{
  padding-top: 70px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.d-day_banner_wrap .detail_button a picture,
.d-day_banner_wrap .show_button a picture,
.d-day_banner_wrap .detail_button a img,
.d-day_banner_wrap .show_button a img{
  cursor: pointer;
}

.d-day_banner_wrap .close_button{
  position: absolute;
  left:184px;
  top:22px;
  width: 26px;
  height: 26px;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/8CC82F2F6E85F472.png);
  white-space: nowrap;
  text-indent: 200%;
  overflow: hidden;
  cursor: pointer;
}
.d-day_banner_wrap .close_button button{
  display: block;
  white-space: nowrap;
  text-indent: 200%;
  overflow: hidden;
  cursor: pointer;
}
.util_button_wrap{
  position: absolute;
  top:20px;
  right:20px;
}
.util_button_wrap ul{
  display: flex;
}
.util_button_wrap ul li a,
.util_button_wrap ul li button{
  white-space: nowrap;
  text-indent: 200%;
  overflow: hidden;
  transition: 1s;
}
.util_button_wrap ul li.youtube a{
  display: block;
  width: 48px;
  height: 48px;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/FC86EAAD12783AC8.png);
  cursor: pointer;
}
@media (hover: hover) {
  .util_button_wrap ul li.youtube a:hover{
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/FC86EAAD12783AC8_on.png);
  }
}

.util_button_wrap ul li.share > button{
  display: block;
  width: 48px;
  height: 48px;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/FC86EAAD12783AC9.png);
  cursor: pointer;
}
@media (hover: hover) {
  .util_button_wrap ul li.share > button:hover{
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/FC86EAAD12783AC9_on.png);
  
  }
}

.util_button_wrap ul li.share .share_area{
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/3E03D4EC14C02449.png);
  width: 44px;
  height: 144px;
  display: flex;
  flex-direction: column;
  padding:26px 8px;

}

.util_button_wrap ul li.share .share_area .x_button{
  display: block;
  min-width: 28px;
  min-height: 28px;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/833714E3B78FC100.png);
}

@media (hover: hover) {
  .util_button_wrap ul li.share .share_area .x_button:hover{
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/833714E3B78FC100_on.png);
  }
}

.util_button_wrap ul li.share .share_area .facebook_button{
  display: block;
  min-width: 28px;
  min-height: 28px;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/833714E3B78FC200.png);
  cursor: pointer;
  margin-top:10px;
}

@media (hover: hover) {
  .util_button_wrap ul li.share .share_area .facebook_button:hover{
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/833714E3B78FC200_on.png);
  }
}
.util_button_wrap ul li.share .share_area .link_button{
  display: block;
  min-width: 28px;
  min-height: 28px;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/833714E3B78FC300.png);
  cursor: pointer;
  margin-top:10px;

}

@media (hover: hover) {
  .util_button_wrap ul li.share .share_area .link_button:hover{
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/833714E3B78FC300_on.png);
  }
}
.content_wrap {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.content_wrap .logo {
  position: absolute;
  width: 100%;
  top:98px;
  display: flex;
  justify-content: center;
  transition: 0.4s;
  pointer-events: none;
}
.content_wrap .slogan {
  position: absolute;
  width: 100%;
  top:345px;
  display: flex;
  justify-content: center;
  transition: 0.4s;
  pointer-events: none;

}

.content_wrap .video_play_button {
  position: absolute;
  display: block;
  width: 100%;
  display: flex;
  justify-content: center;
  top:502px;
  transition: 0.4s;
}

.content_wrap .video_play_button button{
  display: block;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/34F75D7606B6FC03.png);
  width: 190px;
  height: 190px;
  transition: 1s;
}

@media (min-width:720px) and (max-height:920px) {
  .content_wrap .logo {
    top:30px;
  }
  .content_wrap .slogan {
    top:277px;
  }
  .content_wrap .video_play_button {
    top:447px;
  }
  .intro_video_wrap,
  .background_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 62px);
  }

  .intro_video_wrap button{
    position: absolute;
    right:40px;
    bottom:100px;
    width: 70px;
    height: 24px;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/577F1D48F3FD3B45.png);
    background-position: -19px -25px;
    white-space: nowrap;
    text-indent: 200%;
    overflow: hidden;
    cursor: pointer;
  }
}
@media (hover: hover) {
  .content_wrap .video_play_button button:hover {
    transition: 1s;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/34F75D7606B6FC03_on.png);
  }
}

.footer_wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  bottom: 20px;
}
.footer_wrap .inner{
  position: relative;
}
.footer_wrap .inner .link_1{
  position: absolute;
  top:0;
  left:0;
  width: 14%;
  height: 20px;
  cursor: pointer;
}
.footer_wrap .inner .link_2{
  position: absolute;
  top:0;
  left:16%;
  width: 16%;
  height: 20px;
  cursor: pointer;
}
.modal{
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999999;
  overflow: auto;
  display: none;
}   

.modal .modal_inner{
  position: relative;
  width: 100%;
  height: 100%;
  padding:30px;
  display: flex;
  justify-content: center;
  overflow: auto;
}
.modal .modal_inner .modal_content{
  position: relative;
  margin:auto 0;
  width: 960px;
  height: 540px;
}

.modal .modal_inner .modal_content::before{
  display: block;
  content: '';
  width: 112px;
  height: 112px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='112' fill='none'%3E%3Cpath fill='%23555' fill-rule='evenodd' d='M16.052 10.004v8.59h-3.988v-2.59h-.014l.014-.008v-5.992l-.005-.15a1.997 1.997 0 0 0-1.99-1.85 1.997 1.997 0 0 0-1.993 2l.005.15.017.153c.146.96.973 1.697 1.972 1.697h.598v4h-.598L9.845 16c-3.2-.118-5.758-2.758-5.758-5.996 0-3.314 2.679-6 5.983-6l.224.004c3.2.118 5.758 2.758 5.758 5.996Zm7.977 18-.004.225c-.118 3.21-2.75 5.775-5.978 5.775L17.822 34c-3.2-.118-5.758-2.758-5.758-5.996v-2.601h3.987l.001 2.6.006.15a1.997 1.997 0 0 0 1.989 1.85 1.997 1.997 0 0 0 1.994-2v-4h-.014l.014-.007-.001-6.592h3.988l.001 10.6Zm9.971-10-.004.225c-.118 3.21-2.75 5.775-5.979 5.775h-2.593v-4h2.593l.15-.006a1.998 1.998 0 0 0 1.845-1.994l-.006-.15a1.997 1.997 0 0 0-1.989-1.85h-10.57v-4h10.57l.225.004c3.2.118 5.758 2.758 5.758 5.996Z' clip-rule='evenodd'/%3E%3Cpath fill='%23555' d='m16.051 18.595.001-8.591c0-3.238-2.558-5.878-5.758-5.996l-.224-.004c-3.304 0-5.983 2.686-5.983 6 0 3.238 2.558 5.878 5.758 5.996l.225.004h.598v-4h-.598a1.996 1.996 0 0 1-1.972-1.697l-.017-.154-.005-.15c0-1.104.892-2 1.994-2 1.051 0 1.912.817 1.989 1.852l.005.149v5.992l-.014.008h.014v2.59h3.987Z'/%3E%3Cpath fill='%23555' d='m16.051 18.595.001-8.591c0-3.238-2.558-5.878-5.758-5.996l-.224-.004c-3.304 0-5.983 2.686-5.983 6 0 3.238 2.558 5.878 5.758 5.996l.225.004h.598v-4h-.598a1.996 1.996 0 0 1-1.972-1.697l-.017-.154-.005-.15c0-1.104.892-2 1.994-2 1.051 0 1.912.817 1.989 1.852l.005.149v5.992l-.014.008h.014v2.59h3.987Z'/%3E%3Cpath stroke='%23555' d='M15.551 18.095h-2.987V9.986l-.006-.15v-.018a2.497 2.497 0 0 0-2.488-2.314 2.497 2.497 0 0 0-2.494 2.5V10.022l.005.15.001.018.002.019.017.153.001.01.002.01a2.496 2.496 0 0 0 2.466 2.122h.098v3h-.094L9.86 15.5c-2.929-.11-5.272-2.528-5.272-5.496 0-3.038 2.454-5.498 5.478-5.5l.215.004c2.93.11 5.272 2.528 5.272 5.496v8.09Zm-2.987 9.909v-2.101h2.988V28.022l.006.15v.009l.001.009a2.497 2.497 0 0 0 2.488 2.314 2.497 2.497 0 0 0 2.494-2.5v-4.5l-.001-5.6h2.988l.001 10.095-.004.216c-.11 2.94-2.52 5.287-5.474 5.289l-.215-.004c-2.929-.11-5.272-2.528-5.272-5.496Zm15.453-4.5h-2.093v-3H28.036l.149-.006h.019a2.498 2.498 0 0 0 2.308-2.494V17.986l-.006-.15v-.009l-.001-.009a2.497 2.497 0 0 0-2.488-2.314h-10.07v-3h10.066l.215.004c2.927.11 5.27 2.525 5.272 5.492l-.004.215c-.11 2.94-2.522 5.289-5.479 5.289Z'/%3E%3Cpath fill='%23555' stroke='%23555' d='M16.303 20.509h2.142V23.5H2a1.5 1.5 0 0 1 0-3h10.236l4.066.009ZM20.442 10.099V1.994a1.494 1.494 0 0 1 2.988 0V10.1h-2.988ZM48.786 15.509h-6.79a1.495 1.495 0 1 0 0 2.991H97a1.5 1.5 0 0 0 0-3H62.307l-13.521.009Z'/%3E%3Cpath stroke='%23555' stroke-linecap='round' stroke-width='4' d='m83 17 5.495-6.28a2 2 0 0 1 3.01 0L97 17'/%3E%3Cpath fill='%23555' stroke='%23555' d='M108.5 20a3 3 0 1 1 0-6 3 3 0 0 1 0 6ZM15.509 48.786v-6.79a1.495 1.495 0 1 1 2.991 0V97a1.5 1.5 0 0 1-3 0V62.307l.009-13.521Z'/%3E%3Cpath stroke='%23555' stroke-linecap='round' stroke-width='4' d='m17 83-6.28 5.495a2 2 0 0 0 0 3.01L17 97'/%3E%3Cpath fill='%23555' stroke='%23555' d='M20 108.5a3 3 0 1 0-6 0 3 3 0 0 0 6 0Z'/%3E%3C/svg%3E");
  background-size: cover;
  position: absolute;
  top:0px;
  left:-36px;
  pointer-events: none;
}
.modal .modal_inner .modal_content::after{
  display: block;
  content: '';
  width: 112px;
  height: 112px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='112' fill='none'%3E%3Cpath fill='%23555' fill-rule='evenodd' d='M95.948 101.996v-8.59h3.988v2.59h.014l-.014.008v5.992l.005.149a1.997 1.997 0 0 0 1.989 1.851 1.996 1.996 0 0 0 1.994-2l-.005-.149-.017-.154a1.997 1.997 0 0 0-1.972-1.697h-.598v-4h.598l.225.004c3.2.118 5.758 2.758 5.758 5.996 0 3.314-2.679 6-5.983 6l-.224-.004c-3.2-.118-5.758-2.758-5.758-5.996Zm-7.977-18 .004-.225c.118-3.21 2.75-5.775 5.979-5.775l.224.004c3.2.118 5.758 2.758 5.758 5.996v2.601H95.95l-.001-2.6-.006-.15a1.997 1.997 0 0 0-1.988-1.85 1.997 1.997 0 0 0-1.995 2v4h.014l-.014.007.001 6.592h-3.988l-.001-10.6Zm-9.971 10 .004-.225c.118-3.21 2.75-5.775 5.978-5.775h2.594v4h-2.593l-.15.006a1.998 1.998 0 0 0-1.845 1.994l.006.15a1.997 1.997 0 0 0 1.989 1.85h10.57v4h-10.57l-.225-.004c-3.2-.118-5.758-2.758-5.758-5.996Z' clip-rule='evenodd'/%3E%3Cpath fill='%23555' d='m95.949 93.405-.001 8.591c0 3.238 2.558 5.878 5.758 5.996l.224.004c3.304 0 5.983-2.686 5.983-6 0-3.238-2.558-5.877-5.758-5.996l-.225-.004h-.598v4h.598c.999 0 1.826.736 1.972 1.697l.017.154.005.149c0 1.105-.892 2-1.994 2a1.997 1.997 0 0 1-1.989-1.851l-.005-.149v-5.992l.014-.008h-.014v-2.59H95.95Z'/%3E%3Cpath fill='%23555' d='m95.949 93.405-.001 8.591c0 3.238 2.558 5.878 5.758 5.996l.224.004c3.304 0 5.983-2.686 5.983-6 0-3.238-2.558-5.877-5.758-5.996l-.225-.004h-.598v4h.598c.999 0 1.826.736 1.972 1.697l.017.154.005.149c0 1.105-.892 2-1.994 2a1.997 1.997 0 0 1-1.989-1.851l-.005-.149v-5.992l.014-.008h-.014v-2.59H95.95Z'/%3E%3Cpath stroke='%23555' d='M96.449 93.905h2.987V102.014l.006.15v.018a2.497 2.497 0 0 0 2.488 2.314 2.497 2.497 0 0 0 2.494-2.5v-.018l-.005-.15-.001-.018-.002-.019-.017-.153-.001-.01-.002-.01a2.497 2.497 0 0 0-2.466-2.122h-.098v-3h.094l.215.004c2.929.11 5.272 2.528 5.272 5.496 0 3.038-2.454 5.498-5.478 5.5l-.215-.004c-2.93-.111-5.272-2.528-5.272-5.496v-8.09Zm2.987-9.909v2.101h-2.988V83.978l-.006-.15v-.009l-.001-.009a2.497 2.497 0 0 0-2.487-2.314 2.497 2.497 0 0 0-2.495 2.5v4.5l.001 5.6h-2.988l-.001-10.095.004-.216c.11-2.94 2.52-5.287 5.474-5.289l.215.004c2.929.11 5.272 2.528 5.272 5.496Zm-15.454 4.5h2.094v3H83.964l-.149.006h-.019a2.498 2.498 0 0 0-2.308 2.494V94.014l.006.15v.009l.001.009a2.497 2.497 0 0 0 2.487 2.314h10.07v3H83.988l-.215-.004c-2.927-.11-5.27-2.525-5.272-5.492l.004-.215c.11-2.94 2.522-5.289 5.478-5.289Z'/%3E%3Cpath fill='%23555' stroke='%23555' d='M95.697 91.491h-2.142V88.5H110a1.5 1.5 0 0 1 0 3H99.764l-4.066-.009ZM91.558 101.901v8.105a1.494 1.494 0 0 1-2.988 0v-8.105h2.988ZM63.214 96.491h6.79a1.495 1.495 0 1 0 0-2.991H15a1.5 1.5 0 0 0 0 3h34.693l13.521-.009Z'/%3E%3Cpath stroke='%23555' stroke-linecap='round' stroke-width='4' d='m29 95-5.495 6.28c-.797.91-2.213.91-3.01 0L15 95'/%3E%3Cpath fill='%23555' stroke='%23555' d='M3.5 92a3 3 0 1 1 0 6 3 3 0 0 1 0-6ZM96.491 63.214v6.79a1.495 1.495 0 1 1-2.991 0V15a1.5 1.5 0 0 1 3 0v34.693l-.009 13.521Z'/%3E%3Cpath stroke='%23555' stroke-linecap='round' stroke-width='4' d='m95 29 6.28-5.495c.91-.797.91-2.213 0-3.01L95 15'/%3E%3Cpath fill='%23555' stroke='%23555' d='M92 3.5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z'/%3E%3C/svg%3E");
  background-size: cover;
  position: absolute;
  bottom:-74px;
  right:-34px;
  pointer-events: none;
}
.video_modal .modal_inner .modal_content .close_button{
  display: block;
  position: relative;
  width: 28px;
  height: 28px;
  margin: -16px auto 0;
  background: url(https://lwi.nexon.com/m_mabinogim/teaser/5744F8E7B5C1A723.png);
  background-position: -24px -24px;
  text-indent: 200%;
  overflow: hidden;
  white-space: nowrap;
}
.video_modal .modal_inner .modal_content .close_button:hover{
  background-position: -24px -80px;
}
.video_modal .modal_inner .modal_content .video_wrap{
  margin-top:24px;
  width: 100%;
  height: 100%;
  background: #757575;
 
}

.video_modal .modal_inner .modal_content .video_wrap::after{}
.video_modal .modal_inner .modal_content .video_wrap iframe{
  width: 100%;
  height: 100%;
  border: none;
}

.alert_modal .modal_inner{
  width: 100%;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.alert_modal .modal_inner .modal_body{
  padding: 20px;
  position: relative;
  background:rgba(0, 0, 0, 0.7);
  border-radius: 20px;
}

.alert_modal .modal_inner .modal_body .title{
  color: #626262;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.56px;
  text-align: center;
}
.alert_modal .modal_inner .modal_body .message{
  font-family: 'Pretendard-Regular', sans-serif;
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 2%;
  font-weight: 400;
}

.alert_modal .modal_inner .button_area {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.alert_modal .modal_inner .button_area button{
  
  white-space: nowrap;
  text-align: center;
  width: 132px;
  height: 40px;
  border-radius: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-right:10px;
  background: #00B670;
}

.alert_modal .modal_inner .button_area button:last-child{
  margin-right:0;
}

.alert_modal .modal_inner .button_area button:hover{
  background: #2C9B72;
}
.alert_modal .modal_inner .button_area .cancel_button{
  background: #aaa;
}

.bgm_wrap{
  position: fixed;
  left: 20px;
  bottom: 40px;
}
.bgm_wrap .sound_button {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(26, 27, 26, 0.7) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' fill='none'%3E%3Cpath fill='url(%23a)' d='M0 0h24v24H0z'/%3E%3Cdefs%3E%3Cpattern id='a' width='1' height='1' patternContentUnits='objectBoundingBox'%3E%3Cuse xlink:href='%23b' transform='scale(.02083)'/%3E%3C/pattern%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAKlJREFUaEPt1UEKwzAQBEHr/49WrskhyFAswaR9XWas7RZoXQ//1sPPf7XArw1mIANIoCuEADmeAUaIBRlAgBzPACPEggwgQI5ngBFiQQYQIMczwAixIAMIkOMZYIRYkAEEyPH/MbD33u+41lofy0/Pv6m6bWD6gKf+FjgRmp5nYJrwqT8DJ0LTczbAT+ZQwe13YOj/XNsCjBALMoAAOZ4BRogFGUCAHH8B4kuAMYz1/NwAAAAASUVORK5CYII=' id='b' width='48' height='48'/%3E%3C/defs%3E%3C/svg%3E") no-repeat;
  background-size: 24px 24px;
  background-position: center center;
  white-space: nowrap;
  text-indent: 200%;
  overflow: hidden;
}
.bgm_wrap.on .sound_button {
  background: rgba(26, 27, 26, 0.7) url("https://lwi.nexon.com/m_mabinogim/teaser/sound_motion.gif") no-repeat;
  background-size: 24px 24px;
  background-position: center center;
}

.mouse_object{
  position: absolute;
  top:0;
  left:0;
  opacity: 0;
  pointer-events: none;
  z-index: 999999991;
}

.FollowBox {
  position: absolute;
  top: 0;
  left: 0;
}

.FollowBox:nth-child(odd) {
  width: 7px;
  height: 7px;
  z-index: 4;
}

.FollowBox:nth-child(even) {
  width: 32px;
  height: 32px;
  z-index: 3;
  top: 2px;
  left: -8px;
}

@media all and (min-width:2200px) and (min-height:920px)  {
  .content_wrap .video_play_button {
    position: absolute;
    display: block;
    width: 100%;
    display: flex;
    justify-content: center;
    top:430px;
  }

  .intro_video_wrap,
  .background_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 62px);
  }

  .intro_video_wrap button{
    position: absolute;
    right:40px;
    bottom:100px;
    width: 70px;
    height: 24px;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/577F1D48F3FD3B45.png);
    background-position: -19px -25px;
    white-space: nowrap;
    text-indent: 200%;
    overflow: hidden;
    cursor: pointer;
    z-index: 4;
  }
}
#lnb{
  top:60px;
  opacity: 0;
}

#lnb .lnb-sns{
  bottom:60px;
}

.lnb-store{
  bottom:120px !important;
}
@media (max-width: 720px) {
  * {
    cursor : auto;
  }
  .gnbWrapper{
    position: absolute !important;
    top:-150px !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
    display: none !important;

  }
  .gnbWrapper .gnbBar{
    display: none !important;
  }

  .wrap{
    position: relative;
    width: 100%;
    min-width: 280px;
    max-width: 2560px;
    height: max(calc((var(--vh, 1vh) * 100) - 1px), 530px);
    margin:0 auto;
    overflow: hidden;
  }
  .progress_wrap video{
    margin:0;
  }
  .intro_video_wrap{
    top:0;
    height: calc(100%);
  }
  .intro_video_wrap video{
    width: 100%;
    height: calc(100%);
  }
  .onlyPc{
    visibility: hidden;
  }
  .onlyMobile{
    visibility: visible;
  }
  .intro_video_wrap button{
    position: absolute;
    right:20px;
    bottom:30px;
    width: 59px;
    height: 21px;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/m/577F1D48F3FD3B45.png);
    background-position: 0;
    background-size: cover;
    white-space: nowrap;
    text-indent: 200%;
    overflow: hidden;
    cursor: pointer;
  }
  .intro_video_wrap button:hover{
    background-position:0;
  }
  
  .background_wrap  {
    top:0;
    height: calc(100%);
  }
  .d-day_banner_wrap{
    position: absolute;
    top:0;
    left:0;
    bottom:inherit;
    right:0px;
    width: 100%;
    height: 40px;
    border-radius: 0;
    background: #E4612B;
    transition: 0s;
  }
  .d-day_banner_wrap:hover{
    background: #E4612B;

  }
  .d-day_banner_wrap .inner{
    position: relative;
    max-width: 720px;
    height: 100%;
    margin:0 auto;
  }
  .d-day_banner_wrap .se{
    display: none;
  }
  .d-day_banner_wrap .showcase{
    position: absolute;
    top:11px;
    left:20px;
  }
  .d-day_banner_wrap .showcase img{
    width: 58px;
  }
  .d-day_banner_wrap .d-day{
    position: absolute;
    top:6px;
    left:90px;
    width: auto;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.13);
    border-radius: 4px;
    padding:0 8px;
  }
  .d-day_banner_wrap .d-day span{
    font-size: 20px;
  }
  .d-day_banner_wrap .detail_button{
    position: absolute;
    top:6px;
    left:auto;
    right:50px;
    width: auto;
    height: auto;
  }

  .d-day_banner_wrap .show_button{
    position: absolute;
    top:6px;
    left:auto;
    right:60px;
    width: auto;
    height: auto;
  }

  .d-day_banner_wrap .detail_button a,
  .d-day_banner_wrap .show_button a{
    position: static;
    padding: 0;
  }
  .d-day_banner_wrap .detail_button img{
    width:105px;
  }
  .d-day_banner_wrap .show_button img{
    width:105px;
  }
  .d-day_banner_wrap .close_button{
    position: absolute;
    right:8px;
    left:auto;
    top:8px;
    width: 24px;
    height: 24px;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/m/8CC82F2F6E85F472.png);
    background-size: cover;
  }
 
  .d-day_banner_wrap + .util_button_wrap{
    position: absolute;
    top:56px;
    right:16px;
  }
  .util_button_wrap{
    position: absolute;
    top:16px;
    right:16px;
  }
  .util_button_wrap ul li a,
  .util_button_wrap ul li button{
    transition: 0;
  }
  .util_button_wrap ul li.youtube a{
    display: block;
    width: 24px;
    height: 24px;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/m/FC86EAAD12783AC8.png);
    background-position: 0;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-right:8px;
    transition: 0;
  }
  .util_button_wrap ul li.youtube a:hover{
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/m/FC86EAAD12783AC8.png);
    background-size: cover;
    transition: 0;
  }
  .util_button_wrap ul li.share > button{
    display: block;
    width: 24px;
    height: 24px;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/m/FC86EAAD12783AC9.png);
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0;
    cursor: pointer;
  }

  .util_button_wrap ul li.share > button:hover{
    transition: 0;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/m/FC86EAAD12783AC9.png);
    background-size: cover;
  }

  .util_button_wrap ul li.share .share_area{
    position: absolute;
    top:30px;
    right:-10px;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/3E03D4EC14C02449.png);
    width: 44px;
    height: 144px;
    display: flex;
    flex-direction: column;
    padding:26px 8px;
  }
  .content_wrap {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
  }
  .content_wrap .logo {
    position: absolute;
    display: block;
    top:inherit;
    top:92px;
    text-align: center;
  }
  .content_wrap .logo img{
    width: 218px;
    height: 137px;
  }
  .content_wrap .slogan {
    position: absolute;
    top:228px;
    display: block;
    text-align: center;
  }
  
  .content_wrap .slogan img{
    width: 218px;
    height: 97.5px;
  }
  
  .content_wrap .video_play_button {
    position: absolute;
    display: block;
    width: 100%;
    display: flex;
    justify-content: center;
    top:385px;
  }

  .content_wrap .video_play_button button{
    display: block;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/m/34F75D7606B6FC03.png);
    background-size: cover;
    width: 96px;
    height: 96px;
    transition: 0;
  }
  .content_wrap .video_play_button button:hover {
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/m/34F75D7606B6FC03.png);
    background-size: cover;
    transition: 0;
  }

  .footer_wrap {
    position: absolute;
    bottom: 20px;
    width: 100%;
  }
  .footer_wrap .inner{
    max-width: 360px;
  }
  .footer_wrap .inner .link_1{
    width: 58%;
  }
  .footer_wrap .inner .link_2{
    left:58%;
    width: 50%;

  }
  .footer_wrap .inner img{
    width: 188px;
  }
  .bgm_wrap{
    position: absolute;
    left: 20px;
    bottom: 48px;
  }
  .bgm_wrap .sound_button {
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(26, 27, 26, 0.7) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' fill='none'%3E%3Cpath fill='url(%23a)' d='M0 0h24v24H0z'/%3E%3Cdefs%3E%3Cpattern id='a' width='1' height='1' patternContentUnits='objectBoundingBox'%3E%3Cuse xlink:href='%23b' transform='scale(.02083)'/%3E%3C/pattern%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAKlJREFUaEPt1UEKwzAQBEHr/49WrskhyFAswaR9XWas7RZoXQ//1sPPf7XArw1mIANIoCuEADmeAUaIBRlAgBzPACPEggwgQI5ngBFiQQYQIMczwAixIAMIkOMZYIRYkAEEyPH/MbD33u+41lofy0/Pv6m6bWD6gKf+FjgRmp5nYJrwqT8DJ0LTczbAT+ZQwe13YOj/XNsCjBALMoAAOZ4BRogFGUCAHH8B4kuAMYz1/NwAAAAASUVORK5CYII=' id='b' width='48' height='48'/%3E%3C/defs%3E%3C/svg%3E") no-repeat;
    background-size: 24px 24px;
    background-position: center center;
    white-space: nowrap;
    text-indent: 200%;
    overflow: hidden;
  }
  .bgm_wrap.on .sound_button {
    background: rgba(26, 27, 26, 0.7) url("https://lwi.nexon.com/m_mabinogim/teaser/sound_motion.gif") no-repeat;
    background-size: 24px 24px;
    background-position: center center;
  }

  .modal .modal_inner{
    position: relative;
    width: 100%;
    height: 100%;
    padding:20px;
    display: flex;
    justify-content: center;
    overflow: auto;
  }
  .modal .modal_inner .modal_content{
    position: relative;
    margin:auto 0;
    width: 100%;
    height: auto;
    padding-bottom: 49%;
  }
  
  .modal .modal_inner .modal_content::before{
    display: none;
  }
  .modal .modal_inner .modal_content::after{
    display: none;
  }
  .video_modal .modal_inner .modal_content .close_button{
    display: block;
    position: relative;
    width: 34px;
    height: 34px;
    margin: 0 auto;
    background: url(https://lwi.nexon.com/m_mabinogim/teaser/m/5744F8E7B5C1A723.png);
    background-position: 0;
    background-size: cover;
    text-indent: 200%;
    overflow: hidden;
    white-space: nowrap;
  }
  .video_modal .modal_inner .modal_content .close_button:hover{
    background-position: 0;
  }
  .video_modal .modal_inner .modal_content .video_wrap{
    position: absolute;
    width: 100%;
    height:  100%;
    background: none;
    margin-top: 4px;
  }

  .mouse_object{
    display: none;
  }


  #lnb{
    top: 0 !important;
  }
  #lnb .lnb-sns{
    bottom:0 !important;
  }

  #lnb .lnb-store{
    bottom:50px !important;
  }
  body:has(.d-day_banner_wrap) #lnb.closed .btn-close {
    top: 50px !important;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    z-index: 2;
  }
  100% {
    opacity: 1;
    z-index: 2;
  }
}
@keyframes moveTo {
  0% {
    opacity: 0.5;
    transform: translate(22px, -22px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.fadeIn{
  opacity: 0;
}
.fadeIn.start{
  animation: fadeIn 1s linear forwards;
}
.preload{
  visibility: hidden;
}