@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

.sns-twitter::before {
  content: "\e61b";
}

.sns-instagram::before {
  content: "\f16d";
}

body {
  background: linear-gradient(135deg, #fff9fc 0%, #fff5f9 100%);
  background-size: 400% 400%;
  animation: backgroundShimmer 15s ease infinite;
  font-family: "Noto Sans JP", sans-serif;
}

.wrap {
  margin-bottom: 20px;
}

.event__container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #fff9fc;
  box-shadow: 0 10px 30px rgba(140, 92, 184, 0.15);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.event__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}
@media only screen and (max-width: 767px) {
  .event__container {
    margin: 20px;
    padding: 20px;
  }
}
.event__title {
  font-size: 2.5em;
  color: #ff4b8b;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
  position: relative;
  text-shadow: 2px 2px 4px rgba(255, 75, 139, 0.1);
}
@media only screen and (max-width: 767px) {
  .event__title {
    font-size: 1.8em;
  }
}
.event__description {
  line-height: 2;
  margin: 40px 0;
  padding: 20px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95));
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(255, 75, 139, 0.05);
  position: relative;
  font-size: 1.1em;
  color: #444;
}
.event__description P {
  font-weight: bold;
  text-align: center;
}
.event__description P span {
  color: #b80000;
  font-size: 1.25rem;
  font-weight: bolder;
}
.event__info {
  text-align: center;
  background: #fef2f7;
  padding: 25px;
  border-radius: 15px;
  margin-top: 40px;
  border: 2px solid rgba(255, 143, 183, 0.2);
  position: relative;
  overflow: hidden;
}
.event__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 75, 139, 0.05) 0%, rgba(140, 92, 184, 0.05) 100%);
  z-index: 0;
}
.event__info h3 {
  color: #ff4b8b;
  margin: 0 0 20px 0;
  font-size: 1.4em;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 15px;
}
.event__info h3::before, .event__info h3::after {
  content: "✦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #8c5cb8;
  font-size: 0.8em;
}
.event__info h3::before {
  left: -10px;
}
.event__info h3::after {
  right: -10px;
}
.event__topics h2 {
  width: fit-content;
  margin: 0 auto;
}
.event__date {
  position: relative;
  z-index: 1;
  background: linear-gradient(to right, #ff4b8b, #ff8fb7);
  border-radius: 10px;
  font-size: 1.4em;
  font-weight: 800;
  text-align: center;
  color: #ffffff;
  width: fit-content;
  margin: 25px auto;
  padding: 10px 20px;
}

.important-notice {
  color: #ff4b8b;
  font-weight: bold;
  padding: 10px 15px;
  background: rgba(255, 75, 139, 0.1);
  border-radius: 8px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.staff-sign {
  text-align: right;
  margin-top: 30px;
  font-style: italic;
  color: #8c5cb8;
  position: relative;
  padding-right: 30px;
}

.carousel {
  position: relative;
  width: 100%;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(140, 92, 184, 0.15);
  user-select: none;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}
@media only screen and (min-width: 768px) {
  .carousel {
    max-width: 800px;
  }
}
@media only screen and (max-width: 767px) {
  .carousel {
    max-width: fit-content;
  }
}
.carousel:active {
  cursor: grabbing;
}
.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
@media only screen and (min-width: 768px) {
  .carousel-container {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .carousel-container {
    height: 50vw;
  }
}
.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 10px;
}
.carousel-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.carousel-nav-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.carousel-nav-dot.active {
  background: #fff;
  transform: scale(1.2);
}

@media only screen and (min-width: 768px) {
  .global_foot {
    height: 284px;
  }
}
.global_head {
  margin: 0 !important;
}

header, footer {
  position: relative;
  z-index: 9999999999;
}

.event__topics {
  margin: 40px 0;
}
.event__topics .topics__title {
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 30px;
  color: #ff4b8b;
  font-weight: 700;
  position: relative;
}
.event__topics .topics__title::before, .event__topics .topics__title::after {
  content: "✦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #8c5cb8;
  font-size: 0.8em;
}
.event__topics .topics__title::before {
  left: -30px;
}
.event__topics .topics__title::after {
  right: -30px;
}
.event__topics .product__carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  box-sizing: border-box;
}
.event__topics .product__carousel:active {
  cursor: grabbing;
}
.event__topics .product__carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.event__topics .product__carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 0;
}
.event__topics .product__carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  padding: 10px;
}
.event__topics .product__carousel-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 75, 139, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.event__topics .product__carousel-nav-dot:hover {
  background: rgba(255, 75, 139, 0.6);
}
.event__topics .product__carousel-nav-dot.active {
  background: #ff4b8b;
  transform: scale(1.2);
}
.event__topics .product__card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
  gap: 30px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 143, 183, 0.1);
}
@media only screen and (min-width: 768px) {
  .event__topics .product__card {
    display: flex;
  }
}
.event__topics .product__card img {
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .event__topics .product__card img {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .event__topics .product__card img {
    width: fit-content;
    width: 100%;
    margin: 0 auto;
  }
}
.event__topics .product__card img:hover {
  transform: scale(1.02);
}
.event__topics .product__info {
  flex: 1;
}
.event__topics .product__info h3 {
  font-size: 24px;
  color: #ff4b8b;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .event__topics .product__info h3 {
    margin: 0 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .event__topics .product__info h3 {
    margin: 20px 0 10px;
  }
}
.event__topics .product__idol {
  font-size: 18px;
  color: #8c5cb8;
  margin-bottom: 15px;
  font-weight: 500;
}
.event__topics .product__price {
  font-size: 28px;
  color: #ff4b8b;
  margin-bottom: 20px;
  font-weight: 800;
}
.event__topics .product__price .tax-included {
  font-size: 14px;
  color: #666;
  margin-left: 5px;
  font-weight: normal;
}
.event__topics .product__condition {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  background: rgba(255, 143, 183, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}
.event__topics .product__description {
  text-align: left;
  font-size: 0.9em;
  color: #444;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.7);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 143, 183, 0.1);
}
.event__topics .product__description p {
  margin-bottom: 15px;
  font-size: 1.1em;
}
@media only screen and (min-width: 768px) {
  .event__topics .product__description p {
    height: 210px;
  }
}
@media only screen and (max-width: 767px) {
  .event__topics .product__description p {
    height: calc(fit-content + 20px);
  }
}
.event__topics .product__description .staff-comment {
  height: 10px;
  text-align: right;
  color: #8c5cb8;
  font-style: italic;
  margin-top: 10px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .event__topics .product {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin: 0 10px;
  }
  .event__topics .product img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 768px) {
  .global_foot {
    height: 284px;
  }
}

.global_head {
  margin: 0 !important;
}

header, footer {
  position: relative;
  z-index: 9999999999;
}/*# sourceMappingURL=style.css.map */