/* Default CSS */
/* Mobile - Portrait */

/*세로모드*/
/*터치 가능한 디바이스(스마트폰, 터치스크린)*/
/*#loading-screen {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-color: rgb(29,18,84);*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  z-index: 9999;*/
/*}*/
/*.loadingLogo img {*/
/*  animation: fadeInOut 1.5s infinite;*/
/*}*/

/*@keyframes fadeInOut {*/
/*  0%, 100% {*/
/*    opacity: 0;*/
/*    transform: scale(0.8);*/
/*  }*/
/*  50% {*/
/*    opacity: 1;*/
/*    transform: scale(1);*/
/*  }*/
/*}*/
#container {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
/*topbar layout 메뉴 사이드바 부분 css container*/
.menuSidebar {
  color: white;
  right: 10px;
  top: 3.5vw;
  position: absolute;
}
.menuSidebar > img {
  width: 7vw;
}
#menu_container {
  position: fixed;
  top: 0;
  right: -50vw;
  z-index: 600;
  overflow: auto;
  width: 50vw;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  transition: right 0.3s ease-in-out;
  background-color: rgb(28, 15, 46);
  color: whitesmoke;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#menu_container.on {
  right: 0;
}
#dimmed {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#sidebarClose {
  display: flex;
  align-items: center;
  justify-content: end;
  color: black;
  width: 100%;
  cursor: pointer;
}
#sidebarClose > span {
  color: white;
  font-size: 4vw;
}
.myPage_container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 9vw;
}
#myPage {
  color: white;
  font-family: 'Noto Sans KR';
  border-radius: 10px;
  transition: color 0.2s linear;
  display: flex;
  /*width: 29vw;*/
  align-items: center;
  margin: 0 2vw;
}
#myPage > i {
  font-size: 4vw;
  margin-right: 6px;
}
#myPage > span {
  font-size: 4vw;
}
#myPage:hover {
  color: rgb(77, 61, 161);
}
#menu > li > a {
  display: flex;
  align-items: center;
  color: whitesmoke;
  transition: transform ease-in-out 0.3s;
  margin: 0;
}
/*아이디 마스크 부분*/
#mask {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5) repeat;
  top: 0;
  left: 0;
  z-index: 590;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
}

/*메인 헤더 시작지점*/
#header_container {
  width: 100%;
  height: 14vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(23, 14, 48, 0.5);
  position: fixed;
  top: 0;
  z-index: 800;
  box-shadow: 0 0 10px 1px rgb(0, 0, 0);
}
#header_main {
  width: 100%;
  /*max-width: 1000px;*/
  display: flex;
  align-items: center;
}

#header_items_container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

#header_items_container
  > #logo_container
  > .header_items
  > .logoLastContainer
  > img {
  width: 17vw;
}
#header_items_container > #logo_container > .header_items > .logo > img {
  width: 120px;
  margin: 5px 0;
}

.logoLastContainer_skip {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.logoLastContainer_skip > img {
  width: 9vw;
}

#logo_container {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  position: absolute;
  top: 4vw;
}
.logoLastContainer {
  width: 100%;
  height: 100%;
}
#menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
.sign_btn_box {
  display: flex;
  position: absolute;
  right: 0;
  margin-right: 11vw;
}
#signIn {
  width: 17vw;
  height: 8vw;
  font-family: 'Noto Sans KR';
  background-color: whitesmoke;
  color: #1475E1;
  display: block;
  border-radius: 10px;
  transition: all 0.2s linear;
  font-size: 2.5vw;
}
#signUp {
  width: 17vw;
  height: 8vw;
  color: white;
  font-family: 'Noto Sans KR';
  display: block;
  /* border: 1px solid; */
  background-color: #1475E1;
  border-radius: 10px;
  transition: background-color 0.2s linear;
  margin-left: 5px;
  font-size: 2.5vw;
}
#signUp:hover {
  background-color: rgba(20, 117, 225, 0.7);
}
.menu_item {
  display: flex;
  width: 100%;
  align-items: center;
}
#menu > li > a {
  display: flex;
  align-items: center;
  margin-bottom: 7vw;
}

#menu > li > a > .icons > img {
  width: 4vw;
}

#menu > li > a > .item_text {
  font-size: 4vw;
  padding-left: 5px;
  font-family: "Noto Sans KR";
  font-weight: 100;
  color: whitesmoke;
}

/*메타마스크 버튼*/
/*#wallet_container {*/
/*  position: relative;*/
/*  !*display: inline-block;*!*/
/*  width: 190px;*/
/*  height: 30px;*/
/*  display: none;*/
/*}*/

/*#wallet_container > #connect_button {*/
/*  position: absolute;*/
/*  width: 100%;*/
/*}*/

/*#wallet_container > #connect_button > img {*/
/*  width: 100%;*/
/*}*/

/*#wallet_container > #htc_container {*/
/*  position: absolute;*/
/*  width: inherit;*/
/*  visibility: visible;*/
/*}*/

/*#wallet_container > #htc_container > img {*/
/*  width: inherit;*/
/*}*/

strong.htc_text {
  position: absolute;
  font-size: 87%;
  color: white;
  top: 7px;
  right: 43px;
}

/*content 로 감싸는 탭*/
.content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  /*max-width: 1000px;*/
  padding-top: 14vw;
  /*padding-top: 7vh;*/
}
/*메인 컨텐츠 이미지 모음*/
.main_content_img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
  flex-direction: column;
  background-color: rgb(29,18,84);
}
.main_content_img > img:nth-child(1) {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.main_content_img > img:nth-child(2) {
  display: none;
}
.main_content_img > img:nth-child(3) {
  display: none;
}
/* 메인 top textContent */
#mainTopText {
  /*position: absolute;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  margin-top: 10vw;
  font-family: "Noto Sans KR", sans-serif;
}
#mainTopText > h1 {
  font-weight: bold;
  background: linear-gradient(to right, #A6FD00, #A372FE);
  color: transparent;
  -webkit-background-clip: text;
  font-size: 6vw;
}
#mainTopText > strong {
  color: #C3B5FF;
  /*text-align: center;*/
  line-height: 5vw;
  word-spacing: 1vw;
  font-size: 4vw;
  margin: 0 1vw;
}

#main_play_text {
  /*position: absolute;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  margin-top: 1vw;
  margin-left: 1vw;
  font-family: "Noto Sans KR", sans-serif;
}
#main_play_text > h1 {
  font-weight: bold;
  color: white;
  -webkit-background-clip: text;
  font-size: 5vw;
}

/*------------------------------------------------------------------------------------*/
.landscape_main_img {
  display: none;
}
.main_content_img > .main_btnImg_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main_content_img > .main_btnImg_container > div {
  /*position: absolute;*/
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.main_content_img > .main_btnImg_container > div > a {
  width: 87%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform ease-in-out 0.3s;
}
.main_content_img > .main_btnImg_container > div > a:hover {
  transform: scale(1.1, 1.1);
}
.main_content_img > .main_btnImg_container > div > a > img {
  width: 55vw;
}
.main_content_img > .main_btnImg_container > div > span {
  width: 60vw;
  margin-bottom: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(20,117,225);
  color: white;
  padding: 3vw 0;
  font-size: 4vw;
  font-weight: bold;
  border-radius: 7px;
  font-family: "Noto Sans KR", sans-serif;
}
.main_contentImg {

}
.main_content_img > .main_btnImg_container > div > .web_main_img {
  width: 95vw;
  cursor: default;
  margin: 10vw 0;
}
.main_content_img > .main_btnImg_container > div > img {
  width: 60vw;
  margin-bottom: 20px;
  cursor: pointer;
}
.main_content_img > .main_btnImg_container > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_content_img > .main_btnImg_container > div > div > img {
  width: 20vw;
  cursor: pointer;
}
/*
----------------------------------------------------------------------------------------------
*/
.main_content_img > span {
  /*position: absolute;*/
  color: white;
  display: flex;
  bottom: 7vw;
  justify-content: space-around;
  flex-wrap: wrap;
  /*width: 94%;*/
  margin: 10vw 0;
}
.main_content_img > span > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 47%;
  height: 13vw;
  font-family: 'Noto Sans KR';
  border: 2px solid rgba(255,255,255,0.5);
  border-bottom: none;
  margin-bottom: 13vw;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.main_content_img > span > span:last-child {
  /*margin-top: 7px;*/
}
.main_content_img > span > span > h2 {
  font-family: "Noto Sans KR";
  font-weight: bolder;
  font-size: 3vw;
  padding: 10px 0;
  color: #00eaff;
}
.main_content_img > span > span > span {
  font-family: "Noto Sans KR";
  font-weight: bolder;
  font-size: 8vw;
  margin-bottom: 5px;
  color: #00ff42;
}
.main_content_img > span > span > a {
  font-size: 2.5vw;
  margin: 5px 0;
  color: #a3bfea;
}
.main_content_img > span > span > a > img {
  width: 8vw;
}
/*main ingame tap*/
.main_inGame_btn {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.main_inGame_btn > a {
  width: 87%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform ease-in-out 0.3s;
}
.main_inGame_btn > a:hover {
  transform: scale(1.1, 1.1);
}
.main_inGame_btn > a > img {
  width: 55vw;
}
.main_inGame_btn > div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.main_inGame_btn > div > img {
  margin-right: 2vw;
  width: 10vw;
}
.main_inGame_btn > img {
  width: 60vw;
  margin-bottom: 10px;
}
.main_playBtn {
  width: 45vw;
  font-family: "Noto Sans KR", sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0,231,1);
  color: black;
  padding: 3vw 0;
  font-size: 4vw;
  font-weight: bold;
  border-radius: 7px;
}
/* three 섹터 스타일 부분*/
.game_submit_tap > .web_submit {
  display: none;
}
.landscape_submit {
  display: none;
}
/*이미지 슬라이더 css*/
.slide {
  display: none;
}
.block {
  width: 100%;
}

/* game, submit textContents */
#gameSubmit_title {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin-top: 1vw;
  font-family: "Noto Sans KR", sans-serif;
}
#gameSubmit_title > div {
  display: flex;
  align-items: center;
  color: white;
  margin-left: 4vw;
  margin-bottom: 96vw;
}
#gameSubmit_title > div > img {
  width: 6vw;
}
#gameSubmit_title > div > strong {
  font-size: 3vw;
  margin-left: 2px;
}

