@charset "UTF-8";
/*
Theme Name: baseball5
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  background-color: #181818;
  color: #D8D8D8;
  letter-spacing: 0.03em;
  line-height: 1.375;
}
html.active,
body.active {
  overflow: hidden;
}

.en {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.1em;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
  height: auto;
}

@media screen and (min-width: 960px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .pcNone {
    display: block;
  }
}

.com_text {
  font-size: 14px;
  text-align: center;
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #D8D8D8;
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
/*
Theme Name: baseball5
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ヘッダー
*--------------------------------------*/
header .container {
  padding: 15px 0 0;
}
header .logo {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
}
header .logo figure {
  width: 100px;
}
header .logo p {
  font-size: 16px;
}
header a {
  color: #fff !important;
}

@media screen and (max-width: 959px) {
  header {
    height: 50px;
    width: 100%;
    z-index: 99;
    margin-bottom: -60px;
  }
  header .sp_menu {
    z-index: 999;
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: #181818;
    border-radius: 5px;
    border: 1px solid #FCF24F;
    display: grid;
    place-content: center;
    height: 50px;
    width: 50px;
    transition: all 0.4s;
  }
  header .sp_menu.active {
    height: calc(100svh - 30px);
    width: calc(100% - 30px);
  }
  header .sp_menu.active .toggle_btn span:nth-child(1) {
    rotate: 45deg;
    top: 15px;
  }
  header .sp_menu.active .toggle_btn span:nth-child(2) {
    rotate: -45deg;
    bottom: 15px;
  }
  header .sp_menu.active .menu {
    display: block;
    animation: fadeIn 0.4s 0.3s forwards;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  header .toggle_btn {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 0;
  }
  header .toggle_btn span {
    transition: all 0.4s;
    transform-origin: left;
    position: absolute;
    width: 28px;
    height: 1px;
    background-color: #fff;
    translate: -50% 0;
    left: 50%;
  }
  header .toggle_btn span:nth-child(1) {
    top: 20px;
  }
  header .toggle_btn span:nth-child(2) {
    bottom: 20px;
  }
  header .menu {
    display: none;
    opacity: 0;
  }
  header .menu li {
    text-align: center;
  }
  header .menu li:not(li:last-child) {
    margin-bottom: 30px;
  }
  header .menu p {
    font-size: 18px;
  }
  header .menu span {
    font-size: 11px;
  }
  header .logo {
    gap: 10px;
  }
  header .logo figure {
    width: 80px;
  }
  header .logo p {
    font-size: 12px;
  }
}
@media screen and (min-width: 960px) {
  header {
    height: 88px;
    position: absolute;
    translate: -50% 0;
    left: 50%;
    top: 0;
    width: 100%;
  }
  header .container {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .menu {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: center;
    justify-content: right;
  }
  header .menu li a {
    transition: 0.4s;
  }
  header .menu li a:hover {
    color: #FCF24F;
  }
  header .menu p {
    font-size: 18px;
  }
  header .menu span {
    font-size: 11px;
  }
}
/*
Theme Name: baseball5
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* フッター
*--------------------------------------*/
footer .bg {
  position: relative;
  background-image: url(images/footer_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 959px) {
  footer .bg {
    background-image: url(images/footer_bg_sp.jpg);
  }
}
footer .logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
footer .logo figure {
  width: 100px;
}
footer .logo p {
  font-size: 16px;
}
footer .menu,
footer .sns_wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: center;
  margin-bottom: 80px;
}
footer .menu li a,
footer .sns_wrap li a {
  transition: 0.4s;
}
footer .menu li a:hover,
footer .sns_wrap li a:hover {
  color: #FCF24F;
}
footer .menu p,
footer .sns_wrap p {
  font-size: 18px;
}
footer .menu span,
footer .sns_wrap span {
  font-size: 11px;
}
footer .sns_wrap {
  margin: 0;
}
footer .sns_wrap li a {
  width: 20px;
  transition: 0.4s;
  transform-origin: center;
}
footer .sns_wrap li a:hover {
  scale: 1.2;
}
footer .top_btn {
  width: 50px;
  position: absolute;
  right: 60px;
  bottom: 30px;
  transition: 0.4s;
  transform-origin: center;
}
footer .top_btn:hover {
  scale: 1.08;
}
footer .copy {
  font-size: 14px;
  padding: 20px 0;
}
footer .copy p {
  font-weight: 400;
}
footer .spo_logo {
  max-width: 750px;
  margin: 0 auto;
}
footer .spo_logo .grid {
  display: grid;
  grid-template-columns: 150px 150px;
  gap: 15px;
  justify-content: center;
}
footer .spo_logo figure span {
  display: block;
  text-align: center;
  padding: 10px 0 45px 0;
  font-size: 14px;
}
footer .spo_title {
  font-size: 18px;
  color: #FCF24F;
  margin: 0 auto 40px;
  position: relative;
}
footer .spo_title:after {
  content: "";
  background-color: #D8D8D8;
  width: 100%;
  height: 1px;
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: 0;
  z-index: 1;
}
footer .spo_title span {
  position: relative;
  z-index: 2;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0 10px;
  background-color: #181818;
}
footer figure img {
  margin: 0 auto;
}
footer .big img {
  width: 130px;
}
footer .middle img {
  width: 200px;
}

@media screen and (max-width: 959px) {
  footer .menu {
    display: grid;
    grid-template-columns: 1fr;
  }
  footer .logo {
    display: grid;
    gap: 0;
    margin-bottom: 50px;
  }
  footer .logo figure {
    margin: 0 auto;
    width: 115px;
  }
  footer .logo p {
    text-align: center;
    font-size: 12px;
  }
  footer .sns_wrap {
    justify-content: center;
  }
  footer .top_btn {
    right: 15px;
    bottom: -75px;
    width: 50px;
  }
  footer .copy {
    padding: 0;
  }
  footer .copy p {
    padding: 40px 0 40px 15px;
  }
  footer .copy.container {
    width: 100%;
    max-width: 100%;
  }
}
/*--------------------------------------*
* object
*--------------------------------------*/
/*-------------------
* component
-------------------*/
/*
Theme Name: baseball5
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* コンテンツ幅
*--------------------------------------*/
/*
Theme Name: baseball5
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* 共通パーツ
*--------------------------------------*/
.default_btn {
  font-size: 18px;
  padding: 10px 0;
  text-align: center;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #D8D8D8;
  position: relative;
  border: 1px solid #404040;
  transition: all 0.4s;
}
.default_btn:before, .default_btn:after {
  content: "";
  position: absolute;
  background-color: #FCF24F;
  height: 1px;
  width: 50px;
  rotate: -30deg;
  transition: 0.4s;
}
.default_btn:before {
  left: -10px;
  top: 20px;
  transform-origin: left;
}
.default_btn:after {
  right: -10px;
  bottom: 20px;
  transform-origin: right;
}
.default_btn:hover {
  border: 1px solid #FCF24F;
  color: #FCF24F;
}
.default_btn:hover:before, .default_btn:hover:after {
  width: 0;
}

.sub_btn {
  background-color: #404040;
  padding: 10px 15px;
  transition: all 0.4s;
  border: 1px solid #404040;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.sub_btn .more {
  text-decoration: underline;
  text-align: right;
  margin: 0 0 0 auto;
  font-size: 13px;
}
.sub_btn:hover {
  border: 1px solid #FCF24F;
}
.sub_btn:hover .more {
  color: #FCF24F;
}

.link_btn {
  text-align: center;
  padding: 20px 0;
  background-color: #404040;
  transition: all 0.4s;
  border: 1px solid #404040;
}
.link_btn .en {
  font-size: 32px;
}
.link_btn .sub {
  font-size: 10px;
}
.link_btn:hover {
  border: 1px solid #FCF24F;
  color: #FCF24F;
}

.page_title {
  text-align: center;
}
.page_title h1 {
  font-size: 42px;
  color: #FCF24F;
}
.page_title .sub_title {
  font-size: 12px;
}

table {
  border: 1px solid #D8D8D8;
  border-radius: 10px;
  background-color: #404040;
  display: block;
  max-width: 500px;
  margin: 0 auto;
}
table tbody {
  width: 100%;
  display: block;
}
table tr:not(tr:last-child) {
  border-bottom: 1px solid #D8D8D8;
}
table td {
  padding: 15px 20px;
}
table td:nth-child(1) {
  font-size: 16px;
  min-width: 110px;
}
table td:nth-child(2) {
  width: 100%;
  padding: 15px 20px 15px 0;
  font-size: 14px;
  font-weight: 400;
}

.common_image img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 600/400;
}

@media screen and (max-width: 959px) {
  .sub_btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 20px;
  }
  .sub_btn .more {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .page_title h1 {
    font-size: 32px;
  }
  table td {
    font-size: 12px !important;
    padding: 10px;
  }
  table td:nth-child(1) {
    min-width: 70px;
  }
  table td:nth-child(2) {
    padding: 10px 10px 10px 0;
  }
  .link_btn .en {
    font-size: 24px;
  }
}
/*-------------------
* project
-------------------*/
/*
Theme Name: baseball5
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
html:has(.front_page),
body:has(.front_page) {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.03em;
  line-height: 1.375;
}

html:has(.front_page).active,
body:has(.front_page).active {
  overflow: hidden;
}

.front_page .en {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.1em;
}

.front_page .kv {
  background: url(images/kv-pc.png) no-repeat center/cover;
  aspect-ratio: 9/5;
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .front_page .kv {
    aspect-ratio: 5/8;
    background: url(images/kv-sp.png) no-repeat center/cover;
  }
}
.front_page .kv__title {
  width: 34.31vw;
  margin-inline: auto;
  margin-top: 10%;
}

@media screen and (max-width: 959px) {
  .front_page .kv__title {
    margin-top: 28%;
    width: 66.67%;
  }
}
.front_page .kv .default_btn {
  margin-top: 50px;
}

.front_page .default_btn {
  margin-inline: auto;
  margin-top: 50px;
}

.front_page {
  --slant-h: clamp(56px, 6vw, 120px);
}

@media screen and (max-width: 959px) {
  .front_page {
    --slant-h: clamp(40px, 10vw, 90px);
  }
}
.front_page .section {
  position: relative;
  z-index: 1;
}

.front_page .section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.front_page .section__news {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 200px);
  margin-top: -200px;
  padding: 150px 80px calc(30px + var(--slant-h) * 3.5);
  position: relative;
}

@media screen and (max-width: 959px) {
  .front_page .section__news {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 400px);
    padding: 220px 20px calc(40px + var(--slant-h) * 3.5);
  }
}
.front_page .section__schedule {
  margin-top: calc(-1 * var(--slant-h) * 3.9);
  padding: calc(0px + var(--slant-h) * 3.5) 80px calc(60px + var(--slant-h) * 2.8);
  position: relative;
}

@media screen and (max-width: 959px) {
  .front_page .section__schedule {
    margin-top: calc(-1 * var(--slant-h) * 3.4);
    padding: calc(3px + var(--slant-h) * 3) 20px calc(15px + var(--slant-h) * 2);
  }
}
.front_page .section__schedule::before {
  background-color: #3a3a3a;
  clip-path: polygon(0 calc(var(--slant-h) * 2.7), 100% 0, 100% calc(100% - var(--slant-h) * 3.5), 0 100%);
}

@media screen and (max-width: 959px) {
  .front_page .section__schedule::before {
    clip-path: polygon(0 calc(var(--slant-h) * 1.5), 100% 0, 100% calc(100% - var(--slant-h) * 2), 0 100%);
  }
}
.front_page .section__standings {
  margin-top: calc(-1 * var(--slant-h) * 3.5);
  padding: calc(36px + var(--slant-h) * 3.5) 80px 120px;
  position: relative;
  z-index: auto;
}

@media screen and (max-width: 959px) {
  .front_page .section__standings {
    padding: calc(77px + var(--slant-h) * 3.5) 0 80px;
  }
}
.front_page .section__standings::before {
  background-color: #000000;
  clip-path: polygon(0 calc(var(--slant-h) * 3.5), 100% 0, 100% 100%, 0 calc(100% - var(--slant-h) * 3.5));
}

.front_page .section__team {
  margin-top: calc(-1 * var(--slant-h) * 3.7);
  padding: calc(77px + var(--slant-h) * 3.5) 0 calc(120px + var(--slant-h) * 3.5);
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 959px) {
  .front_page .section__team {
    padding: calc(10px + var(--slant-h) * 3.5) 0 calc(65px + var(--slant-h) * 3.5);
  }
}
.front_page .section__team .section__title {
  padding: 0 80px;
}

@media screen and (max-width: 959px) {
  .front_page .section__team .section__title {
    padding: 0 20px;
  }
}
.front_page .section__team::before {
  background-color: #3a3a3a;
  clip-path: polygon(0 0, 100% calc(var(--slant-h) * 2.7), 100% 100%, 0 calc(100% - var(--slant-h) * 3.5));
}

@media screen and (max-width: 959px) {
  .front_page .section__team::before {
    clip-path: polygon(0 0, 100% calc(var(--slant-h) * 2.7), 100% 100%, 0 calc(100% - var(--slant-h) * 2));
  }
}
.front_page .section__title > h2 {
  color: #fcf24f;
  font-size: 64px;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .front_page .section__title > h2 {
    font-size: 32px;
    text-align: center;
  }
}
.front_page .section__title--center {
  text-align: center;
}

.front_page .section__title__sub {
  color: #ffffff;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 16px;
}

@media screen and (max-width: 959px) {
  .front_page .section__title__sub {
    text-align: center;
    font-size: 12px;
  }
}
.front_page .news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 90px;
  margin-top: 37px;
}

@media screen and (max-width: 959px) {
  .front_page .news__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }
}
.front_page .news__box .default_btn {
  margin-top: 50px;
}

.front_page .news__pick {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
  position: relative;
  padding: 25px;
}

@media screen and (max-width: 959px) {
  .front_page .news__pick {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 15px;
  }
}
.front_page .news__pick__link:hover .news__pick__img img {
  scale: 1.1;
}

.front_page .news__pick__corners {
  /* 好みでここだけ調整 */
  --pad: 0px;
  --len: 100px;
  --w: 1px;
  --c: #fff;
  position: absolute;
  inset: var(--pad);
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--c))) left top/var(--len) var(--w) no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--c))) left top/var(--w) var(--len) no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--c))) right top/var(--len) var(--w) no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--c))) right top/var(--w) var(--len) no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--c))) left bottom/var(--len) var(--w) no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--c))) left bottom/var(--w) var(--len) no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--c))) right bottom/var(--len) var(--w) no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--c))) right bottom/var(--w) var(--len) no-repeat;
  background: linear-gradient(var(--c) 0 0) left top/var(--len) var(--w) no-repeat, linear-gradient(var(--c) 0 0) left top/var(--w) var(--len) no-repeat, linear-gradient(var(--c) 0 0) right top/var(--len) var(--w) no-repeat, linear-gradient(var(--c) 0 0) right top/var(--w) var(--len) no-repeat, linear-gradient(var(--c) 0 0) left bottom/var(--len) var(--w) no-repeat, linear-gradient(var(--c) 0 0) left bottom/var(--w) var(--len) no-repeat, linear-gradient(var(--c) 0 0) right bottom/var(--len) var(--w) no-repeat, linear-gradient(var(--c) 0 0) right bottom/var(--w) var(--len) no-repeat;
}

