.champion-section {
    text-align: center;
    margin-bottom: 60px;
}

.champion-block {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
    padding: 50px;
    background: #FFF2CB;
}

.champion-single-card {
    margin-top: 20px;

}

.champion-single-card img {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 0 auto;
}

.champion-single-card p {
    margin-top: 10px;
}

.champion-tag-card {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.champion-tag-card img {
    width: 99%;
    max-width: 300px;
    height: auto;
}

/* ▼ チャンピオンタイトル（赤帯） */
.champion-title {
    display: inline-block;
    background-color: #e60012;
    color: #fff;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 0 6px 6px 0;
    font-size: 2rem;
    margin-bottom: 20px;
    position: absolute;
    left: -20px;
    top: -20px;
    text-align: left;
}

/* ▼ チャンピオンリンクボタン */
.champion-links {
    margin-top: 20px;
}

.champion-links a {
    display: inline-block;
    background-color: #000000;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin: 50px 0;
}
.player-archive {
    padding: 50px 0;
}

.player-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start; /* 左から右に並べる */
}

.player-card {
    width: calc(25% - 20px); /* 4枚横並びにする場合 */
    background-color: #fff;
    text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.player-image-wrapper {
    position: relative;
}

.player-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.player-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-image-wrapper:hover .player-img-hover {
    opacity: 1;
}

.player-image-wrapper:hover .player-img-normal {
    opacity: 0;
}


/* 1000px以下: 横2枚 */
@media (max-width: 1000px) {
    .champion-title {
        font-size: 1.5rem;
    }
    .champion-links a{
        font-size: 1rem;
    }
    .player-card {
        width: calc(50% - 20px);
    }
}

/* 768px以下: 横1枚 */
@media (max-width: 768px) {
    .champion-title {
        font-size: 0.8rem;
    }
    .champion-links a{
        font-size: 0.8rem;
    }
    .player-card {
        width: 100%;
    }
}


.player-card img {
    width: 100%;
    height: auto;
    display: block;
}

.player-card h3 {
    padding: 10px;
    margin: 0;
    font-size: 1em;
    color: #333;
}

.player-card:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
