/* CSS Document */

#download{
	padding: 0;
	}
	#download header{
		padding: 0;
		overflow: hidden;
		}
	#download 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;
		}
		#download 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;
			}

#downloadList{
	background: #fff;
	}
	#downloadList section{
		padding: 2em 0;
		border-bottom: 1px solid #AFB3B9;
		}
		#downloadList section > h3{
			position: relative;
			width: 100%;
			padding-left: calc(4px + 0.5em);
			font-weight: bold;
			font-size: 1.25em;
			line-height: 1.5em;
			}
			#downloadList section > h3:before{
				content: "";
				position: absolute;
				top: 0.2em;
				left: 0;
				width: 4px;
				height: 1em;
				background: #F38D00;
				}
	#downloadList h3+div{
		margin-top: 1em;
		}
	#downloadList h3+div+div{
		display: flex;
		}
		#downloadList h3+div+div a{
			position: relative;
			display: flex;
			align-items: center;
			justify-content: center;
			/*
			width: 100%;
			max-width: 270px;
			*/
			min-width: 350px;
			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;
			white-space: nowrap;
			text-decoration: none;
			}
			#downloadList h3+div+div a:hover{
				border-color: currentColor;
				color: #F38D00;
				}
		#downloadList h3+div+div i{
			position: absolute;
			top: calc(50% - 0.5em);
			right: 1em;
			}
	#downloadList .fr-view{
		line-height: 1.7em;
		}




/* for all */
@media (max-width: 1199.98px) {
/*1199px以下*/
}
@media (max-width: 991.98px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767.98px) {
/*767以下px*/
}
@media (max-width: 767.98px) and (orientation:portrait) {
/*767px以下 縦向き*/
#downloadList{}
	#downloadList h3+div+div{
		justify-content: center;
		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以上,*/
#downloadList{}
	#downloadList section{
		display: -ms-grid;
		-ms-grid-columns: auto auto;
		display: grid;
		grid-template-columns: auto auto;
		}
		#downloadList section > h3{
			-ms-grid-column: 1;
			-ms-grid-row: 1;
			}
	#downloadList h3+div{
		-ms-grid-column: 1;
		-ms-grid-row: 2;
		}
	#downloadList h3+div+div{
		-ms-grid-column: 2;
		-ms-grid-row: 1;
		-ms-grid-row-span: 3;
		grid-column: 2;
		grid-row: 1 / 3;
		align-items: center;
		justify-content: flex-end;
		margin-left: 2em;
		}
}
@media (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) and (max-width: 991.98px) {
/*767px以下 横向き, 768px～991px*/
}


/* 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*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
}
@media (min-width: 992px) and (max-width: 1199.98px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
#downloadList{}
	#downloadList section{
		margin: 0 3.5em;
		}
}



