@charset "UTF-8";
:root {
  /* color */
  --base-color: #00a0e9;
  --base2-color: #2fd4ff;
  --main-color: #ffffff;
  --accent-color: #e25418;
  --gold-color: #a68c26;
  --regular-infoPanel-color: #0093df;
  --copy-infoPanel-color: #008a93;
  --regular-switch-color: #2cafed;
  --copy-switch-color: #12c6ab;
  --regular-1st-color: #0079e9;
  --regular-2nd-color: #00abe3;
  --regular-3rd-color: #03c6cd;
  --copy-1st-color: #03c6cd;
  --copy-2nd-color: #0dc6b2;
  --copy-3rd-color: #0dc690;
  /* body背景画像の元サイズ */
  --bg: url(../img/hero_slide.webp);
  --imgW: 6278;
  --imgH: 1472;
  /* 表示は高さを画面に合わせる前提なので、表示時の1タイル横幅を計算 */
  --tileW: calc(var(--imgW) * 100lvh / var(--imgH));
  --tileW-sp: calc(var(--imgW-sp) * 100lvh / var(--imgH-sp));
}

/* -- FOUNDATION -- */
html,
body {
  overscroll-behavior-y: none;
}

html {
  font-size: clamp(0px, 0.7320644217vw, 10px);
  background: #000;
  scroll-behavior: smooth;
  scroll-padding-top: 4.8rem;
}
@media (max-width:768px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  position: relative;
  width: 100%;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--main-color);
  line-height: 1;
  overflow-x: hidden;
}
@media (max-width:768px) {
  body {
    font-size: 3.4667vw;
    overscroll-behavior-y: none;
  }
}

body.caution {
  background: #fff;
}

.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  --tileW: calc(var(--imgW) * 100lvh / var(--imgH));
  width: calc(100vw + var(--tileW) + 20px);
  height: 130lvh;
  background-image: var(--bg);
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: var(--tileW) 100lvh;
  z-index: -1;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: bgloop 150s linear infinite;
  content: "";
}
@media (max-width:768px) {
  .bg-wrapper {
    font-size: 3.4667vw;
    --bg: url(../img/hero_slide_sp.webp);
    --imgW: 1537;
    --imgH: 1197;
    animation: bgloop 50s linear infinite;
  }
}

@keyframes bgloop {
  to {
    transform: translate3d(calc(var(--tileW) * -1), 0, 0);
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--main-color);
  transition: 0.2s opacity;
}

@media (min-width:769px) {
  a:hover {
    opacity: 0.7;
  }
}
#overlay {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

#overlay.hidden {
  opacity: 0;
}

/* -- LAYOUT -- */
.toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  position: fixed;
  top: 3.4667vw;
  right: 3.4667vw;
  z-index: 101;
  margin: 0;
  padding: 0;
  width: 8vw;
  height: 8vw;
  border: none;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width:768px) {
  .toggle {
    display: block;
  }
}
.toggle > span, .toggle:before, .toggle:after {
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% - 1.8vw);
  width: 3.6vw;
  height: 0.3333vw;
  margin: 0;
  background-color: var(--base-color);
}
.toggle > span {
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.toggle::before, .toggle::after {
  content: "";
  transition: background-color 0.3s ease;
}
.toggle::before {
  transform: translateY(-1.0667vw);
}
.toggle::after {
  transform: translateY(1.0667vw);
}
.toggle[aria-expanded=true] > span {
  opacity: 0;
}
.toggle[aria-expanded=true]::before {
  animation: 0.3s ease closeBar1 forwards;
}
.toggle[aria-expanded=true]::after {
  animation: 0.3s ease closeBar2 forwards;
}
.toggle.-close::before {
  animation: 0.3s ease closeBar1Rev forwards;
}
.toggle.-close::after {
  animation: 0.3s ease closeBar2Rev forwards;
}

body.--notice-active .toggle {
  top: 10.4667vw;
}

.humnav {
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-flow: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--base-color);
  color: black;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width:768px) {
  .humnav {
    display: flex;
  }
}
.humnav[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.humnav[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.humnav__logo {
  display: block;
  width: 55.3333vw;
}

.menu li {
  position: relative;
}
.menu li a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 5vw;
  font-weight: 700;
}
.menu li + li {
  margin-top: 8vw;
}

@keyframes closeBar1 {
  0% {
    transform: translateY(-1.0667vw);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes closeBar2 {
  0% {
    transform: translateY(1.0667vw);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes closeBar1Rev {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-1.0667vw);
  }
}
@keyframes closeBar2Rev {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(1.0667vw);
  }
}
@media (max-width:768px) {
  @keyframes closeBar1 {
    0% {
      transform: translateY(-1.0667vw);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(45deg);
    }
  }
  @keyframes closeBar2 {
    0% {
      transform: translateY(1.0667vw);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(-45deg);
    }
  }
  @keyframes closeBar1Rev {
    0% {
      transform: translateY(0) rotate(45deg);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(-1.0667vw);
    }
  }
  @keyframes closeBar2Rev {
    0% {
      transform: translateY(0) rotate(-45deg);
    }
    50% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(1.0667vw);
    }
  }
}
.l-header {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--base-color);
  border-bottom: 3px solid var(--main-color);
  z-index: 3;
}
@media (max-width:768px) {
  .l-header {
    height: 0;
    background: none;
    border: none;
  }
}

body.--notice-active {
  top: 30px;
}

.l-header__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
.l-header__list > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 4.8rem;
}
.l-header__list > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.9rem;
}
.l-header__list > li:not(:first-child):before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1.6rem;
  margin: auto;
  background: var(--main-color);
  content: "";
}
@media (max-width:768px) {
  .l-header__list {
    display: none;
  }
}

.l-main {
  padding: 4.8rem 0 0;
}
@media (max-width:768px) {
  .l-main {
    padding: 0;
  }
}

.l-footer {
  position: relative;
  background: var(--main-color);
}
@media (max-width:768px) {
  .l-footer {
    padding-bottom: 13.3333vw;
    box-shadow: 0 50vh 0 50vh #fff;
  }
}

.l-footer__archive {
  padding: 7.5rem 0 6rem;
  border-bottom: 1px solid #e8e8e8;
}
@media (max-width:768px) {
  .l-footer__archive {
    padding: 10.4vw 0 13.3333vw;
  }
}

.l-footer__riot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media (max-width:768px) {
  .l-footer__riot {
    flex-flow: wrap;
    gap: 8vw 6.6667vw;
  }
}

.l-footer__riotImg {
  width: 10.5rem;
}
@media (max-width:768px) {
  .l-footer__riotImg {
    width: 23.0667vw;
  }
}

.l-footer__riotHistory {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width:768px) {
  .l-footer__riotHistory {
    font-size: 3.4667vw;
  }
}

.l-footer__mikakunin {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem auto 0;
}
@media (max-width:768px) {
  .l-footer__mikakunin {
    flex-flow: wrap;
    gap: 4vw 6.5333vw;
    margin: 7.8667vw auto 0;
  }
}

.l-footer__mikakuninHeading {
  margin-right: 5rem;
  color: var(--regular-infoPanel-color);
  font-weight: 1.5rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .l-footer__mikakuninHeading {
    width: 100%;
    font-size: 3.2vw;
    text-align: center;
  }
}

.l-footer__mikakuninLink {
  margin-left: 3.1rem;
  color: #000;
  font-weight: 1.5rem;
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width:768px) {
  .l-footer__mikakuninLink {
    margin-left: 0;
    font-size: 3.4667vw;
  }
}

.l-footer__sol {
  display: block;
  width: 15.9rem;
  margin: 3rem auto 0;
}
@media (max-width:768px) {
  .l-footer__sol {
    width: 35.3333vw;
    margin: 8.2667vw auto 0;
  }
}

.l-footer__special {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 4rem auto 0;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .l-footer__special {
    gap: 5.3333vw;
    margin: 8vw auto 0;
    font-size: 3.4667vw;
  }
}
.l-footer__special .txt {
  margin-right: 0.4rem;
}
@media (max-width:768px) {
  .l-footer__special .txt {
    margin-right: -1.3333vw;
  }
}

.l-footer__mynavi {
  width: 7.6rem;
}
.l-footer__mynavi img {
  width: 100%;
}
@media (max-width:768px) {
  .l-footer__mynavi {
    width: 12.8vw;
  }
}

.l-footer__jasrac {
  width: 14.2rem;
}
.l-footer__jasrac img {
  width: 100%;
}
@media (max-width:768px) {
  .l-footer__jasrac {
    width: 22.6667vw;
  }
}

.l-footer__mizuho {
  width: 13.5rem;
  padding-top: 1.3rem;
}
.l-footer__mizuho img {
  width: 100%;
}
@media (max-width:768px) {
  .l-footer__mizuho {
    width: 20.6667vw;
    padding-top: 2vw;
  }
}

.l-footer__neec {
  width: 13.3rem;
}
.l-footer__neec img {
  width: 100%;
}
@media (max-width:768px) {
  .l-footer__neec {
    width: 21.2vw;
  }
}

.l-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.3rem;
  margin: 4rem auto 0;
}
@media (max-width:768px) {
  .l-footer__logo {
    gap: 9.3333vw;
    margin: 6.6667vw auto 0;
  }
}

.l-footer__tfm {
  display: block;
  width: 7.6rem;
}
.l-footer__tfm > img {
  width: 100%;
}
@media (max-width:768px) {
  .l-footer__tfm {
    width: 19.8667vw;
  }
}

.l-footer__jfn {
  display: block;
  width: 4.1rem;
}
.l-footer__jfn > img {
  width: 100%;
}
@media (max-width:768px) {
  .l-footer__jfn {
    width: 8vw;
  }
}

.l-footer__sonymusic {
  display: block;
  width: 13.1rem;
}
.l-footer__sonymusic > img {
  width: 100%;
}
@media (max-width:768px) {
  .l-footer__sonymusic {
    width: 25.7333vw;
  }
}

.l-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 119.8rem;
  margin: 4.4rem auto 0;
  padding-bottom: 1.5rem;
}
@media (max-width:768px) {
  .l-footer__bottom {
    flex-flow: column-reverse;
    margin: 12vw auto 0;
    padding-bottom: 5.3333vw;
  }
}

.l-footer__BottomTxt {
  color: #000;
  font-size: 1.2rem;
}
@media (max-width:768px) {
  .l-footer__BottomTxt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column-reverse;
    gap: 2.4vw;
    margin: 8vw auto 0;
    font-size: 2.6667vw;
  }
}

