@charset "UTF-8";
@keyframes translate_Y_110 {
  to {
    transform: translateY(110%);
  }
}
@keyframes translate_Y_0 {
  to {
    transform: translateY(0);
  }
}
@keyframes translate_Y_m100 {
  to {
    transform: translateY(-100%);
  }
}
@keyframes translate_X_0 {
  to {
    transform: translateX(0);
  }
}
@keyframes opacity_show {
  to {
    opacity: 1;
  }
}
@keyframes opacity_hide {
  to {
    opacity: 0;
  }
}
@keyframes width_100 {
  to {
    width: 100%;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "JLeague Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  size-adjust: 108.333%;
  src: url("/lp-common/font/JLeague-Sans-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "JLeague Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  size-adjust: 108.333%;
  src: url("/lp-common/font/JLeague-Sans-Heavy.woff2") format("woff2");
}
@font-face {
  font-family: "JLeague Sans";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  size-adjust: 108.333%;
  src: url("/lp-common/font/JLeague-Sans-Black.woff2") format("woff2");
}
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

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

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

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

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

#root,
#__next {
  isolation: isolate;
}

html {
  margin: 0;
  scrollbar-gutter: stable;
  font-weight: 500;
  word-wrap: break-word;
  scroll-behavior: smooth;
}

body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  background: initial;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.2s linear;
}
@media (min-width: 768px) {
  a:hover {
    cursor: pointer;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
  object-fit: contain;
}

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

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

button {
  padding: 0;
  appearance: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border: none;
  color: #000;
}

select {
  color: #000;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip-path: inset(50%) !important;
}

.js-tab__panel[role=tabpanel] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: none;
}
.js-tab__panel[role=tabpanel]:not([aria-hidden=true]) {
  position: static;
  height: auto;
  overflow: visible;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.js-tab [role=tabpanel][data-droparia-hidden=true] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: none;
}
.js-tab [role=tabpanel][data-droparia-hidden=false] {
  position: static;
  height: auto;
  overflow: visible;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.js-inview {
  opacity: 0;
  translate: 0 20px;
  transition: opacity 1s ease, translate 0.8s ease;
}
.js-inview.is-inview-active {
  opacity: 1;
  translate: 0;
}
.js-inview--dynamic {
  filter: blur(10px);
  backface-visibility: hidden;
  transform: scale(0.92) translateZ(0);
  transform-origin: center;
  translate: 0;
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
  will-change: opacity, transform, filter;
}
.js-inview--dynamic.is-inview-active {
  filter: blur(0);
  transform: scale(1) translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-inview {
    opacity: 1;
    filter: none;
    transform: none;
    translate: 0;
    transition: none;
  }
}
.c-team-emblem {
  --team-emblem-size: 40px;
  display: inline-block;
  flex: 0 0 auto;
  width: var(--team-emblem-size);
  height: var(--team-emblem-size);
  overflow: hidden;
  vertical-align: middle;
}
.c-team-emblem--l {
  --team-emblem-size: 60px;
}
.c-team-emblem--m {
  --team-emblem-size: 40px;
}
.c-team-emblem--s {
  --team-emblem-size: 25px;
}
@media not (min-width: 768px) {
  .c-team-emblem--l {
    --team-emblem-size: 48px;
  }
  .c-team-emblem--m {
    --team-emblem-size: 32px;
  }
  .c-team-emblem--s {
    --team-emblem-size: 19px;
  }
}

.c-team-emblem-2026_27 {
  background-image: url("/img/common/2026_27/team_emb_l.webp");
  background-repeat: no-repeat;
  background-position: -9999px -9999px;
  background-size: 1000% 600%;
}
.c-team-emblem-2026_27--sapporo {
  background-position: 0 0;
}
.c-team-emblem-2026_27--hachinohe {
  background-position: 11.1111% 0;
}
.c-team-emblem-2026_27--sendai {
  background-position: 22.2222% 0;
}
.c-team-emblem-2026_27--akita {
  background-position: 33.3333% 0;
}
.c-team-emblem-2026_27--yamagata {
  background-position: 44.4444% 0;
}
.c-team-emblem-2026_27--fukushima {
  background-position: 55.5556% 0;
}
.c-team-emblem-2026_27--iwaki {
  background-position: 66.6667% 0;
}
.c-team-emblem-2026_27--kashima {
  background-position: 77.7778% 0;
}
.c-team-emblem-2026_27--mito {
  background-position: 88.8889% 0;
}
.c-team-emblem-2026_27--tochigi-city {
  background-position: 0 20%;
}
.c-team-emblem-2026_27--tochigi-sc {
  background-position: 100% 0;
}
.c-team-emblem-2026_27--gunma {
  background-position: 11.1111% 20%;
}
.c-team-emblem-2026_27--urawa {
  background-position: 22.2222% 20%;
}
.c-team-emblem-2026_27--rb-omiya {
  background-position: 33.3333% 20%;
}
.c-team-emblem-2026_27--chiba {
  background-position: 44.4444% 20%;
}
.c-team-emblem-2026_27--kashiwa {
  background-position: 55.5556% 20%;
}
.c-team-emblem-2026_27--fc-tokyo {
  background-position: 66.6667% 20%;
}
.c-team-emblem-2026_27--tokyo-v {
  background-position: 77.7778% 20%;
}
.c-team-emblem-2026_27--machida {
  background-position: 88.8889% 20%;
}
.c-team-emblem-2026_27--kawasaki-f {
  background-position: 100% 20%;
}
.c-team-emblem-2026_27--yokohama-fm {
  background-position: 0 40%;
}
.c-team-emblem-2026_27--yokohama-fc {
  background-position: 11.1111% 40%;
}
.c-team-emblem-2026_27--shonan {
  background-position: 22.2222% 40%;
}
.c-team-emblem-2026_27--sagamihara {
  background-position: 33.3333% 40%;
}
.c-team-emblem-2026_27--kofu {
  background-position: 44.4444% 40%;
}
.c-team-emblem-2026_27--matsumoto {
  background-position: 55.5556% 40%;
}
.c-team-emblem-2026_27--nagano {
  background-position: 66.6667% 40%;
}
.c-team-emblem-2026_27--niigata {
  background-position: 77.7778% 40%;
}
.c-team-emblem-2026_27--toyama {
  background-position: 88.8889% 40%;
}
.c-team-emblem-2026_27--kanazawa {
  background-position: 100% 40%;
}
.c-team-emblem-2026_27--shimizu {
  background-position: 0 60%;
}
.c-team-emblem-2026_27--iwata {
  background-position: 11.1111% 60%;
}
.c-team-emblem-2026_27--fujieda {
  background-position: 22.2222% 60%;
}
.c-team-emblem-2026_27--nagoya {
  background-position: 33.3333% 60%;
}
.c-team-emblem-2026_27--gifu {
  background-position: 44.4444% 60%;
}
.c-team-emblem-2026_27--shiga {
  background-position: 55.5556% 60%;
}
.c-team-emblem-2026_27--kyoto {
  background-position: 66.6667% 60%;
}
.c-team-emblem-2026_27--g-osaka {
  background-position: 77.7778% 60%;
}
.c-team-emblem-2026_27--c-osaka {
  background-position: 88.8889% 60%;
}
.c-team-emblem-2026_27--fc-osaka {
  background-position: 100% 60%;
}
.c-team-emblem-2026_27--kobe {
  background-position: 0 80%;
}
.c-team-emblem-2026_27--nara {
  background-position: 11.1111% 80%;
}
.c-team-emblem-2026_27--tottori {
  background-position: 22.2222% 80%;
}
.c-team-emblem-2026_27--okayama {
  background-position: 33.3333% 80%;
}
.c-team-emblem-2026_27--hiroshima {
  background-position: 44.4444% 80%;
}
.c-team-emblem-2026_27--yamaguchi {
  background-position: 55.5556% 80%;
}
.c-team-emblem-2026_27--sanuki {
  background-position: 66.6667% 80%;
}
.c-team-emblem-2026_27--tokushima {
  background-position: 77.7778% 80%;
}
.c-team-emblem-2026_27--ehime {
  background-position: 88.8889% 80%;
}
.c-team-emblem-2026_27--imabari {
  background-position: 100% 80%;
}
.c-team-emblem-2026_27--kochi {
  background-position: 0 100%;
}
.c-team-emblem-2026_27--fukuoka {
  background-position: 11.1111% 100%;
}
.c-team-emblem-2026_27--kitakyushu {
  background-position: 22.2222% 100%;
}
.c-team-emblem-2026_27--tosu {
  background-position: 33.3333% 100%;
}
.c-team-emblem-2026_27--nagasaki {
  background-position: 44.4444% 100%;
}
.c-team-emblem-2026_27--kumamoto {
  background-position: 55.5556% 100%;
}
.c-team-emblem-2026_27--oita {
  background-position: 66.6667% 100%;
}
.c-team-emblem-2026_27--miyazaki {
  background-position: 77.7778% 100%;
}
.c-team-emblem-2026_27--kagoshima {
  background-position: 88.8889% 100%;
}
.c-team-emblem-2026_27--ryukyu {
  background-position: 100% 100%;
}

.c-team-emblem--individual.c-team-emblem-2026_27--tokyo-v {
  background-image: url("/special/autumnCP/2026-27/img/emblem/tokyov.png");
  background-position: center;
  background-size: contain;
}

.c-team-emblem--individual.c-team-emblem-2026_27--tokushima {
  background-image: url("/special/autumnCP/2026-27/img/emblem/tokushima.png");
  background-position: center;
  background-size: contain;
}

body {
  overflow-x: clip;
}

.p-campaign-page {
  width: 100%;
  max-width: 100vw;
  color: #222;
  background-color: #e7e7e7;
  overflow-x: clip;
}

.p-campaign-inner {
  width: min(90%, 1100px);
  margin-inline: auto;
}

.p-campaign-hero {
  background-color: #fff;
}
.p-campaign-hero__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}
.p-campaign-hero__picture, .p-campaign-hero__picture img {
  display: block;
  width: 100%;
}
.p-campaign-hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}
.p-campaign-hero__picture.is-current,
.p-campaign-hero__picture.is-previous {
  visibility: visible;
}
.p-campaign-hero__picture.is-current {
  z-index: 2;
  transform: translateX(0);
}
.p-campaign-hero__picture.is-previous {
  z-index: 1;
  transform: translateX(-100%);
}
.p-campaign-hero__picture img {
  height: 100%;
  object-fit: cover;
}
.p-campaign-hero__lead {
  padding: 80px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}
