/* CSS Document */
/* =========================================================
     キャンペーン
========================================================= */
.titleStyle02:first-of-type {
	margin-top: 40px;
}

.titleStyle02 {
	margin-bottom: 10px;
}

.titleStyle02.only {
	padding-left: 0;
}

.titleStyle02.only::before {
	display: none;
}


@media screen and (max-width: 736px) {
	.titleStyle02 {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 480px) {
	.titleStyle02 {
		margin-top: 40px;
	}
}


.titleStyle02+p a {
	position: relative;
	padding: 0.1em 0.3em;
	display: inline-block;
	transition: .3s;
	color: #000;
}

.titleStyle02+p a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 2px;
	background-color: #F29FB0;
	/*下線の色*/
	transition: .3s;
}

.titleStyle02+p a:hover::after {
	width: 100%;
}

.red.big {
	font-size: 140%;
}

.anchor_list{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	text-align: center;
}

.list_wrap {
	margin-block: 2rem auto;
}

.list_wrap h3 {
	font-size: 2.2rem;
	background: #f3aebb;
	padding: 1rem;
	font-weight: bold;
	color: #fff;
}

.list_wrap ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 1.8rem;
	width: 96%;
	margin: 2rem auto;
	grid-row-gap: 1rem;
}

.list_wrap ul+h3{
	margin-top: 4rem;
}

.list_wrap li {
	list-style: disc;
	font-size: 1.4rem;
}

@media screen and (max-width: 736px) {
	.list_wrap h3 {
		font-size: 1.8rem;
		padding: 0.6rem;
	}

	.list_wrap ul {
		width: 90%;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 2.4rem;
		grid-row-gap: 2rem;
	}

	.list_wrap ul+h3{
	margin-top: 2.4rem;
}

	.list_wrap li {
		font-size: 1.4rem;
	}
}