@charset "UTF-8";
/******************************* Preface ***************************************/
a:hover {
  color: #EB0268;
}

/********************************* body ***************************************/
html {
  scroll-behavior: smooth;
}

body {
  background: #150718;
  /******************************** header **************************************/
  /********************************  Main Content ******************************/
  /***********************************  footer ********************************/
}
body header {
  position: relative;
}
body header.scrolled .inner {
  background-color: rgba(132, 1, 58, 0.5);
  transition: all linear 0.2s;
}
body header.header .inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: rgba(132, 1, 58, 0.8);
  z-index: 99;
}
body header.header .inner .logo {
  display: flex;
  align-items: center;
}
body header.header .inner .logo a {
  display: block;
}
body header.header .inner .logo a img {
  height: auto;
  object-fit: cover;
  position: absolute;
  width: 10rem;
  top: 5%;
}
body header.header .inner .menu-wrapper nav.gnav {
  flex: none;
  position: relative;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item {
  position: relative;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 1rem;
  line-height: 1;
  color: white;
  transition: all 0.3s;
  text-decoration: none;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a:hover {
  color: #EB0268;
  text-decoration: none;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #D9D9D9;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item:last-child::after {
  content: "";
}
body header.header .inner .sub-menu {
  display: flex;
  align-items: center;
}
body header.header .inner .sub-menu .search-form {
  margin-right: 1em;
}
body header.header .inner .sub-menu .search-form input {
  border-radius: 100rem;
  font-size: 0.9rem;
  padding: 0.7em 1.5em;
  font-weight: 500;
  background-color: white;
}
body header.header .inner .sub-menu .search-form input:focus {
  border-color: rgba(235, 2, 104, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(75, 140, 157, 0.25);
}
body header.header .inner .sub-menu .search-form button[type=submit] {
  display: block;
  padding: 0.5rem;
  background: transparent;
  border: 0;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}
body header.header .inner .sub-menu .search-form button[type=submit]:after {
  content: "\f52a";
  font-family: "bootstrap-icons";
  font-weight: bold;
  font-size: 1.1rem;
}
body header.header .inner .sub-menu .badge-btn {
  margin-right: 2em;
}
body header.header .inner .sub-menu .badge-btn button {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100rem;
  background-color: rgba(255, 255, 255, 0.4);
}
body header.header .inner .sub-menu .badge-btn button:after {
  content: "\f189";
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "bootstrap-icons";
  font-weight: bold;
  font-size: 1rem;
  color: white;
}
body header.header .inner .sub-menu .login-btn {
  width: 40%;
}
body header.header .inner .sub-menu .login-btn a {
  display: flex;
  align-items: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px;
  border-radius: 100rem;
  text-decoration: none;
}
body header.header .inner .sub-menu .login-btn a .bi-person-fill {
  display: inline-block;
  color: black;
  background: white;
  border-radius: 100rem;
}
body header.header .inner .sub-menu .login-btn a .bi-person-fill::before {
  font-size: 1rem;
  padding: 0.5rem;
}
body header.header .inner .sub-menu .login-btn a span {
  display: block;
  padding: 0 1em;
  font-weight: bold;
}
@media screen and (min-width: 678px) and (max-width: 1150px) {
  body header.header .inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: rgba(132, 1, 58, 0.8);
    z-index: 99;
  }
  body header.header .inner .logo {
    display: flex;
    align-items: center;
  }
  body header.header .inner .logo a {
    display: block;
  }
  body header.header .inner .logo a img {
    height: 3rem;
    width: auto;
  }
  body header.header .inner .menu-wrapper nav.gnav {
    flex: none;
    position: relative;
  }
  body header.header .inner .menu-wrapper nav.gnav .menu-container .menu {
    display: flex;
    align-items: center;
  }
  body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item {
    position: relative;
    width: 20%;
  }
  body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a {
    display: block;
    font-size: 0.8px;
    font-weight: bold;
    padding: 1rem;
    line-height: 1;
    color: white;
    transition: all 0.3s;
  }
  body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a:hover {
    color: #EB0268;
    text-decoration: none;
  }
  body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #D9D9D9;
  }
  body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item:last-child::after {
    content: "";
  }
  body header.header .inner .sub-menu {
    justify-content: flex-end;
    width: 100%;
    margin-top: 1rem;
  }
}
body main .bg_grad {
  background-image: linear-gradient(to bottom, #EB0268, #150718);
}
body main .mainvi-wrap {
  position: relative;
}
body main .mainvi-wrap .wrapper {
  position: relative;
  background-image: linear-gradient(to bottom, #EB0268, #150718);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  min-height: 100vh;
  transform-style: preserve-3d;
  overflow-x: hidden;
}
body main .mainvi-wrap .wrapper .box {
  position: relative;
  display: block;
  perspective: 500px;
  transform: translate3d(0, 0, 0);
  width: 100%;
  height: 550px;
}
body main .mainvi-wrap .wrapper .box .item {
  position: absolute;
  top: calc(50% - 300px);
  left: calc(50% - 300px);
  width: 615px;
  aspect-ratio: 915/650;
  height: auto;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transform-origin: bottom;
  user-select: none;
  -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.1333333333));
  transition: all 0.8s ease, opacity 0s;
}
body main .mainvi-wrap .wrapper .box .item.item-1 {
  transform: translate3d(-250px, 0, 0) scale(0.8) rotateY(25deg);
  z-index: 1;
}
body main .mainvi-wrap .wrapper .box .item.item-2 {
  transform: translate3d(-250px, 0, 0) scale(0.8) rotateY(25deg);
  z-index: 2;
}
body main .mainvi-wrap .wrapper .box .item.item-3 {
  transform: translate3d(-150px, 0, 0) scale(0.9) rotateY(15deg);
  z-index: 3;
}
body main .mainvi-wrap .wrapper .box .item.item-4 {
  transform: translate3d(0px, 0, 0) scale(1) rotateY(0deg);
  z-index: 4;
}
body main .mainvi-wrap .wrapper .box .item.item-5 {
  transform: translate3d(150px, 0, 0) scale(0.9) rotateY(-15deg);
  z-index: 3;
}
body main .mainvi-wrap .wrapper .box .item.item-6 {
  transform: translate3d(250px, 0, 0) scale(0.8) rotateY(-25deg);
  z-index: 2;
}
body main .mainvi-wrap .wrapper .box .item.item-7 {
  transform: translate3d(250px, 0, 0) scale(0.8) rotateY(-25deg);
  z-index: -1;
}
body main .mainvi-wrap .wrapper .box img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 915/650;
  border-radius: 20px;
}
body main .mainvi-wrap .wrapper .box .btn-wrap {
  position: absolute;
  bottom: 2em;
  left: 2em;
  display: flex;
}
body main .mainvi-wrap .wrapper .box .btn-wrap button {
  width: 100%;
  min-width: 200px;
  padding: 0.3rem 2rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .mainvi-wrap .wrapper .box .btn-wrap button::before {
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
}
body main .mainvi-wrap .wrapper .box .btn-wrap button.playback {
  background: white;
  margin-right: 0.5rem;
}
body main .mainvi-wrap .wrapper .box .btn-wrap button.playback::before {
  content: url(../img/icon_play.svg);
}
body main .mainvi-wrap .wrapper .box .btn-wrap button.mylist {
  background: rgba(0, 0, 0, 0.5);
  color: white;
}
body main .mainvi-wrap .wrapper .box .btn-wrap button.mylist::before {
  content: url(../img/icon_mylist.svg);
}
body main .mainvi-wrap .wrapper .buttons {
  position: relative;
  display: flex;
  gap: 20px;
  z-index: 1;
}
body main .mainvi-wrap .wrapper .buttons span {
  position: relative;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
body main .mainvi-wrap .wrapper .buttons span:hover {
  opacity: 1;
}
body main .mainvi-wrap .wrapper .buttons span::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  rotate: -45deg;
}
body main .mainvi-wrap .wrapper .buttons span:last-child:before {
  content: "";
  position: absolute;
  left: initial;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  rotate: 135deg;
}
@media screen and (min-width: 678px) and (max-width: 1150px) {
  body main .mainvi-wrap .wrapper {
    position: relative;
    background-image: linear-gradient(to bottom, #EB0268, #150718);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    min-height: 80vh;
    transform-style: preserve-3d;
    overflow-x: hidden;
  }
  body main .mainvi-wrap .wrapper .box {
    position: relative;
    display: block;
    perspective: 500px;
    transform: translate3d(0, 0, 0);
    width: 100%;
    height: 300px;
  }
  body main .mainvi-wrap .wrapper .box .item {
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 250px);
    width: 450px;
    aspect-ratio: 16/10;
    height: auto;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transform-origin: bottom;
    user-select: none;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.1333333333));
    transition: all 0.8s ease, opacity 0s;
  }
  body main .mainvi-wrap .wrapper .box img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 20px;
  }
  body main .mainvi-wrap .wrapper .box .btn-wrap {
    position: absolute;
    bottom: 2em;
    left: 2em;
    display: flex;
  }
  body main .mainvi-wrap .wrapper .box .btn-wrap button {
    width: 100%;
    min-width: 200px;
    padding: 0.3rem 2rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body main .mainvi-wrap .wrapper .box .btn-wrap button::before {
    width: 30px;
    height: 30px;
    margin-right: 0.5rem;
  }
  body main .mainvi-wrap .wrapper .box .btn-wrap button.playback {
    background: white;
    margin-right: 0.5rem;
  }
  body main .mainvi-wrap .wrapper .box .btn-wrap button.playback::before {
    content: url(../img/icon_play.svg);
  }
  body main .mainvi-wrap .wrapper .box .btn-wrap button.mylist {
    background: rgba(132, 1, 58, 0.4);
    color: white;
  }
  body main .mainvi-wrap .wrapper .box .btn-wrap button.mylist::before {
    content: url(../img/icon_mylist.svg);
  }
  body main .mainvi-wrap .wrapper .buttons {
    position: relative;
    display: flex;
    gap: 20px;
    z-index: 1;
  }
  body main .mainvi-wrap .wrapper .buttons span {
    position: relative;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
  }
  body main .mainvi-wrap .wrapper .buttons span:hover {
    opacity: 1;
  }
  body main .mainvi-wrap .wrapper .buttons span::before {
    content: "";
    position: absolute;
    left: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    rotate: -45deg;
  }
  body main .mainvi-wrap .wrapper .buttons span:last-child:before {
    content: "";
    position: absolute;
    left: initial;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    rotate: 135deg;
  }
}
body main section header h2 {
  font-size: 1.8rem;
  font-weight: bold;
}
body main section header .sub {
  font-size: 1.5rem;
  font-weight: 500;
}
body main section header .icon::after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 1em;
}
body main section header .icon.icon-crown::after {
  background-image: url(../img/icon_crown.svg);
  width: 45px;
  height: 40px;
}
body main section header .icon.icon-arrow::after {
  background-image: url(../img/arrow_white.svg);
  width: 72px;
  height: 72px;
}
body main section header .icon.icon-pickup::after {
  background-image: url(../img/icon_pickup.svg);
  width: 60px;
  height: 40px;
}
body main section header.header-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body main section header.header-card-prof h2 {
  font-size: 1.4rem;
  font-weight: 500;
}
body main section header.header-card-prof .sub {
  font-size: 1.2rem;
  font-weight: 500;
}
body main section header.header-card-prof .icon::after {
  margin-left: 0.5em;
}
body main section header.header-card-prof .icon.icon-arrow::after {
  width: 30px;
  height: 30px;
}
body main #top_matter_ranking .slider {
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.2);
  overflow-x: scroll;
  padding: 2rem 0;
  cursor: grab;
  counter-reset: ranking_num 0;
}
body main #top_matter_ranking .slider::-webkit-scrollbar {
  background: #84013A;
  height: 3px;
}
body main #top_matter_ranking .slider::-webkit-scrollbar-thumb {
  background: #EB0268;
  height: 3px;
}
body main #top_matter_ranking .slider .list-item {
  counter-increment: ranking_num 1;
  overflow: hidden;
  margin-right: 1.5rem;
  margin-left: 0;
  width: 100%;
  min-width: 300px;
}
body main #top_matter_ranking .slider .list-item:last-child {
  margin-right: 0;
}
body main #top_matter_ranking .slider .list-item > .thumb::before {
  font-family: "Montserrat", sans-serif;
  display: block;
  content: counter(ranking_num) " ";
  position: absolute;
  top: 26%;
  left: 30px;
  color: white;
  text-align: center;
  font-size: 10rem;
  font-weight: bold;
  opacity: 0.5;
}
body main .matter-list-thumb-wrap {
  display: flex;
}
body main .matter-list-thumb-wrap .list-item {
  overflow: hidden;
  position: relative;
}
body main .matter-list-thumb-wrap .list-item .thumb {
  position: relative;
  display: flex;
  justify-content: space-evenly;
}
body main .matter-list-thumb-wrap .list-item .thumb a {
  display: block;
  margin-left: auto;
}
body main .matter-list-thumb-wrap .list-item .thumb img {
  aspect-ratio: 12/16;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
body main .matter-list-thumb-wrap .list-item .title {
  color: white;
  text-align: center;
  padding: 0.2rem 0 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
body main .matter-list-thumb-wrap.category-list-thumb-wrap .list-item {
  overflow: hidden;
  position: relative;
  margin-right: 1rem;
}
body main .matter-list-thumb-wrap.category-list-thumb-wrap .list-item .thumb {
  display: block;
}
body main .matter-list-thumb-wrap.category-list-thumb-wrap .list-item .thumb a {
  display: block;
  margin-left: 0;
}
body main .matter-list-thumb-wrap.category-list-thumb-wrap .list-item .thumb a .rectangle {
  aspect-ratio: 16/12;
}
body main .matter-list-thumb-wrap.category-list-thumb-wrap .list-item .title {
  text-align: left;
}
body main #top_matter_category .slider {
  overflow-x: scroll;
  padding: 2rem 0;
  cursor: grab;
}
body main #top_matter_category .slider::-webkit-scrollbar {
  display: none;
}
body main #top_matter_category .slider::-webkit-scrollbar-thumb {
  display: none;
}
body main #top_matter_category .slider .list-item {
  overflow: hidden;
  margin-right: 1.5rem;
  margin-left: 0;
  width: 100%;
  min-width: 200px;
}
body main #top_matter_category .slider .list-item:last-child {
  margin-right: 0;
}
body main .main-video-contents .main-video .video-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
body main #video_comment {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 1rem;
}
body main .comment-container {
  width: 80%;
  margin: 0 auto;
  background: white;
}
body main .comment-container .live-chat-text {
  padding: 0.5em 1em;
  border-bottom: 1px solid #D9D9D9;
}
body main .comment-container .live-chat-text .icon img {
  display: block;
  object-fit: cover;
  width: 65px;
  height: 65px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 100rem;
  margin-right: 1rem;
}
body main .comment-container .live-chat-text .text {
  width: 70%;
}
body main .comment-container .live-chat-text .text .name {
  font-weight: bold;
}
body main .video-content-header h3 {
  font-size: 1.2rem;
  font-weight: 500;
}
body main .performer-info-wrap .performer-card {
  margin-right: 2em;
}
body main .performer-info-wrap .performer-card:nth-child(3n) {
  margin-right: 0;
}
body main .performer-info-wrap .performer-card .d-flex .thumb {
  width: 40%;
  margin-bottom: 0.5rem;
}
body main .performer-info-wrap .performer-card .d-flex .thumb img {
  display: block;
  object-fit: cover;
  width: 140px;
  height: 140px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 100rem;
}
body main .performer-info-wrap .performer-card .d-flex .text {
  width: 70%;
  padding-left: 1em;
  color: white;
}
body main .performer-info-wrap .performer-card .d-flex .text .name {
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
}
body main .performer-info-wrap .performer-card .d-flex .text p {
  font-size: 0.9rem;
}
body main .nav-tabs {
  border: none;
}
body main .nav-tabs.no-line {
  border-bottom: 2px solid transparent;
}
body main .nav-tabs .nav-item .nav-link {
  border-radius: 100em;
  border: none;
  margin-bottom: -2px;
  font-size: 1.1rem;
  color: white;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.3em 2em;
  margin-right: 0.5em;
}
body main .nav-tabs .nav-item .nav-link:hover {
  border: none;
}
body main .nav-tabs .nav-item .nav-link.active {
  background: white;
  color: black;
}
body main .container .inner {
  padding: 0 5rem;
}
body main .container .inner .list-thumb-wrap .list-thumb-inner {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: calc(1000px + 6rem);
  margin: 0 auto;
}
body main .container .inner .list-thumb-wrap .list-thumb-inner .thumb-item {
  width: 200px;
  position: relative;
}
body main .container .inner .list-thumb-wrap .list-thumb-inner .thumb-item a {
  position: relative;
  display: block;
  height: 100%;
  color: white;
}
body main .container .inner .list-thumb-wrap .list-thumb-inner .thumb-item a img {
  width: 100%;
  border-radius: 5px;
/*  aspect-ratio: 16/12;  bob modify 0828*/
}
body main .container .inner .list-thumb-wrap .list-thumb-inner .thumb-item a .view-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 2px 6px;
  font-size: 0.75rem;
  border-radius: 4px;
}
body main .container .inner .list-thumb-wrap .list-thumb-inner .thumb-item.vertical a img {
  aspect-ratio: 12/16;
}
body main .container .inner .list-thumb-wrap .list-thumb-inner .thumb-item .title {
  padding: 7px 0 0;
  color: white;
}
body main .container .inner .list-thumb-wrap .list-thumb-inner .thumb-item .title .card-title {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
}
body main .container .inner .list-thumb-wrap .list-thumb-inner .thumb-item .title p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
body main .cat_thumb_list_wrap .card {
  display: block;
  border: none;
  background: none;
  text-decoration: none;
  transition: all 0.3s;
}
body main .cat_thumb_list_wrap .card:hover {
  opacity: 0.7;
}
body main .cat_thumb_list_wrap .card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 5px;
}
body main .cat_thumb_list_wrap .card .thumb-none {
  border-radius: 5px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .cat_thumb_list_wrap .card .card-body .card-title {
  font-size: 1rem;
}
body main .form_ui_wrap.keyword {
  display: inline-block;
  width: 50%;
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem;
  margin-bottom: 2rem;
}
body main .form_ui_wrap.keyword .form-control {
  padding: 0.5rem 1rem;
  width: 42%;
}
body main .form_ui_wrap.keyword .form-select {
  width: 42%;
}
body main .form_ui_wrap.keyword .btn {
  padding: 0.5rem 1.5rem;
  background: #405BFD;
  color: white;
}
body main .login-header {
  padding: 3rem 0 1rem 0;
}
body main .login-header .logo {
  padding-bottom: 0.5rem;
}
body main .login-header .logo img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
body main .login-header h1 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
body main .login-container {
  margin: auto;
  width: 600px;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0.5rem;
  padding: 3rem 5rem;
  background-color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4rem;
}
body main .login-container h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}
body main .login-container h2 span.sub {
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
  opacity: 0.5;
  margin-top: 0.5rem;
}
body main .login-container label {
  color: #800440;
  font-weight: bold;
}
body main .login-container .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
body main .login-container .form-group:after {
  font-family: "bootstrap-icons";
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  color: black;
  z-index: 100;
}
body main .login-container .form-group.email:after {
  content: "\f32c";
}
body main .login-container .form-group.password:after {
  content: "\f47a";
  transform: translateY(-50%) scaleX(1.4);
}
body main .login-container .form-group input[name=email],
body main .login-container .form-group input[name=password] {
  padding: 0.5rem;
}
body main .login-container .form-group label {
  color: #800440;
  font-weight: bold;
  padding-left: 0;
  padding-bottom: 0.5rem;
}
body main .login-container .form-check {
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .login-container .form-check label {
  color: #800440;
  font-weight: bold;
  font-size: 1rem;
  padding-left: 0.5rem;
}
body main .login-container button[type=submit] {
  margin-top: 1rem;
  display: block;
  width: 100%;
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1.2rem 0;
  border-radius: 100rem;
  background: #EB0268;
}
body main .login-container .reminder {
  text-align: center;
  margin-top: 1rem;
}
body main .login-container .reminder a {
  color: #0E0E0E;
  font-size: 1.1rem;
}
body main .about-header .about-header-bg {
  background-image: url(../img/faq_header_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
body main .about-header .container {
  padding: 10em 0;
}
body main .about-header .container .inner {
  display: flex;
  justify-content: space-between;
}
body main .about-header .container .inner img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
body main .about-header .container .inner .left {
  width: 45%;
}
body main .about-header .container .inner .left a {
  width: 60%;
  margin-top: 2em;
  display: block;
  position: relative;
  background: #EB0268;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  padding: 1.3rem 1rem;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.32);
}
body main .about-header .container .inner .left a::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 8px;
  background: url("../img/icon_btn_arrow.svg") no-repeat center;
  background-size: contain;
}
body main .about-header .container .inner .right {
  width: 48%;
}
body main .pages .pages-title {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 3rem;
}
body main .pages .pages-title span {
  display: block;
  font-size: 1rem;
}
body main .pages .about-us {
  color: white;
  text-align: center;
  margin-bottom: 10%;
}
body main .pages .about-us .txt-head {
  font-size: 1.3rem;
  font-weight: bold;
  padding-bottom: 1.5rem;
}
body main .pages .about-us .box-col-2 {
  display: flex;
  justify-content: space-between;
  margin: 3rem auto;
}
body main .pages .about-us .box-col-2 > * {
  width: calc(50% - 20px);
  background: white;
  border-radius: 20px;
  padding: 2rem 1rem;
  color: #EB0268;
}
body main .pages .about-us .box-col-2 img {
  display: block;
  width: 55px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}
body main .pages .about-us .box-col-2 h3 {
  font-size: 1.3rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
body main .pages .qa {
  color: white;
  text-align: center;
  margin-bottom: 10%;
}
body main .pages .qa .accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
}
body main .pages .qa .accordion .accordion-item .accordion-header button {
  color: #EB0268;
  font-weight: bold;
}
body main .pages .qa .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
}
body main .pages .qa .accordion .accordion-item .accordion-header .accordion-button:focus {
  border: none;
  box-shadow: none;
}
body main .pages .qa .accordion .accordion-item .accordion-body {
  text-align: left;
}
body main .pages .qa .accordion .accordion-item .accordion-button::after {
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin-left: auto;
  content: "+";
  font-size: 1.5rem;
  font-weight: bold;
  color: #EB0268;
  background-image: none;
  transition: transform 0.2s ease;
}
body main .pages .qa .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  content: "−";
}
body main .pages .regist {
  background-image: linear-gradient(150deg, rgb(172, 223, 239) 29%, rgb(240, 159, 220));
  color: white;
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
}
body main .pages .regist p {
  width: 60%;
  font-size: 2.5rem;
  font-weight: bold;
}
body main .pages .regist div {
  width: 350px;
}
body main .pages .regist div a {
  display: block;
  position: relative;
  background: #EB0268;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  padding: 1.3rem 1rem;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.32);
}
body main .pages .regist div a::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 8px;
  background: url("../img/icon_btn_arrow.svg") no-repeat center;
  background-size: contain;
}
body main .list-content {
  display: flex;
  flex-wrap: wrap;
}
body main .list-content .list-item {
  width: calc((100% - 7.5rem) / 6);
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
body main .list-content .list-item:nth-child(6n) {
  margin-right: 0;
}
body main .list-content .list-item .thumb {
  position: relative;
}
body main .list-content .list-item .thumb::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: url("../img/icon_players_arrow.svg") no-repeat center;
  background-size: contain;
  width: 23px;
  height: 23px;
}
body main .list-content .list-item .thumb a {
  display: block;
  border-radius: 15px;
  border: 2px solid white;
}
body main .list-content .list-item .thumb a img {
  display: block;
  width: 100%;
  aspect-ratio: 200/281;
  object-fit: cover;
  border-radius: 15px;
}
body main .list-content .list-item .title {
  color: white;
  padding: 0.5rem;
}
body footer {
  background-color: rgba(235, 2, 104, 0.5);
  padding: 5rem 0;
}
body footer.footer .flex-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3rem;
}
body footer.footer .flex-wrap .info {
  width: 35%;
}
body footer.footer .flex-wrap .info .sns-link-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
body footer.footer .flex-wrap .info .sns-link-wrap a {
  display: block;
  margin-right: 2rem;
}
body footer.footer .flex-wrap .info .sns-link-wrap a img {
  display: block;
  width: 36px;
  height: 36px;
}
body footer.footer .flex-wrap .info .logo img {
  display: block;
  padding-bottom: 2rem;
  width: 100%;
  max-width: 240px;
}
body footer.footer .flex-wrap .tail {
  width: 65%;
}
body footer.footer .flex-wrap .tail h5 {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  color: white;
}
body footer.footer .flex-wrap .tail ul.nav {
  padding-top: 1.5rem;
}
body footer.footer .flex-wrap .tail ul.nav li.nav-item a {
  display: inline-block;
  font-size: 0.9rem;
  color: white;
}

