@charset "utf-8";


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

/* PDFリンク */

.secPdfList{
	margin-top: 98px;
}
.pdfBox{
	border-top: solid 1px #333333;
	margin-top: 50px;
	padding: 30px 20px 0;
}
.pdfList{
	display: flex;
	flex-wrap: wrap;
	margin-top: 34px;
}
.pdfList .pdfItem{
	width: 23.864%;
	margin-right: 1.5146%;
}
	.pdfList .pdfItem:nth-child(4n){
		margin-right: 0;
	}
	.pdfList .pdfItem:nth-child(n+5){
		margin-top: 1.5146%;
	}
	.pdfList .pdfItem:last-child{
		margin-right: 0;
	}

	.pdfList .pdfInner{
		height: 70px;
		line-height: 1.3;
		border-radius: 5px;
		border: solid 1px #d8d8d8;
		box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.05);
		display: flex;
		align-items: center;
		text-decoration: none;
		color: #333333;
		font-size: 18px;
		letter-spacing: 0.5px;
		font-weight: bold;
		position: relative;
		padding: 0 0 3px 58px;
	}
	.pdfList .pdfInner.lazyloaded {
		background: url(../img/report/iconrReport.png) center left 20px / 24px auto no-repeat #fff;
	}
	.pdfList .pdfAll{
		width: 100%;
	}
	.pdfList .pdfAll .pdfInner.lazyloaded {
		background-color:#fffde5;
	}
	
	@media only screen and (min-width:1024px) and (max-width:1400px){

		.pdfList .pdfItem,
		.pdfList .pdfItem:nth-child(4n){
			width: 32%;
			margin-right: 2%;
		}
		.pdfList .pdfItem:nth-child(3n){
			margin-right: 0;
		}
		.pdfList .pdfItem:nth-child(n+4){
			margin-top: 2%;
		}
		.pdfList .pdfAll{
			width: 100%;
		}

	}
	@media only screen and (min-width:1024px) and (max-width:1100px){

		.pdfList .pdfInner{
			font-size: 17px;
		}
	}
	@media only screen and (max-width:1023px){

		.secPdfList{
			margin-top: 48px;
		}
		.pdfBox{
			margin-top: 25px;
			padding: 16px 0 0;
		}
		.pdfList{
			margin-top: 17px;
		}
		.pdfList .pdfItem{
			width: 48.406%;
			margin-right: 3.188%;
		}
		.pdfList .pdfItem:nth-child(4n){
			margin-right: 3.188%;
		}
		.pdfList .pdfItem:nth-child(2n){
			margin-right: 0;
		}
		.pdfList .pdfItem:nth-child(n+3){
			margin-top: 3.188%;
		}

		.pdfList .pdfAll{
			width: 100%;
		}

		.pdfList .pdfInner{
			height: 46px;
			border-radius: 3px;
			box-shadow: inset 0px -3px 0px 0px rgba(0, 0, 0, 0.05);
			font-size: 11px;
			letter-spacing: normal;
			padding: 0 0 0 32px;
		}
		.pdfList .pdfInner.lazyloaded {
			background: url(../img/report/iconrReport.png) center left 10px / 15px auto no-repeat #fff;
		}
	}
	@media only screen and (max-width:359px){
		.pdfList .pdfInner{
			font-size: 10px;
		}

	}




/* --------------------------------- */
/* 共通 */


.secItemList{
	margin-top: 98px;
}


/* h2タイトル */
.topTit{
	font-size: 26px;
	color: #003656;
	letter-spacing: 1px;
	font-weight: bold;
	padding-left: 53px;
	position: relative;
}
.topTit::before{
	position: absolute;
	content: "";
	background: #003656;
	width: 30px;
	height: 1px;
	left: 0;
	top: calc(50% - 0.5px);
}
@media only screen and (max-width:1023px){

	.topTit{
		font-size: 16px;
		letter-spacing: normal;
		padding-left: 22px;
	}
	.topTit::before{
		width: 15px;
	}

}

/* タイトル下のエリア */

.itemBox {
	border-top: solid 1px #333333;
	margin-top: 50px;
	padding: 30px 20px 0;
	font-size: 16px;
}
@media screen and (max-width: 1023px) {
	.itemBox {
		font-size: 11px;
	}
}


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

