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

	--c-bg-lightSkyBlue: #f8f8f8;
	--c-bg-skyBlue: #fff1f1;
	/* --c-bg-skyBlue: #ECFAFF; */
	--c-bg-error: #FFEAED;

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


.formGroup .blnak_link{
	text-decoration:underline;
	color: #6666aa;
}

.formGroup .blnak_link::after{
	content: "";
    display: inline-flex;
    background-image: url(../images/blank_tab.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
	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;
}
.disabled-date {
    background-color: #ddd !important;
    color: #999 !important;
    pointer-events: none;
    cursor: not-allowed;
}
