@charset "utf-8";

.mgb80{
  margin-bottom: var(--SPACE_80);
}
.mgb40{
	margin-bottom: var(--SPACE_40);
}
.center{
	text-align: center;
}
.mgb130{
	margin-bottom: var(--SPACE_130);
}

.wiz50{
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}
.flex{
display: flex;
justify-content: space-between;
gap: 10px;
}
.grid-col2{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 20px;
}



.p-ttl{
  background-color:var(--BLACK);
  color: var(--WHITE);
  border-radius: 10px;
  padding: 10px;
	font-size: var(--FZ_22);
  font-weight: bold;
  line-height: 1.4;
}