#gameSubmit_textCon {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans KR", sans-serif;
  color: #C3B5FF;
  margin: 0 4vw;
}
#gameSubmit_textCon > strong {
  margin-top: 55vw;
  margin-bottom: 20vw;
  line-height: 4.7vw;
  word-spacing: 1vw;
  font-size: 4vw;
}

/*----------------------------------------------------------*/
.game_submit_tap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.portrait_submit {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.portrait_submit > img {
  width: 100%;
  position: relative;
}
.portrait_submit > div {
  width: 93%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 2vw;
  background-color: rgb(20,117,225);
  padding: 2.5vw 0;
  font-size: 4vw;
  font-weight: bold;
  color: white;
  border-radius: 7px;
  margin-left: 3.5%;
  font-family: "Noto Sans KR", sans-serif;
}
.portrait_submit > div > img {
  width: 93%;
}
.portrait_submit > p {
  width: 93%;
  display: flex;
  justify-content: center;
  position: absolute;
  margin-bottom: 16vw;
  background-color: rgb(20,117,225);
  padding: 2.5vw 0;
  font-size: 4vw;
  font-weight: bold;
  color: white;
  border-radius: 7px;
  margin-left: 3.5%;
  font-family: "Noto Sans KR", sans-serif;
}
.portrait_submit > p > img {
  width: 93%;
}
/*youtube 동영상 보여주는 탭*/
.youtubeMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.youtubeMain > img {
  position: relative;
}
#landscape_main2 {
  display: none;
}
.youtubeMain > h2 {
  position: absolute;
  color: white;
  font-family: "Noto Sans KR";
  font-weight: bolder;
  font-size: 6vw;
  display: block;
  margin: 10px;
  bottom: 75vw;
}
.youtubeMain > div {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
}

.youtubeVideo {
  width: 100%;
  height: 75vw;
}
/* youTube 안에 있는 HTC 설명란*/
#cardName {
  position: absolute;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: bold;
  color: white;
  top: 0;
  display: inherit;
  width: inherit;
  align-items: inherit;
  justify-content: inherit;
  bottom: inherit;
  font-size: 3vw;
}
#cardName > span:nth-child(1) {
  top: 53vw;
  left: 22vw;
  position: absolute;
}
#cardName > span:nth-child(2) {
  top: 53vw;
  right: 18vw;
  position: absolute;
}
#cardName > span:nth-child(3) {
  top: 107vw;
  left: 22vw;
  position: absolute;
}
#cardName > span:nth-child(4) {
  top: 107vw;
  right: 18vw;
  position: absolute;
}

/*
---------------------------------------------------------------------------------
*/
#NFT_textCon {
  position: absolute;
  align-items: initial;
  bottom: initial;
  top: 110vw;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: bold;
  color: white;
  flex-direction: column;
}
#NFT_textCon > h2 {
  font-size: 9vw;
  margin: 4vw;
  font-weight: bolder;
}
#NFT_textCon > h2 > span {
  font-size: 5vw;
}
#NFT_textCon > strong {
  color: #C3B5FF;
  margin: 0 4vw;
  line-height: 5vw;
  word-spacing: 1vw;
  font-size: 3.5vw;
}

#P2E_textCon {
  position: absolute;
  align-items: initial;
  bottom: 105vw;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: bold;
  color: white;
  flex-direction: column;
}
#P2E_textCon > h2 {
  font-size: 9vw;
  margin: 4vw;
  font-weight: bolder;
}
#P2E_textCon > h2 > span {
  font-size: 5vw;
}
#P2E_textCon > strong {
  color: #C3B5FF;
  margin: 0 4vw;
  line-height: 5vw;
  word-spacing: 1vw;
  font-size: 3.5vw;
}
/*-----------------------------------*/
/*하단바 디자인 부분*/
#tail_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #170e30;
}

#tail_logo > .header_items {
  margin: 8px 10px;
}
#tail_logo > .header_items > div > img {
  width: 17vw;
}
#tail_logo > .social_box {
  display: flex;
}
#tail_logo > .social_box > .footer_items {
  margin-right: 1vw;
}
#tail_logo > .social_box > .footer_items > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 12vw;
}
#tail_logo > .social_box > .footer_items > div > img {
  width: 9vw;
}
#tail_logo > .social_box > .footer_items > div > span {
  font-family: "Noto Sans KR", sans-serif;
  color: white;
  font-size: 2vw;
  font-weight: bold;
  margin-top: 3px;
}
/*
 window modal
 */
.modalX {
  color: white;
  /*position: absolute;*/
  right: 0;
}
.modalX > i {
  right: 15px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.1s linear;
  position: absolute;
  top: 10px;
}
/*
SignIn
*/
#modalSignIn {
  position: fixed;
  border-radius: 10px;
  width: 100%;
  background-color: rgba(26, 44, 56, 0.9);
  height: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
  z-index: 990;
  overflow: auto;
  overflow-x: hidden;
  font-family: 'Noto Sans KR';
}
.modalSignIn {
  opacity: 0;
  /*transition: opacity 0.5s;*/
}
#modalSignIn > span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 10px;
  font-size: 5vw;
  font-weight: bold;
}
#modal_signInContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
#modal_signInContainer > div {
  margin-bottom: 20px;
  cursor: pointer;
  width: 80vw;
}
#modal_signInContainer > p {
  margin-bottom: 20px;
  cursor: default;
  width: 6vw;
}
#modal_signInContainer > p > img {
  width: 100%;
  height: 100%;
}
#modal_signInContainer > div > img {
  width: 100%;
  height: 100%;
}
#modal_signInContainer > h3 {
  color: #b1bad3;
  font-size: 3vw;
  font-weight: bold;
  margin: 15px 0;
}
#modal_signInContainer > h3 > span {
  color: white;
  cursor: pointer;
}
/*
Register
*/
#modalRegister {
  position: fixed;
  border-radius: 10px;
  width: 100%;
  background-color: rgba(26, 44, 56, 0.9);
  height: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
  z-index: 990;
  overflow: auto;
  overflow-x: hidden;
  font-family: 'Noto Sans KR';
}
.modalRegister {
  opacity: 0;
  transition: opacity 0.3s;
}
.modalOn {
  opacity: 1;
  transition: opacity 0.6s;
}
#modalRegister > span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 10px;
  font-size: 5vw;
  font-weight: bold;
}
#modal_registerContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
#modal_registerContainer > div {
  margin-bottom: 20px;
  cursor: pointer;
  width: 80vw;
}
#modal_registerContainer > p {
  margin-bottom: 20px;
  cursor: default;
  width: 6vw;
}
#modal_registerContainer > p > img {
  width: 100%;
  height: 100%;
}
#modal_registerContainer > div > img {
  width: 100%;
  height: 100%;
}
#modal_registerContainer > h3 {
  color: #b1bad3;
  font-size: 3vw;
  font-weight: bold;
  margin: 15px 0;
}
#modal_registerContainer > h3 > span {
  color: white;
  cursor: pointer;
}
#modal_registerContainer > strong {
  display: flex;
  flex-direction: column;
  color: yellow;
  align-items: center;
  font-size: 3vw;
  word-spacing: 2px;
  line-height: 15px;
}

