:root {
	--c-base: #323133;
	--c-white: #FFF;
	--c-brand: #004BB1;
	--c-required: #D8334B;
	--c-error: #FC576E;
	--c-active: #FD5B25;
	--c-line: #02B53C;

	--c-bg-lightSkyBlue: #F5F7FA;
	--c-bg-skyBlue: #ECFAFF;
	--c-bg-error: #FFEAED;

	--c-border: #E4E4E4;
	--c-gray: #E0E0E0;
	--c-darkGray: #808080;
}


.formGroup .blnak_link{
	text-decoration:underline;
	color: #3273dc;
}

.formGroup .blnak_link::after{
	content: "";
    display: inline-flex;
    background-image: url(https://hoken-all.net/cont/include/step-form_taimen/img/blank_tab.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	width: 1.4em;
    height: 0.8em;
    margin: 0 0 0 0.2em;
}

/* LPO */
.slideForm__nextButton.active::before,
.slideForm__submitButton.active .slideForm__submitButton__submit::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
	background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0.4) 81%, rgba(255, 255, 255, 0) 100%);
    animation: shine 3s infinite;
}
@keyframes shine {
	33%{
		left: 100%;
	}
	100%{
		left: 200%;
	}
}

/* 光が被らないように */
.slideForm__prevButton{
	position: relative;
	z-index: 100;
}