@charset "utf-8";

/*----------------------------------
	common
-----------------------------------*/

body{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Meiryo", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-size: 1.8rem;
	line-height: 1.6;
	color: #333;
}
a{
	color: #333;
}
footer{
	padding: 10.0rem 0;
	text-align: center;
	font-size: 1.1rem;
	background: #f1f1f1;
}

#op-root {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}
#op-top, #op-bottom {
  position: absolute;
  left: 0; right: 0;
  background: #fff;
  z-index: 20;
}
#op-top    { top: 0;    height: 50%; }
#op-bottom { bottom: 0; height: 50%; }
#op-zoom-text {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#op-zt-inner {
  font-size: 6.0rem;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: inline-block;
}

#op-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("/wp-content/themes/777-pachipachi/assets/images/keyv/keyv.webp") no-repeat center center / cover;
  opacity: 0;
}
#op-bg::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,0.22) 0%, transparent 70%);
  top: -120px; left: -100px;
}
#op-bg::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, transparent 70%);
  bottom: -80px; right: -60px;
}

/* 左下テキストブロック */
#op-text-block {
  position: absolute;
  width: 55%;
  bottom: 72px;
  left: 36px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  container-type: inline-size;
}

/* 各行ラッパー: テキスト幅にぴったり合わせる */
.op-title-row {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.3;
  font-weight: 900;
}

.op-row-mask {
  position: absolute;
  inset: 0;
  background: #fff;
  transform-origin: left;
  z-index: 2;
}


#op-title-line1 {
  font-size: clamp(5.0rem, 5cqi + 1rem, 7.0rem);
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: block;
}
#op-title-line2 {
  font-size: clamp(10rem, 11cqi, 12rem);
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: block;
}

.op-mask-inner {
  display: block;
  transform: translateX(0%);
}


#op-video-panel {
  position: absolute;
  top: 0;           /* 上から */
  bottom: 0;        /* 下まで縦いっぱい */
  right: 0;
  width: 33.333%;   /* 横3分の1 */
  background: rgba(180, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 50;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  padding: 20px;    /* 内側の余白 */
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  clip-path: inset(0 0 0 100%);
}
.panel-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.panel-label {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}
.panel-title-wrap {
  overflow: hidden;
}
.panel-title {
  font-size: 5.0rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  transform: translateY(100%);
}
.panel-desc {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

#op-yt {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  display: block;
  margin: 5.0rem 0;
}


