@charset "UTF-8";
/** base **/
* {
  padding: 0;
  margin: 0;
  outline: 0;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, ul, li, em {
  font-style: normal;
  word-wrap: break-word;
  word-break: normal;
  font-weight: normal;
}

ul, li {
  list-style-type: none;
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border-collapse: collapse;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

/*HTML5対応*/
img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

section, article, nav, aside, details, figcaption, figure, footer, header, hgroup, menu, main {
  display: block;
}

/*display*/
.ib {
  display: inline-block;
}

/*link*/
a {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a img:hover {
  opacity: 0.8;
}

/*box-sizing*/
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.wrap {
  max-width: 88%;
  margin: 0 auto;
  width: 1250px;
}

* {
  letter-spacing: 0.05em;
}

body,
select,
textarea,
input,
div,
* {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.04em;
}

a {
  color: #333;
}
a:hover {
  color: #555;
}

.bold {
  font-weight: bold;
}

.eng {
  font-family: "Roboto";
  font-weight: 700;
}
.eng * {
  font-family: "Roboto";
}

body figure {
  margin: 0;
}

.site_wrap {
  overflow: hidden;
}

header {
  position: relative;
  left: 0;
  top: 0;
  z-index: 500;
  padding: 30px 40px;
  width: 100%;
  background: url(../images/home/head_bg.svg) no-repeat;
  background-size: cover;
}
@media (max-width: 1450px) {
  header {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 20px 25px;
  }
}
header .inner {
  display: flex;
}
@media (max-width: 767px) {
  header .inner {
    display: block;
  }
}
header .inner .site_name {
  width: 400px;
}
@media (max-width: 1550px) {
  header .inner .site_name {
    width: 350px;
  }
}
@media (max-width: 1450px) {
  header .inner .site_name {
    width: 300px;
  }
}
@media (max-width: 767px) {
  header .inner .site_name {
    width: 80%;
  }
}
header .inner .site_name img {
  vertical-align: middle;
}
header .inner .head_right {
  margin-left: auto;
}
header .inner .head_right .menu_inner {
  display: flex;
  align-items: center;
}
@media (max-width: 1320px) {
  header .inner .head_right .menu_inner {
    position: fixed;
    background: #001f54;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    padding: 80px 5%;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
  }
  header .inner .head_right .menu_inner > * {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
  }
}
header .inner .head_right.open .menu_inner {
  opacity: 1;
  pointer-events: all;
}
header .inner .head_right .menu_wrap ul {
  display: flex;
}
@media (max-width: 1320px) {
  header .inner .head_right .menu_wrap ul {
    flex-wrap: wrap;
    gap: 5%;
  }
}
@media (max-width: 1320px) {
  header .inner .head_right .menu_wrap ul li {
    width: 47.5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
header .inner .head_right .menu_wrap ul li a {
  color: #222;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
@media (max-width: 1550px) {
  header .inner .head_right .menu_wrap ul li a {
    font-size: 16px;
  }
}
@media (max-width: 1450px) {
  header .inner .head_right .menu_wrap ul li a {
    font-size: 15px;
  }
}
@media (max-width: 1320px) {
  header .inner .head_right .menu_wrap ul li a {
    padding: 15px;
    display: flex;
    align-items: center;
    font-size: 18px;
    position: relative;
    height: 100%;
    color: #fff;
  }
  header .inner .head_right .menu_wrap ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/home/icon_arrow_w.svg) no-repeat center;
  }
  header .inner .head_right .menu_wrap ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 767px) {
  header .inner .head_right .menu_wrap ul li a {
    font-size: 4vw;
    padding: 15px 5px 12px;
  }
}
header .inner .head_right .menu_wrap ul li + li {
  margin-left: 20px;
}
@media (max-width: 1320px) {
  header .inner .head_right .menu_wrap ul li + li {
    margin: 0;
  }
}
header .inner .head_right .sns_wrap {
  margin-left: 25px;
}
@media (max-width: 1320px) {
  header .inner .head_right .sns_wrap {
    margin: 50px auto 0;
  }
}
header .inner .head_right .sns_wrap ul {
  display: flex;
  align-items: center;
}
@media (max-width: 1320px) {
  header .inner .head_right .sns_wrap ul {
    justify-content: center;
  }
}
header .inner .head_right .sns_wrap ul li a img {
  width: 30px;
}
header .inner .head_right .sns_wrap ul li + li {
  margin-left: 13px;
}

.home header {
  background: none;
  position: absolute;
}
.home header .inner .head_right .menu_wrap ul li a {
  color: #fff;
}

.menu_btn {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 20px;
  top: 20px;
  background: #243f9f;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  z-index: 300;
  display: none;
}
@media (max-width: 1320px) {
  .menu_btn {
    display: block;
  }
}
@media (max-width: 1023px) {
  .menu_btn {
    top: 12px;
    right: 12px;
  }
}
.menu_btn:hover {
  filter: brightness(1.3);
}
.menu_btn span {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.menu_btn span::before, .menu_btn span::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  position: absolute;
  transition: 0.3s;
}
.menu_btn span::before {
  top: -5px;
}
.menu_btn span::after {
  bottom: -5px;
}
.menu_btn.open span::before {
  top: 0;
  transform: rotate(45deg);
}
.menu_btn.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.fv_wrap {
  max-width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 767px) {
  .fv_wrap {
    height: 70vh;
  }
}
.fv_wrap .image_wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.fv_wrap .image_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .fv_wrap .image_wrap img {
    -o-object-position: 35% 50%;
       object-position: 35% 50%;
  }
}
.fv_wrap .inner {
  position: relative;
  width: 1600px;
  max-width: 80%;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.fv_wrap .inner .logo_wrap {
  width: 380px;
  position: absolute;
  right: 0;
  bottom: 15%;
}
@media (max-width: 767px) {
  .fv_wrap .inner .logo_wrap {
    width: 55%;
    bottom: 10%;
  }
}

.home_contents_wrap {
  position: relative;
  padding: 95px 0 0;
}
@media (max-width: 767px) {
  .home_contents_wrap {
    padding: 50px 0 0;
  }
}
.home_contents_wrap .bg_outer {
  position: relative;
  z-index: 10;
}
.home_contents_wrap .bg_wrap {
  z-index: 1 !important;
  overflow: hidden;
  pointer-events: none;
  left: 50%;
  width: 1920px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .home_contents_wrap .bg_wrap {
    width: 330%;
  }
}
.home_contents_wrap .bg_wrap.bg_01 {
  position: absolute;
  top: 0;
}
.home_contents_wrap .bg_wrap.bg_02 {
  position: absolute;
  top: -410px;
}
.home_contents_wrap .bg_wrap.bg_03 {
  position: absolute;
  top: 0;
}
.home_contents_wrap .bg_wrap.bg_04 {
  position: absolute;
  top: 0;
}
.home_contents_wrap .bg_wrap img {
  width: 1920px;
  height: auto;
}
.home_contents_wrap > * {
  z-index: 50;
  position: relative;
}

.home_title_wrap {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 50;
}
@media (max-width: 767px) {
  .home_title_wrap {
    margin-bottom: 20px;
  }
}
.home_title_wrap.page_title {
  padding: 130px 0 30px;
}
@media (max-width: 767px) {
  .home_title_wrap.page_title {
    padding: 70px 0 30px;
  }
}
.home_title_wrap .eng {
  font-size: 65px;
  line-height: 1.2em;
}
@media (max-width: 767px) {
  .home_title_wrap .eng {
    font-size: 9vw;
  }
}
.home_title_wrap .eng span {
  color: #fff;
  font-size: 1em;
  line-height: 1.2em;
}
.home_title_wrap .eng span.blue {
  color: #42bdd8;
}
@media (max-width: 767px) {
  .home_title_wrap .eng span.sp_blue {
    color: #42bdd8;
  }
}
.home_title_wrap h2, .home_title_wrap h3 {
  font-size: 25px;
}
@media (max-width: 767px) {
  .home_title_wrap h2, .home_title_wrap h3 {
    font-size: 5.5vw;
  }
}

.home_news_wrap {
  background: #fff;
  padding: 60px 5% 53px;
  position: relative;
  z-index: 100;
}
@media (max-width: 767px) {
  .home_news_wrap {
    padding: 25px 5% 20px;
  }
}
.home_news_wrap > .inner {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

.news_list_wrap ul {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .news_list_wrap ul {
    margin-bottom: 20px;
  }
}
.news_list_wrap ul li .inner {
  display: flex;
  border-bottom: 1px solid #1c2b60;
}
@media (max-width: 767px) {
  .news_list_wrap ul li .inner {
    flex-wrap: wrap;
    border-bottom: 0;
  }
}
.news_list_wrap ul li .inner .category_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c2b60;
  color: #fff;
  width: 13%;
  min-width: 8em;
}
@media (max-width: 767px) {
  .news_list_wrap ul li .inner .category_wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .news_list_wrap ul li .inner .text_wrap {
    width: 100%;
  }
}
.news_list_wrap ul li .inner .text_wrap a {
  padding: 7px 0 10px 30px;
  display: block;
}
@media (max-width: 767px) {
  .news_list_wrap ul li .inner .text_wrap a {
    padding: 7px 0 10px 0;
  }
}
.news_list_wrap ul li .inner .text_wrap a * {
  font-size: 17px;
}
@media (max-width: 767px) {
  .news_list_wrap ul li .inner .text_wrap a * {
    font-size: 3.8vw;
  }
}
.news_list_wrap ul li .inner .text_wrap a .link_inner {
  display: flex;
}
@media (max-width: 767px) {
  .news_list_wrap ul li .inner .text_wrap a .link_inner {
    flex-wrap: wrap;
  }
}
.news_list_wrap ul li .inner .text_wrap a .link_inner time {
  min-width: 7em;
  padding-right: 1em;
  white-space: nowrap;
  font-weight: bold;
}
@media (max-width: 767px) {
  .news_list_wrap ul li .inner .text_wrap a .link_inner time {
    width: 100%;
  }
}
.news_list_wrap ul li .inner .text_wrap a .link_inner strong {
  font-weight: bold;
}
@media (max-width: 767px) {
  .news_list_wrap ul li .inner .text_wrap a .link_inner strong {
    width: 100%;
  }
}
.news_list_wrap ul li .inner .text_wrap a:hover strong {
  text-decoration: underline;
  color: #1c2b60;
}
.news_list_wrap ul li .inner .text_wrap a p {
  font-size: 15px;
  padding-top: 3px;
}
@media (max-width: 767px) {
  .news_list_wrap ul li .inner .text_wrap a p {
    font-size: 3.6vw;
  }
}
.news_list_wrap ul li + li {
  margin-top: 10px;
}

.link_btn {
  text-align: center;
}
.link_btn a {
  display: inline-block;
  border: 2px solid #1c2b60;
  padding: 12px 5em;
  color: #1c2b60;
  font-size: 18px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .link_btn a {
    padding: 10px 1em;
    font-size: 4vw;
    display: block;
  }
}
.link_btn a:hover {
  background: #1c2b60;
  color: #fff;
}

.outline_wrap {
  padding-top: 140px;
}
@media (max-width: 767px) {
  .outline_wrap {
    padding-top: 80px;
  }
}

.outline_table {
  position: relative;
  z-index: 100;
  margin-bottom: 180px;
}
@media (max-width: 767px) {
  .outline_table {
    margin-bottom: 100px;
  }
}
.outline_table .table_row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 767px) {
  .outline_table .table_row {
    gap: 0;
  }
}
.outline_table .table_row > * {
  padding: 25px;
}
@media (max-width: 767px) {
  .outline_table .table_row > * {
    padding: 15px 15px 10px;
  }
}
.outline_table .table_row .table_title {
  background: #1c2b60;
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_title {
    width: 100%;
  }
}
.outline_table .table_row .table_title .inner {
  text-align: center;
}
.outline_table .table_row .table_title .inner * {
  line-height: 1.3em;
}
.outline_table .table_row .table_title .inner strong {
  font-size: 26px;
  display: block;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_title .inner strong {
    font-size: 5vw;
  }
}
.outline_table .table_row .table_title .inner span {
  font-size: 15px;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_title .inner span {
    font-size: 3.5vw;
  }
}
.outline_table .table_row .table_title * {
  color: #fff;
  display: block;
}
.outline_table .table_row .table_text {
  width: calc(82% - 5px);
  background: #fff;
  padding: 30px 25px 30px 35px;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_text {
    width: 100%;
    padding: 15px 20px;
  }
}
.outline_table .table_row .table_text * {
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.5em;
}
.outline_table .table_row .table_text .bold {
  font-weight: bold;
}
.outline_table .table_row .table_text .text_36 {
  font-size: 36px;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_text .text_36 {
    font-size: 4.8vw;
  }
}
.outline_table .table_row .table_text .text_23 {
  font-size: 23px;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_text .text_23 {
    font-size: 4.2vw;
    margin-bottom: 5px;
  }
}
.outline_table .table_row .table_text .text_22 {
  font-size: 22px;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_text .text_22 {
    font-size: 4.1vw;
  }
}
.outline_table .table_row .table_text .text_20 {
  font-size: 20px;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_text .text_20 {
    font-size: 4vw;
  }
}
.outline_table .table_row .table_text .text_15 {
  font-size: 15px;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_text .text_15 {
    font-size: 3.8vw;
  }
}
.outline_table .table_row .table_text .text_14 {
  font-size: 14px;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_text .text_14 {
    font-size: 3.6vw;
  }
}
.outline_table .table_row .table_text .text_13 {
  font-size: 13px;
}
@media (max-width: 767px) {
  .outline_table .table_row .table_text .text_13 {
    font-size: 3.5vw;
  }
}

.home_team_list {
  position: relative;
  z-index: 100;
  margin-bottom: 50px;
}
.home_team_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}
.home_team_list ul li {
  width: 22.75%;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .home_team_list ul li {
    width: 31.333%;
    margin-bottom: 12px;
  }
}
.home_team_list ul li a {
  display: block;
  border: 1px solid #555;
  background: #fff;
  text-align: center;
  padding: 20px;
}
@media (max-width: 767px) {
  .home_team_list ul li a {
    padding: 10px;
  }
}
.home_team_list ul li img {
  transition: 0.3s;
}
.home_team_list ul li:nth-child(1) a, .home_team_list ul li:nth-child(3) a, .home_team_list ul li:nth-child(6) a, .home_team_list ul li:nth-child(8) a, .home_team_list ul li:nth-child(9) a, .home_team_list ul li:nth-child(11) a {
  background: #bde4f5;
}
@media (max-width: 767px) {
  .home_team_list ul li a {
    background: #fff !important;
  }
  .home_team_list ul li:nth-child(1) a, .home_team_list ul li:nth-child(3) a, .home_team_list ul li:nth-child(5) a, .home_team_list ul li:nth-child(7) a, .home_team_list ul li:nth-child(9) a, .home_team_list ul li:nth-child(11) a {
    background: #bde4f5 !important;
  }
}

.link_wrap {
  padding: 70px 0;
}
.link_wrap .outer {
  position: relative;
  z-index: 100;
}
.link_wrap .link_box {
  display: flex;
  padding: 15px 40px 15px 50px;
  background: #1c2b60;
  align-items: center;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .link_wrap .link_box {
    flex-wrap: wrap;
    padding: 20px 40px 25px;
  }
}
.link_wrap .link_box + .link_box {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .link_wrap .link_box + .link_box {
    margin-top: 20px;
  }
}
.link_wrap .link_box * {
  color: #fff;
}
.link_wrap .link_box .title_wrap {
  font-size: 65px;
}
@media (max-width: 767px) {
  .link_wrap .link_box .title_wrap {
    font-size: 8vw;
    width: 100%;
    text-align: center;
    line-height: 1.1em;
  }
}
.link_wrap .link_box .title_wrap span {
  font-size: 1em;
  color: #42bdd8;
  line-height: 1.1em;
}
.link_wrap .link_box strong {
  font-size: 21px;
  display: inline-block;
  padding: 0 1em;
}
@media (max-width: 767px) {
  .link_wrap .link_box strong {
    font-size: 5vw;
    padding: 0;
    text-align: center;
    display: block;
    width: 100%;
    padding-bottom: 10px;
  }
}
.link_wrap .link_box em {
  margin-left: auto;
  display: inline-block;
  padding: 7px 5em;
  border: 1px solid #fff;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .link_wrap .link_box em {
    margin: 0 auto;
    padding: 6px 3em;
  }
}
.link_wrap .link_box:hover {
  background: #284199;
}
.link_wrap .link_box:hover em {
  background: #fff;
  color: #1c2b60;
}

.sns_list {
  display: flex;
  gap: 3%;
  margin-top: 150px;
  justify-content: center;
}
@media (max-width: 767px) {
  .sns_list {
    flex-wrap: wrap;
    gap: 0;
    margin-top: 70px;
  }
}
.sns_list .sns_box {
  width: 500px;
  max-width: 48.5%;
}
@media (max-width: 767px) {
  .sns_list .sns_box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.sns_list .sns_box .title_wrap {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sns_list .sns_box .title_wrap {
    margin-bottom: 20px;
  }
}
.sns_list .sns_box .title_wrap img {
  width: 80px;
  max-width: 35%;
}
@media (max-width: 767px) {
  .sns_list .sns_box .title_wrap img {
    max-width: 20%;
  }
}
.sns_list .sns_box .sns_frame {
  text-align: center;
}
.sns_list .sns_box .sns_frame iframe {
  max-width: 100%;
  margin: 0 auto;
  width: 500px;
}

.access_wrap {
  padding-top: 100px;
}

.map_wrap {
  position: relative;
  z-index: 100;
}
.map_wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  vertical-align: middle;
}

footer {
  position: relative;
  z-index: 50;
  background: #fff;
}
footer .footer_info {
  padding: 110px 5% 100px;
  border-top: 1px solid #d3d3d3;
}
@media (max-width: 767px) {
  footer .footer_info {
    padding: 60px 5% 50px;
  }
}
footer .footer_info .footer_name {
  display: block;
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}
footer .footer_info .footer_name span {
  font-size: 1em;
  display: inline-block;
}
@media (max-width: 767px) {
  footer .footer_info .footer_name {
    font-size: 5vw;
    margin-bottom: 20px;
  }
}
footer .footer_info .footer_menu {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  footer .footer_info .footer_menu {
    margin-bottom: 25px;
  }
}
footer .footer_info .footer_menu ul {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  justify-content: center;
}
@media (max-width: 767px) {
  footer .footer_info .footer_menu ul {
    flex-wrap: wrap;
    gap: 5%;
    margin-bottom: 0;
  }
}
footer .footer_info .footer_menu ul li {
  font-weight: bold;
  font-size: 16px;
}
@media (max-width: 767px) {
  footer .footer_info .footer_menu ul li {
    font-size: 3.5vw;
  }
}
footer .footer_info .footer_menu ul a {
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  footer .footer_info .footer_menu ul a {
    font-size: 3.6vw;
  }
}
footer .footer_info .logo_tsuneishi {
  width: 200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  footer .footer_info .logo_tsuneishi {
    width: 50%;
  }
}
footer .footer_end {
  background: #001f54;
  padding: 60px 5%;
}
@media (max-width: 767px) {
  footer .footer_end {
    padding: 40px 5%;
  }
}
footer .footer_end .logo_wrap {
  text-align: center;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  footer .footer_end .logo_wrap {
    padding-bottom: 10px;
  }
}
footer .footer_end .logo_wrap img {
  width: 150px;
}
@media (max-width: 767px) {
  footer .footer_end .logo_wrap img {
    width: 30%;
  }
}
footer .footer_end .copy {
  text-align: center;
}
footer .footer_end .copy img {
  width: 330px;
}

.contents_bg {
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}
.contents_bg .bg_wrap {
  z-index: 1 !important;
  overflow: hidden;
  pointer-events: none;
  left: 50%;
  width: 1920px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .contents_bg .bg_wrap {
    width: 330%;
  }
}
.contents_bg .bg_wrap.cbg {
  position: absolute;
  top: -150px;
}
.contents_bg .bg_wrap.cbg_end {
  position: absolute;
  bottom: 0;
}
.contents_bg .bg_wrap img {
  width: 1920px;
  height: auto;
}

.team_box {
  background: #fff;
  padding: 40px 50px 50px 50px;
  position: relative;
  z-index: 100;
  border: 2px solid #f3f3f3;
}
@media (max-width: 767px) {
  .team_box {
    padding: 25px 25px 35px 25px;
  }
}
.team_box + .team_box {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .team_box + .team_box {
    margin-top: 35px;
  }
}
.team_box .title_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .team_box .title_wrap .logo_wrap {
    min-width: 15%;
    max-width: 40%;
  }
}
.team_box .title_wrap .logo_wrap.long_logo {
  max-width: none;
}
.team_box .title_wrap h3 {
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .team_box .title_wrap h3 {
    font-size: 5vw;
    line-height: 1.4em;
    padding-left: 20px;
  }
}
.team_box .team_info {
  display: flex;
}
@media (max-width: 820px) {
  .team_box .team_info {
    flex-wrap: wrap;
  }
}
.team_box .team_info p.jp {
  font-size: 17px;
  line-height: 2.2em;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .team_box .team_info p.jp {
    font-size: 4vw;
    line-height: 1.9em;
  }
}
.team_box .team_info p.eng {
  font-size: 14px;
  line-height: 2.1em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .team_box .team_info p.eng {
    font-size: 3.5vw;
    line-height: 1.8em;
  }
}
.team_box .team_info .photo_wrap {
  width: 55%;
  padding-top: 5px;
}
@media (max-width: 820px) {
  .team_box .team_info .photo_wrap {
    width: 100%;
  }
}
@media (max-width: 820px) {
  .team_box .team_info .photo_wrap.text_only {
    padding-top: 10px;
  }
}
@media (max-width: 820px) {
  .team_box .team_info .photo_wrap.text_only + .text_wrap {
    padding: 0;
  }
}
.team_box .team_info .text_wrap {
  width: 45%;
  padding-left: 35px;
}
@media (max-width: 820px) {
  .team_box .team_info .text_wrap {
    width: 100%;
    padding: 20px 0 0 0;
  }
}
.team_box .team_info .text_wrap .btn_wrap {
  padding-top: 25px;
}
.team_box .team_info .text_wrap .btn_wrap a {
  display: block;
  text-align: center;
  color: #fff;
  padding: 15px;
  background: #1c2b60;
  font-weight: bold;
  transition: 0.3s;
  font-size: 20px;
}
.team_box .team_info .text_wrap .btn_wrap a:hover {
  background: #284199;
}

