@charset "UTF-8";
/* ==========================================================================
   Foundation
========================================================================== */
/*

	font settings

**************************************************/
/*

	calculation width

**************************************************/
/*

	boxsizing settings

**************************************************/
/*

	opacity settings

**************************************************/
/*

	border-radius settings

**************************************************/
/*

	drop shadow settings

**************************************************/
/*

	vertical align setting

**************************************************/
/*

	table layout setting

**************************************************/
/*

	flexbox layout setting

**************************************************/
/*

	scaling img

**************************************************/
/*

	clearfix

**************************************************/
/*

	media query

**************************************************/
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
@import url("https://fonts.googleapis.com/css2?family=Staatliches&display=swap");
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 20px;
  /*padding: 35px;*/
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  /* background: #fff;*/
  position: absolute;
  top: 0;
  left: 0;
}

.remodal__main {
  /*
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  */
  margin-top: 40px;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  /*
  top: 0;
   left: 0;
  */
  top: 5px;
  right: 50%;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  margin-right: -335px;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 768px) {
  .remodal-close {
    right: 15px;
    margin-right: 0;
  }
}
.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  /*font-size: 25px;*/
  font-size: 7rem;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
  color: #fff;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
/*
@media only screen and (min-width: 768px) {
*/
.remodal {
  /*max-width: 700px;*/
  /*max-height: 100vh;*/
}

/*
}
*/
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  /*width: 700px;*/
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  /*
  right: 0;
   bottom: 0;
  */
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (max-width: 768px) {
  .remodal-wrapper {
    bottom: auto;
  }
}
.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  /* margin-left: -0.05em;*/
  margin-left: 17px;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

@font-face {
  font-family: "JLEAGUEKICK-BoldCondensed";
  src: url("/assets/font/JLEAGUEKICK-BoldCondensed.woff2") format("woff2"), url("/assets/font/JLEAGUEKICK-BoldCondensed.woff") format("woff");
}
@font-face {
  font-family: "JLEAGUEKICK-BoldExtraCondensed";
  src: url("/assets/font/JLEAGUEKICK-BoldExtraCondensed.woff2") format("woff2"), url("/assets/font/JLEAGUEKICK-BoldExtraCondensed.woff") format("woff");
}
.team2026 .section2026 {
  padding: 55px 0;
}
@media only screen and (max-width: 988px) {
  .team2026 .section2026 {
    padding: 20px 0;
  }
}
.team2026 .section2026 h4 {
  text-align: center;
  padding: 0;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
}
@media only screen and (max-width: 988px) {
  .team2026 .section2026 h4 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
  }
}
.team2026 .section2026 h4::before {
  display: none;
}
.team2026 .section2026 h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  margin: 20px auto 0;
  background: #89753a;
  position: relative;
}
@media only screen and (max-width: 988px) {
  .team2026 .section2026 h4::after {
    margin: 15px auto 0;
  }
}
.team2026 .playerProfileKv {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 700px;
  background-color: #4d3a72;
  background-image: url("../../assets/img/team/player/2026/bg_kv_01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.team2026 .playerProfileKv::after {
  display: none;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv {
    height: 91.63vw;
    background-image: url("../../assets/img/team/player/2026/bg_kv_01_sp.jpg");
  }
  .team2026 .playerProfileKv::before {
    display: none;
  }
}
.team2026 .playerProfileKv__photo {
  display: flex;
  position: absolute;
  top: 50px;
  left: 55%;
  width: 460px;
  margin-left: 0;
  z-index: 3;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__photo {
    top: 2%;
    width: 55%;
    right: -1%;
    left: auto;
  }
}
.team2026 .playerProfileKv__photo img {
  filter: drop-shadow(10px 9px 38px rgba(0, 0, 0, 0.35));
}
.team2026 .playerProfileKv__text {
  color: #c1ae73;
  width: 100%;
  height: 100%;
  margin: 0;
}
.team2026 .playerProfileKv__text:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: #c1ae73;
  z-index: 2;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__text:before {
    height: 15px;
  }
}
.team2026 .playerProfileKv__text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 143px;
  background: #000;
  z-index: 1;
  clip-path: polygon(0 90px, 100% 0, 100% 100%, 0 100%);
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__text:after {
    height: 70px;
    clip-path: polygon(0 42px, 100% 0, 100% 100%, 0 100%);
  }
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__text {
    background-image: url(../../assets/img/team/player/2026/bg_kv_02_sp.png);
    margin: 0 auto;
    padding: 0;
  }
}
.team2026 .playerProfileKv__text .bt_wrap {
  width: 600px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transform: translateX(-300px);
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__text .bt_wrap {
    width: 50%;
    transform: translateX(-45%);
  }
}
.team2026 .playerProfileKv__text .boxTxt {
  text-align: center;
  width: 100%;
}
.team2026 .playerProfileKv__text .boxTxt .number {
  font-family: "Staatliches", sans-serif;
  font-size: 219px;
  font-size: 21.9rem;
  line-height: 1;
  line-height: 0.7;
  margin-top: 84px;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__text .boxTxt .number {
    margin-top: 11vw;
    font-size: 28vw;
  }
}
.team2026 .playerProfileKv__text .boxTxt .position {
  font-family: "Staatliches", sans-serif;
  font-size: 87px;
  font-size: 8.7rem;
  line-height: 1;
  line-height: 0.7;
  margin-top: 30px;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__text .boxTxt .position {
    margin-top: 4.41vw;
    font-size: 10.5vw;
  }
}
.team2026 .playerProfileKv__text .boxTxt .nameJp {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: 33px auto 0;
  padding: 12px 50px;
  background-color: #000;
  text-align: center;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__text .boxTxt .nameJp {
    margin-top: 4.41vw;
    font-size: 4.5vw;
    padding: 1.4vw 2.5vw;
  }
}
.team2026 .playerProfileKv__text .boxTxt .nameEn {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  line-height: 1;
  margin-top: 10px;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__text .boxTxt .nameEn {
    margin-top: 1.47vw;
    font-size: 2.35vw;
  }
}
.team2026 .playerProfileKv__text .boxTxt .sns {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team2026 .playerProfileKv__text .boxTxt .sns li {
  margin: 0 5px;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__text .boxTxt .sns li {
    margin: 0 1vw;
    width: 8vw;
    height: 8vw;
  }
}
.team2026 .playerProfileKv__text .boxTxt .sns li a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 22px;
  transition: 0.2s;
}
.team2026 .playerProfileKv__text .boxTxt .sns li a:hover {
  background: #fff;
  color: #4d3a72;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv__text .boxTxt .sns li a {
    width: 100%;
    height: 100%;
    border-radius: 4vw;
    font-size: 4vw;
  }
}
.team2026 .playerProfileKv .uniformBtn {
  display: inline-block;
  font-weight: bold;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 5px;
  z-index: 4;
  padding: 16px 20px;
  color: #4d3a72;
  background: #fff;
  margin: 0 0 20px;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv .uniformBtn {
    font-size: 3.5vw;
    line-height: 1;
    margin: 0 auto;
    position: relative;
    left: auto;
    bottom: 5vw;
    padding: 3vw;
  }
}
.team2026 .playerProfileKv .uniformBtn span {
  display: flex;
  align-items: center;
}
.team2026 .playerProfileKv .uniformBtn img {
  margin-right: 8px;
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv .uniformBtn img {
    width: 5vw;
    margin-right: 1vw;
  }
}
@media only screen and (max-width: 988px) {
  .team2026 .playerProfileKv .uniformBtn {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
  }
}
.team2026 .playerProfileKv .uniformBtn:hover {
  opacity: 0.75;
}
.team2026 .section_gallery {
  text-align: center;
  background: #fff;
}
@media only screen and (max-width: 988px) {
  .team2026 .section_gallery {
    padding: 30px 10px;
  }
}
.team2026 .section_gallery p {
  margin-top: 50px;
}
@media only screen and (max-width: 988px) {
  .team2026 .section_gallery p {
    padding: 0 10px;
    margin-top: 30px;
    text-align: left;
  }
}
.team2026 .section_gallery .profileGallery___area {
  padding-bottom: 0;
  background: #fff;
}
.team2026 .section_gallery .profileGallery___list {
  margin: 50px auto 0;
}
@media only screen and (max-width: 988px) {
  .team2026 .section_gallery .profileGallery___list {
    margin-top: 20px;
  }
}
.team2026 .section_gallery .profileGallery___list .slick-list li {
  padding: 0 20px;
  max-width: 250px;
}
@media only screen and (max-width: 988px) {
  .team2026 .section_gallery .profileGallery___list .slick-list li {
    width: 100%;
    max-width: none;
  }
}
.team2026 .teamTable_div {
  display: flex;
  flex-wrap: wrap;
  margin: 40px auto 0;
}
@media only screen and (max-width: 988px) {
  .team2026 .teamTable_div {
    margin: 20px auto 0;
    padding: 0 10px;
  }
}
.team2026 .teamTable_div .item {
  display: flex;
}
.team2026 .teamTable_div .item p:first-child {
  background: #260258;
  color: #fff;
  text-align: center;
}
.team2026 .teamTable_div .item p:last-child {
  background: #eeeeee;
  color: #000;
}
.team2026 .teamTable_div .item p {
  text-align: center;
  border: 1px solid #fff;
  width: 50%;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}
