@charset "UTF-8";
/*
    Theme Name: Project_Name
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, address, em, img, small, strong, b, i,
dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, canvas, footer,
header, menu, nav, section, time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, footer, header, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

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

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

em, b {
  font-style: normal;
}

img {
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

input, select {
  vertical-align: middle;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dummy {
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.45;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 10px;
}

body {
  position: relative;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.5rem;
  line-height: 1.75;
  color: #FFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #101010;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  color: #FFF;
  transition: 0.3s;
}
a:active, a:focus {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
@media screen and (min-width: 580px) {
  a:hover {
    opacity: 0.65 !important;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

input [type=submit] {
  cursor: pointer;
}

input {
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

input[type=submit],
input[type=button],
input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  background: none;
  outline: none;
}

.st-header__logo {
  display: block;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999999;
}

.st-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  width: 60px;
  height: 60px;
  background: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.25) 100%);
  background: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.25) 100%);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.25) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#a6ffffff",GradientType=1 );
}
.st-header__menu div {
  position: relative;
}
.st-header__menu span {
  display: block;
  width: 15px;
  height: 2px;
  background-color: #FFF;
  transition: 0.3s;
}
.st-header__menu span:nth-child(2) {
  margin-top: 3px;
}
.st-header__menu.is-open div {
  left: 3px;
}
.st-header__menu.is-open span {
  width: 19px;
}
.st-header__menu.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(3px);
}
.st-header__menu.is-open span:nth-child(2) {
  transform: rotate(-45deg) translate(0.5px, -4px);
}

.st-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  padding: 80px 0 60px;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  -ms-overflow-y: scroll;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  transition: 0.3s;
}
.st-header__nav.is-open {
  visibility: visible;
  opacity: 1;
}
.st-header__nav .sw-league .sw-heading__normal {
  padding-top: 20px;
  font-size: 1.3rem;
}
@media screen and (min-width: 960px) {
  .st-header__nav .sw-league .sw-heading__normal {
    font-size: 1.5rem;
  }
}
.st-header__nav .sw-league .sw-league__unit {
  width: 19%;
  font-size: 1.2rem;
  padding: 10px 0;
  margin-right: 1.25% !important;
  margin-bottom: 1.25% !important;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.075);
}
.st-header__nav .sw-league .sw-league__unit:nth-child(4n) {
  margin-right: 1.25% !important;
}
.st-header__nav .sw-league .sw-league__unit:nth-child(5n) {
  margin-right: 0 !important;
}
@media screen and (min-width: 960px) {
  .st-header__nav .sw-league .sw-league__unit {
    font-size: 1.4rem;
  }
}
.st-header__nav .sw-banner__units {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.st-header__nav .sw-banner__units .sw-banner__unit {
  width: calc(50% - 5px);
  margin: 0 0 10px;
}
.st-header__nav .sw-banner__units .sw-banner__unit h3 {
  text-align: center;
  padding: 5px 10px 0;
  line-height: 1.3;
}
.st-header__nav .sw-banner__units .sw-banner__unit p {
  margin-top: 3px;
}

.st-header__navInner ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.st-header__navInner ul li {
  width: 50%;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.st-header__navInner ul li a {
  display: block;
  position: relative;
  padding: 20px;
  color: #FFF;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  background-color: #FFF;
}
.st-header__navInner ul li a:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
  opacity: 0.95;
}

.st-footer {
  padding: 40px 0 60px;
}
.st-footer__sponsors {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 960px) {
  .st-footer__sponsors {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}

.st-footer__sponsor {
  position: relative;
  width: calc(50% - 5px);
  margin-bottom: 15px;
}
@media screen and (min-width: 960px) {
  .st-footer__sponsor {
    width: calc(33.33% - 8px);
    margin-right: 12px;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 960px) {
  .st-footer__sponsor:nth-child(3n) {
    margin-right: 0;
  }
}
.st-footer__sponsor img {
  width: 100%;
  height: auto;
}
.st-footer__sponsor p {
  padding-top: 3px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.1rem;
}
@media screen and (min-width: 580px) {
  .st-footer__sponsor p {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 960px) {
  .st-footer__sponsor p {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 960px) {
  .st-footer__sponsor.if-blank {
    display: none;
  }
}

.st-footer__sponsorImage {
  width: 100%;
  height: auto;
}
.st-footer__sponsorImage.if-blank {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  padding-top: 57%;
  background-color: rgba(255, 255, 255, 0.05);
}

.st-footer__company {
  padding-top: 20px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.2rem;
}
.st-footer__company a {
  text-decoration: underline;
}
.st-footer__company a:hover {
  text-decoration: none;
}

.st-footer__subSponsors {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 960px) {
  .st-footer__subSponsors {
    justify-content: flex-start;
  }
}

.st-footer__subSponsor {
  position: relative;
  width: calc(50% - 5px);
  margin-bottom: 15px;
}
@media screen and (min-width: 960px) {
  .st-footer__subSponsor {
    width: calc(25% - 9px);
    margin-right: 12px;
    margin-bottom: 12px;
  }
}
.st-footer__subSponsor:nth-child(3n) {
  margin-right: 0;
}
@media screen and (min-width: 960px) {
  .st-footer__subSponsor:nth-child(3n) {
    margin-right: 12px;
  }
}
@media screen and (min-width: 960px) {
  .st-footer__subSponsor:nth-child(4n) {
    margin-right: 0;
  }
}
.st-footer__subSponsor img {
  width: 100%;
  height: auto;
}
.st-footer__subSponsor p {
  padding-top: 10px;
  font-size: 1.1rem;
  line-height: 1.4;
}
@media screen and (min-width: 580px) {
  .st-footer__subSponsor p {
    font-size: 1.3rem;
  }
}
.st-footer__subSponsor.if-blank {
  display: none;
}
@media screen and (min-width: 960px) {
  .st-footer__subSponsor.if-blank {
    display: block;
  }
}

.st-footer__subSponsorImage.if-blank {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  padding-top: 57%;
  background-color: rgba(255, 255, 255, 0.05);
}

.st-footer__ticket {
  margin: 20px 0 30px;
  padding: 15px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.st-footer__ticket p {
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.1rem;
}
@media screen and (min-width: 580px) {
  .st-footer__ticket p {
    font-size: 1.3rem;
  }
}

.st-footer__copyright {
  padding: 30px 0 0;
  text-align: center;
  color: #FFF;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 0.85;
}

.sw-baller__units {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 960px) {
  .sw-baller__units {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}

.sw-baller__unit {
  position: relative;
  display: flex;
  width: calc(50% - 7.5px);
  padding-top: calc(75% - 7.5px);
  margin-bottom: 15px;
  background-image: url(assets/img/baller/baller-default.svg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 960px) {
  .sw-baller__unit {
    width: calc(33.33% - 10px);
    padding-top: calc(50% - 10px);
    margin-right: 15px;
  }
}
@media screen and (min-width: 960px) {
  .sw-baller__unit:nth-child(3n) {
    margin-right: 0;
  }
}
.sw-baller__unitTitle {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
}
.sw-baller__unitTitle h2 {
  font-size: 1.8rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1;
}
.sw-baller__unitTitle p {
  font-size: 1.3rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1;
}

.sw-banner {
  padding-bottom: 35px;
}

.sw-banner__units {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .sw-banner__units {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.sw-banner__unit {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 140px;
  margin-top: 20px;
}
@media screen and (min-width: 580px) {
  .sw-banner__unit {
    height: 180px;
  }
}
@media screen and (min-width: 960px) {
  .sw-banner__unit {
    width: calc(50% - 10px);
  }
}
.sw-banner__unit:first-child {
  margin-top: 5px;
}
@media screen and (min-width: 580px) {
  .sw-banner__unit:first-child {
    margin-top: 10px;
  }
}
@media screen and (min-width: 960px) {
  .sw-banner__unit:first-child {
    margin-top: 20px;
  }
}
.sw-banner__unit.if-referee {
  background-image: url("assets/img/common/banner-referee.jpg");
  background-size: cover;
  background-position: center;
}
.sw-banner__unit.if-volunteer {
  background-image: url("assets/img/common/banner-volunteer.jpg");
  background-size: cover;
  background-position: center;
}
.sw-banner__unit.if-organizer {
  background-image: url("assets/img/common/banner-organizer.jpg");
  background-size: cover;
  background-position: center;
}
.sw-banner__unit.if-camera {
  background-image: url("assets/img/common/banner-camera.jpg");
  background-size: cover;
  background-position: center;
}
.sw-banner__unit:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.sw-banner__unit h3 {
  position: relative;
  z-index: 1;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.5rem;
}
@media screen and (min-width: 960px) {
  .sw-banner__unit h3 {
    font-size: 1.8rem;
  }
}
.sw-banner__unit p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: bold;
}
@media screen and (min-width: 580px) {
  .sw-banner__unit p {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 960px) {
  .sw-banner__unit p {
    font-size: 1.5rem;
  }
}

.sw-bg {
  width: 100%;
  margin-top: 45px;
  padding-top: 62.75%;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 580px) {
  .sw-bg {
    padding-top: 44.75%;
  }
}

.sw-breadCrumb {
  padding: 80px 20px 0;
  margin-bottom: 20px;
}
.sw-breadCrumb ul {
  display: flex;
  align-items: center;
}
.sw-breadCrumb ul li {
  margin-right: 10px;
}
.sw-breadCrumb ul li a,
.sw-breadCrumb ul li span {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
}
@media screen and (min-width: 580px) {
  .sw-breadCrumb ul li a,
  .sw-breadCrumb ul li span {
    font-size: 1.2rem;
  }
}
.sw-breadCrumb ul li.arrow {
  display: flex;
  align-items: center;
}
.sw-breadCrumb ul li.arrow:before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #FFF;
}
.sw-breadCrumb ul li.arrow:after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
}
.sw-breadCrumb ul li a,
.sw-breadCrumb ul li span {
  display: block;
}

.sw-button__normal a {
  display: block;
  max-width: 260px;
  margin: 0 auto;
  padding: 15px 20px;
  color: #000000;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 );
  border-radius: 2px;
  box-shadow: 1px 5px 20px rgba(0, 0, 0, 0.55);
  vertical-align: bottom;
}
@media screen and (min-width: 960px) {
  .sw-button__normal a {
    font-size: 1.5rem;
  }
}
.sw-button__normal a.if-ja {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.sw-button__normal a.if-free {
  color: #FFF;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  pointer-events: none;
}
.sw-button__normal a.if-en {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}
.sw-button__normal a span {
  display: inline-block;
  margin-right: 7px;
  padding-bottom: 2px;
}
.sw-button__normal a.if-yellow {
  background: #FDFF00;
}
.sw-button__normal a.if-wide {
  max-width: 100%;
}

.sw-button__normalWrap {
  position: relative;
  margin-top: 30px;
  padding: 0 5% 20px;
}
@media screen and (min-width: 580px) {
  .sw-button__normalWrap {
    padding-bottom: 40px;
    margin-top: 40px;
  }
}
.sw-button__normalWrap:before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(100% - 20px);
  background-color: rgba(255, 255, 255, 0.05);
}
@media screen and (min-width: 580px) {
  .sw-button__normalWrap:before {
    display: none;
  }
}
.sw-button__normalWrap .sw-button__normal {
  position: relative;
  z-index: 2;
}

.sw-contentWrap {
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .sw-contentWrap {
    max-width: 850px;
  }
}

.sw-contentWrap__inner {
  padding: 0 5%;
}
@media screen and (min-width: 580px) {
  .sw-contentWrap__inner {
    padding: 0;
  }
}

.sw-flyer {
  max-width: 550px;
  background-color: #101010;
}
@media screen and (min-width: 580px) {
  .sw-flyer img {
    width: 550px;
    max-width: 550px;
  }
}

.sw-flyer__wrapper {
  align-items: center;
}

.sw-flyer__slide a,
.sw-flyer__slide div {
  display: block;
}
.sw-flyer__slide a img,
.sw-flyer__slide div img {
  display: block;
  margin: 0 auto;
}

.swiper-pagination-bullet-active {
  width: 5px !important;
  height: 5px !important;
}

.team-single .sw-flyer,
.baller-single .sw-flyer {
  background-color: #101010;
}
.team-single .sw-flyer__pagination,
.baller-single .sw-flyer__pagination {
  background-color: rgba(255, 255, 255, 0.05);
}
@media screen and (min-width: 580px) {
  .team-single .sw-flyer__pagination,
  .baller-single .sw-flyer__pagination {
    background-color: transparent;
  }
}

.sw-heading__normal {
  width: 100%;
  padding-top: 40px;
  margin-bottom: 15px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0;
}
.sw-heading__normal.if-small {
  font-size: 1.7rem;
}
@media screen and (min-width: 580px) {
  .sw-heading__normal {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 960px) {
  .sw-heading__normal {
    font-size: 1.8rem;
  }
}

.sw-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 120px;
}
@media screen and (min-width: 580px) {
  .sw-hero {
    height: 240px;
  }
}

.sw-hero__title {
  padding-bottom: 25px;
  font-size: 2.2rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 580px) {
  .sw-hero__title {
    padding-bottom: 50px;
    font-size: 3.6rem;
  }
}
.sw-hero__title.if-multiple {
  padding-bottom: 0;
  line-height: 1;
}
.sw-hero__title.if-multiple + p {
  margin-top: 7px;
  padding-bottom: 18px;
  font-size: 1.1rem;
  font-weight: bold;
}

.sw-league__units {
  display: flex;
  flex-wrap: wrap;
}

.sw-league__unit {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  padding: 12px 15px 12px;
  text-align: center;
  color: #000000;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
  font-weight: bold;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 );
  border-radius: 2px;
  box-shadow: 1px 5px 20px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 580px) {
  .sw-league__unit {
    width: 24.0625%;
    margin-right: 1.25% !important;
    margin-bottom: 1.25% !important;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 960px) {
  .sw-league__unit {
    width: 18.8%;
    margin-right: 1.5% !important;
    margin-bottom: 1.5% !important;
    font-size: 1.5rem;
  }
}
.sw-league__unit:nth-child(3n) {
  margin-right: 0;
}
@media screen and (min-width: 580px) {
  .sw-league__unit:nth-child(3n) {
    margin-right: 1.25% !important;
  }
}
@media screen and (min-width: 960px) {
  .sw-league__unit:nth-child(3n) {
    margin-right: 1.5% !important;
  }
}
@media screen and (min-width: 580px) {
  .sw-league__unit:nth-child(4n) {
    margin-right: 0 !important;
  }
}
@media screen and (min-width: 960px) {
  .sw-league__unit:nth-child(4n) {
    margin-right: 1.5% !important;
  }
}
@media screen and (min-width: 960px) {
  .sw-league__unit:nth-child(5n) {
    margin-right: 0 !important;
  }
}
.sw-league__unit img {
  width: 100%;
  height: auto;
}

.sw-menu__units {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sw-menu__unit {
  display: block;
  width: 50%;
}
@media screen and (min-width: 960px) {
  .sw-menu__unit {
    width: 33.33%;
  }
}
.sw-menu__unit p {
  position: relative;
  padding: 16px 15px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.9;
}
@media screen and (min-width: 960px) {
  .sw-menu__unit p {
    font-size: 1.4rem;
  }
}
.sw-menu__unit p:after {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  right: 18px;
  width: 4px;
  height: 4px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  opacity: 0.25;
  transform: rotate(-45deg);
}
.sw-menu__unit p.if-hasChild:after {
  top: 23px;
  right: 17px;
  transform: rotate(45deg);
}

.sw-menu__sns {
  display: flex;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sw-menu__snsUnit {
  width: 33.33%;
  text-align: center;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sw-menu__snsUnit:nth-child(3n) {
  width: 33.34%;
}

@media screen and (min-width: 580px) {
  .st-header .sw-menu {
    max-width: 850px;
  }
  .st-header .sw-menu .sw-menu__unit {
    width: 33.33%;
  }
  .st-header .sw-menu .sw-menu__unit p {
    padding: 30px 15px;
    font-size: 1.3rem;
  }
  .st-header .sw-menu .sw-menu__unit p:after {
    top: 45px;
    right: 25px;
  }
}
.sw-modal__filter {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.98);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.sw-modal__filter.is-open {
  visibility: visible;
  opacity: 1;
}

.sw-modal__unit {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 100px 20px 45px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 99999999;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.sw-modal__unit .sw-schedule__event {
  position: relative;
  z-index: 999999999;
}
@media screen and (min-width: 960px) {
  .sw-modal__unit .sw-schedule__event {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .sw-modal__unit .sw-schedule__eventUnit {
    width: 100%;
  }
}
.sw-modal__unit.is-open {
  visibility: visible;
  opacity: 1;
}

.sw-modal__unitInner {
  position: relative;
  margin: 0 auto;
  max-width: 500px;
  z-index: 999999999;
}

.sw-modal__cross {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 1.2rem;
  color: #FFF;
}

.sw-news__unit {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.sw-news__unit:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sw-news__head {
  display: flex;
  align-items: center;
}

.sw-news__place {
  display: block;
  width: 54px;
  margin-right: 5px;
  padding: 3px 0 4px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000000;
  line-height: 1;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 );
}
@media screen and (min-width: 580px) {
  .sw-news__place {
    font-size: 1.3rem;
  }
}

.sw-news__time {
  margin-left: 5px;
  font-size: 1.1rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}
@media screen and (min-width: 580px) {
  .sw-news__time {
    font-size: 1.3rem;
  }
}

.sw-news__title {
  margin-top: 6px;
  line-height: 1.35;
}

.sw-pagination {
  padding: 20px 0 30px;
}

.sw-pagination__content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sw-pagination__content li {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  overflow: hidden;
}
.sw-pagination__content li + li {
  margin-left: 10px;
}
.sw-pagination__content li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .sw-pagination__content li a {
    padding-top: 3px;
  }
}
.sw-pagination__content li.is-current a {
  color: #000000;
  background-color: #FFF;
}

@media screen and (min-width: 960px) {
  .sw-ranking {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

.sw-ranking__unit {
  display: flex;
  align-items: center;
  color: #000000;
  background-color: #FFF;
}
@media screen and (min-width: 960px) {
  .sw-ranking__unit {
    width: calc(50% - 7.5px);
  }
}
.sw-ranking__unit + .sw-ranking__unit {
  margin-top: 10px;
}
@media screen and (min-width: 960px) {
  .sw-ranking__unit + .sw-ranking__unit {
    margin-top: 15px;
  }
}
@media screen and (min-width: 960px) {
  .sw-ranking__unit:nth-child(2) {
    margin-top: 0;
  }
}

.sw-ranking__image {
  width: 92px;
  height: 92px;
  background-size: cover;
  background-position: center;
  background-image: url(assets/img/team/teamlogo_none.jpg);
}

.sw-ranking__content {
  padding: 0 10px;
}

.sw-ranking__rank {
  font-size: 1.1rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1;
}
.sw-ranking__rank span {
  font-size: 1.4rem;
}

.sw-ranking__title {
  font-size: 1.6rem;
}

.sw-schedule__head {
  display: flex;
  border-bottom: 2px solid #212121;
}

.sw-schedule__month {
  width: 42.855%;
  padding: 10px 0;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  border-right: 2px solid #212121;
  background-color: rgba(255, 255, 255, 0.05);
}
.sw-schedule__month span {
  display: block;
  font-weight: bold;
  line-height: 1;
}
.sw-schedule__month span.year {
  font-size: 1.3rem;
}
.sw-schedule__month span.month {
  font-size: 3.2rem;
}

.sw-schedule__prev,
.sw-schedule__next {
  position: relative;
  width: 28.57%;
  background-color: rgba(255, 255, 255, 0.05);
}
.sw-schedule__prev:after,
.sw-schedule__next:after {
  content: "";
  display: block;
  position: absolute;
  top: 29px;
  width: 4px;
  height: 4px;
  border-bottom: 2px solid #FFF;
}

.sw-schedule__prev {
  border-right: 2px solid #212121;
}
.sw-schedule__prev:after {
  left: 17px;
  border-left: 2px solid #FFF;
  transform: rotate(45deg);
}

.sw-schedule__next:after {
  right: 17px;
  border-right: 2px solid #FFF;
  transform: rotate(-45deg);
}

.sw-schedule__days {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #212121;
}

.sw-schedule__day {
  width: 14.285%;
  padding: 5px 0;
  color: #000000;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #FFF;
  letter-spacing: 0.1em;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border-right: 2px solid #212121;
}
.sw-schedule__day:nth-child(7n) {
  border-right: none;
}

.sw-schedule__dates {
  display: flex;
  flex-wrap: wrap;
}

.sw-schedule__date {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 14.285%;
  min-height: 65px;
  padding-top: 10px;
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.05);
  border-right: 2px solid #212121;
  border-bottom: 2px solid #212121;
}
@media screen and (min-width: 580px) {
  .sw-schedule__date {
    min-height: 75px;
  }
}
@media screen and (min-width: 960px) {
  .sw-schedule__date {
    min-height: 85px;
  }
}
.sw-schedule__date.is-event {
  color: #000000;
  background: rgb(237, 155, 71);
  background: -moz-linear-gradient(45deg, rgba(237, 155, 71, 0.9) 0%, rgba(253, 255, 0, 0.9) 100%);
  background: -webkit-linear-gradient(45deg, rgba(237, 155, 71, 0.9) 0%, rgba(253, 255, 0, 0.9) 100%);
  background: linear-gradient(45deg, rgba(237, 155, 71, 0.9) 0%, rgba(253, 255, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ed9b47", endColorstr="#fdff00",GradientType=1 );
}
.sw-schedule__date:nth-child(7n) {
  border-right: none;
}
.sw-schedule__date .sw-schedule__dateInner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 6px;
}
.sw-schedule__date .sw-schedule__dateInner > p {
  position: absolute;
  top: 3px;
  left: 3px;
  font-size: 1rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1;
}
.sw-schedule__date .sw-schedule__dateInner > ul {
  list-style-type: none !important;
  background-image: none !important;
}
.sw-schedule__date .sw-schedule__dateInner > ul > li {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  list-style-type: none !important;
  background-image: none !important;
}
@media screen and (min-width: 960px) {
  .sw-schedule__date .sw-schedule__dateInner > ul > li {
    font-size: 1.3rem;
  }
}
.sw-schedule__date .sw-schedule__dateInner > ul > li + li {
  margin-top: 3px;
}
@media screen and (min-width: 960px) {
  .sw-schedule__date .sw-schedule__dateInner > ul > li + li {
    margin-top: 5px;
  }
}

@media screen and (min-width: 580px) {
  .sw-schedule__calendar {
    padding: 0 35px;
  }
}

.sw-schedule__calendarText {
  padding: 0 20px;
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.55;
}
@media screen and (min-width: 580px) {
  .sw-schedule__calendarText {
    text-align: center;
  }
}

@media screen and (min-width: 580px) {
  .sw-schedule__event {
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  .sw-schedule__event {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

.sw-schedule__eventUnit {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (min-width: 960px) {
  .sw-schedule__eventUnit {
    width: calc(50% - 10px);
  }
}
.sw-schedule__eventUnit:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (min-width: 960px) {
  .sw-schedule__eventUnit:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media screen and (min-width: 580px) {
  .sw-schedule__eventImage img {
    width: 150px;
    height: 150px;
  }
}

.sw-schedule__eventContent {
  flex: 1;
  padding-left: 15px;
}

.sw-schedule__eventIcons {
  display: flex;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sw-schedule__eventIcon {
  display: block;
  width: 54px;
  margin-right: 5px;
  padding: 3px 5px 3px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000000;
  line-height: 1;
  white-space: nowrap;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 );
}
@media screen and (min-width: 580px) {
  .sw-schedule__eventIcon {
    margin-top: 7px;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .sw-schedule__eventIcon {
    padding: 5px 0 3px;
  }
}
.sw-schedule__eventIcon.if-free {
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #FFF;
  background: transparent;
}
.sw-schedule__eventIcon.if-entry {
  width: auto;
  border: 1px solid rgba(118, 255, 0, 0.45);
  color: #76FF00;
  background: transparent;
}
.sw-schedule__eventIcon.if-ticket {
  width: auto;
  border: 1px solid rgba(253, 255, 0, 0.45);
  color: #FDFF00;
  background: transparent;
}
.sw-schedule__eventIcon.if-result {
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #FFF;
  background: transparent;
}
.sw-schedule__eventIcon + .sw-schedule__eventIcons {
  margin-top: 5px;
}

.sw-schedule__title {
  margin-top: 5px;
  line-height: 1.35;
  font-size: 1.8rem;
}
@media screen and (min-width: 580px) {
  .sw-schedule__title {
    font-size: 1.8rem;
  }
}

.sw-schedule__info {
  margin-top: 9px;
}
.sw-schedule__info li {
  font-size: 1.2rem;
  line-height: 1;
}
.sw-schedule__info li + li {
  margin-top: 3px;
}

.sw-schedule__otherMonth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 25px;
}

.sw-schedule__otherMonthPrev,
.sw-schedule__otherMonthNext {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.3rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}

.sw-schedule__otherMonthPrev:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(45deg);
}

.sw-schedule__otherMonthNext:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(-45deg);
}

.sw-section {
  padding-bottom: 45px;
}

.sw-section__heading {
  margin-bottom: 15px;
}
.sw-section__heading.if-large {
  font-size: 1.8rem;
}
@media screen and (min-width: 580px) {
  .sw-section__heading {
    font-size: 1.8rem;
  }
}

.sw-section__text p {
  font-size: 1.4rem;
}
@media screen and (min-width: 580px) {
  .sw-section__text p {
    font-size: 1.5rem;
  }
}
.sw-section__text p + p {
  margin-top: 15px;
}

.sw-sns__tiktok {
  display: flex;
  justify-content: center;
}
.sw-sns__tiktok iframe {
  width: 280px;
  height: 575px;
  margin: 0 auto;
}
.sw-sns__tiktok .banner {
  display: none !important;
}

.sw-sns__instagram {
  padding-top: 45px;
}
.sw-sns__instagram > div {
  display: none !important;
}

@media screen and (min-width: 580px) {
  .sw-sns__youtube {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 580px) {
  .sw-sns__youtubeUnit {
    width: 48%;
    margin-bottom: 25px;
  }
}
.sw-sns__youtubeUnit + .sw-sns__youtubeUnit {
  margin-top: 25px;
}
@media screen and (min-width: 580px) {
  .sw-sns__youtubeUnit + .sw-sns__youtubeUnit {
    margin-top: 0;
  }
}
.sw-sns__youtubeUnit iframe {
  width: 100%;
  height: 50vw;
}
@media screen and (min-width: 580px) {
  .sw-sns__youtubeUnit iframe {
    height: 149px;
  }
}
@media screen and (min-width: 960px) {
  .sw-sns__youtubeUnit iframe {
    height: 229px;
  }
}
.sw-sns__youtubeUnit a {
  display: block;
}
.sw-sns__youtubeUnit a h3 {
  margin-top: 3px;
  font-size: 1.2rem;
  font-weight: normal;
  color: #FFF;
  line-height: 1.45;
}
@media screen and (min-width: 960px) {
  .sw-sns__youtubeUnit a h3 {
    font-size: 1.4rem;
  }
}

.sw-sns__sponsorUnit {
  display: block;
}
.sw-sns__sponsorUnit + .sw-sns__sponsorUnit {
  margin-top: 20px;
}
.sw-sns__sponsorUnit img {
  width: 100%;
  height: auto;
}

.sw-sns__sponsorName {
  margin-top: 8px;
  font-size: 1.5rem;
  letter-spacing: 0;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}

.sw-sort {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.sw-sort__menu {
  position: relative;
  width: 120px;
}
.sw-sort__menu select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  width: 100%;
  padding: 11px;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  border-radius: 2px;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 );
}
.sw-sort__menu select::-ms-expand { /* select要素のデザインを無効にする（IE用） */
  display: none;
}
.sw-sort__menu:before {
  content: "";
  position: absolute;
  top: 14px;
  right: 12px;
  width: 3px;
  height: 3px;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  transform: rotate(45deg);
  pointer-events: none;
}
.sw-sort__menu:nth-child(2) {
  margin-left: 10px;
}