#system_link {
  position: fixed;
  border-radius: 10px;
  width: 100%;
  background-color: rgba(26, 44, 56, 0.9);
  height: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
  z-index: 990;
  overflow: auto;
  overflow-x: hidden;
  font-family: 'Noto Sans KR';
}
.system_link {
  opacity: 0;
  transition: opacity 0.3s;
}
.modalOn {
  opacity: 1;
  transition: opacity 0.6s;
}
#system_link > span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 10px;
  font-size: 5vw;
  font-weight: bold;
}
#modal_system_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
#modal_system_link > div {
  margin-bottom: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #fff;
  padding: 2vw 4vw;
  box-shadow: 10px 10px 20px 0px #000;
  border-radius: 5px;
  width: 90vw;
}
#modal_system_link > div > .not_connect_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
#modal_system_link > p {
  margin-bottom: 20px;
  cursor: default;
  width: 6vw;
}
#modal_system_link > p > img {
  width: 100%;
  height: 100%;
}
#modal_system_link > div > .not_connect_box > img {
  width: 20vw;
  margin-right: 3vw;
}
#modal_system_link > div > .not_connect_box > span {
  font-size: 4vw;
  font-weight: bold;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 3vw;
}
/*
연동만 되어있을때 보여주는 창
*/
#modal_system_link > div > .link_connect {
  display: none;
  align-items: center;
  justify-content: start;
}
#modal_system_link > div > .link_connect > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 5vw;
}
#modal_system_link > div > .link_connect > span > img {
  width: 20vw;
}
#modal_system_link > div > .link_connect > span > button {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 3vw;
  font-weight: bold;
  background: rgb(0,231,1);
  padding: 2vw 3vw;
  border-radius: 6px;
  color: black;
}
#modal_system_link > div > .link_connect > span > span {
  font-size: 3vw;
  color: rgb(0,231,1);
  font-weight: bold;
  margin-top: 3px;
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
}
#modal_system_link > div > .link_connect > div {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
#modal_system_link > div > .link_connect > div > span {
  color: #34363c;
  font-size: 3vw;
  font-weight: bold;
}
#modal_system_link > div > .link_connect > div > input {
  background-color: lightgrey;
  padding: 1vw 2vw;
  font-size: 3.5vw;
  margin: 2vw 0;
  border: 0.5vw solid black;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  color: black;
}
#modal_system_link > span {
  display: flex;
  color: whitesmoke;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3vw;
  margin: 1vw 0;
}
#modal_system_link > span > span > b {
  color: red;
}
/*모달 system link box*/
.modal_toggleSwitch {
  display: flex;
  cursor: pointer;
  align-items: center;
  color: black;
  background-color: rgb(0,231,1);
  padding: 2vw 2vw;
  border-radius: 5px;
  font-size: 3vw;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: bold;
  box-shadow: 0 0 16px 3px rgba(0, 0, 0, 0.15);
}
.modal_toggleSwitch:hover {
  filter: opacity(0.8) drop-shadow(0 0 0 black);
}







/*모달 signBox*/
#modal_signupContainer {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
  margin-bottom: 150px;
}

.signup-layout {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-layout > img {
  width: 60%;
  opacity: 0.8;
}

#play-bingo-text-container {
  position: absolute;
  color: white;
  font-size: 50px;
  top: 170px;
}

#fb-connect-container {
  position: absolute;
  margin-bottom: 240px;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#fb-connect-container > img {
  width: 50%;
}

#metamask-connect-container {
  position: absolute;
  margin-top: 60px;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#metamask-connect-container > img {
  width: 50%;
}

#discord-connect-container {
  position: absolute;
  margin-top: 360px;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#discord-connect-container > img {
  width: 50%;
}

