@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,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  background: transparent;
}

article, nav, section, header, footer, aside, main {
  display: block;
}

* {
  box-sizing: border-box;
}

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

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

img {
  line-height: 0;
  border: none;
  max-width: 100%;
  height: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --header-height:70px;
  --header-height-fixed:70px;
  --header-height-sp:90px;
  --radius:30px;
  --shadow:0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
  --shadow-inset:0 0px 10px inset rgba(0, 0, 0, 0.2);
  --grd: linear-gradient(165deg, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255,255, .2) 80%, rgba(230,230,230, .2) 100%);
  --main-rgb:0,107,185; /*青*/
  --back-rgb:255,255,255; /*しろ*/
  --text-rgb:51,51,51; /*#333*/
  --link-rgb:240,108,20; /*オレンジ*/
  --red: 215,20,20; /*赤*/
  --news:7,162,94;
  --menu:255,100,12;
  --info:40,171,255;
  --face:9,85,173;
  --sched:211,22,90;
}

/*共通
---------------------------------------------------------------------*/
html {
  font-size: 14px;
}
@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}

.inner {
  width: 96%;
  margin: 0px auto;
  padding: 5%;
}
@media (max-width: 1023px) {
  .inner {
    max-width: 960px;
  }
}
@media (min-width: 1024px) {
  .inner {
    max-width: 1400px;
  }
}

/*body
---------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  background-color: #FFF;
  color: rgb(var(--text-rgb));
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDPGothic", Meiryo, sans-serif;
  overflow-wrap: break-word;
}

/*wrapper
---------------------------------------------------------------------*/
#WRAPPER {
  margin: 0px;
  padding: 0px;
  height: 100%;
  overflow-x: hidden;
  position: relative;
}

#overlay {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  background: rgba(var(--main-rgb), 0.8) url(../img/footer.webp) no-repeat center center;
  background-size: cover;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#overlay.open {
  opacity: 1;
  visibility: visible;
}

/*header
---------------------------------------------------------------------*/
#header {
  width: 100%;
  overflow: hidden;
  margin: 0 0 0 0;
  padding: 0px 0 0 0;
  z-index: 100;
  position: fixed;
  top: 0;
  transition: all 0.5s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  height: var(--header-height-sp);
}
@media (min-width: 1024px) {
  #header {
    height: var(--header-height);
  }
}
#header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  padding: 10px;
  position: relative;
  background-color: rgba(var(--main-rgb), 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 30;
}
@media (min-width: 1024px) {
  #header .header_inner {
    padding: 0px 0 0 5%;
  }
}
#header #headerlogo {
  transition: all 0.5s;
  margin: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1023px) {
  #header #headerlogo {
    max-width: 160px;
    flex-direction: column;
    gap: 5px;
  }
}
#header #headerlogo h1#logo {
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  #header #headerlogo img {
    max-width: 240px;
  }
}
#header #headerlogo #code_num {
  background-color: #FFF;
  padding: 5px 10px;
  border-radius: 3px;
  line-height: 1;
  color: rgb(var(--main-rgb));
}
#header #headerlogo #code_num small {
  font-size: 0.8rem;
  display: inline-block;
  margin-right: 0.25em;
}
#header.headerfixed {
  height: var(--header-height-fixed);
}
@media (max-width: 1023px) {
  #header.headerfixed {
    height: var(--header-height-sp);
  }
}
#header.headerfixed .header_inner {
  background-color: rgba(var(--main-rgb), 0.8);
}
#headernavi {
  display: flex;
  align-items: center;
  gap: 5%;
  z-index: 25;
}

.sns_icon {
  display: flex;
}
.sns_icon img {
  width: 60px;
}

#menu_btn {
  position: relative;
  cursor: pointer;
  padding: 0 0px;
  width: var(--header-height);
  height: var(--header-height);
  overflow: hidden;
  flex-shrink: 0;
  text-align: center;
  background: rgb(var(--back-rgb));
}
#menu_btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  height: 3px;
  background: rgb(var(--main-rgb));
  width: 40%;
}
#menu_btn span:nth-of-type(1) {
  top: 35%;
  left: 30%;
}
#menu_btn span:nth-of-type(2) {
  top: 49%;
  left: 20%;
}
#menu_btn span:nth-of-type(3) {
  top: 65%;
  left: 35%;
}
#menu_btn.active span:nth-of-type(1) {
  top: 38%;
  transform: translateY(6px) rotate(-135deg);
}
#menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}
#menu_btn.active span:nth-of-type(3) {
  top: 55%;
  left: 30%;
  transform: translateY(-6px) rotate(135deg);
}

