@charset "UTF-8";
main div.wrap {
	box-sizing: border-box;
	padding: 30px 20px;
	background: #FFF;
}
h2 {
	text-align: center;
	font-weight: bold;
	color: #FFF;
	font-size: 2.25em;
	margin-top: 70px;
	line-height: normal;
}
h3 {
	background: #7774b5;
	padding: 10px 20px;
	box-sizing: border-box;
	color: #FFF;
	font-weight: bold;
	font-size: 1.3em;
}
	.sec03 h3 {background: #00b1a9;}
	.sec04 h3 {background: #ed7969;}
	.sec05 h3 {background: #409bd6;}
	.sec06 h3 {background: #bd8b5e;}
	.sec07 h3 {background: #f3982d;}
	.sec08 h3 {background: #61aa31;}

h4 {
	font-size: 1.1em;
	color: #7774b5;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
	.sec03 h4 {color: #00b1a9;}
	.sec04 h4 {color: #ed7969;}
	.sec05 h4 {color: #409bd6;}
	.sec06 h4 {color: #bd8b5e;}
	.sec07 h4 {color: #f3982d;}
	.sec08 h4 {color: #61aa31;}
h4 span {
	background: #e71f19;
	display: inline-block;
	padding: 2px 10px;
	color: #FFF;
	line-height: normal;
	font-size: 0.7rem;
	margin-left: 10px;
	text-align: center;
	border-radius: 100px;
}
div.gr01 p{
	font-size: 0.9em;
}
div.gr01 p small {
	font-size: 0.8em;
	line-height: normal;
}
.dlTable01 {
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: 8px 10px;
	font-size: 0.9em;
}
.dlTable01 dt {
	padding: 2px 3px;
	text-align: center;
	background: #000;
	color: #FFF;
	line-height: normal;
	height: 23px;
}
.dlTable01 dd {
	padding: 1px 0;
}
.dlTable01 dd small {
	font-size: 0.8em;
}
.clW {
	color: #FFF;
}
.clG {
	color: #7f8080;
}
/*アニメーション*/
.scrollIn {
	animation-name: fadeIn;
	animation-delay: 0.25s;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	transform: translateY(50px);
	opacity: 0;
}
.fadeIn {
	opacity: 0;
}
@keyframes fadeIn {
	0% {
	}
	100% {
			transform: translateY(0);
			opacity: 1;
	}
}
@media screen and (max-width:768px) {
	header div.wrap {
		width: 80%;
		box-sizing: border-box;
		/* padding-left: 20px; */
  margin-top: -120px ;
	}
}