@charset "UTF-8";
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #000;
}

.l-wrapper {
  position: relative;
  background: #000;
  font-feature-settings: "palt";
  font-family: "FOT-筑紫Aオールド明朝 Pr6 D", serif;
}
.l-wrapper * {
  box-sizing: border-box;
  margin: 0;
}

.l-header {
  display: block;
}

.l-main {
  position: relative;
  display: block;
  color: #fff;
  background: #000;
}
.l-main__foreground {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main__foreground {
    display: grid;
    grid-template-columns: 1fr minmax(0, 500px) 1fr;
  }
}
.l-main__left, .l-main__right {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-main__left, .l-main__right {
    position: sticky;
    top: 0;
    display: block;
    height: 100vh;
    height: 100dvh;
    box-shadow: inset 0 0 25px rgba(0, 255, 0, 0.05), inset 0 0 50px rgba(0, 0, 255, 0.2), inset 0 0 100px rgba(255, 0, 0, 0.2);
  }
}
.l-main__content {
  overflow: hidden;
}

.c-king {
  position: fixed;
  top: 2.1333333333vw;
  left: 1.3333333333vw;
  z-index: 5;
  display: block;
  width: 18.4vw;
}
@media screen and (min-width: 768px) {
  .c-king {
    top: 0.6666666667vw;
    left: 0.4166666667vw;
    width: 5.75vw;
  }
}
.c-king__image {
  display: block;
  width: 100%;
  height: auto;
}

.c-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  /* stylelint-disable-next-line scss/operator-no-newline-after */
  padding: 21.8666666667vw 0 21.8666666667vw 8.5333333333vw;
  overflow: auto;
  background: #000;
  transition: all 0.25s linear;
}
@media screen and (min-width: 768px) {
  .c-menu {
    display: none;
  }
}
.c-menu.js-is-active {
  top: 0;
  right: 0;
}
.c-menu__open {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  display: block;
  width: 15.7333333333vw;
}
@media screen and (min-width: 768px) {
  .c-menu__open {
    display: none;
  }
}
.c-menu__open-image {
  display: block;
  width: 100%;
  height: auto;
}
.c-menu__close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 15.7333333333vw;
}
.c-menu__close-image {
  display: block;
  width: 100%;
  height: auto;
}
.c-menu__nav {
  position: relative;
  --nav-width: 84vw;
  width: 84vw;
  height: 138.6666666667vw;
}

.c-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: calc(0.126984127 * var(--nav-width));
  width: 100%;
}
.c-nav__child {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: calc(0.0317460317 * var(--nav-width));
  width: 100%;
}
.c-nav__item {
  display: block;
  flex-shrink: 1;
  min-height: 0;
}
.c-nav__item--top {
  width: calc(0.2825396825 * var(--nav-width));
}
.c-nav__item--present {
  width: calc(0.5904761905 * var(--nav-width));
}
.c-nav__item--sub-present {
  width: calc(0.4698412698 * var(--nav-width));
}
.c-nav__item--sub-x {
  width: calc(0.2793650794 * var(--nav-width));
}
.c-nav__item--sub-special {
  width: calc(0.4444444444 * var(--nav-width));
}
.c-nav__item--sub-other {
  width: calc(0.5428571429 * var(--nav-width));
}
.c-nav__item--extra {
  width: calc(1 * var(--nav-width));
}
.c-nav__item--sub-extra {
  width: calc(0.7365079365 * var(--nav-width));
}
.c-nav__item--entry {
  width: calc(0.3968253968 * var(--nav-width));
}
.c-nav__item--sub-entry {
  width: calc(0.346031746 * var(--nav-width));
}
.c-nav__item-image {
  display: block;
  width: 100%;
  height: auto;
}

/* stylelint-disable scss/operator-no-newline-after */
@keyframes fire-sparks-position-pc {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: -204.8px -170.6666666667px;
  }
  75% {
    background-position: -546.1333333333px -512px;
  }
  100% {
    background-position: -682.6666666667px -682.6666666667px;
  }
}
@keyframes fire-sparks-position-sp {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: -40.96vw -34.1333333333vw;
  }
  75% {
    background-position: -109.2266666667vw -102.4vw;
  }
  100% {
    background-position: -136.5333333333vw -136.5333333333vw;
  }
}
@keyframes fire-flame-position-pc {
  0% {
    background-position: 50% 0%;
    opacity: 0.5;
  }
  25% {
    background-position: calc(50% - 68.2666666667px) -170.6666666667px;
  }
  50% {
    opacity: 0.25;
  }
  75% {
    background-position: calc(50% + 68.2666666667px) -512px;
  }
  100% {
    background-position: 50% -682.6666666667px;
    opacity: 0.5;
  }
}
@keyframes fire-flame-position-sp {
  0% {
    background-position: 50% 0%;
    opacity: 0.5;
  }
  25% {
    background-position: calc(50% - 13.6533333333vw) -34.1333333333vw;
  }
  50% {
    opacity: 0.25;
  }
  75% {
    background-position: calc(50% + 13.6533333333vw) -102.4vw;
  }
  100% {
    background-position: 50% -136.5333333333vw;
    opacity: 0.5;
  }
}
.c-fire {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-fire__sparks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  background-repeat: repeat;
  background-size: 136.5333333333vw;
  will-change: background-position;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: fire-sparks-position-sp;
}
@media screen and (min-width: 768px) {
  .c-fire__sparks {
    background-size: 682.6666666667px;
    animation-name: fire-sparks-position-pc;
  }
}
.c-fire__sparks--far {
  background-image: url('../img/common/fire/c-fire__sparks--far.jpg?1768205413');
  animation-duration: 2s;
  animation-delay: 0s;
}
.c-fire__sparks--near {
  background-image: url('../img/common/fire/c-fire__sparks--near.jpg?1768205413');
  animation-duration: 1.1s;
  animation-delay: 0s;
}
.c-fire__flame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  background-repeat: repeat;
  background-size: 136.5333333333vw;
  background-image: url('../img/common/fire/c-fire__flame.jpg?1768205413');
  will-change: background-position, opacity;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: fire-flame-position-sp;
  animation-duration: 10s;
}
@media screen and (min-width: 768px) {
  .c-fire__flame {
    background-size: 682.6666666667px;
    animation-name: fire-flame-position-pc;
  }
}

