/* ────────────────────────────────────
     青背景リンクボタン
──────────────────────────────────── */
.l-section .c-btn--nkblue {
	display: inline-block;
	padding: 0 15px;
	height: 46px;
	line-height: 46px;
	background-color: var(--color-nkblue);
	color: #fff;
	text-decoration: none;
	border: 2px solid var(--color-nkblue);
	border-radius: 2px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: background-color .3s, color .3s;
}
.c-btn--nkblue::after {
	content: "→";
	margin-left: 28px;
}
.c-btn--nkblue:hover {
	background-color: #ddeef2;
	color: #00028a;
}
.c-btn--nkblue:hover::after {
	color: #00028a;
}

.l-section .c-btn--paleblue {
	display: inline-block;
	padding: 0 15px;
	height: 46px;
	line-height: 46px;
	font-weight: bold;
	color: var(--color-nkblue);
	text-decoration: none;
	background-color: rgb(221, 238, 242);
	transition: background-color .3s, color .3s;
}
.c-btn--paleblue::after {
	content: "→";
	margin-left: 8px;
	color: var(--color-nkblue);
}
.c-btn--paleblue:hover {
	background-color: var(--color-nkblue);
	color: #fff;
}




/* ────────────────────────────────────
   マイページ　ログインボタン
──────────────────────────────────── */
.c-btn--mypage {
	display: inline-block;
	max-width: 558px;
	width: 100%;
	position: relative;
}
.c-btn--mypage img {
	display: block;
	width: 100%;
	max-width: 558px;
	height: auto;
	max-height: 100px;
	object-fit: contain;
	transition: opacity .2s ease;
}

.c-btn--mypage::after {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: url("/hp/common_image/btn/btn-mypage-hover.svg") center/contain no-repeat;
	opacity: 0;
	transition: opacity .2s ease;
}
.c-btn--mypage:hover img {
	opacity: 0;
}
.c-btn--mypage:hover::after {
	opacity: 1;
}
.c-btn--mypage-en::after {
	background: url("/hp/common_image/btn/btn-mypage_en-hover.svg") center/contain no-repeat;
}
