/*
vars
*/

:root {
  --padding-hor: 2.8vw;
  --card-radius: calc(6px + 0.3vw);
  --card-inner-radius: calc(6px + 0.3vw);
  --header-background-color: #000;
  --footer-background-color: #000;
  --color-white-for-black-bg: #f5f5f7;
  --header-height: 68px;
  --themn-duration: 0.3s;
  --color-blue-hold: #0762FF;
  --color-darkblue-hold: #112b85;
  --color-orange-hold: #ec6520;
  --color-orange: #ff4ac0;
  --color-darkmode-pink: #ff42be;
}

/*
header
*/

body {
  background-color: var(--mono16);
}

section.top-cover {
  z-index: 10;
  position: fixed;
  top: -99px;
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

}

main {
  background-color: var(--header-background-color);
}

header {
  z-index: 11;
  width: 100%;
  position: sticky;
  top: 0;
}

header .logo {
  flex: 0.2;
  justify-self: start;
  margin-left: calc(var(--padding-hor) + 2px);
  cursor: pointer;
}

header .logo img {
  margin-top: 1px;
  padding: 14px 0 14px 4px;
  width: 130px;
}

header ul {
  padding-top: 3px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

header li {
  font-size: 0.95rem;
  color: #aaa;
  cursor: default;
}

header li.on {
  color: #fff;
}

header li.new-win {
  cursor: pointer;
}

header li img {
  position: relative;
  top: -4px;
  display: inline;
  margin-left: 4px;
  width: 10px;
  opacity: 0.7;
}

header li a {
  cursor: pointer;
  color: #aaa;
}

header li a.on {
  color: #fff;
}

header li span {
  margin-left: 3px;
  font-size: 0.7rem;
}

header .top-wrap {
  z-index: 3;
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-height);
  background-color: rgba(0, 0, 0, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header .top-wrap li {
  font-family: "Poppins";
  font-weight: 400;
  margin: 0 calc(3px + 1vw);
  padding: 10px 2px 8px 2px;
  border-bottom: 1px solid transparent;
}

header .top-wrap li a {
  cursor: default;
}

header .top-wrap li.on {
  border-color: var(--color-orange);
}

header .depth1-menu {
  flex: 1;
}

header .bottom-wrap {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
}

header .bottom-wrap ul {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  display: none;
  flex-direction: row;
  padding: 10px 0 16px 0;
  background-color: rgba(0, 0, 0, 1);
  backdrop-filter: blur(10px);
}

header .bottom-wrap li a {
  margin: 0 calc(2px + 0.2vw);
  padding: 6px calc(2px + 0.4vw);
  font-weight: 400;
  font-size: 0.86rem;
}

header .bottom-wrap li a:hover {
  color: #eee;
}

.header-menu {
  flex: 0.2;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-right: var(--padding-hor);
}

.header-menu #display-mode-button {
  position: relative;
  top: 3px;
  margin-right: 0;
  width: 30px;
  height: 30px;
  background-color: var(--mono4);
  border-radius: 30px;
  overflow: hidden;
}

.header-menu #display-mode-button div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.header-menu #display-mode-button #light-mode-button {
  background: url("/assets/images/common/icons/lightmode.png") no-repeat center / 21px auto;
}

.header-menu #display-mode-button #dark-mode-button {
  top: 0;
  background: url("/assets/images/common/icons/darkmode.png") no-repeat center / 17px auto;
}

.header-menu #display-mode-button #light-mode-button {
  filter: var(--filter-invert);
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
}

.header-menu .lang-button {
  margin-right: 9px;
  width: 42px;
  height: 36px;
  font-size: 1.1rem;
  font-family: "Poppins";
  font-weight: 500;
  color: var(--color-white-for-black-bg);
}

.header-menu .menu-button {
  width: 38px;
  height: 36px;
  background-color: #eee;
  border-radius: 7px;
}

.header-menu .menu-button .bar {
  margin: 5px auto;
  width: 18px;
  height: 2px;
  background-color: #000;
}

/*
footer
*/

footer {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 var(--padding-hor);
  text-align: left;
  border-top: 1px solid #222;
  background-color: var(--footer-background-color);
}

footer a {
  color: #aaa;
}

footer a:hover {
  color: var(--color-white-for-black-bg);
}

footer .wrap {
  width: 100%;
  max-width: var(--max-width);
}

footer .top-wrap .sitemap {
  overflow: hidden;
  border-color: #222;
}

footer .top-wrap .sitemap li:first-child {
  color: var(--color-white-for-black-bg);
}

footer .top-wrap .sitemap {
  padding-top: calc(48px + 1vw);
  padding-left: 0.06vw;
  padding-bottom: calc(26px + 1vw);
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #333;
}