.l-footer__caution {
  margin-left: 2.1rem;
  color: #000;
  text-decoration: underline;
}

.l-footer__bottomLink {
  display: flex;
}
@media (max-width:768px) {
  .l-footer__bottomLink {
    display: flex;
    align-items: center;
    flex-flow: column;
    gap: 8vw;
  }
}

.l-footer__sns {
  display: flex;
  gap: 3rem;
}
@media (max-width:768px) {
  .l-footer__sns {
    gap: 8vw;
  }
}

.l-footer__snsIcon {
  width: 2.1rem;
}
@media (max-width:768px) {
  .l-footer__snsIcon {
    width: 5.3333vw;
  }
}

.l-footer__pagetop {
  width: 14.6rem;
  margin-left: 2.4rem;
}
@media (max-width:768px) {
  .l-footer__pagetop {
    width: 53.3333vw;
    margin-left: 0;
  }
  .l-footer__pagetop img {
    width: 100%;
  }
}

.l-fixed {
  position: fixed;
  right: 0;
  bottom: 2rem;
  display: flex;
  justify-content: end;
  gap: 1.2rem;
  z-index: 3;
  transition: transform 0.2s ease;
}
@media (max-width:768px) {
  .l-fixed {
    right: 0;
    left: 0;
    bottom: 0;
    justify-content: center;
    gap: 0;
    background: #fff;
  }
}

.l-fixed.is-lifted {
  transform: translateY(var(--lift, 0px));
}

.l-fixed__bnr {
  width: 31.8rem;
  filter: drop-shadow(0 0 2rem rgba(26, 22, 23, 0.3));
}
@media (max-width:768px) {
  .l-fixed__bnr {
    width: 100%;
    filter: drop-shadow(0 0 2.6667vw rgba(26, 22, 23, 0.3));
  }
}

.p-hero {
  position: relative;
  width: 100%;
  height: 50vw;
}
@media (max-width:768px) {
  .p-hero {
    height: 135.3333vw;
  }
}

.p-hero__catch {
  position: absolute;
  top: 1.9rem;
  left: 2.3rem;
  width: 7.6135%;
  z-index: 2;
}
.p-hero__catch svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width:768px) {
  .p-hero__catch {
    width: 16.9333vw;
    left: 3.6vw;
    top: 10.8vw;
  }
}

.p-hero__side {
  position: absolute;
  top: 0;
  right: 0;
  width: 44.6559%;
  height: 100%;
  margin-left: auto;
  background: url(../img/thunder.png), linear-gradient(#00a0e9, #00d9d2);
  background-size: 100% 100%, 100%;
  clip-path: polygon(27.0492% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width:768px) {
  .p-hero__side {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 74.9333vw;
    background: url(../img/thunder_sp.png), linear-gradient(#00a0e9, #00d9d2);
    background-size: 100% 100%, 100%;
    background-position: center top, center center;
    clip-path: polygon(0 0, 0 26.1333vw, 0 100%, 100% 100%, 100% 26.1333vw);
  }
}

.p-hero__title {
  position: absolute;
  top: 17.2131%;
  right: 7.2131%;
  width: 64.918%;
}
@media (max-width:768px) {
  .p-hero__title {
    top: 27.4021%;
    right: 22.8%;
    width: 54.5333%;
  }
}

.p-hero__info {
  position: absolute;
  top: 63.5368%;
  left: 41.14754%;
  width: 36.2295%;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.p-hero__info img {
  width: 100%;
}
@media (max-width:768px) {
  .p-hero__info {
    top: 62.6667vw;
    left: 15.3333%;
    width: 70.2667%;
  }
}

.p-special {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2.3rem;
  background: #000;
}
@media (max-width:768px) {
  .p-special {
    gap: 4.2667vw;
    height: 10.6667vw;
    padding: 0;
  }
}

.p-special__txt {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .p-special__txt {
    font-size: 1.8667vw;
  }
}

.p-special__mynavi {
  width: 20.6rem;
}
@media (max-width:768px) {
  .p-special__mynavi {
    width: 26.8vw;
  }
}

.p-intro {
  position: relative;
  padding: 7rem 0 10rem;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}
@media (max-width:768px) {
  .p-intro {
    padding: 12.2667vw 0 14vw;
  }
}
.p-intro::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/intro_dots.png) no-repeat center bottom/100%;
  pointer-events: none;
  content: "";
}
@media (max-width:768px) {
  .p-intro::before {
    background: url(../img/intro_dots_sp.png) no-repeat center bottom/100%;
  }
}

.p-intro__heading {
  width: 84.3rem;
  margin: 0 auto;
  filter: drop-shadow(0 0 4.5rem rgba(0, 95, 139, 0.3));
}
@media (max-width:768px) {
  .p-intro__heading {
    width: 98.4667vw;
  }
}

.p-intro__catch {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2rem 0.1rem 0.4rem 0.5rem;
  margin: 2.6rem auto 0;
  color: #000;
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--base2-color);
}
@media (max-width:768px) {
  .p-intro__catch {
    margin: 5.4667vw auto 0;
    padding: 0.2vw 0.1vw 0.5vw 1.2vw;
    font-size: 4.5333vw;
  }
}

.p-intro__money {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 8.6rem;
  margin: 4rem auto 0;
}
@media (max-width:768px) {
  .p-intro__money {
    margin: 7.8667vw auto 0;
    gap: 9.8667vw;
  }
}

.p-intro__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 1rem;
}
@media (max-width:768px) {
  .p-intro__box {
    gap: 2.5333vw;
  }
}

.p-intro__boxHeading {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .p-intro__boxHeading {
    font-size: 3.7333vw;
  }
}

.p-intro__num {
  display: block;
  margin-top: 1rem;
  filter: drop-shadow(0 0 4.5rem rgba(0, 95, 139, 0.3));
}
.p-intro__num--01 {
  width: 39.9rem;
}
.p-intro__num--02 {
  width: 36.6rem;
}
@media (max-width:768px) {
  .p-intro__num {
    margin-top: 2vw;
  }
  .p-intro__num--01 {
    width: 33.6vw;
  }
  .p-intro__num--02 {
    width: 29.8667vw;
  }
}

.p-intro__txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 5rem auto 0;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.8125;
}
@media (max-width:768px) {
  .p-intro__txt {
    margin: 8vw auto 0;
    font-size: 4vw;
    line-height: 1.5385;
  }
}

.p-intro__thought {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 90%;
  margin: 6rem auto 0;
  font-size: 1.6rem;
  line-height: 1.6875;
}
@media (max-width:768px) {
  .p-intro__thought {
    margin: 9.0667vw auto 0;
    font-size: 3.4667vw;
    line-height: 1.6154;
  }
}

.p-intro__thoughtHeading {
  width: 48.8rem;
  margin: 0 auto 3rem;
}
@media (max-width:768px) {
  .p-intro__thoughtHeading {
    width: 85vw;
    margin: 0 auto 5.3333vw;
  }
}

