@charset "UTF-8";
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/* ブレイクポイントの設定 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* キーボード操作 */
button:focus-visible, a:focus-visible {
  outline: 1.5px solid #000;
}

/* ===================================================
共通項目
====================================================*/
html {
  height: 100%;
}

.legendsmatch {
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  height: 100%;
}

p, h1, h2, h3, h4, ul, li {
  padding: 0;
  margin: 0;
}

button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}
body a {
  text-decoration: none;
  color: #000;
  display: inline;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (hover: hover) {
  body a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  body a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  body a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
body li {
  list-style: none;
}
body ul {
  padding: 0;
}
body .br_sp {
  display: block;
}
@media screen and (min-width: 768px) {
  body .br_sp {
    display: none;
  }
}
body .br_pc {
  display: none;
}
@media screen and (min-width: 1027.98px) {
  body .br_pc {
    display: block;
  }
}
body img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
body h2 {
  color: #fff;
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 767.98px) {
  body h2 {
    font-size: 14px;
    line-height: 1.428;
  }
}
body h2 span {
  font-family: "prohibition", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  body h2 span {
    font-size: 50px;
    line-height: 1.0576923077;
  }
}
body section {
  padding: 50px 0 60px;
}
@media screen and (max-width: 767.98px) {
  body section {
    padding: 40px 0 60px;
  }
}
body section.summary, body section.ticket, body section.inquiry, body footer {
  background-color: #00216A;
}
body section.summary p, body section.ticket p, body section.inquiry p, body footer p {
  color: #fff;
}
body section.news, body section.player, body section.item {
  background-color: #fff;
}
body section.news h2, body section.player h2, body section.item h2 {
  color: #707070;
}
body section.news h2 span, body section.player h2 span, body section.item h2 span {
  color: #00216A;
}
body section.item {
  background-color: #DCE7F8;
}
body .ta-c {
  text-align: center;
}
body small {
  font-weight: 300;
  display: block;
}
body small.corp {
  font-weight: 500;
  font-size: 14px;
  text-align: right;
  margin-right: 1em;
  margin-top: 1em;
}

body.menu-open {
  overflow-y: hidden;
}

/* ===================================================
遅延読み込み
====================================================*/
.trigger {
  opacity: 0;
}

.trigger.in.is-active {
  -webkit-animation: fadeIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: fadeIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
/* ===============
js-trigger up
===============*/
/* //trigger upをつける */
.trigger.up.is-active {
  -webkit-animation: slideUp 1s 0s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: slideUp 1s 0s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(180px);
            transform: translateY(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(180px);
            transform: translateY(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(-180px);
            transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) rotate(0) !important;
            transform: translateY(0) rotate(0) !important;
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(-180px);
            transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) rotate(0) !important;
            transform: translateY(0) rotate(0) !important;
  }
  40%, 100% {
    opacity: 1;
  }
}
#loading {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  font-family: "Protest Strike", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: grid;
  place-content: center;
  margin: auto;
  color: #DCE7F8;
  font-size: 70px;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #loading {
    font-size: 50px;
  }
}

#loading__wrap.disNone {
  display: none;
}

#loading.fadeOut {
  -webkit-animation: fadeOut 0.6s forwards;
          animation: fadeOut 0.6s forwards;
}

#loading__logo {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 14;
  display: grid;
  place-content: center;
  margin: auto;
}
#loading__logo img {
  width: 300px;
  height: 304px;
}
@media screen and (max-width: 767.98px) {
  #loading__logo img {
    width: 200px;
    height: 203px;
  }
}

#loading__logo.fadeOut {
  -webkit-animation: fadeOut 1s forwards;
          animation: fadeOut 1s forwards;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    @media screen and (max-width: 767.98px) {
      z-index: 0;
    }
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    @media screen and (max-width: 767.98px) {
      z-index: 0;
    }
  }
}
@media (scripting: none) {
  .trigger {
    opacity: 1;
  }
  #loading, #loading__logo {
    display: none;
  }
  html {
    scroll-behavior: smooth;
  }
}
/*--------------------------------------*
 * layout
 *--------------------------------------*/