@media screen and (max-width: 959px) {
  .front_page .news__pick__corners {
    --len: 65px;
  }
}
.front_page .news__pick__corners::before {
  content: "PICK UP!!";
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 24px;
}

@media screen and (max-width: 959px) {
  .front_page .news__pick__corners::before {
    font-size: 16px;
    top: -12px;
  }
}
.front_page .news__pick__img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.front_page .news__pick__img img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.front_page .news__pick__img > figcaption {
  position: absolute;
  bottom: 14px;
  left: 13px;
}

.front_page .news__pick__img > figcaption time {
  font-size: 12px;
}

.front_page .news__pick__img > figcaption .news__pick__caption__txt {
  font-size: 18px;
}

@media screen and (max-width: 959px) {
  .front_page .news__pick__img > figcaption .news__pick__caption__txt {
    font-size: 14px;
  }
}
.front_page .news__info {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
}

@media screen and (max-width: 959px) {
  .front_page .news__info {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }
}
.front_page .news__list__item {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 24px 10px;
}

@media screen and (max-width: 959px) {
  .front_page .news__list__item {
    padding: 20px 10px;
  }
}
.front_page .news__list__item__link {
  color: #ffffff;
  display: block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.front_page .news__list__item__link:hover {
  color: #fcf24f;
}

.front_page .news__list__item__link:hover .news__list__item__time,
.front_page .news__list__item__link:hover .news__list__item__txt {
  color: #fcf24f;
}

.front_page .news__list__item__time {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  color: #ffffff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.front_page .news__list__item__txt {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.04em;
  color: #ffffff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media screen and (max-width: 959px) {
  .front_page .news__list__item__txt {
    font-size: 14px;
  }
}
.front_page .schedule__list {
  margin-top: 50px;
  max-width: 1080px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 959px) {
  .front_page .schedule__list {
    margin-top: 30px;
    gap: 8px;
  }
}
.front_page .schedule__list__item {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.front_page .schedule__list__item__link {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 33px;
  background: rgba(24, 24, 24, 0.5);
  border: 1px solid #181818;
  width: 100%;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.front_page .schedule__list__item__link:hover {
  background-color: rgba(128, 128, 128, 0.4);
  border-color: #fcf24f;
}

.front_page .schedule__list__item__link:hover .default_btn {
  background: #fcf24f;
  color: #000;
  border-color: #fcf24f;
}

.front_page .schedule__list__item__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px;
  gap: 24px;
}

@media screen and (max-width: 959px) {
  .front_page .schedule__list__item__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.front_page .schedule__list__item__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 223.5px;
  padding-left: 16px;
  border-left: 2px solid #99a1af;
  border-right: none;
  padding-right: 0;
  gap: 4px;
}

.front_page .schedule__list__item__date__day {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #99a1af;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.front_page .schedule__list__item__date__day::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%2399A1AF' d='M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192H400V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.front_page .schedule__list__item__date__time {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
}

.front_page .schedule__list__item__info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.front_page .schedule__list__item__info__status {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fcf24f;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.35px;
  display: block;
  margin-bottom: 0;
}

.front_page .schedule__list__item__info__title {
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.front_page .schedule__list__item__info__location {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #99a1af;
  font-size: 14px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.15px;
}

.front_page .schedule__list__item__info__location::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%2399A1AF' d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  -webkit-transform: none;
  transform: none;
}

.front_page .schedule__list__item__btn .default_btn {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: transparent;
  border: 1px solid #99a1af;
  color: #99a1af;
  width: 123px;
  height: 38px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 0;
  margin-top: 0;
}

.front_page .schedule__list__item__btn .default_btn:hover {
  background: #99a1af;
  color: #000;
  border-color: #99a1af;
}

.front_page .standings__container {
  margin-top: 42px;
  max-width: 1080px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 120px;
}

@media screen and (max-width: 959px) {
  .front_page .standings__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
    margin-top: 32p;
    max-width: 100%;
    padding: 0 9%;
  }
}
.front_page .standings__group {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.front_page .standings__group__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .front_page .standings__group__header {
    margin-bottom: 10px;
  }
}
.front_page .standings__group__header__title {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 32px;
  line-height: 120%;
  color: #fcf24f;
}

@media screen and (max-width: 959px) {
  .front_page .standings__group__header__title {
    font-size: 24px;
  }
}
.front_page .standings__group__header__subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 959px) {
  .front_page .standings__group__header__subtitle {
    font-size: 12px;
  }
}
.front_page .standings__table {
  width: 100%;
  max-width: 480px;
}

