@charset "UTF-8";
/*
Theme Name: site2025
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: #EFF6FF;
  color: #2697F4;
  letter-spacing: 0.03em;
  line-height: 1.375;
  scroll-behavior: smooth;
  font-feature-settings: "palt";
}
html.active,
body.active {
  overflow: hidden;
}

.ja {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.ja_m {
  font-weight: 400;
}

.en {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  transform: skewX(-8deg);
  display: inline-block;
}

.en_title {
  letter-spacing: 0.01em;
}

.en_m {
  font-weight: 500;
}

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

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

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

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

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #2697F4;
}
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: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* ヘッダー
*--------------------------------------*/
header {
  background-color: #EFF6FF;
}
header .logo {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  header {
    width: 100%;
    z-index: 99;
  }
  header .container {
    padding: 10px;
  }
  header .sp_menu {
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #2697F4;
    border-radius: 0 0 0 5px;
    border: 1px solid #2697F4;
    display: grid;
    place-content: center;
    height: 60px;
    width: 60px;
    transition: all 0.4s;
  }
  header .sp_menu.active {
    border: solid #EFF6FF;
    border-width: 0 0 1px 1px;
    height: calc(100svh - 30px);
    width: calc(100% - 30px);
    border-radius: 0 0 0 10px;
  }
  header .sp_menu.active .toggle_btn span:nth-child(1) {
    rotate: 45deg;
    top: 18px;
  }
  header .sp_menu.active .toggle_btn span:nth-child(2) {
    rotate: -45deg;
    bottom: 14px;
  }
  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: 60px;
    height: 60px;
    top: 0;
    right: 0;
  }
  header .toggle_btn span {
    transition: all 0.4s;
    transform-origin: left;
    position: absolute;
    width: 35px;
    height: 3px;
    background-color: #EFF6FF;
    translate: -50% 0;
    left: 50%;
    border-radius: 100vmax;
  }
  header .toggle_btn span:nth-child(1) {
    top: 24px;
  }
  header .toggle_btn span:nth-child(2) {
    bottom: 24px;
  }
  header .menu {
    display: none;
    opacity: 0;
  }
  header .menu li:not(ol li) {
    text-align: center;
    width: 150px;
  }
  header .menu li:not(ol li):not(li:last-child) {
    margin-bottom: 15px;
  }
  header .menu li:not(ol li):last-child {
    margin-bottom: 45px;
  }
  header .menu a:not(ol li a) {
    background-color: #EFF6FF;
    border-radius: 100vmax;
    font-size: 14px;
    padding: 10px 0;
  }
  header ol {
    position: absolute;
    display: grid;
    translate: 0 -50%;
    top: 50%;
    right: 20px;
    gap: 30px;
  }
  header ol li {
    width: 20px;
  }
  header .logo {
    gap: 5px;
  }
  header .logo figure {
    width: 40px;
  }
  header .logo p {
    font-size: 11px;
  }
  header .bg_logo {
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 160px;
  }
}
@media screen and (min-width: 769px) {
  header {
    margin: 0 auto;
    padding: 0 1.5625vw;
  }
  header .container {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .logo {
    font-size: 1.09375vw;
  }
  header .logo figure {
    width: 3.515625vw;
  }
  header .menu {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: right;
  }
  header .menu li a {
    padding: 0.46875vw 0;
    transition: 0.4s;
    background-color: #2697F4;
    border-radius: 100vmax;
    color: #fff;
    width: 8.59375vw;
    font-size: 1.09375vw;
    border: 1px solid #2697F4;
  }
  header .menu li a:hover {
    color: #2697F4;
    background-color: #EFF6FF;
  }
}
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* フッター
*--------------------------------------*/
footer .common_container {
  padding: 40px 0 80px;
}
footer .section_title {
  text-align: left;
  margin-bottom: 0;
}
footer .footer {
  background-color: #fff;
}
footer .bg {
  background-color: #EFF6FF;
}
footer .logo_wrap {
  padding: 45px 0;
  color: #555;
}
footer .logo_wrap .big {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #fff;
  text-align: center;
}
footer .logo_wrap .big p {
  font-size: clamp(12px, 0.8333333333vw, 14px);
  padding-top: 12px;
  white-space: nowrap;
}
footer .logo_wrap .big_row {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
footer .logo_wrap .big_row--bottom {
  margin-top: 48px;
}
footer .logo_wrap .big .wrap {
  flex: 0 0 auto;
  max-width: none;
  img {
    margin: 0 auto;
  }
}
footer .logo_wrap .big_row--top .wrap img {
  height: 90px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
footer .logo_wrap .big_row--bottom .wrap img {
  height: 68px;
  width: auto;
  object-fit: contain;
}
footer .logo_wrap .small_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #fff;
}
footer .logo_wrap .small_wrap li {
  position: relative;
  font-size: 1.1666666667vw;
}
footer .logo_wrap .ss_wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 0 0;
  gap: 10px 30px;
  width: 80%;
}
footer .logo_wrap .ss_wrap li {
  position: relative;
  font-size: 0.9166666667vw;
}
footer .footer {
  position: relative;
}
footer .footer .container {
  padding: 70px 0 0;
}
footer .pink_logo {
  display: grid;
  grid-template-columns: 35px 38px;
  gap: 12px;
  margin-bottom: 24px;
}
footer .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .logo figure {
  width: 50px;
}
footer .logo p {
  font-size: 20px;
}
footer .menu {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin: 40px 0;
}
footer .menu li a {
  padding: 0.46875vw 0;
  transition: 0.4s;
  background-color: #2697F4;
  border-radius: 100vmax;
  color: #fff;
  width: 8.59375vw;
  font-size: 1.09375vw;
  border: 1px solid #2697F4;
}
footer .menu li a:hover {
  color: #2697F4;
  background-color: #fff;
}
footer .bottom_menu {
  display: grid;
  gap: 15px;
}
footer .bottom_menu a {
  width: fit-content;
  text-decoration: underline;
  font-size: 12px;
}
footer .sns_wrap {
  display: flex;
  gap: 12px;
  margin: 60px auto 0;
  align-items: center;
  justify-content: center;
}
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: 80px;
  height: 80px;
  background-color: #2697F4;
  color: #fff;
  border-radius: 100vmax;
  position: absolute;
  right: 60px;
  bottom: 30px;
  transition: 0.4s;
  transform-origin: center;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 110%;
}
footer .top_btn:hover {
  scale: 1.08;
}
footer .copy {
  font-size: 12px;
  padding: 15px 0 35px;
}
footer .copy p {
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 768px) {
  footer .section_title {
    text-align: left;
  }
  footer .section_title h2 {
    font-size: 56px;
  }
  footer .sponsors .container {
    padding: 50px 0 70px;
  }
  footer .pink_logo {
    justify-content: center;
  }
  footer .logo {
    justify-content: center;
    gap: 8px;
  }
  footer .logo figure {
    width: 40px;
  }
  footer .logo p {
    font-size: 11px;
  }
  footer .logo_wrap .big p {
    font-size: 10px;
    white-space: nowrap;
  }
  footer .logo_wrap .big {
    gap: 40px 20px;
  }
  footer .logo_wrap .big_row {
    flex-wrap: wrap;
  }
  footer .logo_wrap .big .wrap {
    width: 45%;
  }
  footer .logo_wrap .big_row--top .wrap img {
    height: auto;
    max-width: 100%;
  }
  footer .logo_wrap .big_row--bottom .wrap img {
    height: auto;
    max-width: 120px;
    max-height: 80px;
  }
  /* footer .logo_wrap .big .wrap:nth-child(2) {
    width: 45%;
  } */
  /* footer .logo_wrap .big .wrap:last-child {
    width: 100%;
  } */
  /* footer .logo_wrap .big .wrap:last-child img {
    width: 80%;
    margin: 0 auto;
  } */
  footer .logo_wrap .small_wrap {
    gap: 10px 20px;
  }
  footer .logo_wrap .small_wrap li {
    font-size: 11px;
  }
  footer .logo_wrap .ss_wrap li {
    font-size: 10px;
  }
  footer .footer .container {
    width: 84vw;
  }
  footer .menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  footer .menu li a {
    width: 100%;
    font-size: 14px;
    padding: 10px 0;
  }
  footer .bottom_menu {
    gap: 20px;
  }
  footer .sns_wrap {
    gap: 30px;
  }
  footer .top_btn {
    right: 15px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    font-size: 12px;
  }
  footer .copy {
    padding: 70px 0 60px;
  }
}
/*--------------------------------------*
* object
*--------------------------------------*/
/*-------------------
* component
-------------------*/
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* コンテンツ幅
*--------------------------------------*/
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* 共通パーツ
*--------------------------------------*/
.arrow {
  position: absolute;
  width: 42px;
  height: 42px;
  bottom: 10px;
  right: 10px;
}

