@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 JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  background-color: #fff;
  color: #2E8303;
  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 JP", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.ja_m {
  font-weight: 400;
}

.en {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.en_title {
  letter-spacing: 0.01em;
}

.en_b {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

img,
video,
object {
  width: 100%;
  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: #2E8303;
}
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: #fff;
}
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: 15px 10px;
  }
  header .sp_menu {
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #2E8303;
    border-radius: 0 0 0 5px;
    border: 1px solid #2E8303;
    display: grid;
    place-content: center;
    height: 60px;
    width: 60px;
    transition: all 0.4s;
  }
  header .sp_menu.active {
    border: solid #EEEEEE;
    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: #EEEEEE;
    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: #EEEEEE;
    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: 45px;
  }
  header .logo p {
    font-size: 11px;
    color: #333333;
  }
  header .bg_logo {
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 160px;
  }
}
@media screen and (min-width: 769px) {
  header {
    margin: 0 auto;
    padding: 10px 1.5625vw;
  }
  header .container {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .logo {
    font-size: 1.09375vw;
    color: #333333;
  }
  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: #2E8303;
    border-radius: 100vmax;
    color: #fff;
    width: 8.59375vw;
    font-size: 1.09375vw;
    border: 1px solid #2E8303;
  }
  header .menu li a:hover {
    color: #2E8303;
    background-color: #EEEEEE;
  }
}
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* フッター
*--------------------------------------*/
footer #sponsor {
  background-image: url(images/sponsor_bg.png);
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .logo_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 450px;
  justify-content: right;
  align-items: center;
  gap: 30px;
  margin: 46px 0 0 auto;
}
footer .logo_wrapper li:nth-child(1), footer .logo_wrapper li:nth-child(2) {
  width: 200px;
}
footer .logo_wrapper li:nth-child(3), footer .logo_wrapper li:nth-child(4) {
  width: 140px;
}
footer .com_text {
  color: #EEEEEE;
}
footer .sponsors .container {
  padding: 60px 0;
}
footer .section_title p {
  margin: 0 auto;
}
footer .footer_text {
  text-align: right;
  color: #555;
  font-size: 12px;
  padding-top: 40px;
}
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 0 0;
  font-size: 14px;
  color: #333333;
}
footer .spo_logo .flex {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
footer .spo_title {
  font-size: 18px;
  color: #2E8303;
  margin: 60px auto 40px;
  position: relative;
}
footer .spo_title:after {
  content: "";
  background-color: #2E8303;
  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 20px;
  background-color: #fff;
}
footer figure img {
  margin: 0 auto;
  border-radius: 5px;
}
footer .big img {
  width: 80%;
  max-width: 300px;
}
footer .middle img {
  max-width: 200px;
}
footer .footer {
  position: relative;
  background-color: #eee;
}
footer .footer .container {
  padding: 70px 0 0;
}
footer .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .logo figure {
  width: 80px;
}
footer .logo p {
  font-size: 20px;
  color: #333333;
}
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: #2E8303;
  border-radius: 100vmax;
  color: #fff;
  width: 8.59375vw;
  font-size: 1.09375vw;
  border: 1px solid #2E8303;
}
footer .menu li a:hover {
  color: #2E8303;
  background-color: #EEEEEE;
}
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: #2E8303;
  color: #EEEEEE;
  border-radius: 100vmax;
  line-height: 1;
  position: absolute;
  right: 60px;
  bottom: 30px;
  transition: 0.4s;
  transform-origin: center;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 120%;
}
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;
}
footer .hadano_logo {
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  footer #sponsor {
    padding: 80px 0 53.3333333333vw;
  }
  footer #sponsor .section_title {
    text-align: center;
  }
  footer #sponsor .section_title h2 {
    font-size: 10.6666666667vw;
  }
  footer #sponsor .section_title p {
    font-size: 3.2vw;
  }
  footer .sponsors .container {
    padding: 50px 0 70px;
  }
  footer .logo {
    gap: 8px;
  }
  footer .logo figure {
    width: 40px;
  }
  footer .logo p {
    font-size: 11px;
  }
  footer .footer .container {
    width: 84vw;
  }
  footer .logo_wrapper {
    width: 320px;
    gap: 20px;
  }
  footer .logo_wrapper li:nth-child(1), footer .logo_wrapper li:nth-child(2) {
    width: 140px;
  }
  footer .logo_wrapper li:nth-child(3), footer .logo_wrapper li:nth-child(4) {
    width: 100px;
  }
  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: 11px;
  }
  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: #EEEEEE;
  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: #eee;
  padding: 6px 20px;
}
.pan_list ul {
  display: flex;
  gap: 5px 30px;
  flex-wrap: wrap;
}
.pan_list ul li {
  font-size: 14px;
  position: relative;
}
.pan_list ul li a {
  text-decoration: underline;
}
.pan_list ul li:after {
  content: "";
  background-color: #2E8303;
  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: #2E8303;
  line-height: 1;
  font-weight: 500;
}
.page_title_wrapper .page_title .sub_title {
  font-size: 11px;
}

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

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

