@charset "UTF-8";
.profile-cards{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.profile-card{
    display: flex;
    flex-direction: column;
}
@media screen and (min-width: 1089px) {
	.profile-card{
	    width: calc(100% / 4 - 0.5rem);
	}
}
@media screen and (max-width: 1088px) {
	.profile-card{
	    width: calc(100% / 3 - 0.5rem);
	}
}
@media screen and (max-width: 768px) {
	.profile-card{
	    width: calc(100% / 3 - 0.5rem);
	}
}
@media screen and (max-width: 640px) {
	.profile-card{
	    width: calc(100% / 2 - 0.5rem);
	}
}
.profile-img{
    aspect-ratio: 2 / 3;
}
.profile-img img{
	width: 100%;
    height:120%;
    object-fit: cover;
    object-position:top;
    background: #f7f7f7;
}
.profile-data{
	padding: 1.8rem 8% 2rem;
    background-color: var(--black);
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile-position {
    line-height: 1.4;
    font-size: clamp(1.2rem, 3vw, 1.3rem);
}
.profile-name-ja{
	font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    line-height: 1.4;
}
.profile-name-en{
	font-size: clamp(1.2rem,4vw,1.3rem);
	color: var(--green);
    text-transform: capitalize;
}
.profile-detail{
    font-size: clamp(1.2rem, 3vw, 1.3rem);
    word-break: break-word;
}
.profile-sns-items{
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
	margin-block: auto 0;
	padding-top: 1rem;
}
.profile-sns-item img {
    height: 2rem;
    filter:invert(100%) sepia(7%) saturate(0%) hue-rotate(213deg) brightness(117%) contrast(100%);
}

/* 選手 詳細ページ */
.player-staff-mv{
    background: var(--black);
    color: var(--white);
    padding-block: 1rem;
    margin-block: 1rem;
}
.player-staff-mv > .inner{
    display: flex;
    align-items: flex-start;
    max-width: 86rem;
}
.player-staff-data,
.player-staff-thumbnail{
    width:50%;
}
.player-staff-data{
    text-align:center;
    padding-top: clamp(1rem,3vw,3.6rem);
}
.player-staff-data .uniform_num{
    color: var(--green);
    font-size: clamp(9.6rem,26vw,26.4rem);
    display: block;
    font-family: "Squada One", sans-serif;
    font-weight: 400;
    line-height: 0.9;
    background: linear-gradient(180deg, #c0c700 60%, #000000 95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.player-staff-data .position{
    color: var(--black);
    background-color: var(--green);
    border-radius: 0.4rem;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Squada One", sans-serif;
    font-weight: 400;
    font-size: clamp(2.5rem,4vw,5rem);
    width: clamp(3rem, 5vw, 6.5rem);
    height: clamp(3rem, 5vw, 6.5rem);
    line-height: 1.2;
    padding-top: 0;
}
.player-staff-data .name-wrap{
    padding-top: clamp(2rem,4vw,3.6rem);
}
.player-staff-data .name-ja{
    line-height: 1.4;
    font-size: clamp(1.8rem,5vw,5rem);
    font-weight: 700;
}
.player-staff-data .name-en{
    font-size: clamp(1.4rem,5vw,2.5rem);
    font-family: "Squada One", sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--green);
}
.player-staff-thumbnail > .inner{
    aspect-ratio: 3/4;
}
.player-staff-thumbnail > .inner img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    background-color: #f7f7f7;
}

.page-table tbody{
    display: flex;
    flex-wrap: wrap;
}
.page-table .page-table-item{
    width: 50%;
    display: flex;
}
.page-table .page-table-item:last-child{
    width: 100%;
}
.page-table .table-header{
    background: var(--gray-100);
    padding-left: 2rem;
    width: 20rem;
}
.page-table .table-data{
    width: calc(100% - 20rem);
    height: 100%;
    word-break: break-all;
}
.page-table .table-data img{
    vertical-align: middle;
    padding-right: 1rem;
    opacity: 0.1;
}
.page-table .table-data a img{
    opacity: 1;
}
@media screen and (max-width: 1088px) {
    .page-table tbody{
        display: block;
    }
    .page-table .page-table-item{
        width: 100%;
    }
    .page-table .table-data{
        display: block;
    }
    .page-table .table-header{
        padding-left: 1rem;
        width: 20rem;
        margin-bottom: 0;
        padding-block: 1rem;
    }
    .page-table .table-data{
        padding-inline: 1rem;
        padding-block: 1.2rem;
    }
}
@media screen and (max-width: 768px) {
    .page-table .table-header{
        width: 14rem;
    }
    .page-table .table-data{
        width: calc(100% - 14rem);
    }
}