.c-marker {
  background-image: linear-gradient(90deg, #ff8700 0%, #ff8700 100%);
  background-repeat: no-repeat;
  background-position: 0% center;
  background-size: 0% 1em;
  transition: background-size 0.5s ease-out;
  will-change: background-size;
}
.c-marker.js-is-active {
  background-size: 100% 1em;
}

.c-blur {
  filter: blur(10px);
  transition: filter 0.5s ease-out;
  will-change: filter;
}
.c-blur.js-is-active {
  filter: blur(0);
}

@keyframes cutin-mask {
  0% {
    clip-path: inset(50% 0 50% 0);
  }
  25% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.c-cutin {
  margin-right: auto;
  margin-left: auto;
  width: 84vw;
}
@media screen and (min-width: 768px) {
  .c-cutin {
    width: 420px;
  }
}
.c-cutin__mask {
  display: block;
  clip-path: inset(50% 0 50% 0);
  animation: 2s linear infinite cutin-mask;
  will-change: clip-path;
}
.c-cutin__image {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 18.1333333333vw;
}
@media screen and (min-width: 768px) {
  .c-cutin__image {
    height: 90.6666666667px;
  }
}

.c-swiper {
  position: relative;
}
.c-swiper__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-swiper__button-prev, .c-swiper__button-next {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transform: translate(0, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-swiper__button-prev, .c-swiper__button-next {
    width: 33.3333333333px;
    height: 33.3333333333px;
  }
}
.c-swiper__button-prev {
  top: 50%;
  background-image: url('../img/common/swiper/c-swiper__button-prev.png?1768205413');
  left: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .c-swiper__button-prev {
    left: 10.6666666667px;
  }
}
.c-swiper__button-next {
  top: 50%;
  background-image: url('../img/common/swiper/c-swiper__button-next.png?1768205413');
  right: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .c-swiper__button-next {
    right: 10.6666666667px;
  }
}

@keyframes belt-background-scroll-sp {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -74.6666666667vw center;
  }
}
@keyframes belt-background-scroll-pc {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -373.3333333333px center;
  }
}
.c-belt {
  display: block;
  background-image: url('../img/common/belt/c-belt__background.png?1768205413');
  background-size: 74.6666666667vw;
  background-position: left center;
  background-repeat: repeat;
  animation-name: belt-background-scroll-sp;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: background-position;
  height: 27.7333333333vw;
}
@media screen and (min-width: 768px) {
  .c-belt {
    height: 138.6666666667px;
  }
}
@media screen and (min-width: 768px) {
  .c-belt {
    background-size: 373.3333333333px;
    animation-name: belt-background-scroll-pc;
  }
}
.c-belt--reverse {
  animation-direction: reverse;
}

.c-pattern-mask {
  background-image: url('../img/common/pattern-mask/c-pattern-mask__background.png?1768205413');
  background-repeat: repeat;
  background-position: top center;
  background-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .c-pattern-mask {
    background-size: 21.3333333333px;
  }
}

.c-gift-box {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  border-color: #fff;
  border-style: solid;
  border-width: 0.5333333333vw;
  width: 84vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box {
    border-width: 2.6666666667px;
    width: 420px;
  }
}
.c-gift-box__lead {
  position: absolute;
  display: block;
  height: auto;
  transform: translate(0, -100%);
  top: -0.2666666667vw;
  left: -0.5333333333vw;
  width: 84vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__lead {
    top: -1.3333333333px;
    left: -2.6666666667px;
    width: 420px;
  }
}
.c-gift-box__hr {
  margin: 0;
  background: #fff;
  border: none;
  height: 0.2666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__hr {
    height: 1.3333333333px;
  }
}
.c-gift-box__title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 6.6666666667vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__title {
    margin-top: 33.3333333333px;
    margin-bottom: 26.6666666667px;
  }
}
.c-gift-box__title-image {
  display: block;
  width: 100%;
  height: auto;
}
.c-gift-box__copy {
  text-align: center;
  font-size: 3.4666666667vw;
  line-height: 6.1333333333vw;
  margin-top: 5.3333333333vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__copy {
    font-size: 17.3333333333px;
    line-height: 30.6666666667px;
    margin-top: 26.6666666667px;
    margin-bottom: 33.3333333333px;
  }
}
.c-gift-box__other-title {
  text-align: center;
  font-size: 5.6vw;
  line-height: 8.2666666667vw;
  margin-top: -5.3333333333vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__other-title {
    font-size: 28px;
    line-height: 41.3333333333px;
    margin-top: -26.6666666667px;
    margin-bottom: 26.6666666667px;
  }
}
.c-gift-box__product {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 73.3333333333vw;
  margin-top: 5.3333333333vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__product {
    width: 366.6666666667px;
    margin-top: 26.6666666667px;
    margin-bottom: 26.6666666667px;
  }
}
.c-gift-box__product-image {
  display: block;
  width: 100%;
  height: auto;
}
.c-gift-box__text {
  margin-right: auto;
  margin-left: auto;
  font-size: 3.4666666667vw;
  line-height: 6.9333333333vw;
  width: 73.3333333333vw;
  margin-top: 6.6666666667vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__text {
    font-size: 17.3333333333px;
    line-height: 34.6666666667px;
    width: 366.6666666667px;
    margin-top: 33.3333333333px;
    margin-bottom: 33.3333333333px;
  }
}
.c-gift-box__specification {
  display: block;
  width: 100%;
  padding-top: 6.6666666667vw;
  padding-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__specification {
    padding-top: 33.3333333333px;
    padding-bottom: 33.3333333333px;
  }
}
.c-gift-box__specification-title {
  text-align: center;
  font-size: 6.9333333333vw;
  line-height: 10.4vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__specification-title {
    font-size: 34.6666666667px;
    line-height: 52px;
    margin-bottom: 13.3333333333px;
  }
}
.c-gift-box__specification-text {
  text-align: center;
  font-size: 3.4666666667vw;
  line-height: 4.5333333333vw;
  margin-bottom: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__specification-text {
    font-size: 17.3333333333px;
    line-height: 22.6666666667px;
    margin-bottom: 34.6666666667px;
  }
}
.c-gift-box__specification-image-wrapper {
  display: block;
}
.c-gift-box__specification-image {
  display: block;
  width: 100%;
  height: auto;
}
.c-gift-box__specification-notice {
  display: block;
  margin-right: auto;
  margin-left: auto;
  font-size: 2.9333333333vw;
  line-height: 5.0666666667vw;
  width: 73.3333333333vw;
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .c-gift-box__specification-notice {
    font-size: 14.6666666667px;
    line-height: 25.3333333333px;
    width: 366.6666666667px;
    margin-top: 40px;
  }
}

