.kikuchikodomo {
	margin-top: 30px;
}

.kikuchikodomo h2{
	background-color: #f17700; /* 背景色 */
	color: #fff !important; /* 文字色 */
	overflow: hidden;
	padding: 10px;  /* 余白 */
	position: relative;
}
.kikuchikodomo h2:before{
	background-color: #fff; /* 切り替わる色1 */
	content: '';
	display: block;
	opacity: 0.3; /* 不透明度 */
	transform: rotate(-50deg);
	position: absolute;
	bottom: -10px;
	right: -330px;
	width: 500px;
	height: 500px;
}
.kikuchikodomo h2:after{
	background-color: #fff; /* 切り替わる色2 */
	content: '';
	display: block;
	opacity: 0.3; /* 不透明度 */
	transform: rotate(-70deg);
	position: absolute;
	bottom: -100px;
	right: -500px;
	width: 500px;
	height: 500px;
}

.kikuchikodomo h3 {
	background-color: #fff352; /* 背景色 */
	color: #701722; /* 文字色 */
	padding: 10px; /* 余白 */
	position: relative;
}
.kikuchikodomo h3:after {
	background: repeating-linear-gradient(-45deg, #ffa700, #ffa700 5px, #fff352 0, #fff352 10px); /* ストライプ */
	content: '';
	height: 5px; /* ストライプの高さ */
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
.kikuchikodomo h4 {
	border-bottom: dashed 2px #f17700;
}