.news_title .inner {
  display: flex;
  border-bottom: 1px solid #1c2b60;
}
@media (max-width: 767px) {
  .news_title .inner {
    flex-wrap: wrap;
    border-bottom: 0;
  }
}
.news_title .inner .category_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c2b60;
  color: #fff;
  width: 13%;
  min-width: 8em;
}
@media (max-width: 767px) {
  .news_title .inner .category_wrap {
    width: 100%;
  }
}
.news_title .inner .link_inner {
  padding: 10px 0 10px 20px;
}
.news_title .inner .link_inner time {
  white-space: nowrap;
  font-weight: bold;
}
.news_title .inner .link_inner h1 {
  font-weight: 600;
  font-size: 24px;
}

.news_text_wrap {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .news_text_wrap {
    padding: 30px 0;
  }
}
.news_text_wrap * {
  font-size: 16px;
  line-height: 2.2em;
}
.news_text_wrap p + p {
  margin-top: 20px;
}

/* 404 */
.wrap_404 {
  padding: 120px 5%;
}
.wrap_404 h1 {
  font-size: 40px;
  text-align: center;
  padding-bottom: 20px;
  line-height: 1.2em;
}
.wrap_404 p {
  text-align: center;
  line-height: 2em;
}
.wrap_404 .link_btn {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .wrap_404 {
    padding: 70px 5%;
  }
  .wrap_404 h1 {
    font-size: 6vw;
  }
}

