@charset "utf-8";

.bg-pink{
	background: #FEF8F8;
}
.bg-red{
	background: #FF0132;
}
.margin-auto{
	margin: 0 auto;
}
.jc-center{
	justify-content: center;
}

.ribbon1 {
	display: inline-block;
	position: relative;
	height: 50px;/*リボンの高さ*/
	line-height: 50px;/*リボンの高さ*/
	text-align: center;
	padding: 0 30px;/*横の大きさ*/
	font-size: 20px;/*文字の大きさ*/
	background: #dba52a;/*塗りつぶし色*/
	color: #FFF;/*文字色*/
	box-sizing: border-box;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.ribbon1:before, .ribbon1:after {
	position: absolute;
	content: '';
	width: 0px;
	height: 0px;
	z-index: 1;
}

.ribbon1:before {
	top: 0;
	left: 0;
	border-width: 25px 0px 25px 15px;
	border-color: transparent transparent transparent #f0f1f5;
	border-style: solid;
}

.ribbon1:after {
	top: 0;
	right: 0;
	border-width: 25px 15px 25px 0px;
	border-color: transparent #f0f1f5 transparent transparent;
	border-style: solid;
}