.sw-tab__list {
  margin-top: 20px;
}
.sw-tab__list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3px;
}
.sw-tab__list ul.if-2column {
  margin-bottom: 0;
}
.sw-tab__list ul.if-2column li {
  width: calc(50% - 1.5px);
}
.sw-tab__list ul.if-2column li:nth-child(1), .sw-tab__list ul.if-2column li:nth-child(2), .sw-tab__list ul.if-2column li:nth-child(3) {
  margin-bottom: 3px;
}
@media screen and (min-width: 580px) {
  .sw-tab__list ul.if-2column li {
    width: calc(25% - 2px);
    margin-bottom: 0;
  }
}
.sw-tab__list ul.if-3column li {
  width: calc(33.33% - 2px);
}
.sw-tab__list ul.if-3column li:nth-child(1), .sw-tab__list ul.if-3column li:nth-child(2), .sw-tab__list ul.if-3column li:nth-child(3) {
  margin-bottom: 3px;
}
.sw-tab__list ul li {
  position: relative;
  width: calc(33.33% - 2px);
}
.sw-tab__list ul li a {
  display: block;
  padding: 20px 0 20px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFF;
  letter-spacing: 0;
  line-height: 1;
  background: rgb(76, 76, 76);
  background: -moz-linear-gradient(45deg, rgba(76, 76, 76, 0.5) 0%, rgba(35, 35, 35, 0.35) 99%);
  background: -webkit-linear-gradient(45deg, rgba(76, 76, 76, 0.5) 0%, rgba(35, 35, 35, 0.35) 99%);
  background: linear-gradient(45deg, rgba(76, 76, 76, 0.5) 0%, rgba(35, 35, 35, 0.35) 99%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4c4c4c", endColorstr="#232323",GradientType=1 );
}
@media screen and (min-width: 580px) {
  .sw-tab__list ul li a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 960px) {
  .sw-tab__list ul li a {
    font-size: 1.5rem;
  }
}
.sw-tab__list ul li a:after {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  margin: 10px auto 0;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(135deg);
  opacity: 0.25;
}
.sw-tab__list ul li.is-active a {
  color: #000000;
  background: -moz-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.65) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.65) 100%);
  background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#a6ffffff",GradientType=1 );
}
.sw-tab__list ul li.is-active a:after {
  border-color: #000000;
  opacity: 1;
}

