@charset "UTF-8";
* {
  list-style: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: #fff;
  transition: 0.4s;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #1b1b1b;
  font-family: "Noto Sans JP", serif;
}

img {
  width: 100%;
}

header {
  background: #fff;
  padding: 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  header {
    padding: 1vw 2vw;
  }
}
header h1 {
  opacity: 0;
  transform: translateX(10%);
}
header h1.on {
  opacity: 1;
  transform: translate(0);
}
header h1 a {
  display: block;
  width: 20vw;
}
@media screen and (max-width: 767px) {
  header h1 a {
    width: 50vw;
  }
  header h1 a:hover {
    opacity: 0.5;
  }
}
header h2 {
  opacity: 0;
  transform: translateX(10%);
  color: #fff;
  font-family: "Audiowide", serif;
  font-size: 2vw;
  background: #e62a88;
  line-height: 2;
  padding: 0 1vw;
}
header h2.on {
  opacity: 1;
  transform: translate(0);
}
@media screen and (max-width: 767px) {
  header h2 {
    font-size: 4vw;
  }
}

#mv {
  opacity: 0;
  transform: scale(0.8);
}
#mv.on {
  opacity: 1;
  transform: scale(1);
}
#mv .swiper-button-next {
  background: url(https://www.1999.co.jp/images/parts/icon-slider-next.svg) no-repeat center center/contain;
  width: 3vw;
  height: 3vw;
}
@media screen and (max-width: 767px) {
  #mv .swiper-button-next {
    width: 8vw;
    height: 8vw;
  }
}
@media screen and (min-width: 767px) {
  #mv .swiper-button-next:hover {
    opacity: 0.5;
  }
}
#mv .swiper-button-next::before, #mv .swiper-button-next::after {
  content: none;
}
#mv .swiper-button-prev {
  background: url(https://www.1999.co.jp/images/parts/icon-slider-prev.svg) no-repeat center center/contain;
  width: 3vw;
  height: 3vw;
}
@media screen and (max-width: 767px) {
  #mv .swiper-button-prev {
    width: 8vw;
    height: 8vw;
  }
}
@media screen and (min-width: 767px) {
  #mv .swiper-button-prev:hover {
    opacity: 0.5;
  }
}
#mv .swiper-button-prev::before, #mv .swiper-button-prev::after {
  content: none;
}
#mv .swiper-pagination-bullet {
  width: 1vw;
  height: 1vw;
  background: #fff;
}
@media screen and (max-width: 767px) {
  #mv .swiper-pagination-bullet {
    width: 3vw;
    height: 3vw;
  }
}
#mv .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #49577b;
}

#category {
  width: 80%;
  margin: 0 auto;
  padding: 2vw 0;
}
@media screen and (max-width: 767px) {
  #category {
    padding: 5vw 0;
  }
}
#category.on ul li:nth-child(1) {
  transform: translateX(0%);
  opacity: 10;
  transition-delay: 0.05s;
}
#category.on ul li:nth-child(2) {
  transform: translateX(0%);
  opacity: 10;
  transition-delay: 0.1s;
}
#category.on ul li:nth-child(3) {
  transform: translateX(0%);
  opacity: 10;
  transition-delay: 0.15s;
}
#category.on ul li:nth-child(4) {
  transform: translateX(0%);
  opacity: 10;
  transition-delay: 0.2s;
}
#category.on ul li:nth-child(5) {
  transform: translateX(0%);
  opacity: 10;
  transition-delay: 0.25s;
}
#category.on ul li:nth-child(6) {
  transform: translateX(0%);
  opacity: 10;
  transition-delay: 0.3s;
}
#category.on ul li:nth-child(7) {
  transform: translateX(0%);
  opacity: 10;
  transition-delay: 0.35s;
}
#category.on ul li:nth-child(8) {
  transform: translateX(0%);
  opacity: 10;
  transition-delay: 0.4s;
}
#category.on ul li:nth-child(9) {
  transform: translateX(0%);
  opacity: 10;
  transition-delay: 0.45s;
}
#category.on ul li:nth-child(10) {
  transform: translateX(0%);
  opacity: 10;
  transition-delay: 0.5s;
}
#category ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(50px, 1fr));
  gap: 1vw;
}
@media screen and (max-width: 767px) {
  #category ul {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
#category ul li {
  transform: translateX(-10%);
  opacity: 0;
}
#category ul li a {
  background: #1b1b1b;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 0.5vw;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  #category ul li a:hover {
    background: #fff;
  }
  #category ul li a:hover img {
    transform: scale(1.1);
  }
  #category ul li a:hover span {
    color: #1b1b1b;
  }
}
#category ul li a img {
  width: 30%;
  border-radius: 0.5vw 0 0 0.5vw;
}
#category ul li a span {
  width: 70%;
  color: #fff;
  font-size: 0.9vw;
  display: flex;
  align-items: center;
  padding-left: 1vw;
}
@media screen and (max-width: 767px) {
  #category ul li a span {
    font-size: 3vw;
  }
}

