@charset "UTF-8";
/* ==========================================================================
   Variables
   ========================================================================== */
/* ==========================================================================
   Mixins
   ========================================================================== */
/* ==========================================================================
   Foundation (Base Styles)
   ========================================================================== */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #f0f0f0;
  line-height: 1.6;
  background-color: #111111;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  vertical-align: bottom;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.l-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
.l-container::before, .l-container::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 70%;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-container::before, .l-container::after {
    height: 100%;
  }
}
.l-container::before {
  top: 30%;
  left: 1rem;
  background-image: url("images/product02.webp");
}
@media screen and (min-width: 768px) {
  .l-container::before {
    top: 0;
  }
}
.l-container::after {
  top: 0;
  right: 1rem;
  background-image: url("images/product01.webp");
  background-position: right;
  z-index: 0;
}

.l-wrapper {
  position: relative;
  z-index: 2;
}
.l-wrapper:not(:last-child) {
  margin-bottom: 4rem;
}

/* ==========================================================================
   Component
   ========================================================================== */
/* Hero Component
   ========================================================================== */
.c-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("images/bgr.webp");
  background-size: cover;
  background-position: center 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-hero {
    background-position: 30% 30%;
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .c-hero {
    min-height: 100vh;
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .c-hero {
    min-height: 100vh;
    background-position: center;
  }
}
.c-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(208, 11, 116, 0.9) 0%, rgba(17, 17, 17, 0.4) 50%, rgba(17, 17, 17, 0.9) 100%);
  z-index: 1;
}

.c-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}

.c-hero__wrapper {
  width: 96%;
  padding: 20px 0;
  text-align: left;
}
@media (max-height: 500px) and (orientation: landscape) {
  .c-hero__wrapper {
    padding: 10px 0;
  }
}
@media screen and (min-width: 768px) {
  .c-hero__wrapper {
    width: 86%;
  }
}

.c-hero__title {
  font-family: "Oswald", sans-serif;
  font-size: 1.6em;
  margin: 0 auto;
  letter-spacing: 1px;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 768px) {
  .c-hero__title {
    font-size: 2.2em;
    letter-spacing: 2px;
  }
}
@media (min-width: 1024px) {
  .c-hero__title {
    font-size: 2.8em;
  }
}
@media (min-width: 1200px) {
  .c-hero__title {
    font-size: 3.6em;
    letter-spacing: 4px;
  }
}

.c-hero__subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 1.3em;
  margin: 0 auto;
  line-height: 1.25;
  color: #f0f0f0;
  text-align: center;
}
.c-hero__subtitle::after {
  display: none;
}
@media (min-width: 768px) {
  .c-hero__subtitle {
    font-size: 1.8em;
    letter-spacing: 2px;
  }
}
@media (min-width: 1024px) {
  .c-hero__subtitle {
    font-size: 2em;
  }
}
@media (min-width: 1200px) {
  .c-hero__subtitle {
    font-size: 2.6em;
  }
}

.c-hero__description {
  font-family: "Oswald", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: #f0f0f0;
  padding: 1rem 1rem 3rem;
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-hero__description {
    font-size: 1.2em;
  }
}
@media (min-width: 1024px) {
  .c-hero__description {
    font-size: 1.4em;
  }
}
@media (min-width: 1200px) {
  .c-hero__description {
    font-size: 1.8em;
  }
}

.c-hero__product-image {
  transform: rotate(-10deg);
  margin-bottom: 2rem;
  text-align: center;
}

/* Detail Section
   ========================================================================== */
.c-detail {
  margin-bottom: 0;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .c-detail {
    padding: 80px 0;
  }
}
.c-detail:last-of-type {
  border-bottom: none;
}

/* news Section
   ========================================================================== */
.c-news {
  margin-bottom: 0;
}
.c-news:last-of-type {
  border-bottom: none;
}
.c-news .c-content-block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.c-news .c-content-block .c-content-block__title {
  color: #d0d0d0;
  font-size: 1rem;
  margin: 0;
}
.c-news .c-content-block .c-content-block__title span {
  color: rgb(208, 11, 116);
  font-weight: normal;
}

/* Navigation Section
   ========================================================================== */
.c-navigation {
  margin-bottom: 0;
  text-align: center;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .c-navigation {
    padding: 80px 0;
  }
}

/* Section Title
   ========================================================================== */
.c-section-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.7em;
  color: "Oswald", sans-serif;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .c-section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .c-section-title {
    font-size: 2.5em;
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .c-section-title {
    font-size: 2.8em;
  }
}
.c-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: rgb(208, 11, 116);
}

/* Content Block
   ========================================================================== */
.c-content-block {
  margin-bottom: 40px;
}
.c-content-block a {
  color: #d0d0d0;
  text-decoration: none;
}
.c-content-block a:hover {
  color: #f0f0f0;
}