.allmenu > div {
  padding: 0em 1em;
  color: rgb(var(--back-rgb));
}
.allmenu ul {
  margin: 0.5em 0 0 0.5em;
}
.allmenu ul li {
  margin-bottom: 0.5em;
}
.allmenu a {
  text-decoration: none;
  color: rgb(var(--back-rgb));
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.allmenu a:after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 2px 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .allmenu a:hover {
    color: rgb(var(--link-rgb));
  }
}

#mainnavi {
  background-color: rgba(var(--main-rgb), 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  z-index: 20;
  margin: 0;
  clear: both;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  left: 0;
  width: 100vw;
  top: 0%;
  padding: var(--header-height-sp) 0% 10%;
  height: 100dvh;
  transform: translate(0, 0);
}
@media (min-width: 1024px) {
  #mainnavi {
    left: 50%;
    width: 50%;
  }
}
#mainnavi.active {
  opacity: 1;
  visibility: visible;
}
#mainnavi .allmenu div {
  border-top: solid 1px rgba(var(--back-rgb), 0.5);
  padding: 0;
}
#mainnavi .allmenu div ul {
  margin: 0;
}
#mainnavi .allmenu div ul li {
  margin-bottom: 0em;
}
@media (min-width: 1024px) {
  #mainnavi .allmenu div ul {
    display: flex;
    flex-wrap: wrap;
  }
  #mainnavi .allmenu div ul li {
    width: 50%;
  }
  #mainnavi .allmenu div h2 {
    background-color: rgba(var(--back-rgb), 0.1);
  }
  #mainnavi .allmenu div h2.nav_home {
    display: none;
  }
}
#mainnavi .allmenu div h2, #mainnavi .allmenu div ul.nav_other {
  font-size: 1.2rem;
  font-weight: bold;
}
@media (max-width: 1023px) {
  #mainnavi .allmenu div h2:not(#menu_other) {
    position: relative;
  }
  #mainnavi .allmenu div h2:not(#menu_other)::before, #mainnavi .allmenu div h2:not(#menu_other)::after {
    content: "";
    position: absolute;
    background-color: currentColor;
    width: 15px;
    height: 2px;
    top: 50%;
    right: 0px;
    transform: translateX(-50%);
  }
  #mainnavi .allmenu div h2:not(#menu_other)::after {
    transform: rotate(-90deg);
    right: 7px;
  }
  #mainnavi .allmenu div h2:not(#menu_other).active::after {
    display: none;
  }
  #mainnavi .allmenu div ul:not(.nav_other) {
    display: none;
  }
}
#mainnavi .allmenu div ul.nav_other li:not(:last-child) {
  border-bottom: solid 1px rgba(var(--back-rgb), 0.5);
}
#mainnavi .allmenu div li a, #mainnavi .allmenu div h2:not(#menu_other) {
  padding: 0.5em;
}
@media (min-width: 1024px) {
  #mainnavi .allmenu div h2:not(.nav_home) {
    pointer-events: none;
  }
}

/*main
---------------------------------------------------------------------*/
#main {
  padding: 0px 0 0 0;
  position: relative;
  margin-top: var(--header-height-sp);
}
@media (min-width: 1024px) {
  #main {
    margin-top: var(--header-height);
  }
}

#main h1 {
  font-size: clamp(1.7777777778rem, 0.6066478741rem + 2.7484143763vw, 2.5rem);
  color: #FFF;
  position: relative;
  text-align: center;
  align-items: center;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 1em auto 1em;
}
#main h1 small {
  position: relative;
  display: block;
  padding: 0 0em 0 0;
  font-weight: normal;
  font-size: 1rem;
}

#body_top #topicpath {
  display: none;
}

#topicpath {
  padding: 0;
  font-size: 0.7rem;
  margin: 1em auto 1em;
}
#topicpath a {
  text-decoration: none;
}

/*sidecol
---------------------------------------------------------------------*/
#sidecol {
  background: url(../img/footer.webp) no-repeat center center;
  background-size: cover;
}
#sidecol h2 {
  display: none;
}

