@charset "utf-8";

/*----------
ADJUSTMENT
----------*/
/* SPのみ表示用 */
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

/* PCのみ表示用 */
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}

/* イメージサイズ調整 */
img {
  width: 100%;
}

html { scroll-behavior: smooth; }

body { background-color: #ffffff; }


/*----------
FONT
----------*/
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}

.fontJp400NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.fontJp700NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.fontJp400SourceHanSans {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fontJp700SourceHanSans {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fontJp400SourceHan {
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fontJp700SourceHan {
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fontEn400Futura {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fontEn600Kepler {
  font-family: "kepler-std-condensed-subhead", serif;
  font-weight: 600;
  font-style: normal;
}

.fontEn600KeplerIt {
  font-family: "kepler-std-condensed-subhead", serif;
  font-weight: 600;
  font-style: italic;
}


/*----------
HEADER
----------*/
/* ハンバーガーアイコン */
.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22px;
  height: 18px;
  cursor: pointer;
  mix-blend-mode: difference;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 3px 0;
  background-color: #ffffff;
  transition: 0.3s;
}

/* クローズアイコン */
.menu-btn.open {
  mix-blend-mode: normal;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(5px) rotate(30deg);
}

.menu-btn.open span:nth-child(2) {
  transform: translateY(-4px) rotate(-30deg);
}

/* メニュー */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100vw;
  height: 100%;
  background-color: #16182E;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out;
  overflow: scroll;
}

.menu.open {
  opacity: 1;
  visibility: visible;
}

.menu .container {
  margin: 11vw auto 0;
  text-align: center;
}

.menu h1 {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

.menu h2 {
  padding-top: 60px;
  font-size: min(5.5813953488372094vw, 24px);
  line-height: 1.5;
  color: #ffffff;
  margin-block: var(--leading-trim);
}

.menu li {
  padding-top: 30px;
  font-size: min(3.255813953488372vw, 14px);
  line-height: 1.5;
  color: #ffffff;
  margin-block: var(--leading-trim);
}

.menu .social-list {
  display: grid;
  grid-template-columns: repeat(3, 20px);
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.menu .text {
  position: relative;
}

.menu .text::before {
  position: absolute;
  top: 50%;
  left: -29px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  content: "";
  background-image: url(/campaign/2025/holiday/1128/images/icon_star.png);
  background-size: cover;
  opacity: 0;
  transition: 0.5s;
}

.menu .text:hover::before {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .menu .container {
    margin: 4vw auto 0;
  }
}


/*----------
FOOTER
----------*/
.footer {
  width: 100%;
  margin: 60px auto 0;
  padding: 94px 0;
  background-color: #16182E;
  text-align: center;
}

.footer p {
  font-size: min(2.7906976744186047vw, 12px);
  line-height: 1.5;
  color: #ffffff;
  margin-block: var(--leading-trim);
}

@media only screen and (min-width: 768px) {
  .footer {
    margin: 120px auto 0;
  }
}