.p-regular {
  padding: 2.1rem 0 10rem;
  background: url(../img/regular_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}
@media (max-width:768px) {
  .p-regular {
    padding: 6.9333vw 0 13.0667vw;
    background: url(../img/dots_bg_sp.png), url(../img/regular_tri_bg_sp.png);
    background-repeat: repeat-y, repeat-y;
    background-size: contain, contain;
    background-position: center top, center top -17vw;
  }
}

.p-regular__intro {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 11.1rem;
  padding-left: 2rem;
}
@media (max-width:768px) {
  .p-regular__intro {
    align-items: center;
    flex-flow: column;
    gap: 4vw;
    padding-left: 0;
  }
}

.p-regular__introBox {
  margin-top: 4rem;
}
@media (max-width:768px) {
  .p-regular__introBox {
    margin-top: 0;
  }
}

.p-regular__introHeading {
  position: relative;
  width: 56rem;
}
.p-regular__introHeading img {
  position: relative;
  z-index: 2;
}
.p-regular__introHeading::before {
  position: absolute;
  top: -4.9rem;
  left: -5.1rem;
  display: block;
  width: 31.4rem;
  height: 29.4rem;
  background: url(../img/regular_dots.png);
  background-repeat: no-repeat;
  background-size: 31.4rem;
  content: "";
}
@media (max-width:768px) {
  .p-regular__introHeading {
    width: 74.6667vw;
    margin-left: -4vw;
  }
}

.p-regular__introTxt {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.5rem;
  padding-left: 7.3rem;
  z-index: 2;
}
.p-regular__introTxt > .num {
  font-size: 1.5833em;
  font-weight: 900;
  line-height: 1;
}
@media (max-width:768px) {
  .p-regular__introTxt {
    margin-top: 2vw;
    padding-left: 0;
    font-size: 3.4667vw;
    line-height: 1.8462;
  }
  .p-regular__introTxt > .num {
    font-size: 1.3846em;
  }
}

.p-regular__introPhoto {
  width: 49.3rem;
}
@media (max-width:768px) {
  .p-regular__introPhoto {
    width: 87.6vw;
  }
}

.p-regular__section--require {
  margin: 1rem auto 0;
}
@media (max-width:768px) {
  .p-regular__section--require {
    margin: 4vw auto 0;
  }
}

.p-regular__section--schedule {
  margin: 6rem auto 0;
}
@media (max-width:768px) {
  .p-regular__section--schedule {
    margin: 13.2vw auto 0;
  }
}

.p-regular__sectionTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.p-regular__sectionTitle > img {
  display: inline-block;
  width: 30.9rem;
}
@media (max-width:768px) {
  .p-regular__sectionTitle {
    gap: 1.6vw;
    font-size: 3.4667vw;
  }
  .p-regular__sectionTitle > img {
    width: 60.8vw;
  }
}

.p-regular__sectionSubTitle {
  margin: 1.3rem auto 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width:768px) {
  .p-regular__sectionSubTitle {
    margin: 3.7333vw auto 0;
    font-size: 3.4667vw;
  }
}

.p-regular__btnArea {
  margin: 3rem auto 0;
}
@media (max-width:768px) {
  .p-regular__btnArea {
    margin: 5.3333vw auto 0;
  }
}

.p-interval {
  --imgW: 4278;
  --imgH: 540;
  position: relative;
  width: 100%;
  height: 19.7657vw;
  overflow: hidden;
  background: url(../img/interval_slide.webp) repeat-x;
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: 157.1639%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.p-interval::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 表示時のタイル幅を計算 */
  --tileW: calc(var(--imgW) * 19.7657vw / var(--imgH));
  width: calc(var(--tileW) * 2);
  height: 100%;
  background-image: url(../img/interval_slide.webp);
  background-repeat: repeat-x;
  background-size: var(--tileW) 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: intervalLoop 50s linear infinite;
}
@media (max-width:768px) {
  .p-interval {
    height: 45.2vw;
  }
  .p-interval::before {
    --tileW: calc(var(--imgW) * 45.2vw / var(--imgH));
  }
}

@keyframes intervalLoop {
  to {
    transform: translate3d(calc(var(--tileW) * -1), 0, 0);
  }
}
.p-copy {
  padding: 5.7rem 0 10rem;
  background: url(../img/copy_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width:768px) {
  .p-copy {
    padding: 5.6vw 0 13.3333vw;
    background: url(../img/dots_bg_sp.png), url(../img/copy_tri_bg_sp.png);
    background-repeat: repeat-y, repeat-y;
    background-size: contain, contain;
    background-position: center top, center top -17vw;
  }
}

.p-copy__intro {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 6rem;
}
@media (max-width:768px) {
  .p-copy__intro {
    align-items: center;
    flex-flow: column-reverse;
    gap: 2.4vw;
    padding-left: 0;
  }
}

.p-copy__introHeading {
  position: relative;
  width: 51.5rem;
}
.p-copy__introHeading img {
  position: relative;
  z-index: 2;
}
.p-copy__introHeading::before {
  position: absolute;
  top: -4.9rem;
  left: -5.1rem;
  display: block;
  width: 31.4rem;
  height: 29.4rem;
  background: url(../img/copy_dots.png);
  background-repeat: no-repeat;
  background-size: 31.4rem;
  content: "";
}
@media (max-width:768px) {
  .p-copy__introHeading {
    width: 72.1333vw;
    margin-right: 6.5333vw;
  }
}

.p-copy__introTxt {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1rem;
  padding-left: 8.3rem;
  z-index: 2;
}
.p-copy__introTxt > .num {
  font-size: 1.5833em;
  font-weight: 900;
  line-height: 1;
}
@media (max-width:768px) {
  .p-copy__introTxt {
    margin-top: 2vw;
    padding-left: 8vw;
    font-size: 3.4667vw;
    line-height: 1.8462;
  }
  .p-copy__introTxt > .num {
    font-size: 1.3846em;
  }
}

.p-copy__introPhoto {
  width: 49.9rem;
}
@media (max-width:768px) {
  .p-copy__introPhoto {
    width: 81.0667vw;
    margin-right: 5.8667vw;
  }
}

.p-copy__section--require {
  margin: 1.5rem auto 0;
}
@media (max-width:768px) {
  .p-copy__section--require {
    margin: 4vw auto 0;
  }
}

.p-copy__section--schedule {
  margin: 6rem auto 0;
}
@media (max-width:768px) {
  .p-copy__section--schedule {
    margin: 13.2vw auto 0;
  }
}

.p-copy__sectionTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.p-copy__sectionTitle > img {
  display: inline-block;
  width: 30.9rem;
}
@media (max-width:768px) {
  .p-copy__sectionTitle {
    gap: 1.6vw;
    font-size: 3.4667vw;
  }
  .p-copy__sectionTitle > img {
    width: 60.8vw;
  }
}

.p-copy__sectionSubTitle {
  margin: 1.3rem auto 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width:768px) {
  .p-copy__sectionSubTitle {
    margin: 3.7333vw auto 0;
    font-size: 3.4667vw;
  }
}

.p-copy__btnArea {
  margin: 3rem auto 0;
}
@media (max-width:768px) {
  .p-copy__btnArea {
    margin: 5.3333vw auto 0;
  }
}

.p-themesong {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  text-align: center;
  background: #191919;
}
@media (max-width:768px) {
  .p-themesong {
    padding: 9.2vw 0 10.8vw;
  }
}

.p-themesong__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: -moz-fit-content;
  width: fit-content;
}

.p-themesong__heading {
  width: 35.4rem;
  margin: 0 auto;
}
@media (max-width:768px) {
  .p-themesong__heading {
    width: 66.4vw;
  }
}

.p-themesong__main {
  margin: 2rem auto 0;
  font-size: 3rem;
  font-weight: 900;
}
@media (max-width:768px) {
  .p-themesong__main {
    margin: 6vw auto 0;
    font-size: 7.4667vw;
  }
}

.p-themesong__artist {
  margin: 2rem auto 0;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .p-themesong__artist {
    margin: 4.2667vw auto 0;
    font-size: 3.4667vw;
  }
}

.p-caution {
  padding: 100px 20px;
  color: #000;
  font-size: 16px;
}

.p-caution__logo {
  width: 450px;
  max-width: 100%;
  margin: 0 auto;
}

.p-caution__box {
  width: 700px;
  max-width: 100%;
  margin: 100px auto 0;
}

.p-caution__heading {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  line-height: 1.75;
}
@media (max-width:768px) {
  .p-caution__heading {
    text-align: left;
  }
}

.p-caution__txt {
  margin: 40px auto 0;
  line-height: 1.75;
}
.p-caution__txt--pcCenter {
  text-align: center;
}
@media (max-width:768px) {
  .p-caution__txt--pcCenter {
    text-align: left;
  }
}

.p-caution__list {
  margin: 40px auto 0;
  list-style: none;
}
.p-caution__list li {
  position: relative;
  padding-left: 2em;
  line-height: 1.75;
}
.p-caution__list li:not(:first-child) {
  margin-top: 25px;
}
.p-caution__list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.6em;
  height: 0.6em;
  background: var(--base-color);
  border-radius: 50%;
}
.p-caution__list li a {
  color: var(--base-color);
  word-break: break-all;
}