.c-gift-detail {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  width: 73.3333333333vw;
  margin-top: 5.3333333333vw;
  margin-bottom: 5.3333333333vw;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-gift-detail {
    width: 366.6666666667px;
    margin-top: 26.6666666667px;
    margin-bottom: 26.6666666667px;
    gap: 26.6666666667px;
  }
}
.c-gift-detail__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.c-gift-detail__item:nth-child(even) {
  flex-direction: row-reverse;
}
.c-gift-detail__item-image-wrapper {
  display: block;
  width: 34.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-detail__item-image-wrapper {
    width: 173.3333333333px;
  }
}
.c-gift-detail__item-image {
  display: block;
  width: 100%;
  height: auto;
}
.c-gift-detail__item-remain {
  width: 34.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-detail__item-remain {
    width: 173.3333333333px;
  }
}
.c-gift-detail__item-header {
  display: block;
  color: #00f08c;
  border-bottom-style: solid;
  border-bottom-color: #00f08c;
  font-size: 3.2vw;
  line-height: 6.4vw;
  border-width: 0.2666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-detail__item-header {
    font-size: 16px;
    line-height: 32px;
    border-width: 1.3333333333px;
  }
}
.c-gift-detail__item-text {
  font-size: 3.2vw;
  line-height: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .c-gift-detail__item-text {
    font-size: 16px;
    line-height: 34.6666666667px;
  }
}

.c-gift-select {
  padding-top: 8vw;
  padding-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-select {
    padding-top: 40px;
    padding-bottom: 33.3333333333px;
  }
}
.c-gift-select__title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .c-gift-select__title {
    margin-bottom: 20px;
  }
}
.c-gift-select__title-image {
  display: block;
  width: 100%;
  height: auto;
}
.c-gift-select__text {
  text-align: center;
  font-size: 3.4666666667vw;
  line-height: 6.1333333333vw;
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .c-gift-select__text {
    font-size: 17.3333333333px;
    line-height: 30.6666666667px;
    margin-bottom: 40px;
  }
}
.c-gift-select__element-list {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  width: 73.3333333333vw;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-gift-select__element-list {
    width: 366.6666666667px;
    gap: 26.6666666667px;
  }
}
.c-gift-select__element {
  display: flex;
  justify-content: space-between;
}
.c-gift-select__element-image-wrapper {
  display: block;
  outline-style: solid;
  outline-color: #fff;
  width: 33.3333333333vw;
  outline-width: 0.2666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-select__element-image-wrapper {
    width: 166.6666666667px;
    outline-width: 1.3333333333px;
  }
}
.c-gift-select__element-image {
  display: block;
  width: 100%;
  height: auto;
}
.c-gift-select__element-remain {
  display: block;
  width: 34.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-select__element-remain {
    width: 173.3333333333px;
  }
}
.c-gift-select__element-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .c-gift-select__element-header {
    margin-bottom: 17.3333333333px;
  }
}
.c-gift-select__element-title {
  width: -moz-max-content;
  width: max-content;
  font-size: 4.5333333333vw;
  line-height: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-gift-select__element-title {
    font-size: 22.6666666667px;
    line-height: 46.6666666667px;
  }
}
.c-gift-select__element-title--red {
  color: #f10;
}
.c-gift-select__element-title--cyan {
  color: #00f0ff;
}
.c-gift-select__element-title--purple {
  color: #9300ff;
}
.c-gift-select__element-icon {
  display: block;
  height: auto;
  width: 14.1333333333vw;
}
@media screen and (min-width: 768px) {
  .c-gift-select__element-icon {
    width: 70.6666666667px;
  }
}
.c-gift-select__element-text {
  font-size: 3.4666666667vw;
  line-height: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .c-gift-select__element-text {
    font-size: 17.3333333333px;
    line-height: 22.6666666667px;
  }
}

.c-area-left {
  display: block;
  isolation: isolate;
  --title-width: min(calc((100vw - 500px) / 2), 246px);
}
.c-area-left__title {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--title-width);
  transform: translate(-50%, -50%);
}
.c-area-left__title-image {
  display: block;
  width: 100%;
  height: auto;
}

.c-area-right {
  position: relative;
  display: block;
  width: var(--nav-width);
  padding: 42px 0;
  margin-right: auto;
  margin-left: auto;
  isolation: isolate;
  --nav-width: min(calc((100vw - 500px) / 2), 263px);
}

@keyframes go-background-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.p-home-float__go {
  position: fixed;
  bottom: 2.6666666667vw;
  z-index: 5;
  opacity: 0;
  transition: all 0.5s linear;
  right: -40vw;
  width: 25.8666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-float__go {
    right: -200px;
    width: 129.3333333333px;
  }
}
@media screen and (min-width: 768px) {
  .p-home-float__go {
    bottom: 13.3333333333px;
  }
}
.p-home-float__go.js-is-active {
  opacity: 1;
  right: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-float__go.js-is-active {
    right: 13.3333333333px;
  }
}
.p-home-float__go-background {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  animation: 16s linear infinite go-background-rotate;
}
.p-home-float__go-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

