@charset "UTF-8";



.is-bold {
  font-weight: 900;
}

.is-underline {
  text-decoration: underline;
  text-underline-offset: .18em;
}


.is-red {
  color: var(--color-alert-red);
}


.p-mv {
  position: relative;
  width: 100%;
  height: 108rem;
  background: var(--color-mv-bg);
  overflow: hidden;
}

.p-mv__logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 41rem;
  height: 8rem;
}

.p-mv__logo30 {
  position: absolute;
  left: 6rem;
  top: 12rem;
  width: 16rem;
  height: 13.6rem;
}


.p-mv__main {
  position: absolute;
  left: 52.9rem;
  top: 3.5rem;
  width: 86.3rem;
  height: 87rem;
}

.p-mv__layer {
  position: absolute;
  display: block;
  object-fit: contain;
}


.p-mv__layer--base {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


.p-mv__no--025 {
  left: 79.490%;
  top: 91.264%;
  width: 6.721%;
  height: 2.069%;
  z-index: 2;
}

.p-mv__no--009 {
  left: 9.154%;
  top: 61.264%;
  width: 6.373%;
  height: 1.954%;
  z-index: 3;
}

.p-mv__no--006 {
  left: 5.794%;
  top: 53.448%;
  width: 6.373%;
  height: 1.954%;
  z-index: 4;
}

.p-mv__no--003 {
  left: 87.022%;
  top: 58.506%;
  width: 6.373%;
  height: 1.954%;
  z-index: 5;
}


.p-mv__chara--1 {
  left: 0.000%;
  top: 14.483%;
  width: 64.774%;
  height: 51.839%;
  z-index: 6;
}

.p-mv__chara--2 {
  left: 33.951%;
  top: 25.172%;
  width: 57.474%;
  height: 48.966%;
  z-index: 7;
}

.p-mv__chara--3 {
  left: 57.474%;
  top: 66.782%;
  width: 31.054%;
  height: 33.218%;
  z-index: 8;
}

.p-mv__chara--4 {
  left: 3.360%;
  top: 53.793%;
  width: 50.985%;
  height: 43.333%;
  z-index: 9;
}


.p-mv__main.is-armed .p-mv__chara {
  opacity: 0;
  transform: scale(var(--mv-chara-from));
}

.p-mv__main.is-armed .p-mv__no {
  opacity: 0;
  -webkit-clip-path: inset(0% var(--mv-no-wipe) 0% 0%);
  clip-path: inset(0% var(--mv-no-wipe) 0% 0%);
}


.p-mv__main.is-armed.is-play .p-mv__chara {
  opacity: 1;
  transform: none;
}

.p-mv__main.is-play .p-mv__chara {
  animation: mv-pop var(--mv-chara-dur) var(--mv-chara-ease) backwards;
}

.p-mv__main.is-play .p-mv__chara--1 {
  animation-delay: var(--mv-start);
}

.p-mv__main.is-play .p-mv__chara--2 {
  animation-delay: calc(var(--mv-start) + var(--mv-chara-step));
}

.p-mv__main.is-play .p-mv__chara--3 {
  animation-delay: calc(var(--mv-start) + var(--mv-chara-step) * 2);
}

.p-mv__main.is-play .p-mv__chara--4 {
  animation-delay: calc(var(--mv-start) + var(--mv-chara-step) * 3);
}


.p-mv__main.is-armed.is-play .p-mv__no {
  opacity: 1;
  -webkit-clip-path: none;
  clip-path: none;
}


.p-mv__main.is-play .p-mv__no {
  animation: mv-wipe var(--mv-no-dur) var(--mv-no-ease) backwards;
  animation-delay: calc(var(--mv-start) + var(--mv-chara-step) * 3 + var(--mv-chara-dur) + var(--mv-no-wait));
}


@keyframes mv-pop {
  from {
    opacity: 0;
    transform: scale(var(--mv-chara-from));
  }

  to {
    opacity: 1;
    transform: none;
  }
}


@keyframes mv-wipe {
  from {
    opacity: 1;
    -webkit-clip-path: inset(0% var(--mv-no-wipe) 0% 0%);
    clip-path: inset(0% var(--mv-no-wipe) 0% 0%);
  }

  99% {
    opacity: 1;
    -webkit-clip-path: inset(0% 0% 0% 0%);
    clip-path: inset(0% 0% 0% 0%);
  }

  to {
    opacity: 1;
    -webkit-clip-path: none;
    clip-path: none;
  }
}


.nomotion .p-mv__chara,
.nomotion .p-mv__no {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
}

@media (prefers-reduced-motion: reduce) {

  .p-mv__chara,
  .p-mv__no {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
  }
}

.p-mv__rights {
  position: absolute;
  right: 3rem;
  top: 88.6rem;
  font-size: var(--fs-mv-copyright);
  font-weight: 500;
  line-height: 1.4rem;
  letter-spacing: .05em;
  text-align: right;
  color: var(--color-ink);
}

.p-mv__bnr {
  position: absolute;
  left: -1rem;
  top: 93rem;
  width: 194rem;
  height: 15rem;
  background: var(--color-brand-yellow);
}


.p-mv__bnr::before,
.p-mv__bnr::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: .4rem;
  background: var(--color-ink);
}

.p-mv__bnr::before {
  top: 0;
}

.p-mv__bnr::after {
  bottom: 0;
}

.p-mv__label {
  position: absolute;
  left: 33.5rem;
  top: 3.15rem;
  width: 42rem;
  font-family: var(--ff-jp-disp);
  font-weight: 900;
  font-size: var(--fs-bnr-label);
  line-height: 4.3rem;
  letter-spacing: .05em;
  text-align: center;
  color: var(--color-ink);
}


@media (min-width: 768px) {
  .p-mv__label {
    font-size: max(calc(2.8 * 100vw / 192), 12px);
  }
}

.p-mv__chev {
  position: absolute;
  left: 74.6rem;
  top: 5.3rem;
  width: 8.8rem;
  height: 4.3rem;
  color: var(--color-ink);
}


.p-mv__day {
  position: absolute;
  left: 85.4rem;
  top: 4.1rem;
  width: 71.2rem;
  height: 6.8rem;
}


