@charset "UTF-8";
/* ======================================
   section spacing（上下）
====================================== */
/* pc */
/* sp */
/* ======================================
   inner（左右）
====================================== */
/* PC width */
/* SP padding */
/* ==========================================================================
   Primitive color
========================================================================== */
/* Navy */
/* Yellow */
/* Gray */
/* Base */
/* ==========================================================================
   Semantic color
========================================================================== */
/* Brand */
/* Accent */
/* Text */
/* ==========================================================================
   Surface
========================================================================== */
/* ==========================================================================
   State
========================================================================== */
/* Header */
/* Footer */
/* breakpoint */
/* sp */
/* pc */
/* tablet */
/* hover */
/* reduce motion */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

:root {
  --header-h: 80px;
}

@media (max-width: 767px) {
  :root {
    --header-h: 50px;
  }
}
html {
  margin: 0;
  font-size: 62.5%;
  line-height: 1.5;
  word-wrap: break-word;
  scrollbar-gutter: stable;
  scroll-padding-top: var(--header-h);
}
@media (min-width: 768px) and (max-width: 1279px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  min-height: 100%;
  font-family: "toppan-bunkyu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  overflow-x: hidden;
  overflow-x: clip;
  padding-top: var(--header-h);
}

/* motion軽減設定の人にはスムーズスクロールを無効化 */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
a {
  text-decoration: none;
  transition: opacity 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    cursor: pointer;
  }
}
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

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

