@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-size: clamp(16px, 3vw, 18px);
}

body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: clamp(14px, 1rem, 20px);
  letter-spacing: 0.05em;
  overflow-y: scroll;
  padding-bottom: 2rem;
}

.fixed {
  position: fixed;
  height: 110vh;
  width: 100vw;
}

a,
a:link,
a:hover,
a:visited {
  text-decoration: none;
  color: inherit;
}

.header {
  display: flex;
  align-items: flex-end;
  position: fixed;
  justify-items: center;
  background-color: rgba(164, 13, 52, 0.8);
  top: 0;
  height: 80px;
  width: 100%;
  color: white;
  z-index: 999;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  z-index: 999;
  color: white;
  transition: color 0.5s ease 0s;
}
.header-logo h1 {
  font-size: 24px;
  line-height: 0.6;
  margin-bottom: 4px;
  margin-top: auto;
}
.header-logo h1 span {
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  margin-right: 5px;
}
.header-logo.active {
  color: #b00203;
}
.header-logo-sub {
  font-size: 14px;
}
.header-nav {
  box-sizing: border-box;
  margin-bottom: 5px;
  height: 100%;
}
.header-menu {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  width: 100%;
  bottom: 0;
  margin: 0;
  gap: 30px;
}
.header-menu-item {
  line-height: 0.8;
  letter-spacing: 0.1em;
}
.header-menu-item a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
}
.header-menu-item a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: rgb(255, 255, 255);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header-menu-item a:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.topnews {
  display: block;
  position: relative;
  background-color: #b00203;
  min-height: 200px;
  padding: 285px 0 50px 0;
  box-sizing: border-box;
  overflow: hidden;
}
.topnews::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 0;
  width: 0;
  bottom: 0;
  border-style: solid;
  border-width: 250px 0 270px 100vw;
  border-color: white transparent transparent transparent;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.topnews::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("/storage/images/top/top-defence.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  top: 17px;
  left: -20px;
  height: clamp(200px, 50vw, 290px);
  box-sizing: border-box;
  width: clamp(200px, 50vw, 310px);
  overflow: hidden;
}
.topnews-box {
  width: 100%;
}
.topnews-box .card {
  position: relative;
  margin-top: 15px;
  width: 100%;
}
.topnews-box .card::before {
  content: "";
  display: block;
  padding-top: 110%;
}
@media (max-width: 340px) {
  .topnews-box .card::before {
    padding-top: 120%;
  }
}
.topnews-news {
  background-color: rgba(255, 255, 255, 0.9);
  max-height: 600px;
  padding: 10px 15px;
  max-width: 100%;
  width: 60%;
}
@media (max-width: 760px) {
  .topnews-news {
    width: 80%;
  }
}
.topnews-item {
  display: flex;
  padding: 5px 0;
  border-bottom: 1px solid rgb(51, 51, 51);
}
@media (max-width: 415px) {
  .topnews-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.topnews-item p {
  color: rgb(0, 0, 0);
  margin: 0;
  letter-spacing: 0.2em;
}
.topnews-item_date {
  padding-left: 5px;
  min-width: 180px;
  font-size: 16px;
  border-left: rgb(122, 122, 163) 3px solid;
}
.topnews-item_title {
  word-wrap: break-word;
}
.topnews-text {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: clamp(12px, 2vw, 18px);
}
.topnews-date {
  position: absolute;
  bottom: 5px;
  right: 5px;
  letter-spacing: 0.1rem;
  font-size: clamp(12px, 3vw, 18px);
}
.topnews h2 {
  display: inlin;
  letter-spacing: 0.2em;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  top: 76px;
  position: absolute;
}
@media (max-width: 960px) {
  .topnews h2 {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.topnews .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 226px;
  height: 50px;
  background-color: #dadada;
  margin: 0 auto;
  transition: all 0.5s ease 0s;
}
.topnews .button span {
  margin: 0 auto;
  color: black;
  font-size: 16px;
  letter-spacing: 0.2em;
}
.topnews .button:hover {
  opacity: 0.7;
}

.gameresult {
  display: block;
  position: relative;
  background-image: url("/storage/images/top/gameresult.webp");
  background-size: cover;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.7);
  min-height: 400px;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}
.gameresult::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 0;
  width: 0;
  bottom: 0;
  border-style: solid;
  border-width: 250px 0 270px 100vw;
  border-color: white transparent transparent transparent;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}