@media not (min-width: 768px) {
  .p-campaign-hero__slider {
    aspect-ratio: 39/50;
  }
  .p-campaign-hero__lead {
    padding: 40px 5%;
    font-size: 3vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-campaign-hero__picture {
    transition: none;
  }
}

.p-campaign-nav {
  background-color: #000;
}
.p-campaign-nav .p-campaign-inner {
  width: min(100%, 1100px);
}
.p-campaign-nav__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.p-campaign-nav__item {
  width: 100%;
  height: 55px;
  border-left: 1px solid #fff;
}
.p-campaign-nav__item:nth-child(2n), .p-campaign-nav__item:last-child {
  border-right: 1px solid #fff;
}
.p-campaign-nav__item:nth-child(n+3) {
  border-top: 1px solid #fff;
}
.p-campaign-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}
.p-campaign-nav__link:hover, .p-campaign-nav__link.is-current {
  color: #000;
  background-color: #fff;
  opacity: 1;
}
@media not (min-width: 768px) {
  .p-campaign-nav__item {
    height: 48px;
  }
  .p-campaign-nav__link {
    padding: 0 6px;
    font-size: 12px;
  }
}

.p-page-heading {
  padding-top: 120px;
}
.p-page-heading__title {
  margin: 0 auto 50px;
  color: #000;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
@media not (min-width: 768px) {
  .p-page-heading {
    padding-top: 60px;
  }
  .p-page-heading__title {
    margin-bottom: 40px;
    font-size: 22px;
  }
}

.p-area-nav {
  position: sticky;
  top: -66px;
  z-index: 999;
  background-color: rgba(231, 231, 231, 0.31);
  backdrop-filter: blur(10px);
}
.p-area-nav .p-campaign-inner {
  padding: 28px 0 36px;
}
.p-area-nav__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.p-area-nav__title span {
  margin-top: auto;
  font-size: 20px;
  font-weight: 900;
}
.p-area-nav__title::after {
  height: 1px;
  background-color: #333;
  content: "";
  flex: 1;
}
.p-area-nav__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 20px;
}
.p-area-nav__list li {
  width: 100%;
  height: 50px;
}
.p-area-nav__list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 56px 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  background-color: #4b4b4b;
  border-radius: 999px;
}
.p-area-nav__list a::after {
  position: absolute;
  right: 34px;
  width: 9px;
  height: 9px;
  margin-top: -5px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.5s;
}
.p-area-nav__list a:hover {
  opacity: 1;
}
.p-area-nav__list a:hover::after {
  transform: translateY(5px) rotate(45deg);
}
@media not (min-width: 768px) {
  .p-area-nav {
    position: static;
    background-color: #e9e9e9;
    backdrop-filter: none;
  }
  .p-area-nav .p-campaign-inner {
    padding: 30px 0;
  }
  .p-area-nav__title {
    gap: 12px;
    margin-bottom: 24px;
    font-size: 30px;
  }
  .p-area-nav__title span {
    font-size: 20px;
  }
  .p-area-nav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .p-area-nav__list li {
    height: 40px;
  }
  .p-area-nav__list a {
    padding: 4vw 9vw 4vw 4vw;
    font-size: 3.6vw;
  }
  .p-area-nav__list a::after {
    right: 7vw;
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-width: 0 2px 2px 0;
  }
  .p-area-nav__list a:hover::after {
    transform: rotate(45deg);
  }
}