/*--------------------------------------*
 * object
 *--------------------------------------*/
/* ===================================================
.inner
====================================================*/
.inner {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 880.98px) {
  .inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .inner {
    padding: 0 25px;
  }
}

/* ===================================================
#header
====================================================*/
#header {
  position: relative;
  z-index: 10;
}
#header .ham {
  position: fixed;
  top: 0px;
  right: 0px;
  background-color: #00216A;
  width: 80px;
  height: 80px;
  z-index: 21;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  display: block;
}
@media screen and (max-width: 767.98px) {
  #header .ham {
    width: 60px;
    height: 60px;
    top: 0px;
    right: 0px;
  }
}
#header .ham:hover {
  opacity: 0.7;
}
#header .ham span {
  background-color: #fff;
  height: 3px;
  position: absolute;
  right: 20px;
  width: 40px;
  z-index: 9;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767.98px) {
  #header .ham span {
    width: 30px;
    right: 15px;
  }
}
#header .ham span:nth-child(1) {
  top: 24px;
}
@media screen and (max-width: 767.98px) {
  #header .ham span:nth-child(1) {
    top: 18px;
  }
}
#header .ham span:nth-child(2) {
  top: 40px;
}
@media screen and (max-width: 767.98px) {
  #header .ham span:nth-child(2) {
    top: 30px;
  }
}
#header .ham span:nth-child(3) {
  top: 56px;
}
@media screen and (max-width: 767.98px) {
  #header .ham span:nth-child(3) {
    top: 42px;
  }
}
#header .globalMenu {
  background-color: #00216A;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0%;
  right: 0%;
  opacity: 0;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  visibility: hidden;
  overflow-y: autol;
}
#header .globalMenu ul {
  text-align: center;
  margin-top: 80px;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  #header .globalMenu ul {
    margin-top: 52px;
  }
}
#header .globalMenu ul li:not(:first-child) {
  margin-top: 22px;
}
#header .globalMenu ul li a {
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.3333;
}
#header .globalMenu ul li a span {
  color: #fff;
  display: block;
  font-size: 46px;
  font-family: "prohibition", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  #header .globalMenu ul li a span {
    font-size: 38px;
  }
}
#header .globalMenu span {
  display: block;
  font-weight: 300;
  margin-top: 32px;
}
#header .globalMenu.active {
  opacity: 100;
  z-index: 20;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background-color: #00216A;
  width: 100%;
  height: 100vh;
  position: fixed;
  visibility: visible;
  top: 0%;
  right: 0%;
  color: #fff;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  padding: 0 15px;
  overflow-y: auto;
}
#header .ham.active span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 40px;
}
@media screen and (max-width: 767.98px) {
  #header .ham.active span {
    top: 30px;
  }
}
#header .ham.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#header .ham.active span:nth-child(2), #header .ham.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header__under {
  background-color: #ffffff;
  position: relative;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767.98px) {
  .header__under {
    display: block;
    height: 90px;
    background-color: #ffffff !important;
  }
}
.header__under-img {
  width: 400px;
  height: 100px;
}
@media screen and (max-width: 767.98px) {
  .header__under-img {
    width: 220px;
    height: 50px;
    position: absolute;
    top: 20px;
    right: 35.6px;
  }
}
.header__under-toTop {
  margin: 20px 0;
  font-size: 0;
}
@media screen and (max-width: 767.98px) {
  .header__under-toTop {
    margin: 0;
  }
}

