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


@media screen and (min-width:768px), print{
/*----------------------------------------------------------------------
PC Style
----------------------------------------------------------------------*/

main {
}

.index_list {
	width: fit-content;
	display: flex;
	flex-wrap: wrap;
	gap:30px;
	margin:100px auto 0;
	padding-bottom: 100px;
}
.index_list li {
	width: 340px;
	height: 68px;
	box-shadow: rgba(0, 0, 0, 0.16) 5px 10px 30px;
	border-radius: 10px;
	background: #FFF url(../images/dot_list.svg) no-repeat left 20px center / 27px;
}
.index_list li a {
	display: flex;
	height: 100%;
	font-size: 1.8rem;
	padding: 0 55px;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.index_list li a span {
	font-size: 1.2rem;
	line-height: 1.6;
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
}
.index_list li a::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images/icon_arrow_circle_gray.svg") no-repeat center / cover;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.index_list li a:hover {
		opacity: 0.6;
		transition: 0.3s;
}
.pdf_content {
	padding: 100px 0;
	word-break: break-all;
}
.pdf_content h3 {
	font-size: 2.8rem;
	border-left: solid 3px var(--violet);
	line-height: 1.4;
	padding-left: 30px;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
}
.pdf_list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;	
}
.pdf_list:not(:last-of-type) {
	margin-bottom: 50px;
}
.pdf_list li {
	width: 240px;
	height: 80px;
	box-shadow: rgba(0, 0, 0, 0.16) 5px 10px 30px;
	background: #fff url("../images/icon_pdf.svg") no-repeat right 15px center / 20px;
}
.pdf_list li a {
	width: 100%;
	height: 100%;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 15px;
}
.pdf_list li a span {
	display: block;
	font-size: 1.2rem;
	color: #B5B5B5;
}
.pdf_list li a:hover {
	opacity: 0.6;
	transition: 0.3s;
}


}


@media screen and (max-width:767px){
/*----------------------------------------------------------------------
SP Style
----------------------------------------------------------------------*/

main {
}
.page_content h2 {
	margin-bottom: 30px;
}

.index_list {
	width: fit-content;
	display: flex;
	flex-wrap: wrap;
	gap:30px;
	margin:50px auto 0;
	padding-bottom: 50px;
}
.index_list li {
	width: 340px;
	height: 68px;
	box-shadow: rgba(0, 0, 0, 0.16) 5px 10px 30px;
	border-radius: 10px;
	background: #FFF url(../images/dot_list.svg) no-repeat left 20px center / 27px;
}
.index_list li a {
	display: flex;
	height: 100%;
	font-size: 1.8rem;
	padding: 0 55px;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.index_list li a span {
	font-size: 1.2rem;
	line-height: 1.6;
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
}
.index_list li a::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images/icon_arrow_circle_gray.svg") no-repeat center / cover;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.pdf_content {
	padding: 40px 0 50px;
	word-break: break-all;
}
.pdf_content h3 {
	font-size: 2.2rem;
	border-left: solid 3px var(--violet);
	line-height: 1.4;
	padding-left: 30px;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
}
.pdf_list {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 20px;	
}
.pdf_list:not(:last-of-type) {
	margin-bottom: 50px;
}
.pdf_list li {
	width: 80%;
	height: 60px;
	box-shadow: rgba(0, 0, 0, 0.16) 5px 10px 30px;
	background: #fff url("../images/icon_pdf.svg") no-repeat right 15px center / 20px;
}
.pdf_list li a {
	width: 100%;
	height: 100%;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 15px;
}
.pdf_list li a span {
	display: block;
	font-size: 1.2rem;
	color: #B5B5B5;
}


}



