@charset "UTF-8";

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
:root {
    --primary-color: #f5a10d;
    --hover-color: #e65447;
    --secondary-color: #1e3d6b;
    --text-color: #231815;
    --background-color: #f5f5f5;
    --heading-color: #474747;
    --header-title-color: #572377;
    --header-title-border: #a64fdb;
    --header-title-bg: rgba(255,255,255,0.9);
    --header-title-before: #6e4489;
    --footer-bg: #1e3d6b;
    --footer-title-border: #ccc;
    --footer-title-color: #fff;
    --footer-list-color: #fff;
    --footer-list-span: #ccc;
    --btn-clean-hover: #e86b41;
    --orange: #ea6c3b;
    --navbar-link-hover: #e6544799;
    --main-visual-bg1: #6963ad;
    --main-visual-bg2: #30a1cc;
    --main-visual-shadow: #fff;
    --main-panel-color: #572377;
    --table-border: #c1a7d1;
    --pagination-border: #16181b;
    --pagination-bg: #16181b;
    --pagination-active: #fff;
    --dropdown-shadow: rgba(0, 0, 0, 0.1);
    --slick-arrow: #e65447;
    --slick-arrow-hover: rgba(0,0,0,0.3);
    --swiper-bullet: #fff;
    --swiper-bullet-active: #fff;
    --swiper-bullet-border: #fff;
    --swiper-bullet-shadow: #fff;
    --border-primary: #2eaadd;
    --border-success: #28a745;
    --border-info: #17a2b8;
    --border-warning: #ffc107;
    --border-danger: #dc3545;
    --border-secondary: #6c757d;
    --border-light: #f8f9fa;
    --border-dark: #343a40;
    --header-height: 83px;
}
html {
    font-size: 0.85vw;
}
body {
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #231815;
  min-height: 100vh;
  font-family: 'Pretendard', Lato, sans-serif;
  overflow-x: hidden;
}
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;
}
.navigation.scrolled {
    background: rgba(0, 0, 0, 0.5);
    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%;
}
.navigation ul.main-nav li {
    margin: 0px;
    position: relative;
    flex: 1;
}
.navigation ul.main-nav > li > a {
    display: block;
    font-family: 'S-CoreDream';
    font-size: 1.2rem;
    padding: 1.5rem 0.5rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}
.navigation ul.main-nav > li > a:hover {
    color: var(--primary-color);
}
.navigation ul.main-nav li > ul {
    display: none;
    list-style: none;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    text-align: center;
    width:100%;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    background: #fff;
    z-index:1;
    animation-duration: 0.3s;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.3);
}
.navigation ul.main-nav li > ul li a {
    display: block;
    padding: 8px;
    font-size: 1.1525rem;
    font-weight: 500;
}
.navigation ul.main-nav li > ul:after {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 5px solid var(--primary-color);
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -11px;
    z-index: -1;
}
.navigation ul.main-nav li > ul li:first-child a {
    padding-top: 16px;
}
.navigation ul.main-nav li > ul li:last-child a {
    padding-bottom: 16px;
}
.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;
}
.main-visual {
    position: relative;
    background: url(/assets/images/main-back.webp) center center no-repeat, linear-gradient(344deg, var(--main-visual-bg1), var(--main-visual-bg2));
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.main-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images/noise-1.png) repeat;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.4;
    mix-blend-mode: overlay;
}
.main-visual .main-copy {
    max-width: 85%;
    width: 674px;
    margin: 30px 0;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
    z-index: 2;
    user-select: none;
    animation: twinkle 1.25s linear infinite;
}
.main-visual .vender1 {
    position: absolute;
    left: 2vw;
    bottom: 2vh;
}
.main-visual .vender2 {
    position: absolute;
    right: 2vw;
    bottom: 2vh;
}
.main-visual .row {
    width: 85%;
}
.fireworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}
.main-content {
    padding: 0;
}
.main-content h2 {
    margin-top: 6rem;
    margin-bottom: 4rem;
    text-align: center;
}
.main-ul {
    list-style-type: none;
    font-size: 1.225rem;
    padding: 2rem 0;
    margin: 0;
}
.main-ul li {
    border-top: 1px solid #c5d5ed;
    padding: 0.9rem;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
        padding-right: 100px;
}
.main-ul li:first-child {
    border-top: none;
}
.main-ul li small {
    position: absolute;
    right: 0.9rem;
    top:50%;
    transform: translateY(-50%);
}
.pageheader {
    background: url(/assets/images/noise-3.png) center center repeat, linear-gradient(344deg, var(--main-visual-bg1), var(--main-visual-bg2));
    overflow: hidden;
    position: relative;
    height: 530px;
    padding-top: var(--header-height);
    animation: backgroundAnimation 115s linear infinite;
}
.pageheader:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images/header-left.png) left top no-repeat;
    z-index: 2;
}
.pageheader:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images/header-right.png) right top no-repeat;
    z-index: 2;
}
.header-copy {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 670px;
    max-width: 65%;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
    z-index: 2;
}
.pageheader .char {
    position: absolute;
    bottom: 0;
    left: 140px;
    z-index: 1;
    animation: bouncing 2s infinite;
}
.pageheader .char2 {
    position: absolute;
    bottom: 94px;
    right: 78px;
    z-index: 1;
    animation: bouncing 1.73s infinite;
}
.pageheader .stars-2 {
    position: absolute;
    top: 22%;
    left: 23%;
    z-index: 1;
    animation: twinkle-float 3.13s infinite;
    width: 75px;
}