footer .top-wrap .sitemap ul {
  min-width: calc(130px + 1vw);
  padding-bottom: 20px;
}

footer .top-wrap .sitemap li {
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: -0.01rem;
  line-height: 2rem;
}

footer .top-wrap .sitemap li span {
  margin-left: 0.2vw;
  font-size: calc(0.5rem + 0.2vw);
  letter-spacing: 0;
}

footer .top-wrap .sitemap li:first-child {
  margin-bottom: 10px;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0;
}

footer .top-wrap .sitemap li.new-win {
  cursor: pointer;
}

footer .top-wrap .sitemap li img {
  position: relative;
  top: -4px;
  display: inline;
  margin-left: 4px;
  width: 10px;
  opacity: 0.9;
  filter: var(--filter-invert);
}


footer .bottom-wrap {
  display: flex;
  flex-direction: column;
  margin-top: calc(34px + 1vw);
  padding-bottom: calc(60px + 1vw);
}

footer .bottom-wrap ul {
  display: flex;
  flex-direction: row;
}

footer .bottom-wrap li {
  margin-right: calc(10px + 1.4vw);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: -0.02rem;
  line-height: 1.6rem;
}

footer .bottom-wrap .copyright {
  margin-top: calc(10px + 1.4vw);
  font-family: "Poppins";
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: -0.02rem;
  line-height: 1.6rem;
  color: #aaa;
}

/*
contents default
*/

section.full-wrap {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  width: 100%;
}

section.limited-wrap {
  margin: 0 auto;
  width: calc(100% - (var(--padding-hor) * 2));
  max-width: var(--max-width);
}

section.contents {
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}


section.contents .plus-icon {
  width: calc(44px + 1vw);
  height: calc(44px + 1vw);
  background: url("/assets/images/common/plus_icon.png") no-repeat center / 36%;
  background-color: rgba(232, 232, 232, 0.88);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

section.contents .play-icon {
  width: calc(34px + 0.9vw);
  height: calc(34px + 0.9vw);
  background: url("/assets/images/common/play_icon.png?v=3") no-repeat 55% center / 31%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

section.contents .link-icon {
  width: calc(44px + 1vw);
  height: calc(44px + 1vw);
  background: url("/assets/images/common/link_icon.png?v=3") no-repeat center center / 37%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
}

/**/

span.step4::after {
  white-space: pre-wrap;
  content: "\a";
}

span.no-step1::after {
  white-space: pre-wrap;
  content: "\a";
}

span.no-step2::after {
  white-space: pre-wrap;
  content: "\a";
}

#header-mouse-area {
  position: absolute;
  top: var(--header-height);
  width: 100%;
  height: 60px;
}

/**/

#bottom-banner-layer {
  z-index: 200;
  position: fixed;
  bottom: calc(14px + 0.8vw);
  margin: 0 auto;
  width: 100%;
}

#bottom-banner-layer .bottom-banner-wrap {
  margin: 0 auto;
  width: calc(100% -(var(--padding-hor)* 2));
  max-width: var(--max-width);
}

#bottom-banner-layer .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 12px 0;
  width: 100%;
  background-color: #222;
  opacity: 0.95;
  border-radius: 10px;
  transition-timing-function: ease-in-out;
  transition-duration: var(--themn-duration);
}

#bottom-banner-layer .wrap p {
  padding-left: 24px;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.52rem;
  letter-spacing: -0.02rem;
  color: #fff;
  text-align: left;
}

#bottom-banner-layer .wrap .button-wrap {
  flex-direction: row;
  margin: 0;
  padding-right: 24px;
  min-width: fit-content;
}

#bottom-banner-layer .wrap .button-wrap button {
  margin-top: 0;
  margin-left: 8px;
  padding: 4px 16px 4px 16px;
  width: auto;
  height: auto;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.52rem;
  letter-spacing: -0.02rem;
  color: #111;
  background-color: #fff;
  opacity: 0.86;
  border-radius: 4px;
}

button.back-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid var(--mono13);
  border-radius: 50%;
  background: url("/assets/images/common/icons/arrow_left.png?v=3") no-repeat center center / auto 18px;
}

button.back-arrow:hover {
  background-color: var(--mono1-778);
}

button.close-x {
  position: relative;
  z-index: 500;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: url("/assets/images/common/gnb_close_btn_black.png") no-repeat center center / auto 18px;
  background-color: rgba(255, 255, 255, 0.7);
  filter: var(--filter-invert);
  transition-timing-function: ease-in-out;
  transition-duration: var(--themn-duration);
}

button.close-x:hover {
  border: 1px solid #ccc;
  background-color: #fff;
}