@charset "UTF-8";
/* CSS Document */


/* ----------------------------------------------
	INTRODUCTION共通
------------------------------------------------- */
/*- リセット -*/
.chapter {
	padding: 20px;
}
.chapter .paragraph h4 {
	border: none;
	padding: 0;
	font-size: 18px;
}

/*- 章表題 -*/
.chapter h3 {}
.chapter h3 + p {
	font-size: 14px;
	margin-top: 1em;
}

/*- キャッチコピー -*/
.chapter h4 {
	color: var(--page-point-color);
	font-weight: bold;
	margin-top: 1em;
}
.chapter h4 + p {
	font-size: 14px;
}

/*- リンクボタン -*/
.chapter .more_arrow {
	margin-top: 1em;
}
.chapter .more_arrow a {
	width: 100%;
	padding: 10px 20px;
	color: var(--color-white);
	background-color: var(--page-point-color);
	border-radius: 10px;
}
.chapter .more_arrow a::after {
	background-color: var(--back-base-color);
}

/* ----------------------------------------------
	見出し
------------------------------------------------- */
#index {}
#index h3 {
	
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	
	background-color: var(--page-basic-color);
	border-radius: 50px;
	padding: 5px;
	margin-top: 2em;
}
#index #merit {
	display: grid;
	gap: 20px;
}
#index #merit::after {
	content: '';
	
	background-image: url("../images/illust01.png"), url("../images/illust02.png"), url("../images/illust03.png"), url("../images/illust04.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left 4% center, left 35% center, left 65% center, left 95% center;

	height: 65px;
	width: 100%;
}
#index #merit li {
	border: solid 2px var(--color-red);
	padding: 20px 10px 10px;
	border-radius: 10px;
	margin-top: 20px;
	
	position: relative;
	font-weight: bold;
}
#index #merit li span {
	position: absolute;
	top: -1em;
	right: calc(50% - 7em / 2);
	
	display: block;
	background-color: var(--color-red);
	color: var(--color-white);
	font-size: 16px;
	border-radius: 50px;
	padding: 5px;
	width: 7em;
	text-align: center;
}
#index .paragraph p {
	font-size: 12px;
	
	margin-top: 1em;
}


/* ----------------------------------------------
	内容１
------------------------------------------------- */
#chapter1 {}
#chapter1 .paragraph ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	
	background-image: url("../images/illust05.png"), url("../images/illust06.png");
	background-repeat: no-repeat;
	background-size: 100px;
	background-position: left 20% bottom, left 80% bottom;
	padding-bottom: 100px;
}
#chapter1 .paragraph ul li {
	width: calc(50% - 15px / 2);
	margin-bottom: 10px;
	
	position: relative;
}
#chapter1 .paragraph ul li::before,
#chapter1 .paragraph ul li::after {
	content: '';
	background-color: #afe4f85c;
	border-radius: 50%;
	position: absolute;
}
#chapter1 .paragraph ul li::before {
	width: 10px;
	height: 10px;
	bottom: 0;
}
#chapter1 .paragraph ul li:nth-of-type(odd)::before {
	left: 35px;
}
#chapter1 .paragraph ul li:nth-of-type(even)::before {
	right: 35px;
}
#chapter1 .paragraph ul li::after {
	width: 6px;
	height: 6px;
	bottom: -8px;
}
#chapter1 .paragraph ul li:nth-of-type(odd)::after {
	left: 45px;
}
#chapter1 .paragraph ul li:nth-of-type(even)::after {
	right: 45px;
}
#chapter1 .paragraph ul li p {
	background-color: #afe4f85c;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	
	margin: 0;
	padding: 10px;
	border-radius: 50%;
	height: calc(4em + 10px * 2);
	
	display: flex;
	place-items: center;
	justify-content: center;
}


/* ----------------------------------------------
	内容２
------------------------------------------------- */
#chapter2 {}
#chapter2 #point {
	border: solid 1px #000;
	border-radius: 10px;
	margin-top: 1em;
	margin-bottom: 1em;
	padding: 15px;
}
#chapter2 #point ul {
	padding-left: 1em;
	display: grid;
	gap: 10px;
}
#chapter2 #point ul li {
	font-size: 14px;
}
#chapter2 #point ul li::marker {
	color: var(--page-point-color);
	content: '●';
}
#chapter2 #point ul li p {
	font-weight: bold;
}