.pagination {
  display: flex;
  padding-top: 30px;
  justify-content: center;
  gap: 1px;
}
.pagination a,
.pagination span {
  width: 2.5em;
  text-align: center;
  padding: 8px 0;
  background: #efefef;
  color: #000;
}
.pagination .current {
  background: #1c2b60;
  color: #fff;
}
.pagination a:hover {
  background: #ddd;
}

.contets_wrap {
  position: relative;
  z-index: 20;
}

.sc_title {
  background: #1c2b60;
  background: linear-gradient(90deg, rgb(28, 43, 96) 70%, rgba(255, 255, 255, 0) 70%);
  margin-bottom: 50px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .sc_title {
    margin-bottom: 20px;
  }
}
.sc_title .inner {
  display: flex;
}
@media (max-width: 767px) {
  .sc_title .inner {
    flex-wrap: wrap;
  }
}
.sc_title .inner .stage {
  padding: 10px 45px 10px 25px;
  color: #fff;
  font-size: 22px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .sc_title .inner .stage {
    padding: 5px 15px;
    font-size: 4.4vw;
  }
}
.sc_title .inner .season_wrap {
  background: #bde4f5;
  border: 1px solid #1c2b60;
  flex-grow: 1;
  transform: skew(-15deg);
}
.sc_title .inner .season_wrap .box {
  transform: skew(15deg);
  display: flex;
  align-items: center;
  color: #000;
  font-size: 36px;
  padding: 0.1em 15px 0 45px;
  line-height: 1.3em;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .sc_title .inner .season_wrap .box {
    text-align: center;
    padding: 5px 15px;
    font-size: 6vw;
  }
}