@media screen and (max-width: 959px) {
  .front_page .standings__table {
    max-width: 100%;
  }
}
.front_page .standings__table__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 24px;
  margin-bottom: 8px;
}

@media screen and (max-width: 959px) {
  .front_page .standings__table__header {
    margin-bottom: 15px;
  }
}
.front_page .standings__table__header__team,
.front_page .standings__table__header__pts {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  width: 80px;
}

@media screen and (max-width: 959px) {
  .front_page .standings__table__header__team,
  .front_page .standings__table__header__pts {
    text-align: right;
  }
}
.front_page .standings__table__header__team {
  text-align: right;
  margin-left: 88px;
}

@media screen and (max-width: 959px) {
  .front_page .standings__table__header__team {
    width: 40%;
    margin-left: 0;
  }
}
@media screen and (max-width: 959px) {
  .front_page .standings__table__header__pts {
    width: 45%;
  }
}
.front_page .standings__table__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.front_page .standings__table__list__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 24px;
  gap: 10px;
  width: 100%;
  border-bottom: 1px solid #d1d1d1;
}

@media screen and (max-width: 959px) {
  .front_page .standings__table__list__item {
    gap: 0;
  }
}
.front_page .standings__table__list__item--first {
  border-top: 1px solid #d1d1d1;
}

