@charset "utf-8";
/* ================================================================================================================== */
/* 共通演出付きボタン                                                                                                 */
/* ===================================================================================================================*/
.cmd_btn {
	box-sizing: border-box;
	display: block;
	padding-left: 19px;
	border: 1px solid #5084c4;
	text-align: left;
	background: #ffffff;
	color: #5084c4;
	font-size: 0.18rem;
	font-weight: bold;
	line-height: 48px;
	transition: 0.6s;
	position: relative;
}
.cmd_btn .cmd_icon_color {
	stroke: #5084c4;
	transition: 0.6s;
}
.cmd_btn:hover {
	background: #5084c4;
	color: #ffffff;
}
.cmd_btn:hover .cmd_icon_color {
	stroke: #ffffff;
}
/* =============================================================== */
/* 共通演出付きボタン:アイコン                                     */
/* =============================================================== */
.cmd_btn .icon {
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 17px;
}
/* =============================================================== */
/* 共通演出付きボタン:アイコン(個別設定)                           */
/* =============================================================== */
.cmd_btn .icon.kind_window svg {
	width:  24px;
	height: 16px;
}
.cmd_btn .icon.kind_download svg {
	width:  24px;
	height: 17px;
}