.sw-tab__content {
  margin-bottom: 45px;
  background-color: rgba(255, 255, 255, 0.05);
}
.sw-tab__content > ul > li {
  display: none;
  padding: 0;
  transition: 0.3s;
}
.sw-tab__content > ul > li.is-active {
  display: block;
}
.sw-tab__content > ul > li.is-active.if-pb {
  padding-bottom: 40px;
}

.sw-tab__contentInner {
  padding: 0 5%;
}
@media screen and (min-width: 580px) {
  .sw-tab__contentInner {
    padding: 0 35px;
  }
}
.sw-tab__contentInner .sw-contentWrap__inner {
  padding: 0;
}

.front-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 568px;
}
@media screen and (min-width: 580px) {
  .front-hero {
    margin-bottom: 45px;
    background-color: rgba(255, 255, 255, 0.05);
  }
}

.front-hero__movie {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
@media screen and (min-width: 1600px) {
  .front-hero__movie {
    right: 10%;
    left: 10%;
  }
}
.front-hero__movie:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #000000;
  opacity: 0.35;
}
.front-hero__movie .front-hero__moviePC,
.front-hero__movie .front-hero__movieSP {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.front-hero__movie .front-hero__moviePC video,
.front-hero__movie .front-hero__movieSP video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: auto;
  min-width: 100%;
}

