@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

/* ==================================================
  PLAY YOUR STYLE / PC + SP
  01. Foundation
  02. KV & Intro
  03. Event
  04. Gallery Modal
  05. League Navigation
  06. Team Sections & Products
  07. Smartphone / Responsive
================================================== */

/* ==================================================
  01. Foundation
================================================== */
@font-face {
  font-family: "adineuePRO-Regular";
  src: url("https://realsports.itembox.cloud/item/zett/common/font/adineuePRO-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "adineuePRO-Bold";
  src: url("https://realsports.itembox.cloud/item/zett/common/font/adineuePRO-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.pys {
  --pys-width: 1000px;
  --pys-font-ja: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --pys-font-en: "adineuePRO-Regular", "Arial Narrow", Arial, sans-serif;
  --pys-font-en-bold: "adineuePRO-Bold", "Arial Narrow", Arial, sans-serif;
  --pys-red: #f40102;
  --pys-cream: #faf3f0;
  --pys-black: #000;
  --pys-white: #fff;
  --pys-card-gap: 13px;
  width: 100%;
  max-width: 1920px;
  min-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--pys-white);
  color: var(--pys-black);
  font-family: var(--pys-font-ja);
  font-size: 16px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.pys *,
.pys *::before,
.pys *::after {
  box-sizing: border-box;
}

.pys img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pys a {
  color: inherit;
  text-decoration: none;
}

.pys button {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.pys [hidden] {
  display: none !important;
}

.pys-inner {
  width: var(--pys-width);
  margin-right: auto;
  margin-left: auto;
}

/* ==================================================
  02. KV & Intro
================================================== */
/* Text-led sections stay in normal flow so copy changes move later content. */
.pys-kv {
  position: relative;
  width: 100%;
  overflow: visible;
  background: var(--pys-white);
}

.pys-kv__slider {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.pys-kv__slider .slick-list,
.pys-kv__slider .slick-track,
.pys-kv__slide,
.pys-kv__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pys-kv__slider:not(.slick-initialized) .pys-kv__slide:not(:first-child) {
  display: none;
}

.pys-kv__slide {
  overflow: hidden;
}

.pys-kv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pys-kv .slick-dots {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background: transparent;
  transform: none;
}

.pys-kv .slick-dots li {
  display: flex;
  flex: 0 0 8px;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pys-kv .slick-dots button {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0 !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 50%;
  appearance: none;
  background: #ccc !important;
  color: transparent;
  font-size: 0;
  line-height: 0;
  transition: background-color .25s ease, transform .25s ease;
}

.pys-kv .slick-dots .slick-active button {
  background: #333 !important;
  transform: scale(1.2);
}

.pys-kv__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
  background: var(--pys-white);
}

.pys-kv__dots:empty {
  display: none;
}

/* jQueryを読み込まない単体確認環境でもKVは同じ挙動にする。 */
.pys-kv__slider.is-fallback-slider {
  position: relative;
}

.pys-kv__slider.is-fallback-slider .pys-kv__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  visibility: hidden;
  opacity: 0;
  transition: opacity .7s ease, visibility 0s linear .7s;
}

.pys-kv__slider.is-fallback-slider .pys-kv__slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.pys-kv__fallback-dots {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background: transparent;
  transform: none;
}

.pys-kv__fallback-dots li {
  display: flex;
  flex: 0 0 8px;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pys-kv__fallback-dots button {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0 !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 50%;
  appearance: none;
  background: #ccc !important;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.pys-kv__fallback-dots .is-active button {
  background: #333 !important;
  transform: scale(1.2);
}

.pys-intro {
  padding: 100px 0 0;
  background: var(--pys-white);
  text-align: center;
}

.pys-intro__title {
  background: linear-gradient(180deg, #de60d7 0%, #ef95c8 100%);
  background-clip: text;
  font-family: var(--pys-font-en-bold);
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pys-intro__lead {
  margin-top: 40px;
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: .14em;
}

.pys-intro__text {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: .14em;
}

/* ==================================================
  03. Remake & Customize Event
================================================== */
.pys-event {
  padding-top: 100px;
  padding-bottom: 120px;
  background: var(--pys-cream);
}

.pys-event__kv {
  width: 1000px;
  height: auto;
}

.pys-event__panel {
  width: 1000px;
  margin-top: 80px;
  padding: 80px 0;
  overflow: hidden;
  border-radius: 25px;
  background: var(--pys-white);
}

.pys-section-head {
  width: 792px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pys-section-head__en {
  color: var(--pys-black);
  font-family: var(--pys-font-en-bold);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
}

.pys-section-head__en--black {
  color: var(--pys-black);
}

.pys-section-head__accent {
  color: var(--pys-red);
}

.pys-section-head__ja {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: .2em;
}

.pys-section-head__desc {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: .04em;
}

.pys-remake-slider {
  position: relative;
  width: 1000px;
  margin-top: 60px;
}

.pys-remake-slider__viewport {
  width: 792px;
  margin: 0 auto;
  overflow: hidden;
}

.pys-remake-slider__controls--desktop {
  display: contents;
}

.pys-remake-slider__controls--mobile {
  display: none;
}

.pys-remake-slider__track {
  display: grid;
  width: 100%;
}

.pys-remake-slide {
  grid-area: 1 / 1;
  width: 792px;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  text-align: center;
}

.pys-remake-slide.is-active,
.pys-remake-slide.is-moving {
  visibility: visible;
  opacity: 1;
}

.pys-remake-slide.is-active {
  z-index: 1;
}

.pys-remake-slide.is-moving {
  z-index: 2;
}

.pys-remake-slide__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 202px;
  height: 32px;
  border-radius: 999px;
  background: var(--pys-black);
  color: var(--pys-white);
  font-family: var(--pys-font-en);
  font-size: 24px;
  line-height: 1;
  letter-spacing: .04em;
}

.pys-remake-slide__title {
  margin-top: 20px;
  color: var(--pys-red);
  font-family: var(--pys-font-en);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .04em;
}

.pys-remake-slide__subtitle {
  margin-top: 15px;
  color: var(--pys-red);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .12em;
}

.pys-remake-slide__images,
.pys-customize__images {
  display: flex;
  gap: 20px;
  width: 790px;
}

.pys-remake-slide__images {
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
}

.pys-remake-slide__images img,
.pys-customize__images img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 25px;
}

.pys-remake-slide__text {
  margin-top: 40px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: .02em;
}

.pys-arrow {
  position: absolute;
  top: 227px;
  width: 74px;
  height: 74px;
  border: 2px solid var(--pys-white) !important;
  border-radius: 50%;
  background: rgba(117, 117, 117, .5) !important;
  transition: opacity .2s ease, background-color .2s ease;
}

@media (hover: hover) and (min-width: 769px) {
  .pys-arrow:hover {
    background: rgba(80, 80, 80, .65) !important;
  }
}

.pys-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-top: 6px solid var(--pys-white);
  border-right: 6px solid var(--pys-white);
}

.pys-arrow--prev {
  left: 16px;
}

.pys-arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.pys-arrow--next {
  right: 16px;
}

.pys-arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.pys-customize {
  margin-top: 80px;
}

.pys-section-head--customize .pys-section-head__desc {
  margin-top: 20px;
}

.pys-customize__images {
  margin: 40px auto 0;
}

.pys-event-info {
  width: 790px;
  margin: 60px auto;
  padding-top: 60px;
  border-top: 2px solid #eee;
}

.pys-event-info__list,
.pys-event-info__row {
  margin: 0;
}

.pys-event-info__row {
  width: 100%;
}

.pys-event-info__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pys-event-info dt,
.pys-artist h3,
.pys-notes h3 {
  color: var(--pys-red);
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: .12em;
}

.pys-event-info dt,
.pys-artist h3 {
  display: flex;
  align-items: center;
  gap: 11px;
}

.pys-event-info dt::before,
.pys-artist h3::before {
  content: "";
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  background: var(--pys-red);
}

.pys-event-info dd {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: .04em;
}

.pys-event-info__type {
  color: var(--pys-black);
}

.pys-event-info__type > span {
  color: var(--pys-red);
}

.pys-schedule {
  position: relative;
  width: 790px;
  margin-top: 13px;
}

.pys-schedule__tabs {
  position: relative;
  z-index: 2;
  display: flex;
  width: 500px;
  height: 40px;
}

.pys-schedule__tab {
  position: relative;
  display: flex;
  flex: 0 0 250px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 250px;
  height: 40px;
  border: 0 !important;
  background: #ccc !important;
  color: var(--pys-white) !important;
  font-family: var(--pys-font-en) !important;
  line-height: 1 !important;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.pys-schedule__tab:first-child {
  border-radius: 10px 10px 0 0;
}

.pys-schedule__tab:last-child {
  margin-left: -1px;
  border-radius: 10px 10px 0 0;
}

.pys-schedule__tab span,
.pys-schedule__tab small {
  font-family: var(--pys-font-en) !important;
  font-weight: 400;
}

.pys-schedule__tab span {
  font-size: 24px;
  letter-spacing: .04em;
}

.pys-schedule__tab small {
  font-size: 20px;
  letter-spacing: .04em;
}

.pys-schedule__tab.is-active {
  z-index: 3;
  border: 1px solid #8a8a8a !important;
  border-bottom: 0 !important;
  background: var(--pys-white) !important;
  color: #2c2c2c !important;
}

.pys-schedule__tab:not(.is-active) {
  z-index: 0;
  height: 39px;
  margin-top: 1px;
  box-shadow: inset 0 -4px 5px -3px rgba(0, 0, 0, .25);
}

.pys-schedule__tab.is-active::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 2px;
  background: var(--pys-red);
}

.pys-schedule__tab:not(.is-active):focus-visible {
  background: #bfbfbf !important;
}

@media (hover: hover) and (min-width: 769px) {
  .pys-schedule__tab:not(.is-active):hover {
    background: #bfbfbf !important;
  }
}

.pys-schedule__panel {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  overflow: hidden;
  border: 1px solid #8a8a8a;
  border-radius: 0 10px 10px 10px;
  background: #fafaff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .18);
}

.pys-schedule__list {
  overflow: hidden;
}

.pys-schedule__list li {
  display: grid;
  /* The panel's 1px left border is included in the visual 250px column. */
  grid-template-columns: 249px 1fr;
  background: #fafaff;
}

.pys-schedule__list li + li {
  border-top: 1px solid #8a8a8a;
}

.pys-schedule__list li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--pys-white);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .08em;
}

.pys-schedule__list strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  color: var(--pys-red);
  text-align: center;
}

.pys-schedule__list b {
  font-family: var(--pys-font-en);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: .04em;
}

.pys-schedule__list em {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .08em;
}

.pys-schedule__panel.is-refreshing .pys-schedule__list {
  animation: pys-schedule-refresh .32s cubic-bezier(.22, 1, .36, 1);
}

@keyframes pys-schedule-refresh {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pys-schedule__capacity-number {
  display: inline-block;
  margin: 0 1px;
  font-family: var(--pys-font-en);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .04em;
  vertical-align: -1px;
}

.pys-event-info__type--customize {
  margin-top: 30px;
}

.pys-event-info__type--customize b {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
}

.pys-event-info__type--customize i {
  font-family: var(--pys-font-en);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}

.pys-customize-hours {
  display: grid;
  grid-template-columns: 249px 1fr;
  align-items: center;
  width: 790px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #8a8a8a;
  border-radius: 10px;
  background: #fafaff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .18);
}

.pys-customize-hours > span,
.pys-customize-hours > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  line-height: 1;
}

.pys-customize-hours > span {
  align-self: stretch;
  background: var(--pys-white);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .08em;
}

.pys-customize-hours > strong {
  color: var(--pys-red);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
}

.pys-artist {
  width: 100%;
  margin-top: 50px;
}

.pys-artist--customize {
  margin-top: 50px;
}

.pys-artist__body {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
}

.pys-artist__body > img {
  width: 240px;
  object-fit: cover;
}

.pys-artist:not(.pys-artist--customize) .pys-artist__body > img {
  height: 270px;
}

.pys-artist--customize .pys-artist__body > img {
  height: 240px;
}

.pys-artist__name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--pys-font-en);
  font-size: 26px;
  line-height: 1;
  letter-spacing: .08em;
}

