/* CSS Document */

#document{
	padding-top: 0;
	overflow: hidden;
	}
	#document header{
		padding-top: 0;
		}
	#document h2{
		position: relative;
		padding: 1em 0;
		color: #F38D00;
		font-size: 2.25em;
		font-weight: bold;
		text-align: center;
		line-height: 1.5em;
		z-index: 1;
		}
		#document h2:before{
			content: "";
			position: absolute;
			top: 0;
			left: calc(50% - 50vw);
			width: 100vw;
			height: 100%;
			background: #fff;
			border-bottom: 5px solid currentColor;
			z-index: -1;
			}
	#document h2+div{}
		#document h2+div p{
			line-height: 1.7em;
			}
		#document h2+div li{
			position: relative;
			margin-top: 2em;
			padding-left: 1.2em;
			line-height: 1.7em;
			}
			#document h2+div li:before{
				content: "■";
				position: absolute;
				top: 0;
				left: 0;
				}
		#document h2+div a{
			color: #0096BA;
			text-decoration: underline;
			}
	#document section{
		padding-top: 0;
		}
	#document h3{
		display: none;
		}
	#document dl{
		padding: 1em;
		background: #fff;
		border: 1px solid #B0B4BA;
		border-radius: 12px;
		}
	#document dt{
		font-weight: bold;
		line-height: 1.5em;
		}
	#document dt+dd{
		margin: 1em 0;
		}
	#document dt+dd+dd{
		font-size: 0.875em;
		color: #666;
		line-height: 1.7em;
		}
	#document dd{}
		#document dd:last-child{
			width: 100%;
			margin-top: auto;
			}
		#document dd ul{
			display: flex;
			align-items: center;
			margin: 2em 0 1em 0;
			}
		#document dd li{
			display: flex;
			align-items: center;
			color: #000;
			font-weight: bold;
			}
			#document dd li:before{
				content: attr(data-type);
				margin-right: 0.5em;
				font-size: 0.875em;
				font-weight: normal;
				}
		#document dd li+li{
			margin-left: 1em;
			padding-left: 1em;
			border-left: 1px solid #B0B4BA;
			}
		#document dd a{
			position: relative;
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			padding: 1em;
			padding-right: 3em;
			background: #fff;
			border: 1px solid #b2b6bc;
			border-radius: 6px;
			color: inherit;
			font-weight: bold;
			text-align: center;
			line-height: 1.5em;
			text-decoration: none;
			cursor: pointer;
			}
			#document dd a:hover{
				border-color: currentColor;
				color: #F38D00;
				}
		#document dd i{
			position: absolute;
			top: calc(50% - 0.5em);
			right: 1em;
			}
	#document footer{
		display: flex;
		flex-direction: column;
		padding-top: 0;
		}
		#document footer li{
			padding-left: 1em;
			text-indent: -1em;
			line-height: 1.5em;
			}
		#document footer li+li{
			margin-top: 1em;
			}
	#document h4{}
	#document h4+div{
		display: flex;
		justify-content: center;
		margin-top: 2em;
		}
		#document h4+div a{
			position: relative;
			display: block;
			width: 100%;
			width: 390px;
			padding: 1.5em;
			background: #F38D00;
			border-radius: 6px;
			color: #fff;
			fill: currentColor;
			font-weight: bold;
			text-align: center;
			text-decoration: none;
			}
		#document h4+div i{
			position: absolute;
			top: calc(50% - 0.5em);
			left: 1.5em;
			transform: scale(1.2);
			}
	#document h4+div+div{
		margin-bottom: 2em;
		order: -1;
		}
	#document .thumb{
		padding-top: 120%;
		}




/* for all */
@media (max-width: 1199.98px) {
/*1199px以下*/
}
@media (max-width: 991.98px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767.98px) {
/*767以下px*/
#document{}
	#document h2+div{
		margin-top: 2em;
		}
}
@media (max-width: 767.98px) and (orientation:portrait) {
/*767px以下 縦向き*/
#document{}
	#document dl+dl{
		margin-top: 2em;
		}
}
@media (max-width: 767.98px) and (orientation:landscape) {
/*767px以下 横向き*/
}
@media (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) {
/*767px以下 横向き, 768px以上,*/
#document{}
	#document h3+div{
		display: flex;
		flex-wrap: wrap;
		}
}
@media (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) and (max-width: 991.98px) {
/*767px以下 横向き, 768px～991px*/
#document{}
	#document dl{
		width: calc(33.33% - 1em);
		}
		#document dl:nth-of-type(n+4){
			margin-top: 2em;
			}
		#document dl:not(:nth-of-type(3n+1)){
			margin-left: 1em;
			}
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 1199.98px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991.98px) {
/*768px～991px*/
#document{}
	#document h2+div{
		margin-top: 3em;
		}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#document{}
	#document h2+div{
		margin-top: 4em;
		}
	#document dl{
		width: calc(25% - 1.125em);
		}
		#document dl:nth-of-type(n+5){
			margin-top: 2em;
			}
		#document dl:not(:nth-of-type(4n+1)){
			margin-left: 1.5em;
			}
}
@media (min-width: 992px) and (max-width: 1199.98px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
#document{}
	#document header{
		margin: 0 100px;
		}
	#document footer{
		margin: 0 100px;
		}
}



