@charset "UTF-8";
/* ==========================================================================
  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%;
}

ul, li {
  list-style: none;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

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

.bgextend {
  position: relative;
}

@keyframes KVshapeTop {
  0% {
    top: -30vw;
    transform-origin: top;
    transform: scaleY(0);
  }
  100% {
    top: 0;
    transform-origin: top;
    transform: scaleY(1);
  }
}
@keyframes KVimgTop {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes KVshapeLeft {
  0% {
    left: -30vw;
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    left: 0;
    transform-origin: left;
    transform: scaleX(1);
  }
}
@keyframes KVimgLeft {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes KVshapeRight {
  0% {
    right: -50vw;
    transform-origin: right;
    transform: scaleX(0);
  }
  100% {
    right: 0;
    transform-origin: right;
    transform: scaleX(1);
  }
}
@keyframes KVimgRight {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes KVlttrOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.95;
  }
}
@keyframes KVlttrSpace1 {
  0% {
    letter-spacing: 0.4em;
  }
  100% {
    letter-spacing: -0.01em;
  }
}
@keyframes KVlttrSpace2 {
  0% {
    letter-spacing: 1.01em;
  }
  100% {
    letter-spacing: 0.52em;
  }
}
/* ==========================================================================
  Scroll Animation
  ========================================================================== */
.anim {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

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

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

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

@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 {
  animation: fadeInUp 0.9s 0.2s both ease-out;
}

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

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

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

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

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

@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 {
  animation: slideInL 0.8s 0.2s both ease-out;
}

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

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

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

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

@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: "DM Sans", "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  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 (min-width: 960px) {
  body {
    min-width: 900px;
  }
}
@media screen and (max-width: 959px) {
  body {
    font-size: 1.4em;
  }
}

body {
  overflow: auto;
  width: 100%;
}

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

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

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

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

.en {
  font-family: "Tank", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.en sup {
  font-size: 70%;
  vertical-align: super;
}
.en sub {
  font-size: 70%;
  vertical-align: sub;
}

.video-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.25s ease-out;
}
a img {
  transition: all 0.25s ease-out;
}

a:hover img {
  opacity: 0.8;
}

.btn {
  display: block;
  margin: 0 auto;
  padding: 20px 15px;
  border-radius: 6px;
  background: #fff;
  color: #000;
}
@media screen and (min-width: 960px) {
  .btn {
    transform: scale(1);
    transition: all 0.25s ease-out;
  }
  .btn:hover {
    transform: scale(1.1);
    background: #e7ff00;
  }
}

.btn-more {
  font-family: "Tank", sans-serif;
  font-weight: 500;
  font-style: normal;
  max-width: 50%;
}

.btn-det {
  font-family: "Tank", sans-serif;
  font-weight: 500;
  font-style: normal;
  max-width: 80%;
}
@media screen and (min-width: 960px) {
  .btn-det {
    max-width: 50px;
  }
}

.btn-en {
  font-family: "Tank", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.4rem;
}
@media screen and (min-width: 960px) {
  .btn-en {
    font-size: 3.6rem;
  }
}

.btn-ja {
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (min-width: 960px) {
  .btn-ja {
    font-size: 2.4rem;
  }
}

.btn-readmore {
  position: relative;
  overflow: hidden;
  max-height: 300px;
  transition: all 0.25s ease-out;
}
.btn-readmore::before {
  content: "READ MORE";
}
.btn-readmore.is-open::before {
  content: "CLOSE";
}

.cnts-readmore.is-open {
  max-height: 100% !important;
  overflow: auto !important;
}
.cnts-readmore.is-open::before {
  content: none !important;
}

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

/* ==========================================================================
  Layout
  ========================================================================== */
.l-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.l-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .l-inner {
    max-width: 95%;
    margin: 0 auto;
  }
}

.l-inner.l-inner-wide {
  max-width: 1280px;
}

.l-inner.l-inner-full {
  width: 100%;
  max-width: inherit;
}