/* ===================================================
#footer
====================================================*/
footer {
  padding: 30px 0 20px;
  background-color: #DCE7F8;
  position: sticky;
  top: 100vh;
  width: 100%;
}
footer .footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  footer .footer__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
footer .footer__link li:not(:nth-of-type(1)):before {
  content: "|";
  margin: 0 1.9em;
  color: #ffffff;
}
@media screen and (max-width: 767.98px) {
  footer .footer__link li:not(:nth-of-type(1)):before {
    margin: 0 0.8em;
  }
}
footer .footer__link li a {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 767.98px) {
  footer .footer__link li a {
    font-size: 14px;
  }
}
footer small {
  font-weight: 300;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.025em;
  line-height: 1.428;
  margin-top: 20px;
}
@media screen and (max-width: 767.98px) {
  footer small {
    margin-top: 22px;
    font-size: 12px;
    font-weight: 400;
  }
}

/* ===================================================
.comming soon
====================================================*/
p.comingSoon {
  font-size: 52px;
  font-weight: 100;
  text-align: center;
  color: #00216A;
  line-height: 1.5;
  margin-top: 20px;
}
@media screen and (max-width: 767.98px) {
  p.comingSoon {
    font-size: 40px;
    line-height: 1.45;
  }
}
p.comingSoon02 {
  font-size: 24px;
  line-height: 1.4583333333;
}
@media screen and (max-width: 767.98px) {
  p.comingSoon02 {
    font-size: 20px;
    line-height: 1.45;
  }
}

.ticket .comingSoon {
  color: #fff;
}

/* ===================================================
.fv
====================================================*/
.fv h1 {
  overflow: hidden;
  text-align: center;
}
.fv img.fv_img {
  width: 100%;
  max-width: 760px;
  height: 100%;
  margin-top: 35px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: dodon 0.8s cubic-bezier(0.25, 2, 0.5, 1) forwards;
          animation: dodon 0.8s cubic-bezier(0.25, 2, 0.5, 1) forwards;
}
@media screen and (max-width: 767.98px) {
  .fv img.fv_img {
    margin-top: 22px;
    padding: 0 28px;
    -webkit-animation: none;
            animation: none;
  }
}
@-webkit-keyframes dodon {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(0px) scale(0);
            transform: translateY(0px) scale(0);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(0px) scale(1.5);
            transform: translateY(0px) scale(1.5);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
}
@keyframes dodon {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(0px) scale(0);
            transform: translateY(0px) scale(0);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(0px) scale(1.5);
            transform: translateY(0px) scale(1.5);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
}
@media screen and (max-width: 767.98px) {
  .fv .fv_txt {
    padding: 0 28px;
  }
}
.fv .fv_txt img {
  max-width: 468px;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .fv .fv_txt img {
    max-width: 92%;
  }
}
.fv .lead {
  padding: 40px 0 60px;
  font-weight: 700;
  font-size: 18px;
  line-height: 2.1;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .fv .lead {
    font-size: 16px;
    padding: 30px 25px 60px;
  }
}

