* {
  box-sizing: border-box;
}

body {
  background-color: #F0F0F8;
  color: #333;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.46;
  letter-spacing: 0.04em;
  text-align: center;
}

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

a {
  transition: 0.25s;
}

a:hover, a:active, a:focus {
  transition: 0.35s;
}

a:hover img, a:active img, a:focus img {
  opacity: 0.7 !important;
  filter: alpha(opacity=70) !important;
  transition: 0.35s;
}

strong {
  font-weight: bold;
}

.f-white {
  color: #FFF !important;
}

.f-red {
  color: #d20000;
}

.f-sat {
  color: #0f00b8;
}

.f-sun {
  color: #b8000f;
}

.sp {
  display: none;
}

.tb {
  display: none;
}

.pc {
  display: inline;
}

@media (max-width: 960px) {
  .sp {
    display: inline;
  }
  .tb {
    display: inline;
  }
  .pc {
    display: none;
  }
}
@media (max-width: 768px) {
  .sp {
    display: inline;
  }
  .tb {
    display: none;
  }
  .pc {
    display: none;
  }
}
.hero {
  background: #0c3178;
  color: #fff;
  padding: 16px 0px 16px;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero__title {
  margin-bottom: 16px;
}
.hero__title img {
  width: 88%;
  max-width: 1280px;
  margin: 0 auto;
}
.hero__subtitle {
  display: block;
  width: 96%;
  margin: 0 auto;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
}
.hero__subtitle .f-sml {
  font-size: clamp(14px, 2vw, 20px);
}
.hero__subtitle .sub {
  font-size: clamp(18px, 2.4vw, 28px);
}
.hero__catch {
  display: block;
  width: 96%;
  margin: 0 auto;
  font-size: clamp(16px, 2vw, 18px);
}

nav {
  padding: 12px 0;
  background: #2c6eb5;
  border-bottom: 2px solid #d32c2a;
}
@media (min-width: 960px) {
  nav {
    padding: 20px 0;
  }
}
nav .menu {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
nav .menu li {
  width: 33.3333333333%;
  text-align: center;
}
nav .menu li a img {
  display: inline;
  width: auto;
  height: 6.4vw;
  transition: 0.4s;
}
@media (min-width: 960px) {
  nav .menu li a img {
    height: 48px;
  }
}
nav .menu li a img:hover {
  transition: 0.4s;
}
nav .menu2 li {
  width: 50%;
  text-align: center;
}

.section {
  padding: 64px 20px 88px;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 40px 12px 64px;
  }
}
.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.section__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 24px;
  color: #2c6eb5;
}
.section__title img {
  display: block;
  margin: 0 auto;
  height: 60px;
  width: auto;
}
@media (max-width: 768px) {
  .section__title img {
    height: 8vw;
  }
}
.section__subtitle {
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 500;
  margin-bottom: 12px;
  color: #d32c2a;
}
.section__subtxt {
  font-size: clamp(14px, 2.4vw, 16px);
  margin-bottom: 16px;
}
.section__lead {
  margin-bottom: 40px;
}
.section--movie {
  color: #FFF;
  padding: 128px 20px 160px;
}
.section--movie--background {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
  background-image: repeating-linear-gradient(-45deg, #181818, #181818 10px, transparent 0, transparent 20px);
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(100% calc(100% - 100px), 0 100%, 0 100px, 100% 0);
          clip-path: polygon(100% calc(100% - 100px), 0 100%, 0 100px, 100% 0);
}
.section--movie--background2 {
  -webkit-clip-path: polygon(100% 100%, 0 100%, 0 100px, 100% 0);
          clip-path: polygon(100% 100%, 0 100%, 0 100px, 100% 0);
}
.t-line {
  position: relative;
  margin-bottom: 24px;
}
.t-line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #EEEEEE 0%, #2c6eb5 45%, #2c6eb5 55%, #EEEEEE 100%);
  top: -12px;
  left: 0;
}

.schedule-cards {
  width: 98%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  filter: drop-shadow(0 0 0.4rem rgba(0, 0, 0, 0.2));
  padding: 0 4px 1em;
}
@media (max-width: 768px) {
  .schedule-cards {
    grid-template-columns: 1fr;
  }
}

