@charset "utf-8";


/* ======================== TOP Page ======================== */
.player .player_list li .imgWrap .img{
    background-size: 100%;
}
@media screen and (max-width: 768px){
    .player .player_list li .imgWrap{
        height: 218px;
    }
    .player .player_list li::after{
        height: 218px;
    }
}

/* ======================== Player Archive ======================== */
.contentsWrap{
    padding: 80px 24px 0;
}
@media screen and (max-width: 640px){
    .contentsWrap{
        padding: 160px 0 0;
    }
    .contentsWrap h2{
        margin-bottom: 30px;
    }
}
.player-archive{
    background: #f7f7f7;
    margin-bottom: 0;
    padding-bottom: 5%;
}


/* イントロ */
.player-archive .player-intro {
    margin-bottom: 60px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
}

@media screen and (max-width: 640px){
    .player-archive .player-intro {
        margin-bottom: 40px;
        font-size: 1rem;
    }
}
/* 絞り込み */
.player-filter {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.player-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px;
    margin: 0 auto 12px;
    cursor: pointer;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #222;
    position: relative;
    top: 20px;
}
@media screen and (max-width: 640px){
    .player-filter-toggle {
    top: 10px;
}
}

.player-filter.is-collapsed .player-filter-toggle {
    margin-bottom: 0;
}

.player-filter-toggle .toggle-icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.player-filter-toggle .chevron {
    position: absolute;
    left: 0;
    width: 50%;
    height: 50%;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.player-filter-toggle .chevron-top {
    top: 0;
    left: 3.5px;
}

.player-filter-toggle .chevron-bottom {
    bottom: 0;
    transform: rotate(45deg) translateY(-50%);
}
.player-filter.is-collapsed .player-filter-toggle{
    top: 0;
}
.player-filter.is-collapsed .chevron{
    top: 8px;
}

.player-filter.is-collapsed .player-filter-toggle .chevron-top {
    transform: rotate(-135deg);
}

.player-filter.is-collapsed .player-filter-toggle .chevron-bottom {
    transform: rotate(-135deg) translateY(50%);
}

.player-filter-body {
    margin-top: 20px;
    text-align: left;
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease;
    opacity: 1;
}

.player-filter.is-collapsed .player-filter-body {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
}

.player-filter .filter-group + .filter-group {
    margin-top: 25px;
}

.player-filter h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.player-filter .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.player-filter .filter-btn {
    border: 1px solid #222;
    border-radius: 999px;
    padding: 8px 20px;
    background: #fff;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.player-filter .filter-btn .count {
    margin-left: 6px;
    font-size: 0.85rem;
    color: #777;
}

.player-filter .filter-btn.active,
.player-filter .filter-btn:hover,
.player-filter .filter-btn:focus {
    background: #222;
    color: #fff;
}






/* 選手一覧 */
.player-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

@media (max-width: 640px) {
    .player-list {
      grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;

    }
  }

.player-item a {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 100%;
    position: relative;
}

.player-item a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.player_list li {
    list-style: none;
}

.player_list li a {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.player-card-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: #f08300;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 6px;
    pointer-events: none;
}

.player-card-plus {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1;
}

/* アーカイブページ用 */
.player-archive-image {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.player-archive-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
}

.player-archive-info {
    font-family: 'Zen Kaku Gothic', sans-serif;
    padding: 18px;
}

.player-archive-name {
    font-size: 1.2rem;
}

.player-archive-name-kana {
    font-size: 0.85rem;
    color: #999;
}

.player-pagination ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.player-pagination li a,
.player-pagination li span {
    display: inline-block;
    min-width: 42px;
    padding: 8px 12px;
    text-align: center;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
}
.player-pagination li a{
    background: #fff;
}

.player-pagination li span.current {
    background: #222;
    color: #fff;
    border-color: #222;
}

.player-pagination li .dots {
    border: none;
}

@media (max-width: 640px) {
    .player-pagination ul {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .player-pagination li a,
    .player-pagination li span {
        min-width: 36px;
        padding: 6px 8px;
        font-size: 0.85rem;
    }
}

.no-results {
    text-align: center;
    font-size: 1rem;
    margin: 30px 0;
}

@media (max-width: 767px) {
    .player-filter {
        padding: 20px;
    }
    .player-filter .filter-buttons {
        gap: 8px;
    }
    .player-filter .filter-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

.spOnly{
    display: none;
}
@media screen and (max-width: 640px){
    .spOnly{
        display: inline;
    }
    .pcOnly{
        display: none;
    }
}






/* ======================== Player Single ======================== */
.player-single {
    background: #fff;
}

.player-single .player-profile__inner,
.player-single .player-detail__inner,
.player-single .player-navigation__inner {
    padding: 40px;
    margin-bottom: 40px;
}

.player-single .player-profile__inner {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

@media (min-width: 768px) {
    .player-single .player-profile__inner {
        flex-direction: row;
        align-items: flex-start;
    }
}

.player-gallery {
    flex: 1 1 360px;
}

.player-main-image {
    border-radius: 6px;
    overflow: hidden;
    background: #f3f3f3;
    margin-bottom: 16px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    color: #666;
    font-weight: 600;
}

.player-sub-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.player-sub-images img {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.player-info {
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.player-basic {
    flex: none;
}

.player-detail {
    flex: 1 1 auto;
}

.player-info .player-table {
    margin-top: 0;
}

.player-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #888;
    margin-bottom: 10px;
}

/* シングルページ用 */
.player-single .player-name {
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: baseline;
    border-bottom: solid 1px #ccc;
    margin-bottom: 5px;
}

.player-name-en-inline {
    font-size: 1.1rem;
    color: #777;
    font-weight: 500;
}

.player-team {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: right;
}

.player-sns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.player-sns .sns-link {
    border: 1px solid #222;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #222;
    transition: all 0.2s ease;
}

.player-sns .sns-link:hover {
    background: #222;
    color: #fff;
}

.player-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #ccc;
}

.player-table th,
.player-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
}

.player-table th {
    width: 200px;
    font-weight: 600;
    background: #f0f0f0;
}

.player-navigation__inner {
    text-align: center;
}

.player-navigation--top .player-navigation__inner {
    margin-bottom: 0;
}

.player-navigation--bottom .player-navigation__inner {
    margin-top: 20px;
}

.player-nav-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.player-nav-links a {
    display: inline-block;
    text-decoration: none;
    line-height: 0.9;
}
.player-back-link{
    margin-bottom: 120px;
}
.player-back-link a {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #222;
    border-radius: 999px;
    text-decoration: none;
    color: #222;
    min-width: 160px;
    background: #fff;
}
.player-single .player-navigation__inner{
    padding: 0 24px;
}

@media (max-width: 767px) {
    .player-single .contentWrap {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .player-single .content {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .player-single .player-profile__inner,
    .player-single .player-detail__inner{
        padding: 24px 16px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .player-single .player-navigation__inner {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .player-single .player-gallery,
    .player-single .player-info {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .player-main-image {
        min-height: 220px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .player-main-image img {
        max-width: 100%;
        height: auto;
    }

    .player-table {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .player-table th,
    .player-table td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 14px;
        box-sizing: border-box;
    }
}

.contact-inner .form .mw_wp_form .error{
    padding: 0 36px;
}
@media screen and (max-width: 640px){
    .contact-inner .form .mw_wp_form .error{
        padding: 0;
    }
}