/* ===================================================
#summary
====================================================*/
.summary table {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-collapse: collapse;
  margin-top: 30px;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .summary table {
    margin-top: 23px;
    font-size: 18px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .summary table tbody {
    display: block;
    background-color: #ffffff;
  }
}
.summary table tr {
  background-color: #DCE7F8;
  height: 100%;
}
.summary table tr:not(:last-child) {
  border-bottom: 1px solid #00216A;
}
@media screen and (max-width: 767.98px) {
  .summary table tr:not(:last-child) {
    border: none;
  }
}
@media screen and (max-width: 767.98px) {
  .summary table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: none;
  }
}
.summary table tr td {
  padding: 0 30px 0 30px;
  width: 18.18%;
  height: 100%;
}
@media screen and (max-width: 767.98px) {
  .summary table tr td {
    width: 100%;
    height: unset !important;
    padding: 5px 24px;
  }
}
.summary table tr td .td__txt {
  width: 62px;
  display: block;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.summary table tr th {
  text-align: left;
  padding: 30px;
  background-color: #ffffff;
}
@media screen and (max-width: 767.98px) {
  .summary table tr th {
    width: 100%;
    padding: 12px 20px 20px 20px;
    letter-spacing: 0.03em;
  }
}
.summary table tr th span {
  font-size: 18px;
  display: block;
  line-height: 1.4444;
}
@media screen and (max-width: 767.98px) {
  .summary table tr th span {
    font-size: 16px;
    letter-spacing: 0.015em;
  }
}
.summary .rule {
  margin-top: 40px;
  background-color: #ffffff;
  padding: 40px;
}
@media screen and (max-width: 767.98px) {
  .summary .rule {
    margin-top: 25px;
    padding: 20px;
  }
}
.summary .rule h4 {
  color: #DCE7F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.4583;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .summary .rule h4 {
    font-size: 18px;
    line-height: 1.444;
  }
}
.summary .rule h4::before, .summary .rule h4::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 21.6px;
  height: 36px;
}
@media screen and (max-width: 767.98px) {
  .summary .rule h4::before, .summary .rule h4::after {
    width: 16px;
    height: 27px;
  }
}
.summary .rule h4::before {
  background-image: url(../img/summery__deco01.png);
  margin-right: 27.4px;
}
@media screen and (max-width: 767.98px) {
  .summary .rule h4::before {
    margin-right: 20px;
  }
}
.summary .rule h4::after {
  background-image: url(../img/summery__deco02.png);
  margin-left: 27.4px;
}
@media screen and (max-width: 767.98px) {
  .summary .rule h4::after {
    margin-left: 20px;
  }
}
.summary .rule ul {
  margin-top: 24px;
}
@media screen and (max-width: 767.98px) {
  .summary .rule ul {
    margin-top: 20px;
  }
}
.summary .rule ul li {
  background-color: #E5F2FA;
  position: relative;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.1;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.98px) {
  .summary .rule ul li {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 1.3125;
  }
}
.summary .rule ul li::before {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  bottom: 0;
  width: 10px;
  display: block;
  background-color: #DCE7F8;
}
.summary p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.625;
  margin-top: 17px;
}
@media screen and (max-width: 767.98px) {
  .summary p {
    line-height: 1.5333;
    margin-top: 25px;
  }
}