.pys-artist__instagram {
  display: block;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  overflow: hidden;
  border-radius: 7px;
  transition: opacity .2s ease, transform .2s ease;
}

.pys-artist__instagram img {
  width: 100%;
  height: 100%;
}

.pys-artist__instagram:focus-visible {
  opacity: .85;
  transform: scale(1.05);
}

@media (hover: hover) and (min-width: 769px) {
  .pys-artist__instagram:hover {
    opacity: .85;
    transform: scale(1.05);
  }
}

.pys-artist__body > div > p:last-child {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: .04em;
}

.pys-notes {
  width: 792px;
  margin: 60px auto 0;
  padding-top: 60px;
  border-top: 3px solid #eee;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: .06em;
}

.pys-note-block {
  position: relative;
  width: 792px;
  height: 393px;
  border-bottom: 3px solid #eee;
}

.pys-note-block:nth-child(2) {
  margin-top: 50px;
}

.pys-note-scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 332px;
  background: #e7e7e7;
  cursor: pointer;
}

.pys-note-scrollbar__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  min-height: 40px;
  background: var(--pys-red);
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.pys-note-scrollbar__thumb.is-dragging {
  cursor: grabbing;
}

.pys-note-scrollbar.is-disabled {
  visibility: hidden;
  pointer-events: none;
}

.pys-note-block__scroll {
  width: 760px;
  height: 332px;
  overflow-y: auto;
  outline-offset: 4px;
  scrollbar-width: none;
}

.pys-note-block__scroll::-webkit-scrollbar {
  display: none;
}

.pys-note-block h3 {
  margin-bottom: 14px;
}

.pys-note-block h3:not(:first-child) {
  margin-top: 30px;
}

.pys-note-block h4 {
  margin: 30px 0 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: .06em;
}

.pys-note-block p {
  margin-bottom: 12px;
}

.pys-note-block__annotation {
  margin-top: 20px;
}

.pys-notes li {
  position: relative;
  padding-left: 1em;
}

.pys-notes li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.pys-notes li + li {
  margin-top: 12px;
}

.pys-entry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 790px;
  height: 60px;
  margin: 60px auto 0;
  border-radius: 30px;
  background: var(--pys-red);
  box-shadow: 0 4px 5px rgba(0, 0, 0, .2);
  color: var(--pys-white) !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  transition: box-shadow .2s ease, opacity .2s ease, transform .2s ease;
}

@media (hover: hover) and (min-width: 769px) {
  .pys-entry-btn:hover {
    box-shadow: none;
    opacity: 1;
    transform: translateY(2px);
  }
}

.pys-entry-btn:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .22);
  transform: translateY(4px);
}

/* ==================================================
  04. Style Gallery / Product Popup
================================================== */
.pys-gallery {
  margin-top: 120px;
  margin-bottom: 150px;
}

.pys-gallery__inner {
  position: relative;
}

.pys-gallery__viewport {
  width: 100%;
}

.pys-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 200px);
  grid-template-rows: repeat(2, 267px);
  width: 1000px;
}

.pys-gallery__grid button {
  width: 200px;
  height: 267px;
  overflow: hidden;
}

.pys-gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.pys-gallery__grid button:focus-visible img {
  transform: scale(1.065);
}

