@charset "utf-8";

/* ボタンウィジェット */
.pb_button_wrap { line-height: 1; }
.pb_button_align-left { text-align: left; }
.pb_button_align-center { text-align: center; }
.pb_button_align-right { text-align: right; }

.pb_button {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	min-width: 240px;
	padding: 17px 72px 17px 48px;
	color: #fff !important;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	border-radius: 3px;
	transition: opacity 0.25s ease;
}

.pb_button,
.pb_button:link,
.pb_button:visited,
.pb_button:hover,
.pb_button:active,
.pb_button:focus,
.pb_button .pb_button_text {
	color: #fff !important;
}

.pb_button:hover {
	opacity: 0.85;
	text-decoration: none;
}

.pb_button .pb_button_text {
	display: inline-block;
}

/* 右向きの「>」をCSSで作成 */
.pb_button::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 26px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
	.pb_button {
		min-width: 200px;
		padding: 15px 60px 15px 40px;
		font-size: 15px;
	}
	.pb_button::after {
		right: 24px;
	}
}