.p-news {
  position: relative;
}
.p-news.top {
  background: linear-gradient(0deg, rgba(41, 241, 156, 0.8) 0%, rgba(2, 161, 249, 0.8) 100%);
  padding: 10rem 0 10rem;
}
@media (max-width:768px) {
  .p-news.top {
    padding: 13.3333333333vw 0 13.3333333333vw;
  }
}
.p-news.top::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/intro_dots.png) no-repeat center bottom/100%;
  pointer-events: none;
  content: "";
}
@media (max-width:768px) {
  .p-news.top::before {
    background: url(../img/intro_dots_sp.png) no-repeat center bottom/100%;
  }
}
.p-news.top::after {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/news_bg.png) no-repeat center top 6.3rem/100%;
  pointer-events: none;
  content: "";
}
@media (max-width:768px) {
  .p-news.top::after {
    display: none;
  }
}
.p-news.l-main {
  background: linear-gradient(0deg, rgba(41, 241, 156, 0.8) 0%, rgba(2, 161, 249, 0.8) 100%);
  padding: 4rem 0 14rem;
}
@media (max-width:768px) {
  .p-news.l-main {
    padding: 12vw 0 13.3333333333vw;
  }
}
.p-news .p-news__kv {
  width: 23.9rem;
  margin: 5rem auto 0;
}
@media (max-width:768px) {
  .p-news .p-news__kv {
    width: 44.6666666667vw;
    margin: 0 auto 0;
  }
}
.p-news .p-news__wrapper {
  margin-top: 3.5rem;
  padding: 0 4rem;
}
.p-news .p-news__title {
  width: 31.8rem;
  margin: 0 auto;
}
@media (max-width:768px) {
  .p-news .p-news__title {
    width: 55.2vw;
  }
}
.p-news .p-news__content {
  margin: 4.5rem auto 0;
  max-width: 970px;
  width: 100%;
}
@media (max-width:768px) {
  .p-news .p-news__content {
    margin: 5.3333333333vw auto 0;
  }
}
.p-news .p-news__header {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  aspect-ratio: 97/43;
  padding: 2rem 5rem;
}
@media (max-width:768px) {
  .p-news .p-news__header {
    flex-direction: column-reverse;
    row-gap: 6.6666666667vw;
    aspect-ratio: 700/738;
    padding: 2.6666666667vw 4vw;
  }
}
.p-news .p-news__header.--no-image {
  background: #000;
  aspect-ratio: 8/1;
}
@media (max-width:768px) {
  .p-news .p-news__header.--no-image {
    aspect-ratio: unset;
  }
}
.p-news .p-news__header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-news .p-news__header-bg img {
  width: 100%;
  aspect-ratio: 97/43;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width:768px) {
  .p-news .p-news__header-bg img {
    aspect-ratio: 700/738;
  }
}
.p-news .p-news__header-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(16px);
}
@media (max-width:768px) {
  .p-news .p-news__header-bg.--no-image img {
    aspect-ratio: 400/130;
  }
}
.p-news .p-news__header-img {
  position: relative;
  width: 35.2rem;
}
.p-news .p-news__header-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f0f0f0;
}
@media (max-width:768px) {
  .p-news .p-news__header-img {
    width: 54.1333333333vw;
  }
}
.p-news .p-news__header-box {
  position: relative;
  flex: 1;
}
@media (max-width:768px) {
  .p-news .p-news__header-box {
    flex: 0;
  }
}
.p-news .p-news__header-date {
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width:768px) {
  .p-news .p-news__header-date {
    font-size: 3.2vw;
  }
}
.p-news .p-news__header-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5384615385;
  margin-top: 3.2rem;
}
@media (max-width:768px) {
  .p-news .p-news__header-title {
    font-size: 4vw;
    line-height: 1.5333333333;
    margin-top: 5.3333333333vw;
  }
}
.p-news .p-news__container {
  background-color: #fff;
  padding: 4rem 4rem 7.5rem;
}
@media (max-width:768px) {
  .p-news .p-news__container {
    padding: 9.3333333333vw 4vw 10.6666666667vw;
  }
}
.p-news .p-news__body {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.8125;
  color: #000;
}
@media (max-width:768px) {
  .p-news .p-news__body {
    font-size: 3.4666666667vw;
    line-height: 1.6923076923;
  }
}
.p-news .p-news__body img {
  display: block;
  max-width: 392px;
  margin: 6rem auto;
}
@media (max-width:768px) {
  .p-news .p-news__body img {
    max-width: 66.6666666667vw;
    margin: 10vw auto;
  }
}
.p-news .p-news__btn {
  display: block;
  width: 32rem;
  margin: 6rem auto 0;
}
@media (max-width:768px) {
  .p-news .p-news__btn {
    width: 79.4666666667vw;
    margin: 8vw auto 0;
  }
}
.p-news .p-news__lists {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 4rem;
  width: 122.6rem;
  margin: 4rem auto 0;
  z-index: 2;
}
@media (max-width:768px) {
  .p-news .p-news__lists {
    flex-direction: column;
    row-gap: 1.3333333333vw;
    width: 100%;
    padding: 0 3.3333333333vw;
    margin: 4vw auto 0;
  }
}
.p-news .p-news__list {
  list-style: none;
  box-sizing: border-box;
  width: calc((100% - 3rem) / 3);
  padding: 2rem 2rem 6rem;
  background: #fff url(../img/news_arrow.png) no-repeat right bottom/5rem auto;
}
@media (max-width:768px) {
  .p-news .p-news__list {
    width: 100%;
    padding: 3.2vw;
    background: #fff url(../img/news_arrow.png) no-repeat right bottom/9.3333333333vw auto;
  }
}
.p-news .p-news__list a {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media (max-width:768px) {
  .p-news .p-news__list a {
    flex-direction: row;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media (max-width:768px) {
  .p-news .p-news__list-box {
    flex: 1;
  }
}
.p-news .p-news__list-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f0f0f0;
}
@media (max-width:768px) {
  .p-news .p-news__list-img {
    width: 36vw;
  }
}
.p-news .p-news__list-date {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
}
@media (max-width:768px) {
  .p-news .p-news__list-date {
    font-size: 3.2vw;
  }
}
.p-news .p-news__list-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.625;
  color: #00a0e9;
  margin-top: 1.8rem;
}
@media (max-width:768px) {
  .p-news .p-news__list-title {
    font-size: 3.4666666667vw;
    line-height: 1.4615384615;
    margin-top: 4vw;
  }
}
.p-news .p-news__more {
  display: block;
  width: 32rem;
  margin: 4rem auto 0;
}
@media (max-width:768px) {
  .p-news .p-news__more {
    width: 79.4666666667vw;
    margin: 5.3333333333vw auto 0;
  }
}

.p-3rd.l-main {
  padding: 4rem 0 11.6rem;
  background: linear-gradient(0deg, rgba(41, 241, 156, 0.8) 0%, rgba(2, 161, 249, 0.8) 100%);
}
@media (max-width:768px) {
  .p-3rd.l-main {
    padding: 12vw 0 13.3333333333vw;
  }
}

.p-3rd__kv {
  width: 23.9rem;
  margin: 5rem auto 0;
}
@media (max-width:768px) {
  .p-3rd__kv {
    width: 44.6666666667vw;
    margin: 0 auto 0;
  }
}

.p-3rd__title {
  width: 43.8rem;
  margin: 3rem auto 0;
}
@media (max-width:768px) {
  .p-3rd__title {
    width: 75.2vw;
  }
}

.p-3rd__anchorTop {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0.9rem;
  margin: 5rem auto 0;
}
@media (max-width:768px) {
  .p-3rd__anchorTop {
    gap: 0.8%;
    margin: 6.6667vw auto 0;
  }
}

.p-3rd__anchorTopBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  width: 25rem;
  height: 6.6rem;
  padding-top: 0.8rem;
  color: #fff;
  font-size: 2.572rem;
  font-weight: 900;
  box-sizing: border-box;
  border: 0.2rem solid #fff;
}
.p-3rd__anchorTopBtn::before {
  position: absolute;
  bottom: 0.9rem;
  left: 0;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-right: 0.9rem solid transparent;
  border-left: 0.9rem solid transparent;
  border-top: 0.9rem solid #fff;
  border-bottom: 0;
  content: "";
}
.p-3rd__anchorTopBtn .date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0.9rem;
  padding: 0.3rem 0.5rem 0.4rem;
  font-size: 2.058rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #fff;
}
.p-3rd__anchorTopBtn.tokyo1 {
  background: #6975dd;
  background: linear-gradient(0deg, rgb(105, 117, 221) 0%, #7355b0 100%);
}
.p-3rd__anchorTopBtn.tokyo1 .date {
  color: #7064c4;
}
.p-3rd__anchorTopBtn.tokyo2 {
  background: #f86f64;
  background: linear-gradient(0deg, #f86f64 0%, #fd5392 100%);
}
.p-3rd__anchorTopBtn.tokyo2 .date {
  color: #f86e66;
}
.p-3rd__anchorTopBtn.osaka {
  background: #e4e108;
  background: linear-gradient(0deg, #e4e108 0%, #1ed94f 100%);
}
.p-3rd__anchorTopBtn.osaka .date {
  color: #6cdf4e;
}
@media (max-width:768px) {
  .p-3rd__anchorTopBtn {
    width: 30.5%;
    height: 9.6vw;
    padding-top: 1.3vw;
    font-size: 3.4027vw;
    border: 0.2667vw solid #fff;
  }
  .p-3rd__anchorTopBtn::before {
    bottom: 1.4667vw;
    border-right: 1.4667vw solid transparent;
    border-left: 1.4667vw solid transparent;
    border-top: 1.4667vw solid #fff;
  }
  .p-3rd__anchorTopBtn .date {
    margin-left: 0.6667vw;
    padding: 0.27vw 0.6667vw 0.5333vw;
    font-size: 2.7213vw;
  }
}

.p-3rd__anchorBottom {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0.9rem;
  margin: 5rem auto 0;
}
@media (max-width:768px) {
  .p-3rd__anchorBottom {
    gap: 0.8%;
    margin: 6.6667vw auto 0;
  }
}

.p-3rd__anchorBottomBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25rem;
  height: 6.6rem;
  padding-top: 1.5rem;
  color: #fff;
  font-size: 2.572rem;
  font-weight: 900;
  box-sizing: border-box;
  border: 0.2rem solid #fff;
}
.p-3rd__anchorBottomBtn::before {
  position: absolute;
  top: 0.8rem;
  left: 0;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-right: 0.9rem solid transparent;
  border-left: 0.9rem solid transparent;
  border-bottom: 0.9rem solid #ffffff;
  border-top: 0;
  content: "";
}
.p-3rd__anchorBottomBtn .date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0.9rem;
  padding: 0.3rem 0.5rem 0.4rem;
  font-size: 2.058rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #fff;
}
.p-3rd__anchorBottomBtn.tokyo1 {
  background: #6975dd;
  background: linear-gradient(0deg, rgb(105, 117, 221) 0%, #7355b0 100%);
}
.p-3rd__anchorBottomBtn.tokyo1 .date {
  color: #7064c4;
}
.p-3rd__anchorBottomBtn.tokyo2 {
  background: #f86f64;
  background: linear-gradient(0deg, #f86f64 0%, #fd5392 100%);
}
.p-3rd__anchorBottomBtn.tokyo2 .date {
  color: #f86e66;
}
.p-3rd__anchorBottomBtn.osaka {
  background: #e4e108;
  background: linear-gradient(0deg, #e4e108 0%, #1ed94f 100%);
}
.p-3rd__anchorBottomBtn.osaka .date {
  color: #6cdf4e;
}
@media (max-width:768px) {
  .p-3rd__anchorBottomBtn {
    align-items: end;
    width: 30.5%;
    height: 9.6vw;
    padding: 1.4667vw 0 1.6vw;
    font-size: 3.4027vw;
    border: 0.2667vw solid #fff;
  }
  .p-3rd__anchorBottomBtn::before {
    top: 1.6vw;
    border-right: 1.4667vw solid transparent;
    border-left: 1.4667vw solid transparent;
    border-bottom: 1.4667vw solid #fff;
  }
  .p-3rd__anchorBottomBtn .date {
    margin-bottom: -0.3vw;
    margin-left: 0.6667vw;
    padding: 0.27vw 0.6667vw 0.5333vw;
    font-size: 2.7213vw;
  }
}

.p-3rd__main {
  display: flex;
  justify-content: space-between;
}
@media (max-width:768px) {
  .p-3rd__main {
    justify-content: start;
    flex-flow: column;
  }
}

.p-3rd__block {
  width: 120rem;
  margin: 6rem auto 0;
  padding-bottom: 6rem;
}
.p-3rd__block.p-tokyo1 {
  background: rgba(95, 81, 194, 0.4);
}
.p-3rd__block.p-tokyo1 .p-3rd__main {
  background: #6975dd;
  background: linear-gradient(0deg, rgb(105, 117, 221) 0%, #7355b0 100%);
}
.p-3rd__block.p-tokyo1 .p-3rd__main .p-3rd__mainTitle {
  color: #7064c4;
}
.p-3rd__block.p-tokyo1 .p-3rd__main .p-3rd__mainTitle span.date {
  background-color: #7064c4;
}
.p-3rd__block.p-tokyo2 {
  background: rgba(253, 84, 146, 0.4);
}
.p-3rd__block.p-tokyo2 .p-3rd__main {
  background: #f86f64;
  background: linear-gradient(0deg, #f86f64 0%, #fd5392 100%);
}
.p-3rd__block.p-tokyo2 .p-3rd__main .p-3rd__mainTitle {
  color: #f86e66;
}
.p-3rd__block.p-tokyo2 .p-3rd__main .p-3rd__mainTitle span.date {
  background-color: #f86e66;
}
.p-3rd__block.p-osaka {
  background: rgba(214, 225, 92, 0.4);
}
.p-3rd__block.p-osaka .p-3rd__main {
  background: #e4e108;
  background: linear-gradient(0deg, #e4e108 0%, #1ed94f 100%);
}
.p-3rd__block.p-osaka .p-3rd__main .p-3rd__mainTitle {
  color: #6cdf4e;
}
.p-3rd__block.p-osaka .p-3rd__main .p-3rd__mainTitle span.date {
  background-color: #6cdf4e;
}
@media (max-width:768px) {
  .p-3rd__block {
    width: 93.2%;
    margin: 5.3333vw auto 0;
    padding-bottom: 10.6667vw;
  }
}

.p-3rd__mainImg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  overflow: hidden;
}
.p-3rd__mainImg--bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(2rem);
  transform: scale(1.5);
}
.p-3rd__mainImg--main {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width:768px) {
  .p-3rd__mainImg {
    width: 100%;
    aspect-ratio: 699/464;
  }
  .p-3rd__mainImg--bg {
    filter: blur(2.6667vw);
  }
}

.p-3rd__mainInfo {
  position: relative;
  flex: 1 1 auto;
  padding: 0 0 5.8rem 3.8rem;
}
@media (max-width:768px) {
  .p-3rd__mainInfo {
    padding: 5.6vw 3.7333vw 6.8vw;
  }
}

.p-3rd__mainTitle {
  position: absolute;
  top: 4.3rem;
  right: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 75rem;
  height: 8.8rem;
  padding-left: 5.5rem;
  font-weight: 900;
  font-size: 5rem;
  background: #fff;
  box-sizing: border-box;
}
.p-3rd__mainTitle span.date {
  margin-left: 1.6rem;
  padding: 0.4rem 1rem 0.8rem;
  color: #fff;
  font-size: 4rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (max-width:768px) {
  .p-3rd__mainTitle {
    position: relative;
    top: inherit;
    justify-content: center;
    width: 100%;
    height: 11.4667vw;
    padding-left: 0;
    font-size: 6.4vw;
  }
  .p-3rd__mainTitle span.date {
    margin-left: 1.3333vw;
    height: auto;
    padding: 0.9333vw 1.0667vw 1.0667vw;
    font-size: 5.3333vw;
  }
}

.p-3rd__mainOpen {
  margin-top: 17rem;
  font-size: 2.6rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .p-3rd__mainOpen {
    margin-top: 4vw;
    font-size: 4.8vw;
    text-align: center;
  }
}

.p-3rd__mainStage {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width:768px) {
  .p-3rd__mainStage {
    margin-top: 2vw;
    font-size: 3.2vw;
    text-align: center;
  }
}

.p-3rd__mainMc {
  margin-top: 1.4rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width:768px) {
  .p-3rd__mainMc {
    margin-top: 2vw;
    font-size: 3.2vw;
    text-align: center;
  }
}

.p-3rd__mainArtist {
  margin-top: 3.8rem;
  font-size: 5.2rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.p-3rd__mainArtist .num {
  font-size: 3rem;
}
@media (max-width:768px) {
  .p-3rd__mainArtist {
    margin-top: 6.6667vw;
    font-size: 9.3333vw;
    text-align: center;
  }
  .p-3rd__mainArtist .num {
    font-size: 5.3333vw;
  }
}

.p-3rd__btnWrapper {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 1rem;
  margin: 3rem auto 0;
}
@media (max-width:768px) {
  .p-3rd__btnWrapper {
    align-items: center;
    flex-flow: column;
    gap: 4vw;
    margin: 6.5333vw auto 0;
  }
}

.p-3rd__btnTimetable {
  display: block;
  width: 32rem;
}
@media (max-width:768px) {
  .p-3rd__btnTimetable {
    width: 79.4667vw;
  }
}

.p-3rd__btnLive {
  display: block;
  width: 32rem;
}
@media (max-width:768px) {
  .p-3rd__btnLive {
    width: 79.4667vw;
  }
}

.p-3rd__regularTitle {
  width: 41.1rem;
  margin: 2.1rem auto 0;
}
@media (max-width:768px) {
  .p-3rd__regularTitle {
    width: 78.9333vw;
    margin: 2.6667vw auto 0;
  }
}

.p-3rd__copyTitle {
  width: 35.4rem;
  margin: 2.8rem auto 0;
}
@media (max-width:768px) {
  .p-3rd__copyTitle {
    width: 61.6vw;
    margin: 2.6667vw auto 0;
  }
}

.p-3rd__container {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-flow: wrap;
  gap: 1.2rem;
  width: 112rem;
  margin: 2rem auto 0;
}
.p-3rd__container.--copy {
  justify-content: center;
}
@media (max-width:768px) {
  .p-3rd__container {
    width: 88vw;
    gap: 1.3333vw;
    margin: 2.6667vw auto 0;
  }
}

.p-3rd__artist {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  width: 27.1rem;
  padding: 1.8rem 1.8rem 2.1rem;
  background: #fff;
  box-sizing: border-box;
}
@media (max-width:768px) {
  .p-3rd__artist {
    width: 43.3333vw;
    padding: 2vw 2vw 4.2667vw;
  }
}

.p-3rd__artistCatch {
  margin-top: 1.5rem;
  color: #000;
  font-size: 1.157rem;
  line-height: 1.4494;
  font-weight: 700;
}
@media (max-width:768px) {
  .p-3rd__artistCatch {
    margin-top: 3vw;
    font-size: 2.6667vw;
    line-height: 1.45;
  }
}

.p-3rd__artistName {
  margin-top: 1rem;
  color: #000;
  font-size: 2.121rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .p-3rd__artistName {
    margin-top: 3vw;
    font-size: 4.2667vw;
  }
}

.p-3rd__artistSong {
  margin-top: 2.5rem;
  color: #00a0e9;
  font-size: 1.157rem;
  line-height: 1.5;
}
@media (max-width:768px) {
  .p-3rd__artistSong {
    margin-top: 5vw;
    font-size: 2.6667vw;
    line-height: 1.5;
  }
}

.p-3rd__artistBtnWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
@media (max-width:768px) {
  .p-3rd__artistBtnWrapper {
    margin-top: 2.6667vw;
  }
}

.p-3rd__audio {
  display: flex;
  gap: 0.4rem;
  color: #00a0e9;
}
@media (max-width:768px) {
  .p-3rd__audio {
    gap: 0.8vw;
  }
}
.p-3rd__audio .back {
  position: relative;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 9999px;
  border: 0.1rem solid #00a0e9;
  box-sizing: border-box;
  cursor: pointer;
}
.p-3rd__audio .back::before {
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  display: block;
  width: 0.2rem;
  height: 1.2rem;
  background: #00a0e9;
  content: "";
}
.p-3rd__audio .back::after {
  position: absolute;
  top: 1rem;
  left: 1.3rem;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-right: 0.9rem solid #00a0e9;
  border-left: 0;
  content: "";
}
@media (max-width:768px) {
  .p-3rd__audio .back {
    width: 6.8vw;
    height: 6.8vw;
    border: 0.1333vw solid #00a0e9;
  }
  .p-3rd__audio .back::before {
    top: 2vw;
    left: 2.2667vw;
    width: 0.2667vw;
    height: 2.6667vw;
  }
  .p-3rd__audio .back::after {
    top: 2vw;
    left: 2.5334vw;
    border-top: 1.3333vw solid transparent;
    border-bottom: 1.3333vw solid transparent;
    border-right: 2vw solid #00a0e9;
  }
}
.p-3rd__audio .play {
  position: relative;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 9999px;
  background: #00a0e9;
  cursor: pointer;
}
.p-3rd__audio .play::before {
  position: absolute;
  display: block;
  top: 1.1rem;
  left: 1.37rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-left: 1rem solid #fff;
  border-right: 0;
  content: "";
}
@media (max-width:768px) {
  .p-3rd__audio .play {
    width: 6.8vw;
    height: 6.8vw;
  }
  .p-3rd__audio .play::before {
    top: 2.1vw;
    left: 2.7vw;
    border-top: 1.3vw solid transparent;
    border-bottom: 1.3vw solid transparent;
    border-left: 1.8667vw solid #fff;
  }
}
.p-3rd__audio .play.is-playing {
  background: #aaa;
}
.p-3rd__audio .play.is-playing::before {
  left: 1.2rem;
  width: 0.35rem;
  height: 1.2rem;
  background: #fff;
  border: none;
}
.p-3rd__audio .play.is-playing::after {
  position: absolute;
  display: block;
  top: 1.1rem;
  left: 1.85rem;
  width: 0.35rem;
  height: 1.2rem;
  background: #fff;
  border: none;
  content: "";
}
@media (max-width:768px) {
  .p-3rd__audio .play.is-playing::before {
    top: 2.1333vw;
    left: 2.43vw;
    width: 0.7vw;
    height: 2.6667vw;
  }
  .p-3rd__audio .play.is-playing::after {
    top: 2.1333vw;
    left: 3.67vw;
    width: 0.7vw;
    height: 2.6667vw;
  }
}

.p-3rd__btnProfile {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 12.5rem;
  height: 3.35rem;
  margin-left: auto;
  padding-left: 2.9rem;
  color: #fff;
  font-size: 1.157rem;
  font-weight: 700;
  background: #00a0e9;
  box-sizing: border-box;
}
.p-3rd__btnProfile::before, .p-3rd__btnProfile::after {
  position: absolute;
  top: 1.7rem;
  right: 1.7rem;
  display: block;
  background: #fff;
  content: "";
  transform: translate(50%, -50%);
}
.p-3rd__btnProfile::before {
  width: 0.2rem;
  height: 1rem;
}
.p-3rd__btnProfile::after {
  width: 1rem;
  height: 0.2rem;
}
@media (max-width:768px) {
  .p-3rd__btnProfile {
    width: 21.6387vw;
    height: 6.5733vw;
    padding-left: 3.4667vw;
    font-size: 2.6667vw;
  }
  .p-3rd__btnProfile::before, .p-3rd__btnProfile::after {
    top: 3.3vw;
    right: 4.4vw;
  }
  .p-3rd__btnProfile::before {
    width: 0.2667vw;
    height: 1.7333vw;
  }
  .p-3rd__btnProfile::after {
    width: 1.7333vw;
    height: 0.2667vw;
  }
}

.p-3rd__modal {
  width: 100vw;
  height: 100vh;
  background: #fff;
}

.p-3rd__modalContainer {
  display: flex;
  justify-content: start;
  gap: 3rem;
  padding: 4rem;
}
@media (max-width:768px) {
  .p-3rd__modalContainer {
    flex-flow: column;
    gap: 4.5333vw;
    padding: 3.7333vw 3.2vw 7.4667vw;
  }
}

.p-3rd__modalImg {
  flex: 0 0 44.2rem;
  width: 44.2rem;
}
@media (max-width:768px) {
  .p-3rd__modalImg {
    flex: 0 0 100%;
    width: 100%;
  }
  .p-3rd__modalImg img {
    width: 100%;
    height: auto;
  }
}

.p-3rd__modalInfo {
  flex: 1 1 auto;
}

.p-3rd__modalStage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3rem 0.7rem 0.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  background: #00a0e9;
}
@media (max-width:768px) {
  .p-3rd__modalStage {
    padding: 0.39vw 1.8667vw 0.6667vw;
    font-size: 3.2973vw;
  }
}

.p-3rd__modalCatch {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3636;
}
@media (max-width:768px) {
  .p-3rd__modalCatch {
    margin-top: 2.5333vw;
    font-size: 2.9333vw;
  }
}

.p-3rd__modalName {
  margin-top: 3rem;
  font-size: 3.6rem;
  font-weight: 900;
}
@media (max-width:768px) {
  .p-3rd__modalName {
    margin-top: 5.8667vw;
    font-size: 6.6667vw;
  }
}

.p-3rd__modalAttrs {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width:768px) {
  .p-3rd__modalAttrs {
    gap: 5.7333vw;
    margin-top: 4vw;
  }
}

.p-3rd__modalEmbed {
  width: 100%;
  aspect-ratio: 560/315;
  margin-top: 2.5rem;
}
@media (max-width:768px) {
  .p-3rd__modalEmbed {
    margin-top: 4.5vw;
  }
}
.p-3rd__modalEmbed iframe {
  width: 100%;
  height: 100%;
}

.p-3rd__modalPref {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .p-3rd__modalPref {
    font-size: 3.2vw;
  }
}

.p-3rd__modalSocial {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.p-3rd__modalSocial > li {
  height: -moz-fit-content;
  height: fit-content;
}
.p-3rd__modalSocial > li > a {
  display: block;
  font-size: 0;
}
.p-3rd__modalSocial .x {
  width: 2.3rem;
}
.p-3rd__modalSocial .instagram {
  width: 2.2rem;
}
.p-3rd__modalSocial .youtube {
  width: 3.2rem;
}
.p-3rd__modalSocial .tiktok {
  width: 2.1rem;
}
@media (max-width:768px) {
  .p-3rd__modalSocial {
    gap: 7.8667vw;
  }
  .p-3rd__modalSocial .x {
    width: 5.4667vw;
  }
  .p-3rd__modalSocial .instagram {
    width: 5.3333vw;
  }
  .p-3rd__modalSocial .youtube {
    width: 7.7333vw;
  }
  .p-3rd__modalSocial .tiktok {
    width: 4.6vw;
  }
}

.p-3rd__modalWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 6.73rem;
  margin-top: 4rem;
  padding: 1rem 0;
  border-top: 1px solid #00a0e9;
  border-bottom: 1px solid #00a0e9;
}
@media (max-width:768px) {
  .p-3rd__modalWrapper {
    min-height: 15.9093vw;
    margin-top: 5.7333vw;
    padding: 3.2vw 0;
  }
}

.p-3rd__modalSong {
  color: #00a0e9 !important;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-3rd__modalSong a {
  color: #00a0e9 !important;
}
@media (max-width:768px) {
  .p-3rd__modalSong {
    font-size: 3.2vw;
  }
}

.p-3rd__modalHeading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 2.7rem;
  margin-top: 3rem;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #000;
}
@media (max-width:768px) {
  .p-3rd__modalHeading {
    width: 16.8vw;
    height: 4.8vw;
    margin-top: 4vw;
    font-size: 3.4667vw;
  }
}

.p-3rd__modalHeading2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18rem;
  height: 2.7rem;
  margin-top: 3rem;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #000;
}
@media (max-width:768px) {
  .p-3rd__modalHeading2 {
    width: 31.8vw;
    height: 4.8vw;
    margin-top: 8vw;
    font-size: 3.4667vw;
  }
}

.p-3rd__modalTxt {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width:768px) {
  .p-3rd__modalTxt {
    margin-top: 2.6667vw;
    font-size: 3.2vw;
    line-height: 1.4167;
  }
}

.p-3rd__modalAudio {
  display: flex;
  gap: 0.4rem;
  color: #00a0e9;
}
@media (max-width:768px) {
  .p-3rd__modalAudio {
    gap: 1.0667vw;
  }
}
.p-3rd__modalAudio .back {
  position: relative;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 9999px;
  border: 0.1rem solid #00a0e9;
  box-sizing: border-box;
  cursor: pointer;
}
.p-3rd__modalAudio .back::before {
  position: absolute;
  top: 1.5rem;
  left: 1.4rem;
  display: block;
  width: 0.2rem;
  height: 1.7rem;
  background: #00a0e9;
  content: "";
}
.p-3rd__modalAudio .back::after {
  position: absolute;
  top: 1.5rem;
  left: 1.6rem;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.85rem solid transparent;
  border-bottom: 0.85rem solid transparent;
  border-right: 1.4rem solid #00a0e9;
  border-left: 0;
  content: "";
}
@media (max-width:768px) {
  .p-3rd__modalAudio .back {
    width: 9.3333vw;
    height: 9.3333vw;
    border: 0.1333vw solid #00a0e9;
  }
  .p-3rd__modalAudio .back:before {
    top: 2.9vw;
    left: 3.2667vw;
    width: 0.2667vw;
    height: 3.4667vw;
  }
  .p-3rd__modalAudio .back::after {
    top: 2.9vw;
    left: 3.5334vw;
    border-top: 1.7333vw solid transparent;
    border-bottom: 1.7333vw solid transparent;
    border-right: 2.6667vw solid #00a0e9;
  }
}
.p-3rd__modalAudio .play {
  position: relative;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 9999px;
  background: #00a0e9;
  cursor: pointer;
}
.p-3rd__modalAudio .play::before {
  position: absolute;
  display: block;
  top: 1.5rem;
  left: 1.85rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.85rem solid transparent;
  border-bottom: 0.85rem solid transparent;
  border-left: 1.2rem solid #fff;
  border-right: 0;
  content: "";
}
@media (max-width:768px) {
  .p-3rd__modalAudio .play {
    width: 9.3333vw;
    height: 9.3333vw;
  }
  .p-3rd__modalAudio .play::before {
    top: 3.0667vw;
    left: 3.8667vw;
    border-top: 1.7333vw solid transparent;
    border-bottom: 1.7333vw solid transparent;
    border-left: 2.4vw solid #ffffff;
  }
}
.p-3rd__modalAudio .play.is-playing {
  background: #aaa;
}
.p-3rd__modalAudio .play.is-playing::before {
  left: 1.6rem;
  width: 0.5rem;
  height: 1.7rem;
  background: #fff;
  border: none;
}
.p-3rd__modalAudio .play.is-playing::after {
  position: absolute;
  display: block;
  top: 1.5rem;
  left: 2.5rem;
  width: 0.5rem;
  height: 1.7rem;
  background: #fff;
  border: none;
  content: "";
}
@media (max-width:768px) {
  .p-3rd__modalAudio .play.is-playing::before {
    top: 2.9333vw;
    left: 3.3333vw;
    width: 1.0667vw;
    height: 3.4667vw;
  }
  .p-3rd__modalAudio .play.is-playing::after {
    top: 2.9333vw;
    left: 4.9333vw;
    width: 1.0667vw;
    height: 3.4667vw;
  }
}

.p-3rd__timetable {
  padding: 3rem 0 5rem;
}
@media (max-width:768px) {
  .p-3rd__timetable {
    padding: 6.6667vw 0 8.6667vw;
  }
}

.p-3rd__timetableTitle {
  display: flex;
  justify-content: center;
  align-items: end;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}
.p-3rd__timetableTitle > .date {
  margin-left: 2rem;
  margin-right: 1rem;
  padding: 0.5rem 1rem 0.7rem;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.p-3rd__timetableTitle > .eng {
  font-size: 5.8rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (max-width:768px) {
  .p-3rd__timetableTitle {
    align-items: center;
    font-size: 6.4vw;
  }
  .p-3rd__timetableTitle > .date {
    margin-bottom: -0.6667vw;
    margin-left: 1.8667vw;
    margin-right: 1.8667vw;
    padding: 0.9333vw 1.0667vw 1.2vw;
    font-size: 5.268vw;
  }
  .p-3rd__timetableTitle > .eng {
    font-size: 6.4vw;
  }
}

.p-3rd__timetableInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem auto 0;
  padding: 2.5rem 0;
  color: #fff;
  line-height: 1;
}
@media (max-width:768px) {
  .p-3rd__timetableInfo {
    margin: 5vw auto 0;
    padding: 4vw 0;
    text-align: center;
  }
}

.p-3rd__timetableInfoInner {
  width: -moz-fit-content;
  width: fit-content;
}

.p-3rd__timetableDate {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .p-3rd__timetableDate {
    font-size: 3.2vw;
  }
}

.p-3rd__timetableMc {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .p-3rd__timetableMc {
    margin-top: 2.4vw;
    font-size: 3.2vw;
  }
}

.p-3rd__timetableTime {
  margin-top: 1.4rem;
  font-size: 2.6rem;
  font-weight: 700;
}
@media (max-width:768px) {
  .p-3rd__timetableTime {
    margin-top: 3.0667vw;
    font-size: 4.8vw;
  }
}

.p-3rd__timetableContainer {
  display: flex;
  justify-content: center;
  align-items: start;
  margin-top: 4.6rem;
}
@media (max-width:768px) {
  .p-3rd__timetableContainer {
    flex-flow: column;
    justify-content: start;
    align-items: center;
    gap: 5.3333vw;
    margin-top: 8vw;
  }
}
.p-3rd__timetableContainer > ul {
  flex: 0 0 auto;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 2.7rem;
  width: 40rem;
  list-style: none;
  box-sizing: border-box;
}
@media (max-width:768px) {
  .p-3rd__timetableContainer > ul {
    gap: 4.5vw;
    width: 100%;
    padding-left: 11.4667vw;
  }
}
.p-3rd__timetableContainer > ul > li {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width:768px) {
  .p-3rd__timetableContainer > ul > li {
    font-size: 3.4667vw;
  }
}
.p-3rd__timetableContainer > ul > li::before {
  position: absolute;
  top: 1.4rem;
  left: -2.7rem;
  display: block;
  width: 0.2rem;
  height: 3.8rem;
  background: #dcdcdc;
  content: "";
}
@media (max-width:768px) {
  .p-3rd__timetableContainer > ul > li::before {
    top: -6.2vw;
    left: -5.55vw;
    width: 0.2667vw;
    height: 7.2vw;
  }
}
.p-3rd__timetableContainer > ul > li::after {
  position: absolute;
  top: calc(50% - 0.2rem);
  left: -3rem;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 9999px;
  z-index: 2;
  content: "";
}
@media (max-width:768px) {
  .p-3rd__timetableContainer > ul > li::after {
    top: calc(50% - 0.8vw);
    left: -6.2667vw;
    width: 1.6vw;
    height: 1.6vw;
  }
}
.p-3rd__timetableContainer > ul > li > .time {
  display: inline-block;
  width: 13.5rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (max-width:768px) {
  .p-3rd__timetableContainer > ul > li > .time {
    width: 26.6667vw;
  }
}
@media (max-width:768px) {
  .p-3rd__timetableContainer > ul.col1 li:first-child::before {
    display: none;
  }
}
.p-3rd__timetableContainer > ul.col1 li:last-child::before {
  height: 2.2rem;
}
@media (max-width:768px) {
  .p-3rd__timetableContainer > ul.col1 li:last-child::before {
    height: 7.2vw;
  }
}
.p-3rd__timetableContainer > ul.col2 li:first-child::before {
  top: -1.4rem;
  height: 6.8rem;
}
@media (max-width:768px) {
  .p-3rd__timetableContainer > ul.col2 li:first-child::before {
    top: -6.2vw;
    height: 7.2vw;
  }
}
.p-3rd__timetableContainer > ul.col2 li:last-child::before {
  display: none;
}
@media (max-width:768px) {
  .p-3rd__timetableContainer > ul.col2 li:last-child::before {
    display: block;
  }
}

.p-tokyo1 > .p-3rd__timetableTitle {
  color: #7064c4;
}
.p-tokyo1 > .p-3rd__timetableTitle > .date {
  background: #7064c4;
}
.p-tokyo1 > .p-3rd__timetableInfo {
  background: #7064c4;
}
.p-tokyo1 > .p-3rd__timetableContainer li.color {
  color: #7064c4;
}
.p-tokyo1 > .p-3rd__timetableContainer li::after {
  background: #7064c4;
}

.p-tokyo2 > .p-3rd__timetableTitle {
  color: #f86e66;
}
.p-tokyo2 > .p-3rd__timetableTitle > .date {
  background: #f86e66;
}
.p-tokyo2 > .p-3rd__timetableInfo {
  background: #f86e66;
}
.p-tokyo2 > .p-3rd__timetableContainer li.color {
  color: #f86e66;
}
.p-tokyo2 > .p-3rd__timetableContainer li::after {
  background: #f86e66;
}

.p-osaka > .p-3rd__timetableTitle {
  color: #6cdf4e;
}
.p-osaka > .p-3rd__timetableTitle > .date {
  background: #6cdf4e;
}
.p-osaka > .p-3rd__timetableInfo {
  background: #6cdf4e;
}
.p-osaka > .p-3rd__timetableContainer li.color {
  color: #6cdf4e;
}
.p-osaka > .p-3rd__timetableContainer li::after {
  background: #6cdf4e;
}

@media (max-width:768px) {
  .modaal-inner-wrapper {
    padding: 13vw 3.3333vw 3.3333vw;
  }
}

.modaal-container {
  max-width: 120rem;
}
@media (max-width:768px) {
  .modaal-container {
    max-width: 100%;
  }
}

.modaal-content-container {
  padding: 0;
}

.modaal-close {
  position: absolute;
  top: -5.5rem;
  right: 0;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 0;
  background: none;
  transition: none;
}
.modaal-close:hover {
  background: none;
}
.modaal-close:hover:before, .modaal-close:hover:after {
  background: #fff;
}
@media (max-width:768px) {
  .modaal-close {
    top: -11vw;
    width: 8.7vw;
    height: 8.7vw;
  }
}

.modaal-close:before,
.modaal-close:after {
  width: 0.3rem;
  height: 5.6rem;
  border-radius: 0;
}
@media (max-width:768px) {
  .modaal-close:before,
  .modaal-close:after {
    width: 0.5333vw;
    height: 11.6vw;
  }
}

.modaal-close:before {
  top: 0.3rem;
  left: 0;
  transform-origin: top left;
}
@media (max-width:768px) {
  .modaal-close:before {
    top: 0.5333vw;
  }
}

.modaal-close:after {
  top: 0.3rem;
  left: calc(100% - 0.3rem);
  transform-origin: top right;
}
@media (max-width:768px) {
  .modaal-close:after {
    top: 0.5333vw;
    left: calc(100% - 0.5333vw);
  }
}

.--copy .p-3rd__artistSong {
  color: #00c1ce;
}
.--copy .p-3rd__btnProfile {
  background: #00c1ce;
}
.--copy .p-3rd__modalStage {
  background: #00c1ce;
}
.--copy .p-3rd__modalSong {
  color: #00c1ce !important;
}
.--copy .p-3rd__modalSong a {
  color: #00c1ce !important;
}

.p-3rd__topBtn {
  display: block;
  width: 32rem;
  margin: 6rem auto 0;
}
@media (max-width:768px) {
  .p-3rd__topBtn {
    width: 79.4667vw;
    margin: 6.6667vw auto 0;
  }
}

.c-infoPanel {
  width: 86rem;
  margin: 1.6rem auto 0;
  padding: 4rem 4.7rem 4.4rem;
  line-height: 1.6875;
  box-sizing: border-box;
  outline-offset: -8px;
  outline: 1px solid #fff;
}
.c-infoPanel--regular {
  background: var(--regular-infoPanel-color);
}
.c-infoPanel--copy {
  background: var(--copy-infoPanel-color);
}
@media (max-width:768px) {
  .c-infoPanel {
    width: 93.3333vw;
    margin: 2vw auto 0;
    padding: 6.2667vw 3.7333vw;
    font-size: 3.4667vw;
    line-height: 1.5385;
    outline-offset: -7px;
  }
}

.c-infoPanel__heading {
  font-weight: 900;
}

.c-infoPanel__list {
  list-style: none;
}

.c-infoPanel__note {
  margin-top: 1em;
}

.c-infoPanel__note > .strong {
  display: inline-block;
  margin-top: 1em;
}

.c-accordionSwitch {
  position: relative;
  display: inline-block;
  width: 2.8rem;
  height: 2.8rem;
  background: #fff;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  cursor: pointer;
}
.c-accordionSwitch::before {
  position: absolute;
  display: block;
  width: 2px;
  height: 1rem;
  inset: 0;
  margin: auto;
  content: "";
}
.c-accordionSwitch::after {
  position: absolute;
  display: block;
  width: 2px;
  height: 1rem;
  inset: 0;
  margin: auto;
  transform: rotate(90deg);
  content: "";
}
@media (max-width:768px) {
  .c-accordionSwitch {
    width: 7.3333vw;
    height: 7.3333vw;
  }
  .c-accordionSwitch::before {
    width: 0.5333vw;
    height: 2.8vw;
  }
  .c-accordionSwitch::after {
    width: 0.5333vw;
    height: 2.8vw;
  }
}

.p-regular .c-accordionSwitch::before,
.p-regular .c-accordionSwitch::after {
  background: var(--regular-switch-color);
}

.p-copy .c-accordionSwitch::before,
.p-copy .c-accordionSwitch::after {
  background: var(--copy-switch-color);
}

.p-notice {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  background: #fff;
  z-index: 3;
}
.p-notice:hover {
  opacity: 1 !important;
}
@media (max-width:768px) {
  .p-notice {
    height: 7vw;
    font-size: 3vw;
  }
}

.c-accordionWrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}
.c-accordionWrapper > * {
  overflow: hidden;
  min-height: 0;
}

.c-accordionInner {
  min-height: 0;
  overflow: hidden;
}

.js-accordionBox.is-open .c-accordionWrapper {
  grid-template-rows: 1fr;
}
.js-accordionBox.is-open .c-accordionSwitch:before {
  opacity: 0;
}

.c-timeline {
  width: 86rem;
  margin: 2rem auto 0;
  padding: 2.1rem;
  box-sizing: border-box;
  background: #fff;
}
@media (max-width:768px) {
  .c-timeline {
    width: 93.3333vw;
    margin: 5.3333vw auto 0;
    padding: 4vw;
  }
}

.c-timeline__item {
  margin: 0 auto 2.5rem;
}
@media (max-width:768px) {
  .c-timeline__item {
    margin: 0 auto 2.4vw;
  }
}

.c-timeline__title {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0.9rem 2.4rem;
}
.c-timeline__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  width: 5rem;
  height: calc(1px + 1rem);
  margin: auto;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media (max-width:768px) {
  .c-timeline__title {
    padding: 2vw 2.5333vw;
  }
  .c-timeline__title::after {
    bottom: -1.3333vw;
    width: 6.6667vw;
    height: calc(1px + 1.3333vw);
  }
}
.c-timeline__title--regular-1st {
  background: var(--regular-1st-color);
}
.c-timeline__title--regular-1st::after {
  background: var(--regular-1st-color);
}
.c-timeline__title--regular-2nd {
  background: var(--regular-2nd-color);
}
.c-timeline__title--regular-2nd::after {
  background: var(--regular-2nd-color);
}
.c-timeline__title--regular-3rd {
  background: var(--regular-3rd-color);
}
.c-timeline__title--regular-3rd::after {
  background: var(--regular-3rd-color);
}
.c-timeline__title--copy-1st {
  background: var(--copy-1st-color);
}
.c-timeline__title--copy-1st::after {
  background: var(--copy-1st-color);
}
.c-timeline__title--copy-2nd {
  background: var(--copy-2nd-color);
}
.c-timeline__title--copy-2nd::after {
  background: var(--copy-2nd-color);
}
.c-timeline__title--copy-3rd {
  background: var(--copy-3rd-color);
}
.c-timeline__title--copy-3rd::after {
  background: var(--copy-3rd-color);
}

.c-timeline__step {
  flex: 0 0 19.5rem;
  font-size: 3rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (max-width:768px) {
  .c-timeline__step {
    flex: 0 0 28.5333vw;
    font-size: 6.1333vw;
  }
}

.c-timeline__label {
  font-weight: 700;
  font-size: 1.6rem;
}
@media (max-width:768px) {
  .c-timeline__label {
    font-size: 3.4667vw;
  }
}

.c-timeline__desc {
  margin: 2rem auto 0;
  padding: 0 2.3rem;
  font-weight: 700;
  line-height: 1.625;
}
@media (max-width:768px) {
  .c-timeline__desc {
    margin: 4vw auto 0;
    font-size: 3.4667vw;
    line-height: 1.5385;
  }
}
.c-timeline__desc--regular-1st {
  color: var(--regular-1st-color);
}
.c-timeline__desc--regular-2nd {
  color: var(--regular-2nd-color);
}
.c-timeline__desc--regular-3rd {
  color: var(--regular-3rd-color);
}
.c-timeline__desc--copy-1st {
  color: var(--copy-1st-color);
}
.c-timeline__desc--copy-2nd {
  color: var(--copy-2nd-color);
}
.c-timeline__desc--copy-3rd {
  color: var(--copy-3rd-color);
}

.c-dateList {
  margin: 1rem auto 0;
  padding: 0 2.3rem;
  list-style: none;
  color: #000;
  font-weight: 700;
}
.c-dateList > li {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 1rem 0;
}
.c-dateList > li:not(:first-child) {
  border-top: 1px solid #cdcdcd;
}
@media (max-width:768px) {
  .c-dateList {
    margin: 1.3333vw auto 0;
    padding: 0 2.4vw;
  }
  .c-dateList > li {
    padding: 2.4vw 0;
    font-size: 3.4667vw;
    line-height: 1.2308;
  }
}

.c-dateList__date {
  flex: 0 0 21rem;
  width: 21rem;
  font-size: 2rem;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (max-width:768px) {
  .c-dateList__date {
    flex: 0 0 30.2667vw;
    width: 30.2667vw;
    font-size: 3.4667vw;
  }
}

.c-dateList__wday {
  margin-left: 0.5em;
  font-size: 1.2rem;
}
@media (max-width:768px) {
  .c-dateList__wday {
    font-size: 2.6667vw;
  }
}

.c-entryBtn {
  display: block;
  width: 44.4rem;
  margin: 0 auto;
}
@media (max-width:768px) {
  .c-entryBtn {
    width: 79.4667vw;
  }
  .c-entryBtn img {
    width: 100%;
  }
}

/* -- UTILITY -- */
.u-fadeInUp,
.u-fadeInRight,
.u-fadeInLeft {
  opacity: 0;
  will-change: opacity, transform, filter;
}

/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width:768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */









    #overlay {
      display: none !important;
      pointer-events: none !important;
    }

    .p-news__body .courage-image-container {
      position: relative !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 auto 20px !important;
      overflow: hidden !important;
      border-radius: 12px !important;
      box-shadow: none !important;
      background: transparent !important;
    }

    .p-news__body .courage-image-container img.js-random-image {
      display: none !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
    }

    .p-news__body .courage-image-container img.js-random-image.is-show {
      display: block !important;
    }

    /* ==================================================== */

    .courage-text {
      font-weight: bold;
      line-height: 1.8;
      margin: 25px 0;
      font-size: 16px;
      color: #333333;
    }

    .courage-shuffle-btn {
      display: inline-block;
      background-color: #009fe8;
      color: #ffffff;
      font-size: 18px;
      font-weight: bold;
      padding: 14px 65px;
      border-radius: 40px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 159, 232, 0.3);
      transition: background-color 0.2s, transform 0.1s;
      outline: none;
      margin-bottom: 10px;

      position: relative !important;
      z-index: 9999 !important;
    }

    .courage-shuffle-btn:hover {
      background-color: #008cd2;
    }

    .courage-shuffle-btn:active {
      transform: scale(0.97);
    }

    @media screen and (max-width: 768px) {
      .courage-text {
        font-size: 14px;
        padding: 0 10px;
      }

      .courage-shuffle-btn {
        width: 85%;
        padding: 14px 0;
        font-size: 16px;
      }
    }

    .p-news .p-news__header-title {
      font-size: 4.6rem;
    }

    @media screen and (max-width: 768px) {
      .p-news .p-news__header-title {
        font-size: 7.6rem;
      }
    }

    .p-news .p-news__body img {
      margin: 0 auto;
    }

    @media screen and (max-width: 768px) {
      .p-news .p-news__header-title {
        margin: 0 auto;
      }
    }

    .mynavimsg {
      width: 100%;
      max-width: 509px;
      margin: 50px auto 0;
    }

    /* ==================================================== */
    /* 追記：フォーム全体のレイアウト調整 */
    /* ==================================================== */
    .p-news__container {
      padding: 40px 30px;
      /* 横幅を広げたので、内側の余白を少しゆったり調整 */
      background: #ffffff;
      box-sizing: border-box;
    }

    /* グリッドレイアウトの間隔設定 */
    .c-grid.is-gap-l {
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding: 0 4rem;
    }

    .c-grid.is-gap-s {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* ==================================================== */
    /* ラベル・必須マークの調整 */
    /* ==================================================== */
    .p-formUnit__term {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .p-formUnit__term .c-text {
      font-size: 16px;
      font-weight: bold;
      color: #333333;
      margin: 0;
    }

    /* ★必須マークの赤い塗りを完全に復活させました */
    .p-formUnit__require {
      background-color: #ff3b30 !important;
      color: #ffffff !important;
      font-size: 12px;
      font-weight: bold;
      padding: 4px 8px;
      border-radius: 4px;
      line-height: 1;
      display: inline-block;
    }

    /* termで囲まれていないラベル（電話番号・メールアドレス）の調整 */
    .p-formUnit div>.c-text.is-bold {
      font-size: 16px;
      font-weight: bold;
      color: #333333 !important;
      margin: 0 0 8px 0;
    }

    /* ==================================================== */
    /* ラジオネーム下の説明文 */
    /* ==================================================== */
    .p-formUnit__notes {
      background: transparent;
      /* ★グレーの背景を透明に */
      padding: 0;
      /* ★内側の余白を削除 */
      border: none;
      /* ★左側の青い線を削除 */
      margin: 10px 0 20px 0;
      /* 上下の項目とのバランスを取るための余白 */
    }

    .p-formUnit__notes .c-text {
      font-size: 16px;
      /* ★フォントサイズを13pxから16pxに拡大 */
      line-height: 1.6;
      color: #333333;
      /* ★文字色を読みやすい黒に */
      margin: 0;
    }

    /* 入力パーツ共通（テキスト、メール、テキストエリア） */
    .p-formUnit input[type="text"],
    .p-formUnit input[type="email"],
    .p-formUnit textarea {
      width: 100%;
      padding: 14px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 16px;
      color: #333333;
      background-color: #ffffff;
      box-sizing: border-box;
      transition: border-color 0.2s;
    }

    .p-formUnit input[type="text"]:focus,
    .p-formUnit input[type="email"]:focus,
    .p-formUnit textarea:focus {
      border-color: #009fe8;
      outline: none;
    }

    .p-formUnit textarea {
      height: 120px;
      resize: vertical;
    }

    /* ==================================================== */
    /* 追記：アーティスト選択（PC時は4列、スマホ時は2列設定） */
    /* ==================================================== */
    .p-formUnit__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      /* ★PC表示のときは4列並び */
      gap: 16px;
      margin-top: 12px;
      margin-bottom: 34px;
    }

    /* 横幅が768px以下のとき（スマホ表示）の切り替え */
    @media screen and (max-width: 768px) {
      .p-formUnit__grid {
        grid-template-columns: repeat(2, 1fr);
        /* ★スマホ表示のときは現在のまま2列並び */
        gap: 12px;
        /* スマホ画面に合わせて少しだけ隙間を調整 */
      }
    }

    /* 標準のラジオボタン（丸ポチ）は完全に隠す */
    .p-artistSelector input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    /* カード（ボタン）全体の見た目 */
    .p-artistSelector__label {
      display: block;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      background: #ffffff;
      transition: all 0.2s ease;
      position: relative;
    }

    .p-artistSelector__label:hover {
      border-color: #009fe8;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* 画像エリア（アスペクト比 3:2 維持） */
    .p-artistSelector__thumbnail {
      position: relative;
      width: 100%;
      padding-top: 66.66%;
      background-color: #f0f0f0;
      overflow: hidden;
    }

    .p-artistSelector__thumbnail img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* チェックマークのマスク */
    .p-artistSelector__checkmark {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .p-artistSelector__checkmark svg {
      width: 32px;
      /* ★4列になってカードが小さくなるのに合わせて、チェックマークを40pxから32pxに少しスマートにしました */
      height: auto;
    }

    /* バンド名テキストエリア */
    .p-artistSelector__content {
      padding: 12px 8px;
      /* 4列用に左右の余白をほんの少しタイトに調整 */
      text-align: center;
      background: #fafafa;
      border-top: 1px solid #eeeeee;
    }

    .p-artistSelector__text {
      font-size: 14px;
      font-weight: bold;
      color: #333333;
    }

    /* 選択（チェック）された時のスタイル変化 */
    .p-artistSelector input[type="radio"]:checked+.p-artistSelector__label {
      border-color: #009fe8;
      box-shadow: 0 0 12px rgba(0, 159, 232, 0.2);
    }

    .p-artistSelector input[type="radio"]:checked+.p-artistSelector__label .p-artistSelector__checkmark {
      opacity: 1;
    }

    .p-artistSelector input[type="radio"]:checked+.p-artistSelector__label .p-artistSelector__content {
      background: #e6f5fc;
    }

    .p-artistSelector input[type="radio"]:checked+.p-artistSelector__label .p-artistSelector__text {
      color: #009fe8;
    }

    /* ==================================================== */
    /* 追記：最下部 投票ボタンの調整 */
    /* ==================================================== */
    .c-btn.is-center.is-large {
      display: block;
      width: 100%;
      max-width: 360px;
      margin: 40px auto 0;
      background-color: #009fe8;
      color: #ffffff;
      font-size: 18px;
      font-weight: bold;
      padding: 16px;
      border: none;
      border-radius: 40px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 159, 232, 0.3);
      transition: background-color 0.2s, transform 0.1s;
    }

    .c-btn.is-center.is-large:hover {
      background-color: #008cd2;
    }

    .c-btn.is-center.is-large:active {
      transform: scale(0.98);
    }

    .c-btn .inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }




    /* ==================================================== */
    /* 追記：エラー表示（インライン）用のスタイル */
    /* ==================================================== */
    /* 画面上部に出るピンクのエラーボックス */
    .p-form__error-box {
      background-color: #fff0f2;
      border-radius: 8px;
      padding: 20px 25px;
      color: #d93737;
      box-sizing: border-box;
      animation: fadeIn 0.3s ease-in-out;
    }

    .p-form__error-box ul {
      margin: 0;
      padding-left: 20px;
      list-style-type: disc;
      /* 黒丸の箇条書き */
    }

    .p-form__error-box li {
      font-size: 15px;
      font-weight: bold;
      line-height: 1.8;
    }

    /* 入力欄（テキスト・メッセージ）がエラーのとき */
    .p-formUnit input[type="text"].is-error,
    .p-formUnit input[type="email"].is-error,
    .p-formUnit textarea.is-error {
      border-color: #ff3b30 !important;
      background-color: #fff5f5 !important;
    }

    /* アーティスト選択（ラジオボタンのグリッド）がエラーのとき */
    .p-formUnit__grid.is-error {
      outline: 2px solid #ff3b30;
      outline-offset: 6px;
      border-radius: 4px;
      background-color: #fff5f5;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


/* 投票済み（グレーアウト）ボタン用のスタイル */
    .c-btn.is-center.is-large.is-voted {
      background-color: #cccccc !important;
      color: #777777 !important;
      cursor: default !important;
      box-shadow: none !important;
      transform: none !important;
      margin-top: 15px; /* 投票ボタンとの間の隙間 */
    }

/* 規約 */
    .c-heading{
                  font-size: 14px;
                  font-weight: bold;
                  color: #e73d5c;
                  font-weight: bold;
                }
                .is-xxs{
                  font-size: 12px;
                  color: #333;
                  line-height: 1.4;
                }
                .c-text{
                  padding-bottom: -10px;
                }