@media (hover: hover) and (min-width: 769px) {
  .pys-gallery__grid button:hover img {
    transform: scale(1.065);
  }
}

.pys-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: block;
  width: 653px;
  height: 539px;
  margin: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px) scale(.98);
  transition: opacity .28s ease,
              transform .35s cubic-bezier(.22, 1, .36, 1),
              visibility 0s linear .35s;
  pointer-events: none;
}

.pys-gallery-modal.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity .28s ease,
              transform .35s cubic-bezier(.22, 1, .36, 1),
              visibility 0s;
  pointer-events: auto;
}

.pys-gallery-modal__content {
  position: relative;
  display: grid;
  grid-template-columns: 300px 272px;
  gap: 20px;
  width: 653px;
  height: 539px;
  padding: 31px 32px 80px;
  border-radius: 20px;
  background: rgba(0, 0, 0, .5);
  box-shadow: 0 0 0 1px var(--pys-white), 0 4px 5px rgba(0, 0, 0, .2);
}

.pys-gallery-modal__visual {
  width: 300px;
  height: 401px;
  object-fit: cover;
  border-radius: 12px;
}

.pys-gallery-modal__product {
  width: 272px;
}

.pys-gallery-modal__close {
  position: absolute;
  bottom: 31px;
  left: 197px;
  width: 283px;
  height: 48px;
  border-radius: 999px;
  background: var(--pys-white) !important;
  box-shadow: 0 4px 5px rgba(0, 0, 0, .2);
  color: var(--pys-black) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 48px !important;
  letter-spacing: .08em;
  transition: box-shadow .2s ease, transform .2s ease;
}

@media (hover: hover) and (min-width: 769px) {
  .pys-gallery-modal__close:hover {
    box-shadow: none;
    transform: translateY(2px);
  }
}

.pys-gallery-modal__close:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, .22);
  transform: translateY(4px);
}

.pys-gallery-modal.is-image-only {
  width: 600px;
  height: calc(100vh - 40px);
  max-height: 880px;
}

.pys-gallery-modal.is-image-only .pys-gallery-modal__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 600px;
  height: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pys-gallery-modal.is-image-only .pys-gallery-modal__product {
  display: none;
}

.pys-gallery-modal.is-image-only .pys-gallery-modal__visual {
  width: auto;
  max-width: 600px;
  height: auto;
  max-height: calc(100% - 68px);
  object-fit: contain;
}

.pys-gallery-modal.is-image-only .pys-gallery-modal__close {
  position: static;
  flex: 0 0 48px;
  border: 1px solid var(--pys-white) !important;
  background: #202020 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .35);
  color: var(--pys-white) !important;
}

@media (hover: hover) and (min-width: 769px) {
  .pys-gallery-modal.is-image-only .pys-gallery-modal__close:hover {
    background: var(--pys-black) !important;
    box-shadow: none;
  }
}

.pys-gallery-modal.is-image-only .pys-gallery-modal__close:active {
  box-shadow: inset 0 3px 6px rgba(255, 255, 255, .16);
}

/* ==================================================
  05. League / Team Navigation
================================================== */
.pys-league-nav {
  position: relative;
  z-index: 4;
  margin-bottom: 0;
}

.pys-league-nav__leagues {
  display: grid;
  grid-template-columns: repeat(5, 180px);
  gap: 25px;
  padding-bottom: 10px;
}

.pys .pys-league-btn {
  position: relative;
  display: grid;
  grid-template-rows: 80px 30px;
  width: 180px;
  height: 110px;
  border-radius: 10px;
  background: var(--pys-white);
  box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
}

.pys-league-btn__frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.pys-league-btn__frame rect {
  fill: none;
  stroke: #2c2c2c;
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-dasharray: 0 100;
  transition: stroke-dasharray .6s cubic-bezier(.22, 1, .36, 1);
  vector-effect: non-scaling-stroke;
}

.pys-league-btn__frame rect:last-child {
  stroke-dashoffset: -50;
}

.pys .pys-league-btn:focus-visible .pys-league-btn__frame rect {
  stroke-dasharray: 50 50;
}

@media (hover: hover) and (min-width: 769px) {
  .pys .pys-league-btn:hover .pys-league-btn__frame rect {
    stroke-dasharray: 50 50;
  }
}

.pys-league-btn__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: var(--pys-white);
  isolation: isolate;
}

.pys-league-btn__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--pys-white);
  transition: transform .25s ease;
}

.pys-league-btn__image img.is-missing {
  display: none;
}

.pys-league-btn__name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 8px;
  border-radius: 0 0 10px 10px;
  background: #2c2c2c;
  color: var(--pys-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
}

.pys-league-btn__name::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--pys-white);
  border-right: 2px solid var(--pys-white);
  transform: translateY(-50%) rotate(45deg);
}

.pys-league-btn.is-active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  border-width: 10px 14px 0;
  border-style: solid;
  border-color: #2b2b2b transparent transparent;
  transform: translateX(-50%);
}

.pys-league-nav__teams {
  width: 1000px;
  margin-top: 12px;
  margin-left: 0;
  padding: 20px;
  border-radius: 20px;
  background: rgba(229, 229, 229, .5);
  box-shadow: 0 0 0 1px var(--pys-white), 0 4px 5px rgba(0, 0, 0, .2);
}

.pys-league-nav__title,
.pys-fixed-nav__title {
  display: flex;
  align-items: center;
  height: 27px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
}

.pys-league-nav__title > span,
.pys-fixed-nav__title > span {
  display: block;
  width: 7px;
  height: 27px;
  margin-right: 8px;
  background: #242424;
}

.pys-league-nav__title b,
.pys-fixed-nav__title b {
  font-weight: 700;
}

.pys-team-links {
  display: grid;
  grid-template-columns: repeat(5, 180px);
  gap: 15px;
  margin-top: 20px;
}

.pys-team-link {
  position: relative;
  display: grid;
  grid-template-rows: 80px 30px;
  width: 180px;
  height: 110px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  color: #fff !important;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
}

.pys-team-link__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.pys-team-link__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform .25s ease;
}

.pys-team-link__image img.is-missing {
  display: none;
}

.pys-team-link__name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px 0 7px;
  background: #2c2c2c;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  overflow-wrap: break-word;
  white-space: pre-line;
  word-break: keep-all;
}

.pys-team-link__name--multi {
  font-size: 12px;
  line-height: 13px;
}

.pys-team-link__name::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-70%) rotate(135deg);
}

@media (hover: hover) and (min-width: 769px) {
  .pys .pys-league-btn:hover .pys-league-btn__image img,
  .pys-team-link:hover .pys-team-link__image img {
    transform: scale(1.06);
  }
}

/* The team panel overlays beside the fixed league list; it never changes list height. */
.pys-fixed-nav {
  position: fixed;
  top: 50%;
  left: 20px;
  z-index: 100;
  display: block;
  width: 193px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50%) translateX(-20px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  pointer-events: none;
}

.pys-fixed-nav.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.pys-fixed-nav__drawer {
  position: relative;
  width: 193px;
}

.pys-fixed-nav__toggle {
  display: none;
}

.pys-fixed-nav__leagues {
  display: grid;
  gap: 10px;
  width: 193px;
}

.pys-fixed-nav .pys-league-btn.is-active::after {
  top: 50%;
  right: -13px;
  bottom: auto;
  left: auto;
  border-width: 14px 0 14px 13px;
  border-color: transparent transparent transparent #2b2b2b;
  transform: translateY(-50%);
}

.pys-fixed-nav__teams {
  position: absolute;
  top: 0;
  left: 201px;
  width: 390px;
  max-height: calc(100vh - 40px);
  padding: 20px 10px;
  overflow-y: auto;
  border-radius: 20px;
  background: rgba(229, 229, 229, .5);
  box-shadow: 0 0 0 1px var(--pys-white), 0 4px 5px rgba(0, 0, 0, .2);
}