ul.linklist li {
  width: calc(25% - 1px);
}

#sidecol ul,
ul.linklist {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#sidecol ul li,
ul.linklist li {
  margin: 0 0 0 0;
  padding: 0;
  min-width: calc(25% - 1px);
}
@media (max-width: 1023px) {
  #sidecol ul li,
  ul.linklist li {
    width: auto;
    min-width: calc(50% - 1px);
    flex-grow: 2;
  }
}
#sidecol ul li a,
ul.linklist li a {
  text-decoration: none;
  color: rgb(var(--main-rgb));
  border: solid 1px rgb(var(--main-rgb));
  border-radius: 100px;
  padding: 0.5em;
  background: var(--grd) rgba(240, 240, 240, 0.8);
  display: flex;
  justify-content: center;
}
@media (hover: hover) {
  #sidecol ul li a:hover,
  ul.linklist li a:hover {
    color: rgb(var(--link-rgb));
  }
}

/*footer
---------------------------------------------------------------------*/
#footer {
  margin: 0px;
  padding: 0;
  position: relative;
  color: #FFF;
  background-color: rgb(var(--main-rgb));
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
#footer address {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  max-width: 240px;
  flex-shrink: 0;
  margin: 0 auto;
}
#footer .footerlogo {
  width: 60%;
}
#footer #copyright {
  font-size: 0.8rem;
  margin: 0;
}
@media (min-width: 1024px) {
  #footer .allmenu {
    font-size: 90%;
    display: flex;
    justify-content: space-around;
  }
  #footer .allmenu > div {
    padding: 0em 1em;
    flex-grow: 2;
    color: rgb(var(--back-rgb));
  }
  #footer .allmenu div {
    border-right: solid 1px rgba(var(--back-rgb), 0.5);
    order: 2;
  }
  #footer .allmenu div.menu_other {
    order: 1;
    border-left: solid 1px rgba(var(--back-rgb), 0.5);
  }
  #footer .allmenu h2 {
    font-size: 1em;
  }
  #footer .allmenu ul {
    font-size: 80%;
  }
}
@media (max-width: 1023px) {
  #footer .inner {
    flex-direction: column;
  }
  #footer address {
    width: 100%;
  }
  #footer #footernavi.allmenu {
    display: none;
  }
}

/*common
---------------------------------------------------------------------*/
#maincol {
  z-index: 10;
  position: relative;
  padding: 0px 0 0 0;
}

#maincol article {
  margin: 0 0;
  position: relative;
  padding: 0;
}
#maincol article h2 {
  font-size: clamp(1.7777777778rem, 1.2372562838rem + 1.2684989429vw, 2.1111111111rem);
  margin: 1.25em 0 1em 0;
  padding: 0 0 10px;
  color: rgb(var(--main-rgb));
  line-height: 1.2;
  position: relative;
}
#maincol article h2:first-child {
  margin-top: 0;
}
#maincol article h2 span {
  display: inline-block;
}
#maincol article h2 small {
  display: inline-block;
  font-size: 1rem;
}
#maincol article h2::before {
  content: "";
  height: 6px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, currentColor 5px, currentColor 6px);
}
#maincol article h3 {
  font-size: clamp(1.3333333333rem, 0.7928118393rem + 1.2684989429vw, 1.6666666667rem);
  margin: 1.5em 0 0.5em;
  padding: 0 0 0;
  color: rgba(var(--main-rgb));
  position: relative;
}
#maincol article h4 {
  font-size: 1.15em;
  margin: 1em 0 0.75em;
  padding: 0 0 0;
}

p {
  margin: 0 0 1em;
}