.pageheader .stars-1 {
    position: absolute;
    top: 58%;
    left: 74%;
    z-index: 1;
    animation: twinkle-float 4.21s infinite;
    width: 60px;
}
.pageheader h1 {
    text-align: center;
    padding: 5rem 0;
    margin: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 3.2rem;
    position: relative;
    z-index: 2;
}
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-list-color);
  line-height: 1.5;
  font-weight: 300
}
footer ul li span {
  display: inline-block;
  color: var(--footer-list-span);
}
.footer-title span {
  font-weight: 500;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--footer-title-border);
  padding-bottom: 0px;
  margin-bottom: 1rem;
  display: inline-block;
  color: var(--footer-title-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;
}

.swiper-slide .item {
  aspect-ratio: 1903/545;
  display: block;
  overflow: hidden;
}

.vender {
  background: #fff;
    padding: 2rem 0;
}
.vender ul {
    display: flex;
    padding: 0;
    margin: 0;
    /* width: 100%; */
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}
.vender ul:first-child {
    margin-bottom: 30px;
}
.vender ul li {
    line-height: 1;
    margin-right: 1rem;
}
.vender ul li:first-child {
    white-space: nowrap;
}
.vender ul li span {
    padding: 0 0.7rem 0 0;
    font-size: 1.3rem;
    color: #717071;
    font-weight: 800;
}
.vender ul li img {
    max-width:100%;
    height: 30px;
}
.swiper-button-next, .swiper-button-prev {
    background: transparent;
    background-image: none !important;
    width: 50px;
    height: 50px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,0.4);
    padding-top: 4px;
    text-align: center;
}
.swiper-button-next i, .swiper-button-prev i {
    font-size: 40px;
    color: #fff;
    line-height: 0;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(0,0,0,0.3);
}
.swiper-pagination-bullet {
    transition: all 0.2s ease;
    width:35px;
    height:3px;
    border-radius: 0;
}
.swiper-pagination-bullet-active {
    background: #fff;
    width: 12px;
    height: 12px;
    width:45px;
    height: 3px;
}
.dropdown-menu {
  border-radius: 0;
  box-shadow: 2px 2px 4px var(--dropdown-shadow);
}

