@charset "UTF-8";
/*
|---------------------------------------------------------------
| search-players 2026 CSS
|---------------------------------------------------------------
*/
:root {
  --cp-header-height: var(--sp-header-height, 80px);
  --cp-container-maxwidth: 1140px;
  --cp-container-padding-x: 10px;
  --cp-color-foreground: #000000;
  --cp-color-background: #ffffff;
  --cp-color-primary: #1d70b8;
  --cp-transition-colors: color 0.15s, background-color 0.15s, border-color 0.15s;
  --cp-form-field-bgcolor: #ffffff;
  --cp-form-field-color: var(--cp-color-foreground);
  --cp-form-field-border-color: #d1d5db;
}
@media (min-width: 750.02px) {
  :root {
    --cp-header-height: var(--pc-header-height, 160px);
  }
}

/* reset */
.container .pane-main {
  padding: 0;
}

.searchPlayers {
  display: block;
  width: 100%;
}
.searchPlayers *[id] {
  scroll-margin-top: calc(var(--cp-header-height) + 15px);
}
.searchPlayers__breadcrumbs {
  display: block;
  width: 100%;
  margin: 0;
}
.searchPlayers__header {
  display: block;
  width: 100%;
  margin: 0 0 clamp(15px, 4vw, 30px);
}
.searchPlayers__body {
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", Hiragino Kaku Gothic ProN, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, 游ゴシック Medium, Yu Gothic Medium, YuGothic, 游ゴシック体, 游ゴシック, sans-serif;
}

.searchPlayers-container {
  display: block;
  width: 100%;
  max-width: calc(var(--cp-container-maxwidth) + var(--cp-container-padding-x) * 2);
  margin: 0 auto;
  padding: 0 var(--cp-container-padding-x);
}

.searchPlayers-loading {
  text-align: center;
  margin: 1.5em 0;
}

.searchPlayers-none {
  display: block;
  text-align: center;
  margin: 1.5em 0;
  color: #9ca3af;
}