.pys-fixed-nav__title {
  margin-bottom: 20px;
}

.pys-team-links--fixed {
  grid-template-columns: repeat(2, 180px);
  gap: 10px;
  margin-top: 0;
}

/* The second-stage panel unfolds, then its contents cross-fade on league changes. */
.pys-league-nav__teams,
.pys-fixed-nav__teams {
  visibility: hidden;
  opacity: 0;
  clip-path: inset(0 0 100% 0 round 20px);
  transform: translateY(-10px);
  transform-origin: top center;
  transition: clip-path .38s cubic-bezier(.22, 1, .36, 1),
              opacity .22s ease,
              transform .38s cubic-bezier(.22, 1, .36, 1),
              visibility 0s linear .38s;
  pointer-events: none;
}

.pys-league-nav__teams.is-open,
.pys-fixed-nav__teams.is-open {
  visibility: visible;
  opacity: 1;
  clip-path: inset(0 0 0 0 round 20px);
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}

.pys-league-nav__teams {
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.22, 1, .36, 1),
              margin .42s cubic-bezier(.22, 1, .36, 1),
              padding .42s cubic-bezier(.22, 1, .36, 1),
              clip-path .38s cubic-bezier(.22, 1, .36, 1),
              opacity .22s ease,
              transform .38s cubic-bezier(.22, 1, .36, 1),
              visibility 0s linear .42s;
}

.pys-league-nav__teams.is-open {
  max-height: 700px;
  margin-top: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.pys-league-nav__title,
.pys-fixed-nav__title,
.pys-league-nav__teams .pys-team-links,
.pys-fixed-nav__teams .pys-team-links {
  transition: opacity .18s ease, transform .26s cubic-bezier(.22, 1, .36, 1);
}

.pys-league-nav__teams.is-switching .pys-league-nav__title,
.pys-fixed-nav__teams.is-switching .pys-fixed-nav__title,
.pys-league-nav__teams.is-switching .pys-team-links,
.pys-fixed-nav__teams.is-switching .pys-team-links {
  opacity: 0;
  transform: translateY(8px);
}

/* Neutral league dividers keep long product groups easy to scan. */
.pys-league-heading {
  position: relative;
  overflow: hidden;
  margin-top: 120px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  color: var(--pys-black);
}

.pys-league-heading__inner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 46px 0 40px;
  text-align: center;
}

.pys-league-heading__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  overflow: hidden;
  border-radius: 999px;
  background: #222;
  color: var(--pys-white);
  font-family: var(--pys-font-en);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
}

.pys-league-heading__index span,
.pys-league-heading__index b {
  display: flex;
  align-items: center;
  height: 100%;
}

.pys-league-heading__index span {
  padding: 0 11px 0 13px;
}

.pys-league-heading__index b {
  padding: 0 10px;
  background: var(--pys-red);
  font-weight: 400;
}

.pys-league-heading__en {
  margin-top: 13px;
  font-family: var(--pys-font-en-bold);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
}

.pys-league-heading__ja {
  margin-top: 9px;
  color: var(--pys-red);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
}

.pys-league-heading__inner::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--pys-red);
}

/* ==================================================
  06. Team Sections & Product Sliders
================================================== */
/* Team height is content-driven; only cards and controls keep component dimensions. */
.pys-team {
  width: 100%;
  padding: 80px 0 70px;
  overflow: hidden;
  background: var(--team-bg);
}

.pys-team--dark {
  color: #fff;
}

.pys-team--light {
  color: #000;
}

.pys-team__head {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pys-team__head h2 {
  margin-top: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: .12em;
}

.pys-team__head p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: .12em;
}

.pys-products {
  width: 100%;
  margin-top: 50px;
}

.pys-products.is-empty {
  display: none;
}

.pys-products__shell {
  position: relative;
  width: 1127px;
  margin-left: calc(50% - 500px);
}