.page_index_wrap .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.page_index_wrap .section_title h2 {
  line-height: 1.0833333333;
  font-size: 120px;
}
.page_index_wrap .page_li {
  position: relative;
}
.page_index_wrap .page_li img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.page_index_wrap .page_li .arrow {
  transition: all 0.4s;
}
.page_index_wrap .page_li:hover .arrow {
  scale: 1.1;
}
.page_index_wrap p {
  color: #EFF6FF;
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  text-align: center;
  font-size: 12px;
}
.page_index_wrap p span {
  font-size: 60px;
  letter-spacing: 0.1em;
}

.pan_list {
  background-color: #fff;
  padding: 6px 20px;
}
.pan_list ul {
  display: flex;
  gap: 5px 30px;
  flex-wrap: wrap;
}
.pan_list ul li {
  font-size: 11px;
  position: relative;
}
.pan_list ul li a {
  text-decoration: underline;
}
.pan_list ul li:after {
  content: "";
  background-color: #2697F4;
  width: 10px;
  height: 1px;
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: -20px;
}
.pan_list ul li:last-child:after {
  display: none;
}

.page_title_wrapper .page_title {
  padding: 70px 0 50px;
  text-align: center;
}
.page_title_wrapper .page_title h1 {
  font-size: 80px;
  color: #2697F4;
}
.page_title_wrapper .page_title .sub_title {
  font-size: 11px;
}

.bottom_wrapper .common_container {
  padding: 0 0 120px 0;
}

.single_title_wrapper {
  background-color: #2697F4;
  padding: 70px 0;
  color: #fff;
  margin-bottom: 60px;
}
.single_title_wrapper .single_title {
  margin: 0 18.75vw;
}
.single_title_wrapper .time {
  font-size: 12px;
  margin-bottom: 10px;
}
.single_title_wrapper .time span {
  color: #2697F4;
  padding: 4px 30px;
  background-color: #fff;
  border: 1px solid #2697F4;
  border-radius: 100vmax;
  margin-left: 15px;
}
.single_title_wrapper h1 {
  font-size: 20px;
}

.team_single .single_title_wrapper h1 {
  text-align: center;
}
.team_single .single_title_wrapper .time {
  text-align: center;
  justify-content: center;
}
.team_single .single_title_wrapper .time span {
  margin: 0;
}

.title_bottom {
  width: 61.484375vw;
  margin: 0 0 0 auto;
}

.title_style1 {
  width: 260px;
  position: absolute;
  top: -25px;
  left: -9.375%;
  font-size: 20px;
  background-color: #2697F4;
  padding: 12px 60px 12px 0;
  color: #fff;
  text-align: right;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.default_btn {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 50px auto 20px;
  color: #2697F4;
  gap: 16px;
  position: relative;
}
.default_btn:after {
  content: "";
  width: 42px;
  height: 42px;
  background-color: #2697F4;
  border-radius: 100vmax;
}
.default_btn:before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(images/arrow.svg);
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 13px;
  z-index: 10;
  background-size: contain;
}
.default_btn.link:after, .default_btn.link:before {
  display: none;
}
.default_btn.link span {
  transition: all 0.4s;
}
.default_btn.link:hover span {
  scale: 1.2;
}
.default_btn:hover:before {
  animation: transformRightLeft 0.6s forwards;
}
.default_btn_s {
  font-size: 16px;
}
.default_btn_s:after {
  width: 32px;
  height: 32px;
}
.default_btn_s:before {
  right: 8px;
}
.default_btn_s:hover:before {
  animation: none;
}

@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  50.1% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50.2% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
table {
  width: 100%;
}
table tbody {
  width: 100%;
  display: block;
}
table tr {
  border-radius: 3px;
}
table tr:nth-child(even) {
  background-color: #EFF6FF;
}
table td {
  padding: 15px 20px;
}
table td:nth-child(1) {
  font-size: 14px;
  min-width: 80px;
}
table td:nth-child(2) {
  width: 100%;
  padding: 15px 20px 15px 0;
  font-size: 14px;
  font-weight: 400;
}
table a {
  text-decoration: underline;
}

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

@media screen and (max-width: 768px) {
  .page_index_wrap .section_title {
    margin-bottom: 30px;
  }
  .page_index_wrap .section_title h2 {
    font-size: 42px;
    text-align: center;
  }
  .page_index_wrap p span {
    font-size: 42px;
  }
  .page_title_wrapper .page_title {
    padding: 30px 0;
  }
  .page_title_wrapper .page_title h1 {
    font-size: 42px;
  }
  .page_title_wrapper .page_title .sub_title {
    padding-top: 5px;
    font-size: 10px;
  }
  .single_title_wrapper {
    padding: 50px 0;
  }
  .single_title_wrapper .single_title {
    margin: 0 5.3333333333vw;
  }
  .single_title_wrapper h1 {
    font-size: 18px;
  }
  .single_title_wrapper .time {
    display: flex;
    align-items: center;
  }
  .single_title_wrapper .time span {
    font-size: 10px;
    margin-left: 10px;
    padding: 3px 20px;
  }
  .title_bottom {
    width: 80vw;
  }
  .title_style1 {
    width: 140px;
    font-size: 18px;
    padding: 8px 0 8px 20px;
    text-align: left;
    left: -20px;
  }
}
/*-------------------
* project
-------------------*/
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
.front_game {
  min-height: 500px;
}

.center_text {
  font-size: 14px;
  padding: 50px 0;
  text-align: center;
}

.fv {
  position: relative;
}
.fv .ashirai {
  position: absolute;
  z-index: 20;
}
.fv .ashirai1 {
  width: 26.171875vw;
  right: 0;
  top: 3.90625vw;
}
.fv .ashirai2 {
  width: 27.34375vw;
  left: 0;
  bottom: -2.34375vw;
}
.fv .fv_title {
  width: 39.0625%;
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 10;
}
.fv .news_slider {
  margin-top: 32px;
}
.fv .news_slider .swiper {
  padding-top: 64px;
}
.fv .news_slider img {
  border-radius: 10px;
}
.fv .news_slider .swiper-slide {
  position: relative;
  transition: all 0.4s;
}
.fv .news_slider .swiper-slide:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 10px 10px;
  height: 200px;
  width: 100%;
  background: linear-gradient(to bottom, transparent, #000);
  z-index: 2;
}
.fv .news_slider .swiper-slide-active {
  transform: translateY(-64px);
}
.fv .news_slider .news_text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  z-index: 5;
  color: #fff;
  display: grid;
  gap: 0.5em;
}
.fv .news_slider .news_date {
  font-size: 16px;
}
.fv .news_slider .news_title {
  font-size: 24px;
}
.fv .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 0;
  background-color: #2697F4;
}