ol,
ul {
  padding-inline-start: 0;
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

button {
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* visually-hidden（フォーカス時は見える） */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(0, 72, 177, 0.8);
  color: #ffffff;
}
.l-header__inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-header__inner {
    height: 80px;
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .l-header__inner {
    justify-content: space-between;
    height: 50px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .l-header__logo {
    flex-shrink: 0;
  }
}
.l-header__logo img {
  aspect-ratio: 40/19;
}
@media (min-width: 768px) {
  .l-header__logo img {
    width: 120px;
    height: 57px;
  }
}
@media (max-width: 767px) {
  .l-header__logo img {
    width: 90px;
    height: 43px;
  }
}
@media (min-width: 768px) {
  .l-header__nav {
    display: block;
    position: static;
    transform: none;
    height: auto;
    margin-left: auto;
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    padding: 80px 20px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1300;
  }
}
@media (max-width: 767px) {
  .l-header.is-open .l-header__nav {
    transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .l-header__cta {
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .l-header__cta {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .l-header__cta--pc {
    display: block;
  }
}
@media (max-width: 767px) {
  .l-header__cta--pc {
    display: none;
  }
}
.l-header__nav-list {
  font-family: "tt-travels-next", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) {
  .l-header__nav-list {
    display: flex;
    gap: 30px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .l-header__nav-list {
    width: 100%;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
  }
}
.l-header__nav-list a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-list a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .l-header__overlay {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(/specialevent/yis/assets/img/common/navi-bg_sp.jpg);
  }
}
@media (min-width: 768px) {
  .l-header__drawer-extra {
    display: none;
  }
}
@media (max-width: 767px) {
  .l-header__drawer-extra {
    display: block;
    margin-top: 80px;
  }
}
.l-header__sns {
  margin: 40px 0 0 0;
  padding: 30px 0 0 0;
  border-top: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.l-header__sns ._logo {
  max-width: 27px;
  max-height: 27px;
}
.l-header {
  /* ---------- hamburger ---------- */
}
@media (min-width: 768px) {
  .l-header__toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .l-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    padding: 0;
    position: relative;
  }
}
.l-header__toggleLine {
  position: absolute;
  left: 5px;
  right: 5px;
  height: 4px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.l-header__toggleLine:nth-child(1) {
  top: 11px;
}
.l-header__toggleLine:nth-child(2) {
  top: 21px;
}
.l-header__toggleLine:nth-child(3) {
  top: 31px;
}
@media (max-width: 767px) {
  .l-header.is-open .l-header__toggle {
    position: fixed;
    top: 8px;
    right: 10px;
    z-index: 1300;
  }
}
.l-header.is-open .l-header__toggleLine {
  background: #ffffff;
}
.l-header.is-open .l-header__toggleLine:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.l-header.is-open .l-header__toggleLine:nth-child(2) {
  opacity: 0;
}
.l-header.is-open .l-header__toggleLine:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

.l-footer {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #ffffff;
}
@media (min-width: 768px) {
  .l-footer {
    background-image: url(/specialevent/yis/assets/img/common/footer-bg_pc.jpg);
  }
}
@media (max-width: 767px) {
  .l-footer {
    background-image: url(/specialevent/yis/assets/img/common/footer-bg_sp.jpg);
  }
}
.l-footer__inner {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-footer__inner {
    max-width: 800px;
    padding: 60px 0 100px;
  }
}
@media (max-width: 767px) {
  .l-footer__inner {
    position: relative;
    padding: 40px 20px 120px;
  }
}
.l-footer__logo {
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__logo a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .l-footer__logo img {
    width: 90px;
    height: 84px;
  }
}
.l-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 0 0;
}
@media (min-width: 768px) {
  .l-footer__sns {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .l-footer__sns {
    gap: 25px;
  }
}
.l-footer__sns ._link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__sns ._link:hover {
    opacity: 0.7;
  }
}
.l-footer__sns ._link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 6px;
}
.l-footer__sns ._logo {
  display: block;
}
@media (min-width: 768px) {
  .l-footer__sns ._logo {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .l-footer__sns ._logo {
    width: 28px;
    height: 28px;
  }
}
.l-footer__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  padding: 20px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 768px) {
  .l-footer__nav {
    margin: 40px 0 0 0;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .l-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 0 0;
    gap: 20px 40px;
  }
}
.l-footer__nav a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .l-footer__nav a {
    width: calc((100% - 40px) / 2);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav a:hover {
    opacity: 0.7;
  }
}
.l-footer__nav a:nth-child(odd) {
  text-align: right;
}
.l-footer__copyright {
  text-align: center;
  font-family: "tt-travels-next", sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    margin: 40px 0 0 0;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .l-footer__copyright {
    margin: 30px 0 0 0;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .l-section {
    padding-block-start: 60px;
    padding-block-end: 80px;
  }
}
@media (min-width: 768px) {
  .l-section {
    padding-block-start: 80px;
    padding-block-end: 100px;
  }
}

.l-inner {
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-inner {
    padding-inline: 10px;
  }
}
@media (max-width: 767px) {
  .l-inner {
    padding-left: max(clamp(10px, 4vw, 55px), env(safe-area-inset-left));
    padding-right: max(clamp(10px, 4vw, 55px), env(safe-area-inset-right));
  }
}
@media (min-width: 768px) {
  .l-inner--sm {
    max-width: 840px;
  }
}
@media (min-width: 768px) {
  .l-inner--md {
    max-width: 1040px;
  }
}
@media (min-width: 768px) {
  .l-inner--lg {
    max-width: 1100px;
  }
}
.l-inner--full {
  max-width: none;
}
@media (max-width: 767px) {
  .l-inner--sp-wide {
    padding-inline: 55px;
  }
}

.c-title {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  .c-title {
    margin-bottom: 40px;
  }
}
.c-title__main {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 2px solid #FFF;
}
@media (min-width: 768px) {
  .c-title__main {
    width: 1000px;
    height: 80px;
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  .c-title__main {
    width: 100%;
    height: 60px;
    font-size: 3rem;
  }
}
.c-title__main--gameinfo {
  background: linear-gradient(90deg, rgba(255, 201, 249, 0.8) 0%, rgba(255, 241, 137, 0.8) 100%);
}
.c-title__main--eventinfo {
  background: linear-gradient(90deg, rgba(94, 193, 255, 0.8) 0%, rgba(255, 241, 137, 0.8) 100%);
}
.c-title__main--artist {
  background: linear-gradient(90deg, rgba(255, 201, 249, 0.8) 0%, rgba(94, 193, 255, 0.8) 100%);
}
.c-title__main span {
  position: relative;
  display: inline-block;
  color: #01428D;
  font-family: "tt-travels-next", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 0 8px #fff;
}
.c-title__main span::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 4px #fff;
  pointer-events: none;
  z-index: -1;
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: opacity 0.2s ease;
}
.c-button:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    opacity: 0.8;
  }
}
.c-button {
  /* ボタンの種類 */
}
.c-button--cta {
  aspect-ratio: 815/209;
}
@media (max-width: 767px) {
  .c-button--cta {
    width: 100%;
  }
}
.c-button--fixed {
  aspect-ratio: 1/1;
}
.c-button--link {
  aspect-ratio: 260/60;
}

.c-fade--up {
  opacity: 0;
  transform: translateY(30px);
}
.c-fade--up.is-animated {
  animation: fade-up 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  will-change: opacity, transform;
}
.c-fade--right {
  opacity: 0;
  transform: translateX(30px);
}
.c-fade--right.is-animated {
  animation: fade-right 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  will-change: opacity, transform;
}
.c-fade--left {
  opacity: 0;
  transform: translateX(-30px);
}
.c-fade--left.is-animated {
  animation: fade-left 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  will-change: opacity, transform;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-fade--up,
  .c-fade--right,
  .c-fade--left {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
.c-fixed-cta {
  position: fixed;
  z-index: 100;
}
@media (min-width: 768px) {
  .c-fixed-cta {
    bottom: 50px;
    right: 50px;
  }
}
@media (max-width: 767px) {
  .c-fixed-cta {
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
  }
}

.c-pagetop {
  position: fixed;
  z-index: 1500;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (min-width: 768px) {
  .c-pagetop {
    width: 60px;
    height: 60px;
    left: 50px;
    bottom: 70px;
  }
}
@media (max-width: 767px) {
  .c-pagetop {
    width: 36px;
    height: 36px;
    left: 16px;
    bottom: 120px;
  }
}
.c-pagetop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: rotate(45deg);
  z-index: -1;
  transition: background 0.2s ease;
}
.c-pagetop svg {
  aspect-ratio: 28/30;
  fill: #01428D;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .c-pagetop svg {
    width: 28px;
  }
}
@media (max-width: 767px) {
  .c-pagetop svg {
    width: 20px;
  }
}
.c-pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .c-pagetop:hover::before {
    background: #01428D;
  }
  .c-pagetop:hover svg {
    fill: #ffffff;
  }
}

.p-kv {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-kv {
    aspect-ratio: 1920/1080;
  }
}
@media (max-width: 767px) {
  .p-kv {
    aspect-ratio: 1/1;
  }
}
.p-kv img {
  aspect-ratio: inherit;
  width: 100%;
}

.p-gameinfo {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-gameinfo {
    background-image: url(/specialevent/yis/assets/img/gameinfo/bg_pc.jpg);
  }
}
@media (max-width: 767px) {
  .p-gameinfo {
    background-image: url(/specialevent/yis/assets/img/gameinfo/bg_sp.jpg);
  }
}
.p-gameinfo__detail {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.p-gameinfo__detail img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-gameinfo__detail img {
    aspect-ratio: 1010/372;
    width: 1040px;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__detail img {
    aspect-ratio: 370/509;
    width: 100%;
  }
}

.p-eventinfo {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-eventinfo {
    background-image: url(/specialevent/yis/assets/img/eventinfo/bg_pc.jpg);
  }
}
@media (max-width: 767px) {
  .p-eventinfo {
    background-image: url(/specialevent/yis/assets/img/eventinfo/bg_sp.jpg);
  }
}
.p-eventinfo__detail {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.p-eventinfo__detail img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-eventinfo__detail img {
    aspect-ratio: 1012/392;
    width: 1012px;
  }
}
@media (max-width: 767px) {
  .p-eventinfo__detail img {
    aspect-ratio: 370/522;
    width: 100%;
  }
}
.p-eventinfo__article {
  margin: 60px 0 0;
  border-radius: 30px;
  border: 2px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
  color: #01428D;
  text-shadow: 0 0 5px #FFF;
  line-height: 160%;
}
@media (min-width: 768px) {
  .p-eventinfo__article {
    text-align: center;
    padding: 50px 50px 60px;
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .p-eventinfo__article {
    padding: 40px 10px;
    font-weight: 500;
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .p-eventinfo__article img {
    margin: 0 auto 40px;
  }
}
@media (max-width: 767px) {
  .p-eventinfo__article img {
    margin: 0 auto 30px;
  }
}
.p-eventinfo__article p + p {
  margin: 40px 0 0 0;
}
.p-eventinfo__button {
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-eventinfo-schedule__list {
  display: flex;
}
@media (min-width: 768px) {
  .p-eventinfo-schedule__list {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .p-eventinfo-schedule__list {
    flex-direction: column;
    gap: 40px;
  }
}
.p-eventinfo-schedule__item {
  flex: 1;
}
@media (min-width: 768px) {
  .p-eventinfo-schedule__item {
    width: 480px;
  }
}
@media (max-width: 767px) {
  .p-eventinfo-schedule__item {
    width: 100%;
  }
}
.p-eventinfo-schedule__time {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transform: rotate(-5deg);
  background: #00AAFF;
  filter: drop-shadow(0 0 5px #00AAFF);
  width: 144px;
  height: 50px;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-eventinfo-schedule__time {
    width: 114px;
    height: 40px;
    font-size: 1.8rem;
  }
}
.p-eventinfo-schedule__time--num {
  font-size: 2.6rem;
  font-family: "tt-travels-next", sans-serif;
  font-style: italic;
  font-weight: 600;
}
@media (max-width: 767px) {
  .p-eventinfo-schedule__time--num {
    font-size: 2.4rem;
  }
}
.p-eventinfo-schedule__title {
  position: relative;
  z-index: 1;
  margin: -15px 0 0 0;
  padding: 30px 20px 20px 20px;
  filter: drop-shadow(0 0 5px #00AAFF);
  border-radius: 10px;
  background: #FFF;
  color: #0095FF;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-eventinfo-schedule__title {
    font-size: 1.8rem;
  }
}
.p-eventinfo-schedule__title span {
  display: inline;
  background: linear-gradient(transparent 50%, #FFF200 0%);
}
.p-eventinfo-schedule__place {
  position: relative;
  margin: 0 auto;
  z-index: 1;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 10px #00AAFF;
}
.p-eventinfo-schedule__place::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 2px #00AAFF;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-eventinfo-schedule__place {
    margin: 30px 0 0;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .p-eventinfo-schedule__place {
    margin: 20px 0 0;
    font-size: 1.6rem;
  }
}

.p-artist {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-artist {
    background-image: url(/specialevent/yis/assets/img/artist/bg_pc.jpg);
  }
}
@media (max-width: 767px) {
  .p-artist {
    background-image: url(/specialevent/yis/assets/img/artist/bg_sp.jpg);
  }
}
.p-artist__item {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.p-artist-card {
  position: relative;
  display: flex;
}
@media (min-width: 768px) {
  .p-artist-card {
    width: 1080px;
    padding: 70px 0;
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .p-artist-card {
    padding: 60px 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.p-artist-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  border: 2px solid #FFF;
  z-index: 0;
}
@media (min-width: 768px) {
  .p-artist-card:nth-child(odd) {
    justify-content: flex-end;
  }
  .p-artist-card:nth-child(odd)::before {
    left: calc(50% - 500px);
    border-radius: 240px 0 0 240px;
    background: linear-gradient(90deg, rgba(160, 217, 246, 0.5) 0%, rgba(200, 144, 212, 0.5) 100%);
  }
}
@media (max-width: 767px) {
  .p-artist-card:nth-child(odd)::before {
    left: 10px;
    border-radius: 1000px 0 0 1000px;
    background: linear-gradient(90deg, rgba(160, 217, 246, 0.5) 0%, rgba(200, 144, 212, 0.5) 100%);
  }
}
@media (min-width: 768px) {
  .p-artist-card:nth-child(even) {
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  .p-artist-card:nth-child(even)::before {
    right: calc(50% - 500px);
    border-radius: 0 240px 240px 0;
    background: linear-gradient(-90deg, rgba(160, 217, 246, 0.5) 0%, rgba(200, 144, 212, 0.5) 100%);
  }
}
@media (max-width: 767px) {
  .p-artist-card:nth-child(even)::before {
    right: 10px;
    border-radius: 0 1000px 1000px 0;
    background: linear-gradient(-90deg, rgba(160, 217, 246, 0.5) 0%, rgba(200, 144, 212, 0.5) 100%);
  }
}
.p-artist-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-artist-card__body {
    display: contents;
  }
}
.p-artist-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-image: url(/specialevent/yis/assets/img/artist/artist-date-bg.png);
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .p-artist-card__date {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .p-artist-card__date {
    position: relative;
    z-index: 2;
    width: 130px;
    order: 1;
  }
}
.p-artist-card__date-num {
  position: relative;
  display: inline-block;
  margin: 16px 0 0 0;
  color: #FFF;
  font-family: "tt-travels-next", sans-serif;
  font-weight: 600;
  line-height: 1;
  /* 影（少しだけ強めに調整） */
  text-shadow: 1px 2px 4px #5376D3, 0 0 6px #5376D3, 0 0 2px #5376D3;
  /* 外側の太い縁 */
}
.p-artist-card__date-num::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 5px #5376D3;
  z-index: -2;
}
.p-artist-card__date-num {
  /* 内側の細い縁 */
}
.p-artist-card__date-num::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 3px #5376D3;
  filter: drop-shadow(0 0 1px #5376D3);
  z-index: -1;
}
@media (min-width: 768px) {
  .p-artist-card__date-num {
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  .p-artist-card__date-num {
    position: relative;
    z-index: 2;
    font-size: 3rem;
  }
}
.p-artist-card__date-day {
  position: relative;
  display: inline-block;
  color: #FFF;
  font-family: "tt-travels-next", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  /* 影（少しだけ強めに調整） */
  text-shadow: 1px 2px 4px #5376D3, 0 0 6px #5376D3, 0 0 2px #5376D3;
  /* 外側の太い縁 */
}
.p-artist-card__date-day::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 5px #5376D3;
  z-index: -2;
}
.p-artist-card__date-day {
  /* 内側の細い縁 */
}
.p-artist-card__date-day::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 3px #5376D3;
  filter: drop-shadow(0 0 1px #5376D3);
  z-index: -1;
}
@media (min-width: 768px) {
  .p-artist-card__date-day {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-artist-card__date-day {
    font-size: 2rem;
  }
}
.p-artist-card__name {
  position: relative;
  margin: 0 auto;
  z-index: 1;
  font-weight: 700;
  font-size: 3.6rem;
  font-family: "tt-travels-next", sans-serif;
  text-align: center;
  text-shadow: 0 0 10px #00AAFF;
}
@media (min-width: 768px) {
  .p-artist-card__name {
    margin: 10px 0 30px;
  }
}
@media (max-width: 767px) {
  .p-artist-card__name {
    order: 2;
  }
}
.p-artist-card__image {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-artist-card__image {
    order: 3;
  }
}
.p-artist-card__image img {
  aspect-ratio: 30/17;
}
@media (max-width: 767px) {
  .p-artist-card__image img {
    width: 100%;
  }
}
.p-artist-card__credit {
  margin: 4px 0 0 0;
  font-size: 1.2rem;
  text-align: right;
  color: #6c7380;
}
@media (max-width: 767px) {
  .p-artist-card__button {
    position: relative;
    z-index: 2;
    order: 4;
  }
}

@media (min-width: 768px) {
  .u-display--sp-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .u-display--sp-only {
    display: block;
  }
}
@media (min-width: 768px) {
  .u-display--pc-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .u-display--pc-only {
    display: none;
  }
}