.group_table_wrap,
.match_table_wrap,
.tournament_table_wrap,
.game_table_wrap {
  background: #fff;
  border: 1px solid #d3d3d4;
  padding: 50px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .group_table_wrap,
  .match_table_wrap,
  .tournament_table_wrap,
  .game_table_wrap {
    padding: 20px 15px;
    margin-bottom: 60px;
  }
}

*.title_b {
  background: #0000cc;
}
*.title_r {
  background: #ff3300;
}
*.title_g {
  background: #009966;
}
*.title_y {
  background: #ffcc00;
}

.group_table_wrap table {
  background: #fff;
}
@media (max-width: 767px) {
  .group_table_wrap table {
    width: 660px;
  }
}
.group_table_wrap table tbody tr th,
.group_table_wrap table tbody tr td {
  border: 1px solid #1c2b60;
  padding: 10px;
  text-align: center;
  width: 25%;
}
@media (max-width: 767px) {
  .group_table_wrap table tbody tr th,
  .group_table_wrap table tbody tr td {
    padding: 8px;
  }
}
.group_table_wrap table tbody tr th {
  padding: 25px 10px;
  color: #fff;
  font-size: 18px;
}
@media (max-width: 767px) {
  .group_table_wrap table tbody tr th {
    padding: 10px;
  }
}
.group_table_wrap table tbody tr .group_logo {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: center;
  width: 100%;
}
.group_table_wrap table tbody tr figure {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}
.group_table_wrap table tbody tr figure img {
  max-width: 60%;
}
.group_table_wrap table tbody tr figcaption {
  font-size: 15px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .group_table_wrap table tbody tr figcaption {
    font-size: 3.8vw;
    line-height: 1.4em;
  }
}

