@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,500;0,700;1,400;1,700&family=Noto+Sans+JP:wght@500;700;900&display=swap");
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
html {
  background: #fff;
  color: #000;
  line-height: 1.8;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
html.is-fixed {
  position: fixed;
  left: 0;
  width: 100%;
}

body {
  background: #fff;
  font-size: 16px;
  margin: 0;
  overflow-y: scroll;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

main {
  display: block;
  padding-bottom: 120px;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}
/* svg
------------------------------*/
.c-svg {
  display: inline-block;
  fill: currentColor;
  font-size: 1em;
  position: relative;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

/* layout
------------------------------*/
#wrapper {
  overflow: hidden;
  position: relative;
  padding: 0;
}

.inner-block {
  margin: 0 auto;
  position: relative;
  padding: 0 50px;
  max-width: 1192px;
}

header {
  position: relative;
  z-index: auto;
}

/* font
------------------------------*/
html,
body,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", Meiryo, sans-serif;
}

.font-en {
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}

/* --------------------------------
c-header
----------------------------------- */
.c-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.c-header .logo {
  position: absolute;
  top: 38px;
  left: 50px;
  width: 118px;
  z-index: 1000;
}

/* --------------------------------
c-nav
----------------------------------- */
.c-nav-btn {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #EB0A1E;
}
.c-nav-btn .inn {
  position: relative;
  width: 32px;
  height: 25px;
}
.c-nav-btn .line,
.c-nav-btn .line:nth-child(2)::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 2px;
}
.c-nav-btn .line:nth-child(1) {
  top: 0;
}
.c-nav-btn .line:nth-child(2) {
  top: 11px;
}
.c-nav-btn .line:nth-child(2)::after {
  content: "";
}
.c-nav-btn .line:nth-child(3) {
  top: 22px;
}
.c-nav-btn.is-open {
  background-color: transparent;
}
.c-nav-btn.is-open .line,
.c-nav-btn.is-open .line:nth-child(2)::after {
  background-color: #EB0A1E;
}
.c-nav-btn.is-open .line:nth-child(1), .c-nav-btn.is-open .line:nth-child(3) {
  opacity: 0;
}
.c-nav-btn.is-open .line:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-nav-btn.is-open .line:nth-child(2)::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.c-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
  padding: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(40%);
          transform: translateX(40%);
  pointer-events: none;
  opacity: 0;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.c-nav .inner {
  width: 100%;
  height: 100%;
}
.c-nav .logo,
.c-nav .contents {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(-60%);
          transform: translateX(-60%);
  opacity: 0;
}
.c-nav .logo .c-svg {
  font-size: 334px;
}
.c-nav .list a {
  display: block;
  padding: 26px 0 17px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #EB0A1E;
  border-bottom: 1px solid currentColor;
}
.c-nav .list .en {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  display: block;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.c-nav .list .ja {
  font-size: 18px;
  line-height: 1.22;
}
.c-nav .c-sns-list {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #EB0A1E;
}
.c-nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.c-nav.is-open .logo,
.c-nav.is-open .contents {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.c-sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-sns-list li + li {
  margin-left: 25px;
}
.c-sns-list a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: inherit;
}
.c-sns-list .c-svg {
  width: 26px;
  height: 26px;
}

/* --------------------------------
c-footer
----------------------------------- */
#pagetop {
  display: none;
  position: fixed;
  right: 17px;
  bottom: 17px;
  z-index: 100;
}
#pagetop a {
  background: url(../img/common/arrow-pagetop.svg) no-repeat center center/20px auto #000;
  border-radius: 4px;
  display: block;
  font-size: 0;
  width: 50px;
  height: 50px;
}
.c-footer .footer-nav {
  position: relative;
}
.c-footer .footer-nav .inner-block {
  padding-top: 52px;
  padding-bottom: 52px;
}
.c-footer .footer-nav .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.c-footer .footer-nav .list li:not(:first-child) {
  margin-left: 48px;
}
.c-footer .footer-nav .list a {
  line-height: 1.3;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .footer-nav .list .en {
  font-size: 18px;
  display: block;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.c-footer .footer-nav .list .ja {
  font-size: 14px;
}
.c-footer .logo-jaba {
  border-bottom: 1px solid #ddd;
  padding: 20px 10px 28px;
  text-align: center;
}
.c-footer .footer-copyright {
  text-align: center;
}
.c-footer .footer-copyright .txt {
  font-size: 12px;
  line-height: 1;
  margin: 40px 0 26px;
}

.c-page-ttl {
  line-height: 1;
  padding-top: 150px;
  padding-bottom: 80px;
}
.c-page-ttl .en {
  font-size: 56px;
  font-weight: bold;
  display: block;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.c-page-ttl .ja {
  font-size: 16px;
}

/* --------------------------------
animation
----------------------------------- */
.anm-left {
  opacity: 0;
}
.anm-left.is-animated {
  -webkit-animation: anmLeft 0.8s cubic-bezier(0.5, 0, 0, 1) both;
          animation: anmLeft 0.8s cubic-bezier(0.5, 0, 0, 1) both;
}

@-webkit-keyframes anmLeft {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes anmLeft {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* --------------------------------
title
----------------------------------- */
.c-ttl01 {
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}

.c-ttl02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 26px;
}
.c-ttl02 .txt {
  font-size: 30px;
  font-weight: bold;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.c-ttl02 .c-btn {
  margin: 8px 0 0 8px;
}

.c-ttl03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}
.c-ttl03 .ja {
  background: #EB0A1E;
  color: #fff;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  padding: 1px 8px;
}
.c-ttl03 .en {
  color: #EB0A1E;
  font-size: 14px;
  font-weight: bold;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-style: italic;
}
.c-ttl03.bk .ja {
  background: #000;
}
.c-ttl03.bk .en {
  color: #000;
}

/* --------------------------------
button
----------------------------------- */
.c-btn {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  padding: 7px 14px 5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid #000;
  border-radius: 4px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}

.c-btn02 {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  padding: 9px 30px 6px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  background-color: #000;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}

.c-btn03 {
  font-size: 16px;
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn03::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin: -3px 0 0 11px;
  content: "";
  vertical-align: middle;
  border-width: 6px 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent currentColor;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .c-header .logo {
  display: none;
}
.home main {
  padding-bottom: 0;
}

.section-home-mv {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  /* animation */
}
.section-home-mv .ttl {
  position: absolute;
  z-index: 32;
  bottom: 60px;
  left: -30px;
}
.section-home-mv .ttl .ja {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  display: block;
}
.section-home-mv .ttl .ja .marker::before {
  margin-right: 17px;
}
.section-home-mv .ttl .en {
  font-size: 120px;
  font-style: italic;
  font-weight: bold;
  line-height: 0.85;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-home-mv .slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.section-home-mv .slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 150px);
  height: calc(var(--vh, 1vh) * 100 - 150px);
  background-color: #dfdfdf;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.section-home-mv .slider .slide:not(:first-child) {
  opacity: 0;
}
.section-home-mv .slider .slide:not(:first-child)[style] {
  opacity: 1;
}
.section-home-mv .slider .slide::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto;
  content: "";
  background: url(../img/home/mv-img_2025_11_kv_pc.jpg) no-repeat top 47% center/contain;
  
}
.section-home-mv .slider .slide.slide02::before {
  background-image: url(../img/home/topbanner-test.png);
}
.section-home-mv .slider .slide.slide03::before {
  background-image: url(../img/home/topbanner-test.png);
}
.section-home-mv .slider .slider_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;

      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 16px 0 36px;
  position: absolute;
  bottom: 160px;
  right: 0;
  z-index: 31;
}
.section-home-mv .slider .slider_btn span {
  width: 32px;
  height: 4px;
  background: #C4C4C4;
  margin: 0 20px 10px 0;
  cursor: pointer;
}
.section-home-mv .slider .slider_btn span.active {
  cursor: auto;
  background: #000;
}
.section-home-mv .c-sns-list {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  right: 40px;
  bottom: 80px;
}
.section-home-mv .c-sns-list li + li {
  margin-left: 20px;
}
.section-home-mv .marker {
  display: inline-block;
  overflow: hidden;
  padding: 0.07em 0.02em 0 0;
  vertical-align: top;
  white-space: nowrap;
}
.section-home-mv .marker::before {
  display: inline-block;
  width: 100%;
  height: 0.85em;
  margin-left: calc(100% + 0.05em);
  content: "";
  -webkit-animation: mvMarker 0.8s cubic-bezier(1, 0, 0, 1) forwards;
          animation: mvMarker 0.8s cubic-bezier(1, 0, 0, 1) forwards;
  vertical-align: top;
  background-color: #EB0A1E;
}
.section-home-mv .ttl .ja .marker::before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.section-home-mv .ttl .en .marker:nth-of-type(1)::before {
  -webkit-animation-delay: 0.72s;
          animation-delay: 0.72s;
}
.section-home-mv .ttl .en .marker:nth-of-type(2)::before {
  -webkit-animation-delay: 0.69s;
          animation-delay: 0.69s;
}
.ie .section-home-mv .ttl .marker::before {
  display: none !important;
}

@-webkit-keyframes mvMarker {
  80% {
    margin-left: 0;
  }
  100% {
    width: 0;
    margin-left: 0;
  }
}

@keyframes mvMarker {
  80% {
    margin-left: 0;
  }
  100% {
    width: 0;
    margin-left: 0;
  }
}
.section-home-game {
  position: relative;
  margin-top: 40px;
  padding: 1px 0 72px;
  background-color: #EB0A1E;
}
.section-home-game .c-ttl01 {
  position: relative;
  margin: -40px 0 0 50px;
}
.section-home-game .c-ttl01::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(39px 0 0);
          clip-path: inset(39px 0 0);
  content: "NEXT GAME";
  color: #b0b0b0;
}
.ie .section-home-game .c-ttl01::before {
  display: none;
}

.section-home-game .btn-wrap {
  margin: 0 0 30px 50px;
}
.section-home-game .swiper-button {
  position: absolute;
  top: -21px;
  right: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.section-home-game .swiper-button-prev, .section-home-game .swiper-button-next {
  font-size: 0;
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #000;
}
.section-home-game .swiper-button-prev::after, .section-home-game .swiper-button-next::after {
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
}
.section-home-game .swiper-button-prev::after {
  margin-left: -3px;
  border-width: 6px 6px 6px 0;
  border-color: transparent currentColor transparent transparent;
}
.section-home-game .swiper-button-next {
  margin-left: 30px;
}
.section-home-game .swiper-button-next::after {
  margin-right: -3px;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent currentColor;
}
.section-home-game .swiper-container {
  overflow: visible;
}
.section-home-game .swiper-container::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  margin: auto;
  content: "";
  background-color: #000;
}
.section-home-game .swiper-slide {
  position: relative;
  width: 550px;
  height: auto;
  padding: 22px 76px 19px;
  text-align: center;
  background-color: #fff;
}
.section-home-game .swiper-slide::before {
  position: absolute;
  content: "";
  background-color: #000;
}
.section-home-game .swiper-slide .ttl {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  padding-bottom: 11px;
  border-bottom: 2px solid #000;
}
.section-home-game .swiper-slide .schedule {
  font-weight: bold;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 16px 0 14px;
  white-space: nowrap;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-home-game .swiper-slide .schedule-year {
  font-size: 26px;
}
.section-home-game .swiper-slide .schedule-date {
  font-size: 78px;
  margin: 0 13px -0.2em 8px;
}
.section-home-game .swiper-slide .schedule-time-day {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-home-game .swiper-slide .schedule-time {
  font-size: 24px;
}
.section-home-game .swiper-slide .schedule-day {
  font-size: 24px;
  margin-top: 10px;
}
.section-home-game .swiper-slide .place {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 13px;
  padding: 8px 0;
  border: #000 solid;
  border-width: 2px 0;
}
.section-home-game .swiper-slide .team {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-home-game .swiper-slide .team .vs {
  font-size: 22px;
  font-weight: bold;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin: 0 10px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-home-game .swiper-slide .team-me, .section-home-game .swiper-slide .team-enemy {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ie .section-home-game .swiper-slide .team-me,
.ie .section-home-game .swiper-slide .team-enemy {
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
}

.section-home-game .swiper-slide .team-me {
  font-size: 16px;
}
.section-home-game .swiper-slide .team-me::before {
  display: block;
  width: 57px;
  height: 54px;
  margin: 0 auto 4px;
  content: "";
  background: url(../img/common/logo.svg) no-repeat center center/contain;
}
.section-home-game .swiper-slide .btn {
  margin-top: 13px;
}

.section-home-result {
  background: url(../img/home/result-img.jpg) no-repeat center center/cover;
  background-attachment: fixed;
}
.section-home-result .inner-block {
  padding-bottom: 70px;
}
.section-home-result .section-ttl {
  margin-bottom: 40px;
  text-align: center;
}
.section-home-result .section-ttl .inn {
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  padding: 17px 57px 10px;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #000;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-home-result .result-box {
  position: relative;
  text-align: center;
  color: #fff;
}
.section-home-result .result-box .schedule {
  font-weight: bold;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 14px;
  white-space: nowrap;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-home-result .result-box .schedule-year {
  font-size: 24px;
}
.section-home-result .result-box .schedule-date {
  font-size: 60px;
  margin: 0 13px -0.2em 8px;
}
.section-home-result .result-box .schedule-day {
  font-size: 24px;
  margin-top: 10px;
}
.section-home-result .score {
  font-weight: bold;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  padding: 24px 0;
  border: #fff solid;
  border-width: 1px 0;
}
.section-home-result .score-result {
  font-size: 40px;
  width: 100%;
  margin-bottom: -20px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-home-result .score .vs {
  font-size: 80px;
  font-weight: bold;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin: 0 10px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-home-result .score-me, .section-home-result .score-enemy {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ie .section-home-result .score-me,
.ie .section-home-result .score-enemy {
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
}

.section-home-result .score .team {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3;
}
.section-home-result .score-me .team {
  left: 0;
}
.section-home-result .score-enemy .team {
  right: 0;
}
.section-home-result .score .point {
  font-size: 80px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-home-result .place {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 10px;
}

.section-home-news {
  background-color: #f6f6f6;
}
.section-home-news .inner-block {
  padding-top: 80px;
  padding-bottom: 64px;
}
.section-home-news .btn-wrap {
  margin-top: 8px;
}
.section-home-news .txt {
  margin-top: 40px;
}

.section-home-member {
  margin-top: 60px;
}
.section-home-member .swiper-slide {
  overflow: hidden;
  width: 363px;
  height: 620px;
  padding-top: 40px;
  text-align: center;
  background: #000;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-home-member .swiper-slide .name {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-bottom: -30px;
  padding-left: 0.45em;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #ddd;
}
.section-home-member .swiper-slide .number {
  background: -webkit-gradient(linear, left top, left bottom, from(#474747), to(rgba(71, 71, 71, 0)));
  background: linear-gradient(to bottom, #474747 0%, rgba(71, 71, 71, 0) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 160px;
  line-height: 1;
  position: relative;
  color: #474747;
}
.ie .section-home-member .swiper-slide .number {
  background: none;
}

.section-home-member .swiper-slide .img {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.section-home-member .swiper-slide .img img {
  height: 622px;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-home-about {
  margin-top: 120px;
}
.section-home-about .item-wrap:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.section-home-about .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  background: no-repeat center center/cover;
}
.section-home-about .item::before {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.section-home-about .item .txt {
  position: relative;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.1;
  padding-left: 0.35em;
  letter-spacing: 0.35em;
  color: #fff;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-home-about .item02 {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.section-home-about .item02 .txt {
  color: #000;
}
.section-home-facebook .ttl-wrap {
  line-height: 1;
}
.section-home-facebook .contents-wrap {
  width: 500px;
}
.section-home-facebook .archive-wrap {
  border-top: 1px solid #000;
}
.section-home-facebook .archive-wrap a {
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.section-home-facebook .archive-wrap a::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin: -2px 10px 0 0;
  content: "";
  vertical-align: middle;
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent currentColor;
}

/* -----------------------------------------------
* schedule Module
* scheduleページ用
-------------------------------------------------- */
.p-schedule main {
  background: url(../img/schedule/kv-bg.jpg) no-repeat center top/cover #d0d0d0;
  background-attachment: fixed;
}

.c-form-select {
  cursor: pointer;
  outline: none;
  position: relative;
}
.c-form-select::after {
  position: absolute;
  top: 14px;
  right: 0;
  display: inline-block;
  width: 0;
  height: 0;
  content: "";
  pointer-events: none;
  border-width: 10px 8px 0 8px;
  border-style: solid;
  border-color: currentColor transparent transparent transparent;
}
.c-form-select .txt,
.c-form-select .list li {
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: bold;
  line-height: 1;
}
.c-form-select .txt {
  color: #000;
  display: inline-block;
  font-size: 50px;
  padding: 0 30px 0 20px;
  cursor: pointer;
  width: 180px;
}
.c-form-select .list {
  background-color: #000;
  overflow-x: auto;
  padding: 20px 23px 34px;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  text-align: center;
  width: 165px;
  z-index: 1;
  max-height: 400px;
  z-index: 10;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.c-form-select .list > li {
  border-bottom: 1px solid #B1B1B1;
  color: #B1B1B2;
  font-size: 32px;
  padding: 14px 0 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-form-select .list > li.is-active {
  display: none;
}
.c-form-select.is-active .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.game-select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}

.schedule-box {
  background-color: #fff;
}
.schedule-box + .schedule-box {
  margin-top: 16px;
}
.schedule-box .ttl-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 10px 30px;
  background-color: #f2f2f2;
}
.schedule-box .info-wrap {
  padding: 30px 40px 35px;
  color: #fff;
  background-color: #474747;
}
.schedule-box .score-wrap {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
.schedule-box .ttl {
  font-size: 20px;
  line-height: 1.3;
}
.schedule-box .btn {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 30px;
}
.schedule-box .schedule {
  line-height: 1;
  margin-bottom: -3px;
}
.schedule-box .schedule-date, .schedule-box .schedule-day, .schedule-box .schedule-time {
  display: inline-block;
  vertical-align: middle;
}
.schedule-box .schedule-year {
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.schedule-box .schedule-date {
  font-size: 54px;
  font-weight: bold;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.schedule-box .schedule-day {
  font-size: 22px;
  margin: 0 10px 0.3em 0;
}
.schedule-box .schedule-time {
  font-size: 22px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.schedule-box .place {
  font-size: 20px;
  line-height: 1.3;
}
.schedule-box .score {
  font-weight: bold;
  line-height: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin: auto;
  padding: 24px 0;
}
.schedule-box .score .vs {
  font-size: 64px;
  font-weight: bold;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin: -10px 10px 0;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.schedule-box .score-me, .schedule-box .score-enemy {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ie .section-home-result .score-me,
.ie .section-home-result .score-enemy {
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
}

.schedule-box .score .team {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3;
}
.schedule-box .score-me .team {
  left: 0;
}
.schedule-box .score-me .team::before {
  display: block;
  width: 102px;
  height: 96px;
  margin: 0 auto 10px;
  content: "";
  background: url(../img/common/logo_black.svg) no-repeat center center/contain;
}
.schedule-box .score-enemy .team {
  right: 0;
}
.schedule-box .score-result {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: -18px;
  padding: 9px 0 1px;
  border: solid currentColor;
  border-width: 1px 0;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.schedule-box .score .point {
  font-size: 72px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.schedule-box[data-status=yet] .info-wrap {
  background-color: #EB0A1E;
}
.schedule-box[data-status=yet] .score .vs {
  font-size: 30px;
  margin-top: 0;
}
.schedule-box[data-status=win] .score-result {
  color: #EB0A1E;
}
.schedule-box[data-status=lose] .score-result {
  color: #fff;
  border-color: #EB0A1E;
  text-shadow: 1px 1px 0 #EB0A1E, -1px -1px 0 #EB0A1E, -1px 1px 0 #EB0A1E, 1px -1px 0 #EB0A1E, 0 1px 0 #EB0A1E, -1px 0 #EB0A1E, -1px 0 0 #EB0A1E, 1px 0 0 #EB0A1E;
}
.schedule-box[data-status=cancel] {
  background-color: #ccc;
}
.schedule-box[data-status=cancel] .ttl-wrap {
  background-color: #c2c2c2;
}
.schedule-box[data-status=cancel] .info-wrap {
  color: #ccc;
}
.schedule-box[data-status=cancel] .score .vs {
  display: none;
}
.schedule-box[data-status=cancel] .score-result {
  font-size: 30px;
  margin-bottom: 0;
  border: none;
}

.allView,
.officialMatch,
.openVs {
  display: none !important;
}

.allView.is_active,
.officialMatch.is_active,
.openVs.is_active {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}
/* -----------------------------------------------
* player Module
* playerページ用
-------------------------------------------------- */
.p-player main {
  background: #F4F4F4;
}
.p-player .c-page-ttl {
  padding-bottom: 50px;
}

.position-select {
  margin-top: 15px;
}
.position-select .select-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.position-select .select-list a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0 40px 0 18px;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  height: 100%;
}
.position-select .select-list a::before {
  border-style: solid;
  border-width: 7px 5.5px 0 5.5px;
  border-color: #000 transparent transparent transparent;
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 18px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.member-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.member-wrapper .member-box,
.member-wrapper .staff-box {
  display: block;
  position: relative;
}
.member-wrapper .member-box .badge,
.member-wrapper .staff-box .badge {
  background-color: #EB0A1E;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  line-height: 23px;
  padding: 0 6px;
  position: absolute;
  bottom: calc(100% + 2px);
  left: 0;
  text-align: center;
  min-width: 60px;
  z-index: 2;
}
.member-wrapper .member-box .badge.rookie,
.member-wrapper .staff-box .badge.rookie {
  background-color: #707070;
}
.member-wrapper .member-box .name-area .position,
.member-wrapper .staff-box .name-area .position {
  background: #000;
  color: #fff;
  display: inline-block;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.2;
  padding: 4px 8px 0;
}
.member-wrapper .member-box .name-area .position .new,
.member-wrapper .staff-box .name-area .position .new {
  background: #fff;
  border: 1px solid #000;
  color: #000;
  display: inline-block;
  padding: 4px 7px 0;
  margin: -4px -8px 0 8px;
}
.member-wrapper .member-box .name-area .name,
.member-wrapper .staff-box .name-area .name {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
}
.member-wrapper .member-box .name-area .en,
.member-wrapper .staff-box .name-area .en {
  font-size: 14px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: bold;
  line-height: 1;
  margin-top: 2px;
  text-transform: uppercase;
}
.member-wrapper .member-box .name-area .number,
.member-wrapper .staff-box .name-area .number {
  color: #EB0A1E;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 70px;
  font-weight: bold;
  line-height: 1;
  margin-top: 6px;
}
.member-wrapper .member-box .img,
.member-wrapper .staff-box .img {
  position: relative;
  z-index: 1;
}
.member-wrapper .member-box .img img,
.member-wrapper .staff-box .img img {
  width: 100%;
}
.member-wrapper .member-box .img::before,
.member-wrapper .staff-box .img::before {
  background: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.member-wrapper .member-box .name-area {
  position: absolute;
  left: 0;
  top: 130px;
  z-index: 2;
}
.member-wrapper .staff-box .name-area {
  position: relative;
  padding-right: 75px;
}
.member-wrapper .staff-box .name-area .number {
  position: absolute;
  right: 0;
  top: 15px;
  margin-top: 0;
  z-index: 1;
}
.member-wrapper + .c-ttl03 {
  margin-top: 185px;
}
.member-wrapper + .c-ttl03.bk {
  border-top: 1px solid #717171;
  margin-top: 125px;
  padding-top: 75px;
}
.member-wrapper + .member-wrapper {
  margin-top: 38px;
}

/* -----------------------------------------------
* player Module
* player-detailページ用
-------------------------------------------------- */
.p-player-detail main {
  background-color: #000;
  padding-top: 100vh;
  padding-top: calc(var(--vh, 1vh) * 100);
  padding-bottom: 0;
}
.p-player-detail .bg-wrap {
  background-color: #F6F6F6;
  position: relative;
  z-index: 3;
}

.player-pager .btn-prev,
.player-pager .btn-next {
  background: no-repeat center center/contain;
  margin: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 17px;
  height: 40px;
  z-index: 100;
}
.player-pager .btn-prev {
  background-image: url(../img/player/player-pager-prev.svg);
  left: 40px;
}
.player-pager .btn-next {
  background-image: url(../img/player/player-pager-next.svg);
  right: 40px;
}
.player-pager .btn-back {
  color: #EB0A1E;
  display: inline-block;
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 100;
  text-align: center;
}
.player-pager .btn-back::before {
  border: solid #EB0A1E;
  border-width: 1px 0 0 1px;
  content: "";
  display: block;
  margin: 0 auto -4px;
  width: 11px;
  height: 11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.section-player-mv {
  background: url(../img/player/player-mv-bg.png) no-repeat center center/100% 100% #000;
  color: #EB0A1E;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.section-player-mv.is-active {
  position: fixed;
}
.section-player-mv::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(23.96%, rgba(0, 0, 0, 0)), to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 23.96%, #000 100%);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24%;
  z-index: 2;
}
.section-player-mv .img {
  background: no-repeat top center/cover;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1366px;
  height: 100%;
  z-index: 1;
  text-align: center;
}
.section-player-mv .txt-name {
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  position: absolute;
  top: 10%;
  left: 50%;
  text-align: center;
  white-space: nowrap;
}
.section-player-mv .txt-name .en {
  display: inline-block;
  font-size: 200px;
  font-style: italic;
  font-weight: bold;
  line-height: 1.05;
  text-transform: uppercase;
}
.section-player-mv .txt-number {
  position: absolute;
  bottom: 24px;
  left: 175px;
  z-index: 3;
}
.section-player-mv .txt-number .number {
  display: block;
  font-size: 170px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1;
  margin-bottom: -0.15em;
}
.section-player-mv .txt-number .name .en {
  text-transform: uppercase;
}
.section-player-mv .txt-number .name .ja {
  font-size: 34px;
  line-height: 1.3;
}

.section-player-mv[style] .img {
  -webkit-animation: playerMvImg 1.5s 0.5s cubic-bezier(0.5, 0, 0, 1) both;
          animation: playerMvImg 1.5s 0.5s cubic-bezier(0.5, 0, 0, 1) both;
}
.section-player-mv[style] .txt-name .en {
  -webkit-animation: playerMvTxt 1s 0.8s cubic-bezier(0.5, 0, 0, 1) both;
          animation: playerMvTxt 1s 0.8s cubic-bezier(0.5, 0, 0, 1) both;
}

@-webkit-keyframes playerMvImg {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes playerMvImg {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes playerMvTxt {
  0% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes playerMvTxt {
  0% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.section-player-data {
  background-color: #EBEBEB;
  border-bottom: solid 1px #000;
}
.section-player-data .data-summary {
  background-color: #EB0A1E;
  color: #fff;
  padding: 70px 0;
  position: relative;
}
.section-player-data .data-summary::before {
  background-color: #EB0A1E;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(100% - 1px);
  width: 100vw;
}
.section-player-data .data-detail {
  padding: 70px 80px;
}
.section-player-data .section-ttl {
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
}
.section-player-data .name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  line-height: 1.2;
  margin-top: 15px;
}
.section-player-data .name .ja,
.section-player-data .name .en {
  display: block;
}
.section-player-data .name .ja {
  font-size: 50px;
  font-weight: bold;
}
.section-player-data .name .en {
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  margin-top: 7px;
  text-transform: uppercase;
}
.section-player-data .name .inn:not(:last-child) {
  margin-right: 0.5em;
}
.section-player-data .position {
  background-color: #fff;
  border-radius: 4px;
  color: #EB0A1E;
  display: inline-block;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 24px;
  padding: 3px 11px 4px;
}
.section-player-data .position .txt01,
.section-player-data .position .txt02 {
  vertical-align: middle;
}
.section-player-data .position .txt01 {
  font-size: 22px;
}
.section-player-data .position .txt01::after {
  background-color: currentColor;
  content: "";
  display: inline-block;
  margin: -6px 10px 0 10px;
  width: 2px;
  height: 24px;
  vertical-align: middle;
}
.section-player-data .position .txt02 {
  font-size: 20px;
}
.section-player-data .message-ttl {
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin: 55px 0 18px;
}

.chart #chart-container {
  display: block;
  margin: 36px auto 0;
  width: 440px;
  height: 320px;
  max-width: 100%;
}
.chart #chart-pentagons {
  fill: rgba(0, 0, 0, 0.2);
}
.chart .skill-label {
  fill: currentColor;
  font-size: 18px;
}
.chart #chart-polygon {
  position: absolute;
  fill: none;
  stroke: #fff;
  stroke-width: 3px;
  z-index: 0;
}
.chart #marker-points {
  fill: none;
}

.player-table {
  margin-top: -18px;
  width: 100%;
}
.player-table th,
.player-table td {
  line-height: 1.55;
  text-align: left;
  vertical-align: middle;
}
.player-table th {
  font-size: 16px;
  font-weight: normal;
}
.player-table td {
  font-size: 18px;
}
.player-table.message {
  margin-bottom: -18px;
}
.player-table.message th {
  font-size: 18px;
  padding-right: 26px;
}
.player-table.message tr:last-child th,
.player-table.message tr:last-child td {
  border-bottom: 0;
}

.section-player-faq {
  padding: 90px 0;
}
.section-player-faq .section-ttl {
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
.section-player-faq .table {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.faq-table {
  counter-reset: faqNum 0;
  margin-top: -15px;
  width: 100%;
}
.faq-table th,
.faq-table td {
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.faq-table th {
  color: #717171;
  font-weight: normal;
  position: relative;
}
.faq-table th::before {
  background-color: #EB0A1E;
  border-radius: 100px;
  color: #fff;
  counter-increment: faqNum 1;
  content: counter(faqNum);
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 16px;
  margin: auto;
  padding-top: 3px;
  position: absolute;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  width: 19px;
  height: 19px;
  line-height: 1;
}

/* -----------------------------------------------
* startingmember Module
* startingmemberページ用
-------------------------------------------------- */
.p-startingmember main {
  background: url(../img/schedule/kv-bg.jpg) no-repeat center top/cover #d0d0d0;
  background-attachment: fixed;
  padding-bottom: 0;
}
.p-startingmember .c-page-ttl {
  padding-bottom: 38px;
}
.p-startingmember .c-page-ttl .en {
  font-style: italic;
  font-weight: bold;
  font-size: 60px;
}
.p-startingmember .c-page-ttl .ja {
  font-size: 20px;
}

.section-todays-game .game-box {
  background-color: #fff;
  max-width: 720px;
  margin: auto;
}
.section-todays-game .game-box .ttl-wrap {
  background-color: #EB0A1E;
  padding: 25px 40px 0;
  text-align: center;
}
.section-todays-game .game-box .info-wrap {
  background-color: #EB0A1E;
  padding: 25px 40px 30px;
  color: #fff;
}
.section-todays-game .game-box .score-wrap {
  position: relative;
  text-align: center;
}
.section-todays-game .game-box .score-wrap::before, .section-todays-game .game-box .score-wrap::after {
  background-color: #444;
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
}
.section-todays-game .game-box .score-wrap::before {
  right: 100%;
}
.section-todays-game .game-box .score-wrap::after {
  left: 100%;
}
.section-todays-game .game-box .ttl {
  font-size: 20px;
  line-height: 1.3;
}
.section-todays-game .game-box .schedule {
  line-height: 1;
  margin-bottom: -3px;
  position: relative;
  text-align: center;
}
.section-todays-game .game-box .schedule-year, .section-todays-game .game-box .schedule-date, .section-todays-game .game-box .schedule-day, .section-todays-game .game-box .schedule-time {
  display: inline-block;
  vertical-align: middle;
}
.section-todays-game .game-box .schedule-year {
  font-size: 30px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-todays-game .game-box .schedule-date {
  font-size: 80px;
  font-weight: bold;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  margin-left: 20px;
  margin-right: 20px;
}
.section-todays-game .game-box .schedule-day {
  font-size: 36px;
  margin-bottom: 0.3em;
}
.section-todays-game .game-box .schedule-time {
  font-size: 36px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-todays-game .game-box .place {
  font-size: 30px;
  text-align: center;
  line-height: 1.3;
}
.section-todays-game .game-box .score {
  font-weight: bold;
  line-height: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  min-width: 100px;
  margin: auto;
  padding: 24px 0;
}
.section-todays-game .game-box .score .vs {
  font-size: 64px;
  font-weight: bold;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin: -10px 10px 0;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-todays-game .game-box .score-me, .section-todays-game .game-box .score-enemy {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ie .section-todays-game .score-me,
.ie .section-todays-game .score-enemy {
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
}

.section-todays-game .game-box .score .team {
  font-size: 30px;
  font-weight: normal;
  line-height: 1.3;
}
.section-todays-game .game-box .score-me .team {
  left: 50px;
}
.section-todays-game .game-box .score-me .team::before {
  display: block;
  width: 113px;
  height: 107px;
  margin: 0 auto 10px;
  content: "";
  background: url(../img/common/logo_black.svg) no-repeat center center/contain;
}
.section-todays-game .game-box .score-enemy .team {
  right: 50px;
}

.section-startingmember {
  background-color: #444;
  padding-top: 70px;
  padding-bottom: 90px;
}
.section-startingmember .member-area {
  position: relative;
}
.section-startingmember .mini-ground {
  background: url(../img/startingmember/ground.svg) no-repeat center/100% auto;
  width: calc(100% + 50px);
  height: 77.3333333333vw;
  position: relative;
  margin: 8vw -25px 80px;
}
.section-startingmember .mini-ground .mini-starting-list li {
  width: 25.3333333333vw;
  position: absolute;
}
.section-startingmember .mini-ground .mini-starting-list li.cf {
  top: -8vw;
  left: 0;
  right: 0;
  margin: auto;
}
.section-startingmember .mini-ground .mini-starting-list li.lf {
  top: -5.3333333333vw;
  left: 6.6666666667vw;
}
.section-startingmember .mini-ground .mini-starting-list li.rf {
  top: -5.3333333333vw;
  right: 6.6666666667vw;
}
.section-startingmember .mini-ground .mini-starting-list li.ss {
  top: 18.6666666667vw;
  left: 21.3333333333vw;
}
.section-startingmember .mini-ground .mini-starting-list li.sb {
  top: 18.6666666667vw;
  right: 21.3333333333vw;
}
.section-startingmember .mini-ground .mini-starting-list li.tb {
  bottom: 24vw;
  left: 6.6666666667vw;
}
.section-startingmember .mini-ground .mini-starting-list li.p {
  bottom: 24vw;
  left: 0;
  right: 0;
  margin: auto;
}
.section-startingmember .mini-ground .mini-starting-list li.fb {
  bottom: 24vw;
  right: 6.6666666667vw;
}
.section-startingmember .mini-ground .mini-starting-list li.c {
  bottom: 2.6666666667vw;
  right: 0;
  left: 0;
  margin: auto;
}
.section-startingmember .mini-ground .mini-starting-list li.dh {
  bottom: 2.6666666667vw;
  right: 25px;
}
.section-startingmember .mini-ground .mini-starting-list li .position {
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #EB0A1E;
  font-size: 10px;
  padding: 3px 0;
  line-height: 1.3;
}
.section-startingmember .mini-ground .mini-starting-list li .info {
  text-align: center;
  background: #fff;
  font-weight: bold;
  line-height: 1.4;
  padding-top: 2px;
}
.section-startingmember .mini-ground .mini-starting-list li .info .num {
  font-size: 16px;
  color: #EB0A1E;
  font-weight: bold;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
}
.section-startingmember .mini-ground .mini-starting-list li .info .name {
  font-size: 14px;
  font-weight: bold;
}
.section-startingmember .member-ttl {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1;
}
.section-startingmember .starting-list li .number {
  background-color: #707070;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 38px;
  font-weight: bold;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  width: 54px;
}
.section-startingmember .starting-list li .thumb {
  background: no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}
.section-startingmember .starting-list li .thumb::after {
  background-color: #C2C2C2;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
}
.section-startingmember .starting-list li .thumb span {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section-startingmember .starting-list li .thumb img {
  width: 100%;
}
.section-startingmember .starting-list li .info {
  background: #fff;
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.section-startingmember .starting-list li .info .name {
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: bold;
  padding: 0 4px;
}
.section-startingmember .starting-list li .info .kana {
  font-size: 10px;
  font-weight: bold;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  text-transform: uppercase;
}
.section-startingmember .starting-list li .info .num {
  font-size: 26px;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  color: #EB0A1E;
  font-weight: bold;
  line-height: 1;
  margin: 5px 0 3px;
}
.section-startingmember .starting-list li .info .position {
  font-weight: bold;
  background: #EB0A1E;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  padding: 5px 10px;
  line-height: 1;
  font-size: 15px;
}
.section-startingmember .starting-list li .info .position .en,
.section-startingmember .starting-list li .info .position .ja {
  font-weight: bold;
}
.section-startingmember .starting-list li .info .position .en {
  border-right: 1px solid #fff;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  padding: 6px 10px 2px 0;
  margin-right: 10px;
  margin-bottom: -1px;
}
.section-startingmember .starting-list li .info .position .ja {
  margin-top: -1px;
}
.section-startingmember .order-area {
  margin: auto;
  max-width: 820px;
}
.section-startingmember .order-area .order-ttl {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 16px;
  line-height: 1;
}
.section-startingmember .order-area .order-table {
  width: 100%;
}
.section-startingmember .order-area .order-table th,
.section-startingmember .order-area .order-table td {
  height: 80px;
  vertical-align: middle;
}
.section-startingmember .order-area .order-table th {
  background-color: #EEE;
  font-size: 32px;
  font-weight: normal;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1;
  text-align: center;
  width: 153px;
}
.section-startingmember .order-area .order-table td {
  background-color: #fff;
  padding: 10px;
}
.section-startingmember .order-area .order-table td.name {
  padding-left: 50px;
}
.section-startingmember .order-area .order-table td.name span {
  font-size: 26px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.section-startingmember .order-area .order-table td.name .number {
  color: #EB0A1E;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  margin-bottom: -5px;
  min-width: 35px;
}
.section-startingmember .order-area .order-table td.name .txt {
  margin-left: 30px;
}
.section-startingmember .order-area .order-table td.position {
  padding-right: 40px;
  white-space: nowrap;
  width: 1px;
}
.section-startingmember .order-area .order-table td.position span {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.section-startingmember .order-area .order-table td.position .en {
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  margin-bottom: -5px;
  min-width: 30px;
  text-align: right;
}
.section-startingmember .order-area .order-table td.position .ja::before {
  background-color: currentColor;
  content: "";
  display: inline-block;
  margin: -5px 15px 0;
  width: 1px;
  height: 28px;
  vertical-align: middle;
}
.section-startingmember .order-area .order-table tr:not(:first-child) th,
.section-startingmember .order-area .order-table tr:not(:first-child) td {
  border-top: 1px solid #444444;
}

/* -----------------------------------------------
* download Module
* downloadページ用
-------------------------------------------------- */
.p-download main {
  padding-bottom: 0;
}
.p-download .footer-nav,
.p-download .c-footer {
  border-top: none;
}
.p-download .red {
  background-color: #e45151;
}
.p-download .black {
  background-color: #42434f;
}
.p-download .gray {
  background-color: #c4c4c4;
}
.p-download .c-page-ttl {
  padding: 103px 0 116px;
}

.download-switching-tab .black {
  color: #fff;
}

.dl-button {
  display: block;
  min-width: 114px;
  padding: 6px 18px;
  background: #fff;
  color: #222;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 4px;
}
.dl-button:hover {
  background-color: #000;
  color: #fff;
}

.download-switching-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.download-switching-tab li span {
  display: block;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
  cursor: pointer;
  padding: 20px 0;
  font-size: 20px;
}

.download-items {
  padding: 130px 10px 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.download-items.red, .download-items.black, .download-items.gray {
  display: none !important;
}
.download-items.show {
  display: block !important;
}

.download-box .download-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.download-box .download-image li {
  text-align: center;
  margin: 0 auto;
}
.download-box .download-image li:only-child {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.download-box .download-image .downloads {
  margin: 47px 0 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.download-box .download-image .downloads .dl-button {
  margin: 0;
}
.download-box .download-image .downloads .dl-button + .dl-button {
  margin-left: 20px;
}

/* -----------------------------------------------
* team Module
* teamページ用
-------------------------------------------------- */
.p-team main {
  padding-bottom: 0;
}
.p-team .c-page-ttl {
  padding-bottom: 40px;
}
.p-team .c-page-ttl .img {
  margin: 30px auto;
}
.p-team .team-ttl {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 45px;
}

.section-team-name {
  background: url(../img/team/ico-star.svg) no-repeat top center/80px auto;
  padding-top: 65px;
}
.section-team-name .lead-txt {
  font-size: 18px;
  line-height: 1.66;
  margin-bottom: 35px;
}
.section-team-name .wrap01,
.section-team-name .wrap02 {
  border: 1px solid #C4C4C4;
}
.section-team-name .wrap01 .box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 40px 40px;
  text-align: center;
}
.section-team-name .wrap01 .logo,
.section-team-name .wrap01 .name {
  margin: 48px 0;
}
.section-team-name .wrap01 .logo img {
  width: 268px;
  height: 254px;
}
.section-team-name .wrap01 .name {
  color: #EB0A1E;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
}
.section-team-name .wrap01 .txt {
  font-size: 16px;
  line-height: 1.62;
  text-align: left;
}
.section-team-name .wrap02 {
  margin-top: -1px;
}
.section-team-name .wrap02 .creator {
  font-weight: bold;
}
.section-team-name .wrap02 .creator small {
  font-size: 14px;
  font-weight: normal;
}
.section-team-name .wrap02 .txt {
  font-size: 14px;
}

.section-team-slogan {
  margin-top: 78px;
}
.section-team-slogan .txt {
  font-size: 28px;
  line-height: 1.5;
  margin-top: 45px;
}

.section-team-result,
.section-team-history,
.section-team-ob {
  background-color: #e5e5e5;
}

.section-team-result {
  margin-top: 90px;
  padding-top: 56px;
  padding-bottom: 40px;
}
.section-team-result .table {
  margin: -23px auto 0;
  max-width: 640px;
  width: 100%;
}
.section-team-result .table th,
.section-team-result .table td {
  border-bottom: 1px solid #C4C4C4;
  width: 33%;
}
.section-team-result .table tr:last-child th,
.section-team-result .table tr:last-child td {
  border-bottom: 0;
}
.section-team-result .table .year {
  font-size: 34px;
  font-style: italic;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1;
  padding-top: 5px;
}
.section-team-result .table .title {
  font-size: 20px;
  line-height: 1.2;
  padding: 23px 0 24px;
  text-align: center;
}
.section-team-result .table .result {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.section-team-result .table .result.win {
  color: #EB0A1E;
}

.section-team-history {
  border-top: 1px solid #AAA;
  padding-top: 72px;
  padding-bottom: 64px;
}
.section-team-history .table {
  margin: auto;
  max-width: 760px;
  position: relative;
  width: 100%;
}
.section-team-history .table::before {
  background-color: #AAA;
  content: "";
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 86px;
  width: 1px;
}
.section-team-history .table th,
.section-team-history .table td {
  padding-top: 15px;
  padding-bottom: 15px;
}
.section-team-history .table th {
  color: #EB0A1E;
  font-size: 26px;
  font-style: italic;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1;
  padding-top: 22px;
  position: relative;
  text-align: left;
  vertical-align: top;
  width: 86px;
}
.section-team-history .table th::before {
  background-color: #EB0A1E;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 25px;
  right: -7px;
  width: 13px;
  height: 13px;
}
.section-team-history .table td {
  padding-left: 67px;
}
.section-team-history .table .ttl {
  background-color: #EB0A1E;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 10px -7px;
  padding: 5px 11px;
  position: relative;
}
.section-team-history .table .ttl::after {
  background-color: #EB0A1E;
  content: "";
  position: absolute;
  top: 16px;
  bottom: 0;
  left: -60px;
  width: 60px;
  height: 1px;
}
.section-team-history .table .txt {
  font-size: 16px;
  line-height: 1.37;
}
.section-team-history .table .txt:first-child {
  margin-top: 3px;
}
.section-team-history .table strong {
  color: #EB0A1E;
  font-weight: normal;
}

.section-team-ob {
  border-top: 1px solid #AAA;
  padding-top: 72px;
  padding-bottom: 64px;
}
.section-team-ob .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -33px -21px 0;
}
.section-team-ob .list li {
  background-color: #fff;
  border-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 33px 21px 0;
  padding: 20px 20px 18px;
  position: relative;
  width: calc((99.99% - 99px) / 3);
}
.section-team-ob .list .year {
  color: #C4C4C4;
  font-style: italic;
  font-size: 18px;
  font-weight: normal;
  font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 13px;
}
.section-team-ob .list .name {
  font-size: 22px;
  line-height: 1.2;
}
.section-team-ob .list .team {
  font-size: 14px;
  line-height: 1.2;
  margin-top: 6px;
}

.section-team-home {
  margin-top: 80px;
}
.section-team-home .wrap01,
.section-team-home .wrap02,
.section-team-home .address {
  margin: auto;
  max-width: 944px;
}
.section-team-home img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.section-team-home .wrap02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-team-home .address {
  margin-top: 36px;
}
.section-team-home .address .head {
  font-size: 18px;
}
.section-team-home .c-btn {
  font-weight: normal;
  margin-left: 26px;
  padding: 4px 7px 2px;
}

.section-team-club {
  background-color: #424242;
  color: #fff;
  margin-top: 111px;
  padding-top: 72px;
  padding-bottom: 100px;
}
.section-team-club .team-ttl {
  margin-bottom: 74px;
}
.section-team-club .wrap .box.movie .img {
  position: relative;
  height: 0;
  padding-top: 64%;
}
.section-team-club .wrap .box.movie .img iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-team-club .wrap .img {
  margin-bottom: 37px;
}
.section-team-club .wrap .img img {
  width: 100%;
}
.section-team-club .wrap .ttl {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 14px;
}
.section-team-club .wrap .txt {
  font-size: 16px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
select,
textarea {
    font-size: 16px !important;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  .pc-tab {
    display: none !important;
  }
  body,
.outer-block {
    min-width: 320px;
  }
  .inner-block {
    padding: 0 25px;
  }
  .l-column-side .logo {
    top: 18px;
    left: 10px;
    width: 97px;
  }
  .c-header .logo {
    display: none;
  }
  .c-nav-btn {
    width: 72px;
    height: 72px;
  }
  .c-footer {
    border-top: 1px solid #000;
  }
  .c-footer .footer-nav .inner-block {
    display: none;
  }
  .c-footer .logo-jaba img {
    width: 95px;
  }
  .c-footer .footer-copyright {
    padding-top: 25px;
  }
  .c-footer .footer-copyright .txt {
    margin: 25px 0;
  }
  .c-page-ttl {
    padding-top: 46px;
    padding-bottom: 40px;
  }
  .c-page-ttl .en {
    font-size: 48px;
  }
  .c-ttl01 {
    font-size: 40px;
  }
  .c-ttl03 .ja {
    font-size: 34px;
  }
  .c-btn03::after {
    margin: -3px 0 0 8px;
    border-width: 4px 0 4px 5px;
  }
  .home .c-header .logo {
    top: 18px;
    left: 10px;
    display: block;
    width: 97px;
  }
  .section-home-mv .ttl .ja {
    font-size: 16px;
  }
  .section-home-mv .ttl .en {
    font-size: 58px;
    line-height: 0.85;
  }
  .section-home-mv .slider .slide {
    /* height: calc(100vh - 100px);
    height: calc(var(--vh, 1vh) * 100 - 100px); */
		height: 163vw;
  }
  .section-home-mv .slider .slide::before {
    /* NOTE:一ヶ月後もどす */
    background-image: url(../img/home/mv-img_2025_11_kv_sp.jpg);
    background-position: center center;
		background-size: 100% auto;
  }
  .section-home-mv .slider .slide.slide02::before {
    background-image: url(../img/home/topbanner-test_sp.png);
  }
  .section-home-mv .slider .slide.slide03::before {
    background-image: url(../img/home/topbanner-test_sp.png);
  }
  .section-home-mv .slider .slider_btn {
    bottom: 110px;
  }
  .section-home-game {
    margin-top: 65px;
    padding-bottom: 50px;
  }
  .section-home-game .c-ttl01 {
    margin: -25px 0 50px 25px;
  }
  .section-home-game .c-ttl01::before {
    -webkit-clip-path: inset(24px 0 0);
            clip-path: inset(24px 0 0);
  }
  .section-home-game .btn-wrap {
    display: none;
  }
  .section-home-game .swiper-button {
    display: none;
  }
  .section-home-game .swiper-slide {
    width: calc(100% - 80px - 20px);
    padding: 24px 20px 15px;
  }
  .section-home-game .swiper-slide::before {
    top: 0;
    right: 40px;
    left: 40px;
    height: 10px;
  }
  .section-home-game .swiper-slide .ttl {
    font-size: 16px;
    text-align: left;
  }
  .section-home-game .swiper-slide .schedule {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-right: auto;
    margin-left: auto;
    padding-top: 22px;
    text-align: left;
  }
  .section-home-game .swiper-slide .schedule-year {
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 8px;
  }
  .section-home-game .swiper-slide .schedule-date {
    font-size: 60px;
  }
  .section-home-game .swiper-slide .schedule-time {
    font-size: 20px;
  }
  .section-home-game .swiper-slide .schedule-day {
    margin-top: 5px;
  }
  .section-home-game .swiper-slide .place {
    font-size: 16px;
  }
  .section-home-game .swiper-slide .team-me, .section-home-game .swiper-slide .team-enemy {
    font-size: 18px;
  }
  .section-home-game .swiper-slide .team-me {
    font-size: 0;
  }
  .section-home-game .swiper-slide .team-me::before {
    width: 77px;
    height: 73px;
    margin: 0;
  }
  .section-home-result .inner-block {
    padding-bottom: 33px;
  }
  .section-home-result .section-ttl .inn {
    font-size: 20px;
    padding: 13px 23px 7px;
  }
  .section-home-result .result-box .schedule {
    margin-bottom: 50px;
  }
  .section-home-result .result-box .schedule-date {
    font-size: 50px;
  }
  .section-home-result .score {
    padding: 22px 0 38px;
  }
  .section-home-result .score-result {
    margin-bottom: -10px;
  }
  .section-home-result .score .vs {
    margin-top: -20px;
  }
  .section-home-result .score .team {
    display: block;
  }
  .section-home-result .score .point {
    font-size: 70px;
  }
  .section-home-result .place {
    margin-top: 6px;
    padding-bottom: 8px;
    border-bottom: 1px solid #fff;
  }
  .section-home-news .inner-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-home-news .ttl-wrap {
    margin-bottom: 20px;
  }
  .section-home-news .contents-wrap {
    margin-right: -10px;
    margin-left: -10px;
  }
  .section-home-news .btn-wrap {
    margin-top: 25px;
    text-align: center;
  }
  .section-home-news .txt {
    margin-top: 20px;
    text-align: center;
  }
  .section-home-member {
    margin-top: 32px;
  }
  .section-home-member .swiper-slide {
    width: calc(100% - 90px);
    height: 476px;
    padding-top: 60px;
  }
  .section-home-member .swiper-slide .name {
    font-size: 24px;
    margin-bottom: -80px;
  }
  .section-home-member .swiper-slide .img {
    right: -20px;
    bottom: -60px;
    left: -20px;
  }
  .section-home-member .swiper-slide .img img {
    height: 540px;
  }
  .section-home-about {
    margin-top: 40px;
  }
  .section-home-about .item {
    height: 170px;
  }
  .section-home-about .item:not(:first-child) {
    margin-top: 10px;
  }
  .section-home-about .item01 {
    background-image: url(../img/home/about-img01_sp.jpg);
  }
  .section-home-about .item02 {
    padding: 20px 0 0 20px;
    background-image: url(../img/home/about-img02_sp.jpg);
  }
  .section-home-about .item03 {
    background-image: url(../img/home/about-img03_sp.jpg);
  }
  .section-home-facebook {
    margin-top: 105px;
  }
  .section-home-facebook .ttl-wrap {
    margin-right: -25px;
    margin-left: -25px;
    padding: 0 25px;
    border-bottom: 1px solid #000;
  }
  .section-home-facebook .c-ttl02 {
    margin-bottom: 15px;
  }
  .section-home-facebook .archive-wrap {
    margin-bottom: 40px;
    padding-top: 40px;
  }
  .section-home-facebook .archive-wrap a {
    font-size: 16px;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
  .section-home-facebook .archive-wrap a:not(:first-child) {
    margin-top: 30px;
  }
  .c-form-select::after {
    top: 11px;
  }
  .c-form-select .txt {
    font-size: 36px;
    padding: 0 20px 0 0;
    width: 120px;
  }
  .c-form-select .list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-height: 300px;
  }
  .game-select {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
  .game-select .select-type {
    border-bottom: 1px solid currentColor;
  }
  .game-select .select-type::after {
    top: 9px;
  }
  .game-select .select-type .txt {
    font-size: 18px;
    padding: 6px 24px 6px 10px;
    width: 130px;
    white-space: nowrap;
  }
  .game-select .select-type .list {
    background-color: #fff;
    padding: 20px 25px 20px 20px;
    text-align: left;
    width: 140px;
  }
  .game-select .select-type .list > li {
    border-bottom: none;
    color: #000;
    font-size: 18px;
    padding: 8px 0;
  }
  .game-select .select-type .list > li.is-active {
    color: #EB0A1E;
  }
  .schedule-box .ttl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
  }
  .schedule-box .schedule-date {
    margin-right: 10px;
  }
  .p-player .c-page-ttl {
    background: #fff;
    padding-bottom: 35px;
  }
  .section-member-archive {
    padding-top: 28px;
  }
  .position-select {
    margin-top: 10px;
  }
  .position-select .select-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .position-select .select-list li {
    width: calc((100% - 35px) / 2);
  }
  .position-select .select-list li:not(:nth-child(2n+1)) {
    margin-left: 35px;
  }
  .position-select .select-list li:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid #717171;
  }
  .position-select .select-list li.sp-small a {
    font-size: 16px;
  }
  .position-select .select-list a {
    padding: 8px 40px 8px 12px;
    min-height: 58px;
  }
  .member-wrapper .member-box,
.member-wrapper .staff-box {
    width: calc((100% - 14px) / 2);
  }
  .member-wrapper .member-box:not(:nth-child(2n+1)),
.member-wrapper .staff-box:not(:nth-child(2n+1)) {
    margin-left: 14px;
  }
  .member-wrapper .member-box:nth-child(n+3),
.member-wrapper .staff-box:nth-child(n+3) {
    margin-top: 20px;
  }
  .member-wrapper .member-box .badge,
.member-wrapper .staff-box .badge {
    bottom: 0;
  }
  .member-wrapper .member-box .name-area .position,
.member-wrapper .staff-box .name-area .position {
    font-size: 16px;
    position: absolute;
    left: 0;
    bottom: 100%;
    z-index: 1;
  }
  .member-wrapper .member-box .name-area .name,
.member-wrapper .staff-box .name-area .name {
    font-size: 22px;
    line-height: 1.2;
    font-weight: bold;
  }
  .member-wrapper .member-box .name-area .en,
.member-wrapper .staff-box .name-area .en {
    margin-top: 0;
  }
  .member-wrapper .member-box .name-area .number,
.member-wrapper .staff-box .name-area .number {
    font-size: 60px;
    margin-top: 5px;
  }
  .member-wrapper .member-box .img::before,
.member-wrapper .staff-box .img::before {
    height: 85%;
  }
  .member-wrapper .member-box {
    padding-top: 40px;
  }
  .member-wrapper .member-box .name-area {
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .member-wrapper .member-box .name-area .name,
.member-wrapper .member-box .name-area .en,
.member-wrapper .member-box .name-area .number {
    width: 100%;
  }
  .member-wrapper .member-box .name-area .en {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .member-wrapper .member-box .name-area .name {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .member-wrapper .member-box .name-area .number {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .member-wrapper .staff-box .name-area {
    padding-right: 0;
  }
  .member-wrapper .staff-box .name-area .name {
    padding-top: 5px;
    padding-right: 40px;
  }
  .member-wrapper .staff-box .name-area .en {
    margin-top: 3px;
  }
  .member-wrapper .staff-box .name-area .number {
    font-size: 40px;
    margin-top: 0;
    top: -6px;
  }
  .member-wrapper .staff-box .img {
    overflow: hidden;
  }
  .member-wrapper .staff-box .img::before {
    height: 90%;
  }
  .member-wrapper .staff-box .img img {
    width: 130%;
    max-width: inherit;
    margin-left: -15%;
  }
  .member-wrapper + .c-ttl03 {
    margin-top: 84px;
  }
  .member-wrapper + .c-ttl03.bk {
    margin-top: 86px;
    padding-top: 40px;
  }
  .member-wrapper + .member-wrapper {
    margin-top: 24px;
  }
  .player-pager .btn-back {
    display: none;
  }
  .section-player-mv .txt-name {
    top: 15px;
    left: 20px;
  }
  .section-player-mv .txt-name .en {
    display: none;
  }
  .section-player-mv .txt-name .ja {
    font-size: 28px;
    font-weight: bold;
  }
  .section-player-mv .txt-number .number {
    font-size: 100px;
  }
  .section-player-mv .txt-number .name .en {
    display: inline-block;
    font-size: 40px;
    font-style: italic;
    font-weight: bold;
    line-height: 1.05;
    margin-top: 5px;
  }
  .section-player-mv .txt-number .name .ja {
    display: none;
  }
  .section-player-data .data-summary {
    padding: 24px 10px;
  }
  .section-player-data .data-detail {
    padding: 30px 30px 45px;
  }
  .section-player-data .txt-wrap {
    padding: 0 20px;
  }
  .section-player-data .name {
    margin-top: 5px;
  }
  .player-table {
    margin-top: -10px;
  }
  .player-table tbody,
.player-table tr,
.player-table th,
.player-table td {
    display: block;
    width: 100%;
  }
  .player-table th {
    border-bottom: 0;
    margin-bottom: 3px;
  }
  .player-table tr {
    border-bottom: 1px solid currentColor;
    padding: 10px 0;
  }
  .player-table.message {
    margin-top: -15px;
    margin-bottom: -15px;
  }
  .player-table.message th {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .player-table.message td {
    font-size: 16px;
  }
  .player-table.message tr {
    padding: 15px 0;
  }
  .player-table.message tr:last-child {
    border-bottom: 0;
  }
  .section-player-faq {
    padding: 14px 0 30px;
  }
  .section-player-faq .section-ttl {
    font-size: 26px;
    margin-left: 15px;
  }
  .faq-table {
    font-size: 16px;
  }
  .faq-table tbody,
.faq-table tr,
.faq-table th,
.faq-table td {
    display: block;
    width: 100%;
  }
  .faq-table th {
    border-bottom: 0;
    margin-bottom: 10px;
    padding-left: 30px;
  }
  .faq-table tr {
    border-bottom: 1px solid currentColor;
    padding: 15px 10px;
  }
  .p-startingmember .c-page-ttl {
    padding-bottom: 20px;
  }
  .p-startingmember .c-page-ttl .en {
    font-size: 42px;
  }
  .p-startingmember .c-page-ttl .ja {
    font-size: 18px;
  }
  .section-todays-game .game-box .ttl-wrap {
    padding: 25px 25px 0;
  }
  .section-todays-game .game-box .info-wrap {
    padding: 15px 25px 20px;
  }
  .section-todays-game .game-box .ttl {
    text-align: left;
  }
  .section-todays-game .game-box .schedule-year {
    font-size: 22px;
  }
  .section-todays-game .game-box .schedule-date {
    font-size: 64px;
    margin-left: 15px;
    margin-right: 10px;
  }
  .section-todays-game .game-box .schedule-day {
    font-size: 30px;
  }
  .section-todays-game .game-box .schedule-time {
    display: block;
    font-size: 24px;
    margin: -3px 0 8px;
  }
  .section-todays-game .game-box .place {
    font-size: 24px;
  }
  .section-todays-game .game-box .score {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 8px;
  }
  .section-todays-game .game-box .score .vs {
    font-size: 28px;
    margin-top: 0;
  }
  .section-todays-game .game-box .score .team {
    font-size: 18px;
    display: block;
  }
  .section-todays-game .game-box .score-me .team::before {
    width: 97px;
    height: 85px;
  }
  .section-todays-game .game-box .score-enemy .team {
    font-size: 20px;
  }
  .section-startingmember {
    padding-top: 75px;
    padding-bottom: 54px;
  }
  .section-startingmember .starting-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .section-startingmember .starting-list li + li {
    margin-top: 20px;
  }
  .section-startingmember .starting-list li .thumb {
    width: 138px;
    padding-top: 0;
    overflow: visible;
  }
  .section-startingmember .starting-list li .thumb::after {
    height: 100%;
  }
  .section-startingmember .starting-list li .thumb span {
    top: auto;
    bottom: 0;
    height: calc(100% + 10px);
  }
  .section-startingmember .starting-list li .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 18px 10px 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .section-startingmember .starting-list li .info .name {
    margin-bottom: 6px;
  }
  .section-startingmember .starting-list li .info .num {
    font-size: 28px;
    margin: 6px 0 10px;
  }
  .section-startingmember .starting-list li .info .position {
    font-size: 14px;
    padding: 7px 10px;
    margin: auto -10px 0;
    width: calc(100% + 20px);
  }
  .section-startingmember .starting-list li .info .position .en {
    padding: 8px 10px 4px 0;
  }
  .section-startingmember .order-area {
    display: none;
  }
  .p-download .c-page-ttl {
    padding: 30px 0 90px;
  }
  .p-download .c-page-ttl .en {
    font-size: 38px;
  }
  .download-switching-tab li {
    width: calc((100% - 40px) / 3);
  }
  .download-switching-tab li + li {
    margin-left: 10px;
  }
  .download-switching-tab li span {
    padding: 22px 0;
    font-size: 16px;
  }
  .download-items {
    padding: 100px 25px;
  }
  .download-box .download-image li {
    width: 100%;
  }
  .download-box .download-image li + li {
    margin-top: 80px;
  }
  .download-box .download-image .downloads {
    margin-top: 30px;
  }
  .p-team .c-page-ttl {
    padding-bottom: 20px;
  }
  .p-team .c-page-ttl .img {
    margin: 25px 10px -10px;
  }
  .p-team .team-ttl {
    font-weight: bold;
    margin-bottom: 25px;
  }
  .section-team-name {
    padding-top: 85px;
  }
  .section-team-name .lead-txt {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .section-team-name .wrap01 .box + .box,
.section-team-name .wrap02 .box + .box {
    border-top: 1px solid #C4C4C4;
  }
  .section-team-name .wrap01 .box {
    padding: 30px 20px;
  }
  .section-team-name .wrap01 .logo,
.section-team-name .wrap01 .name {
    margin: 10px 0 28px;
  }
  .section-team-name .wrap01 .logo img {
    width: 190px;
    height: 180px;
  }
  .section-team-name .wrap01 .name {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .section-team-name .wrap02 {
    padding: 15px 20px;
  }
  .section-team-name .wrap02 .box + .box {
    border-top: 0;
  }
  .section-team-name .wrap02 .txt {
    line-height: 1.42;
    margin-top: 8px;
  }
  .section-team-slogan {
    margin-top: 50px;
  }
  .section-team-slogan .team-ttl {
    margin-bottom: 48px;
  }
  .section-team-slogan .txt {
    font-size: 20px;
    margin-top: 15px;
  }
  .section-team-result {
    margin-top: 47px;
    padding-bottom: 70px;
  }
  .section-team-result .table {
    margin-top: -15px;
  }
  .section-team-result .table th,
.section-team-result .table td {
    width: 25%;
  }
  .section-team-result .table th:nth-child(2),
.section-team-result .table td:nth-child(2) {
    width: 50%;
  }
  .section-team-result .table .year {
    font-size: 20px;
    text-align: center;
  }
  .section-team-result .table .title {
    font-size: 18px;
    padding: 15px 0 16px;
  }
  .section-team-result .table .result {
    font-size: 22px;
  }
  .section-team-history {
    padding-top: 48px;
    padding-bottom: 80px;
  }
  .section-team-history .table {
    width: calc(100% + 20px);
    margin: 0 -10px;
  }
  .section-team-history .table::before {
    left: 75px;
  }
  .section-team-history .table th,
.section-team-history .table td {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .section-team-history .table th {
    font-size: 22px;
    padding-top: 19px;
    padding-right: 18px;
    text-align: right;
    width: 75px;
  }
  .section-team-history .table th::before {
    top: 21px;
  }
  .section-team-history .table td {
    padding-left: 15px;
  }
  .section-team-history .table .ttl {
    margin: -2px 0 10px 46px;
  }
  .section-team-history .table .txt {
    font-size: 14px;
  }
  .section-team-history .table .txt:first-child {
    margin-top: 5px;
  }
  .section-team-ob {
    padding-top: 48px;
    padding-bottom: 58px;
  }
  .section-team-ob .list {
    margin: 0 -10px;
  }
  .section-team-ob .list li {
    margin: 0;
    padding: 24px 16px 12px;
    width: calc(50% - 10px);
  }
  .section-team-ob .list li:nth-child(even) {
    margin-left: 10px;
  }
  .section-team-ob .list li:nth-child(n+3) {
    margin-top: 10px;
  }
  .section-team-ob .list .name {
    font-size: 20px;
  }
  .section-team-ob .list .team {
    font-size: 13px;
  }
  .section-team-home {
    margin-top: 48px;
  }
  .section-team-home .wrap01 img {
    height: 55.7333333333vw;
  }
  .section-team-home .wrap02 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .section-team-home .wrap02 .box {
    margin-top: 6px;
  }
  .section-team-home .wrap02 .box01 {
    width: 100%;
  }
  .section-team-home .wrap02 .box01 img {
    height: 34.6666666667vw;
  }
  .section-team-home .wrap02 .box02,
.section-team-home .wrap02 .box03 {
    width: calc(50% - 3px);
  }
  .section-team-home .wrap02 .box02 img,
.section-team-home .wrap02 .box03 img {
    height: 37.6vw;
  }
  .section-team-home .address {
    margin-top: 18px;
    position: relative;
  }
  .section-team-home .address .head {
    display: block;
    font-size: 16px;
  }
  .section-team-home .c-btn {
    position: absolute;
    top: 3px;
    right: 0;
  }
  .section-team-club {
    margin-top: 44px;
    padding-top: 62px;
  }
  .section-team-club .team-ttl {
    margin-bottom: 50px;
  }
  .section-team-club .wrap .box + .box {
    margin-top: 74px;
  }
  .section-team-club .wrap .img {
    margin-bottom: 15px;
  }
  .section-team-club .wrap .ttl {
    margin-bottom: 8px;
  }
}

@media only screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .tab-sp {
    display: none !important;
  }
  .l-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .l-column-side {
    background-color: #fff;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    position: relative;
    z-index: 2;
  }
  .l-column-side .logo {
    padding-top: 37px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
  }
  .l-column-side .sticky-wrap {
    width: 274px;
  }
  .l-column-side .box {
    padding: 80px 50px;
  }
  .l-column-side .list {
    font-family: "Josefin Sans", "Noto Sans JP", Meiryo, sans-serif;
  }
  .l-column-side .list a {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    display: block;
    padding: 17px 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .l-column-side .list .contact a {
    margin-left: -20px;
    padding: 20px 20px 18px;
    display: inline-block;
    text-align: center;
    font-weight: normal;
    color: #fff;
    border-radius: 17px;
    background-color: #EB0A1E;
  }
  .l-column-main {
    width: calc(100% - 274px);
  }
  .sticky {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .sticky .sticky-inner {
    overflow: hidden;
  }
  .sticky.is-fixed .sticky-wrap {
    position: fixed;
    bottom: 0;
  }
  .sticky.is-fixed .sticky-inner {
    overflow: auto;
  }
  .c-nav .inner {
    display: table;
  }
  .c-nav .logo,
.c-nav .contents {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
  }
  .c-nav .logo {
    text-align: center;
    background: #EB0A1E;
  }
  .c-nav .list {
    padding: 100px 100px 40px;
  }
  .c-nav .list a:hover {
    color: #000;
  }
  .c-nav .c-sns-list {
    padding: 0 50px 80px;
  }
  .c-nav .c-sns-list a:hover {
    color: #000;
  }
  .c-sns-list a:hover {
    color: #EB0A1E;
  }
  .c-footer .footer-nav .list a:hover {
    color: #EB0A1E;
  }
  .c-btn:hover {
    color: #fff;
    background-color: #000;
  }
  .c-btn02:hover {
    color: #000;
    background-color: #fff;
  }
  .c-btn03:hover {
    color: #EB0A1E;
  }
  .section-home-mv .ttl .ja {
    margin-bottom: 27px;
  }
  .section-home-game .swiper-button-prev:hover, .section-home-game .swiper-button-next:hover {
    color: #000;
    background-color: #fff;
  }
  .section-home-member .swiper-slide {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .section-home-member .swiper-slide:hover {
    background-color: rgba(0, 0, 0, 0.85);
  }
  .section-home-about .item:hover::before {
    opacity: 1;
  }
  .section-home-facebook .archive-wrap a:hover {
    color: #EB0A1E;
  }
  .c-form-select .list > li:hover {
    color: #fff;
  }
  .schedule-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .schedule-box .ttl-wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .schedule-box .info-wrap {
    width: 350px;
  }
  .schedule-box .score {
    min-width: 200px;
  }
  .schedule-box .score .team {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc((100% - 200px) / 2);
  }
  .schedule-box .score-result {
    width: 100%;
  }
  .position-select .select-list a:hover {
    color: #EB0A1E;
  }
  .position-select .select-list a:hover::before {
    border-color: #EB0A1E transparent transparent transparent;
  }
  .member-wrapper .member-box,
.member-wrapper .staff-box {
    width: calc((100% - 108px) / 3);
  }
  .member-wrapper .member-box:not(:nth-child(3n+1)),
.member-wrapper .staff-box:not(:nth-child(3n+1)) {
    margin-left: 54px;
  }
  .member-wrapper .member-box:nth-child(n+4),
.member-wrapper .staff-box:nth-child(n+4) {
    margin-top: 30px;
  }
  .member-wrapper a.member-box:hover .img::before,
.member-wrapper a.staff-box:hover .img::before {
    background: #EB0A1E;
  }
  .section-player-data .wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    max-width: 1366px;
  }
  .section-player-data .data-summary {
    width: 33%;
    min-width: 532px;
  }
  .section-player-data .data-summary .inner {
    margin: 0 0 0 auto;
    width: 490px;
  }
  .section-player-data .data-detail {
    border-left: solid 1px #000;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .section-player-data .data-detail .inner {
    margin: 0 0 auto 0;
    max-width: 615px;
  }
  .section-player-faq .inner-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .section-player-faq .ttl-box {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    text-align: center;
    width: 312px;
  }
}

@media only screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
  .l-column-side .logo {
    position: absolute;
    z-index: 1;
  }
  .l-column-side .list {
    display: none;
  }
  .c-nav {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
  .c-nav {
    -webkit-box-shadow: inset 32px 0 0 #EB0A1E;
            box-shadow: inset 32px 0 0 #EB0A1E;
  }
  .c-nav .logo,
.c-nav .contents {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
  .c-nav .logo {
    padding: 23px 0 0 67px;
  }
  .c-nav .logo .c-svg {
    font-size: 104px;
    color: #EB0A1E;
  }
  .c-nav .list {
    padding: 25px 40px 0 80px;
  }
  .c-nav .list a {
    padding: 22px 0 14px;
  }
  .c-nav .list .en {
    font-size: 28px;
  }
  .c-nav .list .ja {
    font-size: 16px;
  }
  .c-nav .c-sns-list {
    padding: 50px 40px 80px;
  }
  .section-home-mv .ttl {
    left: 17px;
    bottom: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .section-home-mv .ttl .ja .marker::before {
    margin-right: 5px;
  }
  .section-home-mv .slider .slider_btn {
    padding: 0 0 0 15px;
  }
  .section-home-mv .slider .slider_btn span {
    margin: 0 15px 10px 0;
  }
  .section-home-mv .c-sns-list {
    right: 23px;
    bottom: 22px;
  }
  .section-home-mv .ttl .ja .marker::before {
    -webkit-animation-delay: 0.69s;
            animation-delay: 0.69s;
  }
  .section-home-mv .ttl .en .marker:nth-of-type(1)::before {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .section-home-mv .ttl .en .marker:nth-of-type(2)::before {
    -webkit-animation-delay: 0.63s;
            animation-delay: 0.63s;
  }
  .schedule-box .ttl-wrap {
    padding: 8px 16px;
    min-height: 58px;
  }
  .schedule-box .info-wrap {
    position: relative;
    padding: 16px 16px 14px;
  }
  .schedule-box .btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid currentColor;
  }
  .schedule-box .schedule-year {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .schedule-box .place {
    font-size: 18px;
  }
  .schedule-box .score {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 8px;
    min-height: 150px;
  }
  .schedule-box .score .team {
    font-size: 16px;
    display: block;
  }
  .schedule-box .score-result {
    font-size: 32px;
    min-width: 88px;
    margin: 6px 5px 0;
    padding: 12px 0 4px;
  }
  .schedule-box .score .point {
    font-size: 70px;
  }
  .schedule-box[data-status=yet] .score-me .team::before, .schedule-box[data-status=cancel] .score-me .team::before {
    display: block;
    width: 89px;
    height: 85px;
  }
  .schedule-box:not([data-status=yet]):not([data-status=cancel]) .score {
    padding: 35px 8px 10px;
  }
  .schedule-box:not([data-status=yet]):not([data-status=cancel]) .score-me {
    position: relative;
  }
  .schedule-box:not([data-status=yet]):not([data-status=cancel]) .score-me .team::before {
    opacity: 0.1;
    position: absolute;
    top: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 182px;
    height: 85px;
  }
  .schedule-box:not([data-status=yet]) .score {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .schedule-box:not([data-status=yet]) .score-me {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .schedule-box:not([data-status=yet]) .score-enemy {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .schedule-box:not([data-status=yet]) .score-result {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .schedule-box:not([data-status=yet]) .score .vs {
    display: none;
  }
  .schedule-box[data-status=cancel] .score {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .schedule-box[data-status=cancel] .score-result {
    font-size: 22px;
  }
  .allView.is_active,
.officialMatch.is_active,
.openVs.is_active {
    display: block !important;
  }
  .player-pager .btn-prev {
    left: 8px;
  }
  .player-pager .btn-next {
    right: 8px;
  }
  .section-player-mv .txt-number {
    left: 20px;
  }
  .section-player-data .data-summary {
    border-bottom: 1px solid #000;
  }
  .section-player-faq .ttl-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: -80px;
    min-height: 200px;
  }
  .section-player-faq .img {
    margin-right: -15px;
    max-width: 55%;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .inner-block.inner-min {
    max-width: 1120px;
  }
  .c-footer .footer-nav {
    border: solid #000;
    border-width: 1px 0;
  }
  .c-page-ttl {
    text-align: center;
  }
  .section-home-game .swiper-slide::before {
    top: 67px;
    bottom: 67px;
    left: 0;
    width: 19px;
  }
  .section-home-result .score {
    width: 400px;
  }
  .section-home-result .score .team {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc((100% - 400px) / 2);
  }
  .section-home-result .score-me .team::before {
    display: block;
    width: 161px;
    height: 154px;
    margin: 0 auto 18px;
    content: "";
    background: url(../img/common/logo_white.svg) no-repeat center center/contain;
  }
  .section-home-news .inner-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .section-home-news .ttl-wrap {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    margin-right: 35px;
    white-space: nowrap;
  }
  .section-home-news .contents-wrap {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .section-home-about .item {
    float: left;
  }
  .section-home-about .item01 {
    width: calc(53% - 17px);
    height: 381px;
    margin-right: 17px;
    background-image: url(../img/home/about-img01.jpg);
  }
  .section-home-about .item02 {
    width: 47%;
    height: 188px;
    padding: 32px 0 0 50px;
    background-image: url(../img/home/about-img02.jpg);
  }
  .section-home-about .item03 {
    width: 29%;
    height: 178px;
    margin-top: 17px;
    background-image: url(../img/home/about-img03.jpg);
  }
  .section-home-facebook {
    margin-top: 73px;
    border-top: 1px solid #000;
  }
  .section-home-facebook .inner-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .section-home-facebook .ttl-wrap {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-top: 50px;
  }
  .section-home-facebook .contents-wrap .fb-page {
    border: #000 solid;
    border-width: 0 1px;
  }
  .section-home-facebook .archive-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 86px;
    padding-top: 86px;
  }
  .section-home-facebook .archive-wrap a:not(:first-child) {
    margin-left: 92px;
  }
  .game-select .select-type {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 5px 0 0 46px;
  }
  .game-select .select-type input {
    position: absolute;
    opacity: 0;
  }
  .game-select .select-type .inn {
    font-size: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding: 0 30px;
    border-right: 2px solid currentColor;
  }
  .game-select .select-type .inn::after {
    position: absolute;
    right: 0;
    bottom: -14px;
    left: 0;
    width: calc(100% - 40px);
    height: 3px;
    margin: auto;
    content: "";
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0;
    background-color: currentColor;
  }
  .game-select .select-type label:first-child .inn {
    border-left: 2px solid currentColor;
  }
  .game-select .select-type input:checked + .inn::after {
    opacity: 1;
  }
  .schedule-box .schedule-date {
    min-width: 150px;
  }
  .position-select .select-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .position-select .select-list li {
    border-left: 2px solid #000;
  }
  .position-select .select-list li:last-child {
    border-right: 2px solid #000;
  }
  .member-wrapper .member-box .name-area .position,
.member-wrapper .staff-box .name-area .position {
    margin: 12px 0 2px;
  }
  .member-wrapper .member-box .img,
.member-wrapper .staff-box .img {
    min-height: 340px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .member-wrapper .member-box .img img,
.member-wrapper .staff-box .img img {
    margin-top: auto;
  }
  .member-wrapper .member-box {
    padding-left: 56px;
  }
  .section-player-mv .txt-name {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section-player-mv .txt-name .ja {
    display: none;
  }
  .section-player-mv .txt-number .name .en {
    display: none;
  }
  .player-table th,
.player-table td {
    border-bottom: 1px solid currentColor;
    padding: 18px 0;
  }
  .player-table th {
    padding-right: 60px;
    white-space: nowrap;
    width: 1px;
  }
  .faq-table th,
.faq-table td {
    border-bottom: 1px solid currentColor;
    padding: 15px 0;
  }
  .faq-table th {
    padding-left: 34px;
    padding-right: 34px;
    width: 292px;
  }
  .p-startingmember {
    min-width: 1080px;
  }
  .p-startingmember .c-page-ttl .en {
    margin-bottom: 5px;
  }
  .section-todays-game .game-box .schedule-time {
    margin: 0 0 -0.2em 30px;
  }
  .section-todays-game .game-box .score {
    min-height: 200px;
  }
  .section-todays-game .game-box .score .team {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc((100% - 200px) / 2);
  }
  .section-startingmember .member-area {
    background: url(../img/startingmember/ground.svg) no-repeat bottom 25% center/100% auto;
    margin-bottom: 70px;
    width: 100%;
    height: 1004px;
  }
  .section-startingmember .mini-ground {
    display: none;
  }
  .section-startingmember .member-ttl {
    display: none;
  }
  .section-startingmember .starting-list li {
    width: 160px;
    position: absolute;
  }
  .section-startingmember .starting-list li.cf {
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .section-startingmember .starting-list li.lf {
    top: 90px;
    left: 115px;
  }
  .section-startingmember .starting-list li.rf {
    top: 90px;
    right: 115px;
  }
  .section-startingmember .starting-list li.ss {
    top: 210px;
    left: 295px;
  }
  .section-startingmember .starting-list li.sb {
    top: 210px;
    right: 295px;
  }
  .section-startingmember .starting-list li.tb {
    bottom: 260px;
    left: 170px;
  }
  .section-startingmember .starting-list li.p {
    bottom: 260px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .section-startingmember .starting-list li.fb {
    bottom: 260px;
    right: 170px;
  }
  .section-startingmember .starting-list li.c {
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  .section-startingmember .starting-list li.dh {
    bottom: 0;
    right: 170px;
  }
  .section-startingmember .starting-list li .number {
    display: none;
  }
  .section-startingmember .starting-list li .thumb {
    padding-top: 170px;
  }
  .section-startingmember .starting-list li .info {
    padding-top: 10px;
    margin: -36px 7.5px 0;
  }
  .download-switching-tab li {
    margin: 0 10px;
    width: 250px;
  }
  .download-items {
    min-height: 680px;
  }
  .download-box .download-image {
    max-width: 1092px;
    margin: auto;
  }
  .download-box .download-image li {
    width: 48%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .download-box .download-image li:nth-child(n+3) {
    margin-top: 80px;
  }
  .p-team .team-ttl {
    text-align: center;
  }
  .section-team-name .lead-txt {
    font-weight: bold;
    text-align: center;
  }
  .section-team-name .wrap01,
.section-team-name .wrap02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .section-team-name .wrap01 .box,
.section-team-name .wrap02 .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-team-name .wrap01 .box + .box,
.section-team-name .wrap02 .box + .box {
    border-left: 1px solid #C4C4C4;
  }
  .section-team-name .wrap01 .logo,
.section-team-name .wrap01 .name {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .section-team-name .wrap02 .box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section-team-name .wrap02 .creator {
    padding: 0 50px 0 40px;
  }
  .section-team-name .wrap02 .txt {
    padding: 11px 30px;
  }
  .section-team-slogan {
    text-align: center;
  }
  .section-team-home .wrap02 {
    margin-top: 21px;
  }
  .section-team-home .wrap02 .box:not(:first-child) {
    margin-left: 15px;
  }
  .section-team-home .address {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-team-home .address .head {
    margin-right: 78px;
  }
  .section-team-club .wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 -28px -50px 0;
  }
  .section-team-club .wrap .box {
    margin: 0 28px 50px 0;
    width: calc((99.99% - 56px) / 2);
  }
}

@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .l-column-side .list a:hover {
    color: #EB0A1E;
  }
  .l-column-side .list .contact a:hover {
    color: #000;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .l-column-side .logo {
    top: 38px;
    left: 50px;
    width: 118px;
  }
  .member-wrapper {
    max-width: 664px;
    margin: auto;
  }
  .member-wrapper .member-box,
.member-wrapper .staff-box {
    width: calc((100% - 56px) / 2);
  }
  .member-wrapper .member-box:not(:nth-child(2n+1)),
.member-wrapper .staff-box:not(:nth-child(2n+1)) {
    margin-left: 54px;
  }
  .member-wrapper .member-box:nth-child(n+3),
.member-wrapper .staff-box:nth-child(n+3) {
    margin-top: 30px;
  }
  .section-player-faq .section-ttl {
    margin-left: 20%;
  }
  .section-team-name .wrap01 .box {
    padding: 16px 20px 20px;
  }
}

@media only screen and (max-width: 767px) and (max-width: 374px) {
  .section-home-game .swiper-slide {
    width: calc(100% - 40px - 20px);
  }
  .section-home-game .swiper-slide .schedule-date {
    font-size: 54px;
  }
  .section-todays-game .game-box .schedule-year {
    font-size: 18px;
  }
  .section-todays-game .game-box .schedule-date {
    font-size: 50px;
  }
  .section-todays-game .game-box .schedule-day {
    font-size: 26px;
  }
  .section-startingmember .starting-list li .thumb {
    width: 110px;
  }
  .section-startingmember .starting-list li .info .num {
    font-size: 24px;
  }
  .section-startingmember .starting-list li .info .position {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1200px) {
  .section-home-facebook .contents-wrap {
    width: 400px;
  }
  .section-player-data .data-summary {
    text-align: center;
  }
  .section-player-data .txt-wrap {
    display: inline-block;
    text-align: left;
  }
}

@media only screen and (max-width: 1200px) and (max-width: 767px) {
  .section-home-facebook .contents-wrap {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .schedule-box .info-wrap {
    width: 310px;
    padding: 30px 20px 35px;
  }
  .section-player-data .data-summary {
    padding: 70px 20px;
    width: 40%;
    min-width: 1px;
  }
  .section-player-data .data-summary .inner {
    width: 100%;
  }
  .section-player-data .data-detail {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1144px) {
  .member-wrapper .member-box,
.member-wrapper .staff-box {
    width: calc((100% - 60px) / 3);
  }
  .member-wrapper .member-box:not(:nth-child(3n+1)),
.member-wrapper .staff-box:not(:nth-child(3n+1)) {
    margin-left: 30px;
  }
}

@media only screen and (min-width: 1201px) {
  .section-player-data .txt-wrap {
    margin-left: 80px;
  }
}

@media only screen and (max-width: 374px) {
  .section-startingmember .mini-ground .mini-starting-list li .position {
    font-size: 10px;
  }
  .section-startingmember .mini-ground .mini-starting-list li .info .num {
    font-size: 16px;
  }
  .section-startingmember .mini-ground .mini-starting-list li .info .name {
    font-size: 14px;
  }
}

@media only screen and (max-width: 460px) {
  .section-startingmember .starting-list li .number {
    font-size: 30px;
    width: 40px;
  }
}

@media only screen and (max-width: 767px) and (max-width: 400px) {
  .section-team-name .lead-txt {
    font-size: 4vw;
  }
}


/* 202410 mv 修正*/
.section-home-mv .sp_set {
	display: none;
}
.mainVisual_area {
	display: block;
}
@media only screen and (max-width: 767px) {
	.section-home-mv {
		height: calc(163vw + 100px);
	}
	.section-home-mv .pc_set {
		display: none;
	}
	.section-home-mv .sp_set {
		display: block;
	}
}