.section_title {
  text-align: center;
  margin-bottom: 2em;
  position: relative;
  z-index: 10;
}
.section_title.left_title {
  text-align: left;
}
.section_title h2 {
  font-size: 80px;
  line-height: 100%;
}
.section_title .sub_title {
  font-size: 12px;
  padding-top: 10px;
}

.hidden {
  padding: 3.90625vw 0 14.0625vw;
  overflow: hidden;
}
.hidden:has(.top) {
  margin-bottom: -14.0625vw;
}

.front_label {
  font-size: 3.515625vw;
  padding: 0.5em 0;
  text-align: center;
  position: relative;
  left: -1%;
  z-index: 2;
}
.front_label p {
  width: 103%;
  padding: 5px 0;
}
.front_label.left.top:after {
  content: "";
  background-color: #fff;
  height: 9.375vw;
  width: 103%;
  bottom: -7.65625vw;
  position: absolute;
  left: 0;
  rotate: -5deg;
  z-index: -1;
}
.front_label.right.top:after {
  content: "";
  background-color: #F9DEEA;
  height: 9.375vw;
  width: 103%;
  bottom: -7.65625vw;
  position: absolute;
  left: 0;
  rotate: 5deg;
  z-index: -1;
}
.front_label.left p {
  rotate: -5deg;
}
.front_label.right p {
  rotate: 5deg;
}
.front_label.green p {
  background-color: #2697F4;
}
.front_label.green span {
  color: #fff;
  opacity: 0.3;
}
.front_label.pink p {
  background-color: #2697F4;
}
.front_label.pink span {
  color: #fff;
  opacity: 0.3;
}
.front_label.yellow p {
  background-color: #FFF204;
}
.front_label.yellow span {
  color: #fff;
  opacity: 0.7;
}

.label3 {
  margin-top: -10.9375vw;
}
.label3 .left.top:after {
  background-color: #FFFEED;
}

.label4 {
  margin-top: -10.9375vw;
}
.label4 .right.top:after {
  background-color: #EFF6FF;
}

.skew_image {
  clip-path: polygon(100% 0, 100% 75%, 0 100%, 0 25%);
}