h3 {
  font-size: 2.5vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 7vw;
  }
}

.cate_section {
  width: 80%;
  margin: 0 auto;
  padding: 1vw 0;
}
@media screen and (max-width: 767px) {
  .cate_section {
    padding: 5vw 0;
  }
}
.cate_section .inner .item_list {
  display: grid;
  grid-template-columns: repeat(9, minmax(50px, 1fr));
  gap: 1vw;
  margin-top: 3vw;
}
@media screen and (max-width: 767px) {
  .cate_section .inner .item_list {
    grid-template-columns: repeat(3, minmax(50px, 1fr));
  }
}
.cate_section .inner .item_list li a {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  background: #1b1b1b;
  border: 1px solid #fff;
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .cate_section .inner .item_list li a:hover {
    background: #fff;
  }
  .cate_section .inner .item_list li a:hover .detail .title {
    color: #1b1b1b;
  }
  .cate_section .inner .item_list li a:hover img {
    transform: scale(1.1);
  }
}
.cate_section .inner .item_list li a img {
  aspect-ratio: 14/17;
  -o-object-fit: cover;
  object-fit: cover;
}
.cate_section .inner .item_list li a .detail {
  padding: 0.75vw;
}
.cate_section .inner .item_list li a .detail .title {
  font-size: 1vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:3;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .cate_section .inner .item_list li a .detail .title {
    font-size: 3vw;
  }
}
.cate_section .inner .item_list li a .detail .price {
  color: #ea4450;
  font-size: 1vw;
  font-family: "Outfit", serif;
  margin-top: 0.5vw;
}
@media screen and (max-width: 767px) {
  .cate_section .inner .item_list li a .detail .price {
    font-size: 3vw;
  }
}
.cate_section .inner .item_list li a .detail .price span {
  color: #ea4450;
  font-size: 1.8vw;
  font-family: "Outfit", serif;
}
@media screen and (max-width: 767px) {
  .cate_section .inner .item_list li a .detail .price span {
    font-size: 5vw;
  }
}

#movie {
  width: 80%;
  margin: 0 auto;
  padding: 1vw 0;
  transform: translateY(10%);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #movie {
    width: 80%;
    padding: 10vw 0;
  }
}
#movie.on {
  transform: translateY(0%);
  opacity: 1;
}
#movie .inner{
  display: flex;
}
@media screen and (max-width: 767px) {
  #movie .inner{
    display: block;
  }
}

#movie .inner .youtube {
  width: 60%;
  margin: 0 auto;
  margin-top: 3vw;
}
@media screen and (max-width: 767px){
  #movie .inner .youtube {
    width: 100%;
  }
}

#movie .inner .youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#movie .inner p {
  font-size: 1.25vw;
  margin-top: 2vw;
}
@media screen and (max-width: 767px) {
  #movie .inner p {
    font-size: 3.5vw;
  }
}

#movie .inner .boxwrap{
  
  margin-top: 3vw;
  overflow: hidden;
  width: 40%;
  display: flex;
  flex-direction: column;
}
#movie .inner .boxwrap .bimg{
  width: 60%;
  height: auto;
  overflow: hidden;
  float: left;
  margin: 0 auto;
  margin-bottom: 10px;
}
#movie .inner .boxwrap .simg{  
  float: left;
  margin: 0 auto;
  width: 300px;
}
#movie .inner .boxwrap .simg ul{
  display: flex;
  width: 100%;
}
#movie .inner .boxwrap ul li{
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  margin-left: 10px;
  cursor: pointer;
}
#movie .inner .boxwrap ul li:hover{
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

@media screen and (max-width: 767px){
  #movie .inner .boxwrap{
    width: 100%;
    margin: 0 auto;
  }
  #movie .inner .boxwrap .bimg{
    width: 60%;
  }
  #movie .inner .boxwrap .simg{  
    width: 60%;
  }
}

#campaign,
#campaign_sub {
  width: 60%;
  margin: 0 auto;
  padding: 1vw 0;
  text-align: center;
}



@media screen and (max-width: 767px) {
  #campaign,
  #campaign_sub {
    width: 80%;
  }
}
#campaign.on,
#campaign_sub.on {
  transform: translateY(0%);
  opacity: 1;
}
#campaign .inner img,
#campaign_sub .inner img {
  width: 100%;
  margin: 0 auto;
  margin-top: 3vw;
}
#campaign .inner img iframe,
#campaign_sub .inner img iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#campaign .inner p,
#campaign_sub .inner p {
  text-align: center;
  font-size: 1.25vw;
  margin-top: 2vw;
}
@media screen and (max-width: 767px) {
  #campaign .inner p,
  #campaign_sub .inner p {
    font-size: 3.5vw;
  }
}