.serif {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.margin_top {
  margin-top: 50px !important;
}

.center {
  text-align: center !important;
}

.txtleft {
  text-align: left !important;
}

.txtright {
  text-align: right !important;
}

.small {
  font-size: 80%;
}

.large {
  font-size: 120%;
}

.widthmax {
  width: 100%;
}

strong {
  font-weight: bold;
  font-size: 110%;
}

em, .red {
  color: rgb(var(--red));
}

.u_line {
  background: linear-gradient(transparent 60%, rgba(255, 240, 0, 0.5) 60%) no-repeat;
}

.border {
  border: 1px solid rgba(var(--main-rgb), 1);
}

.box {
  background: rgba(var(--back-rgb), 0.1) var(--grd);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5%;
}
.box > *:first-child {
  margin-top: 0 !important;
}
.box > *:last-child {
  margin-bottom: 0 !important;
}

a {
  color: rgb(var(--link-rgb));
  transition: ease 0.2s;
}
a img {
  transition: ease 0.2s;
}
@media (hover: hover) {
  a:hover {
    color: rgb(var(--main-rgb));
  }
  a:hover img {
    opacity: 0.8;
  }
}

.linkbtn {
  line-height: 0.1;
}

.linkbtn a {
  text-decoration: none;
  line-height: 1.2;
  display: inline-block;
  text-align: center;
  position: relative;
  padding: 0.75em 1.5em;
  color: rgb(var(--back-rgb));
  border: solid 2px rgb(var(--main-rgb));
  background-color: rgb(var(--main-rgb));
  border-radius: 100px;
  min-width: 40%;
  z-index: 2;
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-inset);
}
@media (hover: hover) {
  .linkbtn a:hover {
    color: rgb(var(--main-rgb));
  }
  .linkbtn a::before {
    position: absolute;
    z-index: -1;
    display: block;
    content: "";
    box-sizing: border-box;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
  }
  .linkbtn a::before {
    top: 0;
    left: calc(-100% + 1em);
    width: 100%;
    height: 100%;
    background: rgba(var(--back-rgb), 1);
    box-shadow: var(--shadow-inset);
    border-radius: 100px;
  }
  .linkbtn a:hover::before {
    left: 0;
  }
}

a.pdf::after,
a.doc::after,
a.xls::after {
  display: inline-block;
  content: "";
  border-radius: 20px;
  font-size: 70%;
  padding: 3px 8px;
  line-height: 1;
  margin-left: 0.2em;
  background-color: #FFF;
  border: solid 1px #000;
}

a.pdf {
  position: relative;
}
a.pdf::after {
  content: "PDF";
  border-color: red;
  color: red;
}

a.doc {
  position: relative;
}
a.doc::after {
  content: "Word";
  border-color: blue;
  color: blue;
}

a.xls {
  position: relative;
}
a.xls::after {
  content: "Excel";
  border-color: green;
  color: green;
}