.front_sec {
  position: relative;
  margin: 9.375vw 0;
}
.front_sec:before, .front_sec:after {
  content: "";
  background-color: #fff;
  height: 9.375vw;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.front_sec:before {
  top: -9.296875vw;
  left: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.front_sec:after {
  bottom: -9.296875vw;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.front_sec.reverse:before {
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.front_sec.reverse:after {
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.front_wrapper {
  overflow: hidden;
}
.front_wrapper .fv_btn {
  display: flex;
  gap: 16px;
  margin: 50px auto;
  justify-content: center;
}
.front_wrapper .fv_btn a {
  width: 14.0625vw;
  transition: all 0.4s;
}
.front_wrapper .fv_btn a:hover {
  scale: 1.1;
}
.front_wrapper .news {
  padding-bottom: 80px;
  background-color: #fff;
}
.front_wrapper .news .news_li_wrapper {
  max-width: 650px;
  margin: 0 auto;
}
.front_wrapper .news .news_li_wrapper ul {
  display: grid;
  gap: 1em;
}
.front_wrapper .news .news_li_wrapper li a {
  padding: 1.5em;
  border-radius: 3px;
  background-color: #EFF6FF;
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: auto 42px;
  gap: min(60px, 4.6875vw);
  position: relative;
}
.front_wrapper .news .news_li_wrapper li a:after {
  content: "";
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-radius: 100vmax;
}
.front_wrapper .news .news_li_wrapper li a:before {
  content: "";
  width: 15px;
  height: 15px;
  mask-image: url(images/arrow.svg);
  position: absolute;
  translate: 0 -50%;
  background-color: #2697F4;
  top: 50%;
  right: 36px;
  z-index: 10;
  mask-size: contain;
}
.front_wrapper .news .news_li_wrapper li a:hover:before {
  animation: transformRightLeft 0.6s forwards;
}
.front_wrapper .news .news_li_wrapper .news_text {
  display: grid;
  gap: 8px;
}
.front_wrapper .news .news_li_wrapper .news_date {
  font-size: 1em;
}
.front_wrapper .news .news_li_wrapper .news_title {
  font-size: 18px;
}
.front_wrapper .games {
  padding: 120px 0;
}
.front_wrapper .games .games_container {
  background-color: #fff;
  padding: 80px 0;
  width: 81.25vw;
  margin: 0 auto;
}
.front_wrapper .final {
  background-color: #F9DEEA;
}
.front_wrapper .final:before, .front_wrapper .final:after {
  background-color: #F9DEEA;
}
.front_wrapper .final .section_title {
  color: #2697F4;
}
.front_wrapper .final .bg_text {
  color: #fff;
  padding: 0.3em 0.5em;
  background-color: #2697F4;
  width: fit-content;
  font-size: 32px;
}
.front_wrapper .final .text {
  font-size: 16px;
  color: #555;
  padding: 1em 0 2em;
  line-height: 180%;
}
.front_wrapper .final .bottom_container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 23.4375vw 0 7.8125vw;
}
.front_wrapper .final .bottom_container .index_bg {
  position: absolute;
  width: 58.59375vw;
  left: 0;
  top: 0;
}
.front_wrapper .final .index_li {
  display: grid;
  position: relative;
  z-index: 5;
  margin-left: 14.0625vw;
  margin-top: 7.8125vw;
}
.front_wrapper .final .index_li li {
  border-radius: 3px;
  overflow: hidden;
  background-position: center;
  background-size: 120%;
  height: 15.625vw;
  position: relative;
}
.front_wrapper .final .index_li li:before {
  content: "";
  background-color: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.front_wrapper .final .index_li li a {
  height: 100%;
  position: relative;
}
.front_wrapper .final .index_li li .default_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.front_wrapper .final .index_li li:nth-child(1) {
  background-image: url(images/index1.jpg);
}
.front_wrapper .final .index_li li:nth-child(1) a, .front_wrapper .final .index_li li:nth-child(1) .default_btn {
  color: #2697F4;
}
.front_wrapper .final .index_li li:nth-child(2) {
  background-image: url(images/index2.jpg);
}
.front_wrapper .final .index_li li:nth-child(2) a, .front_wrapper .final .index_li li:nth-child(2) .default_btn {
  color: #00A1E4;
}
.front_wrapper .final .index_li li:nth-child(2) .default_btn:after {
  background-color: #00A1E4;
}
.front_wrapper .final .index_li li:nth-child(3) {
  background-image: url(images/index3.jpg);
}
.front_wrapper .final .index_li li:nth-child(3) a, .front_wrapper .final .index_li li:nth-child(3) .default_btn {
  color: #FFF204;
}
.front_wrapper .final .index_li li:nth-child(3) .default_btn:after {
  background-color: #FFF204;
}
.front_wrapper .final .index_li li:nth-child(4) {
  background-image: url(images/index4.jpg);
}
.front_wrapper .final .index_li li:nth-child(4) a, .front_wrapper .final .index_li li:nth-child(4) .default_btn {
  color: #2697F4;
}
.front_wrapper .final .index_li li:nth-child(4) .default_btn:after {
  background-color: #2697F4;
}
.front_wrapper .final .index_li .index_title {
  font-size: min(68px, 5.3125vw);
  line-height: 80%;
}
.front_wrapper .final .index_li .default_btn {
  font-size: min(24px, 1.875vw);
}
.front_wrapper .final .page_index {
  position: absolute;
  bottom: 7.8125vw;
  right: 10px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: right;
  color: #fff;
  font-size: 180px;
  line-height: 80%;
}
.front_wrapper .column {
  background-color: #FFFEED;
  padding-bottom: 80px;
}
.front_wrapper .column:before, .front_wrapper .column:after {
  background-color: #FFFEED;
}
.front_wrapper .column:after {
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.front_wrapper .column .section_title {
  color: #555555;
}
.front_wrapper .column .column_cate_li {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.front_wrapper .column .column_cate_li li.active a {
  background-color: #fff;
  color: #2697F4;
}
.front_wrapper .column .column_cate_li li a {
  padding: 8px 12px;
  background-color: #2697F4;
  color: #fff;
  border: 1px solid #2697F4;
  border-radius: 3px;
  font-size: 18px;
  position: relative;
}
.front_wrapper .column .column_post a {
  color: #555555;
  position: relative;
}
.front_wrapper .column .column_li_wrapper {
  border: solid #D9D9D9;
  border-width: 1px 0;
}
.front_wrapper .column .column_li_wrapper ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.front_wrapper .column .column_cate {
  border-radius: 3px;
  font-size: 12px;
  padding: 5px 8px;
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 5;
  color: #fff;
}
.front_wrapper .column .column_cate.games-review {
  background-color: #00A1E4;
}
.front_wrapper .column .column_cate.interview {
  background-color: #2697F4;
}
.front_wrapper .column .column_title {
  font-size: 18px;
  padding: 12px 0 4px;
}
.front_wrapper .column .column_date {
  font-size: 12px;
}
.front_wrapper .column .default_btn {
  margin: 16px auto;
}
.front_wrapper .column .line {
  width: 100%;
  height: 1px;
  background-color: #D9D9D9;
  margin: 3px 0;
  position: relative;
  z-index: 10;
}
.front_wrapper .song {
  padding: 100px 0;
}
.front_wrapper .song .song_wrapper {
  width: 84.375%;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
}
.front_wrapper .song .song_inner {
  position: relative;
  z-index: 10;
  color: #555;
  padding: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 10px;
}
.front_wrapper .song .music_list {
  margin: 16px 0;
}
.front_wrapper .song .music_list li {
  font-size: 18px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.front_wrapper .song .prof_text {
  font-size: 14px;
  line-height: 180%;
}
.front_wrapper .song .default_btn {
  margin: 16px auto 0 0;
}
.front_wrapper .song .right {
  display: grid;
  place-content: center;
  position: relative;
}
.front_wrapper .song .right .player {
  position: relative;
}
.front_wrapper .song .right .player .listen {
  position: absolute;
  top: -25%;
  font-size: 18px;
  left: -15%;
  z-index: 10;
  color: #2697F4;
  rotate: -10deg;
}
.front_wrapper .song .right .player iframe {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}
.front_wrapper .song .onpu {
  position: absolute;
  right: 0;
  translate: 0 -50%;
  top: 50%;
  width: 300px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .common_container {
    padding: 80px 0;
    width: 92%;
    margin: 0 auto;
    max-width: 500px;
  }
  .front_common_container {
    width: 94.6666666667vw;
  }
  .front_wrapper .fv .fv_title {
    width: 69.3333333333vw;
    left: 2.6666666667vw;
    position: relative;
  }
  .front_wrapper .fv .news_slider {
    margin-top: -1.3698630137vw;
  }
  .front_wrapper .fv .news_slider .news_text {
    gap: 1.3333333333vw;
    padding: 3.2vw;
  }
  .front_wrapper .fv .news_slider .news_date {
    font-size: 2.6666666667vw;
  }
  .front_wrapper .fv .news_slider .news_title {
    font-size: 3.7333333333vw;
  }
  .front_wrapper .fv .ashirai1 {
    position: initial;
    width: 40vw;
    margin: 0 0 0 auto;
  }
  .front_wrapper .fv .ashirai2 {
    position: initial;
    width: 40vw;
  }
  .front_wrapper .fv .swiper-pagination {
    bottom: 25px;
  }
  .front_wrapper .fv_btn {
    gap: 3.2vw;
    margin: 50px auto 20px;
  }
  .front_wrapper .fv_btn a {
    width: 36vw;
  }
  .front_wrapper .section_title {
    padding-top: 40px;
    text-align: left;
  }
  .front_wrapper .section_title h2 {
    font-size: 56px;
  }
  .front_wrapper .section_title .sub_title {
    font-size: 12px;
  }
  .front_wrapper .front_container {
    width: 89.3333333333vw;
    margin: 0 auto;
  }
  .front_wrapper .news .news_li_wrapper .news_title {
    font-size: 16px;
  }
  .front_wrapper .news .news_li_wrapper .news_date {
    font-size: 12px;
  }
  .front_wrapper .news .news_li_wrapper li a {
    grid-template-columns: auto 30px;
  }
  .front_wrapper .news .news_li_wrapper li a:after {
    width: 30px;
    height: 30px;
  }
  .front_wrapper .news .news_li_wrapper li a:before {
    width: 14px;
    mask-repeat: no-repeat;
    right: 30px;
  }
  .front_wrapper .skew_image {
    height: 220px;
    margin: -21.3333333333vw;
    position: relative;
    z-index: 10;
  }
  .front_wrapper .skew_image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .front_wrapper .games .section_title {
    text-align: center;
  }
  .front_wrapper .games .games_container {
    width: 100%;
  }
  .front_wrapper .final .section_title {
    text-align: center;
  }
  .front_wrapper .final .final_text {
    text-align: center;
  }
  .front_wrapper .final .bg_text {
    font-size: 24px;
    margin: 0 auto;
  }
  .front_wrapper .final .text {
    font-size: 14px;
  }
  .front_wrapper .final .default_btn {
    margin: 0 auto;
  }
  .front_wrapper .final .final_image {
    max-width: 500px;
    margin: 0 auto;
  }
  .front_wrapper .final .bottom_container {
    margin-top: 50px;
    padding: 250px 0 100px;
  }
  .front_wrapper .final .bottom_container .index_bg {
    width: 120%;
    left: -26.6666666667vw;
  }
  .front_wrapper .final .index_li {
    width: 94.6666666667vw;
    margin: 0 auto;
    gap: 4px;
  }
  .front_wrapper .final .index_li li {
    height: 200px;
  }
  .front_wrapper .final .index_li .index_title {
    font-size: 56px;
  }
  .front_wrapper .final .index_li .index_sub_title {
    font-size: 12px;
    padding-top: 4px;
  }
  .front_wrapper .final .index_li .default_btn {
    font-size: 24px;
  }
  .front_wrapper .final .page_index {
    bottom: inherit;
    top: 0;
    font-size: 80px;
  }
  .front_wrapper .column .section_title {
    text-align: center;
  }
  .front_wrapper .column .column_cate_li li a {
    font-size: 14px;
  }
  .front_wrapper .column .column_cate {
    position: inherit;
    top: inherit;
    left: inherit;
    width: fit-content;
  }
  .front_wrapper .column .column_li_wrapper ul li a {
    display: grid;
    grid-template-columns: 110px auto;
    gap: 6px;
    padding: 16px 10px;
  }
  .front_wrapper .column .column_li_wrapper ul li:not(li:first-child) {
    border-top: 1px solid #D9D9D9;
  }
  .front_wrapper .column .column_title {
    font-size: 12px;
    padding: 0 0 4px;
  }
  .front_wrapper .column .column_cate {
    font-size: 11px;
    padding: 2px 8px;
  }
  .front_wrapper .column .column_date {
    font-size: 12px;
    text-align: right;
  }
  .front_wrapper .song .section_title {
    padding-top: 0;
    text-align: center;
  }
  .front_wrapper .song .song_wrapper {
    width: 94.6666666667vw;
  }
  .front_wrapper .song .song_inner {
    display: block;
    padding: 10px;
  }
  .front_wrapper .song .onpu {
    width: 120px;
    bottom: 30px;
    top: inherit;
    translate: inherit;
  }
  .front_wrapper .song .default_btn {
    margin: 16px 0 0 auto;
  }
  .front_wrapper .song .right {
    padding: 80px 0;
  }
  .front_wrapper .song .right .player {
    width: 85%;
    margin: 0 auto;
  }
  .front_wrapper .song .right .player .listen {
    left: -5%;
  }
}
@media screen and (min-width: 769px) {
  .common_container {
    padding: 120px 0;
    width: 84.375%;
    margin: 0 auto;
    max-width: 1440px;
  }
  .sns_wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
    background-color: #fff;
    padding: 6px 32px;
    width: fit-content;
    margin: 16px 16px 0 auto;
    border-radius: 100vmax;
  }
  .front_wrapper .final .final_container {
    max-width: 1040px;
    width: 81.25%;
    margin: 0 auto;
    position: relative;
  }
  .front_wrapper .final .index_li {
    grid-template-columns: repeat(2, 32.03125vw);
    gap: 4px;
  }
  .front_wrapper .final .index_li li a:hover .default_btn:before {
    animation: transformRightLeft 0.6s forwards;
  }
  .front_wrapper .final .index_li li a .default_btn:hover:before {
    animation: none;
  }
  .front_wrapper .final .index_li li {
    transition: background-size 0.4s ease;
  }
  .front_wrapper .final .index_li li:hover {
    background-size: 125%;
  }
  .front_wrapper .final .default_btn {
    margin: 0;
  }
  .front_wrapper .final .final_image {
    position: absolute;
    z-index: 10;
    top: max(-100px, -7.8125vw);
    width: min(700px, 54.6875vw);
    right: -4.6875vw;
  }
  .front_wrapper .final .bottom_container {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .front_wrapper .skew_image {
    margin-top: -9.375vw;
  }
  .front_wrapper .column .column_li_wrapper ul {
    border: solid #D9D9D9;
    border-width: 0 0 0 1px;
    margin: 0 auto;
    width: min(1140px, 89.0625vw);
  }
  .front_wrapper .column .column_li_wrapper ul li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 1;
  }
  .front_wrapper .column .column_li_wrapper ul li a {
    padding: min(42px, 3.28125vw);
    border: solid #D9D9D9;
    border-width: 0 1px 1px 0;
  }
  .front_wrapper .column .column_li_wrapper ul li a .common_image img {
    transition: all 0.4s;
  }
  .front_wrapper .column .column_li_wrapper ul li a:hover .default_btn:before {
    animation: transformRightLeft 0.6s forwards;
  }
  .front_wrapper .column .column_li_wrapper ul li a:hover .common_image img {
    scale: 1.05;
  }
  .front_wrapper .column .column_li_wrapper ul li:nth-child(n+4):nth-last-child(-n+3) a {
    border-width: 0 1px 0 0;
  }
  .front_wrapper .column .column_li_wrapper ul .common_image {
    overflow: hidden;
    border-radius: 3px;
  }
  .front_wrapper .column .column_li_wrapper ul .default_btn {
    margin: 16px 0 0 auto;
  }
  .front_wrapper .song .song_inner {
    justify-content: center;
    max-width: 1040px;
    margin: 0 auto;
  }
  .front_wrapper .song .left {
    max-width: 500px;
  }
  .front_wrapper .song .left figure {
    height: 185px;
  }
  .front_wrapper .song .left figure img {
    object-fit: cover;
    object-position: top;
    height: 100%;
  }
}
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* 固定ページ
*--------------------------------------*/
#about .box {
  padding: 3.125%;
  background-color: #fff;
  border-radius: 10px;
}
#about .box_inner {
  display: grid;
  align-items: center;
  justify-content: center;
}
#about .default_btn {
  margin: 45px auto 0;
}
#about .block {
  margin-bottom: 115px;
  position: relative;
}
#about .history .box_inner {
  grid-template-columns: 1fr;
}
#about .school_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#about .history_title {
  font-size: 18px;
  text-align: center;
  padding-bottom: 20px;
}
#about .gallaly {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 115px;
}
#about .stadium_li {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding-top: 50px;
}
#about .stadium_li li {
  background-color: #fff;
  padding: 30px 0;
  width: calc(50% - 30px);
  min-width: 505px;
}
#about .stadium_li .access {
  font-size: 12px;
  margin: 10px auto 20px;
  width: fit-content;
  text-decoration: underline;
}
#about .stadium_li .map {
  margin: 0 auto;
  width: fit-content;
}
#about .stadium_li .map iframe {
  border-radius: 5px;
}
#about .stadium_li .stadium_name {
  border-radius: 3px;
  font-size: 16px;
  text-align: center;
  background-color: #fff;
  padding: 8px;
  width: 70%;
  margin: 0 auto;
}