.p-mv__dayimg {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

@media (max-width: 767px) {
  .p-mv {
    height: 66.7rem;
  }

  .p-mv__logo {
    width: 17.5rem;
    height: 4rem;
  }

  .p-mv__logo30 {
    left: 2rem;
    top: 5rem;
    width: 5.3rem;
    height: 4.5rem;
  }

  
  .p-mv__main {
    left: 1rem;
    top: 9.5rem;
    width: 35.5rem;
    height: 35.7rem;
  }

  
  
  .p-mv__rights {
    right: 4.2rem;
    top: auto;
    bottom: 17.5rem;
    line-height: max(1rem, 1em);
  }

  .p-mv__bnr {
    left: -1rem;
    top: 50.2rem;
    width: 39.5rem;
    height: 16.5rem;
  }

  
  .p-mv__bnr::before,
  .p-mv__bnr::after {
    display: none;
  }

  .p-mv__bnr {
    background-image: linear-gradient(180deg,
        var(--color-ink) 0 .25rem,
        transparent .25rem calc(100% - .25rem),
        var(--color-ink) calc(100% - .25rem) 100%);
  }

  
  .p-mv__label {
    left: 4.7rem;
    top: 2rem;
    width: 30.2rem;
    line-height: 1.3rem;
    font-weight: 800;
    letter-spacing: -.019em;
    white-space: nowrap;
  }

  
  .p-mv__day {
    left: 5.6rem;
    top: 4.5rem;
    width: 28.3rem;
    height: 4.5rem;
  }

  
  .p-mv__startsp {
    position: absolute;
    left: 8.1rem;
    top: 10.85rem;
    width: 22.9rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    color: var(--color-ink);
  }

  .p-mv__startimg {
    display: block;
    width: 11.3rem;
    height: 3.3rem;
    margin: 0 1.55rem 0 2.05rem;
  }

  .p-mv__chev {
    display: none;
  }

  .p-mv__arwsp {
    position: relative;
    width: 4rem;
    height: 2.8rem;
    color: var(--color-ink);
    flex: none;
  }
}

@media (min-width: 768px) {
  .p-mv__startsp {
    display: none;
  }

  .p-mv__arwsp {
    display: none;
  }
}




.p-about {
  position: relative;
  width: 100%;
  overflow: hidden;
  --ab-lead-x: 3rem;
  
  height: calc(175rem + var(--ab-lead-x));
}

.p-about__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(161rem + var(--ab-lead-x));
  background-image: url("../images/about/bg-pattern-pokeball-yellow.png"),
    linear-gradient(180deg, var(--color-about-grad-a) 20%, var(--color-about-grad-b) 100%);
  background-repeat: repeat, no-repeat;
  background-size: 28.8rem 28.8rem, 100% 100%;
}

.p-about__ttl {
  position: absolute;
  left: 39.9rem;
  top: 12rem;
  width: 113.1rem;
  height: 24.5rem;
}

.p-about__lead {
  position: absolute;
  left: 0;
  top: 44.5rem;
  width: 100%;
  text-align: center;
}

.p-about__lead p {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 5rem;
  letter-spacing: .05em;
  color: var(--color-ink);
}

.p-about__lead p+p {
  margin-top: 2rem;
}




.p-about__card1 {
  position: absolute;
  left: 26rem;
  top: calc(74.5rem + var(--ab-lead-x));
  width: 86rem;
  height: 64.5rem;
}


.p-about__card1frame {
  position: absolute;
  left: 0;
  top: 3.6rem;
  width: 74.1rem;
  height: 60.9rem;
}


.p-about__burst {
  position: absolute;
  left: 60rem;
  top: 0;
  width: 26rem;
  height: 26.5rem;
}



.p-about__ph {
  position: absolute;
  left: 4.23447rem;
  top: 14.74714rem;
  width: 65.06182rem;
  height: 45.66331rem;
}


.p-about__card2 {
  position: absolute;
  left: 113.9rem;
  top: calc(80.5rem + var(--ab-lead-x));
  width: 52.1rem;
  height: 41.7rem;
}

.p-about__card2img {
  position: absolute;
  left: 0;
  top: 0;
  width: 44.1rem;
  height: 41.7rem;
}


.p-about__badge {
  position: absolute;
  left: 33.1rem;
  top: 3.3rem;
  width: 19rem;
  height: 19rem;
}


.p-about__pika {
  position: absolute;
  left: 121rem;
  top: calc(127rem + var(--ab-lead-x));
  width: 29rem;
  height: 21rem;
}

.p-about__pika>img {
  position: absolute;
  left: 4rem;
  top: 0;
  width: 25rem;
  height: 21rem;
  object-fit: contain;
}


.p-about__pika figcaption {
  position: absolute;
  left: 0;
  top: 4rem;
  width: 5.7rem;
  height: 1.5rem;
}

.p-about__pika figcaption picture,
.p-about__pika figcaption img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-about__bnr {
  position: absolute;
  left: 0;
  top: calc(161rem + var(--ab-lead-x));
  width: 100%;
}


.p-about__card1.js-rv,
.p-about__card2.js-rv {
  transform-origin: var(--ab-origin);
  transition: none;
  
  opacity: 0;
  translate: 0 var(--ab-move);
  rotate: var(--ab-rot);
  scale: var(--ab-scale-from);
}

.p-about__card1.js-rv {
  --ab-rot: var(--ab-rot-1);
}

.p-about__card2.js-rv {
  --ab-rot: var(--ab-rot-2);
}


.p-about__card1.js-rv.is-in,
.p-about__card2.js-rv.is-in {
  opacity: 1;
  translate: none;
  rotate: none;
  scale: none;
}


.p-about__card1.js-rv.is-in {
  animation: ab-stick var(--ab-dur) var(--ab-ease) var(--ab-delay) backwards;
}

.p-about__card2.js-rv.is-in {
  animation: ab-stick var(--ab-dur) var(--ab-ease) calc(var(--ab-delay) + var(--ab-gap)) backwards;
}


@keyframes ab-stick {
  0% {
    opacity: 0;
    translate: 0 var(--ab-move);
    rotate: var(--ab-rot);
    scale: var(--ab-scale-from);
  }

  35% {
    opacity: 1;
  }

  58% {
    translate: 0 0;
    rotate: calc(var(--ab-rot) * -.09);
    scale: calc(1 - var(--ab-bounce));
  }

  78% {
    rotate: calc(var(--ab-rot) * .035);
    scale: calc(1 + var(--ab-bounce) * .5);
  }

  100% {
    opacity: 1;
    translate: none;
    rotate: none;
    scale: none;
  }
}

@media (max-width: 767px) {

  
  
  .p-about {
    --ab-lead-x: 10.5rem;
    
    height: calc(121.2rem + var(--ab-lead-x));
  }

  .p-about__bg {
    height: calc(114.3rem + var(--ab-lead-x));
    background-size: 14.4rem 14.4rem, 100% 100%;
  }

  
  .p-about__ttl {
    left: -1rem;
    top: 5.5rem;
    width: 39.7rem;
    height: 15rem;
    max-width: none;
  }

  
  .p-about__lead {
    left: 2.5rem;
    right: 2.5rem;
    top: 23.5rem;
    width: auto;
  }

  .p-about__lead p {
    line-height: 3rem;
  }

  .p-about__lead p+p {
    margin-top: 1.5rem;
  }

  

  
  .p-about__card1 {
    left: 2.5rem;
    top: calc(45.5rem + var(--ab-lead-x));
    width: 37rem;
    height: 29.8rem;
  }

  
  .p-about__card1frame {
    top: 4rem;
    width: 32.5rem;
    height: 25.8rem;
  }

  .p-about__burst {
    left: 23.9rem;
    top: 0;
    width: 13.1rem;
    height: 13.5rem;
  }

  
  .p-about__ph {
    left: 3.3rem;
    top: 9.6rem;
    width: 25.8397rem;
    height: 18.13546rem;
  }

  
  .p-about__card2 {
    left: 7.08rem;
    top: calc(73.7085rem + var(--ab-lead-x));
    width: 29.61rem;
    height: 27.494rem;
  }

  
  .p-about__card2img {
    width: 27.9rem;
    height: 27.2rem;
  }

  
  .p-about__badge {
    left: 18.92rem;
    top: 5.091rem;
    width: 9rem;
    height: 9rem;
  }

  .p-about__bnr {
    top: calc(114.3rem + var(--ab-lead-x));
  }

  
  .p-about__pika {
    left: 4rem;
    top: calc(98.8rem + var(--ab-lead-x));
    width: 16rem;
    height: 11rem;
  }

  .p-about__pika>img {
    left: 2.9rem;
    top: 0;
    width: 13.1rem;
    height: 11rem;
  }

  .p-about__pika figcaption {
    left: 0;
    top: 2rem;
    width: 3.2rem;
    height: 1rem;
  }
}