.c-content-block__title {
  font-size: 1.4em;
  color: "Oswald", sans-serif;
  position: relative;
  font-weight: 700;
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .c-content-block__title {
    font-size: 1.6em;
  }
}
@media (min-width: 1024px) {
  .c-content-block__title {
    font-size: 1.7em;
  }
}
@media (min-width: 1200px) {
  .c-content-block__title {
    font-size: 2em;
  }
}

.c-content-block__image {
  width: 375px;
  margin: 3rem auto;
  text-align: center;
}

.pop_icon {
  width: 100%;
  max-width: 375px;
  margin: auto;
  text-align: center;
}

.c-content-block__text {
  font-size: 1em;
  margin-bottom: 25px;
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  color: #f0f0f0;
}
@media (min-width: 1024px) {
  .c-content-block__text {
    font-size: 1.15em;
  }
}

/* Button Component
   ========================================================================== */
.c-button {
  display: inline-block;
  color: #ffffff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .c-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}
@media (min-width: 1024px) {
  .c-button {
    padding: 18px 45px;
    font-size: 1.3em;
  }
}
.c-button:hover {
  background-color: rgba(208, 11, 116, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(208, 11, 116, 0.6);
}

.c-button--primary {
  background-color: rgb(208, 11, 116);
  box-shadow: 0 5px 15px rgba(226, 71, 47, 0.4);
}

.c-button.c-button--home {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 0;
  padding: 1rem 1.5rem;
  color: #ffffff;
  transition: all 0.3s ease;
  font-weight: normal;
  font-size: 1em;
}
.c-button.c-button--home:hover {
  color: #ffffff;
}

/* Image Container
   ========================================================================== */
.c-image-container {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 480px) {
  .c-image-container {
    max-width: initial;
  }
}

.c-image-container__icon {
  width: 72px;
}
@media (min-width: 480px) {
  .c-image-container__icon {
    width: 50px;
  }
}

/* Link Area
   ========================================================================== */
.c-link-area {
  margin: auto;
  text-align: center;
}

/* Hashtags
   ========================================================================== */
.c-hashtags {
  text-align: center;
  margin-top: 50px;
  font-size: 1.4em;
  color: rgb(208, 11, 116);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .c-hashtags {
    font-size: 1.8em;
  }
}
@media (min-width: 1024px) {
  .c-hashtags {
    font-size: 2em;
  }
}
.c-hashtags small {
  color: white;
}

/* Note
   ========================================================================== */
.c-note {
  font-size: 1em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 2rem;
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-note {
    font-size: 1.2em;
  }
}

/* Schedule Component
   ========================================================================== */
.c-schedule {
  list-style: none;
  padding: 1rem 0;
  margin: 0 auto;
  text-align: left;
}

.c-schedule__item {
  background-color: #1a1a1a;
  margin-bottom: 2rem;
  padding: 2rem;
  border-left: 5px solid rgb(208, 11, 116);
  font-size: 0.95em;
  color: #e0e0e0;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .c-schedule__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
}
@media (min-width: 1024px) {
  .c-schedule__item {
    padding: 20px 25px;
  }
}
.c-schedule__item:hover {
  background-color: #222222;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.c-schedule__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(208, 11, 116);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.c-schedule__date {
  color: #ffffff;
  font-weight: 700;
  margin-right: 10px;
  white-space: nowrap;
  display: inline-block;
  min-width: 160px;
  position: relative;
  z-index: 1;
}

.c-schedule__location {
  display: block;
  text-align: left;
  width: 100%;
  position: relative;
  z-index: 1;
}

.c-schedule__link {
  position: static;
  transform: none;
  display: inline-block;
  margin-top: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgb(208, 11, 116);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 120px;
  position: relative;
  z-index: 1;
}
.c-schedule__link:hover {
  background-color: #bb0a68;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .c-schedule__link {
    margin-top: 0;
    margin-left: 1rem;
    min-width: 140px;
  }
}

/* ==========================================================================
   State
   ========================================================================== */
.is-active::before {
  content: "開催中！";
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9em;
  padding: 4px 8px;
  width: auto;
  height: auto;
  top: -1rem;
  left: -5px;
  right: auto;
}

/* is-upcoming の最初の要素用のスタイル */
.is-upcoming.is-first-upcoming::before {
  content: "間もなく開催";
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9em;
  padding: 4px 8px;
  width: auto;
  height: auto;
  top: -1rem;
  left: -5px;
  right: auto;
  background-color: #77a5dd;
}

.is-past {
  opacity: 0.6;
  filter: grayscale(100%);
  pointer-events: none;
}
.is-past .c-schedule__link {
  background-color: #666666;
  cursor: not-allowed;
}
.is-past::before {
  content: "終了";
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9em;
  padding: 4px 8px;
  width: auto;
  height: auto;
  top: -1rem;
  left: -5px;
  right: auto;
  background-color: #666666;
}

.is-hidden::before, .is-hidden::after {
  opacity: 0;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-margin-auto {
  margin: 0 auto;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.u-pc_only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc_only {
    display: block;
  }
}

.u-sp_only {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-sp_only {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */