@charset "UTF-8";
/*
	BASE
*******************************/

/*
font-family: "Montserrat", sans-serif;
font-family: "Noto Sans JP", sans-serif;
*/
* {
	font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,'Hiragino Kaku Gothic Pro',Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
	margin: 0;
	padding: 0;
	box-sizing:border-box;
	font-feature-settings: "palt";
	line-height:1;
}

.min {
	font-family: "Noto Serif", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

html {
	font-size:62.5%;
	line-height:1;
	body {
		font-size:1.6rem;
		font-weight:500;
		background-color: var(--color_bg);
		img {
			-webkit-backface-visibility: hidden;
			vertical-align:bottom;
			line-height:0;
			max-width: 100%;
			height: auto;
		}
		p,th,td,dt,dd,li,h1,h2,h3,h4,h5,h6,label {
			color:#000000;
		}
		a {
			color:#000000;
			text-decoration:none;
			outline:none;
			border:none;
			img {
				outline:none;
				border:none;
				-webkit-backface-visibility: hidden;
			}
		}
		area {
			border:none;
			outline:none;
		}
		.clear { clear:both;}
	} 
}

:root {
	--color_def: #000000;
	--color_bg: #FCFBF9;
	--color_main: #166E3A;
	--color_sub: #DB932E;
	--color_sub2: #189921;
	--color_sub3: #F3EFE6;
}

.nolink {
	& > a {
		pointer-events: none!important;
	}
}
a {
	&.nolink {
		pointer-events: none!important;
	}
}

/*//////////////////////////////////////////////////////////////////////////*/

/*
	BASE LAYOUT
******************/

.wrap {
	.contents {
		max-width:1100px;
		width: calc(100% - 60px);
		margin:0 auto;
		p {
			font-size: 1.6rem;
			line-height: 2;
		}
		.btn {
			background-color:var(--color_sub);
			width:260px;
			height:70px;
			font-size:1.4rem;
			padding:0 1em 0 2em;
			color:#FFFFFF;
			display:grid;
			grid-template-columns:1fr 4em;
			align-items:center;
			grid-column-gap: 1.5em;
		}
	}
}

@media ( hover:hover) {

	a {
		transition: .3s;
		&:hover {
			text-decoration: none;
			opacity: .75;
		}
	}

	section {
		.wrap {
			.contents {
				.btn {
					img {
						transition:.3s;
					}
					&:hover {
						opacity:1;
						filter:brightness(1.1);
						img {
							transform:translateX(5px);
						}
					}
				}
			}
		}
	}
	
}


@media screen and (max-width:1024px){

	.wrap {
		.contents {
			width: calc(100% - 50px);
		}
	}
	
}

@media screen and (max-width:768px){

	.wrap {
		.contents {
			width: calc(100% - 40px);
			p {
				font-size: 1.4rem;
				line-height: 1.8;
			}
			.btn {
				width:250px;
				height:60px;
			}
		}
	}
	

}


@media screen and (max-width:1024px) {
    .pcOnly2 {
    	display:none !important;
    }
}
@media screen and (max-width:768px) {
    .pcOnly {
    	display:none !important;
    }
    .tbOnly {
    	display:none !important;
    }
}
@media screen and (min-width:1025px) {
    .tbOnly {
    	display:none !important;
    }
    .sptbOnly {
    	display:none !important;
    }
}
@media screen and (min-width:769px) {
    .spOnly {
    	display:none !important;
    }
}