.helpBtn {
  display: flex;
  margin-top: 700px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.helpBtn > a {
  padding: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.helpBtn > a > div {
  display: flex;
  justify-content: center;
  width: 100%;
}

.helpBtn > a > div > img {
  width: 40%;
  /*opacity: 0.7;*/
}
.register_input {
  display: flex;
  align-items: center;
  /*margin-left: 10vw;*/
  justify-content: center;
}
.register_input > .agreement {
  margin-left: 0;
}
/*
모달 notice 박스
*/
#notice {
  position: fixed;
  border-radius: 10px;
  width: 100%;
  background-color: rgba(26, 44, 56, 0.9);
  height: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
  z-index: 990;
  overflow: auto;
  overflow-x: hidden;
  font-family: 'Noto Sans KR';
}
.notice {
  opacity: 0;
  transition: opacity 0.3s;
}
#notice > span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 10px;
  font-size: 5vw;
  font-weight: bold;
}
.notice_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.notice_box {
  background-color: rgb(47,48,67);
  padding: 6vw;
  margin: 0 4vw;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.notice_box > img {
  width: 13vw;
}
.notice_box > h1 {
  color: whitesmoke;
  font-weight: bold;
  font-size: 6vw;
}
.notice_box > p {
  font-family: "Noto Sans KR", sans-serif;
  color: white;
  margin: 1vw 0;
  font-size: 4vw;
  text-align: left;
  width: 100%;
}
.notice_content > button {
  background-color: rgb(246,133,27);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5vw;
  padding: 2vw 5vw;
  border-radius: 8px;
}
.notice_content > button > img {
  width: 8vw;
  margin-right: 10px;
}
.notice_content > button > span {
  font-size: 5vw;
  color: white;
  font-weight: bold;
}


.seeMore_container {
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-weight: bolder;
  background-color: rgb(29,18,84);
  width: 100%;
}
.seeMore_container > div {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4vw;
  margin-bottom: 7vw;
  padding: 2vw;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  font-family: "Noto Sans KR", sans-serif;
}
.seeMore_container > div > strong {
  border: 1px solid white;
  border-radius: 100%;
  padding: 1vw;
  margin-left: 2vw;
  background-color: lightgrey;
  color: black;
}












/* Mobile - Landscape */
@media (min-width: 480px) {
  /*  모바일 가로모드  */

  #container {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
  }
  /*topbar layout 메뉴 사이드바 부분 css container*/
  .menuSidebar {
    color: white;
    right: 10px;
    top: 2vw;
    position: absolute;
  }
  .menuSidebar > img {
    width: 5vw;
  }
  #menu_container {
    position: fixed;
    top: 0;
    right: -30vw;
    z-index: 600;
    overflow: auto;
    width: 30vw;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    transition: right 0.3s ease-in-out;
    overflow-x: hidden;
  }
  #menu_container.on {
    right: 0;
  }
  #dimmed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  #sidebarClose {
    display: flex;
    align-items: center;
    justify-content: end;
    color: black;
  }
  #sidebarClose > span {
    font-size: 3vw;
  }
  .myPage_container {
    right: 7vw;
  }
  #myPage {
    font-size: 4vw;
    width: 20vw;
    margin: 0 1vw;
  }
  #myPage > i {
    font-size: 3vw;
    margin-right: 7px;
  }
  #myPage > span {
    font-size: 3vw;
  }
  #myPage:hover {
    color: rgb(77, 61, 161);
  }
  /*아이디 마스크 부분*/
  #mask {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.5) repeat;
    top: 0;
    left: 0;
    z-index: 590;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
  }

  /*메인 헤더 시작지점*/
  #header_container {
    width: 100%;
    height: 9vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(23, 14, 48, 0.5);
    position: fixed;
    top: 0;
    z-index: 800;
    /*max-width: 1000px;*/
  }
  #header_main {
    width: 100%;
    /*max-width: 1000px;*/
    display: flex;
    align-items: center;
  }

  #header_items_container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  #header_items_container
    > #logo_container
    > .header_items
    > .logoLastContainer
    > img {
    width: 14vw;
  }
  #header_items_container > #logo_container > .header_items > .logo > img {
    margin-bottom: 5px;
    margin-top: 5px;
    width: 60px;
  }

  #logo_container {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding-left: 10px;
    top: 4vw;
  }
  .logoLastContainer {
    width: 100%;
    height: 100%;
  }
  #menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 60px;
  }
  .sign_btn_box {
    margin-right: 8vw;
  }
  #signIn {
    width: 13vw;
    height: 6vw;
    font-size: 2vw;
  }
  #signUp {
    width: 13vw;
    height: 6vw;
    font-size: 2vw;
  }
  .menu_item {
    display: flex;
    width: 100%;
    align-items: center;
  }
  #menu > li > a {
    display: flex;
    align-items: center;
    margin-bottom: 6vw;
  }

  #menu > li > a > .icons > img {
    width: 2.5vw;
  }

  #menu > li > a > .item_text {
    font-size: 2.5vw;
    padding-left: 5px;
    font-family: "Noto Sans KR";
  }

  /*메타마스크 버튼*/
  /*#wallet_container {*/
  /*  position: relative;*/
  /*  !*display: inline-block;*!*/
  /*  width: 190px;*/
  /*  height: 30px;*/
  /*  display: none;*/
  /*}*/

  /*#wallet_container > #connect_button {*/
  /*  position: absolute;*/
  /*  width: 100%;*/
  /*}*/

  /*#wallet_container > #connect_button > img {*/
  /*  width: 100%;*/
  /*}*/

  /*#wallet_container > #htc_container {*/
  /*  position: absolute;*/
  /*  width: inherit;*/
  /*  visibility: visible;*/
  /*}*/

  /*#wallet_container > #htc_container > img {*/
  /*  width: inherit;*/
  /*}*/

  strong.htc_text {
    position: absolute;
    font-size: 87%;
    color: white;
    top: 7px;
    right: 43px;
  }

  /*content 로 감싸는 탭*/
  .content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    /*max-width: 1000px;*/
    padding-top: 9vw;
  }
  /*메인 컨텐츠 이미지 모음*/
  .main_content_img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
  }
  .main_content_img > img:nth-child(2) {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .main_content_img > img:nth-child(1) {
    display: none;
  }
  .main_content_img > img:nth-child(3) {
    display: none;
  }
  /* 메인 top textContent */
  #mainTopText {
    margin-top: 9vw;
    left: initial;
  }
  #mainTopText > h1 {
    font-size: 5vw;
  }
  #mainTopText > strong {
    line-height: 4vw;
    word-spacing: 1vw;
    font-size: 3vw;
    margin: 0 3vw;
  }

  #main_play_text {
    left: initial;
    width: initial;
  }
  #main_play_text > h1 {
    font-size: 4vw;
  }
  /*------------------------------------------------------------------------------------*/
  .landscape_main_img {
    display: block;
  }
  .web_main_img {
    display: none;
  }
  .main_content_img > .main_btnImg_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
  }
  .main_content_img > .main_btnImg_container > div {
    /*position: absolute;*/
    /* width: 100%; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*margin-top: 5vw;*/
    /*left: 5vw;*/
  }
  .main_content_img > .main_btnImg_container > div > a {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .main_content_img > .main_btnImg_container > div > a > img {
    width: 40vw;
  }
  .main_content_img > .main_btnImg_container > div > span {
    width: 40vw;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(20,117,225);
    color: white;
    padding: 2vw 0;
    font-size: 2.5vw;
    font-weight: bold;
    border-radius: 7px;
  }
  .main_content_img > .main_btnImg_container > div > .landscape_main_img {
    width: 45vw;
    margin-bottom: 0;
    margin-left: 3vw;
    cursor: default;
  }
  .main_content_img > .main_btnImg_container > div > img {
    width: 40vw;
    margin-bottom: 15px;
    cursor: pointer;
  }
  .main_content_img > .main_btnImg_container > div > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main_content_img > .main_btnImg_container > div > div > img {
    width: 15vw;
    cursor: pointer;
  }
  /*
  -------------------------------------------------------------------------------------------------------------
  */
  .main_content_img > span {
    /*position: absolute;*/
    color: white;
    display: flex;
    /*bottom: 4.5vw;*/
    width: 95%;
    font-family: "Noto Sans KR";
    flex-wrap: initial;
    margin-top: 3vw;
    margin-bottom: 0;
    justify-content: center;
    align-items: center;
  }
  .main_content_img > span > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 27vw;
    height: 9vw;
    margin: 1vw;
    margin-top: 2vw;
    margin-bottom: 15vw;
  }
  /*.main_content_img > span > span:last-child {*/
  /*  margin-top: 0;*/
  /*}*/
  .main_content_img > span > span > h2 {
    font-family: "Noto Sans KR";
    font-weight: bolder;
    font-size: 2vw;
    padding: 10px 0;
    color: #00eaff;
  }
  .main_content_img > span > span > span {
    font-family: "Noto Sans KR";
    font-weight: bolder;
    font-size: 5vw;
    margin-bottom: 10px;
    color: #00ff42;
  }
  .main_content_img > span > span > a {
    font-size: 1.5vw;
    margin: 5px 0;
    color: #a3bfea;
  }
  .main_content_img > span > span > a > img {
    width: 5vw;
  }
  /*main ingame tap*/
  .main_inGame_btn {
    top: 55vw;
    left: -25vw;
  }
  .main_inGame_btn > a > img {
    width: 40vw;
  }
  .main_inGame_btn > div {
    margin-bottom: 15px;
  }
  .main_inGame_btn > div > img {
    margin-right: 2vw;
    width: 7vw;
  }
  .main_inGame_btn > img {
    width: 40vw;
    margin-bottom: 20px;
  }
  .main_playBtn {
    width: 30vw;
    padding: 1.5vw 0;
    font-size: 2.5vw;
  }
  /*이미지 슬라이더 css*/
  .slide {
    display: none;
  }
  .block {
    width: 100%;
  }
  .portrait_submit {
    display: none;
  }

  /* game, submit textContents */
  #gameSubmit_title {
    z-index: 1;
    display: flex;
    flex-direction: initial;
    width: 100%;
    margin-top: 1vw;
  }
  #gameSubmit_title > div {
    display: flex;
    align-items: center;
    color: white;
    margin-left: 3vw;
    margin-top: 0.5vw;
    margin-bottom: 0;
  }
  #gameSubmit_title > div:last-child {
    margin-left: 33vw;
  }
  #gameSubmit_title > div > img {
    width: 3.5vw;
  }
  #gameSubmit_title > div > strong {
    font-size: 1.5vw;
    margin-left: 2px;
  }

  #gameSubmit_textCon {
    color: #C3B5FF;
    justify-content: space-evenly;
    display: flex;
    flex-direction: inherit;
    width: 100%;
  }
  #gameSubmit_textCon > strong {
    margin-top: 31vw;
    margin-bottom: 0;
    line-height: 2.4vw;
    word-spacing: 1vw;
    font-size: 2vw;
    display: flex;
    flex-direction: column;
    width: 44vw;
    height: 20vw;
  }

  /*----------------------------------------------------------*/

  .game_submit_tap {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .landscape_submit {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .landscape_submit > img {
    width: 100%;
    position: relative;
  }
  .landscape_submit > div {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
  }
  .landscape_submit > div > span {
    width: 46%;
    display: flex;
    justify-content: center;
    background-color: rgb(20,117,225);
    padding: 1.5vw 0;
    font-size: 2.5vw;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    margin: 0 7px;
    font-family: "Noto Sans KR", sans-serif;
  }
  /*youtube 동영상 보여주는 탭*/
  .youtubeMain {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .youtubeMain > img {
    position: relative;
  }
  #portrait_main2 {
    display: none;
  }
  #landscape_main2 {
    display: block;
  }
  .youtubeMain > h2 {
    font-size: 15px;
    margin: 20px;
    bottom: 60vw;
  }
  .youtubeMain > div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
  }

  .youtubeVideo {
    width: 100%;
    height: 62vw;
  }

  /* youTube 안에 있는 HTC 설명란*/
  #cardName {
    position: absolute;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: bold;
    color: white;
    top: 0;
    display: inherit;
    width: inherit;
    align-items: inherit;
    justify-content: inherit;
    bottom: inherit;
    font-size: 1.5vw;
  }
  #cardName > span:nth-child(1) {
    top: 35.5vw;
    left: 9.5vw;
    position: absolute;
  }
  #cardName > span:nth-child(2) {
    top: 35.5vw;
    right: 56vw;
    position: absolute;
  }
  #cardName > span:nth-child(3) {
    top: 35.5vw;
    left: 57.5vw;
    position: absolute;
  }
  #cardName > span:nth-child(4) {
    top: 35.5vw;
    right: 8vw;
    position: absolute;
  }
  /*
  --------------------------------------------------------
  */
  #NFT_textCon {
    position: absolute;
    align-items: initial;
    bottom: initial;
    top: 38vw;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: bold;
    color: white;
    flex-direction: column;
  }
  #NFT_textCon > h2 {
    font-size: 4vw;
    margin: 2vw 3vw;
    font-weight: bolder;
  }
  #NFT_textCon > h2 > span {
    font-size: 3vw;
  }
  #NFT_textCon > strong {
    color: #C3B5FF;
    margin: 0 3vw;
    line-height: 2vw;
    word-spacing: 0.5vw;
    font-size: 1.5vw;
  }

  #P2E_textCon {
    position: absolute;
    align-items: initial;
    bottom: 73vw;
    left: 41vw;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: bold;
    color: white;
    flex-direction: column;
    width: 55vw;
  }
  #P2E_textCon > h2 {
    font-size: 4vw;
    margin: 2vw 2vw;
    font-weight: bolder;
  }
  #P2E_textCon > h2 > span {
    font-size: 3vw;
  }
  #P2E_textCon > strong {
    color: #C3B5FF;
    margin: 0 2vw;
    line-height: 2.5vw;
    word-spacing: 0.5vw;
    font-size: 1.5vw;
  }
  /*-----------------------------------*/

  /*하단바 디자인 부분*/

  #tail_logo > .header_items {
    margin: 8px 15px;
  }
  #tail_logo > .header_items > div > img {
    width: 10vw;
  }
  #tail_logo > .social_box > .footer_items {
    margin: 0 1vw;
  }
  #tail_logo > .social_box > .footer_items > div {
    width: 10vw;
  }
  #tail_logo > .social_box > .footer_items > div > img {
    width: 7vw;
  }
  #tail_logo > .social_box > .footer_items > div > span {
    font-size: 2vw;
  }

  /*
 window modal
 */
  /*
  modal SignIn
  */
  .modalX > i {
    font-size: 2vw;
    cursor: pointer;
  }
  #modalSignIn {
    position: fixed;
    border-radius: 10px;
    width: 100%;
    background-color: rgba(26, 44, 56, 0.9);
    height: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    z-index: 990;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans KR';
  }
  #modalSignIn > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 10px;
    font-size: 2vw;
    font-weight: bold;
  }
  #modal_signInContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }
  #modal_signInContainer > div {
    margin-bottom: 15px;
    cursor: pointer;
    width: 45vw;
  }
  #modal_signInContainer > p {
    margin-bottom: 15px;
    cursor: default;
    width: 4vw;
  }
  #modal_signInContainer > p > img {
    width: 100%;
    height: 100%;
  }
  #modal_signInContainer > h3 {
    color: #b1bad3;
    font-size: 2vw;
    font-weight: bold;
    margin: 10px 0;
  }
  #modal_signInContainer > h3 > span {
    color: white;
    cursor: pointer;
  }
  /*
  modalReg Tap
  */
  #modalRegister {
    position: fixed;
    border-radius: 10px;
    width: 100%;
    background-color: rgba(26, 44, 56, 0.9);
    height: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    z-index: 990;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans KR';
  }
  #modalRegister > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 10px;
    font-size: 2vw;
    font-weight: bold;
  }
  #modal_registerContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }
  #modal_registerContainer > div {
    margin-bottom: 15px;
    cursor: pointer;
    width: 45vw;
  }
  #modal_registerContainer > p {
    margin-bottom: 15px;
    cursor: default;
    width: 4vw;
  }
  #modal_registerContainer > h3 {
    color: #b1bad3;
    font-size: 2vw;
    font-weight: bold;
    margin: 10px 0;
  }
  #modal_registerContainer > strong {
    font-size: 2vw;
  }


  #system_link {
    position: fixed;
    border-radius: 10px;
    width: 100%;
    background-color: rgba(26, 44, 56, 0.9);
    height: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    z-index: 990;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans KR';
  }
  #system_link > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 10px;
    font-size: 2vw;
    font-weight: bold;
  }
  #modal_system_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }
  #modal_system_link > div {
    margin-bottom: 15px;
    width: 65vw;
  }
  #modal_system_link > div > .not_connect_box > img {
    width: 14vw;
    margin-right: 2vw;
  }
  #modal_system_link > div > .not_connect_box > span {
    font-size: 2.5vw;
    margin-left: 2vw;
  }
  #modal_system_link > div > .link_connect > span {
    margin-right: 3vw;
  }
  #modal_system_link > div > .link_connect > span > img {
    width: 14vw;
  }
  #modal_system_link > div > .link_connect > span > button {
    font-size: 2vw;
    padding: 1vw 2vw;
  }
  #modal_system_link > div > .link_connect > span > span {
    font-size: 2vw;
  }
  #modal_system_link > div > .link_connect > div > span {
    font-size: 2vw;
  }
  #modal_system_link > div > .link_connect > div > input {
    padding: 1vw 2vw;
    font-size: 2.5vw;
    margin: 2vw 0;
    border: 0.3vw solid black;
  }
  #modal_system_link > p {
    margin-bottom: 15px;
    cursor: default;
    width: 4vw;
  }
  #modal_system_link > span {
    font-size: 2vw;
    margin: 1.5vw 0;
  }
  .modal_toggleSwitch {
    padding: 1.5vw 2vw;
    font-size: 2vw;
  }


  .seeMore_container > div {
    font-size: 2.5vw;
    margin-bottom: 6vw;
    padding: 1.5vw;
  }
  .seeMore_container > div > strong {
    padding: 1vw;
    margin-left: 1vw;
  }
}















