@charset "utf-8";
.team_section {
		width: 200vh;
		min-width: 200vh;
		position: relative;
}
.team_section::before {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		right: -16vh;
		width: 83.9vh;
		height: 42.2vh;
		background: url("../images/team_bg_pc.png") no-repeat 0 0;
		background-size: 100%;
}
.team_section_inner {
		padding-top: 13.3vh;
		position: relative;
		z-index: 5;
		display: flex;
		padding-left: 5vw;
}
.team_section_inner_left {
		margin-right: 9.2vh;
}
.team_section_inner_right {
		flex: 1;
}
@media(max-height: 840px) and (min-width: 1195px) {
		.team_section {
				min-width: 1700px;
		}
		.team_section_inner_left {
				margin-right: 60px;
		}
}
.team_hd {
		width: 62.9vh;
		margin-bottom: 15px;
}
.team_lead {
		max-width: 62vh;
		line-height: 1.8;
}
.team_item_gr {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px 20px;
}
.team_item {
		box-sizing: border-box;
		border: 2px solid #D000DF;
		padding: 30px;
		background: rgba(49, 1, 64, 0.8);
		cursor: pointer;
		box-shadow: rgba(208, 0, 223, 0.8) 0px 0px 8px;
}
@media (hover: hover) {
		.team_item:hover {
				transform: scale(0.95);
				transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
		}
}
.team_item h5 {
		font-size: 20px;
		font-weight: 400;
		padding: 0 0 20px;
		border-bottom: 1px solid #D000DF;
		margin-bottom: 20px;
		position: relative;
}
.team_item h5 a {
		color: #fff;
		text-decoration: none;
}
.team_item h5 span.small {
		font-size: 80%;
}
.team_item h5 span {
		display: block;
		position: relative;
}
.team_item h5 span::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 3px);
		right: 0;
		width: 5px;
		height: 11px;
		background: url("../images/item_arrow_right.svg") no-repeat 0 0;
		background-size: 5px;
}
.team_item ul {
		margin-left: 1em;
}
.team_item li {
		list-style: none;
		font-size: 16px;
		position: relative;
		margin: 0 0 5px;
}
.team_item li::after {
		content: '・';
		display: block;
		position: absolute;
		top: 0;
		left: -1em;
		color: #FFDE00;
}
@media(max-width: 1194px) {
		.team_section {
				width: 100%;
				min-width: 100%;
				box-sizing: border-box;
				padding: 23vw 20px 25vw;
		}
		.team_section_inner_left {
				margin-right: 0;
				margin-bottom: 35px;
		}
		.team_hd {
				width: 65vw;
				width: 65%;
				margin-bottom: 15px;
		}
		.team_section_inner {
				padding-top: 30px;
				padding-left: 0;
				display: block;
				max-width: 680px;
				margin: 0 auto;
		}
		.team_item_gr {
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
		}
		.team_item {
				margin-bottom: 8px;
				box-sizing: border-box;
				border: 2px solid #D000DF;
				padding: 15px;
				width: calc(50% - 10px);
		}
		.team_item h5 {
				font-size: 18px;
				padding: 0 0 15px;
				margin-bottom: 15px;
		}
		.team_item h5 span.small {
				font-size: 18px;
		}
		.team_item li {
				font-size: 15px;
		}
		.team_section::before {
				bottom: -12vw;
				right: inherit;
				left: 0;
				width: 100%;
				height: 89vw;
				background: url("../images/team_bg_sp.png") no-repeat 0 0;
				background-size: 100%;
		}
}
@media(max-width: 767px) {
		.team_section_inner {
				padding-top: 0;
				padding-left: 0;
		}
		.team_item_gr {
				display: block;
		}
		.team_item {
				width: 100%;
				margin: 0 0 20px;
		}
		.team_item h5, .team_item h5 span.small {
				font-size: 17px;
		}
}