.match_table_wrap .match_row {
  display: flex;
  align-items: center;
  padding: 25px 0;
}
@media (max-width: 820px) {
  .match_table_wrap .match_row {
    flex-wrap: wrap;
  }
}
.match_table_wrap .match_row:nth-child(1) {
  padding-top: 0;
}
.match_table_wrap .match_row + .match_row {
  border-top: 1px solid #1c2b60;
}
@media (max-width: 820px) {
  .match_table_wrap .match_row .match_info {
    width: 100%;
    margin-bottom: 10px;
    background: #f3f3f3;
    padding: 8px;
  }
  .match_table_wrap .match_row .match_info br {
    display: none;
  }
}
.match_table_wrap .match_row .match_info * {
  display: inline-block;
  line-height: 1.3em;
  white-space: nowrap;
}
.match_table_wrap .match_row .match_info .num {
  background: #3e3a39;
  color: #fff;
  width: 1.5em;
  padding: 2px 0 1px;
  text-align: center;
  margin-right: 6px;
  font-size: 18px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .match_table_wrap .match_row .match_info .num {
    font-size: 4vw;
  }
}
@media (max-width: 820px) {
  .match_table_wrap .match_row .match_info time {
    margin-right: 6px;
  }
}
@media (max-width: 767px) {
  .match_table_wrap .match_row .match_info time {
    font-size: 4vw;
  }
}
.match_table_wrap .match_row .match_info .red {
  color: #ff0000;
}
@media (max-width: 767px) {
  .match_table_wrap .match_row .match_info .red {
    font-size: 3.8vw;
  }
}
.match_table_wrap .match_row .match_info .group {
  color: #fff;
  padding: 5px 10px 3px;
  margin: 10px 0 7px;
}
@media (max-width: 820px) {
  .match_table_wrap .match_row .match_info .group {
    margin: 5px 6px 0 0;
    padding: 4px 9px 3px;
    font-size: 3.6vw;
  }
}
.match_table_wrap .match_row .match_data {
  width: 90%;
  margin-left: auto;
}
@media (max-width: 820px) {
  .match_table_wrap .match_row .match_data {
    width: 100%;
  }
}
.match_table_wrap .match_row .match_data .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .match_table_wrap .match_row .match_data .inner {
    flex-wrap: wrap;
  }
  .match_table_wrap .match_row .match_data .inner * {
    order: 3;
  }
}
.match_table_wrap .match_row .match_data .inner .name {
  font-size: 18px;
  width: 35%;
  text-align: right;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .match_table_wrap .match_row .match_data .inner .name {
    width: 45%;
    text-align: center;
    font-size: 3.8vw;
    line-height: 1.3em;
    padding-top: 5px;
  }
}
.match_table_wrap .match_row .match_data .inner .name:last-child {
  text-align: left;
}
@media (max-width: 767px) {
  .match_table_wrap .match_row .match_data .inner .name:last-child {
    text-align: center;
  }
}
.match_table_wrap .match_row .match_data .inner .team_logo {
  width: 10%;
  padding: 0 8px;
}
@media (max-width: 767px) {
  .match_table_wrap .match_row .match_data .inner .team_logo {
    order: 1;
    width: 50%;
    text-align: center;
  }
  .match_table_wrap .match_row .match_data .inner .team_logo img {
    max-width: 60%;
  }
}
.match_table_wrap .match_row .match_data .inner .line {
  position: relative;
  width: 3%;
}
@media (max-width: 767px) {
  .match_table_wrap .match_row .match_data .inner .line {
    width: 8%;
  }
}
.match_table_wrap .match_row .match_data .inner .line.long {
  width: 8%;
}
@media (max-width: 767px) {
  .match_table_wrap .match_row .match_data .inner .line.long {
    width: 10%;
  }
}
.match_table_wrap .match_row .match_data .inner .line::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
  background: #222;
}
.match_table_wrap .match_row .match_data .inner .score {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .match_table_wrap .match_row .match_data .inner .score {
    order: 2;
    width: 50%;
    text-align: center;
  }
}