/* 最初の注意書き */
.note {
	margin-top: 98px;
	border: 3px solid #f98f8f;
	padding: 20px;
	color: #df0303;
	border-radius: 8px;
	font-size: 16px;
	box-sizing: border-box;
	line-height: 1.5;
	font-weight: bold;
}
/* 文字ブロック＋！をまとめて中央寄せ */
.noteBody {
	position: relative;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
	padding-left: 180px;
	text-align: left;
}
	/* ！の丸印 */
	.noteBody::before {
		content: "!";
		position: absolute;
		top: 50%;
		left: 25px;
		transform: translateY(-50%);

		width: 100px;
		height: 100px;
		border-radius: 50%;
		background: #ea0000;
		color: #fff;

		display: flex;
		align-items: center;
		justify-content: center;

		font-weight: bold;
		font-size: 80px;
		line-height: 1;
	}
	.noteBody p:nth-of-type(1) {
		font-size: 120%;
	}
	.noteBody p:nth-of-type(2) {
		margin: 0.5em 0;
		font-size: 40px;
	}
	.noteBody p:nth-of-type(3) {
		color: #000;
	}

	@media screen and (max-width: 1023px) {
		.note {
			font-size: 11px;
		}
		.noteBody p:nth-of-type(2) {
			font-size: 16px;
		}
		.noteBody {
			padding-left: 60px;
		}
		.noteBody::before {
			width: 50px;
			height: 50px;
			font-size: 40px;
			left: 0px;
		}

	}


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

.flow {
	display: flex;
	gap: 40px;
	padding: 0;
	margin: 0 0 20px;
	list-style: none;
	counter-reset: step;	/* カウント0 */
}

.flow li {
	position: relative;
	flex: 1;
	counter-increment: step;	/* カウント+1 */
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #fff;
}

	/* 矢印 */
	.flow li:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 50%;
		right: -28px;
		width: 14px;
		height: 14px;
		border-top: 3px solid #999;
		border-right: 3px solid #999;
		transform: translateY(-50%) rotate(45deg);
	}

.flow dt {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}
	/* STEP 1 など */
	.flow dt::before {
		content: "STEP " counter(step);	/* カウント表記 */
		display: inline-block;
		margin:0 1em 8px 0;
		font-size: 13px;
		font-weight: bold;
		color: #fff;
		background: #333;
		padding: 4px 10px;
		border-radius: 20px;
	}

.flow dd {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
}

@media screen and (max-width: 1023px) {

	.flow {
		flex-direction: column;
		gap: 30px;
	}
	.flow dt {
		font-size: 12px;
	}
	.flow dd {
		font-size: 11px;
	}

	.flow li:not(:last-child)::after {
		top: auto;
		right: 50%;
		bottom: -23px;
		transform: translateX(50%) rotate(135deg);
	}
}


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

.faq {
	margin-bottom:80px;
	line-height:150%;
}
.faq dt {
	margin-bottom:20px;
	padding:0 0 0 2em;
	text-indent:-2em;
	color:#506fa2;
}
	.faq dt:before {
		content:"Q";
		font-size:130%;
		display: inline-block;
		margin: 0 0.5em 0 0;
		padding: 0 5px;
		width: 1.5em;
		height: 1.5em;
		text-indent:0;
		line-height: 1.5em;
		vertical-align: middle;
		text-align: center;
		color: #FFF;
		font-weight: bold;
		background: #506fa2;
		border-radius: 50%;
		box-sizing: border-box;
	}

.faq dd {
	margin-bottom:20px;
	padding-bottom:20px;
	border-bottom:1px dashed #ccc;
	padding-left:2.8em;
	text-indent:-2.8em;

}
	.faq dd:before {
		text-indent:0;
		content:"A";
		font-size:130%;
		display: inline-block;
		margin: 0 0.5em 0 0;
		padding: 0 5px;
		width: 1.5em;
		height: 1.5em;
		line-height: 1.5em;
		vertical-align: middle;
		text-align: center;
		color: #FFF;
		font-weight: bold;
		background: #e34343;
		border-radius: 50%;
		box-sizing: border-box;
		
	}