#main a.blank:not(a:has(img)) {
  position: relative;
}
#main a.blank:not(a:has(img))::after {
  content: "　";
  display: inline-block;
  margin: 0 5px;
  width: 14px;
  background-image: url("../img/blank.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}

.chui {
  text-indent: -1em;
  padding-left: 1em;
}

ul.ul_default {
  list-style: none;
  margin: 0 0 1em;
  padding: 0 0 0 0em;
}
ul.ul_default li {
  margin: 0 0 0.5em;
  padding: 0 0 0 1em;
  position: relative;
}
ul.ul_default li:before {
  content: "";
  height: 0.5em;
  width: 0.5em;
  border-radius: var(--radius);
  background-color: rgb(var(--main-rgb));
  position: absolute;
  top: 0.5em;
  left: 0;
}

ul.photolist {
  list-style: none;
  margin: 0 0;
  padding: 0 0 0 0em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.photolist li {
  margin: 0 1% 0.5em;
  padding: 0 0 0 0;
  width: 30%;
  position: relative;
}
@media (max-width: 1023px) {
  ul.photolist li {
    width: 48%;
  }
}

ol.num {
  list-style: none;
  counter-reset: number;
  margin: 0;
  padding: 0;
}
ol.num li {
  position: relative;
  padding-left: 1.75em;
  margin: 0 0 0.5em;
  display: flex;
}
ol.num li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  text-align: center;
  line-height: 1;
  background-color: rgb(var(--main-rgb));
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

table.default {
  border-collapse: collapse;
  min-width: 50%;
  margin: 0 0 15px;
  border-top: solid 1px rgba(var(--main-rgb), 1);
}
table.default tr {
  border-bottom: solid 1px rgba(var(--main-rgb), 1);
}
table.default th, table.default td {
  padding: 0.5em 1em;
  font-weight: normal;
  background-color: rgb(255, 255, 255);
  text-align: left;
}
table.default th {
  font-weight: bold;
}
table.default thead th {
  text-align: center;
}
table.hyo {
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 15px;
  background-color: rgb(255, 255, 255);
  border: solid 4px rgba(var(--main-rgb), 1);
}
@media (max-width: 1023px) {
  table.hyo {
    font-size: 90%;
  }
}
table.hyo th, table.hyo td {
  padding: 0.5em;
  font-weight: normal;
  text-align: left;
  border-bottom: solid 1px rgba(var(--main-rgb), 1);
  border-right: solid 1px rgba(var(--main-rgb), 1);
}
table.hyo th {
  background-color: rgba(var(--main-rgb), 0.8);
  font-weight: bold;
  color: #FFF;
}
table.hyo thead th {
  background-color: rgba(var(--main-rgb), 1);
  text-align: center;
}
table.hyo thead th:not(:last-child) {
  border-right: solid 1px #FFF;
}
.yososhi td img {
  width: 90%;
  max-width: 120px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .tate {
    writing-mode: vertical-lr;
  }
  .tate th, .tate td {
    writing-mode: horizontal-tb;
  }
  .tate th, .tate td {
    writing-mode: horizontal-tb;
  }
  .tate.hyo th {
    border-right: solid 0px #FFF;
    border-bottom: solid 1px #FFF;
  }
}
@media (max-width: 1023px) {
  table.cellblock tr {
    display: block;
    margin-bottom: 3px;
  }
  table.cellblock th, table.cellblock td {
    display: block;
    padding: 0.5em;
  }
  table.cellblock.hyo {
    font-size: 1rem;
  }
  .scroll {
    overflow: auto;
    margin: 0 0 2em;
  }
  .scroll table {
    position: relative;
    width: auto;
  }
  .scroll th, .scroll td {
    white-space: nowrap;
  }
}
dl.dl_default div {
  margin: 0 0 1em 0em;
}
dl.dl_default dt {
  margin: 0 0 0.5em;
  padding: 0 0 0;
  position: relative;
  font-weight: bold;
  font-size: clamp(1.0555555556rem, 0.6051209772rem + 1.0570824524vw, 1.3333333333rem);
}
dl.dl_default dd {
  margin: 0 0 1em 2em;
}

dl.whatsnew div {
  margin: 0 0 1em 0em;
  display: flex;
  gap: 0.5em;
}
dl.whatsnew dt {
  margin: 0 0 0.5em;
  padding: 0 0 0;
}
dl.whatsnew dd {
  margin: 0 0;
}

/*選手紹介*/
.players {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  justify-content: space-around;
}
.players li {
  width: 20%;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1023px) {
  .players li {
    width: 45%;
  }
}
.players a {
  display: block;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  position: relative;
}
.players .thumb_img {
  overflow: hidden;
  display: block;
}
.players .thumb_img img {
  display: block;
  margin: auto;
  max-width: 100%;
  object-fit: contain;
  transition: 0.5s;
  transform: scale(1);
}
.players a:hover .thumb_img img {
  transform: scale(1.05);
}
.players p.senshu {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 10px 10px;
  height: 30%;
  width: 100%;
  background: rgba(var(--text-rgb), 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFF;
}
.players span, .players small, .players strong {
  display: inline-block;
}
.players .namae {
  display: block;
  font-size: 1.2em;
}
.players .kana {
  font-size: 0.8rem;
}
.players .ki {
  position: absolute;
  top: -1em;
  right: -1em;
  background-color: rgb(var(--main-rgb));
  color: #FFF;
  font-weight: bold;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.players .assen {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF;
  background-color: rgb(var(--sched));
  border-radius: var(--radius);
  padding: 5px;
  margin: 0.5em 0;
  position: relative;
}
.players .assen:before {
  position: absolute;
  top: -0.8em;
  content: "";
  background: rgb(var(--sched));
  height: calc(tan(60deg) * 1em / 2);
  width: 1em;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/*お知らせ*/
.race_info {
  list-style: none;
  margin: 0 0 3em 0;
  padding: 0;
}
.race_info li {
  margin: 0;
  padding: 0;
}
.race_info a {
  text-decoration: none;
  display: flex;
  gap: 2%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  color: rgb(var(--text-rgb));
}
@media (hover: hover) {
  .race_info a:hover {
    color: rgb(var(--link-rgb));
  }
}
.race_info .item_image {
  width: 20%;
  max-width: 240px;
  flex-shrink: 0;
}
.race_info .item_date {
  display: block;
  color: #999;
}
.race_info .item_title {
  flex-grow: 2;
}
#body_top #news .race_info a {
  color: rgb(var(--back-rgb));
}
@media (hover: hover) {
  #body_top #news .race_info a:hover {
    color: rgb(var(--link-rgb));
  }
}
#body_top #news .race_info .item_date {
  color: currentColor;
}

#race_info_contents .news_html {
  margin-bottom: 3em;
}
@media screen and (min-width: 1024px) {
  #race_info_contents .race_info {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }
  #race_info_contents .race_info li {
    width: 30%;
    margin-bottom: 2em;
  }
  #race_info_contents .race_info a {
    background: rgba(var(--back-rgb), 0.1) var(--grd);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 5%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    color: rgb(var(--text-rgb));
  }
}
@media screen and (min-width: 1024px) and (hover: hover) {
  #race_info_contents .race_info a:hover {
    color: rgb(var(--link-rgb));
  }
  #race_info_contents .race_info a:hover img {
    transform: scale(1.05);
  }
}
@media screen and (min-width: 1024px) {
  #race_info_contents .race_info .item_image {
    width: 100%;
    max-width: 100%;
  }
  #race_info_contents .race_info .item_image img {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
  }
}