.tournament_table_wrap .tournament_wrap {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
@media (max-width: 767px) {
  .tournament_table_wrap .tournament_wrap {
    flex-wrap: wrap;
    gap: 0;
  }
}
.tournament_table_wrap .tournament_wrap .box {
  text-align: center;
}
@media (max-width: 767px) {
  .tournament_table_wrap .tournament_wrap .box {
    width: 100%;
  }
  .tournament_table_wrap .tournament_wrap .box + .box {
    margin-top: 35px;
  }
}
.tournament_table_wrap .tournament_wrap .title_wrap {
  padding: 5px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .tournament_table_wrap .tournament_wrap .title_wrap {
    font-size: 4.5vw;
  }
}
.tournament_table_wrap .tournament_wrap figure {
  text-align: center;
}
@media (max-width: 767px) {
  .tournament_table_wrap .tournament_wrap figure img {
    max-width: 80%;
  }
}

.game_table_wrap {
  padding-top: 10px;
}
.game_table_wrap .game_title {
  font-size: 30px;
  margin-top: 40px;
  display: block;
  line-height: 1.2em;
}
@media (max-width: 767px) {
  .game_table_wrap .game_title {
    font-size: 6.5vw;
    margin-top: 20px;
  }
}

.game_table {
  background: #fff;
}
@media (max-width: 767px) {
  .game_table {
    width: 650px;
  }
}
.game_table tr {
  border-bottom: 1px solid #1c2b60;
}
.game_table thead td {
  font-size: 18px;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .game_table thead td {
    font-size: 4vw;
  }
}
.game_table thead td.result {
  font-size: 20px;
}
@media (max-width: 767px) {
  .game_table thead td.result {
    font-size: 4.2vw;
  }
}
.game_table tbody tr {
  padding: 5px 0;
}
.game_table tbody td {
  vertical-align: middle;
  padding: 3px;
  width: 6.25%;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .game_table tbody td {
    font-size: 4vw;
  }
}
.game_table tbody td.logo {
  width: 6%;
}
.game_table tbody td.name {
  width: 44%;
  font-size: 18px;
  text-align: left;
  padding-left: 8px;
}
@media (max-width: 767px) {
  .game_table tbody td.name {
    font-size: 4.2vw;
  }
}
.game_table tbody td.result {
  font-size: 28px;
}
@media (max-width: 767px) {
  .game_table tbody td.result {
    font-size: 4.4vw;
  }
}

.sponsored_wrap .title_wrap {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  display: block;
  padding: 50px 0 20px;
}
.sponsored_wrap .sponsored_1st,
.sponsored_wrap .sponsored_2nd,
.sponsored_wrap .sponsored_3rd {
  width: 900px;
  max-width: 100%;
  border-bottom: 1px solid #7a708e;
  margin: 0 auto;
}
.sponsored_wrap .sponsored_1st {
  margin-bottom: 25px;
}
.sponsored_wrap .sponsored_1st ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3%;
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_1st ul {
    gap: 5%;
  }
}
.sponsored_wrap .sponsored_1st ul li {
  width: 31.33%;
  display: flex;
  align-items: center;
  padding-bottom: 28px;
  justify-content: center;
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_1st ul li {
    padding-bottom: 20px;
  }
}
.sponsored_wrap .sponsored_1st ul li.wide {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_1st ul li.wide {
    width: 47.5%;
  }
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_1st ul li {
    width: 47.5%;
  }
}
.sponsored_wrap .sponsored_2nd {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_2nd {
    margin-bottom: 15px;
  }
}
.sponsored_wrap .sponsored_2nd ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_2nd ul {
    gap: 5%;
  }
}
.sponsored_wrap .sponsored_2nd ul li {
  width: 50%;
  padding: 0 10% 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_2nd ul li {
    width: 47.5%;
    padding: 0 0 20px;
  }
}
.sponsored_wrap .sponsored_3rd {
  display: flex;
  gap: 5%;
  border-bottom: 0;
  justify-content: center;
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_3rd {
    flex-wrap: wrap;
  }
}
.sponsored_wrap .sponsored_3rd .box {
  width: 21.25%;
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_3rd .box {
    width: 47.5%;
    padding-bottom: 0;
  }
}
.sponsored_wrap .sponsored_3rd .box > div {
  text-align: center;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_3rd .box > div {
    padding-bottom: 6px;
  }
}
.sponsored_wrap .sponsored_3rd .box ul li {
  font-size: 16px;
  padding: 3px 0;
  font-weight: 600;
}
@media (max-width: 767px) {
  .sponsored_wrap .sponsored_3rd .box ul li {
    font-size: 3.6vw;
    padding: 1px 0;
  }
}

