@charset "UTF-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --primary-font:"游ゴシック体",YuGothic,游ゴシック Medium,Yu Gothic Medium,游ゴシック,Yu Gothic,Meiryo,sans-serif;
  --cormorant-infant-font:"Cormorant Infant", serif;
  --yu-mincho-font: "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  --primary:#333333;
  --primary-light:#BBBBBB;
  --primary-dark:#1E0405;
  --secondary:#999;
  --secondary-dark:#605858;
  --primary-background-color:#231815;
  --accent-color: #8B7246;
  --border-primary:#DDDDDD;
  --border-primary-light:#e5e5e5;
  --border-second: #CCCCCC;
  --white: #FFFFFF;
  --black: #000;
  --hover-button-light: #F5F5F5;
  --background-red: rgba(218, 49, 12, 0.05);
  --red:#DA310C;
  --blue:#0070BF;
  --green: #6FBA2C;
  --orange: #ED6104;
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
  width: 100%;
  height: auto;
  --fonts01: "Noto Sans JP", sans-serif;
  --fonts02: "M PLUS Rounded 1c", sans-serif;
  --fonts03: "Damion", cursive;
  font-family: var(--fonts01);
  font-weight: 500;
  line-height: 1.57;
  color: #001b45;
}

.l-content {
  width: 100%;
  max-width: 1020px;
  padding: 0px 20px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.btn-fix {
  width: 137px;
  height: 137px;
  position: fixed;
  z-index: 9999;
  right: 20px;
  bottom: 20px;
  pointer-events: none;
  opacity: 0;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .btn-fix {
    width: 64px;
    height: 64px;
    right: 10px;
    bottom: 10px;
  }
}
.btn-fix.is-show {
  opacity: 1;
  pointer-events: unset;
}
.btn-fix a {
  width: 100%;
  height: 100%;
  display: flex;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
.btn-fix a img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  .btn-fix a:hover {
    opacity: 0.7;
  }
}

/*------------------------------------------------------------
    Sidebar
------------------------------------------------------------*/
/*------------------------------------------------------------
    Header
------------------------------------------------------------*/
/*------------------------------------------------------------
    Footer
------------------------------------------------------------*/
/*------------------------------------------------------------
    btn
------------------------------------------------------------*/
.c-btn01 {
  width: 100%;
  max-width: 215px;
  height: auto;
  background: #ff7d1a;
  font-size: 18px;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 11px 10px;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    font-size: 16px;
    padding: 8px 10px;
  }
}
@media screen and (min-width: 769px) {
  .c-btn01:hover {
    opacity: 0.7;
  }
}
.c-btn02 {
  width: 100%;
  height: auto;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0px 3px 0px #dfdfdf;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn02 {
    max-width: 100px;
    padding: 15px 10px 10px;
    box-shadow: 0px 2px 0px #dfdfdf;
  }
}
.c-btn02 .img {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-btn02 .img {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.c-btn02 .img .name {
  font-size: 16px;
  font-weight: 700;
  color: #002762;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .c-btn02 .img .name {
    padding-left: 0;
    font-size: 12px;
    padding-top: 8px;
  }
}
.c-btn02 .txt {
  font-size: 12px;
  color: #002762;
}
@media screen and (max-width: 768px) {
  .c-btn02 .txt {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .c-btn02:hover {
    transform: translateY(3px);
    opacity: 0.7;
    box-shadow: 0px 0px 0px #dfdfdf;
  }
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
   Table
------------------------------------------------------------*/
/*------------------------------------------------------------
   Select, input,...
------------------------------------------------------------*/
/*------------------------------------------------------------
   Breadcrumb
------------------------------------------------------------*/
/*------------------------------------------------------------
  List
------------------------------------------------------------*/
/*------------------------------------------------------------
  Nav
------------------------------------------------------------*/
/*------------------------------------------------------------
  paginate
------------------------------------------------------------*/
/*------------------------------------------------------------
   Others
------------------------------------------------------------*/
.c-mainvisual01 {
  width: 100%;
  height: auto;
}
.c-mainvisual01 .img img {
  width: 100%;
  height: auto;
}

.index-sec1 {
  width: 100%;
  height: auto;
  padding-bottom: 130px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .index-sec1 {
    padding-bottom: 60px;
  }
}
.index-sec1::after {
  width: 100%;
  height: 150px;
  position: absolute;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: url(../images/sec1-bg.png) center bottom;
  background-size: auto 300px;
}
@media screen and (max-width: 768px) {
  .index-sec1::after {
    background: url(../images/sec1-bg.png) center bottom;
    background-size: auto 150px;
    height: 70px;
  }
}
.index-sec1 .ttl1 {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: -120px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .index-sec1 .ttl1 {
    margin-top: -70px;
  }
  .index-sec1 .ttl1 img {
    width: 277px;
    height: auto;
  }
}
.index-sec1 .l-content {
  width: 100%;
  height: auto;
  background: #0071c2;
  max-width: 100%;
}
.index-sec1 .block {
  width: 100%;
  height: auto;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .index-sec1 .block {
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    max-width: 450px;
  }
}
.index-sec1 .item {
  width: calc(33.3333333333% - 33.3333333333px);
  height: auto;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .index-sec1 .item {
    width: 100%;
    height: auto;
    display: flex;
  }
  .index-sec1 .item .img {
    width: 135px;
    height: auto;
  }
  .index-sec1 .item .content {
    width: calc(100% - 135px);
    text-align: left;
    padding-left: 15px;
  }
}
.index-sec1 .item h3 {
  font-size: 22px;
  font-weight: 800;
  font-family: var(--fonts02);
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .index-sec1 .item h3 {
    font-size: 14px;
    margin-top: 0;
  }
}
.index-sec1 .item p {
  font-size: 14px;
  font-weight: 700;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .index-sec1 .item p {
    font-size: 11px;
    padding-top: 5px;
  }
}
.index-sec2 {
  width: 100%;
  height: auto;
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .index-sec2 {
    padding-top: 45px;
  }
}
.index-sec2 .c-link {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .c-link {
    gap: 15px;
  }
}
.index-sec2 .c-link a {
  display: inline-block;
  max-width: calc(33.3333333333% - 16.6666666667px);
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .index-sec2 .c-link a {
    max-width: 100%;
    width: auto;
    text-align: center;
  }
  .index-sec2 .c-link a img {
    width: 329px;
  }
}
@media screen and (min-width: 769px) {
  .index-sec2 .c-link a:hover {
    opacity: 0.7;
  }
}
.index-sec2 .block1 {
  width: 100%;
  height: auto;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .block1 {
    padding-top: 80px;
  }
}
.index-sec2 .block1 .ttl1 {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .index-sec2 .block1 .ttl1 img {
    width: 174px;
    height: auto;
  }
}
.index-sec2 .block1 .ttl1 p {
  font-size: 24px;
  font-weight: 700;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .block1 .ttl1 p {
    font-size: 17px;
    padding-top: 10px;
  }
}
.index-sec2 .block1 .kousha-select-area {
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  display: flex;
  gap: 10px;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .block1 .kousha-select-area {
    gap: 15px;
    justify-content: center;
  }
}
.index-sec2 .block1 .kousha-select-area .select-kousha-prefArea {
  width: calc(50% - 5px);
  height: auto;
}
@media screen and (max-width: 768px) {
  .index-sec2 .block1 .kousha-select-area .select-kousha-prefArea {
    width: 100%;
    height: auto;
    max-width: 320px;
  }
}
.index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-area {
  height: 60px;
  background: #2983cc;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-area {
    font-size: 16px;
    height: 44px;
  }
}
.index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-area::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  .index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-area:hover {
    opacity: 0.7;
  }
}
.index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-kousha {
  width: 100%;
  height: auto;
  background: #f0f1f2;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-kousha {
    padding: 10px;
  }
}
.index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-kousha .select-kousha-btn {
  width: auto;
  height: 37px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #001b45;
  font-size: 15px;
  box-sizing: border-box;
  border-radius: 5px;
  background: #fff;
  font-weight: 500;
  padding: 2px 17px;
  border: 1px solid #dddddd;
  cursor: pointer;
  position: relative;
  z-index: 5;
  transition: ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-kousha .select-kousha-btn {
    font-size: 14px;
    height: 30px;
    padding: 0px 8px;
  }
}
.index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-kousha .select-kousha-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 4px;
  position: absolute;
  z-index: -5;
  pointer-events: none;
  transition: ease-in-out 0.2s;
}
@media screen and (min-width: 769px) {
  .index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-kousha .select-kousha-btn:hover {
    border: 1px solid #fb6686;
    color: #fb6686;
    font-weight: 700;
    background: #f9e4e8;
  }
  .index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-kousha .select-kousha-btn:hover::before {
    border: 1px solid #fb6686;
  }
}
.index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-kousha .select-kousha-btn.select-kousha-btn-selected {
  border: 1px solid #fb6686;
  color: #fb6686;
  font-weight: 700;
  background: #f9e4e8;
}
.index-sec2 .block1 .kousha-select-area .select-kousha-prefArea .select-kousha-prefArea-kousha .select-kousha-btn.select-kousha-btn-selected::before {
  border: 1px solid #fb6686;
}
.index-sec2 .title2 {
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .title2 {
    padding-top: 40px;
  }
}
.index-sec2 .title2 p {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .index-sec2 .title2 p {
    font-size: 13px;
  }
}
.index-sec2 .title2 h3 {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .index-sec2 .title2 h3 {
    font-size: 20px;
  }
}
.index-sec2 .radio-sports-area {
  width: 100%;
  height: auto;
  max-width: 840px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .radio-sports-area {
    gap: 8px;
  }
}
.index-sec2 .radio-sports-area .radio-sports-btn {
  width: calc(25% - 7.5px);
  height: 54px;
  border-radius: 30px;
  border: 2px solid #fff;
  background: #f0f1f2;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  transition: ease-in-out 0.2s;
}
@media screen and (max-width: 768px) {
  .index-sec2 .radio-sports-area .radio-sports-btn {
    width: calc(33.3333333333% - 5.3333333333px);
    height: 35px;
    max-width: 150px;
  }
  .index-sec2 .radio-sports-area .radio-sports-btn p {
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  .index-sec2 .radio-sports-area .radio-sports-btn:hover {
    border: 2px solid #fb6686;
    color: #fb6686;
    background: #f9e4e8;
  }
}
.index-sec2 .radio-sports-area .radio-sports-btn.is_active {
  border: 2px solid #fb6686;
  color: #fb6686;
  background: #f9e4e8;
}
.index-sec2 .sports-event-list {
  width: 100%;
  height: auto;
  background: #ebf5fc;
  padding: 80px 0;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list {
    padding: 40px 0px;
    margin-top: 40px;
  }
}
.index-sec2 .sports-event-list .l-content {
  max-width: 1020px;
}
.index-sec2 .sports-event-list .ttl {
  width: 100%;
  height: auto;
}
.index-sec2 .sports-event-list .ttl .ttl1 {
  width: 100%;
  height: auto;
  height: 58px;
  background: #2983cc;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 0px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .ttl .ttl1 {
    font-size: 14px;
    height: 35px;
    padding: 0px 10px;
  }
}
.index-sec2 .sports-event-list .ttl .ttl2 {
  padding-top: 30px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .ttl .ttl2 {
    padding-left: 0;
    padding-top: 15px;
  }
}
.index-sec2 .sports-event-list .ttl .ttl2 a {
  font-size: 36px;
  font-weight: 700;
  display: inline-block;
  transition: ease-in-out 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .ttl .ttl2 a {
    font-size: 21px;
  }
}
@media screen and (min-width: 769px) {
  .index-sec2 .sports-event-list .ttl .ttl2 a:hover {
    opacity: 0.7;
  }
}
.index-sec2 .sports-event-list .ttl .cat {
  padding: 5px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .ttl .cat {
    padding: 5px 0px 0px;
    gap: 8px;
  }
}
.index-sec2 .sports-event-list .ttl .cat span {
  font-size: 13px;
  background: #fc87a0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  box-sizing: border-box;
  min-width: 92px;
  padding: 0px 8px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .ttl .cat span {
    font-size: 10px;
    height: 16px;
    min-width: 70px;
  }
}
.index-sec2 .sports-event-list .c-item1 {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 50px;
}
.index-sec2 .sports-event-list .c-item1:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item1 {
    margin-top: 40px;
  }
}
.index-sec2 .sports-event-list .c-item1.not-active-sports, .index-sec2 .sports-event-list .c-item1.not-active-school {
  display: none;
}
.index-sec2 .sports-event-list .c-item2 {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 10px;
  margin-top: 15px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 {
    padding: 15px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box {
    overflow-x: auto;
    position: relative;
    padding: 1px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box .table {
  width: 100%;
  border-collapse: separate;
  border-radius: 6px;
  overflow: hidden;
  padding: 1px;
  position: relative;
  border-collapse: collapse;
  border-style: hidden;
  box-shadow: 0 0 0 1px #dbdbdb;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box .table {
    width: -moz-max-content;
    width: max-content;
  }
}
.index-sec2 .sports-event-list .c-item2 .box td {
  border: 1px solid #dbdbdb;
  padding: 15px 10px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box td {
    font-size: 10px;
    padding: 13px 10px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box th {
  border: 1px solid #dbdbdb;
  background: #dfdfdf;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 10px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box th {
    font-size: 11px;
    padding: 10px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box th:nth-child(even) {
  background-color: #ededed;
}
.index-sec2 .sports-event-list .c-item2 .box2 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 {
    margin-top: 20px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card1 {
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card1 {
    max-width: 100%;
    gap: 10px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card1 .c-btn02 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card1 .c-btn02 {
    margin-top: 0px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card1 .c-btn02:first-child {
  margin-top: 0px;
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 {
  width: calc(100% - 370px);
  padding-left: 35px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 {
    padding: 0px 5px;
    width: 100%;
    padding-top: 20px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .txt1 {
  font-size: 14px;
  color: #002762;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 .txt1 {
    font-size: 12px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .ttl-name {
  padding-bottom: 5px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 .ttl-name {
    padding-top: 10px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .ttl-name:first-child {
  padding-top: 0;
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .ttl-name p {
  font-size: 16px;
  font-weight: 700;
  color: #002762;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 .ttl-name p {
    font-size: 14px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .staff-note p {
  font-size: 14px;
  color: #002762;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 .staff-note p {
    font-size: 12px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .staff-note span, .index-sec2 .sports-event-list .c-item2 .box2 .card2 .staff-note strong {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 .staff-note span, .index-sec2 .sports-event-list .c-item2 .box2 .card2 .staff-note strong {
    font-size: 12px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .link {
  font-size: 18px;
  color: #2c93dd;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 .link {
    font-size: 13px;
    margin-top: 10px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .information {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 .information {
    padding-top: 10px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .information .address {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 .information .address {
    font-size: 13px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .information .address a {
  color: #2c93dd;
  padding-left: 5px;
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .information .tel {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 .information .tel {
    font-size: 13px;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .btn {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .index-sec2 .sports-event-list .c-item2 .box2 .card2 .btn {
    margin: 15px auto 15px;
    text-align: center;
  }
}
.index-sec2 .sports-event-list .c-item2 .box2 .card2 .btn .c-btn01 {
  display: inline-flex;
  justify-content: center;
}
.index-sec3 {
  width: 100%;
  height: auto;
}
.index-sec3 .l-content {
  max-width: 1200px;
  background: #0071c2;
  border-radius: 40px;
  margin: 75px auto;
  position: relative;
  z-index: 1;
  padding: 90px 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-sec3 .l-content {
    margin: 40px auto 0;
    border-radius: 0px;
    padding: 60px 20px 40px;
  }
  .index-sec3 .l-content h2 img {
    width: auto;
    height: 31px;
  }
}
.index-sec3 .ttl {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: 50px;
  left: 50px;
}
@media screen and (max-width: 768px) {
  .index-sec3 .ttl {
    top: 15px;
    left: 20px;
  }
  .index-sec3 .ttl img {
    width: 137px;
    height: auto;
  }
}
.index-sec3 .block1 {
  border: 3px solid #fff;
  background: #1981cc;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 30px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .index-sec3 .block1 {
    border: 2px solid #fff;
    padding: 20px;
    margin-top: 60px;
  }
}
.index-sec3 .block1 .ttl1 {
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  .index-sec3 .block1 .ttl1 {
    margin-top: -52px;
    padding-bottom: 10px;
  }
  .index-sec3 .block1 .ttl1 img {
    width: auto;
    height: 78px;
  }
}
.index-sec3 .item {
  width: 100%;
  height: auto;
  text-align: left;
}
.index-sec3 .item:last-child {
  border-top: 3px solid #fff;
  padding-top: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .index-sec3 .item:last-child {
    border-top: 2px solid #fff;
    padding-top: 20px;
    margin-top: 20px;
  }
}
.index-sec3 .item__step {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .index-sec3 .item__step span img {
    width: auto;
    height: 30px;
  }
}
.index-sec3 .item__step h3 {
  padding-left: 10px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  font-family: var(--fonts02);
}
@media screen and (max-width: 768px) {
  .index-sec3 .item__step h3 {
    font-size: 20px;
  }
}
.index-sec3 .item__content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  padding-top: 15px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .index-sec3 .item__content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .index-sec3 .item__content .c-btn01 {
    margin-top: 10px;
  }
}
.index-sec3 .item__content p {
  width: 100%;
  font-size: 15px;
  color: #fff;
  flex-wrap: 400;
}
@media screen and (max-width: 768px) {
  .index-sec3 .item__content p {
    font-size: 13px;
    line-height: 1.8;
  }
}
.index-sec3 .block2 {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .index-sec3 .block2 {
    gap: 20px;
    padding-bottom: 40px;
  }
}
.index-sec3 .block2 .ttl1 {
  margin-top: 50px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .index-sec3 .block2 .ttl1 {
    margin-top: 0;
  }
  .index-sec3 .block2 .ttl1 img {
    width: auto;
    height: 78px;
  }
}
.index-sec3 .block2 .box1 {
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  .index-sec3 .block2 .box1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}
.index-sec3 .block2 .box1 .img {
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .index-sec3 .block2 .box1 .img {
    width: 150px;
    padding: 0px;
  }
}
.index-sec3 .block2 .item {
  width: 100%;
  height: auto;
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .index-sec3 .block2 .item {
    margin-bottom: 10px;
  }
}
.index-sec3 .block2 .item:last-child {
  border-top: 0px solid #fff;
  padding-top: 0px;
  margin: 0px;
}
@media screen and (max-width: 768px) {
  .index-sec3 .block2 .item:last-child {
    margin: 0px;
  }
}
@media screen and (max-width: 768px) {
  .index-sec3 .block3 .ttl2 img {
    width: auto;
    height: 54px;
  }
}
.index-sec3 .block3 p {
  font-size: 14px;
  color: #fff;
  padding-top: 25px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .index-sec3 .block3 p {
    font-size: 12px;
    text-align: left;
    padding-top: 15px;
  }
}
.index-sec4 {
  text-align: center;
  padding-top: 50px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .index-sec4 .ttl1 img {
    width: auto;
    height: 61px;
  }
}
.index-sec4 .l-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .index-sec4 .l-content {
    padding-bottom: 0px;
  }
}
.index-sec4 p {
  font-size: 16px;
  color: #002762;
  font-weight: 400;
  line-height: 1.8;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .index-sec4 p {
    font-size: 14px;
    text-align: left;
    padding-top: 30px;
  }
}
.index-sec4 p strong {
  font-weight: 700;
}
.index-sec4 .ttl2 {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .index-sec4 .ttl2 {
    margin-top: 30px;
  }
  .index-sec4 .ttl2 img {
    width: 331px;
    height: auto;
  }
}
.index-sec4 .img {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .index-sec4 .img {
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 280px;
    margin: 0 auto;
    padding-top: 30px;
  }
  .index-sec4 .img img {
    width: 110px;
    height: auto;
  }
}
.index-sec4 .img .s1 {
  top: 100px;
  left: 0px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .index-sec4 .img .s1 {
    position: relative;
    top: auto;
    left: auto;
  }
}
.index-sec4 .img .s2 {
  right: 0;
  bottom: 0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .index-sec4 .img .s2 {
    position: relative;
    bottom: auto;
    right: auto;
  }
}
.index-sec5 {
  width: 100%;
  height: auto;
  background: #bfe0f5;
  padding: 90px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .index-sec5 {
    padding: 50px 0;
  }
  .index-sec5 h2 img {
    width: auto;
    height: 31px;
  }
}
.index-sec5 .box {
  width: 100%;
  height: auto;
  display: flex;
  gap: 20px;
  margin-top: 50px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .index-sec5 .box {
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.index-sec5 .box .item {
  width: calc(33.3333333333% - 13.3333333333px);
  height: auto;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  text-align: left;
  line-height: 1.6;
  color: #002762;
}
@media screen and (max-width: 768px) {
  .index-sec5 .box .item {
    width: 100%;
    max-width: 315px;
    padding: 25px;
    border-radius: 10px;
  }
}
.index-sec5 .box .item p {
  font-size: 15px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .index-sec5 .box .item p {
    font-size: 13px;
  }
}
.index-sec5 .box .item .ttl {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .index-sec5 .box .item .ttl {
    margin-top: 10px;
  }
  .index-sec5 .box .item .ttl img {
    width: 55px;
    height: auto;
  }
}
.index-sec5 .box .item .ttl span {
  font-size: 15px;
  font-weight: 400;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .index-sec5 .box .item .ttl span {
    font-size: 13px;
  }
}

.c-cta1 {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .c-cta1 {
    margin: 45px auto;
  }
  .c-cta1 p img {
    width: 240px;
    height: auto;
  }
}
.c-cta1 a {
  width: 100%;
  max-width: 420px;
  height: 80px;
  background: #ff7d1a;
  font-size: 28px;
  color: #fff;
  border-radius: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
  transition: ease-in-out 0.3s;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .c-cta1 a {
    margin-top: 12px;
    font-size: 16px;
    height: 50px;
    width: 90%;
    max-width: 290px;
  }
}
@media screen and (min-width: 769px) {
  .c-cta1 a:hover {
    opacity: 0.7;
  }
}

.c-modal01 {
  display: none;
}
.c-modal01.active {
  display: block;
  z-index: 99999;
  position: relative;
}
.c-modal01[aria-hidden=false] .c-modal01__wap {
  animation: mmfadeIn 0.3s;
}
.c-modal01[aria-hidden=false] .c-modal01__content {
  animation: mmslideIn 0.3s;
}
.c-modal01[aria-hidden=true] .c-modal01__wap {
  animation: mmfadeOut 0.3s;
  opacity: 0;
}
.c-modal01[aria-hidden=true] .c-modal01__content {
  animation: mmslideOut 0.3s;
}
.c-modal01__wap {
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}
.c-modal01__wap .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  cursor: pointer;
}
.c-modal01 .c-close {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 30px;
  height: 30px;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 400;
  z-index: 99;
  line-height: 1;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 880px) {
  .c-modal01 .c-close {
    top: -40px;
    right: 0px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 880px) and (max-width: 768px) {
  .c-modal01 .c-close {
    top: -30px;
    right: -18px;
  }
}
@media screen and (min-width: 769px) {
  .c-modal01 .c-close:hover {
    opacity: 0.5;
  }
}
.c-modal01__content {
  background: #fff;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0);
  position: relative;
  width: calc(100% - 40px);
  max-width: 780px;
  z-index: 999999;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .c-modal01__content {
    border-radius: 15px;
  }
}
.c-modal01__content .c-scroll {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  padding: 50px 50px 20px;
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-scroll {
    padding: 20px 20px 15px;
    padding-top: 60px;
  }
}
.c-modal01__content .c-item3 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-item3 {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.c-modal01__content .c-item3__img {
  width: 184px;
  height: auto;
}
.c-modal01__content .c-item3__content {
  width: calc(100% - 184px);
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-item3__content {
    padding-left: 0;
    width: 100%;
    padding-top: 15px;
  }
}
.c-modal01__content .c-item3__content .ttl {
  width: auto;
  display: inline-block;
  font-size: 92px;
  color: #ecf6ff;
  line-height: 1;
  font-family: var(--fonts03);
  position: absolute;
  top: -50px;
  right: -35px;
  pointer-events: none;
  font-weight: 400;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-item3__content .ttl {
    right: 0px;
    top: -58px;
    font-size: 60px;
  }
}
.c-modal01__content .c-item3__content h2 {
  color: #133282;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-item3__content h2 {
    font-size: 18px;
  }
}
.c-modal01__content .c-item3__content h3 {
  color: #133282;
  font-weight: 700;
  font-size: 15px;
  padding-top: 7px;
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-item3__content h3 {
    font-size: 14px;
  }
}
.c-modal01__content .c-item3__content h3 span {
  width: 100%;
  height: auto;
  display: block;
  color: #ff5394;
  font-size: 14px;
  font-family: var(--fonts03);
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-item3__content h3 span {
    font-size: 12px;
  }
}
.c-modal01__content .c-item3__content p {
  color: #133282;
  font-weight: 400;
  font-size: 15px;
  padding-bottom: 20px;
  padding-top: 3px;
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-item3__content p {
    font-size: 12px;
    padding-bottom: 10px;
  }
}
.c-modal01__content .c-item3__content .staff-content {
  padding-bottom: 20px;
  padding-top: 3px;
  color: #133282;
  font-weight: 400;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-item3__content .staff-content {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-item3__content .staff-content {
    font-size: 12px;
  }
}
.c-modal01__content .c-item3__content .staff-content p, .c-modal01__content .c-item3__content .staff-content address {
  color: #133282;
  font-weight: 400;
  font-size: 15px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .c-modal01__content .c-item3__content .staff-content p, .c-modal01__content .c-item3__content .staff-content address {
    font-size: 12px;
    padding: 0;
  }
}
.c-modal01__content .c-item3__content .staff-content p a, .c-modal01__content .c-item3__content .staff-content address a {
  color: #2c93dd;
}

/* modal */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 99999999;
}

@media (max-width: 640px) {
  .modal-container {
    padding: 0;
  }
}
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.-active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 900px;
}

@media (max-width: 640px) {
  .modal-body {
    width: 90%;
  }
}
@media (max-width: 640px) {
  .modal-content {
    padding: 0;
    width: 100%;
    border-radius: 3px;
    height: 75vh;
  }
}
.js-modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 44px;
  height: 44px;
  font-size: 2.5rem;
  z-index: 999999999;
  color: #fff;
  cursor: pointer;
  background: url(../images/card/close.png) no-repeat center;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .js-modal-close {
    right: -15px;
  }
}/*# sourceMappingURL=style.css.map */
@media screen and (min-width: 769px) {
    .c-btn02 .img img {
        width: 77px;
        clip-path: circle(39% at 49% 37%);
    }
    .taiken-ttl {
        background-color: #d7ecf6;
        font-size: 16px;
        padding: 3px;
        width: 175px;
        margin: 5px;
        text-align: center;
    }
    .taiken-list table {
        width: 100%;
        border-collapse: separate;
        border-radius: 6px;
        overflow: hidden;
        padding: 1px;
        position: relative;
        border-collapse: collapse;
        border-style: hidden;
        box-shadow: 0 0 0 1px #dbdbdb;
    }
    .taiken-list table td {
        border: 1px solid #dbdbdb;
        padding: 15px 10px;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        background-color: #fff;
    }

    .taiken-list-table-ttl {
        border-bottom: solid 2px #e2e2e2;
        font-size: 16px;
    }
    .taiken-list-table {
        border-bottom: solid 1px #e2e2e2;
    }
    .taiken-list-table td {
        padding: 3px 5px;
        font-size: 16px;
        vertical-align: middle;
    }
    .apply-btn-inner-taiken {
        display: block;
        width: 80%;
        background-color: #ff0000;
        color: #FFF;
        border-radius: 10px;
        line-height: 1.1;
        padding: 5px;
        transition: .3s;
    }
}
@media screen and (max-width: 769px) {
    .c-btn02 .img img {
        width: 17vw;
        clip-path: circle(39% at 49% 37%);
    }
    .taiken-ttl {
        background-color: #d7ecf6;
        width: 100%;
        margin: 3vw 0 1vw;
        text-align: center;
        font-size: 3vw;
      }
      .taiken-list table {
        border-collapse: collapse;
        border-spacing: 0;
    }
    .taiken-list-table-ttl {
        border-bottom: solid 2px #e2e2e2;
        font-size: 3vw;
      }
      
      .taiken-list-table-ttl td {
        text-align: center;
      }
      
      .taiken-list-table {
        border-bottom: solid 1px #e2e2e2;
      }
      
      .taiken-list-table td {
        padding: 1vw;
        font-size: 3vw;
        vertical-align: middle;
        text-align: center;
      }
      
      .taiken-list-table td p {
        text-align: center;
      }
      .apply-btn-inner-taiken {
        display: block;
        background-color: #ff0000;
        color: #FFF;
        border-radius: 10px;
        line-height: 1.1;
        padding: 1vw;
        transition: .3s;
        font-size: 2.4vw;
    }
}