/* ==========================================================================
  Reset
  ========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

img {
  font-size: 0;
  line-height: 0;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

fieldset, img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input, select {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

html, body {
  width: 100%;
  height: 100%;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

/* ==========================================================================
Button
========================================================================== */
.btn-wrap {
  text-align: center;
  margin-top: 32px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1em 3em 1.1em 3em;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease-out;
  border-radius: 9999px;
  color: #fff;
  background: #000;
}
.btn span {
  font-weight: bold;
  color: #fff;
}
.btn--next::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 0;
  left: auto;
  bottom: 0;
  margin: auto 0 auto auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.btn--soon {
  background: #ccc;
}
.btn--soon:hover {
  filter: brightness(1) !important;
  transform: scale(1) !important;
  cursor: default;
}
@media screen and (max-width: 768px) {
  .btn span {
    font-size: 1.2rem;
  }
  .btn--next::after {
    right: 1.4em;
    width: 6px;
    height: 6px;
  }
}

@media screen and (min-width: 769px) {
  .btn:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
}
.cta {
  position: relative;
  padding: 64px 0;
  margin: 48px 0;
  background: url(../img/cta-bg.webp) center center no-repeat;
  background-size: cover;
}
.cta::before, .cta::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 96px;
  background: url(../img/line-neon.png) center center no-repeat;
  background-size: 100% 100%;
  left: 0;
  z-index: 2;
}
.cta::before {
  top: -48px;
}
.cta::after {
  bottom: -48px;
}
.cta .cta-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.cta .cta-wrapper .cta-filled-btn {
  overflow: visible;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.4), 0 0 30px rgba(0, 170, 255, 0.2), 0 0 60px rgba(255, 0, 255, 0.15), inset 0 0 15px rgba(0, 170, 255, 0.1);
  -webkit-animation: neon-flicker 4s infinite;
          animation: neon-flicker 4s infinite;
  transition: all 0.3s ease;
}
.cta .cta-wrapper .cta-modal-trigger {
  margin: 0;
}
.cta .cta-wrapper .cta-modal-trigger a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  text-decoration: underline;
}

/* ==========================================================================
List
========================================================================== */
.disc-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.2em;
  margin-left: 0.2em;
}
.disc-list li:not(:last-child) {
  margin-bottom: 8px;
}
.disc-list li::marker {
  color: currentcolor;
}

@-webkit-keyframes border-rotate {
  0% {
    --border-angle: 0deg;
  }
  100% {
    --border-angle: 360deg;
  }
}

@keyframes border-rotate {
  0% {
    --border-angle: 0deg;
  }
  100% {
    --border-angle: 360deg;
  }
}
@-webkit-keyframes text-glow-flicker {
  0%, 18%, 22%, 52%, 54%, 100% {
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 8px rgba(102, 204, 255, 0.6), 0 0 16px rgba(255, 102, 255, 0.3);
  }
  19%, 21%, 53% {
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.4), 0 0 4px rgba(102, 204, 255, 0.2);
  }
}
@keyframes text-glow-flicker {
  0%, 18%, 22%, 52%, 54%, 100% {
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 8px rgba(102, 204, 255, 0.6), 0 0 16px rgba(255, 102, 255, 0.3);
  }
  19%, 21%, 53% {
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.4), 0 0 4px rgba(102, 204, 255, 0.2);
  }
}
@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.cta-filled-btn {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding: 0;
  border: none;
  border-radius: 9999px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.7) 0%, rgba(255, 0, 255, 0.5) 40%, rgba(0, 170, 255, 0.6) 60%, rgba(255, 0, 255, 0.7) 100%);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.4), 0 0 40px rgba(255, 0, 255, 0.2), inset 0 0 20px rgba(0, 170, 255, 0.3), inset 0 0 40px rgba(255, 0, 255, 0.15);
  transition: all 0.3s ease;
  z-index: 1;
  overflow: visible;
}
.cta-filled-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  padding: 2px;
  background: conic-gradient(from var(--border-angle), #66ccff, #ff66ff, #66ccff, #ff66ff, #66ccff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-animation: border-rotate 3s linear infinite;
          animation: border-rotate 3s linear infinite;
  filter: drop-shadow(0 0 4px #66ccff) drop-shadow(0 0 8px #ff66ff);
}
.cta-filled-btn a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 48px;
  text-decoration: none;
  text-align: center;
  color: inherit;
  position: relative;
  z-index: 2;
  border-radius: inherit;
}
.cta-filled-btn a span {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
  -webkit-animation: text-glow-flicker 5s infinite;
          animation: text-glow-flicker 5s infinite;
}
@media (max-width: 768px) {
  .cta-filled-btn {
    font-size: 1rem;
  }
  .cta-filled-btn a {
    padding: 14px 36px;
  }
}
@media (max-width: 480px) {
  .cta-filled-btn {
    font-size: 0.9rem;
  }
  .cta-filled-btn a {
    padding: 12px 28px;
  }
}
@media screen and (min-width: 769px) {
  .cta-filled-btn {
    font-size: 2.4rem;
  }
  .cta-filled-btn a {
    padding: 24px 48px;
  }
}
.cta-filled-btn:hover {
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4), 0 0 100px rgba(0, 170, 255, 0.2), inset 0 0 30px rgba(0, 170, 255, 0.4), inset 0 0 50px rgba(255, 0, 255, 0.25);
}
.cta-filled-btn:hover a span {
  -webkit-animation: none;
          animation: none;
  text-shadow: 0 0 6px #fff, 0 0 12px rgba(102, 204, 255, 0.8), 0 0 24px rgba(255, 102, 255, 0.5);
}

