.playerarchive{
	overflow-x: hidden;
}
.playerarchive >.container {
    max-width: 100vw;
    padding: 0;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.player-kv{
	background: url(./img/prayer_bg.jpg)no-repeat;
	background-size: cover;
	height: 600px;
	background-position: center bottom;
}
.player-kv__inner{
	width: min(1170px,96%);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	    height: 100%;
}
.player-kv .subttl{
	font-size: 96px;
	font-weight: 800;
	line-height: 1.2;
	font-family: 'Oswald', sans-serif;
}
.player-kv .mainttl{
	font-size: 26px;
	font-weight: 800;
	line-height: 1.2
}
.player-archive{
	display: grid;
  grid-template-columns: repeat(2, 1fr);
	gap: 50px 30px;
	width: min(1170px,96%);
	margin: -50px auto 100px;
}
.player-archive__card{
	flex: 1 1 calc(50% - 15px);
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	display: flex;
}
.player-archive__txtarea{
	width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8px;
	position: relative;
  z-index: 1;
	
}
.player-archive__txtarea::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f5b400;
  clip-path: polygon(
    0 0,
    100% 0,
    74% 100%,
    0% 100%
  );
  z-index: -1;
}
.player-archive__txtarea .ttl{
	font-weight: 700;
	font-size: clamp(16px, 15.515px + 0.129vw, 18px);
	margin-bottom: 10px;
	margin-left: 16px
}
.player-archive__txtarea .snslist{
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap:8px;
	margin-left: 16px
}
.player-archive__txtarea .archive__btn {
	margin-left: 16px
}
.player-archive__txtarea .archive__btn a{
	background: #000;
	color: #fff;
	font-size: 15px;
	padding: 1em 2em;
	text-align: center;
	display: block;
}
.player-archive__thumbnail{
	width: 65%;
	padding: 20px
}
.player-archive__thumbnail img {
    object-fit: cover;
    aspect-ratio: 312 / 368;
    width: 100%;
    height: auto;
    display: block;
}
.kana-name {
  display: inline-block;
  transform: skewX(354deg); /* 全体を少し斜め */
}

.kana-name .name {
  display: inline-block;
  background: #fff;
  padding: 4px 12px;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

/* 斜めを打ち消す（文字はまっすぐにする） */
.kana-name .name span,
.kana-name .name {
	font-size: clamp(24px, 16.233px + 1.871vw, 46px);
}
.kana-name .first {
  font-weight: 400;
}

.kana-name .last {
  font-weight: 800;
}
@media (max-width: 1000px) {
	.player-kv .subttl{
		font-size: 46px
	}
   .player-archive__txtarea {
       width: 84%;
	   padding: 10px 6px;
  }
	.player-archive__thumbnail img{
		aspect-ratio: 312 / 479;
	}
	.player-kv{
		    height: 280px;
	}
	.player-kv .mainttl {
		font-size: 14px;
	}
}
@media (max-width: 768px) {
	
   .player-archive {
    grid-template-columns: 1fr;
	   gap:30px
  }
	 .player-archive__txtarea {
       width: 65%;
		 margin-right: -7%;
  }
	.player-archive__thumbnail{
		width: 95%;
		padding: 10px
	}
	.player-archive__thumbnail img{
		aspect-ratio: 312 / 368;
	}
	.player-archive__txtarea .ttl {
    font-size: 12px;
    margin-left: 8px;
}
	.player-archive__txtarea .snslist,
	.player-archive__txtarea .archive__btn{
		 margin-left: 8px;
	}
	.player-archive__txtarea .archive__btn a{
		font-size: 12px;
		width: 120%
	}
}