.front-hero__scroll {
  display: block;
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 180px;
  padding: 20px;
}
.front-hero__scroll p {
  font-size: 1rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  color: #FFF;
  opacity: 0.55;
}
.front-hero__scroll p span {
  display: block;
  transform: rotate(90deg) scale(0.9);
}
.front-hero__scroll p:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background-color: #FFF;
  opacity: 0.15;
}

.front-hero__copy {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0px;
  bottom: 0;
  padding-bottom: 35px;
  font-size: 1rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  color: #FFF;
  line-height: 1.55;
  opacity: 0.85;
  transform: scale(0.9);
  pointer-events: none;
}
@media screen and (min-width: 580px) {
  .front-hero__copy img {
    width: 333px;
    height: 97px;
  }
}

.front-hero__copyright {
  position: absolute;
  z-index: 3;
  left: 20px;
  bottom: 25px;
  font-size: 1rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  color: #FFF;
  line-height: 1.55;
  opacity: 0.55;
  transform: scale(0.9);
}

.front-concept {
  position: relative;
  padding: 5% 5% 0;
  margin-bottom: 30px;
}
@media screen and (min-width: 580px) {
  .front-concept {
    padding-top: 120px;
    max-width: 750px;
    margin: 0 auto 45px;
    padding: 45px 0 0;
  }
}