.front_page .standings__table__list__item__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 959px) {
  .front_page .standings__table__list__item__left {
    width: 100%;
  }
}
.front_page .standings__table__list__item__rank {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  width: 64px;
  border-radius: 16px;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #ffffff;
}

@media screen and (max-width: 959px) {
  .front_page .standings__table__list__item__rank {
    font-size: 24px;
    width: auto;
  }
}
.front_page .standings__table__list__item__name {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 47px;
  color: #ffffff;
}

@media screen and (max-width: 959px) {
  .front_page .standings__table__list__item__name {
    font-size: 24px;
  }
}
.front_page .standings__table__list__item__pts {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  width: 80px;
}

@media screen and (max-width: 959px) {
  .front_page .standings__table__list__item__pts {
    width: 45%;
    text-align: right;
  }
}
.front_page .standings__soon {
  position: relative;
  z-index: 5;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  max-width: 1180px;
  margin: 130px auto 0;
  color: #505050;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .front_page .standings__soon {
    font-size: 32px;
    margin: 150px auto 0;
  }
}
.front_page .standings__soon > span {
  display: block;
  font-size: 80px;
}

@media screen and (max-width: 959px) {
  .front_page .standings__soon > span {
    font-size: 24px;
  }
}
.front_page .standings__soon__bnr {
  max-width: 1080px;
  margin-inline: auto;
  margin-top: -25px;
}