.p-region {
  padding: 80px 0;
  scroll-margin-top: 236px;
  background-color: #e7e7e7;
}
.p-region--sub {
  padding-top: 0;
}
.p-region__title {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.p-region__map {
  display: block;
  width: 100%;
  max-width: 710px;
  height: auto;
  margin: 20px auto;
}
.p-region__matches {
  margin-top: 30px;
}
.p-region__league + .p-region__league {
  margin-top: 60px;
}
.p-region__date-group {
  margin-top: 30px;
}
.p-region__date-group + .p-region__date-group {
  margin-top: 60px;
}
.p-region__league-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.p-region__league-row::before, .p-region__league-row::after {
  height: 1px;
  background-color: #999;
  content: "";
  flex: 1 1 0;
}
.p-region__league-logo {
  display: block;
  width: min(100%, 350px);
  height: auto;
  margin: 0 auto;
}
.p-region__date {
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.13em;
}
.p-region__date span {
  font-family: "JLeague Sans", "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
}
@media not (min-width: 768px) {
  .p-region {
    padding: 30px 0;
    scroll-margin-top: 30px;
  }
  .p-region--sub {
    padding-top: 0;
  }
  .p-region__matches {
    margin-top: 30px;
  }
  .p-region__league + .p-region__league {
    margin-top: 10vw;
  }
  .p-region__date-group {
    margin-top: 5vw;
  }
  .p-region__date-group + .p-region__date-group {
    margin-top: 10vw;
  }
  .p-region__league-row {
    gap: 4vw;
  }
  .p-region__league-logo {
    width: 45vw;
    max-width: 260px;
  }
  .p-region__date {
    font-size: 5vw;
  }
}

.p-precautions {
  padding: 80px 0;
  background-color: #e7e7e7;
}
.p-precautions__title {
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: 900;
  text-align: center;
}
.p-precautions__list {
  width: min(100%, 820px);
  margin-inline: auto;
  padding-left: 1.4em;
  list-style: disc;
  font-size: 13px;
  line-height: 1.7;
}
.p-precautions__list li + li {
  margin-top: 6px;
}
@media not (min-width: 768px) {
  .p-precautions {
    padding: 45px 0;
  }
  .p-precautions__title {
    margin-bottom: 22px;
    font-size: 23px;
  }
  .p-precautions__list {
    font-size: 11px;
  }
}

.p-match-card + .p-match-card {
  margin-top: 30px;
}
.p-match-card__teams {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background-color: #000;
}
.p-match-card__team {
  display: inline-flex;
  align-items: center;
}
.p-match-card__vs {
  margin: 0 5px;
}
.p-match-card__venue {
  margin-left: 5px;
  font-size: 12px;
}
.p-match-card__body {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.p-match-card__image, .p-match-card__detail {
  width: 50%;
}
.p-match-card__image {
  display: block;
  height: auto;
  object-fit: cover;
}
.p-match-card__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background-color: #fff;
}
.p-match-card__invitation {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.p-match-card__invitation strong {
  font-family: "JLeague Sans", "Noto Sans JP", sans-serif;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.p-match-card__deadline {
  width: 100%;
  margin: 10px auto 0;
  padding: 8px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
.p-match-card__deadline span,
.p-match-card__deadline strong {
  display: inline-block;
  vertical-align: baseline;
}
.p-match-card__deadline strong {
  margin: 0 12px;
  font-family: "JLeague Sans", "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 900;
}
.p-match-card__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 40px);
  max-width: 400px;
  height: 60px;
  margin-top: 10px;
  padding: 0 70px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  background-color: #e60c11;
  border: 1px solid #e60c11;
  border-radius: 999px;
}
.p-match-card__button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.p-match-card__button.is-disabled {
  background-color: #aaa;
  border-color: #aaa;
}
.p-match-card__note {
  margin-top: 8px;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
@media not (min-width: 768px) {
  .p-match-card + .p-match-card {
    margin-top: 3vw;
  }
  .p-match-card__teams {
    display: block;
    padding: 5px 10px;
    font-size: 12px;
  }
  .p-match-card__team, .p-match-card__vs {
    display: inline-flex;
  }
  .p-match-card__vs {
    margin: 5px 0;
  }
  .p-match-card__venue {
    display: block;
    margin-left: 0;
    font-size: 10px;
  }
  .p-match-card__body {
    display: block;
  }
  .p-match-card__image, .p-match-card__detail {
    width: 100%;
  }
  .p-match-card__detail {
    padding: 7vw 5%;
  }
  .p-match-card__invitation {
    width: 100%;
    font-size: 5vw;
    letter-spacing: -0.06em;
  }
  .p-match-card__invitation strong {
    font-size: 8vw;
    letter-spacing: -0.03em;
  }
  .p-match-card__deadline {
    margin-top: 4vw;
    padding: 3vw 0;
    font-size: clamp(12px, 4vw, 16px);
    border-width: 2px;
  }
  .p-match-card__deadline strong {
    margin: 0 2.5vw;
    font-size: clamp(22px, 7vw, 26px);
  }
  .p-match-card__button {
    width: 100%;
    max-width: none;
    height: 10vw;
    min-height: 54px;
    max-height: 68px;
    margin-top: 7vw;
    padding: 0 16vw;
    font-size: 5vw;
    font-weight: 900;
  }
  .p-match-card__button::after {
    right: 5vw;
    width: 2.5vw;
    max-width: 18px;
    height: 2.5vw;
    max-height: 18px;
  }
  .p-match-card__note {
    margin-top: 5px;
    font-size: 10px;
  }
}

.p-schedule {
  padding: 120px 0 80px;
  background-color: #e7e7e7;
}
.p-schedule .p-page-heading__title {
  margin-bottom: 80px;
}
.p-schedule__calendar {
  width: 100%;
  margin-bottom: 30px;
  padding: 30px;
  text-align: center;
  background-color: #e1e1e1;
}
.p-schedule__date-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}
.p-schedule__date-item {
  position: relative;
}
.p-schedule__date-item:has(.p-schedule__date.is-current)::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #000;
  content: "";
  transform: translateX(-50%) rotate(90deg);
}
.p-schedule__date-item:has(.p-schedule__date--saturday.is-current)::after {
  border-left-color: #3071b8;
}
.p-schedule__date-item:has(.p-schedule__date--sunday.is-current)::after {
  border-left-color: #eb5306;
}
.p-schedule__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 10px 0;
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 5px;
}
.p-schedule__date--saturday {
  color: #3071b8;
  border-color: #3071b8;
}
.p-schedule__date--sunday {
  color: #eb5306;
  border-color: #eb5306;
}
.p-schedule__date.is-current {
  color: #fff;
  background-color: #000;
}
.p-schedule__date--saturday.is-current {
  background-color: #3071b8;
}
.p-schedule__date--sunday.is-current {
  background-color: #eb5306;
}
.p-schedule__day {
  display: block;
  margin-bottom: 3px;
  font-family: "JLeague Sans", "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}
.p-schedule__day small {
  font-size: 11px;
  font-weight: 400;
}
.p-schedule__count {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.p-schedule__heading {
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.13em;
}
.p-schedule__heading span {
  font-family: "JLeague Sans", "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
}
.p-schedule__placeholder {
  padding: 40px 20px;
  font-size: 14px;
  text-align: center;
  background-color: #fff;
}
.p-schedule__scroll-note {
  display: none;
}
.p-schedule__table-wrap {
  width: 100%;
}
.p-schedule__table {
  width: 100%;
  border-collapse: collapse;
}
.p-schedule__table th,
.p-schedule__table td {
  padding: 10px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #d7d7d7;
}
.p-schedule__table thead th {
  color: #fff;
  font-weight: 700;
  background-color: #000;
}
.p-schedule__table thead th:nth-child(2) {
  width: 5em;
}
.p-schedule__table tbody td {
  background-color: #fff;
}
.p-schedule__league {
  color: #fff;
  font-weight: 700;
}
.p-schedule__league--j1 {
  background-color: #e60012;
}
.p-schedule__league--j2 {
  background-color: #007e41;
}
.p-schedule__league--j3 {
  background-color: #1f62b2;
}
.p-schedule__team {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  vertical-align: middle;
}
.p-schedule__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  padding: 7px 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  background-color: #e60012;
  border: 1px solid #e60012;
  border-radius: 999px;
}
@media (min-width: 768px) {
  .p-schedule__button:hover {
    opacity: 0.7;
  }
}
.p-schedule__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  padding: 5px 20px;
  color: #828080;
  font-size: 12px;
  line-height: 1.2;
  background-color: #aaa;
  border: 1px solid #aaa;
  border-radius: 999px;
}
@media not (min-width: 768px) {
  .p-schedule {
    padding: 60px 0 30px;
  }
  .p-schedule .p-page-heading__title {
    margin-bottom: 70px;
  }
  .p-schedule__calendar {
    padding: 20px;
  }
  .p-schedule__date-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }
  .p-schedule__date-item::after {
    content: none;
  }
  .p-schedule__date {
    min-height: 40px;
    padding: 0;
  }
  .p-schedule__day {
    margin-bottom: 0;
    font-size: 15px;
  }
  .p-schedule__day small {
    font-size: 10px;
  }
  .p-schedule__count {
    font-size: 10px;
  }
  .p-schedule__heading {
    font-size: 5vw;
  }
  .p-schedule__scroll-note {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
    text-align: center;
  }
  .p-schedule__table-wrap {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .p-schedule__table {
    min-width: 900px;
  }
  .p-schedule__table th,
  .p-schedule__table td {
    padding: 5px;
    font-size: 10px;
  }
}

