.active_member_sw_button {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 0;
	max-width: 600px;
    margin: 10px auto 0px; 
	background: linear-gradient(180deg, #f4f8fa 0%, #edf3f7 100%);
	border: 2px solid #cccccc;
	border-radius: 16px;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.92),
		0 6px 18px rgba(34, 58, 76, 0.06);
}

.active_member_sw_button:hover {
	background: rgba(255,255,255,0.10);
}

.slider {
	position: absolute;
	top: 0px;
	left: 0px;
	width: calc(50% - 0px);
	height: calc(100% - 0px);
	background: linear-gradient(180deg, #2f6d73 0%, #285e63 100%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.16),
		0 6px 14px rgba(40, 94, 99, 0.18);
	transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 0;
	pointer-events: none;
}

.slider.left {
	border-radius: 16px 0 0 16px;
}

.slider.right {
	border-radius: 0 16px 16px 0;
}

/* ボタン本体 */
.active_member_sw_button_item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;

	min-height: 52px;
	padding: 0 20px;

	border-radius: 12px;
	color: #52636f;

	font-size: 16px;
	font-weight: 700;

	cursor: pointer;
	z-index: 1;
	transition: color 0.2s ease;

	background: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
}

.active_member_sw_button_item.active {
	color: #ffffff;
}

button.active_member_sw_button_item {
	background: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
}

.active_member_sw_button_item:focus {
	outline: none;
}

.active_member_sw_button_item:focus-visible {
	outline: 2px solid rgba(47, 109, 115, 0.35);
	outline-offset: -2px;
}