/* stylelint-disable scss/operator-no-newline-after */
/* stylelint-disable @stylistic/value-list-comma-space-after */
/* stylelint-disable @stylistic/value-list-comma-newline-after */
@keyframes hero-kaku-fadein {
  0% {
    opacity: 0;
    transform: translate(10%, 40%) scale(2) scale(10);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(10%, 40%) scale(2) scale(1);
  }
}
@keyframes hero-sei-fadein {
  0% {
    opacity: 0;
    transform: translate(-10%, 20%) scale(2) scale(10);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(-10%, 20%) scale(2) scale(1);
  }
}
@keyframes hero-kaku-intro {
  0% {
    transform: translate(10%, 40%) scale(2) translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10%, 40%) scale(2) translate(2%, 2%) rotate(2deg);
  }
  50% {
    transform: translate(10%, 40%) scale(2) translate(0, 2%) rotate(0deg);
  }
  75% {
    transform: translate(10%, 40%) scale(2) translate(2%, 0) rotate(-2deg);
  }
  100% {
    transform: translate(10%, 40%) scale(2) translate(0, 0) rotate(0deg);
  }
}
@keyframes hero-sei-intro {
  0% {
    transform: translate(-10%, 20%) scale(2) translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-10%, 20%) scale(2) translate(2%, 2%) rotate(2deg);
  }
  50% {
    transform: translate(-10%, 20%) scale(2) translate(0, 2%) rotate(0deg);
  }
  75% {
    transform: translate(-10%, 20%) scale(2) translate(2%, 0) rotate(-2deg);
  }
  100% {
    transform: translate(-10%, 20%) scale(2) translate(0, 0) rotate(0deg);
  }
}
@keyframes hero-kakusei-transition {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hero-kakusei-loop {
  0% {
    z-index: 0;
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(1%, 1%) rotate(0.5deg);
  }
  50% {
    transform: translate(0, 1%) rotate(0deg);
  }
  75% {
    transform: translate(1%, 0) rotate(-0.5deg);
  }
  100% {
    z-index: 0;
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes hero-hole-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes hero-fire-yurayura {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hero-hole-intro {
  0% {
    opacity: 0;
    transform: scale(0.001);
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: scale(2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes hero-hole-mask-intro-sp {
  0% {
    clip-path: circle(0.0425185185vw at 49.8666666667vw 54.9333333333vw);
  }
  50% {
    clip-path: circle(85.037037037vw at 49.8666666667vw 54.9333333333vw);
  }
  100% {
    clip-path: circle(170.0740740741vw at 49.8666666667vw 54.9333333333vw);
  }
}
@keyframes hero-hole-mask-intro-pc {
  0% {
    clip-path: circle(0.0145833333vw at 50vw 17.5vw);
  }
  50% {
    clip-path: circle(29.1666666667vw at 50vw 17.5vw);
  }
  100% {
    clip-path: circle(58.3333333333vw at 50vw 17.5vw);
  }
}
.p-home-section-hero {
  position: relative;
  height: 178.6666666667vw;
  overflow: hidden;
  background: #000;
}
@media screen and (min-width: 768px) {
  .p-home-section-hero {
    height: 55.8333333333vw;
  }
}
.p-home-section-hero--loading .p-home-section-hero__background-main, .p-home-section-hero--loading .p-home-section-hero__foreground-main, .p-home-section-hero--loading .p-home-section-hero__foreground-fire, .p-home-section-hero--loading .p-home-section-hero__background-hole, .p-home-section-hero--loading .p-home-section-hero__background-human, .p-home-section-hero--loading .p-home-section-hero__kaku, .p-home-section-hero--loading .p-home-section-hero__sei, .p-home-section-hero--loading .p-home-section-hero__copy, .p-home-section-hero--loading .p-home-section-hero__title, .p-home-section-hero--loading .p-home-section-hero__date {
  opacity: 0;
}
.p-home-section-hero--loading .p-home-section-hero__background-main {
  transform: scale(1.1);
}
.p-home-section-hero--loading .p-home-section-hero__foreground-main {
  transform: scale(1.1);
}
.p-home-section-hero--loading .p-home-section-hero__foreground-fire {
  transform: scale(1.1);
}
.p-home-section-hero--loading .p-home-section-hero__kaku {
  transform: translate(10%, 40%) scale(2) scale(2);
}
.p-home-section-hero--loading .p-home-section-hero__sei {
  transform: translate(-10%, 20%) scale(2) scale(2);
}
.p-home-section-hero--loading .p-home-section-hero__copy {
  transform: scale(1);
}
.p-home-section-hero--loading .p-home-section-hero__title {
  transform: scale(10, 10);
}
.p-home-section-hero__background-main, .p-home-section-hero__foreground-main, .p-home-section-hero__foreground-fire, .p-home-section-hero__kaku, .p-home-section-hero__sei, .p-home-section-hero__copy, .p-home-section-hero__date {
  transition-property: opacity, transform;
}
.p-home-section-hero__background-main {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition-duration: 1s, 1s;
  transition-delay: 2s;
  transition-timing-function: ease-out;
}
.p-home-section-hero__background-main-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-hero__foreground-main {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  transition-duration: 1s, 1s;
  transition-delay: 2s;
  transition-timing-function: ease-out;
}
.p-home-section-hero__foreground-main-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-hero__foreground-fire {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  transition-duration: 1s, 1s;
  transition-delay: 2s;
  transition-timing-function: ease-out;
  animation-name: hero-fire-yurayura;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 3s;
}
.p-home-section-hero__foreground-fire-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-hero__background-hole {
  position: absolute;
  top: 0.2666666667vw;
  left: -4.8vw;
  display: block;
  width: 109.3333333333vw;
  height: auto;
  animation: hero-hole-intro 1s linear 3s 1 backwards;
}
@media screen and (min-width: 768px) {
  .p-home-section-hero__background-hole {
    top: -1.25vw;
    left: 31.25vw;
    width: 37.5vw;
  }
}
.p-home-section-hero__background-hole-image {
  display: block;
  width: 100%;
  height: auto;
  animation-name: hero-hole-rotation;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 0s;
}
.p-home-section-hero__background-human {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  animation-name: hero-hole-mask-intro-sp;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
}
@media screen and (min-width: 768px) {
  .p-home-section-hero__background-human {
    animation-name: hero-hole-mask-intro-pc;
  }
}
.p-home-section-hero__background-human-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-hero__kaku, .p-home-section-hero__sei {
  z-index: 2;
}
.p-home-section-hero__kaku {
  position: absolute;
  top: 21.3333333333vw;
  left: 3.7333333333vw;
  display: block;
  width: 32.2666666667vw;
  animation: hero-kaku-fadein 0.25s ease-in 4s 1 backwards, hero-kaku-intro 0.25s steps(1) 4.25s 6, hero-kakusei-transition 0.25s ease 5.625s 1, hero-kakusei-loop 0.25s steps(1) 5.75s infinite;
}
@media screen and (min-width: 768px) {
  .p-home-section-hero__kaku {
    top: 6.5vw;
    left: 2.25vw;
    width: 27.4166666667vw;
  }
}
.p-home-section-hero__kaku-image {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(-10deg);
}
.p-home-section-hero__sei {
  position: absolute;
  top: 21.3333333333vw;
  left: 61.8666666667vw;
  display: block;
  width: 33.0666666667vw;
  animation: hero-sei-fadein 0.25s ease-in 4.5s 1 backwards, hero-sei-intro 0.25s steps(1) 4.75s 4, hero-kakusei-transition 0.25s ease 5.625s 1, hero-kakusei-loop 0.25s steps(1) 5.75s infinite;
}
@media screen and (min-width: 768px) {
  .p-home-section-hero__sei {
    top: 6.6666666667vw;
    left: 68.9166666667vw;
    width: 28.8333333333vw;
  }
}
.p-home-section-hero__sei-image {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(10deg);
}
.p-home-section-hero__copy {
  position: absolute;
  top: 72vw;
  left: 11.2vw;
  display: block;
  width: 80.8vw;
  transition-duration: 4s, 4s;
  transition-delay: 0s;
  transition-timing-function: ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-home-section-hero__copy {
    top: 22.5vw;
    left: 31.8333333333vw;
    width: 36.3333333333vw;
  }
}
.p-home-section-hero__copy-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-hero__title {
  position: absolute;
  top: 104vw;
  left: 4.2666666667vw;
  display: block;
  width: 91.7333333333vw;
  transition-property: opacity, transform, filter;
  transition-duration: 0.25s, 0.5s, 0.5s;
  transition-delay: 5.5s;
  transition-timing-function: ease-in;
}
@media screen and (min-width: 768px) {
  .p-home-section-hero__title {
    top: 30.4166666667vw;
    left: 33.3333333333vw;
    width: 33.3333333333vw;
  }
}
.p-home-section-hero__title-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-hero__date {
  position: absolute;
  top: 161.8666666667vw;
  left: 19.4666666667vw;
  display: block;
  width: 60.5333333333vw;
  transition-duration: 0.25s, 0.5s;
  transition-delay: 6s;
  transition-timing-function: linear;
}
@media screen and (min-width: 768px) {
  .p-home-section-hero__date {
    top: 49.9166666667vw;
    left: 38.4166666667vw;
    width: 23.0833333333vw;
  }
}
.p-home-section-hero__date-image {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes introduction-arrow-scroll {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 100%);
  }
}
@keyframes introduction-kakusei {
  0% {
    transform: translate(-3%, -3%);
  }
  25% {
    transform: translate(3%, -3%);
  }
  50% {
    transform: translate(3%, 3%);
  }
  75% {
    transform: translate(-3%, 3%);
  }
  100% {
    transform: translate(-3%, -3%);
  }
}
.p-home-section-introduction {
  position: relative;
  padding-top: 17.6vw;
  padding-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction {
    padding-top: 88px;
    padding-bottom: 80px;
  }
}
.p-home-section-introduction__hash {
  position: absolute;
  width: 16vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__hash {
    width: 80px;
  }
}
.p-home-section-introduction__hash--01 {
  left: 4vw;
  top: 4vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__hash--01 {
    left: 20px;
    top: 20px;
  }
}
.p-home-section-introduction__hash--02 {
  left: 84vw;
  top: 4vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__hash--02 {
    left: 420px;
    top: 20px;
  }
}
.p-home-section-introduction__hash-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-introduction__logo {
  position: relative;
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 32.5333333333vw;
  margin-bottom: 11.2vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__logo {
    width: 162.6666666667px;
    margin-bottom: 56px;
  }
}
.p-home-section-introduction__logo-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-introduction__title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 50.9333333333vw;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__title {
    width: 254.6666666667px;
    margin-bottom: 53.3333333333px;
  }
}
.p-home-section-introduction__title-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-introduction__text {
  text-align: center;
  font-size: 4vw;
  line-height: 8vw;
  margin-bottom: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__text {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 73.3333333333px;
  }
}
.p-home-section-introduction__now {
  position: relative;
  display: block;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__now {
    margin-bottom: 53.3333333333px;
  }
}
.p-home-section-introduction__now-text {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 5.0666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__now-text {
    width: 25.3333333333px;
  }
}
.p-home-section-introduction__now-text-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-introduction__kaku {
  position: absolute;
  animation: 0.5s steps(1) 0s infinite introduction-kakusei;
  will-change: transform;
  width: 35.7333333333vw;
  left: 4.2666666667vw;
  top: 8.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__kaku {
    width: 178.6666666667px;
    left: 21.3333333333px;
    top: 41.3333333333px;
  }
}
.p-home-section-introduction__kaku-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-introduction__sei {
  position: absolute;
  animation: 0.5s steps(1) -0.125s infinite introduction-kakusei;
  will-change: transform;
  width: 37.6vw;
  left: 60vw;
  top: 8.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__sei {
    width: 188px;
    left: 300px;
    top: 41.3333333333px;
  }
}
.p-home-section-introduction__sei-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-introduction__next {
  display: block;
  margin-top: 8.8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__next {
    margin-top: 44px;
  }
}
.p-home-section-introduction__next-upper {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 84vw;
  margin-bottom: 0.8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__next-upper {
    width: 420px;
    margin-bottom: 4px;
  }
}
.p-home-section-introduction__next-text {
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 4vw;
  line-height: 8vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__next-text {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 6.6666666667px;
  }
}
.p-home-section-introduction__next-lower {
  display: block;
  margin-right: auto;
  margin-left: auto;
  animation: 1s linear infinite introduction-arrow-scroll;
  will-change: transform;
  width: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-introduction__next-lower {
    width: 14.6666666667px;
  }
}

.p-home-section-present {
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present {
    padding-top: 40px;
  }
}
.p-home-section-present__lead {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 62.6666666667vw;
  margin-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__lead {
    width: 313.3333333333px;
    margin-bottom: 60px;
  }
}
.p-home-section-present__lead-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-present__title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 86.4vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__title {
    width: 432px;
    margin-bottom: 26.6666666667px;
  }
}
.p-home-section-present__title-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-present__text {
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 4vw;
  line-height: 8vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__text {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 33.3333333333px;
  }
}
.p-home-section-present__mission {
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 4.5333333333vw;
  line-height: 13.3333333333vw;
  height: 13.3333333333vw;
  margin-bottom: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__mission {
    font-size: 22.6666666667px;
    line-height: 66.6666666667px;
    height: 66.6666666667px;
    margin-bottom: 2.6666666667px;
  }
}
.p-home-section-present__mission--green {
  color: #00f08c;
}
.p-home-section-present__mission--large {
  font-size: 13.3333333333vw;
  line-height: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__mission--large {
    font-size: 66.6666666667px;
    line-height: 66.6666666667px;
  }
}
.p-home-section-present__notes {
  color: #00f08c;
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 3.4666666667vw;
  line-height: 8vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__notes {
    font-size: 17.3333333333px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.p-home-section-present__box {
  border-style: solid;
  margin-right: auto;
  margin-left: auto;
  border-width: 0.2666666667vw;
  width: 65.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__box {
    border-width: 1.3333333333px;
    width: 326.6666666667px;
  }
}
.p-home-section-present__box--x {
  border-color: #00f08c;
}
.p-home-section-present__box--special {
  border-color: #00f08c;
}
.p-home-section-present__box--extra {
  border-color: #ff5fff;
}
.p-home-section-present__box-header {
  color: #000;
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 6.4vw;
  line-height: 9.0666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__box-header {
    font-size: 32px;
    line-height: 45.3333333333px;
  }
}
.p-home-section-present__box-header--x {
  background: #00f08c;
}
.p-home-section-present__box-header--special {
  background: #00f08c;
}
.p-home-section-present__box-header--extra {
  background: #ff5fff;
}
.p-home-section-present__box-body {
  padding-top: 1.3333333333vw;
  padding-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__box-body {
    padding-top: 6.6666666667px;
    padding-bottom: 6.6666666667px;
  }
}
.p-home-section-present__box-gift {
  display: block;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  margin-top: 4vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__box-gift {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.p-home-section-present__box-gift--01 {
  width: 12.8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__box-gift--01 {
    width: 64px;
  }
}
.p-home-section-present__box-gift--02 {
  width: 14.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__box-gift--02 {
    width: 70.6666666667px;
  }
}
.p-home-section-present__box-gift--other {
  width: 23.2vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__box-gift--other {
    width: 116px;
  }
}
.p-home-section-present__box-text {
  text-align: center;
  font-size: 4vw;
  line-height: 6.1333333333vw;
  margin-top: 4vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__box-text {
    font-size: 20px;
    line-height: 30.6666666667px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.p-home-section-present__plus {
  display: block;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  width: 18.9333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__plus {
    width: 94.6666666667px;
  }
}
.p-home-section-present__more {
  text-align: center;
  font-size: 4.5333333333vw;
  line-height: 6.1333333333vw;
  margin-top: 4vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-present__more {
    font-size: 22.6666666667px;
    line-height: 30.6666666667px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.p-home-section-x {
  padding-top: 16vw;
  padding-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-x {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-home-section-x__title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 53.3333333333vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-x__title {
    width: 266.6666666667px;
    margin-bottom: 33.3333333333px;
  }
}
.p-home-section-x__title-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-x__text {
  text-align: center;
  font-size: 4vw;
  line-height: 8vw;
  margin-bottom: -9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-x__text {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: -46.6666666667px;
  }
}
.p-home-section-x__visual {
  position: relative;
  width: 100%;
  height: 94.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-x__visual {
    height: 470.6666666667px;
  }
}
.p-home-section-x__visual.js-is-active .p-home-section-x__visual-image {
  opacity: 1;
  transform: none;
}
.p-home-section-x__visual-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translate(-50%, 0);
  transition-property: opacity, transform;
  transition-duration: 0.25s, 0.5s;
}
.p-home-section-x__visual-copy {
  position: absolute;
  height: auto;
  top: 44.5333333333vw;
  left: 6.4vw;
  width: 21.8666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-x__visual-copy {
    top: 222.6666666667px;
    left: 32px;
    width: 109.3333333333px;
  }
}
.p-home-section-x__visual-qty {
  position: absolute;
  height: auto;
  top: 17.6vw;
  left: 60vw;
  width: 34.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-x__visual-qty {
    top: 88px;
    left: 300px;
    width: 173.3333333333px;
  }
}
.p-home-section-x__visual-notice {
  position: absolute;
  top: 84vw;
  left: 69.0666666667vw;
  font-size: 2.9333333333vw;
  line-height: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-x__visual-notice {
    top: 420px;
    left: 345.3333333333px;
    font-size: 14.6666666667px;
    line-height: 17.3333333333px;
  }
}
.p-home-section-x__box-title {
  width: 74.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-x__box-title {
    width: 370.6666666667px;
  }
}
.p-home-section-x__swiper-slide {
  height: 76vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-x__swiper-slide {
    height: 380px;
  }
}
.p-home-section-x__swiper-slide-image {
  display: block;
  height: auto;
  width: 73.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-x__swiper-slide-image {
    width: 366.6666666667px;
  }
}
.p-home-section-special {
  padding-top: 16vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special {
    padding-top: 80px;
  }
}
.p-home-section-special__title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 80vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special__title {
    width: 400px;
    margin-bottom: 33.3333333333px;
  }
}
.p-home-section-special__title-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-special__text {
  text-align: center;
  font-size: 4vw;
  line-height: 8vw;
  margin-bottom: 11.4666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special__text {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 57.3333333333px;
  }
}
.p-home-section-special__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 106.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special__visual {
    height: 533.3333333333px;
  }
}
.p-home-section-special__visual.js-is-active .p-home-section-special__visual-image {
  opacity: 1;
  transform: none;
}
.p-home-section-special__visual-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translate(-50%, 0);
  transition-property: opacity, transform;
  transition-duration: 0.25s, 0.5s;
}
.p-home-section-special__visual-copy {
  position: absolute;
  height: auto;
  top: 22.1333333333vw;
  left: 79.7333333333vw;
  width: 9.8666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special__visual-copy {
    top: 110.6666666667px;
    left: 398.6666666667px;
    width: 49.3333333333px;
  }
}
.p-home-section-special__visual-qty {
  position: absolute;
  height: auto;
  top: 2.6666666667vw;
  left: 5.0666666667vw;
  width: 34.9333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special__visual-qty {
    top: 13.3333333333px;
    left: 25.3333333333px;
    width: 174.6666666667px;
  }
}
.p-home-section-special__visual-notice {
  position: absolute;
  top: 80.8vw;
  left: 65.0666666667vw;
  font-size: 2.9333333333vw;
  line-height: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special__visual-notice {
    top: 404px;
    left: 325.3333333333px;
    font-size: 14.6666666667px;
    line-height: 17.3333333333px;
  }
}
.p-home-section-special__box-title {
  width: 74.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special__box-title {
    width: 370.6666666667px;
  }
}
.p-home-section-special__swiper-slide {
  height: 76vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special__swiper-slide {
    height: 380px;
  }
}
.p-home-section-special__swiper-slide-image {
  display: block;
  height: auto;
  width: 73.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special__swiper-slide-image {
    width: 366.6666666667px;
  }
}
.p-home-section-special__box-select-title {
  width: 51.7333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-special__box-select-title {
    width: 258.6666666667px;
  }
}
.p-home-section-other {
  padding-top: 16vw;
  padding-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-other {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-home-section-other__title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 74.6666666667vw;
  margin-bottom: -5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-other__title {
    width: 373.3333333333px;
    margin-bottom: -26.6666666667px;
  }
}
.p-home-section-other__title-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-other__box {
  margin-top: 29.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-other__box {
    margin-top: 146.6666666667px;
  }
}
.p-home-section-other__box-qty {
  position: absolute;
  display: block;
  height: auto;
  top: -15.2vw;
  width: 34.9333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-other__box-qty {
    top: -76px;
    width: 174.6666666667px;
  }
}
.p-home-section-other__box-qty--03, .p-home-section-other__box-qty--05, .p-home-section-other__box-qty--07, .p-home-section-other__box-qty--09 {
  left: -5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-other__box-qty--03, .p-home-section-other__box-qty--05, .p-home-section-other__box-qty--07, .p-home-section-other__box-qty--09 {
    left: -26.6666666667px;
  }
}
.p-home-section-other__box-qty--04, .p-home-section-other__box-qty--06, .p-home-section-other__box-qty--08 {
  right: -5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-other__box-qty--04, .p-home-section-other__box-qty--06, .p-home-section-other__box-qty--08 {
    right: -26.6666666667px;
  }
}
.p-home-section-extra {
  padding-top: 16vw;
  padding-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-extra {
    padding-top: 80px;
    padding-bottom: 26.6666666667px;
  }
}
.p-home-section-extra__lead {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 56.2666666667vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-extra__lead {
    width: 281.3333333333px;
    margin-bottom: 33.3333333333px;
  }
}
.p-home-section-extra__lead-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-extra__title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 77.3333333333vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-extra__title {
    width: 386.6666666667px;
    margin-bottom: 33.3333333333px;
  }
}
.p-home-section-extra__title-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-extra__text {
  text-align: center;
  font-size: 4vw;
  line-height: 8vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-extra__text {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 26.6666666667px;
  }
}
.p-home-section-extra__notice {
  color: #00f08c;
  text-align: center;
  font-size: 2.9333333333vw;
  line-height: 4.5333333333vw;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-extra__notice {
    font-size: 14.6666666667px;
    line-height: 22.6666666667px;
    margin-bottom: 66.6666666667px;
  }
}
.p-home-section-extra__capture {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 81.6vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-extra__capture {
    width: 408px;
  }
}
.p-home-section-extra__capture-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-home-section-entry {
  padding-top: 16vw;
  padding-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
.p-home-section-entry__lead {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 40vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__lead {
    width: 200px;
    margin-bottom: 33.3333333333px;
  }
}
.p-home-section-entry__lead-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-entry__title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 65.0666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__title {
    width: 325.3333333333px;
  }
}
.p-home-section-entry__title-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-entry__box {
  position: relative;
  border-style: none solid solid solid;
  border-color: #00f0ff;
  margin-right: auto;
  margin-left: auto;
  border-width: 0.2666666667vw;
  width: 84vw;
  margin-top: 12vw;
  padding-top: 5.3333333333vw;
  padding-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box {
    border-width: 1.3333333333px;
    width: 420px;
    margin-top: 60px;
    padding-top: 26.6666666667px;
    padding-bottom: 40px;
  }
}
.p-home-section-entry__box-title {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: rows;
  align-items: center;
  width: 100%;
  height: 8vw;
  top: -3.8666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-title {
    height: 40px;
    top: -19.3333333333px;
  }
}
.p-home-section-entry__box-title::before, .p-home-section-entry__box-title::after {
  flex: 1;
  content: "";
  background: #00f0ff;
  height: 0.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-title::before, .p-home-section-entry__box-title::after {
    height: 1.3333333333px;
  }
}
.p-home-section-entry__box-title-text {
  padding: 0 0.5em;
  line-height: 1em;
  color: #00f0ff;
  font-size: 8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-title-text {
    font-size: 40px;
  }
}
.p-home-section-entry__box-product {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 84vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-product {
    width: 420px;
    margin-bottom: 6.6666666667px;
  }
}
.p-home-section-entry__box-product-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-section-entry__box-text {
  text-align: center;
  font-size: 4vw;
  line-height: 8vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-text {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.p-home-section-entry__box-text--highlight {
  color: #fff100;
}
.p-home-section-entry__box-step-list {
  display: flex;
  flex-direction: column;
  gap: 4vw;
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-step-list {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.p-home-section-entry__box-step-no {
  line-height: 1em;
  text-align: center;
  font-size: 5.6vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-step-no {
    font-size: 28px;
    margin-bottom: 13.3333333333px;
  }
}
.p-home-section-entry__box-step-title {
  display: block;
  margin-right: auto;
  margin-left: auto;
  color: #00f0ff;
  text-align: center;
  border-color: #00f0ff;
  border-style: solid;
  font-size: 5.0666666667vw;
  line-height: 7.4666666667vw;
  border-width: 0.2666666667vw;
  width: 73.3333333333vw;
  padding-top: 2.1333333333vw;
  padding-bottom: 2.1333333333vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-step-title {
    font-size: 25.3333333333px;
    line-height: 37.3333333333px;
    border-width: 1.3333333333px;
    width: 366.6666666667px;
    padding-top: 10.6666666667px;
    padding-bottom: 10.6666666667px;
    margin-bottom: 13.3333333333px;
  }
}
.p-home-section-entry__box-step-text {
  text-align: center;
  font-size: 3.4666666667vw;
  line-height: 5.6vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-step-text {
    font-size: 17.3333333333px;
    line-height: 28px;
  }
}
.p-home-section-entry__box-step-notice {
  text-align: center;
  font-size: 2.9333333333vw;
  line-height: 5.0666666667vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-step-notice {
    font-size: 14.6666666667px;
    line-height: 25.3333333333px;
    margin-top: 13.3333333333px;
  }
}
.p-home-section-entry__box-step-notice--highlight {
  color: #00f0ff;
}
.p-home-section-entry__box-step-arrow {
  display: block;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  width: 4.8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-step-arrow {
    width: 24px;
  }
}
.p-home-section-entry__box-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  color: #000;
  text-align: center;
  text-decoration: none;
  background: #fff100;
  border-radius: 9999px;
  width: 72vw;
  height: 18.6666666667vw;
  font-size: 5.0666666667vw;
  line-height: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-button {
    width: 360px;
    height: 93.3333333333px;
    font-size: 25.3333333333px;
    line-height: 33.3333333333px;
  }
}
.p-home-section-entry__box-button:hover {
  color: #000;
  text-decoration: none;
}
.p-home-section-entry__box-button[target=_blank]::after {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  transform: translate(0, -50%);
  background-image: url('../img/home/section-entry/p-home-section-entry__box-button--external.png?1768205413');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  right: 7.2vw;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-entry__box-button[target=_blank]::after {
    right: 36px;
    width: 26.6666666667px;
    height: 26.6666666667px;
  }
}

.p-home-section-notes {
  padding-top: 16vw;
  padding-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-notes {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
.p-home-section-notes__title {
  position: relative;
  left: 0;
  display: flex;
  flex-direction: rows;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  width: 84vw;
  height: 5.3333333333vw;
  top: 2.6666666667vw;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-notes__title {
    width: 420px;
    height: 26.6666666667px;
    top: 13.3333333333px;
    margin-bottom: 53.3333333333px;
  }
}
.p-home-section-notes__title::before, .p-home-section-notes__title::after {
  flex: 1;
  content: "";
  background: #fff;
  height: 0.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-notes__title::before, .p-home-section-notes__title::after {
    height: 1.3333333333px;
  }
}
.p-home-section-notes__title-text {
  padding: 0 0.5em;
  line-height: 1em;
  text-align: center;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-notes__title-text {
    font-size: 26.6666666667px;
  }
}
.p-home-section-notes__sub-title {
  text-align: center;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-notes__sub-title {
    margin-bottom: 13.3333333333px;
  }
}
.p-home-section-notes__sub-title-text {
  position: relative;
  display: inline-block;
  line-height: 1em;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-notes__sub-title-text {
    font-size: 20px;
  }
}
.p-home-section-notes__sub-title-text::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  background: #fff;
  height: 0.2666666667vw;
  bottom: -0.8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-notes__sub-title-text::after {
    height: 1.3333333333px;
    bottom: -4px;
  }
}
.p-home-section-notes__note-list {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 76vw;
  margin-bottom: 8.8vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-notes__note-list {
    width: 380px;
    margin-bottom: 44px;
  }
}
.p-home-section-notes__note {
  display: block;
  padding-left: 0.5em;
  text-indent: -0.5em;
  font-size: 2.9333333333vw;
  line-height: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-notes__note {
    font-size: 14.6666666667px;
    line-height: 22.6666666667px;
  }
}
.p-home-section-notes__note a {
  color: #00f08c;
  text-decoration: underline;
}
.p-home-section-notes__copyright {
  display: block;
  text-align: center;
  font-size: 2.9333333333vw;
  line-height: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .p-home-section-notes__copyright {
    font-size: 14.6666666667px;
    line-height: 22.6666666667px;
  }
}

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

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

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

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

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

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