.p-notice {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-notice__body {
  position: relative;
  padding: 16rem 0 20rem;
  background-image: var(--stripe-notice),
    linear-gradient(180deg, var(--color-notice-grad-a) 0%, var(--color-notice-grad-b) 100%);
}

.p-notice__ttl {
  color: var(--color-brand-yellow);
}


.p-notice__lead {
  position: relative;
  margin-top: 9rem;
  text-align: center;
  font-family: var(--ff-jp-disp);
  font-weight: 900;
  font-size: var(--fs-lead);
  line-height: 3.8rem;
  letter-spacing: .05em;
  color: var(--color-ink);
}


.p-notice__lead img {
  position: absolute;
  top: calc(.5 * var(--ts));
  width: calc(2.8 * var(--ts));
  height: calc(2.8 * var(--ts));
}

.p-notice__lead img:first-child {
  left: calc(50% - 33.8 * var(--ts));
}

.p-notice__lead img:last-child {
  right: calc(50% - 33.8 * var(--ts));
}

.p-acc {
  width: 140rem;
  margin: 10rem auto 0;
}

.p-acc+.p-acc {
  margin-top: 6rem;
}


.p-acc__head {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
}

.p-acc__head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -9rem;   
}

.p-acc__head[aria-expanded="true"]::after {
  bottom: 0;       
}

.p-acc__headin {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12.5rem;   
}



.p-acc__ttl {
  position: absolute;
  top: 9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  font-family: var(--ff-jp-disp);
  font-weight: 900;
  font-size: var(--fs-acc-ttl);
  line-height: 3.5rem;
  letter-spacing: .1em;
  color: var(--color-ink);
}


.p-acc__mark {
  position: absolute;
  right: 10rem;
  top: 8rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: var(--color-ink);
  --acc-chev: polygon(30.1183% 55.3034%, 50% 31.0062%, 69.8817% 55.3034%,
                      62.8456% 61.0602%, 50% 45.3609%, 37.1544% 61.0602%);
}

.p-acc__mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-white);
  -webkit-clip-path: var(--acc-chev);
  clip-path: var(--acc-chev);
  transform: rotate(180deg);   
}

.p-acc__head[aria-expanded="true"] .p-acc__mark::before {
  transform: none;             
}

.p-acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  
  padding-bottom: 9rem;
  transition: grid-template-rows .4s ease, padding-bottom .4s ease;
}

.p-acc__head[aria-expanded="true"]+.p-acc__panel {
  grid-template-rows: 1fr;
  padding-bottom: 0;
}


.p-acc__panelin {
  overflow: hidden;
}

.p-acc__inner {
  position: relative;
  padding: 0 0 10rem;
}


.p-acc__line {
  display: block;
  position: relative;
  width: 120rem;
  height: .4rem;
  margin: 6rem auto 0;
  background: var(--color-ink);
}

.p-acc__tx {
  width: 120rem;
  margin: 6rem auto 0;
  text-align: center;
  font-family: var(--ff-jp);
  font-weight: 600;
  
  font-size: var(--fs-acc-tx);
  line-height: 5.8rem;
  letter-spacing: .08em;
  color: var(--color-ink);
}

.p-acc__tx .is-em {
  color: var(--color-alert-red);
  font-weight: 900;
}

.p-acc__dl {
  width: 86rem;
  margin: 5rem auto 0;
}

.p-acc__row {
  display: flex;
  align-items: center;
  gap: 3rem;
  height: 6.5rem;
}

.p-acc__row+.p-acc__row {
  margin-top: 2rem;
}

.p-acc__row dt {
  flex: none;
  width: 36rem;
}

.p-acc__row dt img {
  width: 36rem;
  height: 6.5rem;
}


.p-acc__row dd {
  font-family: var(--ff-jp);
  font-weight: 600;
  font-size: calc(2.2 * var(--ts));
  line-height: 3.5rem;
  letter-spacing: .05em;
  color: var(--color-ink);
  white-space: nowrap;
}

.p-acc__btn {
  width: 60rem;
  height: 12rem;
  margin: 7rem auto 0;
  font-size: calc(2.5 * var(--ts));
  line-height: max(2.5rem, 1em);
}


.p-acc__notes {
  margin: 7rem auto 0;
  width: 120rem;
  background: var(--color-note-bg);
  padding: 6rem 4rem;
  display: flex;
  gap: 4rem;
}

.p-acc__notes--single {
  display: block;
  padding: 4rem 6rem;
}

.p-acc__notes ul {
  flex: 1 1 0;
  min-width: 0;
}

.p-acc__notes--single ul {
  width: auto;
}



.p-acc__notes li {
  display: flex;
  gap: 1rem;
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: max(calc(1.8 * var(--ts)), var(--fs-floor));
  line-height: 3.6rem;
  letter-spacing: .03em;
  color: var(--color-note-gray);
}

.p-acc__notes li+li {
  margin-top: 1.5rem;
}

.p-acc__notes--single li {
  color: var(--color-note-gray2);
}


.p-acc__notes li>span:first-child {
  flex: none;
  width: 1.8rem;
  color: var(--color-note-gray);
  
  font-weight: 600;
}


.p-acc__notes li.is-1line-pc {
  white-space: nowrap;
}


@media (min-width: 768px) and (max-width: 959.98px) {
  .p-acc__notes li.is-1line-pc {
    white-space: normal;
  }
}

.p-notice__bnr {
  position: relative;
}