@media only screen and (max-width: 988px) {
  .team2026 .teamTable_div .item p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.3846153846;
    padding: 10px 10px;
    height: auto;
    min-height: 40px;
  }
}
@media only screen and (max-width: 988px) {
  .team2026 .section_profile {
    margin-top: 20px;
  }
}
.team2026 .section_profile .item {
  width: 50%;
}
@media only screen and (max-width: 988px) {
  .team2026 .section_profile .item {
    width: 100%;
  }
}
.team2026 .section_career .teamTable_div {
  display: block;
}
.team2026 .section_career .teamTable {
  margin: 20px auto 0;
}
.team2026 .section_career .teamTable th,
.team2026 .section_career .teamTable td {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3333333333;
}
@media only screen and (max-width: 988px) {
  .team2026 .section_career .teamTable th,
  .team2026 .section_career .teamTable td {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.6;
  }
}
.team2026 .section_career .teamTable th {
  width: auto;
}
.team2026 .section_career .teamTable th span {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media only screen and (max-width: 988px) {
  .team2026 .section_career .teamTable th span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.6;
  }
}
.team2026 .section_career .teamTable thead th {
  background: #260258;
  color: #fff;
}
.team2026 .section_career .teamTable thead tr:first-child th {
  width: 16%;
}
.team2026 .section_career .teamTable tbody th,
.team2026 .section_career .teamTable tbody td {
  background: #eeeeee;
  border: 1px solid #fff;
  text-align: center;
  vertical-align: middle;
}
.team2026 .section_interview .item {
  width: 100%;
}
.team2026 .section_interview .item p:first-child {
  width: 25%;
}
.team2026 .section_interview .item p:last-child {
  width: 75%;
  justify-content: flex-start;
  padding: 0 20px;
}
@media only screen and (max-width: 988px) {
  .team2026 .section_interview .item p:last-child {
    padding: 10px 10px;
  }
}/*# sourceMappingURL=team_profile_2026.css.map */