@media screen and (max-width: 959px) {
  .front_page .standings__soon__bnr {
    max-width: 100%;
    width: 92%;
    margin-top: -10px;
  }
}
.front_page .team__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
}

.front_page .team__slider.slick-initialized {
  display: block;
}

.front_page .team__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.front_page .team__slider .slick-list {
  margin: 0 -16px;
}

.front_page .team__slider .slick-slide {
  height: auto;
  margin: 0 16px;
}

.front_page .team__slider__item {
  width: 300px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.front_page .team__slider__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.front_page .team__slider__img {
  position: relative;
  width: 100%;
  aspect-ratio: 300/400;
  margin: 0;
  overflow: hidden;
}

.front_page .team__slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.front_page .team__slider__info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 25px 30px 25px;
  background: transparent;
  z-index: 10;
}

.front_page .team__slider__category {
  display: inline-block;
  background-color: #f7d600;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  margin-bottom: 8px;
  width: 110px;
  font-family: "Oswald", sans-serif;
}

.front_page .team__slider__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

@media (hover: hover) and (pointer: fine) {
  .front_page .team__slider__link:hover .team__slider__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
} 
@media screen and (max-width: 959px) {
  .common_container {
    padding: 80px 0;
    width: 92%;
    margin: 0 auto;
    max-width: 500px;
  }
}
@media screen and (min-width: 960px) {
  .common_container {
    padding: 120px 0;
    width: 90%;
    margin: 0 auto;
    max-width: 1440px;
  }
}
/*
Theme Name: baseball5
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* 固定ページ
*--------------------------------------*/
#about .back_text {
  display: grid;
  gap: 20px;
}
#about .back_text p {
  margin: 0 auto;
  background-color: #FCF24F;
  color: #181818;
  padding: 16px 28px;
  font-size: 24px;
  width: fit-content;
}
#about .about_text {
  margin: 40px 0;
  font-size: 16px;
  line-height: 1.875;
  text-align: center;
}
#about .image {
  max-width: 38.8333333333%;
  margin: 0 auto;
}
#about .table_container {
  margin-top: 70px;
  border-top: 1px solid #fff;
  padding: 70px 0 90px;
}
#about .table_container .table_title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 35px;
}
#about .default_btn {
  margin: 45px auto 0;
}