.list-search-form button.btn {
  background-color: white;
  color: #EB0268;
  font-weight: bold;
  line-height: 1;
}

.page-general {
  padding: 3rem 1rem;
}
.page-general .inner {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 0.5rem;
  padding: 2rem !important;
}
.page-general .inner table,
.page-general .inner td,
.page-general .inner th {
  background-color: transparent;
}

.mypage-wrap .username {
  position: relative;
}
.mypage-wrap .username span.badge {
  background-color: #aaa;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
}
.mypage-wrap .username span.badge.premium {
  background-color: #EB0268;
}
.mypage-wrap table,
.mypage-wrap td,
.mypage-wrap th {
  background-color: transparent !important;
}
.mypage-wrap .coin_view_input {
  position: relative;
}
.mypage-wrap .coin_view_input::after {
  content: "PT";
  position: absolute;
  top: 50%;
  right: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  transform: translateY(-50%);
  color: #666;
}
.mypage-wrap .logout-btn button {
  font-size: 0.8rem !important;
  padding: 0.8rem 0 !important;
  background-color: #777 !important;
}
.mypage-wrap .btn-back {
  font-size: 0.8rem !important;
  padding: 0.8rem 0 !important;
  background-color: #777 !important;
  text-align: center;
  display: block;
  color: white;
  font-weight: bold;
  border-radius: 100rem;
}
.mypage-wrap input[readonly] {
  background-color: #ddd;
}
.mypage-wrap .coin-select-btn {
  font-weight: bold;
  background-color: white;
  border: 2px solid #EB0268;
  margin: 0 0.5rem 0.5rem 0;
}
.mypage-wrap .coin-select-btn.active {
  background-color: #EB0268;
  color: white;
}
.mypage-wrap .buy-btn button {
  width: 100%;
  font-size: 1rem !important;
  padding: 1rem 0 !important;
  background-color: #EB0268 !important;
  text-align: center;
  display: block;
  color: white;
  font-weight: bold;
  border-radius: 100rem;
}