@media (max-width: 767px) {
  .p-notice__body {
    padding: 6rem 0 8rem;
  }

  
  .p-notice__lead {
    display: block;
    position: relative;
    margin: 4rem auto 0;
    width: 27.4rem;
    line-height: 2.2rem;
    height: 5.4rem;
  }

  .p-notice__lead img {
    position: absolute;
    top: 2rem;
    width: 1.4rem;
    height: 1.4rem;
  }

  .p-notice__lead img:first-child {
    left: 0;
  }

  .p-notice__lead img:last-child {
    right: 0;
  }

  .p-notice__lead .p-notice__leadtx {
    display: block;
    text-align: center;
  }

  .p-notice__lead .p-notice__leadtx+.p-notice__leadtx {
    margin-top: 1rem;
  }

  .p-acc {
    width: 33.5rem;
    margin-top: 4rem;
  }

  .p-acc+.p-acc {
    margin-top: 3rem;
  }

  
  .p-acc__headin {
    height: 6rem;
  }

  .p-acc__head::after {
    bottom: -3rem;   
  }

  .p-acc__head[aria-expanded="true"]::after {
    bottom: 0;
  }

  .p-acc__panel {
    padding-bottom: 3rem;
  }

  .p-acc__head[aria-expanded="true"]+.p-acc__panel {
    padding-bottom: 0;
  }

  
  .p-acc__ttl {
    top: 3.4rem;
    line-height: 2rem;
  }

  
  .p-acc__mark {
    right: 3rem;
    top: 3rem;
    width: 2.8rem;
    height: 2.8rem;
    --acc-chev: polygon(28.0274% 57.2847%, 50% 30.9176%, 71.9726% 57.2847%,
                        63.7417% 64.1438%, 50% 47.6538%, 36.2583% 64.1438%);
  }

  .p-acc__inner {
    padding: 0 0 5rem;
  }

  
  .p-acc__line {
    width: 27.5rem;
    height: .2rem;
    margin: 1.8rem auto 0;
  }

  
  
  .p-acc__tx {
    width: calc(27.5rem + .08em);
    margin-top: 2.5rem;
    line-height: 3.2rem;
    letter-spacing: .08em;
  }

  
  .p-acc__notes {
    width: 27.5rem;
    margin-top: 4rem;
    padding: 0;
    background: none;
    display: block;
  }

  .p-acc__notes ul {
    width: auto;
  }

  .p-acc__notes ul+ul {
    margin-top: 1.5rem;
  }

  
  .p-acc__notes li {
    font-size: calc(1.2 * var(--ts));
    line-height: 2.4rem;
    letter-spacing: .03em;
    gap: .5rem;
  }

  .p-acc__notes li+li {
    margin-top: 1.5rem;
  }

  .p-acc__notes li>span:first-child {
    width: 1.2rem;
    font-weight: 500;
  }

  
  .p-acc__notes li.is-1line-pc {
    white-space: normal;
  }

  
  
  .p-acc__notes--single {
    margin-top: 2rem;
    padding: 0;
  }

  
  .p-acc__dl {
    width: 27.5rem;
    margin-top: 3rem;
  }

  .p-acc__row {
    display: block;
    height: auto;
  }

  .p-acc__row dt {
    width: 27.5rem;
  }

  .p-acc__row dt img {
    width: 27.5rem;
    height: 4rem;
  }

  
  .p-acc__row dd {
    margin-top: 1.5rem;
    text-align: center;
    font-size: calc(1.4 * var(--ts));
    line-height: 3rem;
    letter-spacing: .03em;
    white-space: normal;
  }

  
  .p-acc__btn {
    width: 27.5rem;
    height: 8rem;
    margin-top: 3rem;
    font-size: calc(1.6 * var(--ts));
    line-height: max(2.2rem, 1em);
  }
}


.p-spacer {
  width: 100%;
  height: 14rem;
  background: var(--color-white);
}



.p-items {
  position: relative;
  width: 100%;
  overflow-x: clip;
  display: flow-root;
  padding-top: 1rem;
  margin-top: -1rem;
}

.p-items__ttl {
  color: var(--color-brand-yellow);
}

.itg {
  position: relative;
}


.itg__stage {
  position: relative;
}

.itg__pin {
  position: relative;
}

.itg__track {
  position: relative;
}



.itg.is-pinned .itg__stage {
  overflow: clip;
}


.itg.is-pinned .itg__pin {
  position: sticky;
}

.itg.is-pinned .itg__track {
  position: sticky;
}

.itg--1 {
  margin-top: 1rem;
  z-index: 1;
}

.itg--2 {
  margin-top: -25rem;
  z-index: 2;
}

.itg--3 {
  margin-top: -25rem;
  z-index: 3;
}


.itg__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 26rem);
  clip-path: polygon(0 25rem, 100% 0, 100% 100%, 0 100%);
}

.itg--3 .itg__bg {
  height: 100%;
}



.itg--2 .itg__bg {
  clip-path: polygon(0 0, 100% 25rem, 100% 100%, 0 100%);
}


.itg__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
}

.itg--1 .itg__bg::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='60' viewBox='0 0 30 60'%3E%3Cg fill='%23fff' fill-opacity='.1'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='18' cy='33' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 3rem 6rem;
}

.itg--3 .itg__bg::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='60' viewBox='0 0 30 60'%3E%3Cg fill='%23fff' fill-opacity='.15'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='18' cy='33' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 3rem 6rem;
}

.itg--2 .itg__bg::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='-1 -1 52 52'%3E%3Crect width='52' height='52' fill='none' stroke='%23fff' stroke-opacity='.1' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 5.2rem 5.2rem;
  background-position: -.1rem -.1rem;
}

.itg--1 .itg__bg {
  background-color: var(--color-items1);
}

.itg--2 .itg__bg {
  background-color: var(--color-items2);
}

.itg--3 .itg__bg {
  background-color: var(--color-items3);
}



.itg__edge {
  
  position: absolute;
  left: -6.25%;
  width: 112.5%;
  background-color: #000;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  pointer-events: none;
}



.itg__edge--t {
  top: -10rem;
  height: 46rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2160' height='460' viewBox='0 -100 2160 460' preserveAspectRatio='none' fill='none'%3E%3Cg filter='url(%23e)'%3E%3Cpath d='M0 265.625L2160 -15.625V360H0Z' fill='%23000'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='e' x='-160' y='-260' width='2480' height='900' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='-5'/%3E%3CfeGaussianBlur stdDeviation='25'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2160' height='460' viewBox='0 -100 2160 460' preserveAspectRatio='none' fill='none'%3E%3Cg filter='url(%23e)'%3E%3Cpath d='M0 265.625L2160 -15.625V360H0Z' fill='%23000'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='e' x='-160' y='-260' width='2480' height='900' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='-5'/%3E%3CfeGaussianBlur stdDeviation='25'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}


.itg__edge--b {
  top: 100%;
  margin-top: -41rem;
  height: 46rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2160' height='460' viewBox='0 -150 2160 460' preserveAspectRatio='none' fill='none'%3E%3Cg filter='url(%23e)'%3E%3Cpath d='M0 -5.625L2160 275.625V-150H0Z' fill='%23000'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='e' x='-160' y='-310' width='2480' height='900' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='-5'/%3E%3CfeGaussianBlur stdDeviation='25'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2160' height='460' viewBox='0 -150 2160 460' preserveAspectRatio='none' fill='none'%3E%3Cg filter='url(%23e)'%3E%3Cpath d='M0 -5.625L2160 275.625V-150H0Z' fill='%23000'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='e' x='-160' y='-310' width='2480' height='900' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='-5'/%3E%3CfeGaussianBlur stdDeviation='25'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}


.itg--2 .itg__edge {
  transform: scaleX(-1);
}

.itg__inner {
  position: relative;
  padding-top: 39rem;
}


.itg__main {
  position: relative;
  height: 63.5rem;
  width: 120rem;
  margin: 0 auto;
}

.itg__deck {
  position: absolute;
  top: 0;
  width: 58rem;
  height: 58rem;
}

.itg--1 .itg__deck,
.itg--3 .itg__deck {
  left: 0;
}

.itg--2 .itg__deck {
  left: 62rem;
}

.itg__card {
  position: absolute;
  left: 0;
  top: 0;
  width: 50rem;
  height: 50rem;
  
  transition: transform var(--deck-dur) var(--deck-ease);
  will-change: transform;
}