.schedule-card {
  background: #fff;
  padding: 0 0 8px;
  position: relative;
}
.schedule-card__date {
  background: #2c6eb5;
  color: #FFF;
  padding: 10px 0 12px;
  font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .schedule-card__date {
    padding: 8px 0 10px;
  }
}
.schedule-card__date span.sml {
  font-size: clamp(12px, 1vw, 18px);
}
.schedule-card__teams {
  width: 94%;
  max-width: 450px;
  margin: 4px auto 8px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.schedule-card__teams .team {
  width: 100%;
  max-width: 240px;
}
.schedule-card__teams .team img {
  width: 240px;
}
.schedule-card__teams .team p {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 700;
}
.schedule-card__teams .t-vs {
  display: block;
  font-size: clamp(18px, 1.8vw, 24px);
  margin: 0 6%;
}
.schedule-card__place {
  display: inline-block;
  background: #E0E0E0;
  background: #e8f0fe;
  border: 1px solid #93bce8;
  font-size: clamp(12px, 1vw, 16px);
  padding: 2px 12px;
  margin-bottom: 4px;
}
.schedule-card__time {
  font-size: clamp(16px, 1.6vw, 28px);
  font-weight: 600;
}
.schedule-card__att {
  color: #d32c2a;
  font-size: clamp(14px, 1.5vw, 18px);
}
.schedule-card__title {
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 700;
  margin-bottom: 12px;
}
.schedule-card__text {
  padding: 0 0.5rem;
  font-size: clamp(14px, 2vw, 15px);
}

.end {
  opacity: 0.4;
}

.t-movie {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 1em;
}

.youtube-wrapper {
  margin: 0em auto;
  width: 100%;
  max-width: 960px;
}

.youtube-inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.youtube-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 960px;
  height: 100%;
  border: 1px solid #555;
}

.present__img {
  display: block;
  width: 90%;
  max-width: 800px;
  margin: 0px auto 36px;
}
.present__img img {
  border: 1px solid #11397f;
}
.present__ttl {
  font-size: clamp(16px, 1.46vw, 22px);
  line-height: 1.52;
  margin: 16px auto 0;
  color: #d32c2a;
}
.present__text {
  display: inline-block;
  line-height: 1.46;
  margin: 20px auto 20px;
  text-align: left;
  font-size: clamp(14px, 1.4vw, 20px);
}
.present__button {
  display: inline-block;
  background: #d32c2a;
  border: 1px solid #d32c2a;
  border-radius: 1000px;
  color: #FFF;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  margin: 0 auto 8px;
  padding: 14px 48px;
  text-decoration: none;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.5));
}
.present__button:hover {
  background: #FFF;
  border: 1px solid #2c6eb5;
  color: #2c6eb5;
  filter: none;
}
.present__button.none {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  pointer-events: none;
  background: #C8C8C8;
  border-color: #C8C8C8;
  filter: none;
}

@media (min-width: 960px) {
  footer {
    padding: 40px 0;
    background: #2c6eb5;
    color: #FFF;
  }
  footer a {
    color: #FFF;
    line-height: 2;
  }
}