.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: #2E8303;
  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: 18px;
  padding: 11px 12px;
  background-color: #F07F00;
  color: #fff;
  width: fit-content;
  border: 1px solid #F07F00;
  transition: all 0.4s;
  border-radius: 3px;
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.default_btn:after {
  content: ">";
  padding-left: 10px;
}
.default_btn:hover {
  background-color: #fff;
  color: #F07F00;
}

table {
  width: 100%;
}
table tbody {
  width: 100%;
  display: block;
}
table tr {
  border-radius: 3px;
}
table tr:nth-child(odd) {
  background-color: #eee;
}
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;
  }
  .pan_list ul li {
    font-size: 11px;
  }
}
@media screen and (min-width: 769px) {
  .default_btn {
    font-size: 18px;
    padding: 7px 40px;
  }
  .single_title_wrapper {
    text-align: center;
  }
}
/*-------------------
* project
-------------------*/
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
.center_text {
  text-align: center;
  padding: 30px 0;
}

.fv .swiper-button-next, .fv .swiper-button-prev {
  color: #2E8303;
}
.fv .swiper-pagination {
  width: fit-content !important;
  left: 32px !important;
}
.fv .swiper-pagination-bullet {
  width: 40px;
  height: 3px;
  border-radius: 0;
  background-color: #fff;
}
.fv .swiper-pagination-bullet-active {
  background-color: #fff;
}
.fv .news_data {
  font-size: 16px;
}
.fv .news_title {
  font-size: 24px;
}
.fv .news_slider {
  position: absolute;
  right: 0;
  top: 80px;
  width: 56.25vw;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.fv .news_slider .swiper-pagination {
  bottom: 24px;
}
.fv .news_slider .swiper-button-next, .fv .news_slider .swiper-button-prev {
  color: #2E8303;
}
.fv .news_slider .swiper-slide {
  position: relative;
}
.fv .news_slider .swiper-slide .news_text {
  position: absolute;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #000);
  z-index: 10;
  bottom: 0;
  left: 0;
  width: calc(56.25vw - 64px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 0 32px 48px 32px;
  font-size: 24px;
}

.gray_text {
  color: #555555;
  font-size: 18px;
  margin: 40px 0;
  line-height: 180%;
}

.front_wrapper .news_ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
  gap: min(24px, 1.875vw);
}
.front_wrapper .news_ul li a {
  color: #555555;
}
.front_wrapper .news_ul .common_image {
  border-radius: 5px;
  overflow: hidden;
}
.front_wrapper .news_ul .news_data {
  font-size: 11px;
  padding: 8px 0 0;
  display: block;
}
.front_wrapper .news_ul .news_title {
  font-size: 14px;
}
.front_wrapper .lead {
  max-width: 1280px;
  position: relative;
}
.front_wrapper .lead .front_girl {
  width: min(150px, 11.71875vw);
  position: absolute;
  top: min(42px, 3.28125vw);
  translate: -50% 0;
  left: 50%;
}
.front_wrapper .lead .lead_text {
  font-size: 20px;
  text-align: center;
  line-height: 180%;
  position: absolute;
  translate: -50% 0;
  left: 50%;
  top: min(280px, 21.875vw);
}
.front_wrapper .games .games_box {
  margin-top: 42px;
  background-color: #FBFFF9;
  border-radius: 10px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  padding: 100px 0;
}
.front_wrapper .team {
  position: relative;
}
.front_wrapper .team .teams_image {
  width: 83.6092715232vw;
  margin-left: -18.4602649007vw;
}
.front_wrapper .team .right_wrapoer {
  position: absolute;
  width: fit-content;
  translate: 0 -50%;
  top: 50%;
  right: 3.125vw;
}
.front_wrapper .team .gray_text {
  text-align: right;
}
.front_wrapper .team .default_btn {
  margin: 0 0 0 auto;
}
.front_wrapper .column .bg {
  background-image: url(images/column_bg.png);
  background-size: 45%;
  background-position: top right;
  background-repeat: no-repeat;
}
.front_wrapper .column .column_cate_li {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.front_wrapper .column .column_cate_li li.active a {
  background-color: #2E8303;
  color: #fff;
}
.front_wrapper .column .column_cate_li li a {
  padding: 8px 12px;
  background-color: #fff;
  color: #2E8303;
  border: 1px solid #2E8303;
  border-radius: 3px;
  font-size: 18px;
  position: relative;
}
.front_wrapper .column .column_li_wrapper ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 26px;
  justify-content: space-between;
}
.front_wrapper .column .column_li_wrapper ul .common_image img {
  border-radius: 3px;
}
.front_wrapper .column .column_text {
  padding-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 0;
  color: #555555;
}
.front_wrapper .column .column_text .column_title {
  grid-column: 1/3;
}
.front_wrapper .column .column_text .column_date {
  text-align: right;
  font-size: 12px;
}
.front_wrapper .column .column_cate {
  border-radius: 3px;
  font-size: 12px;
  padding: 5px 8px;
  color: #fff;
  width: fit-content;
}
.front_wrapper .column .column_cate.games-review {
  background-color: #2E8303;
}
.front_wrapper .column .column_cate.interview {
  background-color: #54674b;
}
.front_wrapper .column .gray_text {
  margin-top: 24px;
}

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

@media screen and (max-width: 768px) {
  .common_container {
    padding: 80px 0;
    width: 92%;
    margin: 0 auto;
    max-width: 500px;
  }
  .fv .fv_title {
    width: 60vw;
    margin: 20px auto;
  }
  .fv .news_slider {
    width: 92vw;
    position: initial;
    border-radius: 10px;
    margin: -32vw auto 0;
  }
  .fv .news_slider .swiper-slide .news_text {
    width: calc(92vw - 24px);
    padding: 0 12px 32px 12px;
  }
  .fv .news_title {
    font-size: 12px;
  }
  .fv .news_data {
    font-size: 11px;
  }
  .fv .swiper-pagination {
    bottom: 12px !important;
    left: 12px !important;
  }
  .fv .swiper-button-prev::before, .fv .swiper-button-prev:after, .fv .swiper-button-next::before, .fv .swiper-button-next:after {
    font-size: 24px;
  }
  .gray_text {
    font-size: 14px;
  }
  .section_title {
    margin-bottom: 24px;
  }
  .section_title h2 {
    font-size: 10.6666666667vw;
  }
  .section_title p {
    font-size: 3.2vw;
  }
  .front_wrapper .news .title_wrap {
    padding: 120px 0 24px 15px;
  }
  .front_wrapper .news .title_wrap h2 {
    font-size: 10.6666666667vw;
  }
  .front_wrapper .news .title_wrap p {
    font-size: 3.2vw;
  }
  .front_wrapper .news .news_ul {
    display: flex;
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, Edge */
    padding: 0 15px;
  }
  .front_wrapper .news .news_ul::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .front_wrapper .news .news_ul li a {
    width: 64vw;
  }
  .front_wrapper .news .default_btn {
    margin: 40px 14px 0 auto;
  }
  .front_wrapper .lead {
    margin: 70px 0;
  }
  .front_wrapper .lead .front_girl {
    width: 40vw;
  }
  .front_wrapper .lead .lead_text {
    position: initial;
    translate: initial;
    font-size: 14px;
    padding-top: 29.3333333333vw;
  }
  .front_wrapper .games .section_title {
    margin-top: 50px;
    text-align: center;
  }
  .front_wrapper .games .container {
    display: grid;
  }
  .front_wrapper .games .container .image_wrapper {
    grid-row: 1/2;
  }
  .front_wrapper .games .img1 {
    width: 56vw;
    margin: 0 auto 0 15px;
    position: relative;
    z-index: 2;
  }
  .front_wrapper .games .img2 {
    width: 44vw;
    margin: -21.3333333333vw 15px 0 auto;
  }
  .front_wrapper .games .games_box {
    margin: 0 15px 0;
  }
  .front_wrapper .team {
    margin: 165px 0 100px;
    padding-top: 120px;
  }
  .front_wrapper .team .teams_image {
    width: 160vw;
    margin-left: -80vw;
  }
  .front_wrapper .team .right_wrapoer {
    top: 120px;
  }
  .front_wrapper .column .bg {
    padding: 90px 15px 0;
    background-size: 50%;
  }
  .front_wrapper .column .column_li_wrapper ul {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .front_wrapper .column .column_cate_li li a {
    font-size: 14px;
  }
  .front_wrapper .column .gray_text {
    margin: 24px 0;
  }
  .front_wrapper .column .default_btn {
    margin: 70px 0 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .common_container {
    padding: 120px 0;
    width: 84.375%;
    margin: 0 auto;
    max-width: 1440px;
  }
  .fv {
    position: relative;
  }
  .fv .container {
    position: relative;
    margin: 0 auto;
  }
  .fv .fv_title {
    width: 24.21875vw;
    padding: 54px 0 54px 9.375vw;
    max-width: 345px;
  }
  .fv .sns_link {
    background-color: #EEEEEE;
    width: 300px;
    display: grid;
    grid-template-columns: repeat(5, 20px);
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 100vmax;
    gap: 30px;
    position: absolute;
    top: 20px;
    right: 1.6666666667vw;
    z-index: 10;
  }
  .fv .sns_link li {
    width: 20px;
  }
  .fv .sns_link li a:hover {
    scale: 1.2;
  }
  .section_title h2 {
    font-size: min(120px, 9.375vw);
  }
  .section_title p {
    margin-top: min(-10px, -0.78125vw);
    font-size: min(24px, 1.875vw);
  }
  .front_wrapper .news {
    position: relative;
    z-index: 10;
    width: min(1200px, 93.75vw);
    margin: -42px auto 0;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
  }
  .front_wrapper .news .bg {
    background-color: #FBFFF9;
  }
  .front_wrapper .news .title_wrap h2 {
    font-size: 40px;
    padding-right: 72px;
  }
  .front_wrapper .news .title_wrap p {
    font-size: 12px;
  }
  .front_wrapper .news .container {
    padding: min(42px, 3.28125vw);
    display: flex;
    gap: 5.78125vw;
  }
  .front_wrapper .news .default_btn {
    margin: 40px auto 0 0;
  }
  .front_wrapper .lead {
    margin: 160px auto;
  }
  .front_wrapper .games .container {
    width: min(1200px, 93.75vw);
    margin: 0 auto;
    position: relative;
  }
  .front_wrapper .games .img1, .front_wrapper .games .img2 {
    position: absolute;
  }
  .front_wrapper .games .img1 {
    width: min(335px, 26.171875vw);
    top: min(-36px, -2.8125vw);
    right: min(264px, 20.625vw);
    z-index: 2;
  }
  .front_wrapper .games .img2 {
    width: min(264px, 20.625vw);
    top: min(93px, 7.265625vw);
    right: min(47px, 3.671875vw);
  }
  .front_wrapper .team {
    margin: 140px auto 60px;
  }
  .front_wrapper .column .bg {
    padding: 3.125vw;
  }
  .front_wrapper .column .container {
    max-width: 1440px;
    margin: 0 auto;
  }
  .front_wrapper .column .default_btn {
    margin: 80px auto;
  }
}
/*
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(2, 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;
  border: 1px solid #2E8303;
  border-radius: 5px;
}
#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: #eee;
  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: #eee;
  padding: 20px;
  position: relative;
}
#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.1;
}
#archive .archive_li a:hover .default_btn,
#single .archive_li a:hover .default_btn {
  background-color: #fff;
  color: #F07F00;
}
#archive .archive_li .default_btn,
#single .archive_li .default_btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1.09375vw;
}
#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以上は非表示 */
}

.schedule {
  position: relative;
}
.schedule .common_container {
  position: relative;
}
.schedule .box {
  padding: 3.125%;
  background-color: #fff;
  border-radius: 10px;
}
.schedule .box_inner {
  display: grid;
  align-items: center;
  justify-content: center;
}
.schedule .box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px auto 0;
}
.schedule .box ul li a {
  display: flex;
  justify-content: space-between;
  width: auto;
  cursor: pointer;
}

#games .leagu_table {
  display: grid;
  gap: 30px;
}
#games .leagu_table .leagu_title {
  font-size: 18px;
  padding-bottom: 10px;
}
#games .leagu_table .side_grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  font-size: 10px;
  background-color: #fff;
}
#games .leagu_table .side_grid li {
  text-align: center;
  border: solid #2E8303;
  border-width: 1px 1px 0 0;
  display: grid;
  place-content: center;
  min-height: 40px;
}
#games .leagu_table .side_grid li:nth-child(1) {
  border-width: 1px 1px 0 1px;
}
#games .leagu_table .side_grid li:first-child {
  background-color: #FFF6F6;
}
#games .leagu_table .side_grid:last-child {
  border-bottom: 1px solid #2E8303;
}
#games .leagu_table .side_grid.grid_top {
  background-color: #FFF6F6;
}
#games .next_text {
  margin: 60px auto 30px;
  text-align: center;
}
#games .next_text .next_arrow {
  width: 20px;
  height: 10px;
  background-color: #2E8303;
  display: block;
  margin: 5px auto 10px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