/* .u-display-(block, inline-block, inline, flex, table, table-row, table-cell, flow-root, none, grid)
==========================================================================
    displayの設定
========================================================================== */
.u-display-block {
  display: block !important;
}
.u-display-inline-block {
  display: inline-block !important;
}
.u-display-inline {
  display: inline !important;
}
.u-display-flex {
  display: flex !important;
}
.u-display-table {
  display: table !important;
}
.u-display-table-row {
  display: table-row !important;
}
.u-display-table-cell {
  display: table-cell !important;
}
.u-display-flow-root {
  display: flow-root !important;
}
.u-display-none {
  display: none !important;
}
.u-display-grid {
  display: grid !important;
}

@media not (min-width: 768px) {
  .u-display-none--sm {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .u-display-none--md {
    display: none !important;
  }
}

@media not (min-width: 768px) {
  .u-display-block--sm {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .u-display-block--md {
    display: block !important;
  }
}

/* .u-float-(right, left, none)
==========================================================================
    floatの設定
========================================================================== */
.u-float-right {
  float: right !important;
}
.u-float-left {
  float: left !important;
}
.u-float-none {
  float: none !important;
}

/* .u-clear-(right, left, both, none)
==========================================================================
    clearの設定
========================================================================== */
.u-clear-right {
  clear: right !important;
}
.u-clear-left {
  clear: left !important;
}
.u-clear-both {
  clear: both !important;
}
.u-clear-none {
  clear: none !important;
}

/* .u-w-(5~100)p
==========================================================================
    widthを%で設定。5%~100%の間で5%ずつ増加
========================================================================== */
.u-w-5p {
  width: 5% !important;
}
.u-w-10p {
  width: 10% !important;
}
.u-w-15p {
  width: 15% !important;
}
.u-w-20p {
  width: 20% !important;
}
.u-w-25p {
  width: 25% !important;
}
.u-w-30p {
  width: 30% !important;
}
.u-w-35p {
  width: 35% !important;
}
.u-w-40p {
  width: 40% !important;
}
.u-w-45p {
  width: 45% !important;
}
.u-w-50p {
  width: 50% !important;
}
.u-w-55p {
  width: 55% !important;
}
.u-w-60p {
  width: 60% !important;
}
.u-w-65p {
  width: 65% !important;
}
.u-w-70p {
  width: 70% !important;
}
.u-w-75p {
  width: 75% !important;
}
.u-w-80p {
  width: 80% !important;
}
.u-w-85p {
  width: 85% !important;
}
.u-w-90p {
  width: 90% !important;
}
.u-w-95p {
  width: 95% !important;
}
.u-w-100p {
  width: 100% !important;
}

/* .u-w-(0、50~1000)
==========================================================================
    widthをpxで設定。50px~1200pxの間で50pxずつ増加
========================================================================== */
.u-w-0 {
  width: 0px !important;
}
.u-w-50 {
  width: 50px !important;
}
.u-w-100 {
  width: 100px !important;
}
.u-w-150 {
  width: 150px !important;
}
.u-w-200 {
  width: 200px !important;
}
.u-w-250 {
  width: 250px !important;
}
.u-w-300 {
  width: 300px !important;
}
.u-w-350 {
  width: 350px !important;
}
.u-w-400 {
  width: 400px !important;
}
.u-w-450 {
  width: 450px !important;
}
.u-w-500 {
  width: 500px !important;
}
.u-w-550 {
  width: 550px !important;
}
.u-w-600 {
  width: 600px !important;
}
.u-w-650 {
  width: 650px !important;
}
.u-w-700 {
  width: 700px !important;
}
.u-w-750 {
  width: 750px !important;
}
.u-w-800 {
  width: 800px !important;
}
.u-w-850 {
  width: 850px !important;
}
.u-w-900 {
  width: 900px !important;
}
.u-w-950 {
  width: 950px !important;
}
.u-w-1000 {
  width: 1000px !important;
}
.u-w-1050 {
  width: 1050px !important;
}
.u-w-1100 {
  width: 1100px !important;
}
.u-w-1150 {
  width: 1150px !important;
}
.u-w-1200 {
  width: 1200px !important;
}

/* .u-w-auto
==========================================================================
    widthのauto設定
========================================================================== */
.u-w-auto {
  width: auto !important;
}

/* .u-mw-100p
==========================================================================
    max-widthの設定
========================================================================== */
.u-mw-100p {
  max-width: 100% !important;
}

/* .u-h-(5~100)p
==========================================================================
    heightを%で設定。5%~100%の間で5%ずつ増加
========================================================================== */
.u-h-5p {
  height: 5% !important;
}
.u-h-10p {
  height: 10% !important;
}
.u-h-15p {
  height: 15% !important;
}
.u-h-20p {
  height: 20% !important;
}
.u-h-25p {
  height: 25% !important;
}
.u-h-30p {
  height: 30% !important;
}
.u-h-35p {
  height: 35% !important;
}
.u-h-40p {
  height: 40% !important;
}
.u-h-45p {
  height: 45% !important;
}
.u-h-50p {
  height: 50% !important;
}
.u-h-55p {
  height: 55% !important;
}
.u-h-60p {
  height: 60% !important;
}
.u-h-65p {
  height: 65% !important;
}
.u-h-70p {
  height: 70% !important;
}
.u-h-75p {
  height: 75% !important;
}
.u-h-80p {
  height: 80% !important;
}
.u-h-85p {
  height: 85% !important;
}
.u-h-90p {
  height: 90% !important;
}
.u-h-95p {
  height: 95% !important;
}
.u-h-100p {
  height: 100% !important;
}

/* .u-h-(0、50~1000)
==========================================================================
    heightをpxで設定。50px～1200pxの間で50pxずつ増加
========================================================================== */
.u-h-0 {
  height: 0px !important;
}
.u-h-50 {
  height: 50px !important;
}
.u-h-100 {
  height: 100px !important;
}
.u-h-150 {
  height: 150px !important;
}
.u-h-200 {
  height: 200px !important;
}
.u-h-250 {
  height: 250px !important;
}
.u-h-300 {
  height: 300px !important;
}
.u-h-350 {
  height: 350px !important;
}
.u-h-400 {
  height: 400px !important;
}
.u-h-450 {
  height: 450px !important;
}
.u-h-500 {
  height: 500px !important;
}
.u-h-550 {
  height: 550px !important;
}
.u-h-600 {
  height: 600px !important;
}
.u-h-650 {
  height: 650px !important;
}
.u-h-700 {
  height: 700px !important;
}
.u-h-750 {
  height: 750px !important;
}
.u-h-800 {
  height: 800px !important;
}
.u-h-850 {
  height: 850px !important;
}
.u-h-900 {
  height: 900px !important;
}
.u-h-950 {
  height: 950px !important;
}
.u-h-1000 {
  height: 1000px !important;
}
.u-h-1050 {
  height: 1050px !important;
}
.u-h-1100 {
  height: 1100px !important;
}
.u-h-1150 {
  height: 1150px !important;
}
.u-h-1200 {
  height: 1200px !important;
}

/* .u-h-auto
==========================================================================
    heightのauto設定
========================================================================== */
.u-h-auto {
  height: auto !important;
}

/* .u-mh-100p
==========================================================================
    max-heightの設定
========================================================================== */
.u-mh-100p {
  max-height: 100% !important;
}

/* .u-p(t, r, b, l, y, x)-(0、5~100)
==========================================================================
    paddingをpxで設定。0px、5px~100pxの間で、5pxずつ増加
========================================================================== */
.u-pt-0 {
  padding-top: 0px !important;
}
.u-pt-5 {
  padding-top: 5px !important;
}
.u-pt-10 {
  padding-top: 10px !important;
}
.u-pt-15 {
  padding-top: 15px !important;
}
.u-pt-20 {
  padding-top: 20px !important;
}
.u-pt-25 {
  padding-top: 25px !important;
}
.u-pt-30 {
  padding-top: 30px !important;
}
.u-pt-35 {
  padding-top: 35px !important;
}
.u-pt-40 {
  padding-top: 40px !important;
}
.u-pt-45 {
  padding-top: 45px !important;
}
.u-pt-50 {
  padding-top: 50px !important;
}
.u-pt-55 {
  padding-top: 55px !important;
}
.u-pt-60 {
  padding-top: 60px !important;
}
.u-pt-65 {
  padding-top: 65px !important;
}
.u-pt-70 {
  padding-top: 70px !important;
}
.u-pt-75 {
  padding-top: 75px !important;
}
.u-pt-80 {
  padding-top: 80px !important;
}
.u-pt-85 {
  padding-top: 85px !important;
}
.u-pt-90 {
  padding-top: 90px !important;
}
.u-pt-95 {
  padding-top: 95px !important;
}
.u-pt-100 {
  padding-top: 100px !important;
}
.u-pr-0 {
  padding-right: 0px !important;
}
.u-pr-5 {
  padding-right: 5px !important;
}
.u-pr-10 {
  padding-right: 10px !important;
}
.u-pr-15 {
  padding-right: 15px !important;
}
.u-pr-20 {
  padding-right: 20px !important;
}
.u-pr-25 {
  padding-right: 25px !important;
}
.u-pr-30 {
  padding-right: 30px !important;
}
.u-pr-35 {
  padding-right: 35px !important;
}
.u-pr-40 {
  padding-right: 40px !important;
}
.u-pr-45 {
  padding-right: 45px !important;
}
.u-pr-50 {
  padding-right: 50px !important;
}
.u-pr-55 {
  padding-right: 55px !important;
}
.u-pr-60 {
  padding-right: 60px !important;
}
.u-pr-65 {
  padding-right: 65px !important;
}
.u-pr-70 {
  padding-right: 70px !important;
}
.u-pr-75 {
  padding-right: 75px !important;
}
.u-pr-80 {
  padding-right: 80px !important;
}
.u-pr-85 {
  padding-right: 85px !important;
}
.u-pr-90 {
  padding-right: 90px !important;
}
.u-pr-95 {
  padding-right: 95px !important;
}
.u-pr-100 {
  padding-right: 100px !important;
}
.u-pb-0 {
  padding-bottom: 0px !important;
}
.u-pb-5 {
  padding-bottom: 5px !important;
}
.u-pb-10 {
  padding-bottom: 10px !important;
}
.u-pb-15 {
  padding-bottom: 15px !important;
}
.u-pb-20 {
  padding-bottom: 20px !important;
}
.u-pb-25 {
  padding-bottom: 25px !important;
}
.u-pb-30 {
  padding-bottom: 30px !important;
}
.u-pb-35 {
  padding-bottom: 35px !important;
}
.u-pb-40 {
  padding-bottom: 40px !important;
}
.u-pb-45 {
  padding-bottom: 45px !important;
}
.u-pb-50 {
  padding-bottom: 50px !important;
}
.u-pb-55 {
  padding-bottom: 55px !important;
}
.u-pb-60 {
  padding-bottom: 60px !important;
}
.u-pb-65 {
  padding-bottom: 65px !important;
}
.u-pb-70 {
  padding-bottom: 70px !important;
}
.u-pb-75 {
  padding-bottom: 75px !important;
}
.u-pb-80 {
  padding-bottom: 80px !important;
}
.u-pb-85 {
  padding-bottom: 85px !important;
}
.u-pb-90 {
  padding-bottom: 90px !important;
}
.u-pb-95 {
  padding-bottom: 95px !important;
}
.u-pb-100 {
  padding-bottom: 100px !important;
}
.u-pl-0 {
  padding-left: 0px !important;
}
.u-pl-5 {
  padding-left: 5px !important;
}
.u-pl-10 {
  padding-left: 10px !important;
}
.u-pl-15 {
  padding-left: 15px !important;
}
.u-pl-20 {
  padding-left: 20px !important;
}
.u-pl-25 {
  padding-left: 25px !important;
}
.u-pl-30 {
  padding-left: 30px !important;
}
.u-pl-35 {
  padding-left: 35px !important;
}
.u-pl-40 {
  padding-left: 40px !important;
}
.u-pl-45 {
  padding-left: 45px !important;
}
.u-pl-50 {
  padding-left: 50px !important;
}
.u-pl-55 {
  padding-left: 55px !important;
}
.u-pl-60 {
  padding-left: 60px !important;
}
.u-pl-65 {
  padding-left: 65px !important;
}
.u-pl-70 {
  padding-left: 70px !important;
}
.u-pl-75 {
  padding-left: 75px !important;
}
.u-pl-80 {
  padding-left: 80px !important;
}
.u-pl-85 {
  padding-left: 85px !important;
}
.u-pl-90 {
  padding-left: 90px !important;
}
.u-pl-95 {
  padding-left: 95px !important;
}
.u-pl-100 {
  padding-left: 100px !important;
}
.u-py-0 {
  padding-block: 0px !important;
}
.u-py-5 {
  padding-block: 5px !important;
}
.u-py-10 {
  padding-block: 10px !important;
}
.u-py-15 {
  padding-block: 15px !important;
}
.u-py-20 {
  padding-block: 20px !important;
}
.u-py-25 {
  padding-block: 25px !important;
}
.u-py-30 {
  padding-block: 30px !important;
}
.u-py-35 {
  padding-block: 35px !important;
}
.u-py-40 {
  padding-block: 40px !important;
}
.u-py-45 {
  padding-block: 45px !important;
}
.u-py-50 {
  padding-block: 50px !important;
}
.u-py-55 {
  padding-block: 55px !important;
}
.u-py-60 {
  padding-block: 60px !important;
}
.u-py-65 {
  padding-block: 65px !important;
}
.u-py-70 {
  padding-block: 70px !important;
}
.u-py-75 {
  padding-block: 75px !important;
}
.u-py-80 {
  padding-block: 80px !important;
}
.u-py-85 {
  padding-block: 85px !important;
}
.u-py-90 {
  padding-block: 90px !important;
}
.u-py-95 {
  padding-block: 95px !important;
}
.u-py-100 {
  padding-block: 100px !important;
}
.u-px-0 {
  padding-inline: 0px !important;
}
.u-px-5 {
  padding-inline: 5px !important;
}
.u-px-10 {
  padding-inline: 10px !important;
}
.u-px-15 {
  padding-inline: 15px !important;
}
.u-px-20 {
  padding-inline: 20px !important;
}
.u-px-25 {
  padding-inline: 25px !important;
}
.u-px-30 {
  padding-inline: 30px !important;
}
.u-px-35 {
  padding-inline: 35px !important;
}
.u-px-40 {
  padding-inline: 40px !important;
}
.u-px-45 {
  padding-inline: 45px !important;
}
.u-px-50 {
  padding-inline: 50px !important;
}
.u-px-55 {
  padding-inline: 55px !important;
}
.u-px-60 {
  padding-inline: 60px !important;
}
.u-px-65 {
  padding-inline: 65px !important;
}
.u-px-70 {
  padding-inline: 70px !important;
}
.u-px-75 {
  padding-inline: 75px !important;
}
.u-px-80 {
  padding-inline: 80px !important;
}
.u-px-85 {
  padding-inline: 85px !important;
}
.u-px-90 {
  padding-inline: 90px !important;
}
.u-px-95 {
  padding-inline: 95px !important;
}
.u-px-100 {
  padding-inline: 100px !important;
}

/* .u-m(t, r, b, l, y, x)-(0、5~100)
==========================================================================
    marginをpxで設定。0px、5px~100pxの間で、5pxずつ増加
========================================================================== */
.u-mt-0 {
  margin-top: 0px !important;
}
.u-mt-5 {
  margin-top: 5px !important;
}
.u-mt-10 {
  margin-top: 10px !important;
}
.u-mt-15 {
  margin-top: 15px !important;
}
.u-mt-20 {
  margin-top: 20px !important;
}
.u-mt-25 {
  margin-top: 25px !important;
}
.u-mt-30 {
  margin-top: 30px !important;
}
.u-mt-35 {
  margin-top: 35px !important;
}
.u-mt-40 {
  margin-top: 40px !important;
}
.u-mt-45 {
  margin-top: 45px !important;
}
.u-mt-50 {
  margin-top: 50px !important;
}
.u-mt-55 {
  margin-top: 55px !important;
}
.u-mt-60 {
  margin-top: 60px !important;
}
.u-mt-65 {
  margin-top: 65px !important;
}
.u-mt-70 {
  margin-top: 70px !important;
}
.u-mt-75 {
  margin-top: 75px !important;
}
.u-mt-80 {
  margin-top: 80px !important;
}
.u-mt-85 {
  margin-top: 85px !important;
}
.u-mt-90 {
  margin-top: 90px !important;
}
.u-mt-95 {
  margin-top: 95px !important;
}
.u-mt-100 {
  margin-top: 100px !important;
}
.u-mr-0 {
  margin-right: 0px !important;
}
.u-mr-5 {
  margin-right: 5px !important;
}
.u-mr-10 {
  margin-right: 10px !important;
}
.u-mr-15 {
  margin-right: 15px !important;
}
.u-mr-20 {
  margin-right: 20px !important;
}
.u-mr-25 {
  margin-right: 25px !important;
}
.u-mr-30 {
  margin-right: 30px !important;
}
.u-mr-35 {
  margin-right: 35px !important;
}
.u-mr-40 {
  margin-right: 40px !important;
}
.u-mr-45 {
  margin-right: 45px !important;
}
.u-mr-50 {
  margin-right: 50px !important;
}
.u-mr-55 {
  margin-right: 55px !important;
}
.u-mr-60 {
  margin-right: 60px !important;
}
.u-mr-65 {
  margin-right: 65px !important;
}
.u-mr-70 {
  margin-right: 70px !important;
}
.u-mr-75 {
  margin-right: 75px !important;
}
.u-mr-80 {
  margin-right: 80px !important;
}
.u-mr-85 {
  margin-right: 85px !important;
}
.u-mr-90 {
  margin-right: 90px !important;
}
.u-mr-95 {
  margin-right: 95px !important;
}
.u-mr-100 {
  margin-right: 100px !important;
}
.u-mb-0 {
  margin-bottom: 0px !important;
}
.u-mb-5 {
  margin-bottom: 5px !important;
}
.u-mb-10 {
  margin-bottom: 10px !important;
}
.u-mb-15 {
  margin-bottom: 15px !important;
}
.u-mb-20 {
  margin-bottom: 20px !important;
}
.u-mb-25 {
  margin-bottom: 25px !important;
}
.u-mb-30 {
  margin-bottom: 30px !important;
}
.u-mb-35 {
  margin-bottom: 35px !important;
}
.u-mb-40 {
  margin-bottom: 40px !important;
}
.u-mb-45 {
  margin-bottom: 45px !important;
}
.u-mb-50 {
  margin-bottom: 50px !important;
}
.u-mb-55 {
  margin-bottom: 55px !important;
}
.u-mb-60 {
  margin-bottom: 60px !important;
}
.u-mb-65 {
  margin-bottom: 65px !important;
}
.u-mb-70 {
  margin-bottom: 70px !important;
}
.u-mb-75 {
  margin-bottom: 75px !important;
}
.u-mb-80 {
  margin-bottom: 80px !important;
}
.u-mb-85 {
  margin-bottom: 85px !important;
}
.u-mb-90 {
  margin-bottom: 90px !important;
}
.u-mb-95 {
  margin-bottom: 95px !important;
}
.u-mb-100 {
  margin-bottom: 100px !important;
}
.u-ml-0 {
  margin-left: 0px !important;
}
.u-ml-5 {
  margin-left: 5px !important;
}
.u-ml-10 {
  margin-left: 10px !important;
}
.u-ml-15 {
  margin-left: 15px !important;
}
.u-ml-20 {
  margin-left: 20px !important;
}
.u-ml-25 {
  margin-left: 25px !important;
}
.u-ml-30 {
  margin-left: 30px !important;
}
.u-ml-35 {
  margin-left: 35px !important;
}
.u-ml-40 {
  margin-left: 40px !important;
}
.u-ml-45 {
  margin-left: 45px !important;
}
.u-ml-50 {
  margin-left: 50px !important;
}
.u-ml-55 {
  margin-left: 55px !important;
}
.u-ml-60 {
  margin-left: 60px !important;
}
.u-ml-65 {
  margin-left: 65px !important;
}
.u-ml-70 {
  margin-left: 70px !important;
}
.u-ml-75 {
  margin-left: 75px !important;
}
.u-ml-80 {
  margin-left: 80px !important;
}
.u-ml-85 {
  margin-left: 85px !important;
}
.u-ml-90 {
  margin-left: 90px !important;
}
.u-ml-95 {
  margin-left: 95px !important;
}
.u-ml-100 {
  margin-left: 100px !important;
}
.u-my-0 {
  margin-block: 0px !important;
}
.u-my-5 {
  margin-block: 5px !important;
}
.u-my-10 {
  margin-block: 10px !important;
}
.u-my-15 {
  margin-block: 15px !important;
}
.u-my-20 {
  margin-block: 20px !important;
}
.u-my-25 {
  margin-block: 25px !important;
}
.u-my-30 {
  margin-block: 30px !important;
}
.u-my-35 {
  margin-block: 35px !important;
}
.u-my-40 {
  margin-block: 40px !important;
}
.u-my-45 {
  margin-block: 45px !important;
}
.u-my-50 {
  margin-block: 50px !important;
}
.u-my-55 {
  margin-block: 55px !important;
}
.u-my-60 {
  margin-block: 60px !important;
}
.u-my-65 {
  margin-block: 65px !important;
}
.u-my-70 {
  margin-block: 70px !important;
}
.u-my-75 {
  margin-block: 75px !important;
}
.u-my-80 {
  margin-block: 80px !important;
}
.u-my-85 {
  margin-block: 85px !important;
}
.u-my-90 {
  margin-block: 90px !important;
}
.u-my-95 {
  margin-block: 95px !important;
}
.u-my-100 {
  margin-block: 100px !important;
}
.u-mx-0 {
  margin-inline: 0px !important;
}
.u-mx-5 {
  margin-inline: 5px !important;
}
.u-mx-10 {
  margin-inline: 10px !important;
}
.u-mx-15 {
  margin-inline: 15px !important;
}
.u-mx-20 {
  margin-inline: 20px !important;
}
.u-mx-25 {
  margin-inline: 25px !important;
}
.u-mx-30 {
  margin-inline: 30px !important;
}
.u-mx-35 {
  margin-inline: 35px !important;
}
.u-mx-40 {
  margin-inline: 40px !important;
}
.u-mx-45 {
  margin-inline: 45px !important;
}
.u-mx-50 {
  margin-inline: 50px !important;
}
.u-mx-55 {
  margin-inline: 55px !important;
}
.u-mx-60 {
  margin-inline: 60px !important;
}
.u-mx-65 {
  margin-inline: 65px !important;
}
.u-mx-70 {
  margin-inline: 70px !important;
}
.u-mx-75 {
  margin-inline: 75px !important;
}
.u-mx-80 {
  margin-inline: 80px !important;
}
.u-mx-85 {
  margin-inline: 85px !important;
}
.u-mx-90 {
  margin-inline: 90px !important;
}
.u-mx-95 {
  margin-inline: 95px !important;
}
.u-mx-100 {
  margin-inline: 100px !important;
}

/* .u-m(t, r, b, l, y, x)-auto
==========================================================================
    marginのauto設定
========================================================================== */
.u-m-auto {
  margin: auto;
}
.u-mt-auto {
  margin-top: auto !important;
}
.u-mr-auto {
  margin-right: auto !important;
}
.u-mb-auto {
  margin-bottom: auto !important;
}
.u-ml-auto {
  margin-left: auto !important;
}
.u-my-auto {
  margin-block: auto !important;
}
.u-mx-auto {
  margin-inline: auto !important;
}

/* .u-fs-(xs, sm, base, lg, xl, 2xl, 3xl, 4xl, 5xl, 6xl, 7xl, 8xl, 9xl)
==========================================================================
    font-sizeの設定
========================================================================== */
.u-fs-xs {
  font-size: 12px !important;
  line-height: 1.5 !important;
}
.u-fs-sm {
  font-size: 14px !important;
  line-height: 1.5 !important;
}
.u-fs-base {
  font-size: 16px !important;
  line-height: 1.5 !important;
}
.u-fs-lg {
  font-size: 18px !important;
  line-height: 1.5 !important;
}
.u-fs-xl {
  font-size: 20px !important;
  line-height: 1.5 !important;
}
.u-fs-2xl {
  font-size: 24px !important;
  line-height: 1.5 !important;
}
.u-fs-3xl {
  font-size: 30px !important;
  line-height: 1.5 !important;
}
.u-fs-4xl {
  font-size: 36px !important;
  line-height: 1.5 !important;
}
.u-fs-5xl {
  font-size: 48px !important;
  line-height: 1.5 !important;
}
.u-fs-6xl {
  font-size: 64px !important;
  line-height: 1.5 !important;
}
.u-fs-7xl {
  font-size: 72px !important;
  line-height: 1.5 !important;
}
.u-fs-8xl {
  font-size: 80px !important;
  line-height: 1.5 !important;
}
.u-fs-9xl {
  font-size: 96px !important;
  line-height: 1.5 !important;
}

/* .u-lh-(xs, sm, base, lg)
==========================================================================
    line-heightの設定
========================================================================== */
.u-lh-xs {
  line-height: 1 !important;
}
.u-lh-sm {
  line-height: 1.25 !important;
}
.u-lh-base {
  line-height: 1.5 !important;
}
.u-lh-lg {
  line-height: 2 !important;
}

/* .u-fw-(normal, bold)
==========================================================================
    font-weightの設定
========================================================================== */
.u-fw-normal {
  font-weight: normal !important;
}
.u-fw-bold {
  font-weight: bold !important;
}

/* .u-ta-(left, center, right)
==========================================================================
    text-alignの設定
========================================================================== */
.u-text-left {
  text-align: left !important;
}
.u-text-center {
  text-align: center !important;
}
.u-text-right {
  text-align: right !important;
}

/* .u-text-decoration-(underline, none)
==========================================================================
    text-decorationの設定
========================================================================== */
.u-text-decoration-underline {
  text-decoration: underline !important;
}
.u-text-decoration-none {
  text-decoration: none !important;
}

/* .u-text-overflow-(truncate, truncate-2, truncate-3)
==========================================================================
    text-overflowの設定
========================================================================== */
.u-text-truncate {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.u-text-truncate-2 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}
.u-text-truncate-3 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
}

/* .u-flex-(row, row-reverse, col, col-reverse)
==========================================================================
    flex-directionを設定。
========================================================================== */
.u-flex-row {
  flex-direction: row !important;
}
.u-flex-row-reverse {
  flex-direction: row-reverse !important;
}
.u-flex-col {
  flex-direction: column !important;
}
.u-flex-col-reverse {
  flex-direction: column-reverse !important;
}

.u-flex-nowrap {
  flex-wrap: nowrap !important;
}
.u-flex-wrap {
  flex-wrap: wrap !important;
}

.u-flex-grow {
  flex-grow: 1 !important;
}
.u-flex-grow-0 {
  flex-grow: 0 !important;
}

.u-flex-shrink {
  flex-shrink: 1 !important;
}
.u-flex-shrink-0 {
  flex-shrink: 0 !important;
}

.u-gap-0 {
  gap: 0px !important;
}
.u-gap-5 {
  gap: 5px !important;
}
.u-gap-10 {
  gap: 10px !important;
}
.u-gap-15 {
  gap: 15px !important;
}
.u-gap-20 {
  gap: 20px !important;
}
.u-gap-25 {
  gap: 25px !important;
}
.u-gap-30 {
  gap: 30px !important;
}
.u-gap-35 {
  gap: 35px !important;
}
.u-gap-40 {
  gap: 40px !important;
}
.u-gap-45 {
  gap: 45px !important;
}
.u-gap-50 {
  gap: 50px !important;
}
.u-gap-55 {
  gap: 55px !important;
}
.u-gap-60 {
  gap: 60px !important;
}
.u-gap-65 {
  gap: 65px !important;
}
.u-gap-70 {
  gap: 70px !important;
}
.u-gap-75 {
  gap: 75px !important;
}
.u-gap-80 {
  gap: 80px !important;
}
.u-gap-85 {
  gap: 85px !important;
}
.u-gap-90 {
  gap: 90px !important;
}
.u-gap-95 {
  gap: 95px !important;
}
.u-gap-100 {
  gap: 100px !important;
}

.u-justify-start {
  justify-content: flex-start !important;
}
.u-justify-center {
  justify-content: center !important;
}
.u-justify-end {
  justify-content: flex-end !important;
}
.u-justify-between {
  justify-content: space-between !important;
}
.u-justify-around {
  justify-content: space-around !important;
}

.u-items-stretch {
  align-items: stretch !important;
}
.u-items-start {
  align-items: flex-start !important;
}
.u-items-center {
  align-items: center !important;
}
.u-items-end {
  align-items: flex-end !important;
}
.u-items-baseline {
  align-items: baseline !important;
}

/* .u-bg-(transparent, primary, secondary, success, danger, warning, info, light, dark, black, white)
==========================================================================
    background-colorの設定
========================================================================== */
.u-bg-transparent {
  background-color: transparent !important;
}
.u-bg-primary {
  background-color: #0d6efd !important;
}
.u-bg-secondary {
  background-color: #6c757d !important;
}
.u-bg-success {
  background-color: #198754 !important;
}
.u-bg-danger {
  background-color: #dc3545 !important;
}
.u-bg-warning {
  background-color: #ffc107 !important;
}
.u-bg-info {
  background-color: #0dcaf0 !important;
}
.u-bg-light {
  background-color: #f8f9fa !important;
}
.u-bg-dark {
  background-color: #212529 !important;
}
.u-bg-black {
  background-color: #000 !important;
}
.u-bg-white {
  background-color: #fff !important;
}

.u-text-transparent {
  color: transparent !important;
}
.u-text-primary {
  color: #0d6efd !important;
}
.u-text-secondary {
  color: #6c757d !important;
}
.u-text-success {
  color: #198754 !important;
}
.u-text-danger {
  color: #dc3545 !important;
}
.u-text-warning {
  color: #ffc107 !important;
}
.u-text-info {
  color: #0dcaf0 !important;
}
.u-text-light {
  color: #f8f9fa !important;
}
.u-text-dark {
  color: #212529 !important;
}
.u-text-black {
  color: #000 !important;
}
.u-text-white {
  color: #fff !important;
}

/* .u-visually-hidden
==========================================================================
    u-visually-hiddenの設定
========================================================================== */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}