/* ----------------------------------------------
	内容３
------------------------------------------------- */
#chapter3 {}
#chapter3 img {
	width: 100%;
}

/*-
	PC版（821px以上）ここから
------------------------------------------------- */
@media screen and (min-width:768px), print{
	
	
	/* ----------------------------------------------
		INTRODUCTION共通
	------------------------------------------------- */
	.chapter h3 {
		display: block;
		text-align: center;
	}
	.chapter h3 + p {
		font-size: 16px;
	}
	
	/*- キャッチコピー -*/
	.chapter .paragraph h4 {
		font-size: 24px;
	}
	.chapter h4 {
		text-align: center;
	}
	.chapter h4 + p {
		font-size: 16px;
		margin: 1em auto;
	}
	
	/*- リンクボタン -*/
	.chapter .more_arrow {
		margin-top: 1em;
		width: 20em !important;
	}

	/* ----------------------------------------------
		見出し
	------------------------------------------------- */
	#index {}
	#index h3 {
		width: 700px;
		margin: 2em auto 1em;
	}
	#index #merit {
		grid-template-columns: 1fr 1fr;
		width: 600px;
		margin: auto;
		font-size: 20px;
	}
	#index #merit::after {
		grid-column: 1 / 3;
		height: 120px;
	}
	#index #merit li {
		text-align: center;
		font-size: 18px;
	}
	#index .paragraph p {
		text-align: center;
		margin: 2em auto 0;
	}
	
	
	/* ----------------------------------------------
		内容１
	------------------------------------------------- */
	#chapter1 {}
	#chapter1 h3 {
		width: 16em;
	}
	#chapter1 .paragraph ul {
		justify-content: center;
		background-position: left calc(50% - 90px) bottom, right calc(50% - 90px) bottom;
		background-size: 140px;
		padding-bottom: 140px;
	}
	#chapter1 .paragraph ul li {
		width: calc(25% - (15px * 3) / 4);
	}
	#chapter1 .paragraph ul li::before,
	#chapter1 .paragraph ul li::after {
		left: unset;
		right: unset;
	}
	#chapter1 .paragraph ul li::before {
		bottom: -4px;
	}
	#chapter1 .paragraph ul li:nth-of-type(1)::before,
	#chapter1 .paragraph ul li:nth-of-type(2)::before,
	#chapter1 .paragraph ul li:nth-of-type(5)::before,
	#chapter1 .paragraph ul li:nth-of-type(6)::before {
		left: unset;
		right: unset;
		
		left: 60px;
	}
	#chapter1 .paragraph ul li:nth-of-type(1)::after,
	#chapter1 .paragraph ul li:nth-of-type(2)::after,
	#chapter1 .paragraph ul li:nth-of-type(5)::after,
	#chapter1 .paragraph ul li:nth-of-type(6)::after {
		left: unset;
		right: unset;
		
		left: 70px;
	}
	#chapter1 .paragraph ul li:nth-of-type(3)::before,
	#chapter1 .paragraph ul li:nth-of-type(4)::before,
	#chapter1 .paragraph ul li:nth-of-type(7)::before {
		left: unset;
		right: unset;
		
		right: 60px;
	}
	#chapter1 .paragraph ul li:nth-of-type(3)::after,
	#chapter1 .paragraph ul li:nth-of-type(4)::after,
	#chapter1 .paragraph ul li:nth-of-type(7)::after {
		left: unset;
		right: unset;
		
		right: 70px;
	}
	#chapter1 .paragraph ul li p {
		font-size: 16px;
	}
	#chapter1 h4 + p {
		text-align: center;
	}
	
	
	/* ----------------------------------------------
		内容２
	------------------------------------------------- */
	#chapter2 {}
	#chapter2 h3 {
		width: 11em;
	}
	#chapter2 #point ul li {
		font-size: 18px;
	}
	
	
	/* ----------------------------------------------
		内容３
	------------------------------------------------- */
	#chapter3 {}
	#chapter3 h3 {
		width: 16em;
	}
	
	
}


/*-
	SP版（820px以下）ここから
------------------------------------------------- */
@media screen and (max-width: 767px) {
	
	
	/* ----------------------------------------------
		INTRODUCTION共通
	------------------------------------------------- */
	
	
	/* ----------------------------------------------
		見出し
	------------------------------------------------- */
	#index {}
	
	
}

