@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

html{
	overflow: auto;
}

body{
	background: #F3FCF9;
	overflow: hidden;
	min-width: 1250px;
}

body,
table,
input,textarea,select,option{
	font-family: "Noto Sans JP", sans-serif;
	color: #333333;
}

:root{
/* 先輩の声(雇用) */
	--employment-color: #70B9D3;
	--employment-thin-color: #B0D7E5;
/* 先輩の声(独立) */
	--independence-color: #AC9454;
	--independence-thin-color: #F4EACE;
/* 農業の業種について */
	--industry-color: #A59BD6;
	--industry-thin-color: #D5CEE4;
/* お役立ち情報 */
	--useful-color: #69B260;
	--useful-thin-color: #9EC99E;
/* 移住とお金 */
	--money-color: #B5826B;
	--money-thin-color: #F7CAB6;
}

.arial{
	font-family: "arial", sans-serif;
}

/* 先輩の声(雇用) */
.employment-bg{
	background: var(--employment-color);
}

.employment-bg-thin{
	background: var(--employment-thin-color);
}

.employment-border{
	border-color: var(--employment-color)!important;
}

.employment-color{
	color: var(--employment-color);
}

/* 先輩の声(独立) */
.independence-bg{
	background: var(--independence-color);
}

.independence-bg-thin{
	background: var(--independence-thin-color);
}

.independence-border{
	border-color: var(--independence-color)!important;
}

.independence-color{
	color: var(--independence-color);
}
/* 農業の業種について */
.industry-bg{
	background: var(--industry-color);
}

.industry-bg-thin{
	background: var(--industry-thin-color);
}

.industry-border{
	border-color: var(--industry-color)!important;
}

.industry-color{
	color: var(--industry-color);
}
/* お役立ち情報 */
.useful-bg{
	background: var(--useful-color);
}

.useful-bg-thin{
	background: var(--useful-thin-color);
}

.useful-border{
	border-color: var(--useful-color)!important;
}

.useful-color{
	color: var(--useful-color);
}
/* 移住とお金 */
.money-bg{
	background: var(--money-color);
}

.money-bg-thin{
	background: var(--money-thin-color);
}

.money-border{
	border-color: var(--money-color)!important;
}

.money-color{
	color: var(--money-color);
}


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clear{
	clear: both;
}

.clearfix:after{
	content: "";
	clear: both;
	display: block;
}

.f-left{
	float: left;
}

.f-right{
	float: right;
}