.fb_iframe_widget > * {
  max-width: 100%;
}

/* pagetop */
#page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #page_top {
    right: 0;
    bottom: 0;
  }
}
#page_top a {
  display: block;
  width: 110px;
  border: 3px solid #fff;
  background: #001f54;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #page_top a {
    display: block;
    width: 60px;
    border-right: 0;
    border-bottom: 0;
    border-radius: 20px 0 0 0;
  }
}

.recult_btn {
  margin-bottom: 20px;
}
.recult_btn a {
  display: inline-block;
  width: 255px;
  max-width: 60%;
}
.recult_btn a:hove {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */








/* ===============================
   グローバルナビ：TEAM / RESULT のサブメニュー
   =============================== */

/* 親 li */
header .inner .head_right .menu_wrap ul li.has-sub {
  position: relative;
}

/* サブメニュー共通（初期は非表示：PC用） */
header .inner .head_right .menu_wrap ul li .sub_menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}


/* --------------------------------------
   PC（1321px 以上）
-------------------------------------- */
@media (min-width: 1321px) {

  /* ホバーで表示 */
  header .inner .head_right .menu_wrap ul li.has-sub:hover > .sub_menu {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 140px;
    padding: 5px 0;
    z-index: 600;
  }

  /* 左揃え */
  header .inner .head_right .menu_wrap ul li .sub_menu li {
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  header .inner .head_right .menu_wrap ul li .sub_menu li a {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #222;
    text-align: left;
    white-space: nowrap;
  }

  /* ホバー背景 */
  header .inner .head_right .menu_wrap ul li .sub_menu li a:hover {
    background: #f2f2f2;
    color: #000;
  }
}


/* --------------------------------------
   タブレット〜スマホ（1320px 以下）
-------------------------------------- */
@media (max-width: 1320px) {

  /* ▼ メニュー全体を1カラムへ（これが絶対必要） */
  header .inner .head_right .menu_wrap ul {
    flex-wrap: nowrap !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  header .inner .head_right .menu_wrap ul li {
    width: 100% !important;
  }

  /* ▼ サブメニューを親の下に縦並びで表示 */
  header .inner .head_right .menu_wrap ul li .sub_menu {
    display: block !important;
    position: static;
    width: 100% !important;
    padding: 0 0 10px 20px !important;
    text-align: left !important;
  }

  header .inner .head_right .menu_wrap ul li .sub_menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border-bottom: none !important;
  }

  header .inner .head_right .menu_wrap ul li .sub_menu li a {
    display: block !important;
    padding: 4px 0 !important;
    font-size: 16px;
    text-align: left !important;
    color: #fff !important;
  }

  /* サブメニュー矢印を非表示 */
  header .inner .head_right .menu_wrap ul li .sub_menu li a::before {
    display: none !important;
  }
}


/* --------------------------------------
   スマホ（767px 以下）
-------------------------------------- */
@media (max-width: 767px) {

  /* メニューは既に1カラムなので、サブメニューのインデントだけ調整 */
  header .inner .head_right .menu_wrap ul li .sub_menu {
    padding-left: 25px !important;
  }

  header .inner .head_right .menu_wrap ul li .sub_menu li a {
    font-size: 14px;
  }
}

/* ハンバーガーメニュー内をスクロール可能にする */
@media (max-width: 1320px) {
  header .inner .head_right .menu_inner {
    display: flex;
    flex-direction: column;           /* 縦並び */
    justify-content: space-between;   /* 上：メニュー 下：SNS */
    height: 100%;
    overflow-y: auto;                 /* ここがポイント：縦スクロール */
    -webkit-overflow-scrolling: touch;/* iOSでスムーズスクロール */
  }

  /* メニューとSNSの間に少し余白 */
  header .inner .head_right .menu_wrap {
    margin-bottom: 40px;
  }
}