/*TOPページ*/
#body_top #topmainslide {
  padding: 0;
  margin: 0;
  position: relative;
}
#body_top #topmainslide #mainswiper {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  line-height: 0.1;
}
#body_top #topmainslide #mainswiper .slide-img {
  height: 100%;
  width: auto;
}
#body_top #topmainslide #mainswiper .slide-img img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: 50% 50%;
}
#body_top #topmainslide .top_flex {
  position: relative;
  z-index: 10;
}
#body_top #topmainslide article {
  background-color: transparent !important;
}
#body_top #topmainslide article::before {
  display: none !important;
}

@media (min-width: 1024px) {
  #body_top #maincol .top_flex {
    display: flex;
    flex-wrap: wrap;
  }
  #body_top #maincol .top_flex article {
    width: 50%;
    display: flex;
  }
  #body_top #maincol .top_flex .inner {
    max-width: 960px;
    padding: 5% 10%;
    flex-grow: 2;
  }
  #body_top #maincol .top_flex article:nth-of-type(2n) .inner {
    margin-left: 0 !important;
  }
  #body_top #maincol .top_flex article:nth-of-type(2n+1) .inner {
    margin-right: 0 !important;
  }
}
#body_top article,
body:not(#body_top) .topmainimage {
  background-color: rgb(var(--main-rgb));
  padding: 20px 0 20px;
}
#body_top article::before,
body:not(#body_top) .topmainimage::before {
  content: "";
  height: 20px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(var(--back-rgb), 1) 10px, rgba(var(--back-rgb), 1) 11px);
}
#body_top article .linkbtn a,
body:not(#body_top) .topmainimage .linkbtn a {
  border: solid 2px #FFF;
  background-color: #FFF;
}
@media (hover: hover) {
  #body_top article .linkbtn a:hover,
  body:not(#body_top) .topmainimage .linkbtn a:hover {
    color: #FFF !important;
  }
}
#body_top article#news,
body:not(#body_top) .topmainimage#news {
  background-color: rgb(var(--news));
}
#body_top article#news .linkbtn a,
body:not(#body_top) .topmainimage#news .linkbtn a {
  color: rgb(var(--news));
}
#body_top article#news .linkbtn a::before,
body:not(#body_top) .topmainimage#news .linkbtn a::before {
  background-color: rgb(var(--news));
}
#body_top article#menu,
body:not(#body_top) .topmainimage#menu {
  background-color: rgb(var(--menu));
}
#body_top article#menu .linkbtn a,
body:not(#body_top) .topmainimage#menu .linkbtn a {
  color: rgb(var(--menu));
}
#body_top article#menu .linkbtn a::before,
body:not(#body_top) .topmainimage#menu .linkbtn a::before {
  background-color: rgb(var(--menu));
}
#body_top article#info,
body:not(#body_top) .topmainimage#info {
  background-color: rgb(var(--info));
}
#body_top article#info .linkbtn a,
body:not(#body_top) .topmainimage#info .linkbtn a {
  color: rgb(var(--info));
}
#body_top article#info .linkbtn a::before,
body:not(#body_top) .topmainimage#info .linkbtn a::before {
  background-color: rgb(var(--info));
}
#body_top article#face,
body:not(#body_top) .topmainimage#face {
  background-color: rgb(var(--face));
}
#body_top article#face .linkbtn a,
body:not(#body_top) .topmainimage#face .linkbtn a {
  color: rgb(var(--face));
}
#body_top article#face .linkbtn a::before,
body:not(#body_top) .topmainimage#face .linkbtn a::before {
  background-color: rgb(var(--face));
}
#body_top article#sched,
body:not(#body_top) .topmainimage#sched {
  background-color: rgb(var(--sched));
}
#body_top article#sched .linkbtn a,
body:not(#body_top) .topmainimage#sched .linkbtn a {
  color: rgb(var(--sched));
}
#body_top article#sched .linkbtn a::before,
body:not(#body_top) .topmainimage#sched .linkbtn a::before {
  background-color: rgb(var(--sched));
}

