/* ソーシャルログイン / 連携ボタン */

.lb-auth-social {
	margin-top: 1.5rem;
}

.lb-auth-social__divider {
	margin: 0 0 1rem;
	text-align: center;
}

.lb-auth-social__buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.lb-auth-social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 360px;
	min-height: 54px;
	padding: 0.75em 1em 0.75em 3.1em;
	border: 1px solid currentColor;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	background: transparent;
	color: inherit;
	margin-inline: auto;
}

.lb-auth-social-btn::before {
	content: '';
	position: absolute;
	left: 1rem;
	top: 50%;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: translateY(-50%);
}

.lb-auth-social-btn--google {
	border-color: #dadce0;
	background: #fff;
	color: #3c4043;
}

.lb-auth-social-btn--google::before {
	background-image: url('../../images/google.svg');
}

.lb-auth-social-btn--line {
	border-color: #06c755;
	background: #06c755;
	color: #fff;
}

.lb-auth-social-btn--line::before {
	background-image: url('../../images/line.png');
}

.lb-auth-social-btn[aria-disabled='true'] {
	opacity: 0.5;
	pointer-events: none;
}

.lb-account-social-row {
	margin-bottom: 0.75rem;
}