.itg__card[data-depth="0"] {
  transform: translate(8rem, 0);
  z-index: 3;
}

.itg__card[data-depth="1"] {
  transform: translate(4rem, 4rem);
  z-index: 2;
}

.itg__card[data-depth="2"] {
  transform: translate(0, 8rem);
  z-index: 1;
}


.itg--2 .itg__card[data-depth="0"] {
  transform: translate(0, 0);
}

.itg--2 .itg__card[data-depth="1"] {
  transform: translate(4rem, 4rem);
}

.itg--2 .itg__card[data-depth="2"] {
  transform: translate(8rem, 8rem);
}

.itg__card[data-depth="0"] {
  color: var(--color-brand-yellow);
}

.itg__card[data-depth="1"] {
  color: var(--color-slide-mid);
}

.itg__card[data-depth="2"] {
  color: var(--color-ink);
}


.itg__cardface {
  position: absolute;
  inset: 0;
  background: currentColor;
  border: .4rem solid var(--color-ink);
  border-radius: 3rem;
}


.itg__cardstripe {
  position: absolute;
  inset: var(--ins);
  --ins: .4rem;
  --inr: 2.6rem;
  background-image: var(--stripe-card);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: var(--inr);
  overflow: hidden;
}

.itg__card[data-depth="0"] .itg__cardstripe {
  opacity: 1;
}

.itg__cardph {
  position: absolute;
  z-index: 3;
  opacity: 0;
  transition: opacity .3s ease;
  object-fit: contain;
}

.itg__card[data-depth="0"] .itg__cardph {
  opacity: 1;
}


.itg__card.is-sending {
  animation: send-z var(--deck-dur) linear both;
}

.itg__card.is-sending .itg__cardinner {
  animation: send-back var(--deck-dur) var(--deck-ease) both;
}

.itg__card.is-returning {
  animation: send-z var(--deck-dur) linear reverse both;
}

.itg__card.is-returning .itg__cardinner {
  animation: send-back var(--deck-dur) var(--deck-ease) reverse both;
}

.itg__cardinner {
  position: absolute;
  inset: 0;
}

@keyframes send-z {

  0%,
  30% {
    z-index: 6;
  }

  
  31%,
  100% {
    z-index: 1;
  }

  
}

@keyframes send-back {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  30% {
    transform: translate(var(--deck-swing), var(--deck-drop)) rotate(var(--deck-tilt)) scale(var(--deck-pop));
  }

  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

@keyframes send-back-2 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  30% {
    transform: translate(calc(-1 * var(--deck-swing)), var(--deck-drop)) rotate(calc(-1 * var(--deck-tilt))) scale(var(--deck-pop));
  }

  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

.itg--2 .itg__card.is-sending .itg__cardinner {
  animation-name: send-back-2;
}

.itg--2 .itg__card.is-returning .itg__cardinner {
  animation-name: send-back-2;
}



.itg__pager {
  position: absolute;
  top: 62rem;
  z-index: 4;
  display: flex;
  gap: 2rem;
}

.itg--1 .itg__pager,
.itg--3 .itg__pager {
  left: 24.8rem;
}

.itg--2 .itg__pager {
  left: 86.8rem;
}

.itg__pagerbtn {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-pager-off);
  transition: color .2s ease;
}

.itg__pagerbtn[aria-current="true"] {
  color: var(--color-ink);
}


.itg__pagerbtn svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}


.itg__pagerbtn::before {
  content: "";
  position: absolute;
  inset: -1rem;
}


.itg__pagerbtn[aria-current="true"]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .15) 0 .2rem, transparent .2rem);
  background-size: 100% .6rem;
  background-position: 0 .05rem;
  background-repeat: repeat;
}


.itg__tx {
  position: absolute;
  top: 6.4rem;
  width: 50rem;
  display: grid;
  grid-template-columns: 100%;
}

.itg--1 .itg__tx,
.itg--3 .itg__tx {
  left: 70rem;
}

.itg--2 .itg__tx {
  left: 0;
}

.itg__no {
  grid-row: 1;
  position: relative;
  height: 9rem;
}

.itg__txitem {
  grid-row: 2;
  grid-column: 1;
}

.itg__txitem:not(.is-current) {
  visibility: hidden;
}

.itg__no span {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: var(--fs-item-no);
  line-height: 9rem;
  letter-spacing: .05em;
}


.itg__no i {
  position: absolute;
  left: calc(16.2 * var(--ts));
  top: calc(6.8 * var(--ts));
  width: calc(2 * var(--ts));
  height: calc(2 * var(--ts));
  border-radius: 50%;
  background: currentColor;
}

.itg__name {
  margin-top: 6rem;
  font-family: var(--ff-jp-disp);
  font-weight: 900;
  font-size: var(--fs-item-name);
  line-height: 6.5rem;
  letter-spacing: .05em;
}



.itg__price {
  margin-top: 2rem;
  font-family: var(--ff-jp-disp);
  font-weight: 900;
  line-height: 0;
  font-size: 0;   
}


.itg__price p,
.itg__price small {
  display: inline;
}

.itg__price p {
  font-size: var(--fs-price);
  line-height: max(3.5rem, 1em);
  letter-spacing: .05em;
  font-weight: 900;
  margin-right: -.05em;   
}


.itg__price small {
  font-size: var(--fs-tax);
  line-height: max(2rem, 1em);
  letter-spacing: .05em;
  white-space: nowrap;
  margin-left: -.255em;   
  vertical-align: .107em; 
}


.itg__btn {
  margin-top: 5rem;
  width: 30rem;
  height: 8.5rem;
}

.itg--1 .itg__tx,
.itg--3 .itg__tx {
  color: var(--color-ink);
}

.itg--2 .itg__tx {
  color: var(--color-white);
}


.itg__name,
.itg__price {
  transition: opacity var(--tx-dur) var(--tx-ease);
}

.itg__tx.is-swap .itg__name,
.itg__tx.is-swap .itg__price {
  opacity: 0;
}


.nomotion .itg__name,
.nomotion .itg__price {
  transition: none;
}


.itg__grid {
  position: relative;
  width: 120rem;
  margin: 14rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 35rem);
  justify-content: space-between;
  row-gap: 12rem;
}


.itc {
  position: relative;
  width: 35rem;
  touch-action: pan-y;
}



.itc__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  cursor: pointer;
}

.itc__link > * {
  flex: 0 0 auto;
}

.itc__link > *:nth-last-child(2) {
  flex-grow: 1;
}


.itc__link:focus-visible .itc__btn {
  filter: brightness(1.35);
}


.itc.is-dragging,
.itc.is-dragging * {
  -webkit-user-select: none;
  user-select: none;
}

.itc__link,
.itc__link img {
  -webkit-user-drag: none;
}

.itc__img {
  position: relative;
  width: 35rem;
  height: 44rem;
  background: var(--color-brand-yellow);
  border: .4rem solid var(--color-ink);
  border-radius: 3rem;
}


.itc__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2.6rem;
}

.itc__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--slide-dur) var(--slide-ease);
}

.itc__slide.is-current {
  opacity: 1;
}



.itc__slide picture,
.itg__cardinner picture {
  display: contents;
}


