@charset "UTF-8";

/*色の設定
-----------------------------------------*/
:root
{
	--bluedeep: #92C4DA;
	--bluelight: #CFEAF5;
	--bluefont: #8EBCD1;
	--red: #EE887E;
	--graylight: #F7F7F7;
}

/*フォントの設定
-----------------------------------------*/
h2
{
	margin-top: 30px;
	margin-bottom: 30px;
	padding-bottom: 5px;
	color: var(--bluefont);
	font-size: 22px;
	font-weight: 500;
	border-bottom: solid 1px var(--bluedeep);
}

h3
{
	font-size: 20px;
	color: var(--red);
	display: flex;
	align-items: center;
	margin-bottom: 0.7em;
}

h4
{
	font-size: 18px;
	color: var(--bluefont);
	padding-bottom: 1em;
}

h5
{
	width: 100%;
	background: var(--bluelight);
	display: block;
	text-align: center;
	padding: 0.4em 0;
	margin-bottom: 20px;
	font-size: 16px;
}

h6
{
	font-size: 16px;
	color: var(--bluefont);
	padding-bottom: 0.5em;
	border-bottom: solid 1px var(--bluedeep);
	margin-bottom: 0.5em;
	line-height: 1em;
}

h6.last
{
	padding-top: 1.5em;
}

@media (max-width: 769px)
{
	h2
	{
		font-size: 20px;
		line-height: 1.4;
		margin-bottom: 20px;
	}

	h3
	{
		font-size: 18px;
		line-height: 1.4;
	}

	h4
	{
		font-size: 16px;
		line-height: 1.4;
	}

	h5
	{
		font-size: 15px;
	}

	h6
	{
		font-size: 14px;
		line-height: 1.4;
	}
}

/*グラフエリア
-----------------------------------------*/
.graph
{
	margin-bottom: 50px;
}

.graph img
{
	padding: 30px 0;
	width: 100%;
}

.graph .center
{
	font-size: 20px;
	text-align: center;
	line-height: 2;
	color: var(--red);
	padding: 30px 0;
}

.graph .line
{
	width: 100%;
	height: 2px;
	background-image: url(../img/common/dotline.svg);
	background-repeat: repeat-x;
}

@media (max-width: 769px)
{
	.graph
	{
		margin-bottom: 25px;
	}

	.graph .center
	{
		font-size: 17px;
		padding: 20px 0;
		line-height: 1.8;
	}
}

/*活動紹介
-----------------------------------------*/
.case
{
	margin-bottom: 100px;
}

.case>section
{
	margin-top: 50px;
}

.case h3 img
{
	height: 35px;
	width: auto;
	margin-right: 0.3em;
}

.case .box-area
{
	border: 1px solid var(--bluedeep);
	margin-top: 10px;
	padding: 20px
}

.case .box
{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.case .box .left
{
	width: 56%;
}

.case .box .right
{
	width: 40%;
}

.case p
{
	font-size: 15.5px;
	line-height: 1.7;
	letter-spacing: 0.05em;
}

.case p.last
{
	padding-top: 1em;
}

.case .box-area.josei
{
	width: 460px;
}

@media (max-width: 769px)
{
	.case
	{
		margin-bottom: 50px;
	}

	.case h3 img
	{
		height: 28px;
	}

	.case>section
	{
		margin-top: 40px;
	}

	.case .box-area
	{
		padding: 15px;
	}

	.case .box-area.josei
	{
		width: 100%
	}

	.case p
	{
		font-size: 14px;
	}

	.case .box .left
	{
		width: 100%;
		margin-bottom: 15px;
	}

	.case .box .right
	{
		width: 100%;
	}
}