@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, p, table, th, td, form, fieldset, legend, textarea, input, select, textarea, button, article, aside, dialog, footer, header, section, footer, nav, figure, main {
  margin: 0;
  padding: 0;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article, aside, dialog, footer, header, section, footer, nav, figure, main {
  display: block;
}

html, body {
  height: 100%;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

img, form, fieldset, li {
  border: 0;
  vertical-align: top;
}

ul, ol {
  list-style: none;
}

button {
  overflow: visible;
  cursor: pointer;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button:disabled {
  cursor: default;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input, select {
  width: 0;
  height: 0;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

address, caption, em {
  font-style: normal;
}

a, a:focus, a:active, a:hover {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  src: url(../font/Pretendard-Regular.woff) format("woff");
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 500;
  src: url(../font/Pretendard-Medium.woff) format("woff");
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 600;
  src: url(../font/Pretendard-SemiBold.woff) format("woff");
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  src: url(../font/Pretendard-Bold.woff) format("woff");
}

body,
input,
select,
textarea,
button {
  font-family: "pretendard", sans-serif;
  font-weight: 400;
  color: #fff;
}

body {
  background-color: #000;
}

.blind,
caption,
legend {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 1px;
  line-height: 100px;
  white-space: nowrap;
}

.skip {
  height: 0;
}

.skip a {
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 25px;
  text-align: center;
}

.skip a:focus,
#skip a:active {
  position: absolute;
  top: 0;
  z-index: 100;
  padding: 10px 0;
  background: #000;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

button:disabled,
input:disabled {
  pointer-events: none;
  cursor: default;
}

img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  max-width: 54.6875vw;
}

@media (min-width: 2560px) {
  .inner {
    max-width: 1400px;
  }
}

.animate {
  opacity: 0.0001;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  -webkit-transition-delay: calc(var(--i) * 0.15s);
  transition-delay: calc(var(--i) * 0.15s);
}

.animate.is_show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.animate_zoom {
  opacity: 0;
}

.animate_zoom.is_show {
  -webkit-animation: zoom-fade 0.5s calc(var(--i) * .2s) forwards cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: zoom-fade 0.5s calc(var(--i) * .2s) forwards cubic-bezier(0.22, 0.61, 0.36, 1);
}

@-webkit-keyframes zoom-fade {
  from {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoom-fade {
  from {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.riotbar-footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.riotbar-legal-links {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  background: #292929;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0.0001;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0.0001;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes bouncing {
  0% {
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(8px);
    -khtml-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
  }
}

@keyframes bouncing {
  0% {
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(8px);
    -khtml-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    transform: translateY(8px);
  }
}

@-webkit-keyframes slideLeft {
  100% {
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
}

@keyframes slideLeft {
  100% {
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
}

@-webkit-keyframes slideRight {
  100% {
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
}

@keyframes slideRight {
  100% {
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.notes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin-top: -20px;
  margin-top: -0.78125vw;
}

@media (min-width: 2560px) {
  .notes {
    margin-top: -20px;
  }
}

.notes .btn_toggle {
  width: 100%;
  background-color: #000;
  font-size: 20px;
  font-size: 0.78125vw;
  line-height: 68px;
  line-height: 2.65625vw;
  font-weight: 700;
  border-top: 1px solid #1c1c1c;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 2560px) {
  .notes .btn_toggle {
    font-size: 20px;
    line-height: 68px;
  }
}

.notes .btn_toggle span {
  display: inline-block;
  position: relative;
  padding-right: 33px;
  padding-right: 1.28906vw;
}

@media (min-width: 2560px) {
  .notes .btn_toggle span {
    padding-right: 33px;
  }
}

.notes .btn_toggle span::after {
  position: absolute;
  top: 50%;
  right: 2px;
  right: 0.07813vw;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: -891px -82px;
  background-position: -34.80469vw -3.20313vw;
  width: 18px;
  width: 0.70313vw;
  height: 12px;
  height: 0.46875vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: '';
}

@media (min-width: 2560px) {
  .notes .btn_toggle span::after {
    right: 2px;
  }
}

@media (min-width: 2560px) {
  .notes .btn_toggle span::after {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .notes .btn_toggle span::after {
    background-position: -891px -82px;
  }
}

@media (min-width: 2560px) {
  .notes .btn_toggle span::after {
    width: 18px;
    height: 12px;
  }
}

.notes .btn_toggle.is_active span::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -khtml-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.notes .btn_toggle.is_active + .precautions {
  display: block;
}

.precautions {
  display: none;
  padding: 114px 155px 120px;
  padding: 5.9375vw 8.07292vw 6.25vw;
  background-color: #242424;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  font-size: 16px;
  font-size: 0.83333vw;
  line-height: 32px;
  line-height: 1.66667vw;
  color: #9c9c9c;
  word-break: break-all;
}

@media (min-width: 2560px) {
  .precautions {
    padding: 114px 155px 120px;
  }
}

@media (min-width: 2560px) {
  .precautions {
    font-size: 16px;
    line-height: 32px;
  }
}

@media screen and (max-width: 768px) {
  .precautions {
    padding: 80px 64px 90px;
    padding: 7.8125vw 6.25vw 8.78906vw;
    font-size: 24px;
    font-size: 2.34375vw;
    line-height: 40px;
    line-height: 3.90625vw;
  }
}

@media screen and (max-width: 768px) and (min-width: 1025px) {
  .precautions {
    padding: 80px 64px 90px;
  }
}

@media screen and (max-width: 768px) and (min-width: 1025px) {
  .precautions {
    font-size: 24px;
    line-height: 40px;
  }
}

.precautions h4 {
  font-weight: 600;
  color: #d7d7e2;
  line-height: 32px;
  line-height: 1.66667vw;
}

@media (min-width: 2560px) {
  .precautions h4 {
    line-height: 32px;
  }
}

.precautions h4 ~ h4 {
  margin-top: 10px;
  margin-top: 0.52083vw;
}

@media (min-width: 2560px) {
  .precautions h4 ~ h4 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .precautions h4 {
    font-size: 26px;
    font-size: 2.53906vw;
    line-height: 52px;
    line-height: 5.07813vw;
  }
}

@media screen and (max-width: 768px) and (min-width: 1025px) {
  .precautions h4 {
    font-size: 26px;
    line-height: 52px;
  }
}

@media screen and (max-width: 768px) {
  .precautions h4 ~ h4 {
    margin-top: 20px;
    margin-top: 1.95313vw;
  }
}

@media screen and (max-width: 768px) and (min-width: 1025px) {
  .precautions h4 ~ h4 {
    margin-top: 20px;
  }
}

.precautions > ul {
  padding-left: 10px;
  padding-left: 0.52083vw;
}

@media (min-width: 2560px) {
  .precautions > ul {
    padding-left: 10px;
  }
}

.precautions > ul > li .btn_link {
  color: #9c9c9c;
  text-decoration: underline;
}

.precautions > ul > li > ul {
  padding-left: 17px;
  padding-left: 0.88542vw;
}

@media (min-width: 2560px) {
  .precautions > ul > li > ul {
    padding-left: 17px;
  }
}

.precautions .desc_item > li {
  padding-left: 17px;
  padding-left: 0.88542vw;
}

@media (min-width: 2560px) {
  .precautions .desc_item > li {
    padding-left: 17px;
  }
}

.precautions .underline {
  text-decoration: underline;
}

.layer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100vh;
  text-align: center;
}

.layer::before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  content: '';
}

.dimmed {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
}

.is_lock {
  overflow: hidden;
  position: fixed !important;
  left: 0;
  width: 100%;
  overscroll-behavior-y: none;
}

.is_lock .riotbar-header-wrapper {
  z-index: 0;
}

.pop {
  display: inline-block;
  position: relative;
  z-index: 20;
  vertical-align: middle;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pop::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 1;
  content: '';
}

.pop .scroll-wrapper {
  overflow: visible !important;
}

.pop .scroll-content::-webkit-scrollbar, .pop .scroll-content::-webkit-scrollbar-thumb {
  display: none;
}

.pop .scroll-bar {
  background: #9EB6B6 !important;
  opacity: 1 !important;
  border-radius: 0 !important;
}

.pop .scroll-element_outer {
  border-radius: 6px !important;
}

.pop .scroll-element_track {
  background-color: #2E3737 !important;
  opacity: 1 !important;
  border-radius: 0 !important;
}

.pop .scroll-element.scroll-y {
  width: 4px;
  width: 0.15625vw;
  right: -20px;
  right: -0.78125vw;
}

@media (min-width: 2560px) {
  .pop .scroll-element.scroll-y {
    width: 4px;
  }
}

@media (min-width: 2560px) {
  .pop .scroll-element.scroll-y {
    right: -20px;
  }
}

@media (max-width: 1024px) {
  .pop .scroll-element.scroll-y {
    width: 4px;
    width: 0.39063vw;
    right: -20px;
    right: -1.95313vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .scroll-element.scroll-y {
    width: 4px;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .scroll-element.scroll-y {
    right: -20px;
  }
}

@media screen and (max-width: 768px) {
  .pop .scroll-wrapper > .scroll-content {
    overflow: hidden !important;
  }
}

.pop_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
  max-height: calc(100vh - 60px);
  padding: 64px 36px 46px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pop_item::-webkit-scrollbar {
  width: 6px;
  background-color: #2E3737;
}

.pop_item::-webkit-scrollbar-thumb {
  background-color: #9EB6B6;
  border-radius: 4px;
}

.pop_item.pop_alert {
  width: 520px;
  background: url("../img/popup/bg_popup1.jpg") center/cover no-repeat;
}

.pop_item.pop_reward {
  width: 432px;
  background: url("../img/popup/bg_popup2.jpg") center/cover no-repeat;
}

@media (max-width: 1024px) {
  .pop_item {
    padding: 64px 36px 46px;
    padding: 6.25vw 3.51563vw 4.49219vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_item {
    padding: 64px 36px 46px;
  }
}

@media (max-width: 1024px) {
  .pop_item::before {
    border-width: 1px;
    border-width: 0.09766vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_item::before {
    border-width: 1px;
  }
}

@media (max-width: 1024px) {
  .pop_item.pop_alert {
    width: 520px;
    width: 50.78125vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_item.pop_alert {
    width: 520px;
  }
}

@media (max-width: 1024px) {
  .pop_item.pop_reward {
    width: 432px;
    width: 42.1875vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_item.pop_reward {
    width: 432px;
  }
}

.pop_sub_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.02em;
  color: #e2012d;
  text-align: center;
}

@media (max-width: 1024px) {
  .pop_sub_title {
    font-size: 18px;
    font-size: 1.75781vw;
    line-height: 23px;
    line-height: 2.24609vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_sub_title {
    font-size: 18px;
    line-height: 23px;
  }
}

.pop_title {
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

@media (max-width: 1024px) {
  .pop_title {
    font-size: 28px;
    font-size: 2.73438vw;
    line-height: 36px;
    line-height: 3.51563vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_title {
    font-size: 28px;
    line-height: 36px;
  }
}

.pop_sub_title + .pop_title {
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .pop_sub_title + .pop_title {
    margin-top: 16px;
    margin-top: 1.5625vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_sub_title + .pop_title {
    margin-top: 16px;
  }
}

.pop_reward_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 260px;
  height: 160px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .pop_reward_img {
    width: 260px;
    width: 25.39063vw;
    height: 160px;
    height: 15.625vw;
    margin-top: 20px;
    margin-top: 1.95313vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_reward_img {
    width: 260px;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_reward_img {
    height: 160px;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_reward_img {
    margin-top: 20px;
  }
}

.pop_reward_img + .pop_desc {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .pop_reward_img + .pop_desc {
    margin-top: 20px;
    margin-top: 1.95313vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_reward_img + .pop_desc {
    margin-top: 20px;
  }
}

.pop_content {
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .pop_content {
    margin-top: 24px;
    margin-top: 2.34375vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_content {
    margin-top: 24px;
  }
}

.pop_desc {
  margin-top: 14px;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: -0.02em;
  color: #c5c5c5;
  text-align: center;
}

@media (max-width: 1024px) {
  .pop_desc {
    margin-top: 14px;
    margin-top: 1.36719vw;
    font-size: 18px;
    font-size: 1.75781vw;
    line-height: 23px;
    line-height: 2.24609vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_desc {
    margin-top: 14px;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_desc {
    font-size: 18px;
    line-height: 23px;
  }
}

.pop_notice {
  margin-top: 8px;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #8e8e8e;
  text-align: center;
}

@media (max-width: 1024px) {
  .pop_notice {
    margin-top: 8px;
    margin-top: 0.78125vw;
    font-size: 14px;
    font-size: 1.36719vw;
    line-height: 18px;
    line-height: 1.75781vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_notice {
    margin-top: 8px;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_notice {
    font-size: 14px;
    line-height: 18px;
  }
}

.pop_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .pop_btn {
    gap: 16px;
    gap: 1.5625vw;
    margin-top: 20px;
    margin-top: 1.95313vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_btn {
    gap: 16px;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop_btn {
    margin-top: 20px;
  }
}

.pop .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pop .btn_close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
}

.pop .btn_close::before, .pop .btn_close::after {
  position: absolute;
  width: 3px;
  height: 28px;
  background-color: #8e8e8e;
  content: '';
}

.pop .btn_close::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pop .btn_close::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .pop .btn_close {
    top: 14px;
    top: 1.36719vw;
    right: 14px;
    right: 1.36719vw;
    width: 36px;
    width: 3.51563vw;
    height: 36px;
    height: 3.51563vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .btn_close {
    top: 14px;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .btn_close {
    right: 14px;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .btn_close {
    width: 36px;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .btn_close {
    height: 36px;
  }
}

@media (max-width: 1024px) {
  .pop .btn_close::before, .pop .btn_close::after {
    width: 3px;
    width: 0.29297vw;
    height: 28px;
    height: 2.73438vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .btn_close::before, .pop .btn_close::after {
    width: 3px;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .btn_close::before, .pop .btn_close::after {
    height: 28px;
  }
}

.pop .btn_confirm {
  -webkit-background-size: 505px 324px;
  background-size: 505px 324px;
  -webkit-background-size: 49.31641vw 31.64063vw;
  background-size: 49.31641vw 31.64063vw;
  background-image: url("../img/popup.png");
  background-position: 0px -246px;
  background-position: 0vw -24.02344vw;
  width: 173px;
  width: 16.89453vw;
  height: 78px;
  height: 7.61719vw;
}

@media (min-width: 1025px) {
  .pop .btn_confirm {
    -webkit-background-size: 505px 324px;
    background-size: 505px 324px;
  }
}

@media (min-width: 1025px) {
  .pop .btn_confirm {
    background-position: 0px -246px;
  }
}

@media (min-width: 1025px) {
  .pop .btn_confirm {
    width: 173px;
    height: 78px;
  }
}

.pop .btn_confirm .btn_txt {
  font-size: 20px;
  line-height: 24px;
  color: #faf2e6;
}

@media (max-width: 1024px) {
  .pop .btn_confirm .btn_txt {
    font-size: 20px;
    font-size: 1.95313vw;
    line-height: 24px;
    line-height: 2.34375vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .btn_confirm .btn_txt {
    font-size: 20px;
    line-height: 24px;
  }
}

.pop .btn_confirm_info {
  -webkit-background-size: 505px 324px;
  background-size: 505px 324px;
  -webkit-background-size: 49.31641vw 31.64063vw;
  background-size: 49.31641vw 31.64063vw;
  background-image: url("../img/popup.png");
  background-position: -332px 0px;
  background-position: -32.42188vw 0vw;
  width: 173px;
  width: 16.89453vw;
  height: 78px;
  height: 7.61719vw;
}

@media (min-width: 1025px) {
  .pop .btn_confirm_info {
    -webkit-background-size: 505px 324px;
    background-size: 505px 324px;
  }
}

@media (min-width: 1025px) {
  .pop .btn_confirm_info {
    background-position: -332px 0px;
  }
}

@media (min-width: 1025px) {
  .pop .btn_confirm_info {
    width: 173px;
    height: 78px;
  }
}

.pop .btn_confirm_info .btn_txt {
  font-size: 20px;
  line-height: 24px;
  color: #faf2e6;
}

@media (max-width: 1024px) {
  .pop .btn_confirm_info .btn_txt {
    font-size: 20px;
    font-size: 1.95313vw;
    line-height: 24px;
    line-height: 2.34375vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .btn_confirm_info .btn_txt {
    font-size: 20px;
    line-height: 24px;
  }
}

.pop .btn_apply_medium {
  -webkit-background-size: 505px 324px;
  background-size: 505px 324px;
  -webkit-background-size: 49.31641vw 31.64063vw;
  background-size: 49.31641vw 31.64063vw;
  background-image: url("../img/popup.png");
  background-position: 0px 0px;
  background-position: 0vw 0vw;
  width: 328px;
  width: 32.03125vw;
  height: 78px;
  height: 7.61719vw;
}

@media (min-width: 1025px) {
  .pop .btn_apply_medium {
    -webkit-background-size: 505px 324px;
    background-size: 505px 324px;
  }
}

@media (min-width: 1025px) {
  .pop .btn_apply_medium {
    background-position: 0px 0px;
  }
}

@media (min-width: 1025px) {
  .pop .btn_apply_medium {
    width: 328px;
    height: 78px;
  }
}

.pop .btn_apply_medium.is_disabled {
  -webkit-background-size: 505px 324px;
  background-size: 505px 324px;
  -webkit-background-size: 49.31641vw 31.64063vw;
  background-size: 49.31641vw 31.64063vw;
  background-image: url("../img/popup.png");
  background-position: 0px -82px;
  background-position: 0vw -8.00781vw;
  width: 328px;
  width: 32.03125vw;
  height: 78px;
  height: 7.61719vw;
  pointer-events: none;
}

@media (min-width: 1025px) {
  .pop .btn_apply_medium.is_disabled {
    -webkit-background-size: 505px 324px;
    background-size: 505px 324px;
  }
}

@media (min-width: 1025px) {
  .pop .btn_apply_medium.is_disabled {
    background-position: 0px -82px;
  }
}

@media (min-width: 1025px) {
  .pop .btn_apply_medium.is_disabled {
    width: 328px;
    height: 78px;
  }
}

.pop .btn_apply_medium.is_disabled .btn_txt {
  color: #878787;
}

.pop .btn_apply_medium .btn_txt {
  font-size: 26px;
  line-height: 32px;
  color: #faf2e6;
}

@media (max-width: 1024px) {
  .pop .btn_apply_medium .btn_txt {
    font-size: 26px;
    font-size: 2.53906vw;
    line-height: 32px;
    line-height: 3.125vw;
  }
}

@media (max-width: 1024px) and (min-width: 1025px) {
  .pop .btn_apply_medium .btn_txt {
    font-size: 26px;
    line-height: 32px;
  }
}

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

.section_label {
  width: 313px;
  width: 12.22656vw;
  height: 68px;
  height: 2.65625vw;
}

@media (min-width: 2560px) {
  .section_label {
    width: 313px;
  }
}

@media (min-width: 2560px) {
  .section_label {
    height: 68px;
  }
}

.section_title {
  height: 68px;
  height: 2.65625vw;
}

@media (min-width: 2560px) {
  .section_title {
    height: 68px;
  }
}

.section_desc {
  font-size: 24px;
  font-size: 0.9375vw;
  line-height: 32px;
  line-height: 1.25vw;
  margin-top: 32px;
  margin-top: 1.25vw;
}

@media (min-width: 2560px) {
  .section_desc {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 2560px) {
  .section_desc {
    margin-top: 32px;
  }
}

.section_duration {
  font-size: 24px;
  font-size: 0.9375vw;
  line-height: 30px;
  line-height: 1.17188vw;
  font-weight: 500;
  margin-top: 24px;
  margin-top: 0.9375vw;
}

@media (min-width: 2560px) {
  .section_duration {
    font-size: 24px;
    line-height: 30px;
  }
}

@media (min-width: 2560px) {
  .section_duration {
    margin-top: 24px;
  }
}

.section_content {
  font-size: 0;
}

.section .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section .btn_toggle {
  position: relative;
  width: 48px;
  width: 1.875vw;
  height: 48px;
  height: 1.875vw;
}

@media (min-width: 2560px) {
  .section .btn_toggle {
    width: 48px;
  }
}

@media (min-width: 2560px) {
  .section .btn_toggle {
    height: 48px;
  }
}

.section .btn_toggle::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  width: 1.875vw;
  height: 48px;
  height: 1.875vw;
  background: url(../img/img_icon_up.png) center/cover no-repeat;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  content: '';
}

@media (min-width: 2560px) {
  .section .btn_toggle::after {
    width: 48px;
  }
}

@media (min-width: 2560px) {
  .section .btn_toggle::after {
    height: 48px;
  }
}

.section .btn_toggle.is_active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.section .btn_link {
  position: relative;
  display: inline-block;
  margin-top: 32px;
  margin-top: 1.25vw;
  padding: 18px 32px;
  padding: 0.70313vw 1.25vw;
  border-radius: 60px;
  border-radius: 2.34375vw;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

@media (min-width: 2560px) {
  .section .btn_link {
    margin-top: 32px;
  }
}

@media (min-width: 2560px) {
  .section .btn_link {
    padding: 18px 32px;
  }
}

@media (min-width: 2560px) {
  .section .btn_link {
    border-radius: 60px;
  }
}

.section .btn_link::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(171.67%, #666));
  background: linear-gradient(180deg, #000 0%, #666 171.67%);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  opacity: 0;
  content: '';
}

.section .btn_link::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-width: 1px;
  border-width: 0.03906vw;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  border-radius: 60px;
  border-radius: 2.34375vw;
  content: '';
}

@media (min-width: 2560px) {
  .section .btn_link::before {
    border-width: 1px;
  }
}

@media (min-width: 2560px) {
  .section .btn_link::before {
    border-radius: 60px;
  }
}

.section .btn_link:hover::after {
  opacity: 1;
}

.section .btn_link_txt {
  width: 410px;
  width: 16.01563vw;
  height: 24px;
  height: 0.9375vw;
}

@media (min-width: 2560px) {
  .section .btn_link_txt {
    width: 410px;
  }
}

@media (min-width: 2560px) {
  .section .btn_link_txt {
    height: 24px;
  }
}

.section .btn_apply_medium {
  margin-top: 43px;
  margin-top: 1.67969vw;
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: -204px -480px;
  background-position: -7.96875vw -18.75vw;
  width: 328px;
  width: 12.8125vw;
  height: 78px;
  height: 3.04688vw;
}

@media (min-width: 2560px) {
  .section .btn_apply_medium {
    margin-top: 43px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_medium {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_medium {
    background-position: -204px -480px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_medium {
    width: 328px;
    height: 78px;
  }
}

.section .btn_apply_medium:hover {
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: -694px 0px;
  background-position: -27.10938vw 0vw;
  width: 328px;
  width: 12.8125vw;
  height: 78px;
  height: 3.04688vw;
}

@media (min-width: 2560px) {
  .section .btn_apply_medium:hover {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_medium:hover {
    background-position: -694px 0px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_medium:hover {
    width: 328px;
    height: 78px;
  }
}

.section .btn_apply_medium.is_disabled {
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: -204px -562px;
  background-position: -7.96875vw -21.95313vw;
  width: 328px;
  width: 12.8125vw;
  height: 78px;
  height: 3.04688vw;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 2560px) {
  .section .btn_apply_medium.is_disabled {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_medium.is_disabled {
    background-position: -204px -562px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_medium.is_disabled {
    width: 328px;
    height: 78px;
  }
}

.section .btn_apply_medium.is_disabled .btn_txt {
  color: #878787;
}

.section .btn_apply_medium .btn_txt {
  font-size: 26px;
  font-size: 1.01563vw;
  line-height: 32px;
  line-height: 1.25vw;
  color: #faf2e6;
}

@media (min-width: 2560px) {
  .section .btn_apply_medium .btn_txt {
    font-size: 26px;
    line-height: 32px;
  }
}

.section .btn_apply_large {
  position: relative;
  margin: 40px auto 0px;
  margin: 1.5625vw auto 0vw;
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: 0px 0px;
  background-position: 0vw 0vw;
  width: 690px;
  width: 26.95313vw;
  height: 156px;
  height: 6.09375vw;
}

@media (min-width: 2560px) {
  .section .btn_apply_large {
    margin: 40px auto 0px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_large {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_large {
    background-position: 0px 0px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_large {
    width: 690px;
    height: 156px;
  }
}

.section .btn_apply_large:hover {
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: 0px -320px;
  background-position: 0vw -12.5vw;
  width: 690px;
  width: 26.95313vw;
  height: 156px;
  height: 6.09375vw;
}

@media (min-width: 2560px) {
  .section .btn_apply_large:hover {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_large:hover {
    background-position: 0px -320px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_large:hover {
    width: 690px;
    height: 156px;
  }
}

.section .btn_apply_large.is_disabled {
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: 0px -160px;
  background-position: 0vw -6.25vw;
  width: 690px;
  width: 26.95313vw;
  height: 156px;
  height: 6.09375vw;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 2560px) {
  .section .btn_apply_large.is_disabled {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_large.is_disabled {
    background-position: 0px -160px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_large.is_disabled {
    width: 690px;
    height: 156px;
  }
}

.section .btn_apply_large.is_disabled .btn_txt {
  color: #878787;
}

.section .btn_apply_large .btn_txt {
  position: absolute;
  top: 44px;
  top: 1.71875vw;
  left: 50%;
  font-size: 32px;
  font-size: 1.25vw;
  line-height: 32px;
  line-height: 1.25vw;
  color: #f5edd4;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 2560px) {
  .section .btn_apply_large .btn_txt {
    top: 44px;
  }
}

@media (min-width: 2560px) {
  .section .btn_apply_large .btn_txt {
    font-size: 32px;
    line-height: 32px;
  }
}

.section .notice_list {
  margin-top: 24px;
  margin-top: 0.9375vw;
}

@media (min-width: 2560px) {
  .section .notice_list {
    margin-top: 24px;
  }
}

.section .notice_item {
  position: relative;
  padding-left: 14px;
  padding-left: 0.54688vw;
  font-size: 16px;
  font-size: 0.625vw;
  line-height: 22px;
  line-height: 0.85938vw;
}

@media (min-width: 2560px) {
  .section .notice_item {
    padding-left: 14px;
  }
}

@media (min-width: 2560px) {
  .section .notice_item {
    font-size: 16px;
    line-height: 22px;
  }
}

.section .notice_item::before {
  position: absolute;
  left: 0;
  top: 5px;
  top: 0.19531vw;
  width: 6px;
  width: 0.23438vw;
  height: 6px;
  height: 0.23438vw;
  background-color: #fff;
  border-radius: 50%;
  content: '';
}

@media (min-width: 2560px) {
  .section .notice_item::before {
    top: 5px;
  }
}

@media (min-width: 2560px) {
  .section .notice_item::before {
    width: 6px;
  }
}

@media (min-width: 2560px) {
  .section .notice_item::before {
    height: 6px;
  }
}

.section .notice_item + .notice_item {
  margin-top: 3px;
  margin-top: 0.11719vw;
}

@media (min-width: 2560px) {
  .section .notice_item + .notice_item {
    margin-top: 3px;
  }
}

.section_kv {
  position: relative;
  height: 1100px;
  height: 42.96875vw;
  background: url("../img/img_keyvisual.jpg") top no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 2560px) {
  .section_kv {
    height: 1100px;
  }
}

.section_kv .inner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 80px;
  bottom: 3.125vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 2560px) {
  .section_kv .inner {
    bottom: 80px;
  }
}

.section_kv .section_title {
  width: 1510px;
  width: 58.98438vw;
  height: 260px;
  height: 10.15625vw;
  margin-top: 0;
}

@media (min-width: 2560px) {
  .section_kv .section_title {
    width: 1510px;
  }
}

@media (min-width: 2560px) {
  .section_kv .section_title {
    height: 260px;
  }
}

.section_kv .section_duration {
  position: relative;
  width: 1494px;
  width: 58.35938vw;
  height: 105px;
  height: 4.10156vw;
  margin-top: 36px;
  margin-top: 1.40625vw;
  padding-top: 26px;
  padding-top: 1.01563vw;
  padding-bottom: 45px;
  padding-bottom: 1.75781vw;
  font-size: 28px;
  font-size: 1.09375vw;
  line-height: 36px;
  line-height: 1.40625vw;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-127.78%, #FFF), color-stop(109.72%, #999));
  background: linear-gradient(180deg, #FFF -127.78%, #999 109.72%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 2560px) {
  .section_kv .section_duration {
    width: 1494px;
  }
}

@media (min-width: 2560px) {
  .section_kv .section_duration {
    height: 105px;
  }
}

@media (min-width: 2560px) {
  .section_kv .section_duration {
    margin-top: 36px;
  }
}

@media (min-width: 2560px) {
  .section_kv .section_duration {
    padding-top: 26px;
  }
}

@media (min-width: 2560px) {
  .section_kv .section_duration {
    padding-bottom: 45px;
  }
}

@media (min-width: 2560px) {
  .section_kv .section_duration {
    font-size: 28px;
    line-height: 36px;
  }
}

.section_kv .section_duration::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url("../img/bg_kv_duration.png");
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
  content: '';
}

.section_fansign_event {
  position: relative;
  background: url("../img/bg_event1.png") top no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section_fansign_event .inner {
  max-width: 1640px;
  max-width: 64.0625vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .inner {
    max-width: 1640px;
  }
}

.section_fansign_event .section_label_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 80px 120px 190px;
  padding: 3.125vw 4.6875vw 7.42188vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 2560px) {
  .section_fansign_event .section_label_box {
    padding: 80px 120px 190px;
  }
}

.section_fansign_event .section_content {
  height: 1714px;
  height: 66.95313vw;
  margin-top: -80px;
  margin-top: -3.125vw;
  padding: 0px 120px;
  padding: 0vw 4.6875vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .section_content {
    height: 1714px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .section_content {
    margin-top: -80px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .section_content {
    padding: 0px 120px;
  }
}

.section_fansign_event .section_badge {
  position: relative;
  display: inline-block;
  padding: 8px 24px;
  padding: 0.3125vw 0.9375vw;
  border-radius: 50px;
  border-radius: 1.95313vw;
  font-size: 24px;
  font-size: 0.9375vw;
  line-height: 31px;
  line-height: 1.21094vw;
  color: #4A2C07;
  background: -webkit-gradient(linear, left top, right top, from(#DDD1A8), color-stop(50%, #D0B386), to(#BB9463));
  background: linear-gradient(90deg, #DDD1A8 0%, #D0B386 50%, #BB9463 100%);
}

@media (min-width: 2560px) {
  .section_fansign_event .section_badge {
    padding: 8px 24px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .section_badge {
    border-radius: 50px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .section_badge {
    font-size: 24px;
    line-height: 31px;
  }
}

.section_fansign_event .section_badge::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-width: 1px;
  border-width: 0.03906vw;
  border-style: solid;
  border-color: #947953;
  pointer-events: none;
  border-radius: 50px;
  border-radius: 1.95313vw;
  content: '';
}

@media (min-width: 2560px) {
  .section_fansign_event .section_badge::before {
    border-width: 1px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .section_badge::before {
    border-radius: 50px;
  }
}

.section_fansign_event .section_title {
  width: 942px;
  width: 36.79688vw;
  margin-top: 20px;
  margin-top: 0.78125vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .section_title {
    width: 942px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .section_title {
    margin-top: 20px;
  }
}

.section_fansign_event .section_desc {
  color: #ffdae1;
}

.section_fansign_event .section_duration {
  margin-top: 31px;
  margin-top: 1.21094vw;
  color: #FFDFB5;
}

@media (min-width: 2560px) {
  .section_fansign_event .section_duration {
    margin-top: 31px;
  }
}

.section_fansign_event .section_product {
  position: relative;
  margin-top: 370px;
  margin-top: 14.45313vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .section_product {
    margin-top: 370px;
  }
}

.section_fansign_event .section_product::after {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -62px;
  bottom: -2.42188vw;
  width: 1641px;
  width: 64.10156vw;
  height: 1118px;
  height: 43.67188vw;
  margin-left: -10px;
  margin-left: -0.39063vw;
  background: url("../img/bg_main_product.png") center no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
  content: '';
}

@media (min-width: 2560px) {
  .section_fansign_event .section_product::after {
    bottom: -62px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .section_product::after {
    width: 1641px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .section_product::after {
    height: 1118px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .section_product::after {
    margin-left: -10px;
  }
}

.section_fansign_event .section_product_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 586px;
  height: 22.89063vw;
  padding: 23px 0px;
  padding: 0.89844vw 0vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 2560px) {
  .section_fansign_event .section_product_inner {
    height: 586px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .section_product_inner {
    padding: 23px 0px;
  }
}

.section_fansign_event .main_product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 640px;
  width: 25vw;
  margin: 50px 102px;
  margin: 1.95313vw 3.98438vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .main_product {
    width: 640px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .main_product {
    margin: 50px 102px;
  }
}

.section_fansign_event .main_product_name {
  height: 30px;
  height: 1.17188vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .main_product_name {
    height: 30px;
  }
}

.section_fansign_event .main_product_image {
  width: 100%;
  height: 288px;
  height: 11.25vw;
  margin-top: 22px;
  margin-top: 0.85938vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .main_product_image {
    height: 288px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .main_product_image {
    margin-top: 22px;
  }
}

.section_fansign_event .main_product_desc {
  margin-top: 19px;
  margin-top: 0.74219vw;
  font-size: 28px;
  font-size: 1.09375vw;
  line-height: 36px;
  line-height: 1.40625vw;
  color: #faf2e6;
}

@media (min-width: 2560px) {
  .section_fansign_event .main_product_desc {
    margin-top: 19px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .main_product_desc {
    font-size: 28px;
    line-height: 36px;
  }
}

.section_fansign_event .main_product .notice_item {
  color: #de6379;
}

.section_fansign_event .bonus_product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 471px;
  width: 18.39844vw;
  margin: 50px 40px;
  margin: 1.95313vw 1.5625vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .bonus_product {
    width: 471px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .bonus_product {
    margin: 50px 40px;
  }
}

.section_fansign_event .bonus_product_name {
  height: 84px;
  height: 3.28125vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .bonus_product_name {
    height: 84px;
  }
}

.section_fansign_event .bonus_product_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 433px;
  width: 16.91406vw;
  height: 207px;
  height: 8.08594vw;
  margin-top: 20px;
  margin-top: 0.78125vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .bonus_product_image {
    width: 433px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .bonus_product_image {
    height: 207px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .bonus_product_image {
    margin-top: 20px;
  }
}

.section_fansign_event .bonus_product_image img {
  -webkit-filter: saturate(1);
  filter: saturate(1);
}

.section_fansign_event .bonus_product.is_ended .bonus_product_image {
  position: relative;
}

.section_fansign_event .bonus_product.is_ended .bonus_product_image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: 0px -480px;
  background-position: 0vw -18.75vw;
  width: 200px;
  width: 7.8125vw;
  height: 200px;
  height: 7.8125vw;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: '';
}

@media (min-width: 2560px) {
  .section_fansign_event .bonus_product.is_ended .bonus_product_image::after {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .bonus_product.is_ended .bonus_product_image::after {
    background-position: 0px -480px;
  }
}

@media (min-width: 2560px) {
  .section_fansign_event .bonus_product.is_ended .bonus_product_image::after {
    width: 200px;
    height: 200px;
  }
}

.section_fansign_event .bonus_product.is_ended .bonus_product_image img {
  -webkit-filter: saturate(0.1);
  filter: saturate(0.1);
}

.section_fansign_event .notice_list {
  margin-top: 24px;
  margin-top: 0.9375vw;
}

@media (min-width: 2560px) {
  .section_fansign_event .notice_list {
    margin-top: 24px;
  }
}

.section_fansign_event .notice_item {
  color: #de6379;
}

.section_fansign_event .notice_item::before {
  background-color: #de6379;
}

.section_worlds_event {
  margin-top: -110px;
  margin-top: -4.29688vw;
  height: 1398px;
  height: 54.60938vw;
  padding-top: 80px;
  padding-top: 3.125vw;
  background: url("../img/bg_event2.png") top no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 2560px) {
  .section_worlds_event {
    margin-top: -110px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event {
    height: 1398px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event {
    padding-top: 80px;
  }
}

.section_worlds_event .section_content {
  margin-top: 110px;
  margin-top: 4.29688vw;
}

@media (min-width: 2560px) {
  .section_worlds_event .section_content {
    margin-top: 110px;
  }
}

.section_worlds_event .section_title {
  width: 360px;
  width: 14.0625vw;
}

@media (min-width: 2560px) {
  .section_worlds_event .section_title {
    width: 360px;
  }
}

.section_worlds_event .section_desc {
  margin-top: 32px;
  margin-top: 1.25vw;
  color: #e0e0e0;
}

@media (min-width: 2560px) {
  .section_worlds_event .section_desc {
    margin-top: 32px;
  }
}

.section_worlds_event .section_duration {
  line-height: 24px;
  line-height: 0.9375vw;
  color: #999;
}

@media (min-width: 2560px) {
  .section_worlds_event .section_duration {
    line-height: 24px;
  }
}

.section_worlds_event .section_product {
  position: relative;
  margin-top: 110px;
  margin-top: 4.29688vw;
}

@media (min-width: 2560px) {
  .section_worlds_event .section_product {
    margin-top: 110px;
  }
}

.section_worlds_event .section_product::before {
  position: absolute;
  opacity: 0.8;
  right: -244px;
  right: -9.53125vw;
  bottom: -30px;
  bottom: -1.17188vw;
  width: 1258px;
  width: 49.14063vw;
  height: 1038px;
  height: 40.54688vw;
  background: url("../img/bg_event2_cup.png") center no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  pointer-events: none;
  mix-blend-mode: luminosity;
  content: '';
}

@media (min-width: 2560px) {
  .section_worlds_event .section_product::before {
    right: -244px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .section_product::before {
    bottom: -30px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .section_product::before {
    width: 1258px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .section_product::before {
    height: 1038px;
  }
}

.section_worlds_event .section_product::after {
  position: absolute;
  right: -244px;
  right: -9.53125vw;
  bottom: -30px;
  bottom: -1.17188vw;
  width: 1258px;
  width: 49.14063vw;
  height: 1038px;
  height: 40.54688vw;
  background: url("../img/bg_event2_faker.png") center no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  pointer-events: none;
  content: '';
}

@media (min-width: 2560px) {
  .section_worlds_event .section_product::after {
    right: -244px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .section_product::after {
    bottom: -30px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .section_product::after {
    width: 1258px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .section_product::after {
    height: 1038px;
  }
}

.section_worlds_event .product_title {
  width: 303px;
  width: 11.83594vw;
  height: 40px;
  height: 1.5625vw;
}

@media (min-width: 2560px) {
  .section_worlds_event .product_title {
    width: 303px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_title {
    height: 40px;
  }
}

.section_worlds_event .product_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  gap: 12px;
  gap: 0.46875vw;
  width: 1400px;
  width: 54.6875vw;
  margin-top: 32px;
  margin-top: 1.25vw;
  overflow: hidden;
}

@media (min-width: 2560px) {
  .section_worlds_event .product_list {
    gap: 12px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_list {
    width: 1400px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_list {
    margin-top: 32px;
  }
}

.section_worlds_event .product_list.is_ended {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.section_worlds_event .product_list.is_ended::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.6;
  pointer-events: none;
  content: '';
}

.section_worlds_event .product_list.is_ended::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 32px;
  font-size: 1.25vw;
  line-height: 40px;
  line-height: 1.5625vw;
  font-weight: 700;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  content: '이벤트 종료';
}

@media (min-width: 2560px) {
  .section_worlds_event .product_list.is_ended::after {
    font-size: 32px;
    line-height: 40px;
  }
}

.section_worlds_event .product_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 223px;
  width: 8.71094vw;
  height: 317px;
  height: 12.38281vw;
  padding: 20px;
  padding: 0.78125vw;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-7.02%, rgba(28, 28, 28, 0.9)), color-stop(72.48%, rgba(50, 50, 50, 0.9)));
  background: linear-gradient(360deg, rgba(28, 28, 28, 0.9) -7.02%, rgba(50, 50, 50, 0.9) 72.48%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 2560px) {
  .section_worlds_event .product_item {
    width: 223px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_item {
    height: 317px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_item {
    padding: 20px;
  }
}

.section_worlds_event .product_item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-width: 1px;
  border-width: 0.03906vw;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  content: '';
}

@media (min-width: 2560px) {
  .section_worlds_event .product_item::before {
    border-width: 1px;
  }
}

.section_worlds_event .product_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section_worlds_event .product_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 183px;
  width: 7.14844vw;
  height: 160px;
  height: 6.25vw;
  margin-top: 8px;
  margin-top: 0.3125vw;
}

@media (min-width: 2560px) {
  .section_worlds_event .product_image {
    width: 183px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_image {
    height: 160px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_image {
    margin-top: 8px;
  }
}

.section_worlds_event .product_name {
  margin-top: 6px;
  margin-top: 0.23438vw;
  min-height: 75px;
  min-height: 2.92969vw;
  font-size: 18px;
  font-size: 0.70313vw;
  line-height: 25px;
  line-height: 0.97656vw;
  letter-spacing: -0.035em;
  color: #fff;
  text-align: center;
}

@media (min-width: 2560px) {
  .section_worlds_event .product_name {
    margin-top: 6px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_name {
    min-height: 75px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_name {
    font-size: 18px;
    line-height: 25px;
  }
}

.section_worlds_event .product_badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 28px;
  height: 1.09375vw;
  padding: 5px 12px 4px;
  padding: 0.19531vw 0.46875vw 0.15625vw;
  border-radius: 40px;
  border-radius: 1.5625vw;
  font-size: 16px;
  font-size: 0.625vw;
  line-height: 1;
  color: #e0e0e0;
  background-color: #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 2560px) {
  .section_worlds_event .product_badge {
    height: 28px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_badge {
    padding: 5px 12px 4px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_badge {
    border-radius: 40px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_badge {
    font-size: 16px;
  }
}

.section_worlds_event .product_more_btn {
  position: relative;
  display: inline-block;
  margin-right: -14px;
  margin-right: -0.54688vw;
  padding: 4px 34px 4px 14px;
  padding: 0.15625vw 1.32813vw 0.15625vw 0.54688vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 2560px) {
  .section_worlds_event .product_more_btn {
    margin-right: -14px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_more_btn {
    padding: 4px 34px 4px 14px;
  }
}

.section_worlds_event .product_more_btn::before {
  position: absolute;
  top: 50%;
  right: 14px;
  right: 0.54688vw;
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: -871px -82px;
  background-position: -34.02344vw -3.20313vw;
  width: 16px;
  width: 0.625vw;
  height: 16px;
  height: 0.625vw;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '';
}

@media (min-width: 2560px) {
  .section_worlds_event .product_more_btn::before {
    right: 14px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_more_btn::before {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_more_btn::before {
    background-position: -871px -82px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_more_btn::before {
    width: 16px;
    height: 16px;
  }
}

.section_worlds_event .product_more_btn::after {
  position: absolute;
  bottom: 4px;
  bottom: 0.15625vw;
  left: 50%;
  height: 1px;
  height: 0.03906vw;
  width: calc(100% - 1.094vw);
  border-bottom: solid #5c5c5c;
  border-bottom-width: 1px;
  border-bottom-width: 0.03906vw;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}

@media (min-width: 2560px) {
  .section_worlds_event .product_more_btn::after {
    bottom: 4px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_more_btn::after {
    height: 1px;
  }
}

@media (min-width: 2560px) {
  .section_worlds_event .product_more_btn::after {
    border-bottom-width: 1px;
  }
}

.section_worlds_event .product_more_txt {
  font-size: 14px;
  font-size: 0.54688vw;
  line-height: 20px;
  line-height: 0.78125vw;
  letter-spacing: -0.035em;
  color: #8e8e8e;
}

@media (min-width: 2560px) {
  .section_worlds_event .product_more_txt {
    font-size: 14px;
    line-height: 20px;
  }
}

.section_worlds_event .notice_item {
  color: #8e8e8e;
}

.section_worlds_event .notice_item::before {
  background-color: #8e8e8e;
}

.section_skin {
  margin-top: -2px;
  margin-top: -0.07813vw;
  height: 1613px;
  height: 63.00781vw;
  padding-top: 105px;
  padding-top: 4.10156vw;
  background: url("../img/bg_event3.jpg") top no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 2560px) {
  .section_skin {
    margin-top: -2px;
  }
}

@media (min-width: 2560px) {
  .section_skin {
    height: 1613px;
  }
}

@media (min-width: 2560px) {
  .section_skin {
    padding-top: 105px;
  }
}

.section_skin .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.section_skin .section_label {
  width: 265px;
  width: 10.35156vw;
  height: 24px;
  height: 0.9375vw;
}

@media (min-width: 2560px) {
  .section_skin .section_label {
    width: 265px;
  }
}

@media (min-width: 2560px) {
  .section_skin .section_label {
    height: 24px;
  }
}

.section_skin .section_title {
  width: 1331px;
  width: 51.99219vw;
  margin-top: 32px;
  margin-top: 1.25vw;
}

@media (min-width: 2560px) {
  .section_skin .section_title {
    width: 1331px;
  }
}

@media (min-width: 2560px) {
  .section_skin .section_title {
    margin-top: 32px;
  }
}

.section_skin .section_desc {
  margin-top: 35px;
  margin-top: 1.36719vw;
  font-size: 24px;
  font-size: 0.9375vw;
  line-height: 32px;
  line-height: 1.25vw;
  text-align: center;
  color: #e0e0e0;
}

@media (min-width: 2560px) {
  .section_skin .section_desc {
    margin-top: 35px;
  }
}

@media (min-width: 2560px) {
  .section_skin .section_desc {
    font-size: 24px;
    line-height: 32px;
  }
}

.section_skin .skin_area {
  position: relative;
  width: 1400px;
  width: 54.6875vw;
  height: 766px;
  height: 29.92188vw;
  margin-top: 162px;
  margin-top: 6.32813vw;
}

@media (min-width: 2560px) {
  .section_skin .skin_area {
    width: 1400px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_area {
    height: 766px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_area {
    margin-top: 162px;
  }
}

.section_skin .skin_area::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1465px;
  width: 57.22656vw;
  height: 100%;
  background: url("../img/bg_skin_area.png") center/cover no-repeat;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: '';
}

@media (min-width: 2560px) {
  .section_skin .skin_area::before {
    width: 1465px;
  }
}

.section_skin .skin_video {
  position: relative;
  margin: -128px auto 0px;
  margin: -5vw auto 0vw;
  width: 1020px;
  width: 39.84375vw;
  height: 580px;
  height: 22.65625vw;
}

@media (min-width: 2560px) {
  .section_skin .skin_video {
    margin: -128px auto 0px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_video {
    width: 1020px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_video {
    height: 580px;
  }
}

.section_skin .skin_media_video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1000px;
  width: 39.0625vw;
  height: 563px;
  height: 21.99219vw;
  margin-left: -3px;
  margin-left: -0.11719vw;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity .3s .2s;
  transition: opacity .3s .2s;
}

@media (min-width: 2560px) {
  .section_skin .skin_media_video {
    width: 1000px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_media_video {
    height: 563px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_media_video {
    margin-left: -3px;
  }
}

.section_skin .skin_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 1180px;
  width: 46.09375vw;
  height: 244px;
  height: 9.53125vw;
  margin: 24px auto 0px;
  margin: 0.9375vw auto 0vw;
}

@media (min-width: 2560px) {
  .section_skin .skin_list {
    width: 1180px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_list {
    height: 244px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_list {
    margin: 24px auto 0px;
  }
}

.section_skin .skin_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 180px;
  width: 7.03125vw;
  height: 100%;
}

@media (min-width: 2560px) {
  .section_skin .skin_item {
    width: 180px;
  }
}

.section_skin .skin_item + .skin_item {
  margin-left: 20px;
  margin-left: 0.78125vw;
}

@media (min-width: 2560px) {
  .section_skin .skin_item + .skin_item {
    margin-left: 20px;
  }
}

.section_skin .skin_name {
  margin-top: 12px;
  margin-top: 0.46875vw;
  font-size: 20px;
  font-size: 0.78125vw;
  line-height: 20px;
  line-height: 0.78125vw;
  color: #818181;
}

@media (min-width: 2560px) {
  .section_skin .skin_name {
    margin-top: 12px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_name {
    font-size: 20px;
    line-height: 20px;
  }
}

.section_skin .skin_badge {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  margin-top: 0.39063vw;
  padding: 4px 16px;
  padding: 0.15625vw 0.625vw;
  font-size: 14px;
  font-size: 0.54688vw;
  line-height: 14px;
  line-height: 0.54688vw;
  color: #4a2c07;
  background: -webkit-gradient(linear, left top, right top, from(#DDD1A8), color-stop(50%, #D0B386), to(#BB9463));
  background: linear-gradient(90deg, #DDD1A8 0%, #D0B386 50%, #BB9463 100%);
}

@media (min-width: 2560px) {
  .section_skin .skin_badge {
    margin-top: 10px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_badge {
    padding: 4px 16px;
  }
}

@media (min-width: 2560px) {
  .section_skin .skin_badge {
    font-size: 14px;
    line-height: 14px;
  }
}

.section_skin .skin_badge::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-width: 1px;
  border-width: 0.03906vw;
  border-style: solid;
  border-color: #947953;
  pointer-events: none;
  content: '';
}

@media (min-width: 2560px) {
  .section_skin .skin_badge::before {
    border-width: 1px;
  }
}

.error_page {
  margin-top: -80px;
}

.error_page ~ .riotbar-footer {
  display: none;
}

.error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  background: url("../img/bg_error.jpg") top/cover no-repeat;
  text-align: center;
}

.error::before, .error::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.error::before {
  background: rgba(0, 0, 0, 0.7);
}

.error::after {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(1%, #000), color-stop(10%, transparent));
  background: linear-gradient(0deg, #000 1%, transparent 10%);
}

.error .inner, .error_inner {
  position: relative;
  z-index: 1;
  padding: 100px 0px;
  padding: 3.90625vw 0vw;
}

@media (min-width: 2560px) {
  .error .inner, .error_inner {
    padding: 100px 0px;
  }
}

.error_title {
  font-size: 68px;
  font-size: 2.65625vw;
  line-height: 88px;
  line-height: 3.4375vw;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (min-width: 2560px) {
  .error_title {
    font-size: 68px;
    line-height: 88px;
  }
}

.error_desc {
  margin-top: 16px;
  margin-top: 0.625vw;
  font-size: 30px;
  font-size: 1.17188vw;
  line-height: 39px;
  line-height: 1.52344vw;
  letter-spacing: -0.02em;
  color: #c5c5c5;
}

@media (min-width: 2560px) {
  .error_desc {
    margin-top: 16px;
  }
}

@media (min-width: 2560px) {
  .error_desc {
    font-size: 30px;
    line-height: 39px;
  }
}

.error_link {
  position: relative;
  display: inline-block;
  margin-top: 84px;
  margin-top: 3.28125vw;
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: 0px 0px;
  background-position: 0vw 0vw;
  width: 690px;
  width: 26.95313vw;
  height: 156px;
  height: 6.09375vw;
}

@media (min-width: 2560px) {
  .error_link {
    margin-top: 84px;
  }
}

@media (min-width: 2560px) {
  .error_link {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .error_link {
    background-position: 0px 0px;
  }
}

@media (min-width: 2560px) {
  .error_link {
    width: 690px;
    height: 156px;
  }
}

.error_link:hover {
  -webkit-background-size: 1022px 680px;
  background-size: 1022px 680px;
  -webkit-background-size: 39.92188vw 26.5625vw;
  background-size: 39.92188vw 26.5625vw;
  background-image: url("../img/normal.png");
  background-position: 0px -320px;
  background-position: 0vw -12.5vw;
  width: 690px;
  width: 26.95313vw;
  height: 156px;
  height: 6.09375vw;
}

@media (min-width: 2560px) {
  .error_link:hover {
    -webkit-background-size: 1022px 680px;
    background-size: 1022px 680px;
  }
}

@media (min-width: 2560px) {
  .error_link:hover {
    background-position: 0px -320px;
  }
}

@media (min-width: 2560px) {
  .error_link:hover {
    width: 690px;
    height: 156px;
  }
}

.error_link_txt {
  position: absolute;
  top: 44px;
  top: 1.71875vw;
  left: 50%;
  font-size: 32px;
  font-size: 1.25vw;
  line-height: 32px;
  line-height: 1.25vw;
  color: #f5edd4;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 2560px) {
  .error_link_txt {
    top: 44px;
  }
}

@media (min-width: 2560px) {
  .error_link_txt {
    font-size: 32px;
    line-height: 32px;
  }
}