.front-concept__catch {
  margin-top: 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 580px) {
  .front-concept__catch {
    margin-top: 65px;
  }
}
.front-concept__catch img {
  position: relative;
  left: -10px;
}
@media screen and (min-width: 580px) {
  .front-concept__catch img {
    width: 500px;
    height: auto;
  }
}

.team-single {
  padding-bottom: 25px;
  background-color: rgba(255, 255, 255, 0.05);
}
@media screen and (min-width: 580px) {
  .team-single {
    background-color: transparent;
  }
}

.team-single__title {
  margin-bottom: 20px;
}
.team-single__title h1 {
  margin-top: 25px;
  font-size: 2.6rem;
  line-height: 1;
}
.team-single__title p {
  margin-top: 5px;
  font-size: 1.2rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
}

.team-single__section {
  margin-bottom: 25px;
}

.team-single__heading {
  margin-bottom: 15px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.team-single__text p {
  font-size: 1.4rem;
  line-height: 1.75;
  font-weight: normal;
}
@media screen and (min-width: 580px) {
  .team-single__text p {
    font-size: 1.5rem;
  }
}

.baller-single {
  padding-bottom: 35px;
  background-color: rgba(255, 255, 255, 0.05);
}
@media screen and (min-width: 580px) {
  .baller-single {
    background-color: transparent;
  }
}

.baller-single__title {
  margin-bottom: 20px;
}
.baller-single__title h1 {
  margin-top: 25px;
  font-size: 2.6rem;
  line-height: 1;
}
.baller-single__title p {
  margin-top: 5px;
  font-size: 1.2rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
}
.baller-single__title p + p {
  margin-top: 5px;
}

.baller-single__section {
  margin-bottom: 25px;
}

.baller-single__heading {
  margin-bottom: 15px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.baller-single__text p {
  font-size: 1.4rem;
  line-height: 1.75;
}

.schedule-archive {
  padding: 20px 0 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.schedule-article {
  margin: 33px 0;
}
@media screen and (min-width: 580px) {
  .schedule-article {
    margin-top: 60px;
  }
}

.schedule-article__heading {
  margin: 45px 0 20px;
  font-size: 1.6rem;
}
@media screen and (min-width: 580px) {
  .schedule-article__heading {
    font-size: 1.8rem;
  }
}

.schedule-article__content p {
  font-size: 1.4rem;
}
@media screen and (min-width: 580px) {
  .schedule-article__content p {
    font-size: 1.5rem;
  }
}
.schedule-article__content p + p {
  margin-top: 15px;
}
.schedule-article__content img {
  display: block;
  margin: 30px 0;
}
.schedule-article__content iframe {
  display: block;
  width: 100%;
  height: 50vw;
  margin: 30px 0;
}
@media screen and (min-width: 580px) {
  .schedule-article__content iframe {
    height: 275px;
  }
}
@media screen and (min-width: 960px) {
  .schedule-article__content iframe {
    height: 478px;
  }
}

.schedule-buttons {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .schedule-buttons {
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 960px) {
  .schedule-buttons .sw-button__normal {
    width: calc(33.33% - 10px);
  }
}
.schedule-buttons .sw-button__normal + .sw-button__normal {
  margin-top: 15px;
}
@media screen and (min-width: 960px) {
  .schedule-buttons .sw-button__normal + .sw-button__normal {
    margin-top: 0;
    margin-left: 15px;
  }
}

.schedule-game {
  margin-top: 30px;
}
@media screen and (min-width: 580px) {
  .schedule-game {
    margin-top: 80px;
  }
}

@media screen and (min-width: 960px) {
  .schedule-game__units {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

.schedule-game__unit {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
@media screen and (min-width: 580px) {
  .schedule-game__unit {
    padding: 30px;
  }
}
@media screen and (min-width: 960px) {
  .schedule-game__unit {
    width: calc(50% - 20px);
    margin-bottom: 40px;
  }
}
.schedule-game__unit:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .schedule-game__unit:last-child {
    margin-bottom: 40px;
  }
}
.schedule-game__unit.if-main {
  position: relative;
  margin-top: 28px;
}
@media screen and (min-width: 580px) {
  .schedule-game__unit.if-main {
    margin-top: 30px;
  }
}
@media screen and (min-width: 960px) {
  .schedule-game__unit.if-main {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
.schedule-game__unit.if-yellow {
  border: 1px solid rgba(253, 255, 0, 0.35);
}
.schedule-game__unit.if-white {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.schedule-game__unitTitle {
  display: flex;
  justify-content: center;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
}
.schedule-game__unitTitle span {
  display: inline-block;
  padding: 4px 10px 4px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  text-align: center;
  color: #000000;
}
@media screen and (min-width: 580px) {
  .schedule-game__unitTitle span {
    font-size: 1.3rem;
  }
}
.schedule-game__unitTitle.if-yellow span {
  background-color: #FDFF00;
}
.schedule-game__unitTitle.if-white span {
  background-color: #FFF;
}

.schedule-game__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 580px) {
  .schedule-game__content img {
    width: 150px;
    height: 150px;
  }
}
@media screen and (min-width: 960px) {
  .schedule-game__content img {
    width: 120px;
    height: 120px;
  }
}

.schedule-game__vs {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 580px) {
  .schedule-game__vs {
    padding-top: 6px;
  }
}
@media screen and (min-width: 960px) {
  .schedule-game__vs {
    margin: 0 15px;
  }
}
.schedule-game__vs p {
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (min-width: 580px) {
  .schedule-game__vs p {
    font-size: 1.4rem;
  }
}
.schedule-game__vs h3 {
  margin-top: 5px;
  font-size: 1.9rem;
  line-height: 1;
  color: #9E9E9E;
}
@media screen and (min-width: 580px) {
  .schedule-game__vs h3 {
    font-size: 2.2rem;
  }
}

.schedule-game__team {
  display: block;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
}
.schedule-game__team p {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
}
@media screen and (min-width: 580px) {
  .schedule-game__team p {
    font-size: 1.4rem;
  }
}
.schedule-game__team p + p {
  margin-top: 5px;
  font-weight: normal;
}

.schedule-game__result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid #757575;
}

.schedule-game__resultScore {
  width: 90px;
  font-size: 3.4rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.15);
}
@media screen and (min-width: 580px) {
  .schedule-game__resultScore {
    width: 150px;
  }
}
.schedule-game__resultScore.if-winner {
  background-color: rgba(253, 255, 0, 0.15);
}

.schedule-game__vsResult {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1rem;
  color: #FDFF00;
}
@media screen and (min-width: 580px) {
  .schedule-game__vsResult {
    font-size: 1.3rem;
  }
}

.schedule-info__img {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.schedule-info__head {
  margin-top: 30px;
}
@media screen and (min-width: 580px) {
  .schedule-info__head {
    margin-top: 60px;
  }
}

.schedule-info__title {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  line-height: 1.4;
}

.schedule-info__table table {
  display: block;
  width: 100%;
}
.schedule-info__table table tbody {
  display: block;
}
.schedule-info__table table thead {
  display: block;
}
.schedule-info__table tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2px;
}
.schedule-info__table th {
  display: block;
  width: 105px;
  padding: 20px 15px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: left;
  background-color: #3C3C3C;
}
@media screen and (min-width: 580px) {
  .schedule-info__table th {
    width: 198px;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .schedule-info__table th {
    margin-right: 2px;
  }
}
@media screen and (min-width: 960px) {
  .schedule-info__table th {
    font-size: 1.5rem;
  }
}
.schedule-info__table td {
  display: block;
  width: calc(100% - 107px);
  padding: 20px 15px;
  font-size: 1.4rem;
  background-color: #292929;
}
@media screen and (min-width: 580px) {
  .schedule-info__table td {
    width: calc(100% - 200px);
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .schedule-info__table td {
    width: 350px;
  }
}
@media screen and (min-width: 960px) {
  .schedule-info__table td {
    font-size: 1.5rem;
  }
}
.schedule-info__table td p.if-small {
  font-size: 1.2rem;
}
.schedule-info__table td p + p {
  margin-top: 10px;
}
@media screen and (min-width: 580px) {
  .schedule-info__table td p br {
    display: none;
  }
}

.schedule-info__tableMap {
  margin-top: 18px;
}
@media screen and (min-width: 960px) {
  .schedule-info__tableMap {
    max-width: 50%;
  }
}

.schedule-info__tableSheets {
  margin: 18px 0 0;
  font-size: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (min-width: 580px) {
  .schedule-info__tableSheets {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 960px) {
  .schedule-info__tableSheets {
    max-width: 50%;
    font-size: 1.5rem;
  }
}

.schedule-info__tableSheet {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media screen and (min-width: 960px) {
  .schedule-info__free {
    width: 50%;
  }
}

.schedule-result__text {
  margin: 32px 0 45px;
}
.schedule-result__text p {
  font-weight: bold;
  font-size: 1.3rem;
}
.schedule-result__text p + p {
  margin-top: 15px;
}

.schedule-result__textHeading {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.schedule-result__topImg {
  margin-bottom: 20px;
}

.schedule-result__highlight {
  margin-top: 20px;
}
.schedule-result__highlight p {
  margin-top: 15px;
  font-size: 1.3rem;
  font-weight: bold;
}

.schedule-single {
  padding-bottom: 35px;
  background-color: rgba(255, 255, 255, 0.05);
}
@media screen and (min-width: 580px) {
  .schedule-single {
    background-color: transparent;
  }
}

.schedule-single__freeText,
.schedule-single__entryText {
  margin-top: 16px;
  font-size: 1.4rem;
}

.schedule-ticket {
  margin-top: 50px;
}
@media screen and (min-width: 580px) {
  .schedule-ticket {
    margin-top: 80px;
  }
}

.schedule-ticket__title {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 580px) {
  .schedule-ticket__title {
    font-size: 1.8rem;
  }
}

.schedule-ticket__table {
  margin-top: 20px;
}
.schedule-ticket__table table {
  display: block;
  width: 100%;
}
.schedule-ticket__table table tbody {
  display: block;
}
.schedule-ticket__table table thead {
  display: block;
}
.schedule-ticket__table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}
.schedule-ticket__table th {
  display: block;
  width: 105px;
  padding: 20px 15px;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: left;
  background-color: #3C3C3C;
}
@media screen and (min-width: 580px) {
  .schedule-ticket__table th {
    width: 198px;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .schedule-ticket__table th {
    margin-right: 2px;
  }
}
@media screen and (min-width: 960px) {
  .schedule-ticket__table th {
    font-size: 1.5rem;
  }
}
.schedule-ticket__table td {
  width: calc(100% - 107px);
  padding: 20px 15px;
  font-size: 1.4rem;
  font-weight: normal;
  background-color: #292929;
}
@media screen and (min-width: 580px) {
  .schedule-ticket__table td {
    width: calc(100% - 200px);
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .schedule-ticket__table td {
    width: 350px;
  }
}
@media screen and (min-width: 960px) {
  .schedule-ticket__table td {
    font-size: 1.5rem;
  }
}
.schedule-ticket__table td p.if-small {
  font-size: 1.2rem;
}
.schedule-ticket__table td p + p {
  margin-top: 10px;
}

@media screen and (min-width: 960px) {
  .schedule-ticket__floarmap {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.schedule-ticket__floarmap h6 {
  padding: 20px 15px;
  margin-bottom: 2px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1;
  text-align: left;
  background-color: #3C3C3C;
}
@media screen and (min-width: 960px) {
  .schedule-ticket__floarmap h6 {
    width: 198px;
    font-size: 1.5rem;
  }
}
.schedule-ticket__floarmap div {
  display: block;
  width: 100%;
  margin-bottom: 2px;
  padding: 20px 20px 18px;
  text-align: center;
  background-color: #292929;
}
@media screen and (min-width: 960px) {
  .schedule-ticket__floarmap div {
    width: calc(100% - 200px);
  }
}
.schedule-ticket__floarmap div img {
  width: 100%;
}
.schedule-ticket__floarmap div a {
  display: block;
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1;
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .schedule-ticket__floarmap div a {
    font-size: 1.3rem;
  }
}

.schedule-ticket__tableSubtext {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-top: 10px;
}

.schedule-ticket__tableSheets {
  margin: 18px 0 0;
  font-size: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (min-width: 580px) {
  .schedule-ticket__tableSheets {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 960px) {
  .schedule-ticket__tableSheets {
    width: 50%;
    font-size: 1.5rem;
  }
}

.schedule-ticket__tableSheet {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.news-archive {
  padding: 20px 0 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.news-single {
  padding: 35px 0 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.news-single__head {
  display: flex;
  align-items: center;
}

.news-single__place {
  display: block;
  width: 54px;
  margin-right: 5px;
  padding: 3px 0 4px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000000;
  line-height: 1;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  background: linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.92) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff",GradientType=1 );
}
@media screen and (min-width: 580px) {
  .news-single__place {
    font-size: 1.3rem;
  }
}

.news-single__date {
  margin-left: 5px;
  font-size: 1.1rem;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 580px) {
  .news-single__date {
    font-size: 1.3rem;
  }
}

.news-single__title {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media screen and (min-width: 580px) {
  .news-single__title {
    font-size: 2.2rem;
  }
}

.news-single__article img {
  width: 100%;
  height: auto;
}
.news-single__article img + p {
  margin-top: 20px;
}
.news-single__article p {
  font-size: 1.3rem;
}
@media screen and (min-width: 580px) {
  .news-single__article p {
    font-size: 1.5rem;
  }
}
.news-single__article p + p {
  margin-top: 15px;
}
.news-single__article p + img {
  margin-top: 20px;
}

.news-single__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.news-single__footInfo {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.2rem;
  opacity: 0.55;
  line-height: 1.5;
}
@media screen and (min-width: 580px) {
  .news-single__footInfo {
    font-size: 1.3rem;
  }
}

.news-single__footSns {
  display: flex;
}
.news-single__footSns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
}
.news-single__footSns a + a {
  margin-left: 10px;
}

.contact-form {
  margin-bottom: 20px;
  padding-top: 42px;
}
.contact-form form {
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-form form table {
  width: 100%;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .contact-form form table {
    display: block;
  }
}
.contact-form form table tbody {
  display: block;
}
.contact-form form table thead {
  display: block;
}
.contact-form form table tr {
  display: flex;
  flex-direction: column;
}
.contact-form form table tr th {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.08);
}
.contact-form form table tr th p {
  font-size: 1.4rem;
}
.contact-form form table tr td {
  display: block;
  margin-bottom: 1px;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.08);
}
.contact-form form table tr td input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  width: 100%;
  padding: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(45deg, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 15%, rgb(209, 209, 209) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 15%, rgb(209, 209, 209) 100%);
  background: linear-gradient(45deg, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 15%, rgb(209, 209, 209) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#d1d1d1",GradientType=1 );
}
.contact-form form table tr td select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  outline-style: none;
  width: 100%;
  padding: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(45deg, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 15%, rgb(209, 209, 209) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 15%, rgb(209, 209, 209) 100%);
  background: linear-gradient(45deg, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 15%, rgb(209, 209, 209) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#d1d1d1",GradientType=1 );
}
.contact-form form table tr td select::-ms-expand { /* select要素のデザインを無効にする（IE用） */
  display: none;
}
.contact-form form table tr td textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  outline-style: none;
  overflow: auto;
  display: block;
  width: 100%;
  height: 120px;
  padding: 15px 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(45deg, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 15%, rgb(209, 209, 209) 100%);
  background: -webkit-linear-gradient(45deg, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 15%, rgb(209, 209, 209) 100%);
  background: linear-gradient(45deg, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 15%, rgb(209, 209, 209) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#d1d1d1",GradientType=1 );
}

.contact-form-title {
  margin-bottom: 25px;
  font-size: 1.6rem;
  text-align: center;
}

.contact-form__required {
  width: 37px;
  margin-right: 8px;
  padding: 3px 0 3px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFF;
  line-height: 1;
  background-color: #D90000;
}

.contact-form__select {
  position: relative;
}
.contact-form__select:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 21px;
  right: 20px;
  width: 5px;
  height: 5px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(45deg);
  z-index: 333;
}

.contact-hero {
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .contact-hero {
    max-width: 850px;
  }
}
.contact-hero img {
  display: block;
  margin-bottom: 45px;
}

.contact-hero__message {
  padding: 0 0 15px;
}
.contact-hero__message p {
  font-size: 1.3rem;
}
@media screen and (min-width: 580px) {
  .contact-hero__message p {
    font-size: 1.5rem;
  }
}
.contact-hero__message p + p {
  margin-top: 15px;
}

.contact-image {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .contact-image {
    max-width: 850px;
    margin: 0 auto;
  }
}

.contact-recruit {
  padding: 45px 0;
}
.contact-recruit h3 {
  margin-bottom: 15px;
  font-size: 1.6rem;
}
.contact-recruit ul {
  margin-bottom: 45px;
  padding-left: 1rem;
  font-size: 1.3rem;
  text-indent: -1rem;
}
.contact-recruit p {
  font-size: 1.3rem;
}
.contact-recruit p a {
  text-decoration: underline;
}

.contact-wrap {
  background-color: rgba(255, 255, 255, 0.05);
}
@media screen and (min-width: 580px) {
  .contact-wrap {
    background-color: transparent;
  }
}
.contact-wrap.if-contact {
  padding-top: 45px;
}
@media screen and (min-width: 580px) {
  .contact-wrap.if-contact {
    padding-top: 0;
  }
}

.about-content {
  padding: 45px 0 60px;
}
@media screen and (min-width: 580px) {
  .about-content {
    padding: 45px 0 0;
  }
}
.about-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 30px;
}
.about-content img.if-left {
  margin-left: 0;
}
.about-content p {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 580px) {
  .about-content p {
    font-size: 1.5rem;
  }
}
.about-content p + p {
  margin-top: 15px;
}
.about-content p + img {
  margin-top: 30px;
}
.about-content iframe {
  width: 100%;
  height: 50vw;
  margin-bottom: 25px;
}
@media screen and (min-width: 580px) {
  .about-content iframe {
    height: 420px;
  }
}
@media screen and (min-width: 960px) {
  .about-content iframe {
    height: 638px;
  }
}

.about-content__conceptMessage {
  max-width: 280px;
}
@media screen and (min-width: 580px) {
  .about-content__conceptMessage {
    max-width: 350px;
  }
}

.about-content__theme {
  margin: 54px 0;
}
@media screen and (min-width: 580px) {
  .about-content__theme {
    margin: 100px 0;
  }
}

.about-content__themeImg {
  text-align: center;
}
.about-content__themeImg img {
  max-width: 260px;
}
@media screen and (min-width: 580px) {
  .about-content__themeImg img {
    max-width: 320px;
  }
}

.about-hero {
  text-align: center;
}
.about-hero img {
  width: 100%;
  height: auto;
  max-width: 550px;
}
@media screen and (min-width: 960px) {
  .about-hero img {
    max-width: 850px;
  }
}

.about-wrap {
  background-color: rgba(255, 255, 255, 0.05);
}
@media screen and (min-width: 580px) {
  .about-wrap {
    background-color: transparent;
  }
}

.u-container-base {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.u-align-center {
  text-align: center;
}

.u-align-left {
  text-align: left;
}

.u-align-right {
  text-align: right;
}

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

.u-mt-05 {
  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-45 {
  margin-top: 45px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-fontsize-xs {
  font-size: 1rem !important;
}

.u-fontsize-sm {
  font-size: 1.2rem !important;
}

.u-fontsize-md {
  font-size: 1.5rem !important;
}

.u-fontsize-lg {
  font-size: 1.8rem !important;
}

.u-fontsize-xl {
  font-size: 2.6rem !important;
}

.u-fontweight-lighter {
  font-weight: lighter !important;
}

.u-fontweight-normal {
  font-weight: normal !important;
}

.u-fontweight-bold {
  font-weight: bold !important;
}

.u-heading-xs {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2rem;
  letter-spacing: 0.1rem;
}

.u-heading-sm {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2.4rem;
  letter-spacing: 0.1rem;
}

.u-heading-md {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.8rem;
  letter-spacing: 0.1rem;
}

.u-heading-lg {
  font-size: 2rem;
  font-weight: bold;
  line-height: 4rem;
  letter-spacing: 0.2rem;
}

.u-heading-xl {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 5.2rem;
  letter-spacing: 0.2rem;
}

.u-color-main {
  color: #000000;
}

.u-color-sub {
  color: #ffffff;
}

.u-color-white {
  color: #FFF;
}

.u-color-black {
  color: #000000;
}

.u-color-text {
  color: #212121;
}

.u-wrap-xs {
  width: 100%;
  max-width: 200px;
  margin: auto;
}

.u-wrap-sm {
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.u-wrap-md {
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.u-wrap-lg {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.u-wrap-xl {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.u-display-pc {
  display: none !important;
}
@media screen and (min-width: 580px) {
  .u-display-pc {
    display: block !important;
  }
}

.u-display-sp {
  display: block !important;
}
@media screen and (min-width: 580px) {
  .u-display-sp {
    display: none !important;
  }
}

.u-fadein {
  opacity: 0;
  transition: 0.8s;
  transform: translate(0, 50px);
  -webkit-transform: translate(0, 50px);
}
.u-fadein.is-active {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.u-fadein-first,
.u-fadein-second,
.u-fadein-third {
  opacity: 0;
  transition: 0.8s;
  transform: translate(0, 50px);
  -webkit-transform: translate(0, 50px);
}
.u-fadein-first.is-active,
.u-fadein-second.is-active,
.u-fadein-third.is-active {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.u-fadein-fourth {
  opacity: 0;
  transition: 0.8s;
  transform: translate(0, -50px);
  -webkit-transform: translate(0, -50px);
}
.u-fadein-fourth.is-active {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