/* Tablet */
@media (min-width: 768px) {
  #container {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
  }
  /*topbar layout 메뉴 사이드바 부분 css container*/
  .menuSidebar {
    color: white;
    right: 10px;
    top: 1vw;
    position: absolute;
  }
  .menuSidebar > img {
    width: 4vw;
  }
  #menu_container {
    position: fixed;
    top: 0;
    right: -25vw;
    z-index: 600;
    overflow: auto;
    width: 25vw;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    transition: right 0.3s ease-in-out;
    overflow-x: hidden;
  }
  #menu_container.on {
    right: 0;
  }
  #dimmed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  #sidebarClose {
    display: flex;
    align-items: center;
    justify-content: end;
    color: black;
  }
  #sidebarClose > span {
    font-size: 2vw;
  }
  .myPage_container {
    right: 5vw;
  }
  #myPage {
    font-size: 2vw;
    width: 15vw;
    flex-direction: initial;
    justify-content: center;
    align-items: center;
    margin: 0 0.5vw;
  }
  #myPage > i {
    font-size: 2vw;
    margin-right: 7px;
  }
  #myPage > span {
    font-size: 2vw;
  }
  #myPage:hover {
    color: rgb(77, 61, 161);
  }
  /*아이디 마스크 부분*/
  #mask {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.5) repeat;
    top: 0;
    left: 0;
    z-index: 590;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
  }

  /*메인 헤더 시작지점*/
  #header_container {
    width: 100%;
    height: 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(23, 14, 48);
    position: fixed;
    top: 0;
    z-index: 800;
    /*max-width: 1000px;*/
  }
  #header_main {
    width: 100%;
    /*max-width: 1000px;*/
    display: flex;
    align-items: center;
  }

  #header_items_container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  #header_items_container
  > #logo_container
  > .header_items
  > .logoLastContainer
  > img {
    width: 10vw;
  }
  #header_items_container > #logo_container > .header_items > .logo > img {
    margin-bottom: 5px;
    margin-top: 5px;
    width: 60px;
  }

  .logoLastContainer_skip {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .logoLastContainer_skip > img {
    width: 6vw;
  }

  #logo_container {
    top: 3vw;
  }
  .logoLastContainer {
    width: 100%;
    height: 100%;
  }
  #menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }
  .sign_btn_box {
    margin-right: 6vw;
  }
  #signIn {
    width: 10vw;
    height: 4vw;
    font-size: 1.5vw;
  }
  #signUp {
    width: 10vw;
    height: 4vw;
    font-size: 1.5vw;
  }
  .menu_item {
    display: flex;
    width: 100%;
    align-items: center;
  }
  #menu > li > a {
    display: flex;
    align-items: center;
    margin-bottom: 5vw;
  }

  #menu > li > a > .icons > img {
    width: 2vw;
  }

  #menu > li > a > .item_text {
    font-size: 2vw;
    padding-left: 5px;
    font-family: "Noto Sans KR";
    font-weight: 100;
  }

  /*메타마스크 버튼*/
  /*#wallet_container {*/
  /*  position: relative;*/
  /*  !*display: inline-block;*!*/
  /*  width: 190px;*/
  /*  height: 30px;*/
  /*  display: none;*/
  /*}*/

  /*#wallet_container > #connect_button {*/
  /*  position: absolute;*/
  /*  width: 100%;*/
  /*}*/

  /*#wallet_container > #connect_button > img {*/
  /*  width: 100%;*/
  /*}*/

  /*#wallet_container > #htc_container {*/
  /*  position: absolute;*/
  /*  width: inherit;*/
  /*  visibility: visible;*/
  /*}*/

  /*#wallet_container > #htc_container > img {*/
  /*  width: inherit;*/
  /*}*/

  strong.htc_text {
    position: absolute;
    font-size: 87%;
    color: white;
    top: 7px;
    right: 43px;
  }

  /*content 로 감싸는 탭*/
  .content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    /*max-width: 1000px;*/
    padding-top: 6vw;
  }
  /*메인 컨텐츠 이미지 모음*/

  .main_content_img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .main_content_img > img:nth-child(2) {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .main_content_img > img:nth-child(1) {
    display: none;
  }
  .main_content_img > img:nth-child(3) {
    display: none;
  }

  /* 메인 top textContent */
  #mainTopText {
    margin-top: 10vw;
    left: initial;
  }
  #mainTopText > h1 {
    font-size: 5vw;
  }
  #mainTopText > strong {
    line-height: 4vw;
    word-spacing: 0.5vw;
    font-size: 2.5vw;
    margin: 0 5vw;
  }

  #main_play_text {
    left: initial;
    width: initial;
  }
  #main_play_text > h1 {
    font-size: 4vw;
  }
  /*------------------------------------------------------------------------------------*/
  .landscape_main_img {
    display: block;
  }
  .web_main_img {
    display: none;
  }
  .main_content_img > .main_btnImg_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
  }
  .main_content_img > .main_btnImg_container > div {
    /*position: absolute;*/
    /* width: 100%; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2vw;
    /*left: 7vw;*/
  }
  .main_content_img > .main_btnImg_container > div > a {
    width: 90%;
    margin-bottom: 30px;
  }
  .main_content_img > .main_btnImg_container > div > img {
    width: 38vw;
  }
  .main_content_img > .main_btnImg_container > div > a > img {
    width: 35vw;
  }
  .main_content_img > .main_btnImg_container > div > span {
    width: 38.5vw;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 2.5vw;
    padding: 2vw 0;
  }
  .main_content_img > .main_btnImg_container > div > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main_content_img > .main_btnImg_container > div > div > img {
    width: 13vw;
    cursor: pointer;
  }
  .main_content_img > span {
    /*position: absolute;*/
    color: white;
    display: flex;
    bottom: 5vw;
    width: 95%;
    font-family: "Noto Sans KR";
    margin-top: 4vw;
  }
  .main_content_img > span > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 8vw;
  }
  /*.main_content_img > span > span:last-child {*/
  /*  margin-top: 0px;*/
  /*}*/
  .main_content_img > span > span > h2 {
    font-family: "Noto Sans KR";
    font-weight: bolder;
    font-size: 2vw;
    padding: 10px 0;
    color: #00eaff;
  }
  .main_content_img > span > span > span {
    font-family: "Noto Sans KR";
    font-weight: bolder;
    font-size: 5vw;
    margin-bottom: 10px;
    color: #00ff42;
  }
  .main_content_img > span > span > a {
    font-size: 1.5vw;
    margin: 5px 0;
    color: #a3bfea;
  }
  .main_content_img > span > span > a > img {
    width: 5vw;
  }

  /*main ingame tap*/
  .main_inGame_btn {
    top: 50vw;
    left: -25vw;
  }
  .main_inGame_btn > a > img {
    width: 35vw;
  }
  .main_inGame_btn > div {
    margin-bottom: 30px;
  }
  .main_inGame_btn > img {
    margin-bottom: 30px;
    width: 40vw;
  }
  .main_inGame_btn > div > img {
    width: 6vw;
  }
  .main_playBtn {
    width: 31vw;
    padding: 1.5vw 0;
    font-size: 2vw;
  }

  /*이미지 슬라이더 css*/
  .slide {
    display: none;
  }
  .block {
    width: 100%;
  }
  .landscape_submit > div {
    width: 100%;
  }
  .landscape_submit > div > span {
    width: 46%;
    margin: 0px 13px;
  }
  /*youtube 동영상 보여주는 탭*/
  .youtubeMain {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .youtubeMain > img {
    position: relative;
  }
  #portrait_main2 {
    display: none;
  }
  #landscape_main2 {
    display: block;
  }
  .youtubeMain > h2 {
    font-size: 25px;
    margin: 20px;
    bottom: 62vw;
  }
  .youtubeMain > div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
  }

  .youtubeVideo {
    width: 100%;
    height: 63vw;
  }
  #cardName {
    position: absolute;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: bold;
    color: white;
    top: 0;
    display: inherit;
    width: inherit;
    align-items: inherit;
    justify-content: inherit;
    bottom: inherit;
    font-size: 1.5vw;
  }
  #cardName > span:nth-child(1) {
    top: 35.5vw;
    left: 10.5vw;
    position: absolute;
  }
  #cardName > span:nth-child(2) {
    top: 35.5vw;
    right: 57.5vw;
    position: absolute;
  }
  #cardName > span:nth-child(3) {
    top: 35.5vw;
    left: 58.5vw;
    position: absolute;
  }
  #cardName > span:nth-child(4) {
    top: 35.5vw;
    right: 9vw;
    position: absolute;
  }
  /*
  --------------------------------------------------------
  */
  /*하단바 디자인 부분*/
  #tail_logo > .header_items {
    margin: 8px 15px;
  }
  #tail_logo > .header_items > div > img {
    width: 7vw;
  }
  #tail_logo > .social_box > .footer_items {
    margin: 0 1vw;
  }
  #tail_logo > .social_box > .footer_items > div {
    width: 5vw;
  }
  #tail_logo > .social_box > .footer_items > div > img {
    width: 4vw;
  }
  #tail_logo > .social_box > .footer_items > div > span {
    font-size: 1vw;
  }
  /*
 window modal
 */
  .modalX > i {
    font-size: 2vw;
    cursor: pointer;
  }
  /*
  SignIn
  */
  #modalSignIn {
    position: fixed;
    border-radius: 10px;
    width: 45vw;
    height: 45vw;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    visibility: hidden;
    z-index: 990;
    display: block;
    font-family: 'Noto Sans KR';
  }
  #modalSignIn > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 10px;
    font-size: 1.5vw;
    font-weight: bold;
  }
  #modal_signInContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }
  #modal_signInContainer > div {
    margin-bottom: 15px;
    cursor: pointer;
    width: 35vw;
  }
  #modal_signInContainer > p {
    margin-bottom: 15px;
    cursor: default;
    width: 3vw;
  }
  #modal_signInContainer > h3 {
    color: #b1bad3;
    font-size: 1.5vw;
    font-weight: bold;
    margin: 10px 0;
  }
  /*
  Register
  */
  #modalRegister {
    position: fixed;
    border-radius: 10px;
    width: 45vw;
    height: 45vw;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    visibility: hidden;
    z-index: 990;
    display: block;
    font-family: 'Noto Sans KR';
  }
  #modalRegister > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 10px;
    font-size: 1.5vw;
    font-weight: bold;
  }
  #modal_registerContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }
  #modal_registerContainer > div {
    margin-bottom: 15px;
    cursor: pointer;
    width: 35vw;
  }
  #modal_registerContainer > p {
    margin-bottom: 15px;
    cursor: default;
    width: 3vw;
  }
  #modal_registerContainer > h3 {
    color: #b1bad3;
    font-size: 1.5vw;
    font-weight: bold;
    margin: 10px 0;
  }
  #modal_registerContainer > strong {
    font-size: 1.5vw;
  }
  .register_input {
    margin-left: 0vw;
  }

  #system_link {
    position: fixed;
    border-radius: 10px;
    /*transform: translate(-50%, -50%);*/
    visibility: hidden;
    z-index: 990;
    font-family: 'Noto Sans KR';
  }
  #system_link > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 10px;
    font-size: 1.5vw;
    font-weight: bold;
  }
  #modal_system_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }
  #modal_system_link > div {
    margin-bottom: 15px;
    width: 60vw;
  }
  #modal_system_link > span {
    font-size: 1.5vw;
    margin: 1vw 0;
  }
  #modal_system_link > p {
    margin-bottom: 15px;
    cursor: default;
    width: 3vw;
  }
  #modal_system_link > div > .not_connect_box > img {
    width: 10vw;
    margin-right: 2vw;
  }
  #modal_system_link > div > .not_connect_box > span {
    font-size: 2vw;
    margin-left: 2vw;
  }
  #modal_system_link > div > .link_connect > span > img {
    width: 10vw;
  }
  #modal_system_link > div > .link_connect > span > button {
    font-size: 1.5vw;
    padding: 1vw 1.5vw;
  }
  #modal_system_link > div > .link_connect > div > span {
    font-size: 1.5vw;
  }
  #modal_system_link > div > .link_connect > div > input {
    padding: 1vw 1.5vw;
    font-size: 1.5vw;
    margin: 1.5vw 0;
    border: 0.2vw solid black;
    width: 40vw;
  }
  #modal_system_link > div > .link_connect > span > span {
    font-size: 1.5vw;
  }
  .modal_toggleSwitch {
    padding: 1.5vw 1.5vw;
    font-size: 1.5vw;
  }


  .seeMore_container > div {
    font-size: 2vw;
    margin-bottom: 5vw;
    padding: 1.5vw;
  }
  .seeMore_container > div > strong {
    padding: 0.5vw;
    margin-left: 1vw;
  }
}

