#schedule .block {
  padding-top: 30px;
  margin-bottom: 20px;
}
#schedule .block_title {
  text-align: center;
  background-color: #D8D8D8;
  color: #181818;
  padding: 35px 0;
  border-radius: 10px 10px 0 0;
}
#schedule .block_title .block_name {
  font-size: 24px;
}
#schedule .block_title .data, #schedule .block_title .place {
  font-size: 19px;
}
#schedule .block_title .place {
  padding-top: 25px;
}
#schedule .coat {
  margin-top: 8px;
  text-align: center;
  color: #181818;
  font-size: 16px;
  padding: 5px 0;
}
#schedule .coat_a {
  background-color: #FCF24F;
}
#schedule .coat_b {
  background-color: #E50111;
  color: #fff;
}
#schedule table {
  max-width: 100%;
  border-radius: 0 0 10px 10px;
  background-color: #D8D8D8;
  color: #181818;
}
#schedule table.center {
  border-radius: 0;
}
#schedule table tr {
  display: grid;
  grid-template-columns: 120px 1fr 120px 1fr;
  width: 100%;
}
#schedule table tr:nth-child(even) {
  background-color: #fff;
}
#schedule table td {
  text-align: center;
  display: block;
  padding: 10px 20px;
}
#schedule table td:nth-child(1), #schedule table td:nth-child(3) {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
#schedule table td:nth-child(3) {
  padding: 10px 0;
}
#schedule table td:nth-child(2), #schedule table td:nth-child(4) {
  font-weight: 400;
  font-size: 16px;
}
#schedule table td:nth-child(1), #schedule table td:nth-child(2) {
  width: auto;
  min-width: auto;
}
#schedule table td:not(td:last-child) {
  border-right: 1px solid #181818;
}
#schedule table a {
  color: #181818;
  text-decoration: underline;
}
#schedule table a[href=""] {
  text-decoration: none;
}
#schedule .category {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 18px;
  padding-bottom: 15px;
}
#schedule .category span {
  display: block;
  width: 9px;
  height: 5px;
  background-color: #FCF24F;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