a{
	color: #00B889;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

p{
	word-break: break-all;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.57;
}

ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.rel{
	position: relative;
}

.v-center {
	display: table;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex.flexstart{
	align-items: flex-start;
}

.flex.flexcenter{
	align-items: center;
}

.flex.flexend{
	align-items: flex-end;
}

.flex.jc-start{
	justify-content: flex-start;
}

.flex.jc-center{
	justify-content: center;
}

.flex.jc-end{
	justify-content: flex-end;
}

.flex.reverse{
	flex-direction: row-reverse;
}

.table-box{
    border-collapse: collapse;
	display: table;
	width: 100%;
}

.table-box .row{
	display: table-row;
}

.table-box .row > div{
	display: table-cell;
}

.trance{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.shadow{
//	-moz-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-ms-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-o-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-webkit-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
}

.mt10{margin-top: 10px;}
.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt70{margin-top: 70px;}
.mt80{margin-top: 80px;}
.mt90{margin-top: 90px;}
.mt100{margin-top: 100px;}

.txt-center{
	text-align: center;
}

.blo-center{
	display: table;
	margin-left: auto;
	margin-right: auto;
}

.pc{display:block;}
.sp{display:none;}

.bg-green{
	background: #00B889;
}

.bg-white{
	background: #ffffff;
}

.c-green{
	color: #00B889;
}

.c-white{
	color: #ffffff;
}

.c-black{
	color: #333333;
}

.outer{
	margin: 0 auto;
	max-width: 1366px;
}

.inner{
	margin: 0 auto;
	max-width: 1126px;
	width: 90%;
}

.header{
	padding: 12px 30px 20px;
}

.header .cmn-tl{
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 10px;
}

.logo{
	display: flex;
	align-items: baseline;
	width: 302px;
}

.logo span{
	color: #000000;
	font-size: 28px;
	font-weight: 700;
}

.header .h-nav{
	gap: 12px;
}

.header .nav-menu{
	background: #ffffff;
	border-radius: 43px;
	height: 85px;
	padding: 0 43px;
	gap: 30px;
}

.header .nav-menu li{
	font-size: 15px;
	font-weight: 700;
}

.header .portal-site{
	border-radius: 43px;
	height: 85px;
	width: 232px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.header .portal-site img{
	width: 140px;
}

.header .portal-site span{
	color: #333333;
	display: block;
	font-size: 15px;
	font-weight: 700;
}

footer{
	border-radius: 60px 60px 0 0;
	padding: 60px 0;
}

footer .f-top{
	margin-bottom: 35px;
}

footer .logo span{
	color: #ffffff;
}

footer .portal-site{
	border: 1px solid #ffffff;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	height: 58px;
	max-width: 348px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

footer .portal-site::after{
	content: "\f061";
	font-family: "Fontawesome";
	border: 1px solid #ffffff;
	border-radius: 50%;
	font-size: 10px;
	height: 18px;
	width: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer .nav{
	gap: 20px;
}

footer .nav .blo{
	width: calc((100% / 3) - 10px);
}

footer .nav h3{
	border-bottom: 1px solid #ffffff;
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 12px;
}

footer .nav * + h3{
	margin-top: 25px;
}

footer .nav h3 a::after{
	content: "\f061";
	font-family: "Fontawesome";
	border: 1px solid #ffffff;
	border-radius: 50%;
	font-size: 10px;
	height: 22px;
	width: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer .nav-flex{
	gap: 75px;
}

footer .f-nav-menu{
	margin-top: 15px;
}

footer .f-nav-menu li{
	font-size: 15px;
	font-weight: 700;
}

footer .f-nav-menu li:not(:last-child){
	margin-bottom: 5px;
}

footer .f-btm{
	border-top: 1px solid #ffffff;
	margin-top: 60px;
	padding-top: 20px;
}

footer .f-btm .sns-links{
	gap: 12px;
}

footer .f-btm .sns-links li{
	font-size: 34px;
}

footer .copy{
	font-weight: 400;
}

/*------------------------------------------------------------
	レスポンシブ
------------------------------------------------------------*/
@media all and (min-width: 0) and (max-width: 767px){
	.pc{display:none;}
	.sp{display:block;}

	body{
		min-width: auto;
	}
	
	.sp-mt10{margin-top: 10px;}
	.sp-mt15{margin-top: 15px;}
	.sp-mt20{margin-top: 20px;}
	.sp-mt30{margin-top: 30px;}
	.sp-mt40{margin-top: 40px;}
	.sp-mt50{margin-top: 50px;}
	.sp-mt60{margin-top: 60px;}
	.sp-mt70{margin-top: 70px;}
	.sp-mt80{margin-top: 80px;}
	.sp-mt90{margin-top: 90px;}
	.sp-mt100{margin-top: 100px;}
	
	.header {
		padding: 10px 15px 15px;
	}
	
	.header .cmn-tl {
		font-size: 10px;
	}
	
	.logo img{
		width: 157px;
	}
	
	.logo span {
		font-size: 16px;
	}
	
	.o-hidden{
		overflow: hidden;
	}
	
	#panel{
		display: none;
		position: absolute;
		right: 0;
		top: 0;
		width: 70%;
		height: 100vh;
		background: #F3FCF9;
		z-index: 5;
		padding: 100px 15px 60px;
		box-shadow: -10px 0 8px rgba(0, 0, 0, 0.16);
	}
	
	.header .nav-menu {
		background: transparent;
		border-radius: unset;
		height: auto;
		padding: 0;
		gap: 30px;
		box-shadow: unset;
	}
	
	.header .portal-site{
		width: 100%;
	}
	
	.header .h-nav {
		gap: 30px;
	}
	
	#panel-btn{
		display: block;
		position: relative;
		width: 58px;
		height: 40px;
		border-radius: 20px;
		background: #fff;
		z-index: 10;
	}

	#panel-btn-icon{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 18px;
		height: 2px;
		background: #333333;
		transition: .2s;
		transform: translate(-50%, -50%);
	}

	#panel-btn-icon:before, #panel-btn-icon:after{
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 18px;
		height: 2px;
		background: #333333;
		transition: .3s;
	}

	#panel-btn-icon:before{
		margin-top: -6px;
	}

	#panel-btn-icon:after{
		margin-top: 4px;
	}

	#panel-btn .close{
		background: transparent;
	}

	#panel-btn .close:before, #panel-btn .close:after{
		margin-top: 0;
	}

	#panel-btn .close:before{
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}

	#panel-btn .close:after{
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
	
	footer {
		border-radius: 30px 30px 0 0;
		padding: 40px 0 60px;
	}
	
	footer .logo{
		margin: 0 auto 30px;
	}
	
	footer .nav{
		display: none;
	}
	
	footer .f-btm {
		margin-top: 20px;
		flex-direction: column;
		gap: 20px;
	}
	
}