.l-main {
  position: relative;
}

.l-section {
  position: relative;
}
.l-section small {
  font-size: 80%;
}

/* ---------------
Background
------------------ */
.bg-white {
  background-color: #fff;
}
.bg-white .sec-ttl {
  color: #00b5ed;
}

.bg-black {
  background-color: #000;
}
.bg-black .sec-ttl {
  color: #fff;
}

.bg-blue {
  background-color: #00b5ed;
}
.bg-blue .sec-ttl {
  color: #fff;
}

.bg-yellow {
  background-color: #e7ff00;
}
.bg-yellow .sec-ttl {
  color: #000;
}

.bg-lightgray {
  background-color: #e0e0e0;
}
.bg-lightgray .sec-ttl {
  color: #000;
}

.bg-red {
  background-color: #ff4200;
}
.bg-red .sec-ttl {
  color: #fff;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  font-size: 1em;
  color: #000;
  background: #fff;
  box-sizing: border-box;
  z-index: 10000;
}
@media screen and (min-width: 960px) {
  .l-header {
    height: 80px;
  }
}

/* HOME専用 */
#home-header.l-header {
  transition: 0.5s ease-out;
  top: -70px;
}
@media screen and (min-width: 960px) {
  #home-header.l-header {
    top: -80px;
  }
}

#home-header.l-header.is-show {
  top: 0;
}

.l-header .header-inner {
  position: relative;
  padding: 25px 30px;
}
.l-header .header-inner .site-ttl {
  width: auto;
  height: 30px;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .l-header .header-inner .site-ttl {
    width: 400px;
    height: 30px;
  }
}
.l-header .header-inner .site-ttl a {
  display: block;
}
.l-header .header-inner .site-ttl img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 959px) {
  .l-header .header-inner {
    padding: 23px 23px;
  }
  .l-header .header-inner .site-ttl {
    height: 24px;
  }
  .l-header .header-inner .site-ttl a {
    width: 263px;
    height: 24px;
  }
}
@media screen and (max-width: 375px) {
  .l-header .header-inner {
    padding: 23px 15px;
  }
  .l-header .header-inner .site-ttl {
    height: 21.6px;
  }
  .l-header .header-inner .site-ttl a {
    width: 236.7px;
    height: 21.6px;
  }
}

/* Trigger */
.l-header .gnav-trigger {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0 auto auto;
  z-index: 10001;
}
@media screen and (min-width: 960px) {
  .l-header .gnav-trigger {
    display: none;
  }
}
.l-header .gnav-trigger .lines {
  position: relative;
}
.l-header .gnav-trigger .lines span {
  position: absolute;
  z-index: 2;
  background: #00b5ed;
  left: 15px;
  transition: all 0.25s ease-out;
  height: 2px;
}
.l-header .gnav-trigger .lines span:nth-child(1) {
  width: 30px;
  top: 18px;
}
.l-header .gnav-trigger .lines span:nth-child(2) {
  width: 30px;
  top: 28px;
}
.l-header .gnav-trigger .lines span:nth-child(3) {
  width: 30px;
  top: 38px;
}
.l-header .gnav-trigger.is-active .lines span:nth-child(1) {
  width: 30px;
  top: 30px;
  transform: rotate(-45deg);
}
.l-header .gnav-trigger.is-active .lines span:nth-child(2) {
  width: 0;
  top: 30px;
  transform: rotate(45deg);
}
.l-header .gnav-trigger.is-active .lines span:nth-child(3) {
  width: 30px;
  top: 30px;
  transform: rotate(45deg);
}