#archive .archive_li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 60px;
}
#archive .archive_li a:hover img {
  scale: 1.1;
}
#archive .archive_li figure {
  overflow: hidden;
  border-radius: 10px;
}
#archive .archive_li img {
  transition: all 0.4s;
  border-radius: 10px;
}
#archive .archive_li .data {
  padding: 15px 0 5px;
  font-size: 12px;
  color: #FCF24F;
}
#archive .archive_li .archive_title {
  font-size: 16px;
}

.team_li {
  margin-bottom: 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team_li li a {
  padding: 40px 20px;
  background-color: #fff;
  color: #707070;
  border-radius: 5px;
}
.team_li .archive_title {
  font-size: 14px;
  padding-bottom: 20px;
}
.team_li .place {
  font-size: 14px;
  padding: 30px 0 45px;
}
.team_li .index_number {
  font-size: 60px;
  text-align: center;
  line-height: 1;
}

.category {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 18px;
  padding-bottom: 15px;
}
.category span {
  display: block;
  width: 9px;
  height: 5px;
  background-color: #FCF24F;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media screen and (max-width: 959px) {
  .page_title_wrapper .common_container {
    padding: 105px 0 20px;
    border-bottom: 1px solid #fff;
  }
  .bottom_wrapper .common_container {
    padding: 20px 0;
  }
  #about .back_text {
    margin-top: 30px;
    gap: 5px;
  }
  #about .back_text p {
    font-size: 18px;
    padding: 8px;
  }
  #about .about_text {
    text-align: left;
    font-size: 14px;
    margin: 25px 0 50px;
  }
  #about .image {
    max-width: 74.6666666667%;
  }
  #schedule .fixed_menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  #schedule .fixed_menu ul li {
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  #schedule .fixed_menu ul li a {
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
  }
  #schedule .fixed_menu ul li:last-child {
    grid-column: 1/3;
  }
  #schedule .block {
    padding-top: 10px;
  }
  #schedule .block_title {
    padding: 25px 0;
    border-radius: 10px 10px 0 0;
  }
  #schedule .block_title .block_name {
    font-size: 18px;
  }
  #schedule .block_title .data, #schedule .block_title .place {
    font-size: 14px;
  }
  #schedule .block_title .place {
    padding-top: 11px;
  }
  #schedule .coat {
    margin-top: 3px;
    font-size: 13px;
  }
  #schedule table tr {
    grid-template-columns: 50px 1fr 70px 1fr;
  }
  #schedule table td {
    padding: 10px 6px;
  }
  #schedule .category {
    justify-content: center;
    margin-top: 100px;
    margin-left: -10px;
  }
  /* #schedule #block5 p {
    text-align: center;
    font-size: 14px;
  } */
  #archive .archive_li {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #archive .archive_li a {
    display: grid;
    grid-template-columns: 140px auto;
    gap: 10px;
    font-size: 13px;
  }
  #archive .archive_li img, #archive .archive_li figure {
    border-radius: 5px;
  }
  #archive .archive_li .data {
    padding: 0 0 5px;
  }
  #archive .archive_li .archive_title {
    font-size: 13px;
  }
  .team_li {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .team_li li a {
    padding: 15px;
  }
  .team_li .archive_title {
    padding-bottom: 8px;
  }
  .team_li .place {
    padding: 8px 0 15px;
    font-size: 12px;
  }
  .team_li .index_number {
    font-size: 42px;
  }
  .category {
    justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .page_title_wrapper .common_container {
    padding: 140px 0 35px;
    border-bottom: 1px solid #fff;
  }
  .bottom_wrapper .common_container {
    padding: 60px 0;
  }
  #schedule .pc_flex {
    display: grid;
    grid-template-columns: 150px auto;
    gap: 60px;
  }
  #schedule .fixed_menu {
    height: 100vh;
    position: sticky;
    top: 120px;
  }
  #schedule .fixed_menu ul {
    display: grid;
    gap: 10px;
  }
  #schedule .fixed_menu a {
    transition: all 0.4s;
  }
  #schedule .fixed_menu a:hover {
    color: #FCF24F;
  }
  #schedule .category {
    margin-top: 150px;
  }
  #schedule .category.open {
    margin-top: 0;
  }
  /* #schedule #block5 p {
    font-size: 15px;
    text-align: center;
    font-weight: 300;
  } */
  #schedule #block5 figure {
    width: 70%;
    max-width: 700px;
    margin: 20px auto 0;
  }
}
/*
Theme Name: baseball5
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* 詳細ページ
*--------------------------------------*/
.single_wrapper .pc_grid {
  display: grid;
  grid-template-columns: 51.8518518519% auto;
  gap: 80px;
}
.single_wrapper .left {
  padding: 0 20px;
}
.single_wrapper h2 {
  font-size: 18px;
}
.single_wrapper .time {
  color: #FCF24F;
  font-size: 12px;
  padding: 5px 0 20px;
}
.single_wrapper .left .common_image {
  padding-bottom: 15px;
}
.single_wrapper .left .common_image img {
  border-radius: 10px;
}
.single_wrapper .text p {
  font-size: 16px;
  line-height: 1.5625;
  padding: 10px 0;
}
.single_wrapper .text img {
  padding: 10px 0;
}
.single_wrapper .left .text a {
  display: inline;
  text-decoration: underline;
  color: #FCF24F;
}

