@charset "utf-8";
.acdn__title{
	position: relative;
	cursor: pointer;
}
.acdn__title::after{
	position: absolute;
	right:15px;
	top:18px;
	content:"";
	/* 矢印描画 */
	width:10px;
	height:10px;
	border-right:1px #54402f solid;
	border-bottom:1px #54402f solid;
	transform:rotate(45deg);
	/* アニメーション設定 */
	transition: all 0.3s;
}
.acdn__title.active::after{
	transition: all 0.3s;
	transform:rotate(-135deg);
	top:25px;
}