.itc {
  --itc-phw: 34.2rem;
  --itc-phh: 38.6rem;
}

.itc__slide img {
  display: block;
  width: var(--itc-phw);
  height: var(--itc-phh);
  margin-inline: auto;
  object-fit: contain;
}

.nomotion .itc__slide {
  transition: none;
}




.itc__dots {
  position: absolute;
  left: 50%;
  top: 40rem;
  transform: translateX(-50%);
  z-index: 2;
  
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 1rem;
}

.itc__dots:empty {
  display: none;
}

.itc__dot {
  position: relative;
  flex: none;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-white);
  transition: background-color .2s ease;
}


.itc__dot::before {
  content: "";
  position: absolute;
  inset: -1rem;
  border-radius: 50%;
}

.itc__dot[aria-current="true"] {
  background: var(--color-ink);
}

.itc__name {
  margin-top: 3.5rem;
  text-align: center;
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: var(--fs-card-name);
  line-height: 4rem;
  letter-spacing: .05em;
}


.itc__price {
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--ff-jp-disp);
  font-weight: 900;
  
  line-height: 0;
  
  font-size: 0;
}

.itc__price p,
.itc__price small {
  display: inline;
}

.itc__price p {
  font-size: var(--fs-price);
  line-height: max(3.5rem, 1em);
  letter-spacing: .05em;
  font-weight: 900;
  margin-right: -.05em;   
}

.itc__price small {
  font-size: var(--fs-tax);
  line-height: max(2rem, 1em);
  letter-spacing: .05em;
  white-space: nowrap;
  margin-left: -.255em;   
  vertical-align: .107em; 
}



.itc__size {
  --lh1: 1.6rem;
  --lh: max(var(--itc-size-lh, 2.6rem), calc(var(--fs-card-size) * 1.63));
  margin-top: calc(2.5rem - (var(--lh) - var(--lh1)) / 2);
  margin-bottom: calc((var(--lh) - var(--lh1)) / -2);
  text-align: center;
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: var(--fs-card-size);
  line-height: var(--lh);
  letter-spacing: .05em;
}


.itc__btn {
  margin: 4rem auto 0;
  width: 30rem;
  height: 8.5rem;
  font-size: var(--fs-btn-card);
}


@media (hover: hover) {
  .itc:hover .itc__btn {
    filter: brightness(1.35);
  }
}

.itg--1 .itc,
.itg--3 .itc {
  color: var(--color-ink);
}

.itg--2 .itc {
  color: var(--color-white);
}

.itc.is-extra {
  display: none;
}

.itg.is-expanded .itc.is-extra {
  display: block;
}

.itg__more {
  position: relative;
  width: 60rem;
  height: 12rem;
  margin: 14rem auto 0;
  font-size: var(--fs-btn-lg);
}

.itg__close {
  display: none;
}

.itg.is-expanded .itg__more {
  display: none;
}

.itg.is-expanded .itg__close {
  display: grid;
}


.itg__illust {
  position: relative;
  
  pointer-events: none;
}

.itg__illust figure {
  position: absolute;
}

.itg__illust figure>img {
  width: 100%;
  height: 100%;
}


.itg__illust figcaption {
  position: absolute;
  width: 5.7rem;
  height: 1.5rem;
}

.itg__illust figcaption picture,
.itg__illust figcaption img {
  display: block;
  width: 100%;
  height: 100%;
}

.itg--1 .itg__illust .f1 figcaption {
  width: 5.6rem;
}



.itg--1 .itg__illust {
  height: 38.5rem;
  margin-top: 5.5rem;
}

.itg--1 .itg__illust .f1 {
  left: 41rem;
  top: 0;
  width: 20rem;
  height: 25rem;
}

.itg--1 .itg__illust .f1 figcaption {
  left: -6rem;
  top: 7rem;
}

.itg--1 .itg__illust .f2 {
  left: 100.4rem;
  top: 6rem;
  width: 28.2rem;
  height: 25rem;
}

.itg--1 .itg__illust .f2 figcaption {
  left: -7.2rem;
  top: 14.5rem;
}

.itg--1 .itg__illust .f3 {
  left: 136.1rem;
  top: 2.5rem;
  width: 41.9rem;
  height: 36rem;
}

.itg--1 .itg__illust .f3 figcaption {
  left: -3rem;
  top: 4.5rem;
}


.itg--2 .itg__illust {
  height: 54.5rem;
  margin-top: -12rem;
}


.itg--2 .itg__illust .f1 {
  left: 132rem;
  top: 0;
  width: 49.5rem;
  height: 40rem;
}

.itg--2 .itg__illust .f1 figcaption {
  left: 41.8rem;
  top: 33rem;
}


.itg--2 .itg__illust .f2 {
  left: 24.7rem;
  top: 31.5rem;
  width: 18.7rem;
  height: 23rem;
}

.itg--2 .itg__illust .f2 figcaption {
  left: -6.7rem;
  top: 6rem;
}


.itg--2 .itg__illust .f3 {
  left: 49.4rem;
  top: 19.2rem;
  width: 31.4rem;
  height: 31.3rem;
}

.itg--2 .itg__illust .f3 figcaption {
  left: 26.2rem;
  top: 25.3rem;
}

.itg--3 .itg__illust {
  height: 35rem;
  margin-top: 1rem;
}


.itg--3 .itg__illust .f1 {
  left: 43rem;
  top: 12.5rem;
  width: 20.6rem;
  height: 20rem;
}

.itg--3 .itg__illust .f1 figcaption {
  left: -6rem;
  top: 12rem;
}


.itg--3 .itg__illust .f2 {
  left: 70.6rem;
  top: 7.5rem;
  width: 25.7rem;
  height: 27rem;
}

.itg--3 .itg__illust .f2 figcaption {
  left: 20.5rem;
  top: 2.5rem;
}

.itg--3 .itg__illust .f3 {
  left: 120.3rem;
  top: 0;
  width: 40.7rem;
  height: 35rem;
}

.itg--3 .itg__illust .f3 figcaption {
  left: 35rem;
  top: 26rem;
}

.itg--1 .itg__inner {
  padding-bottom: 16rem;
}

.itg--2 .itg__inner {
  padding-bottom: 17rem;
}

.itg--3 .itg__inner {
  padding-bottom: 9rem;
}

.p-items__bnr {
  position: relative;
  z-index: 4;
}