#campaign_sub {
  opacity: 1;
  transform: translate(0);
}

.btn a {
  display: block;
  background: #fff;
  color: #1b1b1b;
  font-family: "Outfit", serif;
  border-radius: 0.4rem;
  text-align: center;
  width: 20%;
  margin: 0 auto;
  margin-top: 2vw;
  padding: 1vw 0;
  font-weight: bold;
  font-size: 1vw;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 4vw;
    width: 50%;
    margin-top: 5vw;
    padding: 1.5vw 0;
  }
}
@media screen and (min-width: 767px) {
  .btn a:hover {
    background: #1b1b1b;
    color: #fff;
  }
}

footer {
  transform: translateY(10%);
  opacity: 0;
}
footer.on {
  transform: translateY(0%);
  opacity: 1;
}
footer .sns {
  display: grid;
  grid-template-columns: repeat(2, minmax(10px, 1fr));
  gap: 1vw;
  width: 10%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .sns {
    width: 20%;
    gap: 3vw;
  }
}
footer .sns li a {
  display: block;
}
@media screen and (min-width: 767px) {
  footer .sns li a:hover {
    transform: scale(0.9);
  }
}
footer .mail {
  background: #fff;
  padding: 3vw 0;
  margin-top: 2vw;
}
@media screen and (max-width: 767px) {
  footer .mail {
    padding: 6vw 0;
  }
}
footer .mail .inner {
  width: 80%;
  margin: 0 auto;
}
footer .mail .inner h3,
footer .mail .inner p {
  color: #1b1b1b;
  font-size: 1.25vw;
  margin-top: 2vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .mail .inner h3,
  footer .mail .inner p {
    font-size: 3.5vw;
  }
  footer .mail .inner h3 br,
  footer .mail .inner p br {
    display: none;
  }
}
footer .mail .inner h3 {
  font-size: 2.5vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .mail .inner h3 {
    font-size: 6vw;
  }
}
footer .mail .inner .btn a {
  background: #1b1b1b;
  color: #fff;
  border: 1px solid #1b1b1b;
}
@media screen and (min-width: 767px) {
  footer .mail .inner .btn a:hover {
    background: #fff;
    color: #1b1b1b;
  }
}

.float {
  position: fixed;
  bottom: 6vw;
  right: 1vw;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .float {
    bottom: 15vw;
  }
}
.float.none, .float.end {
  opacity: 0;
  pointer-events: none;
}
.float .close {
  width: 1vw;
  margin-left: auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .float .close {
    width: 5vw;
  }
}
@media screen and (min-width: 767px) {
  .float .close:hover {
    transform: scale(1.5);
  }
}
.float a {
  display: block;
  width: 18vw;
}
@media screen and (max-width: 767px) {
  .float a {
    width: 50vw;
  }
}
@media screen and (min-width: 767px) {
  .float a:hover {
    transform: scale(0.9);
  }
}

.totop {
  font-family: "Audiowide", serif;
  color: #49577b;
  position: fixed;
  bottom: 1vw;
  right: 1vw;
  z-index: 9;
  font-size: 2vw;
  cursor: pointer;
  pointer-events: painted;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .totop {
    font-size: 5vw;
  }
}
.totop.none {
  pointer-events: none;
  opacity: 0;
}
.totop::before {
  content: "▲";
  font-size: 1vw;
  position: fixed;
  bottom: 3vw;
  right: 3vw;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .totop::before {
    font-size: 4vw;
    bottom: 6vw;
    right: 5.5vw;
  }
}
@media screen and (min-width: 767px) {
  .totop:hover::before {
    bottom: 3.5vw;
  }
}/*# sourceMappingURL=style.css.map */




#age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.99);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* The modal content */
#age-verification .modal-content {
  background-color: #fff9f7;
  padding: 17px;
  text-align: center;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
}

#age-verification h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

#age-verification .buttons {
  display: flex;
  justify-content: space-evenly;
}

#age-verification button {
  background-color: #2d2f36;
  color: #fff9f7;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#age-verification button:hover {
  background-color: #0056b3;
}

#age-verification button:focus {
  outline: none;
}

/* Make the body content blur */
#main-content {
  filter: blur(5px);
  transition: filter 0.3s ease-in-out;
}

/* Ensure the header stays visible */
header {
  z-index: 1100;
  position: relative;
}

/* Reset the blur effect after the modal is closed */
#age-verification.hidden + #main-content {
  filter: none;
}