.l-main .swiper {
  overflow: visible;
}
.l-main .swiper .swiper-pagination {
  bottom: -32px;
}
.l-main .swiper .swiper-pagination-bullet {
  background: #eee;
}

.modaal-overlay {
  z-index: 99990 !important;
}

.modaal-wrapper {
  z-index: 99999 !important;
}

.modaal-inner-wrapper {
  padding: 80px 20px !important;
}

@media screen and (max-width: 768px) {
  .modaal-content-container {
    padding: 30px 20px;
  }
  .modaal-video-wrap {
    margin: auto 0px !important;
    position: relative;
  }
}
.calendar {
  max-width: 560px;
  margin: 32px auto 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
@media (max-width: 768px) {
  .calendar {
    margin-top: 16px;
    padding: 16px;
  }
}
@media screen and (min-width: 769px) {
  .calendar {
    max-width: 1200px;
  }
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-month {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.calendar-nav {
  font-size: 1.4rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.calendar-nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.calendar-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}

.weekday {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  padding: 4px 0;
  letter-spacing: 0.05em;
}
.weekday.weekday-sun {
  color: #ff6666;
}
.weekday.weekday-sat {
  color: #6699ff;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  overflow: visible;
}

.calendar-cell {
  position: relative;
  min-height: 56px;
  padding: 8px 4px;
  border-radius: 6px;
  transform-origin: center;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
@media (max-width: 768px) {
  .calendar-cell {
    min-height: 48px;
  }
}
.calendar-cell:hover {
  background: rgba(255, 255, 255, 0.04);
}
.calendar-cell.is-today {
  background: rgba(255, 255, 255, 0.1);
}
.calendar-cell.is-empty:hover {
  background: none;
}

@media (hover: hover) and (pointer: fine) {
  .calendar-cell:not(.is-empty):hover,
.calendar-cell:not(.is-empty):focus-within {
    transform: scale(1.4);
    padding: 8px 4px;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    background: #000;
  }
}
@media (hover: none) and (pointer: coarse) {
  .calendar-cell.is-expanded {
    transform: scale(1.4);
    padding: 8px 4px;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    background: #000;
  }
}
.calendar-date {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 2px;
}
@media screen and (min-width: 769px) {
  .calendar-date {
    font-size: 1.4rem;
  }
}
.calendar-cell:nth-child(7n+1) .calendar-date {
  color: #ff6666;
}
.calendar-cell:nth-child(7n) .calendar-date {
  color: #6699ff;
}
.calendar-cell.is-empty .calendar-date {
  display: none;
}

.calendar-cell .venue {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 400;
  color: #000;
  margin-top: 8px;
  background: #fff;
  border-radius: 2px;
  padding: 4px 2px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .calendar-cell .venue {
    font-size: 1.4rem;
  }
}
.calendar-cell .venue.venue--d1-1 {
  background: #c7f5ff;
}
.calendar-cell .venue.venue--d2-1 {
  background: #c7f5ff;
}
.calendar-cell .venue.venue--d2-2 {
  background: #ffddf6;
}
.calendar-cell .venue.venue--d3-1 {
  background: #c7f5ff;
}
.calendar-cell .venue.venue--d3-2 {
  background: #f9ffc9;
}
.calendar-cell .venue.venue--d3-3 {
  background: #ffddf6;
}

.calendar-events {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.calendar-event {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 1px 3px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  transition: opacity 0.15s ease;
}
.calendar-event:nth-child(1) {
  color: #66bbff;
  background: rgba(102, 187, 255, 0.1);
}
.calendar-event:nth-child(2) {
  color: #ff66aa;
  background: rgba(255, 102, 170, 0.1);
}
.calendar-event:nth-child(3) {
  color: #66ffaa;
  background: rgba(102, 255, 170, 0.1);
}
.calendar-event:hover {
  opacity: 0.7;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: auto;
  outline: 0;
}
.modal[aria-hidden=false] {
  display: block;
}
.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.is-open .modal__overlay {
  opacity: 1;
}

.modal__container {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal.is-open .modal__container {
  transform: scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.modal__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.modal__close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #666;
  transition: color 0.2s ease;
}
.modal__close:hover {
  color: #000;
}

.modal__content {
  font-size: 1.4rem;
  line-height: 1.6;
}

/* ==========================================================================
  Key Frame
  ========================================================================== */
.trig {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  perspective: 1000;
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}
@-webkit-keyframes subtle-flicker {
  0%, 92%, 94%, 96%, 100% {
    opacity: 1;
  }
  93%, 95% {
    opacity: 0.8;
  }
}
@keyframes subtle-flicker {
  0%, 92%, 94%, 96%, 100% {
    opacity: 1;
  }
  93%, 95% {
    opacity: 0.8;
  }
}
@-webkit-keyframes random-flicker-1 {
  0%, 18%, 22%, 100% {
    opacity: 1;
  }
  19%, 21% {
    opacity: 0.4;
  }
}
@keyframes random-flicker-1 {
  0%, 18%, 22%, 100% {
    opacity: 1;
  }
  19%, 21% {
    opacity: 0.4;
  }
}
@-webkit-keyframes random-flicker-2 {
  0%, 45%, 47%, 100% {
    opacity: 1;
  }
  46% {
    opacity: 0.5;
  }
}
@keyframes random-flicker-2 {
  0%, 45%, 47%, 100% {
    opacity: 1;
  }
  46% {
    opacity: 0.5;
  }
}
@-webkit-keyframes random-flicker-3 {
  0%, 70%, 72%, 74%, 100% {
    opacity: 1;
  }
  71%, 73% {
    opacity: 0.3;
  }
}
@keyframes random-flicker-3 {
  0%, 70%, 72%, 74%, 100% {
    opacity: 1;
  }
  71%, 73% {
    opacity: 0.3;
  }
}
@-webkit-keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 4px #66ccff, 0 0 11px #66ccff, 0 0 19px #66ccff, 0 0 40px #00aaff, 0 0 80px #00aaff, 0 0 90px #ff00ff, 0 0 100px #ff00ff, 0 0 150px #ff00ff;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.4), 0 0 30px rgba(0, 170, 255, 0.2), 0 0 60px rgba(255, 0, 255, 0.15), inset 0 0 15px rgba(0, 170, 255, 0.5);
    border-color: #66ccff;
  }
  20%, 24%, 55% {
    text-shadow: 0 0 2px rgba(102, 204, 255, 0.5), 0 0 4px rgba(0, 170, 255, 0.3);
    box-shadow: 0 0 4px rgba(0, 170, 255, 0.15), inset 0 0 4px rgba(0, 170, 255, 0.05);
    border-color: rgba(102, 204, 255, 0.8);
  }
}
@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 4px #66ccff, 0 0 11px #66ccff, 0 0 19px #66ccff, 0 0 40px #00aaff, 0 0 80px #00aaff, 0 0 90px #ff00ff, 0 0 100px #ff00ff, 0 0 150px #ff00ff;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.4), 0 0 30px rgba(0, 170, 255, 0.2), 0 0 60px rgba(255, 0, 255, 0.15), inset 0 0 15px rgba(0, 170, 255, 0.5);
    border-color: #66ccff;
  }
  20%, 24%, 55% {
    text-shadow: 0 0 2px rgba(102, 204, 255, 0.5), 0 0 4px rgba(0, 170, 255, 0.3);
    box-shadow: 0 0 4px rgba(0, 170, 255, 0.15), inset 0 0 4px rgba(0, 170, 255, 0.05);
    border-color: rgba(102, 204, 255, 0.8);
  }
}
@-webkit-keyframes KVshapeTop {
  0% {
    top: -30vw;
    transform-origin: top;
    transform: scaleY(0);
  }
  100% {
    top: 0;
    transform-origin: top;
    transform: scaleY(1);
  }
}
@keyframes KVshapeTop {
  0% {
    top: -30vw;
    transform-origin: top;
    transform: scaleY(0);
  }
  100% {
    top: 0;
    transform-origin: top;
    transform: scaleY(1);
  }
}
@-webkit-keyframes KVimgTop {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes KVimgTop {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@-webkit-keyframes KVshapeLeft {
  0% {
    left: -30vw;
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    left: 0;
    transform-origin: left;
    transform: scaleX(1);
  }
}
@keyframes KVshapeLeft {
  0% {
    left: -30vw;
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    left: 0;
    transform-origin: left;
    transform: scaleX(1);
  }
}
@-webkit-keyframes KVimgLeft {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes KVimgLeft {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@-webkit-keyframes KVshapeRight {
  0% {
    right: -50vw;
    transform-origin: right;
    transform: scaleX(0);
  }
  100% {
    right: 0;
    transform-origin: right;
    transform: scaleX(1);
  }
}
@keyframes KVshapeRight {
  0% {
    right: -50vw;
    transform-origin: right;
    transform: scaleX(0);
  }
  100% {
    right: 0;
    transform-origin: right;
    transform: scaleX(1);
  }
}
@-webkit-keyframes KVimgRight {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes KVimgRight {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@-webkit-keyframes KVlttrOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.95;
  }
}
@keyframes KVlttrOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.95;
  }
}
@-webkit-keyframes KVlttrSpace1 {
  0% {
    letter-spacing: 0.4em;
  }
  100% {
    letter-spacing: -0.01em;
  }
}
@keyframes KVlttrSpace1 {
  0% {
    letter-spacing: 0.4em;
  }
  100% {
    letter-spacing: -0.01em;
  }
}
@-webkit-keyframes KVlttrSpace2 {
  0% {
    letter-spacing: 1.01em;
  }
  100% {
    letter-spacing: 0.52em;
  }
}
@keyframes KVlttrSpace2 {
  0% {
    letter-spacing: 1.01em;
  }
  100% {
    letter-spacing: 0.52em;
  }
}
/* ==========================================================================
  Scroll Animation
  ========================================================================== */
.anim {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  perspective: 1000;
}

.anim-fadeout {
  -webkit-animation: fadeIn 0.2s 0.2s both ease-out;
          animation: fadeIn 0.2s 0.2s both ease-out;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  -webkit-animation: fadeIn 0.3s 0.1s both ease-out;
          animation: fadeIn 0.3s 0.1s both ease-out;
}

@-webkit-keyframes fadeIn {
  0% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-fadeinUp {
  opacity: 0;
  filter: blur(10px);
}

.anim-fadeinUp.is-show {
  -webkit-animation: fadeInUp 0.9s 0.2s both ease-out;
          animation: fadeInUp 0.9s 0.2s both ease-out;
}

.anim-fadeinUp.anim-delay2.is-show {
  -webkit-animation: fadeInUp 0.3s 0.3s both ease-out;
          animation: fadeInUp 0.3s 0.3s both ease-out;
}

.anim-fadeinUp.anim-delay3.is-show {
  -webkit-animation: fadeInUp 0.3s 0.4s both ease-out;
          animation: fadeInUp 0.3s 0.4s both ease-out;
}

.anim-fadeinUp.anim-delay4.is-show {
  -webkit-animation: fadeInUp 0.3s 0.5s both ease-out;
          animation: fadeInUp 0.3s 0.5s both ease-out;
}

.anim-fadeinUp.anim-delay5.is-show {
  -webkit-animation: fadeInUp 0.3s 0.6s both ease-out;
          animation: fadeInUp 0.3s 0.6s both ease-out;
}

.anim-fadeinUp.anim-delay6.is-show {
  -webkit-animation: fadeInUp 0.3s 0.7s both ease-out;
          animation: fadeInUp 0.3s 0.7s both ease-out;
}

@-webkit-keyframes fadeInUp {
  0% {
    transform: translate(0, 10px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}

@keyframes fadeInUp {
  0% {
    transform: translate(0, 10px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}
.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  -webkit-animation: slideInL 0.8s 0.2s both ease-out;
          animation: slideInL 0.8s 0.2s both ease-out;
}

@-webkit-keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  -webkit-animation: slideInR 0.8s 0.2s both ease-out;
          animation: slideInR 0.8s 0.2s both ease-out;
}

@-webkit-keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slideout-l.is-out {
  -webkit-animation: slideOutL 1.5s 0.1s both ease-out;
          animation: slideOutL 1.5s 0.1s both ease-out;
}

@-webkit-keyframes slideOutL {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-100vw, 0);
  }
}

@keyframes slideOutL {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-100vw, 0);
  }
}
.anim-slideout-r.is-out {
  -webkit-animation: slideOutR 1.5s 0.1s both ease-out;
          animation: slideOutR 1.5s 0.1s both ease-out;
}

@-webkit-keyframes slideOutR {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(100vw, 0);
  }
}

@keyframes slideOutR {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(100vw, 0);
  }
}
/* ==========================================================================
  Base
  ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  color: #000;
  font-size: 1.6em;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

img {
  width: 100%;
  height: auto;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

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

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

h1, h2, h3, h4, h5, h6, strong {
  font-weight: bold;
}

.l-inner p {
  line-height: 1.4;
}

.notes {
  margin-top: 8px;
  font-size: 84%;
}

.modaal-noscroll {
  padding-right: 15px;
}

.modaal-inner-wrapper {
  padding: 80px 20px !important;
}

@media screen and (min-width: 769px) {
  .modaal-image .modaal-container {
    max-width: 640px;
  }
  .modaal-content-container {
    padding: 5%;
  }
}
@media screen and (max-width: 768px) {
  .modaal-content-container {
    padding: 30px 20px;
  }
  .modaal-video-wrap {
    margin: auto 0px !important;
    position: relative;
  }
}
.l-sec {
  padding: 5vw 0;
}

.l-inner {
  width: 90%;
  margin: 0 auto;
}

body {
  background-color: #050521;
}

.l-wrapper {
  margin: 0 auto;
  overflow: hidden;
}

.l-inner {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  padding: 5px 10px;
  z-index: 3520;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  .header {
    padding: 5px 15px;
  }
}
.header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 95% 120% at 50% 45%, rgba(25, 18, 45, 0.5) 22%, rgba(18, 28, 58, 0.72) 48%, rgba(42, 12, 48, 0.78) 68%, rgba(8, 16, 42, 0.88) 100%);
  mix-blend-mode: multiply;
}
.header .header__logo {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 200px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header__logo a {
  display: block;
}
@media screen and (min-width: 769px) {
  .header .header__logo a {
    transition: all 0.25s ease-out;
  }
  .header .header__logo a:hover {
    opacity: 0.75;
  }
}
.header .header__logo img {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 100px;
  height: auto;
  max-height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.5)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
}
.header .header__logo img.logo-keirin {
  width: 100px;
}
.header .header__logo img.logo-ctc {
  width: 180px;
}
.header .header__logo span {
  display: inline-block;
  vertical-align: baseline;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: left;
  margin-left: 8px;
}
.header .header__menu {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 769px) {
  .header .header__menu {
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 769px) {
  .header .header__menu {
    gap: 10px;
  }
}
.header .header__menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
@media screen and (min-width: 769px) {
  .header .header__menu span {
    width: 32px;
    height: 2px;
  }
}
.header .header__menu.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .header .header__menu.is-open span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
}
.header .header__menu.is-open span:nth-child(2) {
  opacity: 0;
}
.header .header__menu.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .header .header__menu.is-open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
}

.nav-drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: 3500;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.nav-drawer__backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  z-index: 3510;
  width: 100vw;
  max-width: 100%;
  background: rgba(5, 5, 33, 0.97);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.35);
  padding: 84px 0 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 769px) {
  .nav-drawer {
    width: 480px;
  }
}
.nav-drawer.is-open {
  transform: translateX(0);
}

@-webkit-keyframes nav-drawer-heading-neon {
  0%, 100% {
    filter: drop-shadow(0 0 3px rgba(102, 204, 255, 0.55)) drop-shadow(0 0 4px rgba(0, 170, 255, 0.35)) drop-shadow(0 0 3px rgba(255, 102, 255, 0.5)) drop-shadow(0 0 6px rgba(255, 0, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(102, 204, 255, 0.65)) drop-shadow(0 0 8px rgba(0, 170, 255, 0.5)) drop-shadow(0 0 6px rgba(255, 102, 255, 0.45)) drop-shadow(0 0 8px rgba(255, 0, 255, 0.5));
  }
}

@keyframes nav-drawer-heading-neon {
  0%, 100% {
    filter: drop-shadow(0 0 3px rgba(102, 204, 255, 0.55)) drop-shadow(0 0 4px rgba(0, 170, 255, 0.35)) drop-shadow(0 0 3px rgba(255, 102, 255, 0.5)) drop-shadow(0 0 6px rgba(255, 0, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(102, 204, 255, 0.65)) drop-shadow(0 0 8px rgba(0, 170, 255, 0.5)) drop-shadow(0 0 6px rgba(255, 102, 255, 0.45)) drop-shadow(0 0 8px rgba(255, 0, 255, 0.5));
  }
}
.nav-drawer__heading {
  margin: 0 0 8px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Share Tech Mono", monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}
.nav-drawer__heading img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-animation: nav-drawer-heading-neon 2.8s ease-in-out infinite;
          animation: nav-drawer-heading-neon 2.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .nav-drawer__heading img {
    -webkit-animation: none;
            animation: none;
    filter: drop-shadow(0 0 4px rgba(102, 204, 255, 0.65)) drop-shadow(0 0 10px rgba(255, 0, 255, 0.4));
  }
}

.nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0 5%;
}

.nav-drawer__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-drawer__link {
  display: block;
  padding: 24px 8px;
  font-family: "Share Tech Mono", monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-drawer__link:hover, .nav-drawer__link:focus-visible {
  color: #66ccff;
  outline: none;
  background: rgba(255, 255, 255, 0.04);
}

body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

#live,
#point,
#campaign,
#schedule {
  scroll-margin-top: 80px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: url(../img/kv-bg.jpg) center top no-repeat;
  background-size: 100% auto;
  width: 100%;
  min-height: 80svh;
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60svh;
  }
}
@media screen and (max-width: 375px) {
  .hero {
    min-height: 70svh;
  }
}
.hero .hero__bg {
  position: absolute;
  width: 100%;
  height: 80%;
  background: url(../img/hokutoshichisei.png) center top no-repeat;
  background-size: contain;
  right: -30px;
  top: -30px;
  z-index: 1;
}
.hero .hero-inner {
  position: relative;
  width: 100%;
  min-height: 80svh;
}
@media screen and (max-width: 768px) {
  .hero .hero-inner {
    min-height: 60svh;
  }
}
@media screen and (max-width: 375px) {
  .hero .hero-inner {
    min-height: 70svh;
  }
}
.hero .hero-inner .hero__title {
  position: absolute;
  width: 100%;
  height: 30%;
  top: auto;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto auto 0;
  z-index: 3000;
}
@media screen and (min-width: 769px) {
  .hero .hero-inner .hero__title {
    width: 100%;
    height: 30svh;
    right: auto;
  }
}
@media screen and (min-width: 520px) {
  .hero .hero-inner .hero__title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
@media screen and (min-width: 520px) {
  .hero .hero-inner .hero__title img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.hero .hero-inner .hero__catch {
  position: absolute;
  width: 60px;
  height: 240px;
  right: 7.5%;
  top: 70px;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .hero .hero-inner .hero__catch {
    width: 110px;
    height: 440px;
    right: 7.5%;
    top: 90px;
  }
}
.hero .hero-inner .cd-wrapper {
  position: absolute;
  left: -20%;
  z-index: 3;
  top: 80px;
  width: 100%;
  height: 63%;
  background: url(../img/cd-bg.webp) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 375px) {
  .hero .hero-inner .cd-wrapper {
    left: -17%;
  }
}
@media screen and (min-width: 769px) {
  .hero .hero-inner .cd-wrapper {
    max-width: 1100px;
    left: -300px;
  }
}
.hero .hero-inner .cd-inner {
  position: relative;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 15%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .hero-inner .cd-label {
  width: 70%;
  margin: 0 auto 0;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.4;
}
.hero .hero-inner .cd-label img {
  width: 80%;
  margin: 0 auto 0;
}
@media screen and (min-width: 769px) {
  .hero .hero-inner .cd-label {
    width: 100%;
    font-size: 2.2rem;
  }
  .hero .hero-inner .cd-label img {
    width: 60%;
    max-width: 450px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.digit {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  font-size: 4.2rem;
  color: #000;
  text-shadow: 0 0 10px var(--theme-primary-light), 0 0 20px var(--theme-primary), 0 0 40px var(--theme-primary), 0 0 80px var(--theme-primary);
  -webkit-animation: pulse 2s ease-in-out infinite, random-flicker-2 5s infinite;
          animation: pulse 2s ease-in-out infinite, random-flicker-2 5s infinite;
  transition: text-shadow 0.6s ease;
}
@media screen and (min-width: 769px) {
  .digit {
    font-size: 6rem;
  }
}

.separator {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  font-size: 4rem;
  position: relative;
  top: -0.1em;
  margin: 0 0.05em;
  color: #000;
  text-shadow: 0 0 10px var(--theme-primary-light), 0 0 20px var(--theme-primary), 0 0 40px var(--theme-primary), 0 0 80px var(--theme-primary);
  -webkit-animation: subtle-flicker 1s infinite;
          animation: subtle-flicker 1s infinite;
  transition: text-shadow 0.6s ease;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-label {
  font-family: "Share Tech Mono", monospace;
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .countdown-label {
    font-size: 0.65rem;
  }
}
.bnr {
  position: relative;
  padding: 16px 0 48px;
  padding: 0 0;
}
.bnr .live__title {
  margin: 0 auto 16px;
}
.bnr .bnr__swiper .swiper-wrapper {
  padding-left: 8%;
}
.bnr .bnr__swiper .swiper-wrapper .swiper-slide a {
  display: block;
}
.bnr .bnr__swiper .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.bnr .bnr__swiper .swiper-pagination-bullet-active {
  width: 24px !important;
  height: 8px !important;
  border-radius: 4px;
  background-color: #00cfff;
}
@media screen and (min-width: 769px) {
  .bnr .bnr__swiper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.live {
  position: relative;
  padding: 16px 0 48px;
  background: url(../img/campaign-bg-top.webp) center top no-repeat;
  background-size: 120% auto;
  margin-top: -48px;
  padding-top: 48px;
}
.live .live__title {
  margin: 0 auto 32px;
}
.live .live__title p {
  margin-top: 8px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .live .live__title {
    margin-bottom: 16px;
  }
  .live .live__title p {
    font-size: 1.4rem;
  }
}
.live .live__swiper {
  margin-bottom: 48px;
}
.live .live__swiper .swiper-slide {
  text-align: center;
  margin: 0 auto;
}
.live .live__swiper .swiper-slide a {
  display: block;
  width: 60%;
  margin: 0 auto;
}
.live .live__swiper .swiper-slide a .img {
  border-radius: 9999px;
  overflow: hidden;
  border: 8px solid transparent;
  transition: all 0.3s ease, filter 0.3s ease;
}
.live .live__swiper .swiper-slide a .img img {
  display: block;
  width: 100%;
  transition: filter 0.3s ease;
}
.live .live__swiper .swiper-slide a p, .live .live__swiper .swiper-slide a .txt {
  transition: box-shadow 0.3s ease, text-shadow 0.3s ease;
}
.live .live__swiper .swiper-slide a:hover .img {
  border: 8px solid #00cfff;
  box-shadow: 0 0 10px rgba(102, 204, 255, 0.8), 0 0 20px rgba(0, 170, 255, 0.6), 0 0 40px rgba(255, 0, 255, 0.4), inset 0 0 15px rgba(102, 204, 255, 0.15);
}
.live .live__swiper .swiper-slide a:hover .img img {
  filter: brightness(1.05);
}
.live .live__swiper .swiper-slide a:hover p, .live .live__swiper .swiper-slide a:hover .txt {
  background: #00cfff;
  box-shadow: 0 0 8px rgba(102, 204, 255, 0.9), 0 0 16px rgba(0, 170, 255, 0.6), 0 0 24px rgba(255, 0, 255, 0.3);
}
.live .live__swiper .swiper-slide a:hover p span, .live .live__swiper .swiper-slide a:hover .txt span {
  font-weight: bold;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 8px rgba(102, 204, 255, 0.8), 0 0 16px rgba(255, 102, 255, 0.4);
}
.live .live__swiper .swiper-slide p {
  display: inline-block;
  text-align: center;
  margin: 16px auto auto;
  padding: 8px;
  border: 1px solid #00cfff;
}
.live .live__swiper .swiper-slide p span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .live .live__swiper .swiper-slide.swiper-slide-next,
.live .live__swiper .swiper-slide.swiper-slide-prev {
    opacity: 0.5;
  }
}
@media screen and (min-width: 769px) {
  .live .live__swiper {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    cursor: default;
  }
  .live .live__swiper.swiper-grab, .live .live__swiper.swiper-grabbing {
    cursor: default;
  }
  .live .live__swiper .swiper-pagination {
    display: none !important;
  }
  .live .live__swiper .swiper-slide {
    width: auto;
    cursor: default;
  }
  .live .live__swiper .swiper-slide a {
    width: 100%;
    max-width: 220px;
  }
}

.bnr-wrap .bnr {
  display: block;
  color: #ffffff;
  background: #000;
  border: 1px solid #66ccff;
  border-radius: 12px;
  padding: 8px;
  overflow: visible;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.35), 0 0 30px rgba(0, 170, 255, 0.15), 0 0 60px rgba(255, 0, 255, 0.1), inset 0 0 5px rgba(0, 170, 255, 0.15);
  -webkit-animation: neon-flicker 4s infinite;
          animation: neon-flicker 4s infinite;
}
.bnr-wrap .bnr .bnr-img {
  overflow: hidden;
  border-radius: 8px;
}
.bnr-wrap .bnr .bnr-txt {
  margin-top: 16px;
}
.bnr-wrap .bnr .bnr-txt h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  .bnr-wrap .bnr .bnr-txt h4 {
    font-size: 1.8rem;
  }
}
.bnr-wrap .bnr .bnr-txt p {
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .bnr-wrap .bnr .bnr-txt p {
    font-size: 1.6rem;
  }
}

.ougi {
  position: relative;
  padding: 32px 0;
  background: url(../img/ougi-bg.webp) center center no-repeat #243d67;
  background-size: cover;
}
.ougi::before, .ougi::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 12px;
  background: url(../img/line-gpen.webp) center center no-repeat;
  background-size: 120% 100%;
  left: 0;
  z-index: 2;
}
.ougi::before {
  top: -5px;
}
.ougi::after {
  bottom: -5px;
}
.ougi .ougi__title {
  margin: 0 auto 16px;
  padding: 0 7vw;
}
.ougi .ougi__list {
  display: flex;
}
@media screen and (min-width: 769px) {
  .ougi .ougi__list {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .ougi .ougi__list {
    flex-direction: wrap;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .ougi .ougi__list > div {
    width: 45%;
    margin: 0 auto;
  }
}
.ougi .ougi__item .ougi__item-label {
  margin-bottom: 8px;
  text-align: center;
}
.ougi .ougi__item .ougi__item-label img {
  width: auto;
  height: 24px;
}

.cp {
  background: url(../img/campaign-bg-top.webp) center top no-repeat, url(../img/campaign-bg-btm.webp) center bottom no-repeat;
  background-size: 120% auto, 120% auto;
  padding-bottom: 96px;
}
.cp .cp__item {
  margin-top: 16px;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}
.cp .cp__item-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0 0 0;
  padding: 4px 0;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.cp .cp__item-ttl:focus-visible {
  outline: 2px solid #66ccff;
  outline-offset: 2px;
}
.cp .cp__item-ttl .cp__item-ttl-text {
  flex: 1;
  min-width: 0;
}
.cp .cp__item-ttl h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 8px;
  pointer-events: none;
}
.cp .cp__item-ttl p {
  font-size: 1.4rem;
  font-weight: bold;
  pointer-events: none;
}
.cp .cp__item-ttl p span {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 8px;
  color: #000;
  background-color: aqua;
}
.cp .cp__item-ttl .cp__item-ttl-icon {
  flex-shrink: 0;
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  align-self: center;
}
.cp .cp__item-ttl .cp__item-ttl-icon::before, .cp .cp__item-ttl .cp__item-ttl-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.cp .cp__item-ttl .cp__item-ttl-icon::before {
  width: 14px;
  height: 2px;
}
.cp .cp__item-ttl .cp__item-ttl-icon::after {
  width: 2px;
  height: 14px;
}
.cp .cp__item.is-open .cp__item-ttl .cp__item-ttl-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.cp .cp__item-body {
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  transition: max-height 0.4s ease, padding-top 0.4s ease, border-color 0.3s ease;
}
.cp .cp__item.is-open .cp__item-body {
  max-height: 10000px;
  padding-top: 24px;
  border-top-color: #000;
}
.cp .cp__item-img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.cp .cp__item-img .cp__item-present .cp__item-present-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #000;
}
.cp .cp__item-img .cp__item-present .cp__item-present-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.cp .cp__item-img .cp__item-present .cp__item-present-item p {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  .cp .cp__item-img .cp__item-present img {
    display: block;
    max-width: 640px;
    margin: 0 auto;
  }
  .cp .cp__item-img .cp__item-present .cp__item-present-item p {
    text-align: center;
  }
}
.cp .cp__item-txt {
  padding-top: 8px;
}
.cp .cp__item-txt h4 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.cp .cp__item-txt p,
.cp .cp__item-txt ul,
.cp .cp__item-txt ol {
  margin-bottom: 8px;
}
.cp .cp__item-txt .cp__item-txt-block {
  margin-bottom: 16px;
}

.sche {
  background: url(../img/campaign-bg-top.webp) center top no-repeat;
  background-size: 120% auto;
  margin-top: -48px;
  padding-top: 48px;
}
.sche .l-inner.sche-inner {
  width: 95%;
}

.footer {
  padding: 16px;
  background: #070523;
  color: #fff;
}
.footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
.footer .footer__logo {
  display: flex;
}
@media screen and (min-width: 769px) {
  .footer .footer__logo {
    flex-direction: row;
    gap: 20px;
    margin-right: 5%;
  }
  .footer .footer__logo .logo-keirin {
    width: 140px;
  }
  .footer .footer__logo .logo-ctc {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__logo {
    flex-direction: column;
    gap: 10px;
    margin-right: 2.5%;
  }
  .footer .footer__logo .logo-keirin {
    width: 100px;
  }
  .footer .footer__logo .logo-ctc {
    width: 150px;
  }
}
.footer .footer__logo a {
  display: block;
}
.footer .footer__logo span {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-top: 8px;
}
.footer .footer__links {
  flex: 1;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .footer .footer__links {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
  }
}
.footer .footer__links li:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .footer .footer__links li {
    margin-left: 16px;
    margin-bottom: 0;
  }
}
.footer .footer__links li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}
.footer .footer__links li a::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
}
.footer .footer__copy {
  width: 100%;
  font-size: 1rem;
  text-align: center;
}
.footer .footer__copy span {
  display: block;
}
.footer .footer__copy span:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .footer .footer__copy {
    font-size: 0.9rem;
  }
}
.footer .footer__attention {
  width: 100%;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer .footer__attention {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.4;
  }
}