@media (max-width: 767px) {
  .p-spacer {
    height: 6rem;
  }

  .itg--1 {
    margin-top: 3.9rem;
  }

  .itg--2 {
    margin-top: -5rem;
  }

  .itg--3 {
    margin-top: -5rem;
  }

  
  
  .itg__bg {
    height: calc(100% + 30rem);
    clip-path: polygon(0 5rem, 100% 0, 100% 100%, 0 100%);
  }

  
  
  .itg--3 .itg__bg {
    height: 100%;
    
    background-image: linear-gradient(to top, var(--color-ink) 2.34px, rgba(0, 0, 0, 0) 2.34px);
  }

  .itg--3 .itg__bg::after {
    inset: 0 0 2px;
  }

  
  
  
  .p-items__bnr {
    background: var(--color-ink);
    padding-block: 0 2px;
  }

  .p-items__bnr .c-mq {
    border-top: 0;
    border-bottom: 0;
    height: calc(6.9rem - 4px);
  }

  
  .itg--2 .itg__bg {
    clip-path: polygon(0 0, 100% 5rem, 100% 100%, 0 100%);
  }

  
  .itg--1 .itg__bg::after,
  .itg--3 .itg__bg::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='168' height='336' viewBox='0 0 168 336'%3E%3Cg fill='%23fff' fill-opacity='.1'%3E%3Ccircle cx='21' cy='21' r='21'/%3E%3Ccircle cx='105' cy='189' r='21'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 1.68rem 3.36rem;
    background-position: 0 0;
  }

  .itg--3 .itg__bg::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='168' height='336' viewBox='0 0 168 336'%3E%3Cg fill='%23fff' fill-opacity='.15'%3E%3Ccircle cx='21' cy='21' r='21'/%3E%3Ccircle cx='105' cy='189' r='21'/%3E%3C/g%3E%3C/svg%3E");
    background-position: .1rem 0;
  }

  .itg--2 .itg__bg::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='-0.5 -0.5 26 26'%3E%3Crect width='26' height='26' fill='none' stroke='%23fff' stroke-opacity='.1' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 2.6rem 2.6rem;
    background-position: -.05rem -.05rem;
  }

  
  .itg__edge {
    display: none;
  }

  
  .itg__inner {
    padding-top: 20rem;
  }

  
  .itg__main {
    width: 32.5rem;
    height: auto;
    min-height: 59.7rem;
  }

  .itg__deck {
    width: 27.5rem;
    height: 32rem;
  }

  .itg--1 .itg__deck,
  .itg--2 .itg__deck,
  .itg--3 .itg__deck {
    left: 2.5rem;
    top: 9rem;
  }

  .itg__card {
    width: 23.5rem;
    height: 23.5rem;
  }

  .itg__card[data-depth="0"] {
    transform: translate(4rem, 0);
  }

  .itg__card[data-depth="1"] {
    transform: translate(2rem, 2rem);
  }

  .itg__card[data-depth="2"] {
    transform: translate(0, 4rem);
  }

  
  .itg--2 .itg__card[data-depth="0"] {
    transform: translate(0, 0);
  }

  .itg--2 .itg__card[data-depth="1"] {
    transform: translate(2rem, 2rem);
  }

  .itg--2 .itg__card[data-depth="2"] {
    transform: translate(4rem, 4rem);
  }

  .itg__cardface {
    border-width: .2rem;
    border-radius: 1rem;
  }

  
  .itg__cardstripe {
    --ins: .2rem;
    --inr: .8rem;
  }

  
  
  .itg--1 .itg__pager,
  .itg--2 .itg__pager,
  .itg--3 .itg__pager {
    left: 14.1rem;
    top: 39rem;
    gap: 1rem;
  }

  .itg__pagerbtn {
    width: .8rem;
    height: .8rem;
  }

  .itg__pagerbtn::before {
    inset: -.5rem;
  }

  .itg__pagerbtn[aria-current="true"]::after {
    display: none;
  }

  

  
  .itg__tx {
    position: relative;
  }

  .itg--1 .itg__tx,
  .itg--2 .itg__tx,
  .itg--3 .itg__tx {
    left: 0;
    top: 0;
    width: 32.5rem;
    text-align: center;
  }

  
  .itg__no {
    height: 5rem;
    text-align: right;
    padding-right: 4.7rem;
  }

  .itg__no span {
    line-height: 5rem;
  }

  .itg__no i {
    left: auto;
    right: 2.5rem;
    top: 3.8rem;
    width: 1.2rem;
    height: 1.2rem;
  }

  .itg--2 .itg__no {
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
  }

  .itg--2 .itg__no i {
    left: 12.2rem;
    right: auto;
  }

  
  .itg__name {
    margin-top: 37.8rem;
    line-height: 3rem;
  }

  
  .itg__price {
    margin-top: 1rem;
    text-align: center;
  }

  .itg__price p {
    line-height: max(2.2rem, 1em);
  }

  .itg__price small {
    line-height: max(1.2rem, 1em);
  }

  
  .itg__btn {
    margin: 2.5rem auto 0;
    width: 20rem;
    height: 5.5rem;
  }

  .itg__grid {
    width: 32.5rem;
    margin-top: 6rem;
    grid-template-columns: repeat(2, 15rem);
    row-gap: 5rem;
  }

  .itc {
    width: 15rem;
  }

  .itc__img {
    width: 15rem;
    height: 18.5rem;
    border-width: .2rem;
    border-radius: 1.5rem;
  }

  .itc__slides {
    border-radius: 1.3rem;
  }

  .itc {
    --itc-phw: 14.6rem;
    --itc-phh: 16.8rem;
  }

  
  
  .itc__dots {
    left: 50%;
    top: 17rem;
    gap: .5rem;
    height: .5rem;
  }

  .itc__dot {
    width: .5rem;
    height: .5rem;
  }

  .itc__dot::before {
    inset: -.75rem;
  }

  .itc__name {
    margin-top: 2rem;
    line-height: 2.2rem;
  }

  .itc__price {
    margin-top: 1rem;
  }

  .itc__price p {
    line-height: max(2.6rem, 1em);
  }

  .itc__price small {
    line-height: max(1.2rem, 1em);
  }

  .itc__size {
    --lh1: 2rem;
    --lh: max(var(--itc-size-lh-sp, 2rem), calc(var(--fs-card-size) * 1.63));
    margin-top: calc(1rem - (var(--lh) - var(--lh1)) / 2);
    margin-bottom: calc((var(--lh) - var(--lh1)) / -2);
    line-height: var(--lh);
  }

  .itc__btn {
    margin-top: 1.5rem;
    width: 15rem;
    height: 4.5rem;
    line-height: max(1.4rem, 1em);
  }

  .itg__btn {
    line-height: 1.6rem;
  }

  .itg__more {
    width: 27.5rem;
    height: 7rem;
    margin-top: 6rem;
  }

  .itg__illust figcaption {
    width: 3.2rem;
    height: 1rem;
  }

  
  .itg--1 .itg__illust .f1 figcaption {
    width: 3.1rem;
  }

  
  .itg--1 .itg__illust {
    height: 26.9rem;
    margin-top: 2.5rem;
  }

  
  .itg--1 .itg__illust .f1 {
    left: 14.2rem;
    top: 0;
    width: 8.8rem;
    height: 11rem;
  }

  .itg--1 .itg__illust .f1 figcaption {
    left: -3.2rem;
    top: 2.5rem;
  }

  
  
  .itg--1 .itg__illust .f2 {
    left: 3rem;
    top: 9.9rem;
    width: 12.4rem;
    height: 11rem;
  }

  .itg--1 .itg__illust .f2 figcaption {
    left: -.5rem;
    top: -.5rem;
  }

  
  
  .itg--1 .itg__illust .f3 {
    left: 17.4rem;
    top: 10.9rem;
    width: 18.6rem;
    height: 16rem;
  }

  .itg--1 .itg__illust .f3 figcaption {
    left: 12.9rem;
    top: .5rem;
  }

  

  
  .itg--2 .itg__illust {
    height: 32.5rem;
    margin-top: 2rem;
  }

  
  .itg--2 .itg__illust .f1 {
    left: 13.2rem;
    top: 14.5rem;
    width: 22.3rem;
    height: 18rem;
  }

  .itg--2 .itg__illust .f1 figcaption {
    left: 1rem;
    top: 15.5rem;
  }

  
  .itg--2 .itg__illust .f2 {
    left: 20.1rem;
    top: 0;
    width: 8.5rem;
    height: 10.5rem;
  }

  .itg--2 .itg__illust .f2 figcaption {
    left: 8rem;
    top: 8.9rem;
  }

  
  .itg--2 .itg__illust .f3 {
    left: 3rem;
    top: 2.5rem;
    width: 14.1rem;
    height: 14rem;
  }

  .itg--2 .itg__illust .f3 figcaption {
    left: 6.4rem;
    top: 2rem;
  }

  
  .itg--3 .itg__illust {
    height: 26rem;
    margin-top: 2.5rem;
  }

  
  .itg--3 .itg__illust .f1 {
    left: 12.3rem;
    top: 0;
    width: 9.8rem;
    height: 9.5rem;
  }

  .itg--3 .itg__illust .f1 figcaption {
    left: 8.1rem;
    top: 1.5rem;
  }

  
  
  .itg--3 .itg__illust .f2 {
    left: 3rem;
    top: 9.5rem;
    width: 11.9rem;
    height: 12.5rem;
  }

  .itg--3 .itg__illust .f2 figcaption {
    left: .5rem;
    top: 13.5rem;
  }

  
  
  .itg--3 .itg__illust .f3 {
    left: 16.4rem;
    top: 10rem;
    width: 18.6rem;
    height: 16rem;
  }

  .itg--3 .itg__illust .f3 figcaption {
    left: 12.4rem;
    top: .7rem;
  }

  

  .itg--1 .itg__inner {
    padding-bottom: 6rem;
  }

  .itg--2 .itg__inner {
    padding-bottom: 9rem;
  }

  .itg--3 .itg__inner {
    padding-bottom: 5rem;
  }
}