.embed-responsive {
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.page {
    min-height: 100vh;
    padding:12.5vh 0 12.5vh;
    background-size: cover;
    background-position: center top;
    position: relative;
}
.page:before {
    content: '';
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(245, 245, 245, 1), rgba(255, 255, 255, 0));
    z-index: 3;
}
.page h1 {
    text-align: center;
    position: relative;
}
.page h1 .page-title {
    position: relative;
    display: inline-block;
    font-family: 'yg-jalnan';
    color: var(--header-title-color);
    font-size: 2.4rem;
    margin-bottom: 7rem;
    background: var(--header-title-bg);
    border: 8px solid var(--header-title-border);
    padding: 0.8rem 4rem;
    border-radius: 100px;
    border-bottom-right-radius: 0;
    transform-style: preserve-3d;
}
.page h1 .page-title:before {
    transform: translateZ(-1px);
    content: '';
    position: absolute;
    left: -12px;
    top: -12px;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    background: var(--header-title-before);
}
.page h2 {
    font-size: 2.156rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
}
.page h2:first-child {
    margin-top: 0;
}
.page h2 small {
    font-weight: 300;
    font-size: 72%;
    color: var(--footer-list-span);
}
.page h3 {
    margin-top: 2rem;
}
.page p, .page li, .page td, .page th  {
    font-size: 1.145rem;
}
.page .panel {
    width: 707px;
    max-width: 90%;
    margin: 0 auto 2rem auto;
    padding: 1rem;
    background-color: #f8f9fa;
    background: url(/assets/images/noise-1.png) center center repeat, linear-gradient(45deg, var(--main-visual-bg1), var(--main-visual-bg2));
    border-radius: 20px;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1)
}
.page .panel p {
    margin: 0;
    color: #fff;
    word-break: keep-all;
}
.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: #e85548;
    background: rgba(255,255,255,0.7);
    z-index: 1000;
    border: 1px solid #e85548;
    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: #e85548;
    background: rgba(255,255,255,0.7);
    z-index: 1000;
    border: 1px solid #e85548;
    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;
}
.card {
    aspect-ratio: 1/1;
    border: 0;
    border-radius: 16px;
}
.card .card-title {
    text-align: center;
    color: var(--primary-color);
}
.card ul {
    list-style-type: square;
}
.card ul li::marker{
    color: var(--main-visual-bg1);
}
@keyframes bouncing {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
    
}
@keyframes twinkle-float {
  0% {
    opacity: 1;
    filter: brightness(1);
    transform: translateY(0);
  }
  20% {
    opacity: 0.6;
    filter: brightness(1.5);
  }
  40% {
    opacity: 1;
    filter: brightness(2);
    transform: translateY(-15px);
  }
  60% {
    opacity: 0.5;
    filter: brightness(1.2);
  }
  80% {
    opacity: 0.8;
    filter: brightness(1.7);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: translateY(0);
  }
}
@keyframes twinkle {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
  100% {
    filter: brightness(1);
  }
}
@keyframes backgroundAnimation {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0% -456px, 0 0;
    }
    
}
@media (min-width: 1300px) {
  .container {
    max-width: 1280px;
  }
}
@media (max-width:1500px) {
    html {
        font-size: 1vw;
    }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 2rem;
  }
  .navigation ul.main-nav > li::after{
    content: '';
    position: absolute;
    right: 0;
    top: 33px;
    width: 2px;
    height: 15px;
    background: rgba(255,255,255,0.75);
  }
  .navigation ul.main-nav > li:last-of-type::after {
    display: none;
  }
}
@media (max-width: 1155px) {
    .navigation .sns {
        display: none;
    }
    html {
        font-size: 1.1vw;
    }
}
@media (max-width: 768px) {
    .pageheader:before {
        left: -100px;
    }
    .pageheader:after {
        right: -120px;
    }
    .pageheader .char {
        left: -30px;
        z-index: 2    }
    .pageheader .char2 {
        right: 5px;
        bottom: 52px;
        z-index: 3    }
    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: #fff;
        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: var(--main-visual-bg1);
        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%;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 35px;
    }
    .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;
    }
}
@media (max-width: 500px) {
    .navbar-brand img {
        height: 40px;
    }
    
    .section {
        padding: 8vh 0;
        min-height: auto;
    }
    .page {
        min-height: auto;
    }
    
}