.menu_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.menu_list li {
  margin: 0 0 5%;
  padding: 0;
  width: 30%;
}
.menu_list li a {
  background: rgba(var(--back-rgb), 0.8) var(--grd);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.menu_list li img {
  line-height: 0.1;
}
@media (hover: hover) {
  .menu_list li a:hover img {
    opacity: 1;
    transform: scale(1.05);
  }
}

#face .box {
  display: flex;
}
#face iframe {
  margin: auto;
  height: 500px;
}
@media (min-width: 1024px) {
  #face iframe {
    width: 510px;
  }
}

#sched .box {
  background: rgba(var(--back-rgb), 0.3) var(--grd);
  margin-bottom: 5%;
}
#sched .box table {
  background-color: rgba(var(--back-rgb), 1);
}

/*インフォメーション
-------------------------------------------------------------*/
@media (max-width: 1023px) {
  #body_top article#info .inner {
    padding: 5% 0% !important;
  }
}
#infoswiper .swiper_inner {
  position: relative;
  margin: 0 50px 0px;
  padding: 0px 0px 0px;
}
@media (min-width: 1024px) {
  #infoswiper .swiper-wrapper {
    min-height: 500px;
  }
}
#infoswiper .swiper-wrapper .swiper-slide {
  height: auto;
}
#infoswiper .swiper-wrapper h3 {
  margin: 0 0 0.5em;
}
#infoswiper .top_swiper_nav {
  margin: -50px -55px 0;
}
#infoswiper .swiper-pagination {
  position: relative;
  margin: 40px 0px 0;
}
#infoswiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
}

.top_swiper_nav {
  margin: 0;
  padding: 20px;
  color: #000;
  background: rgba(var(--back-rgb), 0.5) var(--grd);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.2s linear;
}

.swiper-button-prev {
  transform: rotate(180deg);
}

.top_swiper_nav:before,
.top_swiper_nav:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.2s linear;
}

.top_swiper_nav:after {
  border-top: solid 2px rgb(var(--main-rgb));
  border-right: solid 2px rgb(var(--main-rgb));
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.top_swiper_nav:hover {
  background: rgba(var(--back-rgb), 0.8) var(--grd);
}

/*バナー
-------------------------------------------------------------*/
#top_banner {
  background: url(../img/footer.webp) no-repeat center center;
  background-size: cover;
  aspect-ratio: 5.5/2;
}

#banner_list {
  padding: 30px 0 50px;
}
#banner_list nav {
  position: relative;
}
#banner_list .swiper_inner {
  padding: 5px;
  background: var(--grd);
  overflow: hidden;
}
#banner_list ul.swiper-wrapper {
  align-items: center;
}
#banner_list ul.swiper-wrapper li {
  height: auto;
  width: auto;
  text-align: center;
  line-height: 0.1;
}
#banner_list ul.swiper-wrapper img {
  max-height: 80px;
}
#banner_list .banner_swiper_nav_wrap {
  position: absolute;
  display: flex;
  bottom: 0px;
  left: 0;
  justify-content: center;
  width: 100%;
}
#banner_list .top_swiper_nav {
  position: relative;
}
#banner_list .swiper-button-prev {
  margin-right: 40px;
}