.p-info {
  position: relative;
  width: 100%;
  padding: 16rem 0 20rem;
  background-image: url("../images/info/bg-pattern-pokeball-orange.png"),
    linear-gradient(180deg, var(--color-info-grad-a) 20%, var(--color-info-grad-b) 100%);
  background-repeat: repeat, no-repeat;
  background-position: 0 -12.35rem, 0 0;
  background-size: 28.8rem 28.8rem, 100% 100%;
}

.p-info__ttl {
  color: var(--color-white);
}

.p-info__card {
  width: 140rem;
  margin: 13rem auto 0;
}

.p-info__body {
  padding: 9rem 10rem 10rem;
}

.p-info__h3 {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--ff-jp-disp);
  font-weight: 900;
  font-size: var(--fs-h3);
  line-height: 6rem;
  letter-spacing: .05em;
  color: var(--color-ink);
}

.p-info__h3 img {
  width: 2.8rem;
  height: 2.8rem;
  flex: none;
}

.p-info__note {
  display: flex;
  gap: 1rem;
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: var(--fs-note);
  line-height: 4.5rem;
  letter-spacing: .05em;
  color: var(--color-ink);
}

.p-info__note>span:first-child {
  flex: none;
  width: 2rem;
}


.p-info__note>span:last-child {
  flex: none;
  width: 113rem;
}

.p-info__note .is-em {
  color: var(--color-alert-red);
  font-weight: 900;
}


.p-info__note .is-tight {
  letter-spacing: .024em;
}

.p-info__h3+.p-info__note {
  margin-top: 2.5rem;
}

.p-info__note+.p-info__note {
  margin-top: 2rem;
}

.p-info__btn {
  width: 52rem;
  height: 11rem;
  font-size: var(--fs-btn-info);
  line-height: max(2.2rem, 1em);
}

.p-info__note+.p-info__btn {
  margin-top: 3.5rem;
}

.p-info__btn+.p-info__note {
  margin-top: 4rem;
}


.p-info__line {
  display: block;
  width: 120rem;
  height: .4rem;
  margin-top: 7rem;
  background: var(--color-ink);
}

.p-info__line+.p-info__h3 {
  margin-top: 7rem;
}

@media (max-width: 767px) {

  
  .p-info {
    padding: 6rem 0 8rem;
    background-size: 14.4rem 14.4rem, 100% 100%;
    background-position: 0 -4.7rem, 0 0;
  }

  .p-info__card {
    width: 33.5rem;
    margin-top: 5rem;
  }

  .p-info__ttl {
    font-size: calc(3.8 * var(--ts));
    
    height: 3.2rem;
    line-height: 3.2rem;
    letter-spacing: .04em;
  }

  .p-info__body {
    padding: 4.2rem 3rem 5rem;
  }

  
  .p-info__h3 {
    gap: 1.5rem;
    line-height: 3rem;
  }

  .p-info__h3 img {
    width: 1.4rem;
    height: 1.4rem;
  }

  
  .p-info__note {
    gap: .5rem;
    line-height: 2.8rem;
    letter-spacing: .03em;
  }

  .p-info__note>span:first-child {
    line-height: 3rem;
    width: 1.4rem;
  }

  
  .p-info__note>span:last-child {
    width: 25.6rem;
  }

  
  .p-info__note .is-tight-sp {
    letter-spacing: .01em;
  }

  .p-info__h3+.p-info__note {
    margin-top: 1.5rem;
  }

  .p-info__note+.p-info__note {
    margin-top: 1.5rem;
  }

  .p-info__btn {
    width: 27.5rem;
    height: 8rem;
  }

  .p-info__note+.p-info__btn {
    margin-top: 2.5rem;
  }

  .p-info__btn+.p-info__note {
    margin-top: 3rem;
  }

  
  .p-info__line {
    width: 27.5rem;
    height: .2rem;
    margin-top: 3.5rem;
  }

  .p-info__line+.p-info__h3 {
    margin-top: 3.5rem;
  }
}


.p-mv__chev svg,
.p-mv__arwsp svg,
.p-loading__arw svg {
  width: 100%;
  height: 100%;
}


.itg__deck {
  --itg-phw: 40rem;
  
  --itg-phh: 40rem;
  
  --itg-phshx: 1rem;
  
  --itg-phshy: 1rem;
  
  --itg-phshc: rgba(13, 19, 26, .2);
}

.itg__cardph {
  left: 50%;
  top: 50%;
  width: var(--itg-phw);
  height: var(--itg-phh);
  transform: translate(-50%, -50%);
  filter: drop-shadow(var(--itg-phshx) var(--itg-phshy) 0 var(--itg-phshc));
}

@media (max-width: 767px) {

  
  .itg__deck {
    --itg-phw: 18.8rem;
    --itg-phh: 18.8rem;
    
    --itg-phshx: .5rem;
    --itg-phshy: .5rem;
  }
}

.itg__illust figure>img {
  object-fit: contain;
}


.p-gap-footer {
  width: 100%;
  height: 0;
  background: var(--color-white);
}

@media (max-width: 767px) {
  .p-gap-footer {
    height: 4rem;
  }
}