#archive .archive_li,
#single .archive_li {
  display: grid;
  gap: 15px;
}
#archive .archive_li li,
#single .archive_li li {
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  position: relative;
  container-type: inline-size;
  container-name: card;
}
#archive .archive_li a,
#single .archive_li a {
  display: grid;
  grid-template-columns: 29.296875% auto;
  gap: 0 30px;
  align-items: center;
}
#archive .archive_li a:hover img,
#single .archive_li a:hover img {
  scale: 1.05;
}
#archive .archive_li a:hover .default_btn:before,
#single .archive_li a:hover .default_btn:before {
  animation: transformRightLeft 0.6s forwards;
}
#archive .archive_li .default_btn,
#single .archive_li .default_btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
#archive .archive_li figure,
#single .archive_li figure {
  overflow: hidden;
  border-radius: 10px;
}
#archive .archive_li img,
#single .archive_li img {
  transition: all 0.4s;
  border-radius: 10px;
}
#archive .archive_li .data,
#single .archive_li .data {
  font-size: 14px;
  position: absolute;
  top: 20px;
  right: 20px;
}
#archive .archive_li .archive_title,
#single .archive_li .archive_title {
  font-size: 24px;
}
#archive .archive_li .news_excerpt,
#single .archive_li .news_excerpt {
  font-size: 14px;
  padding-top: 10px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 3行以上は非表示 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 100px; /* 50px以上は非表示 */
}
@container card (max-width: 900px) {
  #archive .default_btn,
  #single .default_btn {
    display: none;
  }
}

#final .bottom_wrapper {
  background-color: #fff;
  padding: 40px 0;
  width: 90%;
  margin: 0 auto;
  border-radius: 5px;
}
#final table tr:nth-child(even) {
  background-color: inherit;
}
#final table {
  width: auto;
  margin: 0 0 10px 0;
  background-color: #f4f4f4;
}
#final table td {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  font-size: 16px;
  line-height: 180%;
  width: auto;
  padding: 15px 20px 15px 15px;
  font-weight: 400;
}
#final table td a {
  display: inline;
  max-width: 100%;
  word-break: break-word;
  color: #2697F4;
}
#final table td:nth-child(1) {
  min-width: 100px;
}
#final .big_title {
  font-size: 24px;
  margin-bottom: -20px;
}
#final .text_title {
  font-size: 18px;
  background-color: #2697F4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 24px 0 10px;
}
#final .text_title span {
  font-size: 12px;
  display: block;
}
#final h3 {
  font-size: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid #2697F4;
  margin: 60px 0 20px;
}
#final h3.margin_none {
  margin: 0 0 20px;
}
#final p {
  font-size: 16px;
  line-height: 180%;
  padding: 10px 0;
}
#final p.red {
  color: #FF0000;
}
#final .flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
  gap: 20px;
}
#final .flex figure img {
  width: 80%;
  margin: 0 auto;
}

#games .schedule {
  position: relative;
}
#games .box {
  padding: 3.125%;
  background-color: #fff;
  border-radius: 10px;
}
#games .box_inner {
  display: grid;
  align-items: center;
  justify-content: center;
}
#games .box ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 20px auto 0;
}
#games .default_btn {
  min-width: 150px;
}
#games .data_wrapper .data_block:nth-child(odd) {
  background-color: #fff;
}
#games .data_wrapper .data_block {
  padding: 15px 0 70px;
}
#games .data_wrapper .common_container {
  padding: 0;
}
#games .data_title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 15px;
}
#games .data_title span {
  font-size: 21px;
  margin-left: 10px;
}
#games .games_wrapper {
  display: grid;
  grid-template-columns: min(300px, 22.0833333333vw) min(500px, 39.1666666667vw) auto;
  gap: 25px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
#games .games_wrapper:not(#games .games_wrapper:nth-child(2)) {
  padding-top: 25px;
  position: relative;
}
#games .games_wrapper:not(#games .games_wrapper:nth-child(2)):after {
  content: "";
  position: absolute;
  top: 0;
  translate: -50% 0;
  left: 50%;
  background-color: #c2c2c2;
  height: 1px;
  width: 80%;
}
#games .games_wrapper:not(#games .games_wrapper:last-child) {
  margin-bottom: 25px;
}
#games .score_number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  gap: 10px;
}
#games .score_number .school_name {
  font-size: 18px;
  padding-top: 5px;
}
#games .score_number .en {
  font-size: 42px;
}
#games .score_number .line {
  padding: 0 5px;
}
#games .score_number .total_score {
  min-width: 20px;
}
#games .score_number .total_score.win {
  color: #2697F4;
  position: relative;
}
#games .score_number .total_score.win:after {
  content: "";
  width: 11px;
  height: 5px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #2697F4;
  position: absolute;
  top: -5px;
  translate: -50% 0;
  left: 50%;
}
#games .stadium {
  font-size: 10px;
  color: #333333;
  font-weight: 400;
  text-align: center;
  padding-top: 5px;
}
#games .stadium .switch {
  display: none;
}
#games .stadium .switch.active {
  display: block;
}
#games .score_block {
  max-width: 500px;
}
#games .score_block table {
  background-color: #fff;
  border: 1px solid #2697F4;
  border-radius: 3px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
#games .score_block table thead {
  background-color: #2697F4;
  color: #fff;
  font-size: 14px;
}
#games .score_block table thead th {
  padding: 3px 0;
}
#games .score_block table tbody {
  align-items: center;
  display: contents;
  color: #333333;
}
#games .score_block table tbody tr:nth-child(2) {
  background-color: #fff;
  border-top: 1px solid #2697F4;
}
#games .score_block table tbody tr:nth-child(2) td, #games .score_block table tbody tr:nth-child(2) th {
  border-top: 1px solid #2697F4;
}
#games .score_block table tbody th {
  border-right: 1px solid #2697F4;
}
#games .score_block table td {
  padding: 0;
  text-align: center;
  width: 7%;
  font-size: 24px;
  font-weight: 300;
  height: 35px;
}
#games .score_block table td:not(#games .score_block table td:last-child) {
  border-right: 1px solid #2697F4;
}
#games .score_block table td.total {
  font-weight: 700;
}
#games .score_block table .school_name {
  font-size: 12px;
  vertical-align: middle;
}
#games .score_block table td:nth-child(2) {
  font-weight: 400;
  padding: 0;
}
#games .score_block .information {
  color: #FF0000;
  font-size: 11px;
  padding-top: 3px;
}
#games .game_link ul {
  display: grid;
  align-items: center;
  gap: 10px;
}
#games .game_link ul li a {
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  width: fit-content;
}

#column .column_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px 20px;
}
#column .section_title {
  font-size: 42px;
}
#column .section_title span {
  font-size: 14px;
}
#column .section_title.bottom_title {
  margin: 100px 0 45px;
}
#column .review {
  padding-top: 40px;
  background-color: #fff;
}

#column .column_wrap img,
.front_column .column_wrap img {
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}
#column .column_wrap .data,
.front_column .column_wrap .data {
  font-size: 12px;
}
#column .column_wrap .title,
.front_column .column_wrap .title {
  font-size: 18px;
  padding: 5px 0 10px;
}

.front_column .section_title.center_title {
  margin-bottom: 45px;
}
.front_column .section_title {
  font-size: 42px;
  margin: 0;
}
.front_column .section_title span {
  font-size: 14px;
}
.front_column .bottom_title {
  margin: 100px auto 30px;
}

#page .common_container {
  width: 800px;
  margin: 50px auto;
}
#page .page_content h2:nth-child(1) {
  padding: 0 0 5px;
}
#page .page_content h2 {
  font-size: 24px;
  padding: 50px 0 10px;
}
#page .page_content p {
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.625;
}

#team .bottom_wrapper {
  overflow-x: hidden;
}

#team_archive .place_li {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 18px;
  width: 530px;
  margin: 0 auto;
}
#team_archive .place_li li a {
  text-decoration: underline;
}
#team_archive h2 {
  margin-top: 30px;
  font-size: 14px;
  padding: 60px 0 50px;
  position: relative;
}
#team_archive h2:before {
  font-size: 120px;
  color: rgba(55, 182, 75, 0.1);
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: -8.3333333333vw;
}
#team_archive h2:nth-of-type(even) {
  text-align: right;
}
#team_archive h2:nth-of-type(even):before {
  left: inherit;
  right: -8.3333333333vw;
}
#team_archive h2:nth-of-type(1):before {
  content: "HOKKAIDO";
}
#team_archive h2:nth-of-type(2) {
  text-align: right;
}
#team_archive h2:nth-of-type(2):before {
  content: "TOHOKU";
}
#team_archive h2:nth-of-type(3):before {
  content: "KANTO";
}
#team_archive h2:nth-of-type(4):before {
  content: "CHUBU";
}
#team_archive h2:nth-of-type(5):before {
  content: "KINKI";
}
#team_archive h2:nth-of-type(6):before {
  content: "CHUGOKU";
}
#team_archive h2:nth-of-type(7):before {
  content: "SHIKOKU";
}
#team_archive h2:nth-of-type(8):before {
  content: "KYUSHU";
}
#team_archive .team_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: -30px;
}
#team_archive .team_grid:nth-last-of-type(odd) {
  justify-content: right;
}
#team_archive .team_grid li a {
  background-color: #2697F4;
  width: 225px;
  border-radius: 5px;
  overflow: hidden;
  color: #fff;
  overflow: hidden;
  height: 100%;
}
#team_archive .team_grid li a:hover img {
  scale: 1.05;
  transition: all 0.4s;
}
#team_archive .team_grid li a figure {
  overflow: hidden;
}
#team_archive .team_grid li a img {
  transition: all 0.4s;
  aspect-ratio: 16/9;
  height: 100%;
  object-fit: cover;
}
#team_archive .team_grid li a .team_name {
  padding: 7px 15px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.team_single .bottom_wrapper .container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 0 120px 0;
}
.team_single article {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.team_single article .common_image {
  padding: 0;
  border-radius: 5px;
  width: 100%;
  margin: 0 auto 15px;
}
.team_single article .right {
  padding-left: 14.4230769231%;
}
.team_single article .small_txt {
  font-size: 10px;
  padding-bottom: 3px;
}
.team_single article .team_comment {
  font-size: 14px;
  line-height: 1.4285714286;
  padding: 10px 25px;
}
.team_single article .history > p {
  font-size: 18px;
  padding: 45px 0 5px;
}
.team_single article .history .history_li {
  display: grid;
  gap: 5px;
}
.team_single article .history .history_li li {
  padding: 5px 15px;
  font-size: 14px;
  background-color: #fff;
}
.team_single .member_table tr {
  display: grid;
  text-align: center;
  gap: 10px;
}
.team_single .member_table tr td {
  padding: 5px 0;
  font-size: 16px;
  font-weight: bold;
}
.team_single .member_table tr:nth-child(1) td {
  background-color: #2697F4;
  color: #EFF6FF;
  font-size: 14px;
  border-radius: 3px;
}
.team_single .member_table tr:nth-child(1) tr {
  vertical-align: middle;
}
.team_single .member_table tr:nth-child(2) td:nth-child(1) {
  position: relative;
}
.team_single .member_table tr:nth-child(2) td:nth-child(1):before {
  content: "★";
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: 10%;
}

@media screen and (max-width: 768px) {
  .page_title_wrapper .common_container {
    padding: 105px 0 20px;
    border-bottom: 1px solid #fff;
  }
  .bottom_wrapper .common_container {
    padding: 0 0 100px;
  }
  .page_index_wrap .container {
    grid-template-columns: 1fr;
  }
  #archive .archive_li li,
  #single .archive_li li {
    padding: 10px;
  }
  #archive .archive_li li a,
  #single .archive_li li a {
    grid-template-columns: 120px auto;
    font-size: 14px;
    align-items: flex-start;
    gap: 0 10px;
  }
  #archive .archive_li li .news_excerpt, #archive .archive_li li .data,
  #single .archive_li li .news_excerpt,
  #single .archive_li li .data {
    display: none;
  }
  #archive .archive_li .archive_title,
  #single .archive_li .archive_title {
    font-size: 14px;
    padding-top: 5px;
  }
  #archive .archive_li figure, #archive .archive_li img,
  #single .archive_li figure,
  #single .archive_li img {
    border-radius: 5px;
  }
  #archive .archive_li .arrow,
  #single .archive_li .arrow {
    width: 20px;
    height: 20px;
  }
  #archive .section_title,
  #single .section_title {
    text-align: center;
  }
  #about .box {
    padding: 8vw 10px;
  }
  #about .tounament_about {
    margin-top: 40px;
  }
  #about .tounament_logo {
    width: 66.6666666667vw;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  #about .tounament_logo img {
    width: 80%;
    margin: 0 auto;
  }
  #about .block {
    margin-bottom: 120px;
  }
  #about .school_list {
    grid-template-columns: 1fr;
    width: fit-content;
    margin: 0 auto;
    font-size: 14px;
  }
  #about .stadium_li {
    padding-top: 30px;
    gap: 10px;
  }
  #about .stadium_li li {
    width: 100%;
    min-width: inherit;
    padding: 15px 0;
  }
  #about .stadium_li .stadium_name {
    width: 90%;
  }
  #about .stadium_li .access {
    margin: 8px auto;
  }
  #about .stadium_li .map {
    width: 90%;
  }
  #about .stadium_li .map iframe {
    width: 100%;
    height: 130px;
  }
  #games .schedule {
    margin-top: 40px;
  }
  #games .box ul {
    grid-template-columns: 1fr 1fr;
  }
  #games .default_btn {
    min-width: 120px;
  }
  #games .games_wrapper {
    padding: 30px 0;
    grid-template-columns: 1fr;
  }
  #games .games_wrapper:not(#games .games_wrapper:nth-child(2)):after {
    width: 100%;
  }
  #games .game_link ul {
    justify-content: right;
  }
  #games .game_link ul li a {
    margin: 0 0 0 auto;
  }
  #page .common_container {
    width: 335px;
    margin: 20px auto;
  }
  #page .page_content h2 {
    font-size: 18px;
  }
  #page .page_content p {
    font-size: 14px;
    padding: 5px 0;
  }
  #team_archive .place_li {
    width: 350px;
    gap: 10px 20px;
    font-size: 14px;
  }
  #team_archive h2:before {
    font-size: 80px;
    left: -20px;
  }
  #team_archive h2:nth-of-type(even):before {
    right: -20px;
  }
  #team_archive .team_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #team_archive .team_grid li a {
    font-size: 12px;
    width: 100%;
  }
  #team_archive .team_grid li a .team_name {
    padding: 5px 10px;
  }
  .team_single .container {
    width: 90%;
  }
  .team_single article {
    grid-template-columns: 1fr;
  }
  .team_single article .right {
    padding: 0;
    margin-top: 80px;
  }
  .team_single .member_table tr td {
    font-size: 14px;
  }
  #column .column_wrap {
    grid-template-columns: 1fr 1fr;
    gap: 20px 5px;
  }
  #column .column_wrap .data {
    font-size: 11px;
  }
  #column .column_wrap img {
    margin-bottom: 5px;
    border-radius: 3px;
  }
  #column .column_wrap .title {
    font-size: 16px;
    padding: 3px 0 0 0;
    line-height: 1.4;
  }
}
@media screen and (min-width: 769px) {
  #about .box_inner {
    grid-template-columns: 27.34375% auto;
  }
  #about .tounament_logo {
    padding-right: 50px;
  }
  #about .table_container {
    border-left: 1px solid #fff;
    padding-left: 50px;
  }
  #about .school_list {
    font-size: min(16px, 1.3333333333vw);
  }
  #about .school_list .small {
    font-size: min(12px, 1vw);
  }
}
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* 詳細ページ
*--------------------------------------*/
.single_wrapper {
  margin-top: -20px;
}
.single_wrapper .common_container {
  width: 800px;
}
.single_wrapper .common_image {
  padding-bottom: 15px;
  width: 80%;
  margin: 0 auto 20px;
}
.single_wrapper .common_image img {
  border-radius: 10px;
}
.single_wrapper .text p {
  font-size: 16px;
  line-height: 1.5625;
  padding: 20px 0;
}
.single_wrapper .text img {
  padding: 10px 0;
}
.single_wrapper .left .text a {
  display: inline;
  text-decoration: underline;
  color: #2697F4;
}
.single_wrapper .default_btn {
  margin: 80px auto 0;
}

.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: #2697F4;
  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: #2697F4;
  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: #EFF6FF;
  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: #2697F4;
  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: #2697F4;
}
.single_team .cate_label span.youth {
  background-color: #FFF204;
}
.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: #fff !important;
  margin-right: 20px;
}
.single_team table td p {
  padding: 0 !important;
}

@media screen and (max-width: 768px) {
  .single_wrapper {
    margin-top: 10px;
  }
  .single_wrapper .text p {
    font-size: 14px;
    line-height: 1.8571428571;
    padding: 12px 0;
  }
  .single_wrapper .common_container {
    width: 89.3333333333vw;
  }
  .single_wrapper .common_image {
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
  .single_wrapper .default_btn {
    margin: 50px auto 0;
  }
}
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
#contact #select {
  margin-bottom: 50px;
}
#contact #select p {
  text-align: center;
  margin-bottom: 40px;
}
#contact #select ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 585px;
  margin: 0 auto;
}
#contact #select li a {
  text-align: center;
  border: 1px solid #2697F4;
  border-radius: 100vmax;
  font-size: 18px;
  padding: 12px 0;
}
#contact #select li a.active {
  background-color: #2697F4;
  color: #EFF6FF;
  position: relative;
  pointer-events: none;
}
#contact #select li a.active:after {
  content: "";
  position: absolute;
  translate: -50% 0;
  left: 50%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #2697F4;
  width: 30px;
  height: 10px;
  bottom: -20px;
}
#contact #select li a:hover {
  scale: 1.05;
}
#contact .b_box {
  background-color: #2697F4;
  color: #EFF6FF;
  text-align: center;
  border-radius: 10px;
  padding: 40px 0;
  max-width: 600px;
  margin: 0 auto 110px;
}
#contact .b_box .en {
  font-size: 42px;
  padding-bottom: 20px;
}
#contact form {
  max-width: 750px;
  margin: 0 auto;
}
#contact form ul {
  display: grid;
  gap: 30px;
}
#contact form ul li {
  display: grid;
}
#contact form ul li p span input {
  display: block;
  width: 100%;
  border: 1px solid #2697F4;
  height: 40px;
  display: grid;
  align-items: center;
  border-radius: 5px;
  padding: 0 10px;
}
#contact form ul li p span input::placeholder {
  color: #d2d2d2;
}
#contact form ul li p span textarea {
  display: block;
  width: 100%;
  border: 1px solid #2697F4;
  border-radius: 5px;
  padding: 5px 10px;
}
#contact form .default_btn input {
  all: unset;
  display: block;
  min-width: 200px;
  padding: 10px 15px;
  cursor: pointer;
}
#contact form .default_btn {
  padding: 0;
}
#contact form .off {
  opacity: 0.4;
  pointer-events: none;
}
#contact form .privacy_box:has(input[type=checkbox]:checked) + .default_btn {
  opacity: 1;
  pointer-events: auto;
}
#contact form .small {
  font-size: 11px;
  margin-left: 5px;
}
#contact form .wpcf7-not-valid-tip {
  font-size: 12px;
  padding: 3px 0 0 3px;
}
#contact form .wpcf7-list-item {
  margin: 0;
}
#contact form .privacy_box p {
  margin-top: 25px;
  display: flex;
}
#contact form .privacy_box p a {
  text-decoration: underline;
}
#contact .wpcf7-radio input {
  display: inline-block;
  height: auto;
  width: auto;
  padding: 0;
}
#contact .wpcf7-spinner {
  display: none;
}
#contact input[type=checkbox i] {
  border: 1px solid #2697F4;
}

.contact_confirm .btn_grid .default_btn:nth-child(1) {
  background-color: #EFF6FF;
  color: #2697F4;
}
.contact_confirm .btn_grid .default_btn:nth-child(1):hover {
  background-color: #2697F4;
  color: #EFF6FF;
}

.contact form .default_btn,
.contact-collect .default_btn {
  margin: 60px auto 0;
}

@media screen and (max-width: 768px) {
  #contact #select p {
    font-size: 14px;
  }
  #contact #select ul {
    gap: 10px;
  }
  #contact #select li a {
    font-size: 14px;
    height: 50px;
    display: grid;
    place-content: center;
    padding: 0;
  }
  #contact form ul li > p {
    padding-bottom: 5px;
  }
  #contact form .wpcf7-list-item-label {
    font-size: 14px;
  }
  #contact form .wpcf7-radio > span {
    display: block;
  }
  #contact form ul li p span input,
  #contact form ul li p span textarea {
    width: calc(100% - 20px);
  }
  .contact_confirm form div > p {
    font-size: 14px;
  }
  .contact_confirm form .btn_grid {
    display: grid;
    margin: 50px auto 0;
    gap: 10px;
    width: fit-content;
  }
  .contact_confirm form .default_btn {
    margin: 0;
  }
  .contact form .default_btn,
  .contact-collect .default_btn {
    margin: 50px auto 0;
  }
}
@media screen and (min-width: 769px) {
  #contact form ul {
    display: grid;
    gap: 25px;
  }
  #contact form ul li {
    grid-template-columns: 180px auto;
    gap: 25px;
    font-size: 18px;
  }
  .contact_confirm form ul li {
    width: fit-content;
  }
  .contact_confirm form ul {
    width: fit-content;
    margin: 0 auto;
  }
  .contact_confirm form .default_btn {
    display: inline-block;
    margin: 0;
  }
  .contact_confirm form .btn_grid {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
}
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
.front_wrapper .games .games_container {
  padding: 40px 0;
}
.front_wrapper .games .games_container .inner {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 8px;
}
.front_wrapper .games .games_container .game_block {
  padding: 8px;
  background-color: #eee;
  border-radius: 3px;
  transition: all 0.4s;
  border: 1px solid #eee;
}
.front_wrapper .games .games_container .game_block:hover {
  border: 1px solid #2697F4;
}
.front_wrapper .games .games_container .card, .front_wrapper .games .games_container .score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
}
.front_wrapper .games .games_container .score {
  font-size: 24px;
  padding: 8px 0;
  color: #000;
}
.front_wrapper .games .games_container .stadium {
  text-align: center;
}

tr.star {
  position: relative;
}
tr.star:before {
  content: "★";
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: 10%;
}

#column_archive .post-date-heading {
  font-size: 24px;
  margin: 20px 0 16px;
  padding: 5px 24px;
  background-color: #2697F4;
  color: #fff;
  border-radius: 3px;
}

.team_single table tr:nth-child(even) {
  background-color: #fff;
}

#games .box_inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
}
#games .box_inner ul li {
  min-width: 120px;
}
#games .box_inner ul li a {
  padding: 6px 8px;
  background-color: #2697F4;
  color: #fff;
  text-align: center;
  border-radius: 100vmax;
}

#games .games_wrapper {
  grid-template-columns: 1fr;
}

#games .score_number .school_name {
  min-width: 120px;
  width: fit-content;
}
#games .score_number .school_name.left_name {
  text-align: right;
}

.game_link .live_link {
  margin: 0 auto;
}

#games .game_link ul {
  justify-content: center;
}

#data8 {
  border-bottom: 2px solid #fff;
}

@media screen and (max-width: 768px) {
  #column_archive .post-date-heading {
    font-size: 18px;
    padding: 5px 18px;
    margin: 40px 0 12px;
  }
}/*# sourceMappingURL=style.css.map */