/*
 * Breadcrumb
------------------------------------------------*/
.searchPlayers-breadcrumb {
  list-style: none;
  padding: 1em 0;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5em;
  font-size: clamp(12px, 1.6vw, 15px);
}
.searchPlayers-breadcrumb__item {
  flex: 0 0 auto;
  max-width: 100%;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.searchPlayers-breadcrumb__item + .searchPlayers-breadcrumb__item::before {
  content: ">";
}
.searchPlayers-breadcrumb a {
  color: #202945;
}

/*
 * Title
------------------------------------------------*/
.searchPlayers-title {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #002449;
}
@media (min-width: 750.02px) {
  .searchPlayers-title {
    font-size: 40px;
    font-size: min(40px, 3.33vw);
  }
}

/*
 * App
------------------------------------------------*/
.searchPlayers-app {
  display: block;
  width: 100%;
}
.searchPlayers-app__search {
  display: block;
  width: 100%;
  margin: 0 0 clamp(20px, 5.33vw, 60px);
}
.searchPlayers-app__result {
  --cp-container-maxwidth: 1165px;
  display: block;
  width: 100%;
  margin: 0 0 clamp(20px, 5.33vw, 60px);
}
@media (max-width: 750px) {
  .searchPlayers-app__result {
    --cp-container-padding-x: 0px;
  }
}

.searchPlayers-app[x-cloak] {
  display: none;
}

/*
 * Search
------------------------------------------------*/
.spapp-search {
  display: block;
  width: 100%;
  margin: 0 0 20px;
}

.spapp-search-btn {
  --btn-bgcolor: #1B6DB8;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none !important;
  border: 0;
  display: block;
  width: 14.86em;
  height: auto;
  padding: 1em 1em;
  border-radius: 8.5em;
  overflow: hidden;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #ffffff !important;
  background: var(--btn-bgcolor) !important;
  transition: var(--cp-transition-colors);
}
.spapp-search-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.spapp-search-btn:not(:disabled) {
  cursor: pointer;
}
.spapp-search-btn:not(:disabled):hover {
  background: color-mix(in srgb, var(--btn-bgcolor), #000000 15%) !important;
}

/*
 * Modal
------------------------------------------------*/
.spapp-modal {
  width: 100%;
  height: 100%;
  height: 100dvh;
  padding: 15px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 3.2vw, 16px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1005;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.spapp-modal__content {
  width: 100%;
  max-width: 512px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  overflow: hidden;
}
.spapp-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5em;
  color: #ffffff;
  background: var(--cp-color-primary);
}
.spapp-modal__body {
  width: 100%;
  padding: 1.5em;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--cp-color-foreground);
  background: var(--cp-color-background);
}
.spapp-modal__footer {
  width: 100%;
  padding: 1.5em;
  display: flex;
  gap: 1em;
  color: var(--cp-color-foreground);
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.spapp-modal-title {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
}

.spapp-modal-close {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  margin: 0;
  padding: 0;
}

.spapp-modal-btn {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  border: 0;
  color: inherit;
  margin: 0;
  padding: 1em 0.5em;
  font-size: 1em;
  font-weight: 700;
  border-radius: 0.75em;
  color: var(--cp-btn-color, #000000);
  background: var(--cp-btn-bgcolor, transparent);
  transition: var(--cp-transition-colors);
  cursor: pointer;
}
.spapp-modal-btn:hover {
  color: var(--cp-btn-hover-color, var(--cp-btn-color, #000000));
  background: var(--cp-btn-hover-bgcolor, color-mix(in srgb, var(--cp-btn-bgcolor, transparent), #000000 15%));
}
.spapp-modal-btn--primary {
  --cp-btn-color: #ffffff;
  --cp-btn-bgcolor: var(--cp-color-primary);
  flex: 2;
}
.spapp-modal-btn--secondary {
  --cp-btn-color: #6b7280;
  --cp-btn-bgcolor: transparent;
  --cp-btn-hover-color: color-mix(in srgb, var(--cp-btn-color, transparent), #000000 15%);
  --cp-btn-hover-bgcolor: transparent;
  flex: 1;
}

.spapp-search-fields {
  --cp-gap-y: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--cp-gap-y) 0;
}

.spapp-search-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: calc(var(--cp-gap-y) / 3) 0;
}
.spapp-search-field__head {
  display: block;
  width: 100%;
  color: #374151;
  font-size: 0.9em;
  font-weight: 700;
}
.spapp-search-field__body {
  display: block;
  width: 100%;
}

.spapp-search-choices {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.spapp-search-choice {
  --cp-choice-bgcolor: var(--cp-form-field-bgcolor);
  --cp-choice-border-color: var(--cp-form-field-border-color);
  --cp-choice-color: var(--cp-form-field-color);
  display: block;
  width: 100%;
  padding: 0.75em 0.75em;
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
  background-color: var(--cp-choice-bgcolor);
  color: var(--cp-choice-color);
  border-color: var(--cp-choice-border-color);
  border-width: 1px;
  border-style: solid;
  border-radius: 0.75em;
  cursor: pointer;
  transition: var(--cp-transition-colors);
}
.spapp-search-choice.is-active {
  --cp-choice-bgcolor: #2563eb;
  --cp-choice-border-color: #2563eb;
  --cp-choice-color: #ffffff;
}
.spapp-search-choice:hover {
  --cp-choice-border-color: #60a5fa;
}

input.spapp-search-input,
select.spapp-search-select {
  width: 100%;
  height: auto;
  padding: 0.75em 0.75em;
  background-color: var(--cp-form-field-bgcolor);
  color: var(--cp-form-field-color);
  border-color: var(--cp-form-field-border-color);
  border-width: 1px;
  border-style: solid;
  border-radius: 0.75em;
  font-size: max(16px, 1em);
}
input.spapp-search-input:hover,
select.spapp-search-select:hover {
  background-color: var(--cp-form-field-bgcolor);
  color: var(--cp-form-field-color);
  border-color: var(--cp-form-field-border-color);
}
input.spapp-search-input:focus,
select.spapp-search-select:focus {
  box-shadow: 0 0 0 2px #3b82f6;
}

select.spapp-search-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: auto;
  padding: 0.75em 0.75em;
  background-color: var(--cp-form-field-bgcolor);
  color: var(--cp-form-field-color);
  border-color: var(--cp-form-field-border-color);
  border-width: 1px;
  border-style: solid;
  border-radius: 0.75em;
}
select.spapp-search-select:not(:disabled) {
  background-size: 0.75em 0.75em;
  background-position: right 0.5em center;
  background-repeat: no-repeat;
}
select.spapp-search-select:not(:disabled) {
  /* Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc. */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNMjAxLjQgMzc0LjZjMTIuNSAxMi41IDMyLjggMTIuNSA0NS4zIDBsMTYwLTE2MGMxMi41LTEyLjUgMTIuNS0zMi44IDAtNDUuM3MtMzIuOC0xMi41LTQ1LjMgMEwyMjQgMzA2LjcgODYuNiAxNjkuNGMtMTIuNS0xMi41LTMyLjgtMTIuNS00NS4zIDBzLTEyLjUgMzIuOCAwIDQ1LjNsMTYwIDE2MHoiLz48L3N2Zz4=");
}

/*
 * Filter
------------------------------------------------*/
.spapp-filter {
  width: 100%;
  max-width: 22.1875em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  border: 1px solid rgba(0, 0, 0, 0.6);
  padding: 1em 0.5em;
  margin: 0 auto 20px;
  font-size: 16px;
  color: var(--cp-color-foreground);
  background: var(--cp-color-background);
}
.spapp-filter__head {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
}
.spapp-filter__body {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.spapp-filter__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.33em;
  font-size: max(11px, 0.75em);
}
.spapp-filter__list__item {
  display: block;
  margin: 0;
}

.spapp-filter-none {
  display: block;
  color: #9ca3af;
  font-style: italic;
  text-align: center;
  font-size: 1em;
}

.spapp-filter-label {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  padding: 0.5em 1em;
  color: var(--cp-color-foreground);
  background: var(--cp-color-background);
  font-size: 1em;
  line-height: 1.25;
  border: 1px solid #D9D9D9;
  border-radius: 10em;
  overflow: hidden;
}
.spapp-filter-label__text {
  display: block;
  font-style: normal;
}
.spapp-filter-label__closer {
  display: block;
  font-style: normal;
  cursor: pointer;
}

/*
 * Player
------------------------------------------------*/
.spapp-players {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
  gap: 20px;
}

.spapp-player {
  container-type: inline-size;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 11fr);
  grid-template-areas: "image content" "nav nav";
  gap: 20px 12px;
  position: relative;
  padding: 10px 10px;
}
.spapp-player .spapp-player-position {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  margin: auto;
}
.spapp-player__image {
  grid-area: image;
}
.spapp-player__content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 12px;
  font-size: clamp(10px, 3.4cqw, 16px);
}
.spapp-player__nav {
  grid-area: nav;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.spapp-player-position {
  display: block;
  width: auto;
  padding: 0.5em 0.75em;
  font-size: clamp(10px, 3.4cqw, 14px);
  font-weight: 400;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
  border-radius: 1.5em;
  overflow: hidden;
  color: #ffffff;
  background: #04224A;
}

.spapp-player-image {
  display: block;
  width: 100%;
  background-color: #9ca3af;
}
.spapp-player-image img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.spapp-player-title {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 1.33em;
  font-weight: 400;
  text-align: left;
  gap: 0.5em;
}
.spapp-player-title__numbers {
  width: auto;
  flex: 0 0 auto;
  max-width: 50%;
  align-self: flex-start;
  display: flex;
  gap: 0;
  width: auto;
  height: 1.7em;
}
.spapp-player-title__numbers img {
  display: block;
  width: auto;
  height: 100%;
}
.spapp-player-title__names {
  display: block;
  flex-grow: 1;
  flex-basis: 0;
  font-size: 1em;
}

.spapp-player-name {
  display: block;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

.spapp-player-kana {
  display: block;
  font-size: max(8px, 0.625em);
  font-weight: 400;
}

.spapp-player-profile {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25em 0.5em;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.25;
}
.spapp-player-profile__item {
  display: block;
  width: auto;
}
.spapp-player-profile__item.is-wide {
  width: 100%;
}

.spapp-player-age {
  display: block;
  width: 100%;
  font-size: 1em;
  font-weight: 400;
}

.spapp-player-hometown {
  display: block;
  width: 100%;
  font-size: 1em;
  font-weight: 400;
}

.spapp-player-school {
  display: block;
  width: 100%;
  font-size: 1em;
  font-weight: 400;
}

.spapp-player-message {
  display: block;
  font-size: 1em;
  font-weight: 400;
}
.spapp-player-message p {
  display: block;
  margin: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  white-space: pre-line;
}

.spapp-player-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.spapp-player-nav__btn {
  --btn-bgcolor: #002D72;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  padding: 0.5em 1.5em;
  border-radius: 2.5em;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  background: var(--btn-bgcolor);
  text-decoration: none !important;
  cursor: pointer;
  transition: var(--cp-transition-colors);
}
.spapp-player-nav__btn:hover {
  background: color-mix(in srgb, var(--btn-bgcolor), #000000 15%);
}