.side_wrapper .grid {
  display: grid;
  gap: 8px;
}
.side_wrapper li a {
  display: grid;
  grid-template-columns: 140px auto;
  gap: 10px;
  font-size: 13px;
}
.side_wrapper li a figure {
  border-radius: 5px;
  overflow: hidden;
}
.side_wrapper li a:hover img {
  scale: 1.1;
}
.side_wrapper li a:hover .card_title {
  text-decoration: underline;
}
.side_wrapper .data {
  padding-top: 5px;
  color: #FCF24F;
  font-size: 12px;
}
.side_wrapper img {
  border-radius: 5px;
  transition: all 0.4s;
}
.side_wrapper .link_wrap {
  margin-top: 35px;
}
.side_wrapper .link_wrap a:not(a:last-child) {
  margin-bottom: 10px;
}

.single_team .team_text {
  padding-bottom: 15px;
  font-size: 18px;
}
.single_team .team_text span {
  color: #FCF24F;
  font-size: 14px;
}
.single_team .member_wrap {
  border: solid #fff;
  border-width: 1px 0;
  margin: 15px 0;
}
.single_team .member_wrap .member_title {
  background-color: #181818;
  margin-top: -28px;
  display: block;
  width: fit-content;
  padding: 15px 10px 0 0;
}
.single_team .default_btn {
  margin: 65px auto 0;
}
.single_team .common_image {
  position: relative;
  padding-top: 30px;
}
.single_team .common_image.sidebar_image {
  padding-top: 0;
}
.single_team .index_number {
  color: #FCF24F;
  font-size: 42px;
  position: absolute;
  z-index: 2;
  top: 0;
  font-weight: 500;
}
.single_team .cate_label span {
  font-size: 13px;
  width: 160px;
  text-align: center;
  position: absolute;
  z-index: 2;
  bottom: 25px;
  right: 0;
  padding: 7px 0;
  color: #fff;
  background-color: #E50111;
}
.single_team .cate_label span.youth {
  background-color: #4F56FC;
}
.single_team table {
  background-color: inherit;
  border: inherit;
  border-radius: inherit;
}
.single_team table tr:not(tr:last-child) {
  border-bottom: inherit;
}
.single_team table tr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: fit-content;
  margin: 10px auto 0;
  gap: 10px 50px;
}
.single_team table td {
  padding: 0;
  min-width: auto;
  width: auto;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: flex-start;
}
.single_team table td span {
  font-size: 14px;
  color: #D8D8D8 !important;
  margin-right: 20px;
}
.single_team table td p {
  padding: 0 !important;
}

@media screen and (max-width: 959px) {
  .single_wrapper .pc_grid {
    grid-template-columns: 1fr;
  }
  .single_wrapper .left {
    padding: 0 10px;
  }
  .single_wrapper .text p {
    font-size: 14px;
    line-height: 1.5714285714;
    padding: 8px 0;
  }
  .single_team table tr {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 50px;
  }
  .single_team table td span {
    margin-right: 10px;
  }
}/*# sourceMappingURL=style.css.map */