.pys-products__shell.is-static {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.pys-products__viewport {
  width: 1127px;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.pys-products__viewport.is-dragging {
  cursor: grabbing;
}

.pys-products__viewport.is-gliding .pys-products__track {
  transition: none;
}

.pys-products__shell.is-static .pys-products__viewport {
  width: 1000px;
  cursor: default;
}

.pys-products__track {
  display: flex;
  gap: var(--pys-card-gap);
  width: max-content;
  transform: translate3d(0, 0, 0);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.pys-products__shell.is-static .pys-products__track {
  justify-content: center;
  width: 100%;
}

.pys-products__viewport.is-dragging .pys-products__track {
  transition: none;
}

.pys-p {
  flex: 0 0 272px;
  width: 272px;
  height: 402px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  color: #000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .025);
}

.pys-p__a {
  display: block;
  width: 100%;
  height: 100%;
}

.pys-p__i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 272px;
  height: 270px;
  overflow: hidden;
  background: #fff;
}

.pys-p__i::before {
  content: attr(data-a);
  position: absolute;
  color: #b7b7b7;
  font-family: var(--pys-font-en-bold);
  font-size: 20px;
  letter-spacing: .08em;
}

.pys-p__i img {
  position: relative;
  z-index: 1;
  width: 270px;
  height: 270px;
  object-fit: contain;
  background: #fff;
  -webkit-user-drag: none;
  transition: transform .3s ease;
  user-select: none;
}

.pys-p__i img.is-missing {
  display: none;
}

@media (hover: hover) and (min-width: 769px) {
  .pys-p__a:hover .pys-p__i img {
    transform: scale(1.035);
  }
}

.pys-p__b {
  position: relative;
  z-index: 2;
  width: 272px;
  height: 134px;
  margin-top: -2px;
  padding: 21px 13px 14px;
  background: #fff;
}

.pys-p__n {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: .04em;
  overflow-wrap: break-word;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pys-p__p {
  margin-top: 12px;
  font-family: var(--pys-font-en-bold);
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: .04em;
}

.pys-p__t {
  margin-left: 2px;
  font-family: var(--pys-font-ja);
  font-size: 16px;
  font-weight: 500;
}

.pys-product-control {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 147px;
}

.pys-product-control--next {
  right: -20px;
  background: var(--team-bg);
}

.pys-product-control--prev {
  left: -147px;
  background: var(--team-bg);
}

.pys-product-control button {
  position: absolute;
  top: 50%;
  width: 74px;
  height: 74px;
  border: 2px solid var(--pys-white) !important;
  border-radius: 50%;
  background: rgba(117, 117, 117, .5) !important;
  transform: translateY(-50%);
  transition: background-color .2s ease;
}

@media (hover: hover) and (min-width: 769px) {
  .pys-product-control button:hover {
    background: rgba(80, 80, 80, .65) !important;
  }
}

.pys-product-control--next button { left: 50px; }
.pys-product-control--prev button { right: 50px; }

.pys-product-control button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-top: 6px solid #fff;
  border-right: 6px solid #fff;
}

.pys-product-control--next button::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.pys-product-control--prev button::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.pys-product-control[hidden] {
  display: none;
}

/* Notebook fixed navigation: a horizontal bottom-right dock keeps both
   product arrows unobstructed. The second-stage team panel opens upward. */
@media (min-width: 769px) and (max-width: 1440px) {
  .pys-fixed-nav {
    top: auto;
    right: 1.46vw;
    bottom: 1.46vw;
    left: auto;
    width: auto;
    transform: translateY(1.46vw);
  }

  .pys-fixed-nav.is-visible {
    transform: translateY(0);
  }

  .pys-fixed-nav__drawer {
    width: auto;
  }

  .pys-fixed-nav__leagues {
    display: flex;
    gap: 0.44vw;
    width: auto;
  }

  .pys .pys-fixed-nav .pys-league-btn {
    flex: 0 0 8.2vw;
    grid-template-rows: 3.35vw 1.35vw;
    width: 8.2vw;
    height: 4.7vw;
    border-radius: 0.52vw;
    box-shadow: 0 0.05vw 0.26vw rgba(0, 0, 0, .2);
  }

  .pys-fixed-nav .pys-league-btn__image {
    border-radius: 0.52vw 0.52vw 0 0;
  }

  .pys-fixed-nav .pys-league-btn__image img {
    max-width: 7.4vw;
    max-height: 2.8vw;
  }

  .pys-fixed-nav .pys-league-btn__name {
    padding: 0 0.88vw 0 0.32vw;
    border-radius: 0 0 0.52vw 0.52vw;
    font-size: 0.78vw;
    line-height: 0.78vw;
  }

  .pys-fixed-nav .pys-league-btn__name::after {
    right: 0.42vw;
    width: 0.28vw;
    height: 0.28vw;
    border-top-width: 0.1vw;
    border-right-width: 0.1vw;
  }

  .pys-fixed-nav .pys-league-btn.is-active::after {
    top: -0.5vw;
    right: auto;
    bottom: auto;
    left: 50%;
    border-width: 0 0.46vw 0.5vw;
    border-color: transparent transparent #2b2b2b;
    transform: translateX(-50%);
  }

  .pys-fixed-nav__teams {
    top: auto !important;
    right: auto;
    bottom: calc(100% + 0.66vw);
    left: 0;
    width: 31.6vw;
    max-height: calc(100vh - 8vw);
    padding: 1vw 0.7vw;
    border-radius: 1.04vw;
    box-shadow: 0 0 0 1px var(--pys-white), 0 0.21vw 0.26vw rgba(0, 0, 0, .2);
    clip-path: inset(100% 0 0 0 round 1.04vw);
    transform: translateY(0.52vw) scale(0.96);
    transform-origin: var(--pys-panel-origin-x, 50%) bottom;
  }

  .pys-fixed-nav__teams[data-team-columns="1"] {
    width: 16.5vw;
  }

  .pys-fixed-nav__teams[data-team-columns="2"] {
    width: 20.95vw;
  }

  .pys-fixed-nav__teams[data-team-columns="3"] {
    width: 31vw;
  }

  .pys-fixed-nav__teams.is-open {
    clip-path: inset(0 0 0 0 round 1.04vw);
    transform: translateY(0) scale(1);
  }

  .pys-fixed-nav__title {
    height: 1.35vw;
    margin-bottom: 0.74vw;
    font-size: 0.88vw;
  }

  .pys-fixed-nav__title > span {
    width: 0.34vw;
    height: 1.35vw;
    margin-right: 0.42vw;
  }

  .pys-team-links--fixed {
    grid-template-columns: repeat(3, 9.5vw);
    gap: 0.55vw;
    justify-content: center;
  }

  .pys-fixed-nav__teams[data-team-columns="1"] .pys-team-links--fixed {
    grid-template-columns: 9.5vw;
  }

  .pys-fixed-nav__teams[data-team-columns="2"] .pys-team-links--fixed {
    grid-template-columns: repeat(2, 9.5vw);
  }

  .pys-fixed-nav .pys-team-link {
    grid-template-rows: 3.8vw 1.5vw;
    width: 9.5vw;
    height: 5.3vw;
    border-radius: 0.52vw;
    box-shadow: 0 0.05vw 0.26vw rgba(0, 0, 0, .2);
  }

  .pys-fixed-nav .pys-team-link__image img {
    width: auto;
    max-width: 3.2vw !important;
    height: auto;
    max-height: 3.1vw !important;
  }

  .pys-fixed-nav .pys-team-link__name {
    padding: 0 0.75vw 0 0.3vw;
    font-size: 0.65vw;
    line-height: 0.67vw;
  }

  .pys-fixed-nav .pys-team-link__name--multi {
    font-size: 0.56vw;
    line-height: 0.61vw;
  }

  .pys-fixed-nav .pys-team-link__name::after {
    right: 0.36vw;
    width: 0.27vw;
    height: 0.27vw;
    border-top-width: 0.1vw;
    border-right-width: 0.1vw;
  }
}

/* ==================================================
  07. Smartphone / Responsive
================================================== */
@media (max-width: 768px) {
  .pys {
    /* SP comp units: 500px comp = 100vw. */
    --pys-width: 95.2%;
    --pys-card-gap: 1.4vw;
    --pys-safe-bottom-raw: env(safe-area-inset-bottom, 0vw);
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    font-size: 2.8vw;
  }

  .pys-inner {
    width: var(--pys-width);
  }

  /* KV / introduction */
  .pys-kv__slider {
    aspect-ratio: 3 / 4;
  }

  .pys-kv picture,
  .pys-kv img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .pys-kv img {
    object-fit: cover;
  }

  .pys-kv .slick-dots,
  .pys-kv__fallback-dots {
    gap: 1.6vw;
    padding: 0;
  }

  .pys-kv__dots {
    padding: 3.2vw 0;
  }

  .pys-kv .slick-dots li,
  .pys-kv__fallback-dots li {
    flex-basis: 1.6vw;
    width: 1.6vw;
    height: 1.6vw;
  }

  .pys-kv .slick-dots button,
  .pys-kv__fallback-dots button {
    width: 1.6vw;
    height: 1.6vw;
  }

  .pys-intro {
    padding: 14vw 0 0;
  }

  .pys-intro .pys-inner {
    width: 100%;
  }

  .pys-intro__title {
    padding: 0 2.4vw;
    font-size: 8.8vw;
  }

  .pys-intro__lead {
    margin-top: 4vw;
    padding: 0 2.4vw;
    font-size: 3.8vw;
    line-height: 4vw;
  }

  .pys-intro__text {
    margin-top: 4vw;
    padding: 0 2.4vw;
    font-size: 3.2vw;
    line-height: 4.6vw;
    letter-spacing: .1em;
  }

  /* Event */
  .pys-event {
    padding: 10vw 0 14vw;
  }

  .pys-event > .pys-inner {
    width: 100%;
  }

  .pys-event__kv {
    width: 100%;
  }

  .pys-event__panel {
    width: calc(100% - 4.8vw);
    margin: 12vw auto 0;
    padding: 12vw 0;
    border-radius: 2.6vw;
  }

  .pys-section-head {
    width: calc(100% - 6.8vw);
  }

  .pys-section-head__en {
    font-size: 6vw;
  }

  .pys-section-head__ja {
    margin-top: 1.6vw;
    font-size: 3vw;
    line-height: 4vw;
    letter-spacing: .14em;
  }

  .pys-section-head__desc {
    margin-top: 4vw;
    font-size: 2.6vw;
    line-height: 4vw;
  }

  .pys-section-head__desc br,
  .pys-remake-slide__text br,
  .pys-artist__body > div > p:last-child br {
    display: none;
  }

  .pys-remake-slider {
    width: 100%;
    margin-top: 6vw;
  }

  .pys-remake-slider__viewport {
    width: calc(100% - 6.8vw);
    touch-action: pan-y;
  }

  .pys-remake-slider__viewport.is-swiping {
    cursor: grabbing;
  }

  /* The slide already sits inside the narrowed viewport. Do not subtract
     the side gutter twice on small screens. */
  .pys-remake-slide {
    width: 100%;
  }

  .pys-remake-slide__num {
    min-width: 20.2vw;
    height: 4.4vw;
    font-size: 2.6vw;
  }

  .pys-remake-slide__title {
    margin-top: 3.6vw;
    font-size: 4.8vw;
  }

  .pys-remake-slide__subtitle {
    margin-top: 2vw;
    font-size: 2.4vw;
  }

  .pys-remake-slide__images,
  .pys-customize__images {
    gap: 1.8vw;
  }

  .pys-remake-slide__images {
    width: 100%;
  }

  .pys-customize__images {
    width: calc(100% - 6.8vw);
  }

  .pys-remake-slide__images {
    margin-top: 4vw;
  }

  .pys-remake-slide__images img,
  .pys-customize__images img {
    width: calc((100% - 3.6vw) / 3);
    height: auto;
    aspect-ratio: 1;
    border-radius: 2.6vw;
  }

  .pys-remake-slide__text {
    margin-top: 5vw;
    font-size: 2.6vw;
    line-height: 4vw;
  }

  .pys-remake-slider__controls--desktop {
    display: none;
  }

  .pys-remake-slider__controls--mobile {
    display: grid;
    grid-template-columns: 12vw 11.2vw 12vw;
    align-items: center;
    justify-content: center;
    width: 35.2vw;
    height: 10vw;
    margin: 4vw auto 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pys-arrow {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 10vw;
    height: 10vw;
    margin: 0 auto;
    border: 0 !important;
    border-radius: 1.4vw;
    background: transparent !important;
    box-shadow: none;
    transition: background-color .16s ease, box-shadow .16s ease, transform .16s ease;
  }

  .pys-arrow::before {
    width: 1.8vw;
    height: 1.8vw;
    border-width: 0.35vw;
    border-color: #858585;
  }

  .pys-remake-slider__controls--mobile .pys-arrow:active {
    background: #f1f1f1 !important;
    box-shadow: none;
    transform: scale(.94);
  }

  .pys-remake-slider__controls--mobile .pys-arrow:focus-visible {
    outline: 0;
    box-shadow: inset 0 0 0 1px #b8b8b8;
  }

  .pys-remake-slider__status {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #777;
    font-family: var(--pys-font-en);
    font-size: 2.2vw;
    line-height: 1;
    letter-spacing: .04em;
  }

  .pys-remake-slider__status i {
    margin: 0 0.8vw;
    color: #c0c0c0;
    font-style: normal;
  }

  .pys-remake-slider__status .js-remake-current {
    color: #333;
  }

  .pys-remake-slider__status .js-remake-total {
    color: #aaa;
  }

  .pys-arrow--prev {
    left: auto;
  }

  .pys-arrow--next {
    right: auto;
  }

  .pys-customize {
    margin-top: 12vw;
  }

  .pys-customize__images {
    margin-top: 5vw;
  }

  .pys-event-info {
    width: calc(100% - 6.8vw);
    margin: 10vw auto;
    padding-top: 10vw;
    border-top-width: 1px;
  }

  .pys-event-info__list {
    gap: 6vw;
  }

  .pys-event-info dt,
  .pys-artist h3,
  .pys-notes h3 {
    font-size: 3.6vw;
    line-height: 4.4vw;
    letter-spacing: .08em;
  }

  .pys-event-info dt,
  .pys-artist h3 {
    gap: 2vw;
  }

  .pys-event-info dt::before,
  .pys-artist h3::before {
    flex-basis: 4vw;
    width: 4vw;
    height: 4vw;
  }

  .pys-event-info dd {
    margin-top: 2vw;
    font-size: 2.6vw;
    line-height: 4vw;
  }

  .pys-schedule {
    --pys-schedule-label-width: 28.2vw;
    width: 100%;
    margin-top: 4vw;
  }

  .pys-schedule__tabs {
    width: 56.4vw;
    height: 6.2vw;
  }

  .pys-schedule__tab {
    flex: 0 0 var(--pys-schedule-label-width);
    min-width: var(--pys-schedule-label-width);
    width: var(--pys-schedule-label-width);
    height: 6.2vw;
    gap: 0.8vw;
  }

  .pys-schedule__tab span {
    font-size: 2.8vw;
  }

  .pys-schedule__tab small {
    font-size: 2.4vw;
  }

  .pys-schedule__tab:not(.is-active) {
    height: 6vw;
  }

  .pys-schedule__tab:first-child,
  .pys-schedule__tab:last-child {
    border-radius: 2vw 2vw 0 0;
  }

  .pys-schedule__panel {
    border-radius: 0 1.2vw 1.2vw 1.2vw;
    box-shadow: 0 0.8vw 0.8vw rgba(0, 0, 0, .18);
  }

  .pys-schedule__list li {
    grid-template-columns: var(--pys-schedule-label-width) minmax(0, 1fr);
  }

  .pys-schedule__list li > span,
  .pys-schedule__list strong {
    min-height: 8.4vw;
    padding: 1.6vw 2vw;
  }

  .pys-schedule__list li > span {
    font-size: 2.8vw;
  }

  .pys-schedule__list strong {
    gap: 1.6vw;
  }

  .pys-schedule__list b,
  .pys-schedule__list em {
    font-size: 2.8vw;
  }

  .pys-schedule__capacity-number {
    font-size: 3vw;
  }

  .pys-event-info__type--customize {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    margin-top: 5vw;
    white-space: nowrap;
  }

  .pys-event-info__type--customize > span,
  .pys-event-info__type--customize > b {
    flex: 0 0 auto;
  }

  .pys-event-info__type--customize b {
    font-size: 2.6vw;
  }

  .pys-event-info__type--customize i {
    font-size: 2.8vw;
  }

  .pys-customize-hours {
    display: grid;
    grid-template-columns: 28.2vw minmax(0, 1fr);
    align-items: stretch;
    width: 100%;
    margin-top: 1.6vw;
    overflow: hidden;
    border: 1px solid #8a8a8a;
    border-radius: 2vw;
    background: #fafaff;
    box-shadow: 0 0.8vw 0.8vw rgba(0, 0, 0, .18);
  }

  .pys-customize-hours > span,
  .pys-customize-hours > strong {
    display: flex;
    min-height: 8.4vw;
    align-items: center;
    justify-content: center;
    padding: 1.6vw 2vw;
    font-size: 2.8vw;
    line-height: 1;
  }

  .pys-customize-hours > span {
    align-self: stretch;
    background: var(--pys-white);
  }

  .pys-league-nav__teams,
  .pys-fixed-nav__teams {
    clip-path: inset(0 0 100% 0 round 2vw);
    transform: translateY(-2vw);
  }

  .pys-league-nav__teams.is-open,
  .pys-fixed-nav__teams.is-open {
    clip-path: inset(0 0 0 0 round 2vw);
    transform: translateY(0);
  }

  .pys-league-nav__teams.is-switching .pys-league-nav__title,
  .pys-fixed-nav__teams.is-switching .pys-fixed-nav__title,
  .pys-league-nav__teams.is-switching .pys-team-links,
  .pys-fixed-nav__teams.is-switching .pys-team-links {
    transform: translateY(1.6vw);
  }

  .pys-artist,
  .pys-artist--customize {
    margin-top: 10vw;
  }

  .pys-artist__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5vw;
    margin-top: 4vw;
  }

  .pys-artist__body > img,
  .pys-artist:not(.pys-artist--customize) .pys-artist__body > img,
  .pys-artist--customize .pys-artist__body > img {
    width: 100%;
    height: auto;
  }

  .pys-artist__name {
    gap: 1.6vw;
    margin-bottom: 5vw;
    font-size: 4.8vw;
  }

  .pys-artist__instagram {
    flex-basis: 4.8vw;
    width: 4.8vw;
    height: 4.8vw;
    border-radius: 1.2vw;
  }

  .pys-artist__body > div > p:last-child {
    font-size: 2.4vw;
    line-height: 4vw;
  }

  .pys-notes {
    width: calc(100% - 6.8vw);
    margin-top: 10vw;
    padding-top: 10vw;
    border-top-width: 1px;
    font-size: 2.4vw;
    line-height: 4vw;
  }

  .pys-note-block {
    width: 100%;
    height: 75.2vw;
    border-bottom-width: 1px;
  }

  .pys-note-block:nth-child(2) {
    margin-top: 10vw;
  }

  .pys-note-block__scroll {
    width: calc(100% - 4vw);
    height: 65.2vw;
  }

  .pys-note-scrollbar {
    width: 1.2vw;
    height: 65.2vw;
  }

  .pys-note-scrollbar__thumb {
    width: 1.2vw;
    min-height: 8vw;
  }

  .pys-note-block h3 {
    margin-bottom: 4vw;
  }

  .pys-note-block h3:not(:first-child) {
    margin-top: 6vw;
  }

  .pys-note-block h4 {
    margin: 6vw 0 2.4vw;
    font-size: 2.4vw;
    line-height: 4vw;
  }

  .pys-note-block p {
    margin-bottom: 2.4vw;
  }

  .pys-note-block__annotation {
    margin-top: 4vw;
  }

  .pys-notes li + li {
    margin-top: 2.4vw;
  }

  .pys-entry-btn {
    width: calc(100% - 6.8vw);
    height: 10vw;
    margin-top: 10vw;
    border-radius: 5vw;
    box-shadow: 0 0.8vw 1vw rgba(0, 0, 0, .2);
    font-size: 3vw;
  }

  /* Gallery */
  .pys-gallery {
    margin: 14vw 0;
  }

  .pys-gallery__inner {
    width: 100%;
  }

  .pys-gallery__viewport {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    touch-action: pan-y;
  }

  .pys-gallery__viewport.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .pys-gallery__viewport::-webkit-scrollbar {
    display: none;
  }

  .pys-gallery__grid {
    grid-template-columns: repeat(5, 31vw);
    grid-template-rows: repeat(2, 41.4vw);
    width: max-content;
    padding-right: 2.4vw;
    padding-left: 2.4vw;
  }

  .pys-gallery__grid button {
    width: 31vw;
    height: 41.4vw;
    scroll-snap-align: none;
  }

  .pys-gallery-modal,
  .pys-gallery-modal.is-image-only {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: none;
    height: var(--pys-sp-viewport-height, 100dvh);
    max-height: none;
    padding: 2.4vw;
    background: transparent;
    transform: none;
  }

  .pys-gallery-modal__content {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.4vw;
    width: 88vw;
    max-width: 88vw;
    height: 72.6vw;
    max-height: calc(var(--pys-sp-viewport-height, 100dvh) - 4.8vw);
    aspect-ratio: auto;
    padding: 4vw 4vw 14vw;
    overflow: hidden;
    border-radius: 2vw;
    box-shadow: 0 0 0 1px var(--pys-white), 0 0.8vw 1vw rgba(0, 0, 0, .2);
    transform: translateY(3.2vw) scale(.98);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  }

  .pys-gallery-modal.is-open .pys-gallery-modal__content {
    transform: none;
  }

  .pys-gallery-modal__visual,
  .pys-gallery-modal__product {
    width: 100%;
    height: 100%;
    min-width: 0;
  }

  .pys-gallery-modal__visual {
    border-radius: 2.4vw;
  }

  .pys-gallery-modal__product ul,
  .pys-gallery-modal__product .pys-p,
  .pys-gallery-modal__product .pys-p__a {
    width: 100%;
    height: 100%;
  }

  .pys-gallery-modal__product .pys-p__i {
    width: 100%;
    height: calc(100% - 18vw);
  }

  .pys-gallery-modal__product .pys-p__i img {
    width: 100%;
    height: 100%;
  }

  .pys-gallery-modal__product .pys-p__b {
    width: 100%;
    height: 18vw;
    margin-top: 0;
    padding: 2vw 1.6vw 1.6vw;
  }

  .pys-gallery-modal__product .pys-p__n {
    min-height: 6.4vw;
    font-size: 2.6vw;
    line-height: 3.2vw;
  }

  .pys-gallery-modal__product .pys-p__p {
    margin-top: 1.6vw;
    font-size: 4vw;
    line-height: 4.8vw;
  }

  .pys-gallery-modal__product .pys-p__t {
    font-size: 2.2vw;
  }

  .pys-gallery-modal__close {
    bottom: 4vw;
    left: calc(50% - 19vw);
    width: 38vw;
    height: 6.2vw;
    font-size: 2.4vw !important;
    line-height: 6.2vw !important;
  }

  .pys-gallery-modal.is-image-only .pys-gallery-modal__content {
    display: flex;
    width: 88vw;
    max-width: 88vw;
    height: calc(var(--pys-sp-viewport-height, 100dvh) - 4.8vw);
    max-height: none;
    padding: 0;
  }

  .pys-gallery-modal.is-image-only .pys-gallery-modal__visual {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100% - 10.2vw);
  }

  .pys-gallery-modal.is-image-only .pys-gallery-modal__close {
    flex-basis: 6.2vw;
    height: 6.2vw;
  }

  /* Main league / team navigation */
  .pys-league-nav {
    margin-bottom: 0;
  }

  .pys-league-heading__inner {
    width: 100%;
    padding: 7.2vw 4vw 6.4vw;
  }

  .pys-league-heading {
    margin-top: 14vw;
  }

  .pys-league-heading__index {
    height: 4.8vw;
    font-size: 2vw;
  }

  .pys-league-heading__index span {
    padding: 0 2vw 0 2.4vw;
  }

  .pys-league-heading__index b {
    padding: 0 1.8vw;
  }

  .pys-league-heading__en {
    margin-top: 2.4vw;
    font-size: 5.2vw;
    white-space: nowrap;
  }

  .pys-league-heading__ja {
    margin-top: 1.6vw;
    font-size: 2.4vw;
  }

  .pys-league-heading__inner::after {
    width: 12.8vw;
    height: 0.4vw;
    margin-top: 3.2vw;
  }

  .pys-league-nav > .pys-inner {
    width: 100%;
  }

  .pys-league-nav__leagues {
    display: flex;
    gap: 2vw;
    width: 100%;
    padding: 0 2.4vw 2vw;
    overflow-x: auto;
    scroll-padding: 2.4vw;
    scroll-snap-type: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    touch-action: pan-y;
  }

  .pys-league-nav__leagues.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .pys-league-nav__leagues::-webkit-scrollbar {
    display: none;
  }

  .pys .pys-league-nav .pys-league-btn {
    flex: 0 0 29vw;
    grid-template-rows: 12.8vw 5vw;
    width: 29vw;
    height: 17.8vw;
    border-radius: 2vw;
    box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, .2);
    scroll-snap-align: none;
  }

  .pys .pys-league-btn__image {
    border-radius: 2vw 2vw 0 0;
  }

  .pys .pys-league-btn__name {
    border-radius: 0 0 2vw 2vw;
  }

  .pys-league-nav .pys-league-btn__image img {
    max-width: 27.2vw;
    max-height: 11.8vw;
  }

  .pys-league-nav .pys-league-btn__name {
    padding: 0 3.6vw 0 1.6vw;
    font-size: 2.2vw;
    line-height: 2.2vw;
  }

  .pys .pys-league-btn__name::after {
    right: 2vw;
    width: 1.2vw;
    height: 1.2vw;
    border-top-width: 0.4vw;
    border-right-width: 0.4vw;
  }

  .pys-league-nav .pys-league-btn.is-active::after {
    bottom: -2vw;
    border-width: 2vw 2.8vw 0;
  }

  .pys-league-nav__teams {
    width: calc(100% - 4.8vw);
    margin: 0.4vw 2.4vw 0;
    padding: 2vw 2vw 3.8vw;
    border-radius: 2vw;
    box-shadow: 0 0 0 1px var(--pys-white), 0 0.8vw 1vw rgba(0, 0, 0, .2);
  }

  .pys-league-nav__teams:not(.is-open) {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .pys-league-nav__teams.is-open {
    max-height: 100vw;
    margin-top: 0.4vw;
    padding-top: 2vw;
    padding-bottom: 3.8vw;
  }

  .pys-league-nav__title,
  .pys-fixed-nav__title {
    height: 4vw;
    font-size: 2.4vw;
  }

  .pys-league-nav__title > span,
  .pys-fixed-nav__title > span {
    width: 0.8vw;
    height: 4vw;
    margin-right: 1.2vw;
  }

  .pys-team-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
    margin-top: 3.6vw;
  }

  .pys-team-link {
    flex: 0 0 29vw;
    grid-template-rows: minmax(0, 1fr) 5vw;
    width: 29vw;
    height: auto;
    aspect-ratio: 145 / 89;
    border-radius: 1.4vw;
    box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, .2);
  }

  .pys-team-link__image img {
    max-width: min(10vw, calc(100% - 4vw));
    max-height: 10.4vw;
  }

  .pys-team-link__name {
    padding: 0 2.8vw 0 0.8vw;
    font-size: 2.2vw;
    line-height: 2.2vw;
  }

  .pys-team-link__name--multi {
    font-size: 2vw;
    line-height: 2vw;
  }

  .pys-team-link__name::after {
    right: 1.2vw;
    width: 1vw;
    height: 1vw;
    border-top-width: 0.4vw;
    border-right-width: 0.4vw;
  }

  /* Fixed mobile navigation */
  .pys-fixed-nav {
    top: auto;
    right: auto;
    bottom: max(2.4vw, var(--pys-sp-safe-bottom, 0vw));
    left: 50%;
    display: flex;
    flex-direction: column;
    width: 95.2vw;
    max-width: none;
    transform: translate(-50%, 4vw);
  }

  .pys-fixed-nav.is-visible {
    transform: translate(-50%, 0);
  }

  .pys-fixed-nav__drawer {
    order: 1;
    width: 100%;
    max-height: 0;
    padding: 0 2vw;
    overflow: hidden;
    border-radius: 2vw;
    background: rgba(238, 238, 238, .96);
    box-shadow: 0 0 0 1px var(--pys-white), 0 0.8vw 1vw rgba(0, 0, 0, .2);
    visibility: hidden;
    opacity: 0;
    transform: translateY(2.4vw);
    transition: max-height .4s cubic-bezier(.22, 1, .36, 1),
                padding .4s cubic-bezier(.22, 1, .36, 1),
                opacity .25s ease,
                transform .4s cubic-bezier(.22, 1, .36, 1),
                visibility 0s linear .4s;
    pointer-events: none;
    overscroll-behavior: contain;
  }

  .pys-fixed-nav.is-menu-open .pys-fixed-nav__drawer {
    max-height: calc(var(--pys-sp-viewport-height, 100dvh) - 17.6vw);
    padding-top: 4vw;
    padding-bottom: 4vw;
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
    pointer-events: auto;
  }

  .pys-fixed-nav__leagues {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 3.4vw 2vw;
    width: 100%;
  }

  .pys .pys-fixed-nav .pys-league-btn {
    grid-column: span 2;
    grid-template-rows: 72% 28%;
    width: 100%;
    height: auto;
    aspect-ratio: 145 / 89;
    border-radius: 2vw;
    box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, .2);
  }

  .pys .pys-fixed-nav .pys-league-btn:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .pys .pys-fixed-nav .pys-league-btn:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .pys-fixed-nav .pys-league-btn__image img {
    max-width: 94%;
    max-height: 90%;
  }

  .pys-fixed-nav .pys-league-btn__name {
    padding: 0 2.8vw 0 0.8vw;
    font-size: 2.2vw;
    line-height: 2.2vw;
  }

  .pys-fixed-nav .pys-league-btn.is-active::after {
    top: auto;
    right: auto;
    bottom: -1.4vw;
    left: 50%;
    border-width: 1.4vw 2vw 0;
    border-color: #2b2b2b transparent transparent;
    transform: translateX(-50%);
  }

  .pys-fixed-nav__teams {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: 4vw;
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pys-fixed-nav__title {
    margin-bottom: 0;
  }

  .pys-team-links--fixed {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
    margin-top: 2.2vw;
  }

  .pys .pys-fixed-nav__toggle {
    position: relative;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(60vw, calc(100% - 4.8vw));
    height: 10vw;
    margin: 0 auto;
    border: 1px solid var(--pys-white) !important;
    border-radius: 5vw;
    background: rgba(55, 55, 55, .5) !important;
    box-shadow: 0 0.8vw 1vw rgba(0, 0, 0, .25);
    color: var(--pys-white) !important;
    font-size: 3.6vw;
    font-weight: 700;
    letter-spacing: .08em;
    transition: margin .35s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  .pys .pys-fixed-nav.is-menu-open .pys-fixed-nav__toggle {
    margin-top: 3.6vw;
  }

  .pys-fixed-nav__toggle i {
    position: absolute;
    top: 50%;
    right: 2.8vw;
    width: 5vw;
    height: 5vw;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: transparent;
    transform: translateY(-50%);
  }

  .pys-fixed-nav__toggle i::before,
  .pys-fixed-nav__toggle i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2vw;
    height: 0.4vw;
    background: var(--pys-white);
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
  }

  .pys-fixed-nav__toggle i::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .pys-fixed-nav.is-menu-open .pys-fixed-nav__toggle i::before {
    transform: translate(-50%, -50%) rotate(0);
  }

  /* Team sections / products */
  .pys-team {
    padding: 12vw 0;
    scroll-margin-top: 2.4vw;
  }

  .pys > .pys-league:last-of-type .pys-team:last-child {
    padding-bottom: 18vw;
  }

  .pys-team__head {
    width: calc(100% - 8vw);
  }

  .pys-team__head h2 {
    margin-top: 0;
    font-size: 3.4vw;
    line-height: 4.4vw;
    letter-spacing: .1em;
  }

  .pys-team__head p {
    margin-top: 3vw;
    font-size: 2.6vw;
    line-height: 4vw;
    letter-spacing: .08em;
  }

  .pys-products {
    margin-top: 6vw;
  }

  .pys-products__shell,
  .pys-products__shell.is-static,
  .pys-products__viewport,
  .pys-products__shell.is-static .pys-products__viewport {
    width: 100%;
    margin: 0;
  }

  .pys-products__track,
  .pys-products__shell.is-static .pys-products__track {
    justify-content: flex-start;
    width: max-content;
    padding-right: 2.4vw;
    padding-left: 2.4vw;
  }

  .pys-products__shell.is-static .pys-products__track {
    justify-content: center;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .pys-p {
    flex-basis: 36.8vw;
    width: 36.8vw;
    height: 54.6vw;
    border-radius: 1vw;
  }

  .pys-p__i {
    width: 36.8vw;
    height: 36.6vw;
  }

  .pys-p__i::before {
    font-size: 2.6vw;
  }

  .pys-p__i img {
    width: 36.6vw;
    height: 36.6vw;
  }

  .pys-p__b {
    width: 36.8vw;
    height: 18vw;
    margin-top: 0;
    padding: 2.4vw 1.8vw 1.6vw;
  }

  .pys-p__n {
    min-height: 6.8vw;
    font-size: 2.8vw;
    line-height: 3.4vw;
    letter-spacing: .02em;
  }

  .pys-p__p {
    margin-top: 1.6vw;
    font-size: 3.8vw;
    line-height: 4.6vw;
    letter-spacing: .02em;
  }

  .pys-p__t {
    margin-left: 0.4vw;
    font-size: 2.2vw;
  }

  .pys-product-control {
    display: none;
  }
}

/* Content rises gently as each block enters the viewport. */
.pys.is-motion-ready .pys-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity .7s ease var(--pys-reveal-delay, 0ms),
              transform .7s cubic-bezier(.22, 1, .36, 1) var(--pys-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.pys.is-motion-ready .pys-reveal.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .pys *,
  .pys *::before,
  .pys *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