/* Desktop */
@media (min-width: 1280px) {
  #container {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 1400px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
  }

  /*아이디 마스크 부분*/
  #mask {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.5) repeat;
    top: 0;
    left: 0;
    z-index: 880;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
  }

  /*메인 헤더 시작지점*/
  #header_container {
    width: 100%;
    height: 8vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(23, 14, 48);
    position: fixed;
    top: 0;
    max-width: 1400px;
    z-index: 800;
  }

  #header_main {
    width: 100%;
    max-width: 1400px;
    display: block;
  }

  #header_items_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  #sidebarClose {
    display: none;
  }
  #header_items_container > #logo_container > .header_items > .logo > img {
    margin-top: 60px;
  }
  #header_items_container > #logo_container > .header_items > .logoLastContainer > img {
    width: 100%;
    cursor: pointer;
  }
  #logo_container {
    margin-left: 15px;
    display: block;
    width: 133px;
    position: relative;
    top: 30px;
  }
  .logoLastContainer {
    width: 110px;
  }
  #menu_container {
    display: flex;
    width: 100%;
    justify-content: center;
    position: static;
    overflow: auto;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    transition: none;
    background: none;
    flex-direction: inherit;
    order: 1;
  }
  .menu_item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  #menu {
    justify-content: space-between;
    width: 100%;
    height: 50px;
    margin: 0;
    flex-direction: inherit;
  }
  .sign_btn_box {
    position: inherit;
    margin: 0;
    order: 2;
  }
  #signIn {
    width: 110px;
    height: 50px;
    color: whitesmoke;
    background: none;
    font-size: 15px;
  }
  #signIn:hover {
    background-color: whitesmoke;
    color: #1475E1;
  }
  #signUp {
    width: 110px;
    height: 50px;
    color: #f9f9f9;
    font-size: 15px;
  }
  #signUp:hover {
    background-color: rgba(20, 117, 225, 0.6);
  }
  .myPage_container {
    order: 3;
    margin: 0 40px;
    margin-left: 0;
    position: initial;
  }
  #myPage {
    cursor: pointer;
    width: 125px;
    flex-direction: initial;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  #myPage > i {
    font-size: 20px;
  }
  #myPage > span {
    font-size: 20px;
  }
  #myPage:hover {
    color: rgb(77, 61, 161);
  }
  #menu > li > a {
    display: flex;
    align-items: center;
    color: white;
    transition: transform ease-in-out 0.3s;
    margin: 0;
    cursor: pointer;
  }

  #menu > li > a:hover {
    transform: scale(1.1, 1.1);
  }

  #menu > li > a > .icons > img {
    width: 29px;
    height: 29px;
    margin-left: 0;
  }

  #menu > li > a > .item_text {
    font-size: 13px;
    padding-left: 7px;
    font-weight: bold;
  }

  /*메타마스크 버튼*/
  /*#wallet_container {*/
  /*  position: relative;*/
  /*  display: inline-block;*/
  /*  margin-left: 1px;*/
  /*  width: 189px;*/
  /*  height: 29px;*/
  /*  margin-right: 15px;*/
  /*  display: none;*/
  /*}*/

  /*#wallet_container > #connect_button {*/
  /*  position: absolute;*/
  /*  width: inherit;*/
  /*}*/

  /*#wallet_container > #connect_button > img {*/
  /*  width: inherit;*/
  /*}*/

  /*#wallet_container > #htc_container {*/
  /*  position: absolute;*/
  /*  width: inherit;*/
  /*  visibility: visible;*/
  /*}*/

  /*#wallet_container > #htc_container > img {*/
  /*  width: inherit;*/
  /*}*/

  strong.htc_text {
    position: absolute;
    font-size: 87%;
    color: white;
    top: 7px;
    right: 43px;
  }

  /*content 로 감싸는 탭*/
  .content {
    display: flex;
    flex-direction: column;
    background-color: black;
    margin-top: 8vh;
    max-width: 1400px;
    padding: 0;
    position: relative;
  }
  /*메인 컨텐츠 이미지 모음*/
  .main_content_img {
    width: 100%;
    display: flex;
    justify-content: center;
    max-width: 1400px;
    position: relative;
    /*height: 900px;*/
    align-items: center;
  }
  .main_content_img > div > a > img {

  }
  .main_content_img > img:nth-child(3) {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
  }
  .main_content_img > img:nth-child(1) {
    display: none;
  }
  .main_content_img > img:nth-child(2) {
    display: none;
  }
  .main_content_img > div {
    /*position: absolute;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 400px;
    color: whitesmoke;
    font-weight: bolder;
    margin: 0;
    left: 120px;
    top: 280px;
  }
  .portrait_submit {
    display: none;
  }
  .landscape_submit {
    display: none;
  }

  /* game, submit textContents */
  #gameSubmit_title {
    z-index: 1;
    display: flex;
    flex-direction: initial;
    width: 100%;
    margin-top: 0;
    top: 15px;
    left: 65px;
  }
  #gameSubmit_title > div {
    display: flex;
    align-items: center;
    color: white;
  }
  #gameSubmit_title > div:last-child {
    margin-left: 465px;
  }
  #gameSubmit_title > div > img {
    width: 25px;
  }
  #gameSubmit_title > div > strong {
    font-size: 15px;
    margin-left: 2px;
  }

  #gameSubmit_textCon {
    color: #C3B5FF;
    justify-content: center;
    display: flex;
    flex-direction: inherit;
    width: 100%;
  }
  #gameSubmit_textCon > strong {
    margin-top: 200px;
    margin-bottom: 0;
    line-height: 20px;
    word-spacing: 5px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    width: 550px;
    height: 100px;
  }
  #gameSubmit_textCon > strong:last-child {
    margin-left: 40px;
  }
  /*----------------------------------------------------------*/


  /* 메인 top textContent */
  #mainTopText {
    margin-top: 35px;
    left: initial;
    width: initial;
  }
  #mainTopText > h1 {
    font-size: 50px;
  }
  #mainTopText > strong {
    line-height: 28px;
    word-spacing: 5px;
    font-size: 20px;
    margin: 0 165px;
  }

  #main_play_text {
    left: initial;
    width: initial;
  }
  #main_play_text > h1 {
    font-size: 2vw;
  }
  /*
  -----------------------------------------------------------------------------------------------------------
  */
  .landscape_main_img {
    display: none;
  }
  .web_main_img {
    display: block;
  }
  .main_content_img > .main_btnImg_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    margin-top: 30px;
  }
  .main_content_img > .main_btnImg_container > div > a {
    width: 380px;
    margin-bottom: 30px;
    cursor: pointer;
  }
  .main_content_img > .main_btnImg_container > div > span {
    width: 370px;
    margin-bottom: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(20,117,225);
    color: white;
    padding: 20px 0;
    font-size: 25px;
    font-weight: bold;
    border-radius: 7px;
  }
  .main_content_img > .main_btnImg_container > div > .web_main_img {
    width: 650px;
    cursor: default;
    margin-left: 30px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .main_content_img > .main_btnImg_container > div > img {
    width: 90%;
    margin: 10px 0;
    cursor: pointer;
  }
  .main_content_img > .main_btnImg_container > div > span:hover {
    opacity: 0.7;
  }
  .main_content_img > .main_btnImg_container > div > div {
    width: 400px;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    align-items: initial;
  }
  .main_content_img > .main_btnImg_container > div > div > img {
    cursor: pointer;
    width: 124px;
  }
  .main_content_img > .main_btnImg_container > div > div > img:hover {
    opacity: 0.7;
  }
  /*
  -----------------------------------------------------------------------------------------
  */
  .main_content_img > span {
    /*position: absolute;*/
    color: whitesmoke;
    font-weight: bolder;
    display: flex;
    /*bottom: 25px;*/
    width: 80%;
    justify-content: space-between;
    margin-top: 25px;
  }
  .main_content_img > span > span {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 27px;
    height: 75px;
    margin-bottom: 110px;
  }
  /*.main_content_img > span > span:last-child {*/
  /*  margin-top: 0;*/
  /*}*/
  .main_content_img > span > span > h2 {
    font-family: "Noto Sans KR";
    color: #00eaff;
    padding: 10px 0;
    font-size: 20px;
  }
  .main_content_img > span > span > span {
    font-family: "Noto Sans KR";
    font-size: 40px;
    margin-bottom: 10px;
    color: #00ff42;
  }
  .main_content_img > span > span > a {
    font-size: 12px;
    margin-top: 8px;
    color: #a3bfea;
    transition: transform ease-in-out 0.3s;
    cursor: pointer;
  }
  .main_content_img > span > span > a:hover {
    transform: scale(1.2, 1.2);
  }
  .main_content_img > span > span > a > img {
    width: 45px;
  }

  /*main ingame tap*/
  .main_inGame_btn {
    top: 300px;
    max-width: 1400px;
    left: -360px;
  }
  .main_inGame_btn > a {
    width: 310px;
    margin-bottom: 30px;
    cursor: pointer;
  }
  .main_inGame_btn > div {
    margin-bottom: 15px;
  }
  .main_inGame_btn > div > h1 {
    font-size: 35px;
  }
  .main_inGame_btn > div > img {
    width: 70px;
    margin-right: 15px;
  }
  .main_playBtn {
    width: 300px;
    padding: 15px 0;
    font-size: 25px;
    margin: 10px 0;
  }
  .main_playBtn:hover {
    background-color: rgba(0,231,1,0.7);
  }
  .main_inGame_btn > img {
    margin-bottom: 30px;
    width: 390px;
  }
  /*
  play Game now
  */
  .game_submit_tap {
    width: 100%;
    display: flex;
    justify-content: center;
    max-width: 1400px;
    position: relative;
    height: 500px;
    align-items: center;
  }
  .game_submit_tap > .web_submit {
    width: 100%;
    height: 100%;
    display: block;
  }
  .game_submit_tap > .web_submit > img {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .game_submit_tap > .web_submit > div {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    width: 100%;
    top: 55px;
  }
  .game_submit_tap > .web_submit > div > img {
    width: 40%;
    margin: 0 15px;
    cursor: default;
    transition: transform 0.3s ease-in-out;
  }
  .game_submit_tap > .web_submit > p {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    width: 100%;
    bottom: 35px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .game_submit_tap > .web_submit > p > span {
    width: 40%;
    margin: 0 14px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    background-color: rgb(20,117,225);
    padding: 13px 0;
    font-size: 20px;
    font-weight: bold;
    color: white;
    border-radius: 5px;
  }
  .game_submit_tap > .web_submit > p > span:hover{
    transform: scale(1.05,1.05);
  }

  /*메인 이미지 css*/
  .slide {
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }


  /*youtube 동영상 보여주는 탭*/
  .youtubeMain {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(29, 18, 84, 0.5);
    flex-direction: column;
  }
  .youtubeMain > img {
    display: none;
  }
  .youtubeMain > h2 {
    font-size: 40px;
    margin: 20px;
    bottom: initial;
    top: -5vw;
  }
  .youtubeMain > div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: initial;
  }

  .youtubeVideo {
    width: 100%;
    height: 40vw;
  }


  /* youTube 안에 있는 HTC 설명란*/
  #cardName {
    display: none;
  }
  #web_cardName {
    position: absolute;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: bold;
    color: white;
    top: 625px;
    font-size: 15px;
  }
  #web_cardName > span:nth-child(1) {
    position: absolute;
    width: 150px;
    right: 333px;
    text-align: center;
  }
  #web_cardName > span:nth-child(2) {
    position: absolute;
    width: 150px;
    right: 62px;
    text-align: center;
  }
  #web_cardName > span:nth-child(3) {
    position: absolute;
    width: 150px;
    left: 65px;
    text-align: center;
  }
  #web_cardName > span:nth-child(4) {
    position: absolute;
    width: 150px;
    left: 347px;
    text-align: center;
  }
  /*
  --------------------------------------------------------
  */
  #NFT_textCon {
    display: none;
  }
  #P2E_textCon {
    display: none;
  }
  #NFT_web_textCon {
    position: absolute;
    align-items: initial;
    bottom: initial;
    top: 0;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: bold;
    color: white;
    flex-direction: column;
    margin: 0 120px;
    text-align: center;
  }
  #NFT_web_textCon > h2 {
    font-size: 50px;
    margin: 20px 30px;
    font-weight: bolder;
  }
  #NFT_web_textCon > h2 > span {
    font-size: 30px;
  }
  #NFT_web_textCon > strong {
    color: #C3B5FF;
    margin: 0;
    line-height: 20px;
    word-spacing: 1px;
    font-size: 15px;
  }

  #P2E_web_textCon {
    position: absolute;
    display: flex;
    align-items: initial;
    bottom: 210px;
    left: 670px;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: bold;
    color: white;
    flex-direction: column;
    width: 720px;
  }
  #P2E_web_textCon > h2 {
    font-size: 55px;
    margin: 20px;
    font-weight: bolder;
  }
  #P2E_web_textCon > h2 > span {
    font-size: 35px;
  }
  #P2E_web_textCon > strong {
    color: #C3B5FF;
    margin: 0 20px;
    line-height: 30px;
    word-spacing: 1px;
    font-size: 15px;
  }
  /*-----------------------------------*/


  /*하단바 디자인 부분*/
  #tail_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #170e30;
  }
  #tail_logo > .header_items {
    margin: 8px 10px;
  }
  #tail_logo > .header_items > div > img {
    width: 90px;
  }
  #tail_logo > .social_box {
    display: flex;
  }
  #tail_logo > .social_box > .footer_items {
    margin: 10px;
  }
  #tail_logo > .social_box > .footer_items > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75px;
  }
  #tail_logo > .social_box > .footer_items > div > img {
    width: 50px;
    border-radius: 100%;
  }
  #tail_logo > .social_box > .footer_items > div > img:hover {
    border: 3px solid rgb(103, 99, 180);
    background:
    linear-gradient(black,black) padding-box,
    linear-gradient(40deg, gold, royalblue) border-box;
    transition: all ease-in-out 0.4s;

  }
  #tail_logo > .social_box > .footer_items > div > span {
    color: white;
    font-size: 15px;
    font-weight: bold;
    margin-top: 3px;
  }
  /*    모바일용 예외처리 모음      */
  .menuSidebar {
    display: none;
  }
  #landscape_main2 {
    display: none;
  }

  /*
  window modal
  */
  .modalX > i {
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s linear;
  }
  .modalX > i:hover {
    color: gray;
  }
  /*
    SignIn
  */

  #modalSignIn {
    position: fixed;
    border-radius: 10px;
    width: 500px;
    height: 500px;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    visibility: hidden;
    z-index: 990;
    display: block;
    font-family: 'Noto Sans KR';
  }
  #modalSignIn > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 10px;
    font-size: 17px;
    font-weight: bold;
  }
  #modal_signInContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }
  #modal_signInContainer > p {
    margin-bottom: 15px;
    cursor: pointer;
    width: 30px;
  }
  #modal_signInContainer > div {
    margin-bottom: 15px;
    cursor: pointer;
    width: 400px;
  }
  #modal_signInContainer > h3 {
    color: #b1bad3;
    font-size: 14px;
    font-weight: bold;
    margin: 15px 0;
  }
  #modal_signInContainer > h3 > span {
    color: white;
    cursor: pointer;
  }
  /*
   Register
   */

  #modalRegister {
    position: fixed;
    border-radius: 10px;
    width: 500px;
    height: 500px;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
    visibility: hidden;
    z-index: 990;
    display: block;
    font-family: 'Noto Sans KR';
  }
  #modalRegister > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 10px;
    font-size: 17px;
    font-weight: bold;
  }
  #modal_registerContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }
  #modal_registerContainer > p {
    margin-bottom: 15px;
    cursor: pointer;
    width: 30px;
  }
  #modal_registerContainer > div {
    margin-bottom: 15px;
    cursor: pointer;
    width: 400px;
  }
  #modal_registerContainer > h3 {
    color: #b1bad3;
    font-size: 14px;
    font-weight: bold;
    margin: 15px 0;
  }
  #modal_registerContainer > h3 > span {
    color: white;
    cursor: pointer;
  }
  #modal_registerContainer > strong {
    font-size: 15px;
  }
  .register_input {
    margin-left: 0;
  }
    /*------------------------------------------------------------*/
  #system_link {
    position: fixed;
    border-radius: 10px;
    width: 800px;
    height: 880px;
    left: 50vw;
    top: 50vh;
    transform: translate(-50%, -50%);
  }
  #system_link > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 10px;
    font-size: 17px;
    font-weight: bold;
  }
  #modal_system_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }
  #modal_system_link > p {
    margin-bottom: 30px;
    cursor: pointer;
    width: 30px;
  }
  #modal_system_link > span {
    font-size: 19px;
    margin: 15px 0;
  }
  #modal_system_link > div {
    margin-bottom: 30px;
    padding: 20px 50px;
    width: 670px;
  }
  #modal_system_link > div > .link_connect > span {
    margin-right: 20px;
  }
  #modal_system_link > div > .not_connect_box > img {
    width: 110px;
    margin-right: 30px;
  }
  #modal_system_link > div > .not_connect_box > span {
    font-size: 25px;
    margin-left: 30px;
  }
  #modal_system_link > div > .link_connect > span > img {
    width: 110px;
  }
  #modal_system_link > div > .link_connect > span > button {
    font-size: 15px;
    padding: 10px 20px;
    margin-top: 5px;
  }
  #modal_system_link > div > .link_connect > span > span {
    font-size: 15px;
  }
  #modal_system_link > div > .link_connect > div > span {
    font-size: 15px;
  }
  #modal_system_link > div > .link_connect > div > input {
    padding: 10px 15px;
    font-size: 16px;
    margin: 15px 0;
    border: 2px solid black;
    width: 430px;
  }
  .modal_toggleSwitch {
    padding: 15px 20px;
    font-size: 15px;
  }
  .seeMore_container > div {
    font-size: 20px;
    margin-bottom: 40px;
    padding: 15px;
  }
  .seeMore_container > div > strong {
    padding: 5px;
    margin-left: 10px;
  }
}