/* ===================================================
#news
====================================================*/
.news ul {
  margin-top: 45px;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 767.98px) {
  .news ul {
    margin-top: 35px;
  }
}
.news ul li {
  border-top: 1px solid #BBBBBB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 20px;
  padding: 20px 0;
  line-height: 1.45;
}
@media screen and (max-width: 767.98px) {
  .news ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 16px;
    padding: 15px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news ul li:last-child {
  border-bottom: 1px solid #BBBBBB;
}
@media screen and (max-width: 767.98px) {
  .news ul li a {
    display: grid;
  }
}
.news ul li .date {
  color: #000000;
  font-size: 18px;
  margin-right: 58.5px;
  width: 90px;
  display: inline-block;
}
@media screen and (max-width: 767.98px) {
  .news ul li .date {
    font-size: 14px;
  }
}
.news__fl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .news__fl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ===================================================
#player
====================================================*/
.player .player__li-coach {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 880px) {
  .player .player__li-coach {
    margin-top: 25px;
    gap: 25px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.player .player__li-coach li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media screen and (max-width: 880px) {
  .player .player__li-coach li {
    gap: 10px;
  }
}
.player .player__li-coach li p {
  width: 300px;
  height: 50px;
  display: grid;
  place-content: center;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .player .player__li-coach li p {
    width: min(40vw, 300px);
  }
}
.player .player__li-coach li p.coach {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .player .player__li-coach li p.coach {
    font-size: 16px;
    line-height: 1.4375;
  }
}
.player .player__li-coach li p.player__li-coach01 {
  color: #DCE7F8;
  border: 2px solid #DCE7F8;
}
.player .player__li-coach li p.player__li-coach02 {
  color: #E60022;
  border: 2px solid #E60012;
}
@media screen and (max-width: 767.98px) {
  .player .player__li-coach li p.player__li-coach02Sp {
    height: 40px;
  }
}
.player .player__li-coach li p.player__li-coachName {
  font-size: 24px;
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.2em;
}
@media screen and (max-width: 767.98px) {
  .player .player__li-coach li p.player__li-coachName {
    font-size: 18px;
  }
}
.player .player__head {
  color: #707070;
  width: 100%;
  height: 50px;
  border: 2px solid #707070;
  margin-top: 30px;
  font-weight: 700;
  font-size: 20px;
  display: grid;
  line-height: 1.45;
  letter-spacing: 0.05em;
  place-content: center;
}
@media screen and (max-width: 767.98px) {
  .player .player__head {
    margin-top: 27px;
    font-size: 16px;
  }
}
.player .player__head02 {
  padding: 40px 0 10px;
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 1027.98px) {
  .player .player__head02 {
    font-size: 20px;
  }
}
.player .player__head02 {
  border-bottom: 1.5px solid #707070;
  color: #707070;
}
@media screen and (max-width: 767.98px) {
  .player .player__head02 {
    padding: 25px 0 10px;
  }
}
.player .player__li {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 140px;
     -moz-column-gap: 140px;
          column-gap: 140px;
  margin-top: 15px;
  row-gap: 20px;
  display: grid;
  grid-template-columns: 22.5% 22.5% 22.5%;
  font-size: 24px;
}
@media screen and (max-width: 880.98px) {
  .player .player__li {
    grid-template-columns: 21.5% 21.5% 21.5%;
  }
}
@media screen and (max-width: 767.98px) {
  .player .player__li {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    font-size: 18px;
    row-gap: 5px;
    grid-template-columns: 47% 47%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.player .player__li-team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 35px;
}
@media screen and (min-width: 1027.98px) {
  .player .player__li-team {
    margin-top: 50px;
  }
}
.player .player__li-team {
  gap: 80px;
}
@media screen and (max-width: 767.98px) {
  .player .player__li-team {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
  }
}
.player .player__li-team li {
  max-width: 400px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .player .player__li-team li {
    max-width: 100%;
  }
}
.player .player__li-teamName01, .player .player__li-teamName02 {
  max-width: 400px;
  width: 100%;
  height: 50px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .player .player__li-teamName01, .player .player__li-teamName02 {
    width: 100%;
    font-size: 16px;
    height: 40px;
    margin-bottom: 15px;
  }
}
.player .player__li-teamName01 {
  border: 2px solid #12136F;
  color: #12136F;
  background-color: #ffffff;
}
.player .player__li-teamName02 {
  border: 2px solid #12136F;
  background-color: #12136F;
  color: #ffffff;
}
.player .player__li-teamCoach {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
  width: 200px;
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 1027.98px) {
  .player .player__li-teamCoach {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767.98px) {
  .player .player__li-teamCoach {
    width: min(40vw, 300px);
    font-size: 18px;
  }
}
.player .player__li-teamCoach span {
  text-align: center;
  color: #4E4E4E;
  border-bottom: 1px solid #4E4E4E;
  padding-bottom: 9.5px;
  font-size: 20px;
  display: block;
  margin-bottom: 8.5px;
}
@media screen and (max-width: 767.98px) {
  .player .player__li-teamCoach span {
    font-size: 15px;
    padding-bottom: 6px;
    margin-bottom: 5px;
  }
}
.player .btn {
  width: 100%;
  margin: 73px auto 0;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767.98px) {
  .player .btn {
    margin: 50px auto 0;
  }
}
.player .btn a {
  border-radius: 9999px;
  border: 2px solid rgb(0, 134, 209);
  display: grid;
  place-content: center;
  color: #0086D1;
  width: 240px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.98px) {
  .player .btn a {
    width: 240px;
    height: 50px;
    font-size: 18px;
  }
  .player .btn a:active {
    -webkit-box-shadow: 0 7px 10px rgba(0, 134, 209, 0.302);
            box-shadow: 0 7px 10px rgba(0, 134, 209, 0.302);
    border-color: transparent;
    color: #ffffff;
    background-color: #DCE7F8;
  }
}
.player .btn a:hover {
  -webkit-box-shadow: 0 7px 10px rgba(0, 134, 209, 0.302);
          box-shadow: 0 7px 10px rgba(0, 134, 209, 0.302);
  border-color: transparent;
  color: #ffffff;
  background-color: #DCE7F8;
}
.player .player__attention {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55555;
  margin-top: 25px;
}
@media screen and (max-width: 767.98px) {
  .player .player__attention {
    font-size: 16px;
    line-height: 1.333;
    margin-top: 21px;
  }
}

/* ===================================================
#ticket
====================================================*/
.ticket {
  background-color: #ffffff;
}
.ticket h4 {
  font-weight: 900;
  color: #707070;
  font-size: 36px;
  line-height: 1.444;
  margin-top: 30px;
}
@media screen and (max-width: 767.98px) {
  .ticket h4 {
    font-size: 26px;
    line-height: 1.384;
    margin-top: 15px;
  }
}
.ticket h4 span {
  font-size: 46px;
  line-height: 1.434;
}
@media screen and (max-width: 767.98px) {
  .ticket h4 span {
    font-size: 32px;
    line-height: 1.125;
  }
}
.ticket dl {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.ticket dl:nth-of-type(1) {
  margin-top: 30px;
}
@media screen and (max-width: 767.98px) {
  .ticket dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ticket dl:nth-of-type(1) {
    margin-top: 15px;
  }
}
.ticket dl:not(:last-child) {
  margin-bottom: 10px;
}
.ticket dl dt, .ticket dl dd {
  padding: 16px 25px 16px 30px;
  display: grid;
  place-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767.98px) {
  .ticket dl dt, .ticket dl dd {
    padding: 6px 20px 6px 20px;
  }
}
.ticket dl dt {
  background-color: #40A4DC;
  color: #ffffff;
  width: 43%;
  font-size: 20px;
}
@media screen and (max-width: 767.98px) {
  .ticket dl dt {
    font-size: 16px;
    width: 100%;
    border-left: 1px solid #40A4DC;
    border-right: 1px solid #40A4DC;
    border-top: 1px solid #40A4DC;
  }
}
.ticket dl dd {
  background-color: #ffffff;
  width: 57%;
  font-size: 24px;
  border-bottom: 1px solid #BBBBBB;
  border-right: 1px solid #BBBBBB;
  border-top: 1px solid #BBBBBB;
}
@media screen and (max-width: 767.98px) {
  .ticket dl dd {
    font-size: 18px;
    width: 100%;
    border-bottom: 1px solid #BBBBBB;
    border-right: 1px solid #BBBBBB;
    border-left: 1px solid #BBBBBB;
    border-top: none;
  }
}
.ticket dl dd span {
  font-size: 14px;
  line-height: 1.3;
  display: inline-block;
}
@media screen and (max-width: 767.98px) {
  .ticket dl dd span {
    font-size: 12px;
  }
}

/* ===================================================
#inquiry
====================================================*/
.inquiry {
  text-align: center;
  padding: 45px 0;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767.98px) {
  .inquiry .inner {
    padding: 0 20px;
  }
}
.inquiry h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
}
@media screen and (max-width: 767.98px) {
  .inquiry h3 {
    font-size: 18px;
  }
}
.inquiry .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.inquiry .tel .num {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .inquiry .tel .num {
    font-size: 28px;
  }
}
.inquiry .tel span {
  font-size: 15px;
  font-weight: 400;
  margin-right: 5px;
  margin-bottom: 6px;
}
@media screen and (max-width: 767.98px) {
  .inquiry .tel span {
    font-size: 14px;
    margin-right: 3px;
    margin-bottom: 3px;
  }
}
.inquiry .tel span svg {
  max-width: 30px;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .inquiry .tel span svg {
    max-width: 26px;
  }
}
.inquiry .openHour {
  font-weight: 400;
  font-size: 15px;
}
@media screen and (max-width: 767.98px) {
  .inquiry .openHour {
    font-size: 14px;
  }
}

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

/* ===================================================
余白
====================================================*/
.m-a {
  margin: 0 auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.mt-105 {
  margin-top: 105px !important;
}

.mr-105 {
  margin-right: 105px !important;
}

.mb-105 {
  margin-bottom: 105px !important;
}

.ml-105 {
  margin-left: 105px !important;
}

.pt-105 {
  padding-top: 105px !important;
}

.pr-105 {
  padding-right: 105px !important;
}

.pb-105 {
  padding-bottom: 105px !important;
}

.pl-105 {
  padding-left: 105px !important;
}

.mt-110 {
  margin-top: 110px !important;
}

.mr-110 {
  margin-right: 110px !important;
}

.mb-110 {
  margin-bottom: 110px !important;
}

.ml-110 {
  margin-left: 110px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pr-110 {
  padding-right: 110px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pl-110 {
  padding-left: 110px !important;
}

.mt-115 {
  margin-top: 115px !important;
}

.mr-115 {
  margin-right: 115px !important;
}

.mb-115 {
  margin-bottom: 115px !important;
}

.ml-115 {
  margin-left: 115px !important;
}

.pt-115 {
  padding-top: 115px !important;
}

.pr-115 {
  padding-right: 115px !important;
}

.pb-115 {
  padding-bottom: 115px !important;
}

.pl-115 {
  padding-left: 115px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mr-120 {
  margin-right: 120px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pr-120 {
  padding-right: 120px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pl-120 {
  padding-left: 120px !important;
}

.mt-125 {
  margin-top: 125px !important;
}

.mr-125 {
  margin-right: 125px !important;
}

.mb-125 {
  margin-bottom: 125px !important;
}

.ml-125 {
  margin-left: 125px !important;
}

.pt-125 {
  padding-top: 125px !important;
}

.pr-125 {
  padding-right: 125px !important;
}

.pb-125 {
  padding-bottom: 125px !important;
}

.pl-125 {
  padding-left: 125px !important;
}

.mt-130 {
  margin-top: 130px !important;
}

.mr-130 {
  margin-right: 130px !important;
}

.mb-130 {
  margin-bottom: 130px !important;
}

.ml-130 {
  margin-left: 130px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pr-130 {
  padding-right: 130px !important;
}

.pb-130 {
  padding-bottom: 130px !important;
}

.pl-130 {
  padding-left: 130px !important;
}

.mt-135 {
  margin-top: 135px !important;
}

.mr-135 {
  margin-right: 135px !important;
}

.mb-135 {
  margin-bottom: 135px !important;
}

.ml-135 {
  margin-left: 135px !important;
}

.pt-135 {
  padding-top: 135px !important;
}

.pr-135 {
  padding-right: 135px !important;
}

.pb-135 {
  padding-bottom: 135px !important;
}

.pl-135 {
  padding-left: 135px !important;
}

.mt-140 {
  margin-top: 140px !important;
}

.mr-140 {
  margin-right: 140px !important;
}

.mb-140 {
  margin-bottom: 140px !important;
}

.ml-140 {
  margin-left: 140px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

.pr-140 {
  padding-right: 140px !important;
}

.pb-140 {
  padding-bottom: 140px !important;
}

.pl-140 {
  padding-left: 140px !important;
}

.mt-145 {
  margin-top: 145px !important;
}

.mr-145 {
  margin-right: 145px !important;
}

.mb-145 {
  margin-bottom: 145px !important;
}

.ml-145 {
  margin-left: 145px !important;
}

.pt-145 {
  padding-top: 145px !important;
}

.pr-145 {
  padding-right: 145px !important;
}

.pb-145 {
  padding-bottom: 145px !important;
}

.pl-145 {
  padding-left: 145px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mr-150 {
  margin-right: 150px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.ml-150 {
  margin-left: 150px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pr-150 {
  padding-right: 150px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pl-150 {
  padding-left: 150px !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.ta-l {
  text-align: left !important;
}

.bt-none {
  border-top: 0 !important;
}

.bb-none {
  border-bottom: 0 !important;
}/*# sourceMappingURL=style.css.map */