/*フォーム
-------------------------------------------------------------*/
.form {
  margin: 0 auto 1em;
  background-color: rgba(var(--info), 0.3);
  max-width: 960px;
}
.form .kikan {
  padding: 0.5em;
  color: rgba(var(--sched), 1);
  border: solid 1px rgba(var(--sched), 1);
  background-color: #FFF;
}
.form div {
  margin: 0px 0 2em;
  position: relative;
}
.form dt {
  font-weight: bold;
  margin: 0 0 0.5em 0px;
}
.form dd {
  margin: 0 0 0px;
}
.form.check dd {
  background-color: rgba(var(--back-rgb), 1);
  border-radius: 5px;
  padding: 0.5em;
}
.form .any:before,
.form .req:before {
  content: "";
  color: rgb(var(--back-rgb));
  font-weight: normal;
  font-size: 70%;
  border-radius: 20px;
  padding: 3px 2px 2px;
  display: inline-block;
  text-align: center;
  margin-right: 0.5em;
  width: auto;
  min-width: 3em;
}
.form .any:before {
  background-color: rgb(var(--main-rgb));
  content: "任意";
}
.form .req:before {
  background-color: rgb(var(--red));
  content: "必須";
}
.form .hiragana {
  width: 100%;
}
.form .numeric {
  width: 12em;
}

[class$=_error] {
  color: rgb(var(--red));
  display: block;
  font-size: small;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=search],
input[type=url],
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 16px;
  border: solid 0px rgb(150, 150, 150);
  border-radius: 5px;
  padding: 0.5em;
  background-color: #FFF;
  box-sizing: border-box;
  margin-bottom: 0.5em;
}

textarea {
  width: 100%;
  height: 10em;
}

input::placeholder {
  font-size: 0.8rem;
}

input[type=checkbox],
input[type=radio] {
  transform: scale(1.5);
  margin: 0 0.75em 0.75em 0.5em;
  accent-color: red;
}

button {
  border: 0;
}

select {
  font-size: 16px;
  padding: 0.5em;
  background-color: rgb(225, 225, 225);
  border-radius: 5px;
}

.submitbtn {
  font-size: clamp(1rem, 0.459478506rem + 1.2684989429vw, 1.3333333333rem);
  background-color: rgba(var(--main-rgb), 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  border-radius: 5px;
  color: #FFF;
  padding: 0.5em 1em;
}
.submitbtn.shusei {
  background-color: rgb(150, 150, 150);
}
.submitbtn.zipbutton {
  font-size: 0.8rem;
}
@media (hover: hover) {
  .submitbtn:hover {
    background-color: rgb(var(--link-rgb));
    cursor: pointer;
  }
}

#step {
  list-style: none;
  margin: 20px auto;
  padding: 0;
  display: flex;
  position: relative;
  text-align: center;
  counter-reset: counter;
}
#step li {
  font-size: 12px;
  position: relative;
  width: 33.333%;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 0px;
  padding: 0 0;
}
#step span {
  display: inline-block;
  text-align: center;
}
#step li:before {
  content: counter(counter);
  counter-increment: counter;
  background: rgb(181, 181, 181);
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  color: #ffffff;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
  line-height: 36px;
  z-index: 2;
}
#step li:not(:last-child):after {
  background: rgb(181, 181, 181);
  content: "";
  width: calc(100% - 0px);
  height: 2px;
  position: absolute;
  right: calc(-50% + 0px);
  top: 18px;
  z-index: 1;
  display: block;
}
#step li.current {
  color: rgba(var(--sched), 1);
}
#step li.current:before,
#step li.current:after {
  background-color: rgba(var(--sched), 1);
}

/* 緊急情報*/
#caution1.warning {
  position: relative;
  z-index: 10;
  margin: 0px auto;
  padding: 5% 5% 0;
}
#caution1.warning .box {
  background: rgba(var(--back-rgb), 0.5) var(--grd);
}
#caution1.warning h2 {
  font-size: clamp(1.3333333333rem, 0.7928118393rem + 1.2684989429vw, 1.6666666667rem);
  display: flex;
  justify-content: center;
  color: rgba(var(--red), 1);
  margin: 0 0 0.5em;
}
#caution1.warning .caution_date {
  text-align: right;
}

/**/
.iframe {
  margin: 0px auto 30px;
}
.iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 720px;
  display: block;
  margin: auto;
}
.iframe iframe.gmap {
  max-width: 100%;
}

@media (max-width: 1023px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
@media (min-width: 1024px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .flex_box {
    display: flex;
    justify-content: space-around;
    gap: 2%;
  }
}
@media print {
  footer, #sidecol, #topicpath {
    display: none;
  }
}

/*# sourceMappingURL=base.css.map */