/*----------------------------------
	header
-----------------------------------*/
#op-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 50px;
  transform: translateY(-100%);
	box-shadow: 0 3px 9px rgba(0,0,0,0.2);
	background: #fff;

}
header#header{
	width: 100%;
	height: 50px;
	background: #fff;
}
header .header-inner {
	width: 100%;
	height: 100%;
	padding: 0 10.0rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .header-inner .logo {
	width: 250px;
}
nav.gnav {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
}
/*----------------------------------
	slider
-----------------------------------*/
.slider-section {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
  font-family: sans-serif;
}
.slider-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slide-left 24s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes slide-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.slider-card {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  flex-shrink: 0;
  background: #ddd;
}

.slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-card .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
}
/*----------------------------------
	movie
-----------------------------------*/
#movie {
	background: #f1f1f1;
	padding: 10.0rem 0;
}
#movie article{
	width: 90%;
	padding: 5.0rem;
	background: #fff;
	border-radius: 0.8rem;
	margin: 0 auto 5.0rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, .1);
}
#movie article:last-child{
	margin-bottom: 0;
}
.movie-L, .movie-R {
	width: 48%;
}
#movie-L-yotuube {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: .8rem;
}
.movie-meta {
	display: flex;
	font-size: 1.4rem;
	margin-bottom: 1.0rem;
}
.movie-date {
	margin-right: 2.0rem;
}
.movie-R h2{
	margin-bottom: 2.0rem;
	font-size: 2.4rem;
	line-height: 1.4;
	font-feature-settings: "palt" 1;
	hanging-punctuation: first last;
}
/*----------------------------------
	past
-----------------------------------*/
#past {
	padding: 10.0rem 0;
}
#past article{
	width: 90%;
	margin: 0 auto;
}
#past article ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#past article ul li{
	width: 48%;
	aspect-ratio: 16 / 9;
}
#past article ul li a{
	width: 100%;
	height: 100%;
	background: #f1f1f1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: .8rem;
}
/*----------------------------------
	page
-----------------------------------*/
.breadcrumb{
	padding: 5.0rem 10.0rem;	
}
.breadcrumb ul {
  background: #fff;
  display: flex;
  justify-content: flex-start;
  line-height: 1;
  font-size: 1.4rem
}
.breadcrumb ul li {
  position: relative;
  margin-right: 1.5rem;
  padding-right: 1.5rem
}
.breadcrumb ul li:first-child {
  padding-left: 0.5rem;
}
.breadcrumb ul li:after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  position: absolute;
  right: 0;
  top: .25rem;
  transform: translateY(0) rotate(-45deg)
}
.breadcrumb ul li:last-child:after {
  display: none;
  margin-right: 0;
  padding-right: 0
}
#page-header {
	padding: 5.0rem 10.5rem;	
}
#page-header h1{
	font-size: 10.0rem;
	font-weight: 900;
}
#page-header h1 span{
	position: relative;
	font-size: 3.5rem;
	font-weight: 700;
	display: block;
	padding-left: 9.0rem;
}
#page-header h1 span:before{
	content: "";
	background: url("/wp-content/themes/777-pachipachi/assets/common/icon/icon_arrow.svg") no-repeat center center;
	background-size: contain;
	width: 65px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	
}
#page-keyv {
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
}
#page-keyv::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: url("/wp-content/themes/777-pachipachi/assets/images/keyv/keyv.webp") no-repeat center center;
  background-size: cover;
  will-change: transform;
  transform: translateY(var(--parallax-y, 0px));
}
/*----------------------------------
  チーム一覧ページ
-----------------------------------*/
#teams-page {
  width: 100%;
  padding: 6.0rem 10.0rem;
}
/* タブ */
.season-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 4.0rem;
  border-bottom: 1px solid #e5e5e5;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #999;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active {
  color: #111;
  border-bottom-color: #111;
}
.tab-btn:hover {
  color: #333;
}

/* パネル */
.season-panel { display: none; }
.season-panel.active { display: block; }


.teams-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.team-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: .8rem;
  padding: 5rem;
  width: 49%;
  
}

/* チームロゴ */
.team-logo {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.team-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.team-logo span {
  font-size: 2.4rem;
  font-weight: 700;
  color: #666;
}

/* チーム名・法人名 */
.team-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
}
.team-corp {
  font-size: 1.2rem;
  color: #999;
  margin: 0 0 20px;
}

/* 選手ラベル */
.players-label {
  font-size: 1.1rem;
  color: #bbb;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* 選手行 */
.player-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid #f0f0f0;
}

/* 選手アバター */
.player-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #666;
  flex-shrink: 0;
  overflow: hidden;
}
.player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 選手名 */
.player-info { flex: 1; min-width: 0; }
.player-name {
  font-size: 1.4rem;
  color: #111;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* リーダーバッジ */
.leader-badge {
  font-size: 1.0rem;
  padding: 2px 8px;
  border-radius: 100px;
  background: #fff8e1;
  color: #f59e0b;
  border: 1px solid #fcd34d;
  flex-shrink: 0;
  white-space: nowrap;
}

/* XリンK */
.player-x {
  font-size: 1.3rem;
  color: #ccc;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s;
}
.player-x:hover { color: #111; }

/* データなし */
.no-teams {
  color: #999;
  font-size: 1.4rem;
  padding: 4.0rem 0;
  text-align: center;
}