.fs-03 {
  font-size: 0.3em;
}
.fs-04 {
  font-size: 0.4em;
}
.fs-05 {
  font-size: 0.5em;
}
.fs-06 {
  font-size: 0.6em;
}
.fs-07 {
  font-size: 0.7em;
}
.fs-08 {
  font-size: 0.8em;
}
.fs-09 {
  font-size: 0.9em;
}
.fs-11 {
  font-size: 1.1em;
}
.fs-12 {
  font-size: 1.2em;
}
.fs-13 {
  font-size: 1.3em;
}
.fs-14 {
  font-size: 1.4em;
}
.fs-15 {
  font-size: 1.5em;
}
.fs-16 {
  font-size: 1.6em;
}
.fs-17 {
  font-size: 1.7em;
}
.fs-18 {
  font-size: 1.8em;
}
.fs-19 {
  font-size: 1.9em;
}
.fs-20 {
  font-size: 2em;
}
.fs-22 {
  font-size: 2.2em;
}
.fs-24 {
  font-size: 2.4em;
}
.fs-26 {
  font-size: 2.6em;
}
.fs-28 {
  font-size: 2.8em;
}
.fs-30 {
  font-size: 3em;
}
.fs-32 {
  font-size: 3.2em;
}
.fs-36 {
  font-size: 3.6em;
}
.fs-50p {
  font-size: 50%;
}
.fs-55p {
  font-size: 55%;
}
.fs-60p {
  font-size: 60%;
}
.fs-65p {
  font-size: 65%;
}
.fs-70p {
  font-size: 70%;
}
.fs-75p {
  font-size: 75%;
}
.fs-80p {
  font-size: 80%;
}
.fs-85p {
  font-size: 85%;
}
.fs-90p {
  font-size: 90%;
}
.fs-110p {
  font-size: 110%;
}
.fs-120p {
  font-size: 120%;
}
.fs-130p {
  font-size: 130%;
}
.fs-140p {
  font-size: 140%;
}
.fs-150p {
  font-size: 150%;
}
.fs-160p {
  font-size: 160%;
}
.fs-180p {
  font-size: 180%;
}
.fs-200p {
  font-size: 200%;
}
.fs-220p {
  font-size: 220%;
}
.fs-240p {
  font-size: 240%;
}
.fs-260p {
  font-size: 260%;
}
.fs-280p {
  font-size: 280%;
}
.fs-300p {
  font-size: 300%;
}
.fs-320p {
  font-size: 320%;
}
.fs-360p {
  font-size: 360%;
}

.marker00 {
  display: inline;
  background: linear-gradient(#ffed27 100%);
  padding: 2px;
}

.marker {
  display: inline;
  background: linear-gradient(transparent 70%, #ffed27 70%);
}

.gradation {
  background: linear-gradient(90deg, #a2bace, #2a6da1);
  background: -webkit-linear-gradient(0deg, #a2bace, #2a6da1);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sp-005 {
  padding-top: 0.5rem;
}
.sp-01 {
  padding-top: 1rem;
}
.sp-02 {
  padding-top: 2rem;
}
.sp-02 {
  padding-top: 2rem;
}
.sp-03 {
  padding-top: 3rem;
}
.sp-04 {
  padding-top: 4rem;
}
.sp-05 {
  padding-top: 5rem;
}
.sp-06 {
  padding-top: 6rem;
}
.sp-07 {
  padding-top: 7rem;
}
.sp-08 {
  padding-top: 8rem;
}
.sp-09 {
  padding-top: 9rem;
}
.sp-10 {
  padding-top: 10rem;
}
.sp-12 {
  padding-top: 12rem;
}
.sp-16 {
  padding-top: 16rem;
}
.sp-20 {
  padding-top: 20rem;
}

.trigger {
  opacity: 0;
}
.trigger.use-transition, .trigger.fall, .trigger.slidein, .trigger.slideup {
  transition: 0.75s ease;
}
.trigger.is-trigger {
  opacity: 1;
}
.trigger.delay-025 {
  transition-delay: 0.25s;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.trigger.delay-05 {
  transition-delay: 0.5s;
}
.trigger.delay-075 {
  transition-delay: 0.75s;
}
.trigger.delay-10 {
  transition-delay: 1s;
}
.trigger.delay-125 {
  transition-delay: 1.25s;
}
.trigger.delay-15 {
  transition-delay: 1.5s;
}
.trigger.delay-175 {
  transition-delay: 1.75s;
}
.trigger.delay-20 {
  transition-delay: 2s;
}
.trigger.delay-25 {
  transition-delay: 2.5s;
}
.trigger.opa {
  transition: 0.75s ease;
}
.trigger.opa.is-trigger {
  opacity: 1;
}
.trigger.slideup {
  transform: translateY(1rem);
}
.trigger.slideup.is-trigger {
  transform: none;
}
.trigger.slidein {
  transform: translateX(-1.5rem);
}
.trigger.slidein.is-trigger {
  transform: none;
}
.trigger.fall {
  transform: scale(1.1);
}
.trigger.fall.is-trigger {
  transform: none;
}
.trigger.animate {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-name: none;
          animation-name: none;
}
.trigger.animate.is-trigger {
  -webkit-animation-name: var(--anim-name);
          animation-name: var(--anim-name);
}
.trigger.a-slidein {
  --anim-name: slideIn;
}

@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-1.5rem, 1rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-1.5rem, 1rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/*# sourceMappingURL=style.css.map */