$(document).ready(function(){

	//ブランド(上)
	$(".shtop .brand_btn a").toggle(
		function(){
			$(".shtop .hbrand").removeClass("hide");
			$(this).addClass("minus");
			$(this).removeClass("plus");
		},
		function(){
			$(".shtop .hbrand").addClass("hide");
			$(this).addClass("plus");
			$(this).removeClass("minus");
		}
	);

	//ほかのブランド(上)
	$(".shtop .brand2_btn").toggle(
		function(){
			$(".shtop .hbrand2").removeClass("hide");
			$(this).addClass("minus");
			$(this).removeClass("plus");
		},
		function(){
			$(".shtop .hbrand2").addClass("hide");
			$(this).addClass("plus");
			$(this).removeClass("minus");
		}
	);

	//ブランド(下)
	$(".shbtm .brand_btn").toggle(
		function(){
			$(".shbtm .hbrand").removeClass("hide");
			$(this).addClass("minus");
			$(this).removeClass("plus");
		},
		function(){
			$(".shbtm .hbrand").addClass("hide");
			$(this).addClass("plus");
			$(this).removeClass("minus");
		}
	);

	//ほかのブランド(下)
	$(".shbtm .brand2_btn").toggle(
		function(){
			$(".shbtm .hbrand2").removeClass("hide");
			$(this).addClass("minus");
			$(this).removeClass("plus");
		},
		function(){
			$(".shbtm .hbrand2").addClass("hide");
			$(this).addClass("plus");
			$(this).removeClass("minus");
		}
	);

	//その他(上)
	$(".shtop .other_btn a").toggle(
		function(){
			$(".shtop .hother").removeClass("hide");
			$(this).addClass("minus");
			$(this).removeClass("plus");
		},
		function(){
			$(".shtop .hother").addClass("hide");
			$(this).addClass("plus");
			$(this).removeClass("minus");
		}
	);

	//その他(下)
	$(".shbtm .other_btn").toggle(
		function(){
			$(".shbtm .hother").removeClass("hide");
			$(this).addClass("minus");
			$(this).removeClass("plus");
		},
		function(){
			$(".shbtm .hother").addClass("hide");
			$(this).addClass("plus");
			$(this).removeClass("minus");
		}
	);
});

