@charset "utf-8";



.team-topCategoryImage{
	width:100%;
	max-width:100%;
	height:auto;
	display:block;
}

.team-topCategorySelect{
	padding:50px 0 20px 0;
	width:100%;
	display:flex;
	justify-content:center;
	gap:45px;
	border-bottom:1px solid rgba(0,0,0,0.15);
}
.team-topCategorySelect > div{
	font-family:var(--alphabetFont);
	font-weight:var(--alphabetWeight);
	font-size:36px;
	line-height:1;
	white-space:nowrap;
	position:relative;
	color:rgba(0,0,0,0.25);
	transition:color 0.1s ease-out;
}
.team-topCategorySelect > div.active{
	color:black;
}
.team-topCategorySelect > div:not(.active){
	cursor:pointer;
}
.team-topCategorySelect > div:not(.active):hover{
	color:rgba(0,0,0,0.50);
}
.team-topCategorySelect > div.active::after{
	content:"";
	width:100%;
	height:9px;
	background:black;
	position:absolute;
	left:0;
	bottom:-25px;
}

.team-topCategory{
	display:none;
}
body:has(.team-topCategorySelect > .active[data-basketball]) .team-topCategory.basketball,
body:has(.team-topCategorySelect > .active[data-volleyball]) .team-topCategory.volleyball{
	display:block;
}
.team-topCategory .team-contents{
	margin-top:50px;
}
.team-topCategoryItems{
	margin-top:50px;
}
.team-topCategoryItem{
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.team-topCategoryItemImage,
.team-topCategoryItemInfo{
	width:48.5%;
}
.team-topCategoryItemImage img{
	width:100%;
	max-width:100%;
	height:auto;
	display:block;
}
.team-topCategoryItemImage:hover{
	opacity:0.85;
}
.team-topCategoryItemName{
	display:block;
	font-weight:var(--boldWeight);
	font-size:24px;
	line-height:1.5;
	max-width:450px;
}
.team-topCategoryItemCategory{
	display:block;
	margin-top:20px;
}
.team-topCategoryItemCategory a{
	font-size:16px;
	font-weight:var(--boldWeight);
	line-height:1.5;
	color:black;
	text-decoration:none;
}
.team-topCategoryItemCategory a:hover{
	opacity:0.7;
}
.team-topCategoryItemMessage{
	margin-top:15px;
	display:block;
	font-size:14px;
	line-height:1.8;
	max-width:450px;
}
.team-topCategoryItemPrice{
	margin-top:30px;
	display:block;
	font-weight:var(--boldWeight);
	font-size:24px;
	line-height:1.5;
}
.team-topCategoryItemPrice > span:nth-child(2){
	font-size:14px;
}
.team-topCategoryItemNotice{
	display:block;
	font-size:12px;
	line-height:1.5;
	max-width:450px;
}
.team-topCategoryItemNotice:blank{display:none}
.team-topCategoryItemNotice:empty{display:none}

.team-topCategoryItemDesignButton,
.team-topCategoryItemLinkButton{
	width:100%;
	height:55px;
	border-radius:150vw;
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:16px;
	line-height:1.5;
	font-weight:var(--boldWeight);
	max-width:450px;
}
.team-topCategoryItemDesignButton > span,
.team-topCategoryItemLinkButton > span{
	word-break:keep-all;
	color:inherit;
}
.team-topCategoryItemDesignButton{
	margin-top:60px;
	border:1px solid #FF7702;
	background:#FF7702;
	color:white;
	transition:background 0.15s ease-out,color 0.15s ease-out;
}
.team-topCategoryItemLinkButton{
	margin-top:15px;
	border:1px solid black;
	background:black;
	color:white;
	transition:background 0.15s ease-out,color 0.15s ease-out;
}
.team-topCategoryItemDesignButton:hover{
	background:transparent;
	color:#FF7702;
}
.team-topCategoryItemLinkButton:hover{
	background:transparent;
	color:black;
}
.team-topCategoryItemsWrapper{
	position:relative;
}
.team-topCategoryItems{
	position:static;
}
.team-topCategoryItems .team-swiperArrow.swiper-button-prev{
	top:calc(50% - 20px);
	bottom:auto;
	right:auto;
	left:-30px;
}
.team-topCategoryItems .team-swiperArrow.swiper-button-next{
	top:calc(50% - 20px);
	bottom:auto;
	right:-30px;
	left:auto;
}

@media (max-width:768px){
	.team-topCategoryImage{
		width:var(--contentsSize);
		margin-left:auto;
		margin-right:auto;
	}
	.team-topCategorySelect{
		padding:40px 0 15px 0;
		gap:20px;
	}
	.team-topCategorySelect > div{
		font-size:24px;
		line-height:1;
	}
	.team-topCategorySelect > div.active::after{
		height:7px;
		bottom:-19px;
	}
	.team-topCategory .team-contents{
		margin-top:30px;
	}
	.team-topCategoryItems{
		margin-top:30px;
	}
	.team-topCategoryItem{
		display:block;
	}
	.team-topCategoryItemImage,
	.team-topCategoryItemInfo{
		width:100%;
	}
	.team-topCategoryItemInfo{
		margin-top:15px;
	}
	.team-topCategoryItemImage img{
		width:100%;
		max-width:100%;
		height:auto;
		display:block;
	}
	.team-topCategoryItemImage:hover{
		opacity:0.85;
	}
	.team-topCategoryItemName{
		max-width:100%;
	}
	.team-topCategoryItemMessage{
		margin-top:10px;
		font-size:14px;
		line-height:1.7;
		max-width:100%;
	}
	.team-topCategoryItemPrice{
		margin-top:20px;
		font-size:24px;
		line-height:1.5;
	}
	.team-topCategoryItemPrice > span:nth-child(2){
		font-size:14px;
	}
	.team-topCategoryItemNotice{
		font-size:12px;
		line-height:1.5;
		max-width:100%;
	}
	.team-topCategoryItemDesignButton,
	.team-topCategoryItemLinkButton{
		width:100%;
		height:50px;
		max-width:100%;
	}
	.team-topCategoryItemDesignButton{
		margin-top:30px;
	}
	.team-topCategoryItemLinkButton{
		margin-top:10px;
	}
	.team-topCategoryItems .team-swiperArrow.swiper-button-prev{
		display:block !important;
		top:calc(92vw * 0.5 - 20px);
		bottom:auto;
		right:auto;
		left:calc(var(--contentsPadding) * -1);
	}
	.team-topCategoryItems .team-swiperArrow.swiper-button-next{
		display:block !important;
		top:calc(92vw * 0.5 - 20px);
		bottom:auto;
		right:calc(var(--contentsPadding) * -1);
		left:auto;
	}
}
























.team-topCasesCategoryTitle{
	margin:30px 0 50px 0;
	font-size:24px;
	font-weight:bold;
}
@media (max-width:768px){
	.team-topCasesCategoryTitle{
		margin:15px 0 15px 0;
		font-size:14px;
	}
}












