@charset "UTF-8";

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
:root {
    --pageheader-height: 400px;
    --header-height: 106px;
    --footer-bg: #1b2339;
    --footer-color: #ddd;
    --hover-color: #fff33b;
    --header-bg-hover: rgba(0,0,0,0.7);
    --body-bg: #f2f2f2;
    --secondary-color:#515362;
}
html {
    font-size: 0.85vw;
}
body {
  margin: 0;
  padding: 0;
  color: #231815;
  min-height: 100vh;
  font-family: 'Pretendard', Lato, sans-serif;
  overflow-x: hidden;
  background: var(--body-bg);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Pretendard", Lato, sans-serif;
  font-weight: 800;
  color: var(--heading-color);
}
h3 {
  font-size: 1.5rem;
  position: relative;
  color: var(--secondary-color);
}
h3.noline:after {
  display: none;
}
a {
  color: inherit;
}
a:hover {
  color: #8a8a8a;
  text-decoration: none;
}
img {
  pointer-events: none;
  max-width: 100%;
}
a img {
  pointer-events: all;
}
.text-fullshadow {
  text-shadow: 2px 2px #fff, -2px -2px #fff, 2px -2px #fff, -2px 2px #fff, 0px 2px #fff, 0px -2px #fff, 2px 0 #fff, -2px 0 #fff;
}
.btn {
  border-radius: 4px; 
}
.btn.btn-clean {
    border-color: #fff;
    background: transparent;
    color: #fff;
    border-radius: 4px;
    transform: translateY(-2px);
    padding-top: 8px;
}
.btn.btn-clean:hover {
    background: #fff;
    color: var(--btn-clean-hover);
}
.orange {
    color: var(--orange) !important;
}
.navbar-toggler {
  color: #777;
}
.logo {
    padding: 0.3rem 0.5rem;
}
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    height: var(--header-height);
    transition: all 0.3s ease;
    z-index: 1050;
    font-family: 'SUIT';
}
.navigation.scrolled, .navigation:hover {
    background: var(--header-bg-hover);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navigation ul.main-nav {
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    width: 50%;
    justify-content: center;
}
.navigation ul.main-nav li {
    margin: 0px;
    position: relative;
}
.navigation ul.main-nav > li > a {
    display: block;
    font-size: 1.2rem;
    padding: 1.5rem 3.256rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}
.navigation ul.main-nav > li > a:hover {
    color: var(--hover-color);
}

.navigation ul.main-nav li:hover > ul, .navigation ul.main-nav li:focus-within > ul {
    display: block;
}
.navigation .logo {
    left: 30px;
    top: 15px;
}
.navigation .sns {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.navigation .sns li {
    margin: 0 0.4rem;
    display: block;
    font-size: 1.2rem;
    
    color: #fff;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}
.navigation .sns li a {
    background: rgba(0,0,0,0.2);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
}
.navigation .sns li a:hover {
    background: #8b00ff;
    color: #fff;
    border-color: #8b00ff;
}
.navigation .sitemap {
    height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: var(--header-height);
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    
}
.pageheader {
    height: var(--pageheader-height);
    padding-top: var(--header-height);
    background: linear-gradient(225deg, #202331, #090e1d);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    padding-bottom: 21px;
}
.pageheader:after {
    content:'';
    position: absolute;
    bottom: 0;
    left: 0;
    width:100%;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(242,242,242,0.05), rgba(242,242,242,0.1), rgba(242,242,242,0.25) 70%, rgba(242,242,242,0.5),rgba(242,242,242,0.8), var(--body-bg));
    user-select: none;
    pointer-events: none;
}
.pageheader h1 {
    font-family: 'SUIT';
    text-align: center;
    color: #fff;
    margin-top: 3rem;
    letter-spacing: 2px;
    z-index: 2;
}
.sub-navigation ul {
    display: flex;
    list-style: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    background: rgba(0,0,0,0.6);
    padding: 5px;
    gap: 10px;
}
.sub-navigation ul li {
    flex: 1;
}
.sub-navigation ul li a, .sub-navigation ul li button {
    padding: 1rem 0;
    display: block;
    text-align: center;
    position: relative;
    color: #fff;
    border-radius: 8px;
    width: 100%;
    box-shadow: none;
    background: transparent;
    border: 0;
}
.sub-navigation ul li a:hover, .sub-navigation ul li.active a, .sub-navigation ul li.active button, .sub-navigation ul li:hover button {
    background: #101423;
    color: var(--hover-color);
}
.pageheader #stars {
    position: absolute;
    left: 0;
    top: 0;
    width:100%;
    height: 100%;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}
.pageheader .light {
    position: absolute;
    width:6.2rem;
}
.pageheader .light.light-1 {
    right: 0;
    top: 75px;
}
.pageheader .light.light-2 {
    left: 0;
    top: 75px;
}
.pageheader .moon {
    position: absolute;
    right: 80px;
    width:15vw;
    bottom: 80px;
}
.page {
    padding: 6.5rem 0;
}
.page img {
    border-radius: 4px;
}
.footer {
  padding: 4.5vh 0 8vh;
  background: var(--footer-bg);
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer ul li {
  font-size: 0.9rem;
  color: var(--footer-color);
  line-height: 1.5;
  font-weight: 300
}
.footer ul li span {
  display: inline-block;
  color: var(--footer-color);
}
.footer .footer-sns {
    opacity: 0.8;
    font-size: 20px;
}
.footer .footer-sns a {
    margin-right: 15px;
}
.footer-title span {
  font-weight: 500;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--footer-color);
  padding-bottom: 0px;
  margin-bottom: 1rem;
  display: inline-block;
  color: var(--footer-color);
}

.mobmenu {
  overflow: hidden;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(55deg, rgb(17 20 21 / 80%), #1c2022);
}
.mobmenu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobmenu ul li {
  font-size: 25px;
  font-weight: 100;
  margin-bottom: 1rem;
  opacity: 0;
  color: #fff;
  transform: translateX(15px);
  transition: all 0.4s ease 0.4s;
}
.mobmenu ul li:nth-child(2) {
  transform: translateX(35px);
  animation-delay: 0.7s;
}
.mobmenu ul li:nth-child(3) {
  transform: translateX(65px);
  animation-delay: 1s;
  animation-duration: 1s;
}
.mobmenu ul li:nth-child(4) {
  transform: translateX(85px);
  animation-delay: 1.3s;
  animation-duration: 1.5s;
}
.mobmenu ul li:nth-child(5) {
  transform: translateX(95px);
  animation-delay: 1.5s;
  animation-duration: 2s;
}
.mobmenu ul li:nth-child(6) {
  transform: translateX(105px);
  animation-delay: 1.7s;
  animation-duration: 2.5s;
}
.mobmenu.open ul li {
  opacity: 1;
  transform: translateX(0);
}
.mobmenu ul li a {
  position: relative;
}
.mobmenu.open {
  transform: translateY(0%);
}
.mobmenu ul > ul {
  padding-left: 25px;
}
.mobmenu ul > ul > li {
  font-size: 18px;
  margin-bottom: 7px;
}
.mobmenu ul > ul > li a {
  font-size: 18px;
}
.mobmenu #mobmenuclose {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 25px;
}

.pagination {
  justify-content: center;
}
.pagination li a {
  padding: 6px 12px;
  border: 1px solid var(--pagination-border);
  color: #777;
  text-decoration: none;
}
.pagination li.active a {
  background: var(--pagination-bg);
  color: var(--pagination-active);
}
.pagination li:hover a {
  background: var(--pagination-bg);
  color: var(--pagination-active) !important;
}
.pagination li:first-child a {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination li:last-child a {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.privacy .well {
    background: #fff;
    overflow-x: auto;
    overflow-y: scroll;
    padding: 1rem;
    height: 300px;
    margin-bottom: 5vh;
}
.privacy .well {
  font-size: 15px !important;
}
.privacy.well p, .privacy.well li {
  font-size: 15px !important;
}
.mobile-btn {
    display: none;
    position: fixed;
    right: 20px;
    top: 20px;
    color: var(--hover-color);
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-size: 26px;
    line-height: 1;
    border-radius: 5000px;
    width: 50px;
    height: 50px;
    text-align: center;
    padding-top: 12px;
}
.mobile-close {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--hover-color);
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    border: 1px solid var(--hover-color);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-size: 26px;
    line-height: 1;
    border-radius: 5000px;
    width: 50px;
    height: 50px;
    text-align: center;
    padding-top: 12px;
}
.m-logo {
    display: none;
    width:100%;
    margin-bottom: 5vh;
    margin-top: 3vh;
}
.m-logo img {
    height: 70px;
}

.m-sns {
    display: none;
}

.vender ul {
    display: flex;
    padding: 30px 0;
    margin: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
}
.comingsoon {
    text-align: center;
    color: var(--secondary-color);
}
@media (min-width: 1300px) {
  .container {
    max-width: 1280px;
  }
}
@media (max-width:1500px) {
    html {
        font-size: 1vw;
    }
}
@media (min-width: 1024px) {

.navigation:hover .sitemap {
    height: 294px;
    border-top: 1px solid rgba(255,255,255,0.2)
}
.navigation .sitemap ul {
    display: none;
    list-style: none;
    padding: 24px 0;
    margin: 0;
    flex: 0 0 20%;
    text-align: center;
    position: relative;
}
.navigation .sitemap ul:before {
    content:'';
    position: absolute;
    width:1px;
    height: 90%;
    top: 5%;
    left: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
}
.navigation .sitemap ul:last-child:after {
    content:'';
    position: absolute;
    width:1px;
    height: 90%;
    top: 5%;
    right: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
}
.navigation:hover .sitemap ul {
    display: block;
}
.navigation .sitemap ul li a {
    color: #e8e8e8;
    font-size: 1.15rem;
    padding: 7px 0;
    display: inline-block;
    position: relative;
}
.navigation .sitemap ul li a:hover {
    color: var(--hover-color);
}
}
@media (max-width: 1155px) {
    .navigation .sns {
        display: none;
    }
    html {
        font-size: 1.1vw;
    }
}
@media (max-width: 768px) {
    html {
        font-size: 3vw;
    }
    .main-visual .vender1, .main-visual .vender2 {
        height: 80px;
    }
    .navigation ul.main-nav {
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        transform: translate3D(100%, 0, 0);
        width: 100%;
        min-height: 100vh;
        background: linear-gradient(135deg, #171b29, #0e1322);
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0;
        margin: 0;
        flex-wrap: wrap;
        flex-direction: row;
        align-content: flex-start;
        transition: all 0.3s ease;
        z-index: 2000;
    }
    .navigation ul.main-nav.on {
        transform: translate3D(0, 0, 0);
    }
    .navigation ul.main-nav > li {
        width:50%;
        flex: 0 0 50%;
        padding: 0 15px;
        text-align: center;
    }
    .navigation ul.main-nav > li > a {
        display: inline-block;
        width:70%;
        padding: 2vh 0.5vh 0.5vh 0.5vh;
        font-size: 3.2vh;
        color: #fff;
        font-weight: 800;
    }
    .navigation ul.main-nav li > ul {
        position: static;
        display: block;
        border: 0;
        box-shadow: none;
        border-radius: 0;
    }
    .navigation ul.main-nav li > ul:after {
        display: none;
    }
    .navigation ul.main-nav li > ul li a {
        font-size: 18px;
        padding: 0.4vh 0.2vh;
        color:#545454;
    }
    .mobile-btn, .mobile-close, .m-logo, .m-sns {
        display: block;
    }
    .navigation {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .vender ul {
        width:100%;
        align-items: center;
    }
    .vender ul li {
        word-break: keep-all;
    }
    .vender ul li img {
        height: 25px;
    }
    .navigation {
        height: 90px;
    }
    .logo img {
        height: 50px;
    }
    .hidden-xs {
        display: none;
    }
    td {
        font-size: 1.3rem;
    }
    
    .slick-arrow {
        font-size: 25px;
    }
    .pageheader .moon {
        width:40vw;
        z-index: 1;
    }
    .pageheader .light {
        width:5rem;
    }
}
@media (max-width: 500px) {
    .navbar-brand img {
        height: 40px;
    }
    .page {
        min-height: auto;
    }
    
}
