@charset "utf-8";
/* -----------------------------------------
	mainContents
----------------------------------------- */
#mainContents {
	width: 100%;
	position: relative;
}
#mainContents .container {
	width: 100%;
	padding-top: 70px;
}
#mainContents .container > .contentsWrapper {
	max-width: 970px;
	width: 100%;
	margin: 0 auto;
	padding: 0 10px;
}
#mainContents .container > .contentsWrapper > .wrapper {
	padding-bottom: 150px;
}

@media screen and (max-width: 1050px) and (min-width: 751px){
	#mainContents.haveSide .container > .contentsWrapper {
		max-width: 970px;
		width: 100%;
		margin: 0 auto;
		padding: 0 45px;
	}
}

/*レイアウト　2カラム*/
.col2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.col2 > * {
	max-width: 460px;
	width: 48.5%;
	margin-bottom: 20px;
}

@media screen and (max-width: 750px){

	#mainContents {
		width: 100%;
		position: relative;
	}
	#mainContents .container {
		width: 100%;
		padding-top: 15%;
	}
	#mainContents .container > .contentsWrapper {
		max-width: 100%;
		width: 100%;
		margin: 0 auto;
		padding: 0 4%;
	}
	#mainContents .container > .contentsWrapper > .wrapper {
		padding-bottom: 25%;
	}

	/*レイアウト　2カラム_sp1カラム*/
	.col2 {
		display: block;
	}
	.col2 > * {
		max-width: 100%;
		width: 100%;
		margin-bottom: 5%;
	}
}

/* -----------------------------------------
	pageTop
----------------------------------------- */

.pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 98;
}
.pageTop a {
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #008803;
	position: relative;
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.5);
}
.pageTop a:hover {
	transition-duration: .2s;
	box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.5);
}
.pageTop a img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

@media screen and (max-width: 750px){

	.pageTop {
		position: fixed;
		bottom: 20px;
		right: 10px;
		z-index: 98;
	}
	.pageTop a {
		display: block;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: #008803;
		position: relative;
		box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.5); 
	}
	.pageTop a img {
		width: 50%;
	}
}

/* -----------------------------------------
	汎用スタイル
----------------------------------------- */

/*リンクスタイル*/
.linkPage a {
	padding-left: 20px;
	position: relative;
	display: inline-block;
}
.linkPage a:before {
	content: "";
	display: block;
	background: url(/material/img/ico_link.svg) no-repeat;
	background-size: contain;
	transform: rotate(90deg);
	width: 6px;
	height: 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 5px;
	margin: auto;
}
.linkBlank a:before {
	content: "";
	display: block;
	background: url(/material/img/ico_blank.svg) no-repeat;
	background-size: contain;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 5px;
	left: 0;
}
.pdfLink:after {
	content: "";
	display: inline-block;
	background: url(/material/img/ico_pdf.svg) no-repeat;
	background-size: contain;
	width: 12px;
	height: 12px;
	vertical-align: middle;
	margin:0 5px;
}
.link02 a,
.linkBlank02 a{
	position: relative;
	padding: 10px 25px 10px 10px;
	display: block;
	border-bottom: 1px solid #ddd;
}
.link02 a:hover,
.linkBlank02 a:hover{
	text-decoration: none;
	border-bottom: 1px solid #008803;
}
.link02 a:after {
	content: "";
	display: block;
	background: url(/material/img/ico_link.svg) no-repeat;
	background-size: contain;
	width: 6px;
	height: 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 10px;
}
.linkBlank02 a:after {
	content: "";
	display: block;
	background: url(/material/img/ico_blank.svg) no-repeat;
	background-size: contain;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 10px;
}

/*カード型ボックス*/
.cardsBox {
	background: #fff;
	padding: 30px;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 750px){
	/*カード型ボックス*/
	.cardsBox {
		padding: 5%;
	}
}