.gameresult::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("/storage/images/top/top-ofence.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  top: -5px;
  right: -10px;
  height: clamp(300px, 50vw, 400px);
  box-sizing: border-box;
  width: clamp(200px, 50vw, 310px);
  overflow: hidden;
}
.gameresult-subtitle {
  font-size: 20px;
  padding-top: 8px;
  margin-bottom: 0;
}
.gameresult-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  min-height: 100px;
  max-height: 500px;
  margin: 250px auto 20px auto;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.6);
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}
@media (min-width: 960px) {
  .gameresult-box {
    width: 80%;
  }
}
.gameresult-box::-webkit-scrollbar {
  display: none;
}
.gameresult-item {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.9);
}
.gameresult-item-header {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px;
  background-color: #fff;
  font-size: 20px;
  color: black;
  z-index: 5;
}
@media (max-width: 460px) {
  .gameresult-item-header {
    font-size: 16px;
  }
}
@media (max-width: 340px) {
  .gameresult-item-header {
    font-size: 12px;
  }
}
.gameresult-item li:first-of-type {
  margin-top: 45px;
}
.gameresult-game {
  list-style: none;
  padding: 0;
}
.gameresult-inner {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 0;
  align-items: center;
  color: white;
  height: 100px;
  width: 100%;
}
@media (min-width: 760px) {
  .gameresult-inner {
    justify-content: space-around;
  }
}
@media (max-width: 415px) {
  .gameresult-inner {
    height: 60px;
  }
}
.gameresult-inner-category {
  display: inline-block;
  position: absolute;
  padding: 0 10px;
  background: rgb(117, 116, 116);
  color: white;
  box-sizing: border-box;
  top: 3px;
  left: 0;
}
@media (max-width: 460px) {
  .gameresult-inner-category {
    font-size: 16px;
    top: -25px;
  }
}
@media (max-width: 340px) {
  .gameresult-inner-category {
    font-size: 12px;
  }
}
.gameresult-inner-team {
  display: inline-block;
  position: relative;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  width: 70%;
  box-sizing: border-box;
}
@media (min-width: 730px) {
  .gameresult-inner-team {
    padding-left: 10%;
  }
}
@media (max-width: 460px) {
  .gameresult-inner-team {
    font-size: 16px;
  }
}
@media (max-width: 340px) {
  .gameresult-inner-team {
    font-size: 12px;
  }
}
.gameresult-inner-score {
  display: inline-block;
  font-size: clamp(18px, 3vw, 28px);
  white-space: nowrap;
  font-weight: 800;
  font-family: "Oswald", sans-serif;
  width: 30%;
  box-sizing: border-box;
}
@media (max-width: 340px) {
  .gameresult-inner-score {
    font-size: 14px;
  }
}
.gameresult-inner-score span {
  font-size: 32px;
  display: inline-block;
  text-align: center;
  width: 32px;
  color: red;
}
@media (max-width: 460px) {
  .gameresult-inner-score span {
    font-size: 20px;
    width: 20px;
  }
}
@media (max-width: 340px) {
  .gameresult-inner-score span {
    font-size: 14px;
    width: 14px;
  }
}
.gameresult-item:not(:last-child) {
  margin-bottom: 20px;
}
.gameresult h2 {
  display: inline-block;
  letter-spacing: 0.2em;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  top: 76px;
  position: absolute;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.8);
}