#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: #2E8303;
  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: #2E8303;
  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 #2E8303;
  border-radius: 3px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
#games .score_block table thead {
  background-color: #2E8303;
  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 #2E8303;
}
#games .score_block table tbody tr:nth-child(2) td, #games .score_block table tbody tr:nth-child(2) th {
  border-top: 1px solid #2E8303;
}
#games .score_block table tbody th {
  border-right: 1px solid #2E8303;
}
#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 #2E8303;
}
#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 .column_wrap li {
  transition: all 0.4s;
}
#column .column_wrap .fade {
  transition: opacity 0.4s ease;
  opacity: 1;
}
#column .column_wrap .fade-out {
  opacity: 0;
}
#column .section_title {
  font-size: 42px;
}
#column .section_title span {
  font-size: 14px;
}
#column .section_title.bottom_title {
  margin: 100px 0 10px;
}
#column .review {
  padding-top: 40px;
  background-color: #eee;
}
#column .bottom_wrapper .common_container {
  padding: 0 0 40px;
}

#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 .team_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: fit-content;
  margin: 0 auto;
}
#team_archive .team_grid li a {
  background-color: #2E8303;
  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: #FFF6F6;
}
.team_single .member_table tr {
  display: grid;
  grid-template-columns: 3fr 1fr;
  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: #2E8303;
  color: #EEEEEE;
  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;
  }
  #archive .section_title p,
  #single .section_title p {
    margin: 0 auto;
  }
  #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;
  }
  #final .block {
    padding: 80px 0;
  }
  #final .ticket_btn {
    font-size: 16px;
    width: 80%;
    margin: 30px auto 0;
  }
  #final .sp_grid {
    display: grid;
  }
  #final .sp_grid .banner {
    grid-row: 1/2;
  }
  #final .sp_grid figure {
    margin: 0;
  }
  #final .table_container table td:nth-child(1) {
    min-width: 60px;
  }
  #final .final_text {
    font-size: 14px;
  }
  .schedule {
    margin-top: 40px;
  }
  .schedule .box ul {
    grid-template-columns: 1fr 1fr;
    margin: 20px auto;
  }
  .schedule .box ul li a {
    width: auto;
  }
  #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 #FFF6F6;
    padding-left: 50px;
  }
  #games .leagu_table {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
  #games .leagu_table .side_grid {
    font-size: 14px;
  }
}
/*
Theme Name: site2025
Author: Plusers
Description: original theme
Version： 1.0.0
*/
/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
* 詳細ページ
*--------------------------------------*/
.single_wrapper {
  margin-top: 50px;
}
.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: #2E8303;
}
.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: #2E8303;
  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: #2E8303;
  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: #EEEEEE;
  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: #2E8303;
  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: #F07F00;
}
.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: #fff !important;
  margin-right: 20px;
}
.single_team table td p {
  padding: 0 !important;
}

@media screen and (max-width: 768px) {
  .single_wrapper {
    margin-top: 30px;
  }
  .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 #2E8303;
  border-radius: 100vmax;
  font-size: 18px;
  padding: 12px 0;
}
#contact #select li a.active {
  background-color: #2E8303;
  color: #EEEEEE;
  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: #2E8303;
  width: 30px;
  height: 10px;
  bottom: -20px;
}
#contact #select li a:hover {
  scale: 1.05;
}
#contact .b_box {
  background-color: #2E8303;
  color: #EEEEEE;
  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 #2E8303;
  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 #2E8303;
  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;
  display: flex;
  align-items: center;
}
#contact form .default_btn:after {
  padding-inline: 0 10px;
}
#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 #2E8303;
}

.contact_confirm .btn_grid .default_btn:nth-child(1) {
  background-color: #EEEEEE;
  color: #2E8303;
}
.contact_confirm .btn_grid .default_btn:nth-child(1):hover {
  background-color: #2E8303;
  color: #EEEEEE;
}

.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;
  }
}/*# sourceMappingURL=style.css.map */