@charset "UTF-8";

/*-----------------------------------

	menu_block

-----------------------------------*/
#menu_block {
	padding-bottom: 70px;
}
#menu_block ul {
	display:flex;
	flex-wrap: wrap;
	gap: 15px;
}
#menu_block ul li {
	width: calc((100% - (15px * 3)) / 4);
}
#menu_block ul li a {
	border-radius: 35px;
	border: 1px solid var(--mClr1);
	text-align: center;
	height: 60px;
	display:flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	line-height: 1.4;
	position: relative;
}
#menu_block ul li a::after {
	content: "";
	width: 10px;
	height: 10px;
	border-left: 2px solid var(--mClr1);
	border-bottom: 2px solid var(--mClr1);
	position: absolute;
	top: 45%;
	right: 20px;
	transform: rotate(-45deg) translateY(-50%);
}
@media screen and (max-width: 1090px) {
	#menu_block ul {
		gap: 10px;
	}
	#menu_block ul li {
		width: calc((100% - (10px * 3)) / 4);
	}
	#menu_block ul li a {
		font-size: 14px;
	}
	#menu_block ul li a::after {
		right: 15px;
	}	
}
@media screen and (max-width: 840px) {
	#menu_block ul li {
		width: calc((100% - 10px) / 2);
	}
}
@media screen and (max-width: 640px) {
	#menu_block {
		padding-bottom: 30px;
	}
	#menu_block ul {
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
	}
	#menu_block ul li {
		width: 100%;
	}
	#menu_block ul li a {
		height: 50px;
	}
	#menu_block ul li a::after {
		width: 8px;
		height: 8px;
		right: 20px;
	}
}
/*-----------------------------------

	guide_common

-----------------------------------*/
section {
	padding-bottom: 100px;
	counter-reset: number;
}
section h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--mClr1);
}
section .guide_inner:not(:last-of-type) {
	margin-bottom: 40px;
}
section h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px;
	padding-left: 40px;
	position: relative;
	counter-increment: number;
}
section h3::before {
	content: counter(number);
	width: 24px;
	height: 24px;
	background: var(--mClr1);
	border-radius: 50%;
	color: #FFF;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	position: absolute;
	top: 2px;
	left: 0;
}
section ul.image {
	display:flex;
	flex-wrap: wrap;
	gap: 20px 15px;
}
section ul.image li {
	width: calc((100% - 15px) / 2);
}
section ul.image li .ex {
	font-size: 12px;
	display: block;
	margin-bottom: 10px;
}
section p {
	margin-bottom: 20px;
	line-height: 1.875;
}
section a {
	display: inline !important;
	color: var(--mClr1) !important;
	text-decoration: underline !important;
}
section .note {
	font-size: 12px;
}
@media screen and (max-width: 840px) {
	section h2 {
		font-size: 34px;
	}
}
@media screen and (max-width: 640px) {
	section {
		padding-bottom: 50px;
	}
	section h2 {
		font-size: 18px;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	section .guide_inner:not(:last-of-type) {
		margin-bottom: 30px;
	}	
	section h3 {
		font-size: 16px;
		margin-bottom: 15px;
		padding-left: 30px;
	}
	section h3::before {
		width: 20px;
		height: 20px;
		font-size: 13px;
		line-height: 20px;
	}
	section ul.image {
		flex-direction: column;
		gap: 15px;
	}
	section ul.image li {
		width: 100%;
	}
	section ul.image li .ex {
		font-size: 10px;
		margin-bottom: 5px;
	}
	section .note {
		font-size: 10px;
	}
}
/*-----------------------------------

	guide05_block

-----------------------------------*/
#guide05_block ul.list li {
	list-style: disc inside;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
#guide05_block ul.list li a {
	color: #000 !important;
}