/* Snow Monkey Formsに必須マークをつける */
.smf-item__label__text {
	position: relative;
}

.smf-item__label__text::after {
	 position: absolute;
	 content: '必須';
	 color:  #fff;
	 width:  40px;
	 height: 22px;
	 top: 50%;
	 transform: translateY(-50%);
	 right: -50px;
	 display: grid;
	 place-items: center;
	 background:  #DD3234;
	 border-radius: 4px;
	 font-size: 12px;
}

.smf-form .smf-text-control__control {
    width: 100%;
}