.recruit {
  display: block;
  position: relative;
  padding-top: 250px;
  height: 650px;
  box-sizing: border-box;
}
.recruit-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: rgb(105, 105, 105);
  height: 400px;
}
.recruit-inner p {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: clamp(16px, 3vw, 18px);
}
.recruit-inner .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 226px;
  height: 50px;
  background-color: white;
  margin: 0 auto;
  transition: all 0.5s ease 0s;
  margin-top: 20px;
  box-shadow: 0 0 2px black;
}
.recruit-inner .button span {
  margin: 0 auto;
  color: black;
  font-size: 16px;
  letter-spacing: 0.2em;
}
.recruit-inner .button span {
  display: block;
}
.recruit-inner .button:hover {
  opacity: 0.7;
}
.recruit h2 {
  letter-spacing: 0.2em;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  top: 76px;
  position: absolute;
}

.home {
  display: block;
  position: relative;
  padding-top: 250px;
  box-sizing: border-box;
  font-size: clamp(16px, 3vw, 18px);
}
.home-map {
  background-color: rgb(105, 105, 105);
  height: 400px;
  padding: 0;
}
.home-map p {
  font-size: 20px;
  font-weight: 600;
  color: white;
  font-family: "Oswald", sans-serif;
}
.home-place {
  margin-top: 10px;
  padding: 20px;
}
.home-label {
  display: block;
  font-size: clamp(16px, 3vw, 20px);
}
.home-teambox {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
}
.home-team {
  display: inline-block;
}
.home-team-title {
  display: inline-block;
  font-size: 20px;
}
.home-team-schedule {
  /* font-family: 'Patua One', cursive; */
}
.home-team-schedule span {
  display: inline-block;
  min-width: 55px;
  margin-right: 10px;
}
.home-infomation {
  display: block;
  text-align: center;
  margin-top: 18px;
  /* font-family: 'Patua One', cursive; */
  font-size: clamp(16px, 3vw, 18px);
}
.home h2 {
  letter-spacing: 0.2em;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  top: 76px;
  position: absolute;
  width: 100%;
}

.loading {
  display: block;
  position: fixed;
  z-index: 999;
  top: 0;
}
.loading-inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 999;
  background-color: #b00203;
  opacity: 0.7;
}
.loading-content {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 200px;
  text-align: center;
}
.loading-content span {
  display: block;
  position: absolute;
  top: 75px;
  letter-spacing: 12px;
  left: 15%;
}
.loading .circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left: 15%;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: circle 0.5s alternate infinite ease;
          animation: circle 0.5s alternate infinite ease;
}
@-webkit-keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    -webkit-transform: scaleX(1.7);
            transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    -webkit-transform: scaleX(1.7);
            transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
.loading .circle:nth-child(2) {
  left: 45%;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.loading .circle:nth-child(3) {
  left: auto;
  right: 15%;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.loading .bshadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 62px;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  z-index: -1;
  left: 15%;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  -webkit-animation: shadow 0.5s alternate infinite ease;
          animation: shadow 0.5s alternate infinite ease;
}
@-webkit-keyframes shadow {
  0% {
    -webkit-transform: scaleX(1.5);
            transform: scaleX(1.5);
  }
  40% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scaleX(0.2);
            transform: scaleX(0.2);
    opacity: 0.4;
  }
}
@keyframes shadow {
  0% {
    -webkit-transform: scaleX(1.5);
            transform: scaleX(1.5);
  }
  40% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scaleX(0.2);
            transform: scaleX(0.2);
    opacity: 0.4;
  }
}
.loading .bshadow:nth-child(4) {
  left: 45%;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.loading .bshadow:nth-child(5) {
  left: auto;
  right: 15%;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.loading .wrapper span {
  position: absolute;
  top: 75px;
  font-family: "Lato";
  font-size: 20px;
  letter-spacing: 12px;
  color: #fff;
  left: 15%;
}

.page_top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 200px;
  width: 48px;
  height: 48px;
  z-index: 999;
  color: rgb(255, 255, 255);
  text-align: center;
}
.page_top::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("../storage/images/icon/top.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  top: 0;
  left: 0;
  z-index: -1;
}
.page_top span {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.432);
  padding: 0 3px;
  border-radius: 50%;
}