@media screen and (max-width: 959px) {
  .l-header .gnav {
    position: fixed;
    opacity: 0;
    top: 70px;
    bottom: auto;
    left: auto;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    margin: auto;
    padding: 0 0;
    transition: all 0.5s ease-out;
  }
  .l-header .gnav .gnav-inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 2.5% 15vh;
    overflow-y: auto;
  }
  .l-header .gnav .gnav-menu {
    position: relative;
    width: 100%;
    margin: 0 0;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #00b5ed;
  }
  .l-header .gnav .gnav-menu li {
    overflow: visible;
    border-bottom: 1px solid #00b5ed;
    text-align: center;
    margin: 0;
  }
  .l-header .gnav .gnav-menu li a {
    display: block;
    padding: 15px 0;
    color: #000;
    text-align: center;
    font-family: "Tank", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 3rem;
  }
  .l-header .gnav .gnav-menu li a small {
    display: block;
    font-size: 45%;
    font-weight: bold;
    margin-top: 5px;
    font-family: "DM Sans", "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    font-weight: 400;
  }
  .l-header .gnav h4.sns-ttl {
    color: #fff;
    padding: 15px 0 0;
    background: #00b5ed;
    text-align: center;
  }
  .l-header .gnav .sns {
    display: flex;
    justify-content: center;
    gap: 0 30px;
    padding: 10px 0 15px;
    background: #00b5ed;
  }
  .l-header .gnav .sns li {
    width: 30px;
    height: 30px;
  }
  .l-header .gnav.is-active {
    display: block;
    right: 0;
    opacity: 1;
  }
  .l-header .gnav-matches-sub {
    position: relative;
    width: 100%;
    height: 120px;
    padding-bottom: 10px;
    opacity: 1;
  }
  .l-header .gnav-matches-sub.is-active {
    opacity: 1;
  }
  .l-header .gnav-matches-sub .submenu-list {
    height: 120px;
  }
  .l-header .gnav-matches-sub .submenu-list li {
    width: auto;
    height: 130px;
    display: flex;
    align-items: flex-start;
    border: none;
  }
  .l-header .gnav-matches-sub .submenu-list li a {
    min-width: 140px;
    padding: 5px 10px;
    position: relative;
    display: block;
    background: #f5f5f5;
    border-radius: 4px;
    font-family: "Tank", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.date {
    font-size: 2.4rem;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.date i {
    font-size: 75%;
    padding-left: 5px;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag {
    margin-top: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10%;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag::before {
    content: "v";
    position: absolute;
    display: block;
    width: 1em;
    height: 1em;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 14px;
    color: #666;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i {
    position: relative;
    width: 45%;
    font-size: 1.6rem;
    text-align: center;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i::before {
    content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 5px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    vertical-align: middle;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.fij::before {
    background-image: url(../images/common/flags/FIJ.png);
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.sam::before {
    background-image: url(../images/common/flags/SAM.png);
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.tga::before {
    background-image: url(../images/common/flags/TGA.png);
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.can::before {
    background-image: url(../images/common/flags/CAN.png);
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.jpn::before {
    background-image: url(../images/common/flags/JPN.png);
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.usa::before {
    background-image: url(../images/common/flags/USA.png);
  }
  .l-header .gnav-teams-sub {
    position: relative;
    width: 100%;
    opacity: 1;
  }
  .l-header .gnav-teams-sub.is-active {
    opacity: 1;
  }
  .l-header .gnav-teams-sub .submenu-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3%;
    padding: 0 0 2%;
  }
  .l-header .gnav-teams-sub .submenu-list li {
    width: 30%;
    display: flex;
    align-items: center;
    border: none;
    margin-bottom: 3%;
  }
  .l-header .gnav-teams-sub .submenu-list li a {
    position: relative;
    display: block;
    width: 100%;
    background: url(../images/common/bg-pnc.webp) center center;
    background-size: cover;
    font-family: "Tank", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 2rem;
    padding: 10px 5px;
    transition: all 0.25s ease-out;
    border: none;
    border-radius: 4px;
  }
  .l-header .gnav-teams-sub .submenu-list li a i {
    white-space: nowrap;
  }
  .l-header .gnav-teams-sub .submenu-list li a i::before {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    vertical-align: middle;
    margin-right: 5px;
  }
  .l-header .gnav-teams-sub .submenu-list li a i.fij::before {
    background-image: url(../images/common/flags/FIJ.png);
  }
  .l-header .gnav-teams-sub .submenu-list li a i.sam::before {
    background-image: url(../images/common/flags/SAM.png);
  }
  .l-header .gnav-teams-sub .submenu-list li a i.tga::before {
    background-image: url(../images/common/flags/TGA.png);
  }
  .l-header .gnav-teams-sub .submenu-list li a i.can::before {
    background-image: url(../images/common/flags/CAN.png);
  }
  .l-header .gnav-teams-sub .submenu-list li a i.jpn::before {
    background-image: url(../images/common/flags/JPN.png);
  }
  .l-header .gnav-teams-sub .submenu-list li a i.usa::before {
    background-image: url(../images/common/flags/USA.png);
  }
}
@media screen and (min-width: 960px) {
  .l-header .gnav {
    display: block;
    position: absolute;
    opacity: 1;
    left: 450px;
    top: 0;
    background: #fff;
    width: calc(100% - 450px);
    height: 70px;
    margin: auto;
    padding: 0 0;
    transition: all 0.5s ease-out;
  }
  .l-header .gnav .gnav-inner {
    position: relative;
    padding: 8px 5% 5px 0;
  }
  .l-header .gnav .gnav-menu {
    position: relative;
    width: 100%;
    margin: 0 0;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.5vw;
  }
  .l-header .gnav .gnav-menu li {
    overflow: visible;
    text-align: center;
    margin: 0;
  }
  .l-header .gnav .gnav-menu li a {
    display: block;
    padding: 10px 1vw;
    color: #000;
    text-align: center;
    font-family: "Tank", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2.5rem;
    background: #fff;
    border-radius: 4px;
  }
  .l-header .gnav .gnav-menu li a small {
    display: block;
    font-size: 45%;
    font-weight: bold;
    margin-top: 5px;
    font-family: "DM Sans", "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
  }
  .l-header .gnav .gnav-menu li a:hover {
    background: #e7ff00;
  }
  .l-header .gnav h4.sns-ttl {
    display: none;
  }
  .l-header .gnav .sns {
    display: none;
  }
  .l-header .gnav.is-active {
    display: block;
    right: 0;
    opacity: 1;
  }
  .l-header .gnav-matches-sub {
    position: absolute;
    z-index: -1;
    width: 100vw;
    height: 140px;
    left: -450px;
    opacity: 0;
    top: -140px;
    transition: all 0.5s ease-out;
    background: #fff;
    border-top: 1px solid #00b5ed;
  }
  .l-header .gnav-matches-sub.is-active {
    opacity: 1;
    top: 70px;
  }
  .l-header .gnav-matches-sub .submenu-list {
    height: 140px;
  }
  .l-header .gnav-matches-sub .submenu-list li {
    width: auto;
    height: 140px;
    display: flex;
    align-items: center;
  }
  .l-header .gnav-matches-sub .submenu-list li a {
    min-width: 220px;
    position: relative;
    display: block;
    background: #f5f5f5;
    font-family: "Tank", sans-serif;
    font-weight: 500;
    font-style: normal;
    white-space: nowrap;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.date i {
    font-size: 75%;
    padding-left: 5px;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag {
    margin-top: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10%;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag::before {
    content: "v";
    position: absolute;
    display: block;
    width: 1em;
    height: 1em;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 14px;
    color: #666;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i {
    position: relative;
    width: 45%;
    font-size: 3rem;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i::before, .l-header .gnav-matches-sub .submenu-list li a span.flag i::after {
    content: "";
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    vertical-align: middle;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i::before {
    margin-right: 5px;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i::after {
    margin-left: 5px;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.home {
    text-align: right;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.away {
    text-align: left;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.home::before {
    content: none;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.away::after {
    content: none;
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.fij::before, .l-header .gnav-matches-sub .submenu-list li a span.flag i.fij::after {
    background-image: url(../images/common/flags/FIJ.png);
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.sam::before, .l-header .gnav-matches-sub .submenu-list li a span.flag i.sam::after {
    background-image: url(../images/common/flags/SAM.png);
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.tga::before, .l-header .gnav-matches-sub .submenu-list li a span.flag i.tga::after {
    background-image: url(../images/common/flags/TGA.png);
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.can::before, .l-header .gnav-matches-sub .submenu-list li a span.flag i.can::after {
    background-image: url(../images/common/flags/CAN.png);
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.jpn::before, .l-header .gnav-matches-sub .submenu-list li a span.flag i.jpn::after {
    background-image: url(../images/common/flags/JPN.png);
  }
  .l-header .gnav-matches-sub .submenu-list li a span.flag i.usa::before, .l-header .gnav-matches-sub .submenu-list li a span.flag i.usa::after {
    background-image: url(../images/common/flags/USA.png);
  }
  .l-header .gnav-teams-sub {
    position: absolute;
    z-index: -1;
    width: 100vw;
    height: 140px;
    left: -450px;
    opacity: 0;
    top: -140px;
    transition: all 0.5s ease-out;
    background: #fff;
    border-top: 1px solid #00b5ed;
  }
  .l-header .gnav-teams-sub.is-active {
    opacity: 1;
    top: 70px;
  }
  .l-header .gnav-teams-sub .submenu-list {
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
  }
  .l-header .gnav-teams-sub .submenu-list li {
    width: auto;
    height: 140px;
    display: flex;
    align-items: center;
  }
  .l-header .gnav-teams-sub .submenu-list li a {
    position: relative;
    display: block;
    background: url(../images/common/bg-pnc.webp) center center;
    background-size: cover;
    font-family: "Tank", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 2.6vw;
    padding: 10px 20px;
    transition: all 0.25s ease-out;
  }
  .l-header .gnav-teams-sub .submenu-list li a:hover {
    color: #000;
  }
  .l-header .gnav-teams-sub .submenu-list li a i::before {
    content: "";
    display: inline-block;
    width: 2.6vw;
    height: 2.6vw;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    vertical-align: middle;
    margin-right: 10px;
  }
  .l-header .gnav-teams-sub .submenu-list li a i.fij::before {
    background-image: url(../images/common/flags/FIJ.png);
  }
  .l-header .gnav-teams-sub .submenu-list li a i.sam::before {
    background-image: url(../images/common/flags/SAM.png);
  }
  .l-header .gnav-teams-sub .submenu-list li a i.tga::before {
    background-image: url(../images/common/flags/TGA.png);
  }
  .l-header .gnav-teams-sub .submenu-list li a i.can::before {
    background-image: url(../images/common/flags/CAN.png);
  }
  .l-header .gnav-teams-sub .submenu-list li a i.jpn::before {
    background-image: url(../images/common/flags/JPN.png);
  }
  .l-header .gnav-teams-sub .submenu-list li a i.usa::before {
    background-image: url(../images/common/flags/USA.png);
  }
}
@media screen and (min-width: 1080px) {
  .l-header .gnav .gnav-menu {
    gap: 2vw;
  }
  .l-header .gnav .gnav-menu li a {
    padding: 10px 15px;
    font-family: "Tank", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2.5rem;
  }
}
.l-footer {
  margin: 0;
  background: #00b5ed;
  color: #fff;
  padding: 40px 0 calc(80px + 5%);
}
.l-footer .footer-inner {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
}
.l-footer .footer-inner .foot-logo {
  width: 15%;
  max-width: 200px;
  margin: 0 auto 30px;
}
.l-footer .footer-inner .foot-bnr {
  display: flex;
  flex-direction: column;
  margin: 0 0 40px;
  padding: 0 5%;
}
.l-footer .footer-inner .foot-bnr li {
  margin-bottom: 20px;
}
.l-footer .footer-inner .foot-bnr li:last-child {
  margin-bottom: 0;
}
.l-footer .footer-inner .foot-bnr li.bnr-brandsite {
  text-align: center;
  position: relative;
  border: 2px solid #fff;
}
.l-footer .footer-inner .foot-bnr li.bnr-brandsite a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.l-footer .footer-inner .foot-bnr li.bnr-brandsite span, .l-footer .footer-inner .foot-bnr li.bnr-brandsite i {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  font-style: italic;
}
.l-footer .footer-inner .foot-bnr li.bnr-brandsite::before {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto auto auto 0;
  width: 12px;
  height: 12px;
  background: url(../images/common/ico-arrow.svg) center center no-repeat;
  background-size: contain;
  z-index: 1;
}
.l-footer .footer-inner .foot-sns h4 {
  text-align: center;
  margin-bottom: 15px;
}
.l-footer .footer-inner .sns {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .l-footer .footer-inner .sns {
    padding: 0 15%;
  }
}
.l-footer .footer-inner .sns li {
  width: 15%;
  max-width: 30px;
  margin: 0 5%;
}
.l-footer .footer-inner .sns li a {
  display: block;
}
.l-footer .footer-inner .copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 1rem;
  color: #fff;
}

@media screen and (min-width: 960px) {
  .l-footer {
    padding: 50px 0 100px;
  }
  .l-footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5% 15px;
  }
  .l-footer .footer-inner .foot-logo {
    width: 15%;
    max-width: 130px;
    margin: 0 auto 0 0;
  }
  .l-footer .footer-inner .foot-logo a {
    display: block;
  }
  .l-footer .footer-inner .foot-bnr {
    width: 70%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }
  .l-footer .footer-inner .foot-bnr li {
    width: 31%;
    height: 4.7vw;
    margin-bottom: 0;
  }
  .l-footer .footer-inner .foot-bnr li.bnr-brandsite a {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .l-footer .footer-inner .foot-bnr li.bnr-brandsite a span, .l-footer .footer-inner .foot-bnr li.bnr-brandsite a i {
    font-size: 1.2vw;
  }
  .l-footer .footer-inner .foot-bnr li.bnr-brandsite a:hover {
    background: #fff;
    text-decoration: none;
  }
  .l-footer .footer-inner .foot-bnr li.bnr-brandsite a:hover span, .l-footer .footer-inner .foot-bnr li.bnr-brandsite a:hover i {
    color: #000;
  }
  .l-footer .footer-inner .foot-bnr li.bnr-brandsite a:hover::before {
    background: url(../images/common/ico-arrow.svg) center center no-repeat;
    filter: brightness(0) invert(1);
  }
  .l-footer .footer-inner .foot-sns h4 {
    margin-bottom: 15px;
  }
  .l-footer .footer-inner .sns {
    flex: 1;
    justify-content: center;
    padding: 0 0 15px;
  }
  .l-footer .footer-inner .sns li {
    width: 30px;
    margin: 0 1.2vw;
  }
  .l-footer .footer-inner .sns li a {
    display: block;
  }
  .l-footer .footer-inner .copyright {
    width: 100%;
    text-align: center;
    margin: 15px 105px 0 0;
    padding: 0;
    font-size: 1.1rem;
  }
}
.pagetop {
  position: fixed;
  right: 10px;
  width: 55px;
  height: 55px;
  background: rgba(102, 102, 102, 0.5) no-repeat;
}
.pagetop a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 25px;
  height: 25px;
  margin: auto;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077";
  font-size: 25px;
  text-align: center;
}

/* ---------------
Loading
------------------ */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #00b5ed;
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 99999;
}
#loading.is-active {
  display: flex;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.modaal-noscroll {
  padding-right: 15px;
}

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

@media screen and (min-width: 960px) {
  .modaal-container {
    max-width: 640px;
  }

  .modaal-content-container {
    padding: 5%;
  }
}
@media screen and (max-width: 959px) {
  .modaal-content-container {
    padding: 30px 20px;
  }

  .modaal-video-wrap {
    margin: auto 0px !important;
    position: relative;
  }
}
@keyframes rotate-ring {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse-ring {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}
@keyframes subtle-flicker {
  0%, 92%, 94%, 96%, 100% {
    opacity: 1;
  }
  93%, 95% {
    opacity: 0.8;
  }
}
@keyframes random-flicker-1 {
  0%, 18%, 22%, 100% {
    opacity: 1;
  }
  19%, 21% {
    opacity: 0.4;
  }
}
@keyframes random-flicker-2 {
  0%, 45%, 47%, 100% {
    opacity: 1;
  }
  46% {
    opacity: 0.5;
  }
}
@keyframes random-flicker-3 {
  0%, 70%, 72%, 74%, 100% {
    opacity: 1;
  }
  71%, 73% {
    opacity: 0.3;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #050521;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Share Tech Mono", monospace;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 20px;
  width: 100%;
  transition: all 0.6s ease;
}

.container[data-theme=theme-3h] {
  --theme-primary: #6666ff;
  --theme-primary-light: #9999ff;
  --theme-secondary: #cc66ff;
  --theme-secondary-light: #dd99ff;
  --ring-outer-speed: 20s;
  --ring-inner-speed: 15s;
  --ring-dots-speed: 30s;
  --pulse-ring-speed: 3s;
}

.container[data-theme=theme-1h] {
  --theme-primary: #cc66ff;
  --theme-primary-light: #dd99ff;
  --theme-secondary: #ffdd00;
  --theme-secondary-light: #ffee66;
  --ring-outer-speed: 10s;
  --ring-inner-speed: 7.5s;
  --ring-dots-speed: 15s;
  --pulse-ring-speed: 1.5s;
}

.container[data-theme=theme-30m] {
  --theme-primary: #ff8800;
  --theme-primary-light: #ffaa44;
  --theme-secondary: #ff2222;
  --theme-secondary-light: #ff6666;
  --ring-outer-speed: 6.6666666667s;
  --ring-inner-speed: 5s;
  --ring-dots-speed: 10s;
  --pulse-ring-speed: 1s;
}

.title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  color: var(--theme-secondary-light);
  text-shadow: 0 0 5px var(--theme-secondary-light), 0 0 10px var(--theme-secondary), 0 0 20px var(--theme-secondary);
  animation: random-flicker-3 6s infinite;
  transition: color 0.6s ease, text-shadow 0.6s ease;
}
@media (max-width: 768px) {
  .title {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 0.6rem;
    margin-bottom: 6px;
  }
}

.hud-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .hud-container {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 480px) {
  .hud-container {
    width: 260px;
    height: 260px;
  }
}

.hud-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.hud-ring-outer {
  width: 100%;
  height: 100%;
  animation: rotate-ring var(--ring-outer-speed) linear infinite;
  background: linear-gradient(#050521, #050521) padding-box, conic-gradient(from 0deg, var(--theme-primary) 0deg, var(--theme-secondary) 60deg, transparent 120deg, transparent 240deg, var(--theme-primary) 300deg, var(--theme-primary) 360deg) border-box;
  border: 3px solid transparent;
  filter: drop-shadow(0 0 8px var(--theme-primary));
  transition: filter 0.6s ease;
}

.hud-ring-inner {
  width: 92%;
  height: 92%;
  animation: rotate-ring var(--ring-inner-speed) linear infinite reverse;
  background: linear-gradient(#050521, #050521) padding-box, conic-gradient(from 180deg, var(--theme-secondary) 0deg, var(--theme-primary) 90deg, transparent 180deg, transparent 270deg, var(--theme-secondary) 360deg) border-box;
  border: 2px solid transparent;
  filter: drop-shadow(0 0 6px var(--theme-secondary));
  transition: filter 0.6s ease;
}

.hud-ring-glow {
  width: 88%;
  height: 88%;
  border: 1px solid transparent;
  animation: pulse-ring var(--pulse-ring-speed) ease-in-out infinite;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.03), 0 0 20px rgba(255, 255, 255, 0.05);
}

.hud-dots {
  position: absolute;
  width: 96%;
  height: 96%;
  border-radius: 50%;
  animation: rotate-ring var(--ring-dots-speed) linear infinite;
}
.hud-dots::before, .hud-dots::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--theme-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--theme-primary), 0 0 20px var(--theme-primary);
}
.hud-dots::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hud-dots::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--theme-secondary);
  box-shadow: 0 0 10px var(--theme-secondary), 0 0 20px var(--theme-secondary);
}

.countdown-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.digit {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 4.5rem;
  color: #fff;
  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);
  animation: pulse 2s ease-in-out infinite, random-flicker-2 5s infinite;
  transition: text-shadow 0.6s ease;
}
@media (max-width: 768px) {
  .digit {
    font-size: 3.2rem;
  }
}
@media (max-width: 480px) {
  .digit {
    font-size: 2.6rem;
  }
}

.separator {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-size: 3.5rem;
  position: relative;
  top: -0.1em;
  margin: 0 0.05em;
  color: #fff;
  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);
  animation: subtle-flicker 1s infinite;
  transition: text-shadow 0.6s ease;
}
@media (max-width: 768px) {
  .separator {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .separator {
    font-size: 2rem;
  }
}

.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;
  }
}

.button-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .button-wrapper {
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.time-btn {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.85rem;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--theme-primary-light);
  color: var(--theme-primary-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px var(--theme-primary);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .time-btn {
    font-size: 0.75rem;
    padding: 10px 18px;
  }
}
.time-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.1);
}
.time-btn.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--theme-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.15);
}

@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.1);
    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.4);
  }
}
.cta-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cta-wrapper {
    margin-top: 30px;
  }
}

.cta-neon-btn {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding: 18px 48px;
  background: transparent;
  border: 2px solid #66ccff;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  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.1);
  animation: neon-flicker 4s infinite;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .cta-neon-btn {
    font-size: 1rem;
    padding: 14px 36px;
  }
}
@media (max-width: 480px) {
  .cta-neon-btn {
    font-size: 0.9rem;
    padding: 12px 28px;
  }
}
.cta-neon-btn:hover {
  text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #00aaff, 0 0 82px #00aaff, 0 0 92px #00aaff, 0 0 102px #ff00ff, 0 0 151px #ff00ff;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.6), 0 0 40px rgba(0, 170, 255, 0.4), 0 0 80px rgba(255, 0, 255, 0.3), inset 0 0 25px rgba(0, 170, 255, 0.2);
  border-color: #fff;
  animation: none;
}

@keyframes border-rotate {
  0% {
    --border-angle: 0deg;
  }
  100% {
    --border-angle: 360deg;
  }
}
@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;
  
  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;
  animation: border-rotate 3s linear infinite;
  filter: drop-shadow(0 0 4px #66ccff) drop-shadow(0 0 8px #ff66ff);
}
.cta-filled-btn a {
  position: relative;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px 48px;
}
.cta-filled-btn span {
  position: relative;
  z-index: 2;
  font-size: 120%;
  font-weight: bold;
  animation: text-glow-flicker 5s infinite;
}
@media (max-width: 768px) {
  .cta-filled-btn {
    font-size: 1rem;
    padding: 14px 36px;
  }
}
@media (max-width: 480px) {
  .cta-filled-btn {
    font-size: 0.9rem;
    padding: 12px 28px;
  }
}
.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 span {
  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);
}

.calendar {
  max-width: 560px;
  margin: 60px 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: 40px;
    padding: 16px;
  }
}

.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.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.calendar-nav {
  font-family: "Share Tech Mono", monospace;
  font-size: 1rem;
  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-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}

.weekday {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.7rem;
  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;
}

.calendar-cell {
  min-height: 56px;
  padding: 4px;
  border-radius: 6px;
  transition: background 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;
}

.calendar-date {
  font-family: "Share Tech Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 2px;
}
.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-events {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.calendar-event {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.55rem;
  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;
}

/*# sourceMappingURL=style.css.map */
