/*
Theme Name:角田農業振興公社
*/

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap');

html,
button,
input,
select,
textarea {
	color: #121212;
}

html,
body {
	height: 100%;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

.flex-area {
	display: flex;
	justify-content: space-between;
}

.flex-area-left {
	justify-content: flex-start;
	align-items: center;
}

div {
	box-sizing: border-box;
}


@media screen and (max-width:414px) {
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	.flex-area {
		display: inherit;
	}

	.flex-reverse {
		display: flex;
		flex-direction: column-reverse;
	}

}

a {
	color: #874b00;
	text-decoration: none;
}

a:hover {
	color: #ffcb00;
	cursor: pointer;
}

li {
	list-style: none;
}

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



body {
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-size: 15px;
	line-height: 180%;
	letter-spacing: 1px;
	background-color: #fff;
	margin: 0;
	padding: 0;


	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
}

@media screen and (max-width:414px) {
	body {
		font-size: 14px;
	}
}

.contents {
	width: 100%;
	margin: 0 auto;
}

section {
	width: 100%;
	margin: 60px auto;
	padding: 0 1%;
	box-sizing: border-box;
}

section.first {
	margin-top: 20px;
}

.container {
	width: 1030px;
	position: relative;
	margin: 0 auto;

}

.container.second {
	padding: 0 5%;
}

@media screen and (max-width:1200px) {
	.container {
		width: calc(100% - 70px);
		margin-left: 70px;
	}

}

@media screen and (max-width:414px) {
	.container {
		width: 100%;
		margin-left: 0px;
	}
}

/*サイドバー*/
.side {
	position: fixed;
	width: 70px;
	height: 100vh;
	left: 0;
	top: 0;
	background-color: #fff;
	filter: drop-shadow(1px 1px 3px rgba(125, 125, 125, 0.8));
	z-index: 120;
}



/*バーガー*/
#g-nav {
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position: fixed;
	z-index: 10;
	/*ナビのスタート位置と形状*/
	top: 0;
	left: -120%;
	width: 400px;
	height: 100vh;
	/*ナビの高さ*/
	background-color: beige;
	/*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
	left: 0;
}


/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999;
	width: 400px;
	height: calc(100% - 50px);
	/*表示する高さ*/
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav {
	padding: 10px 10px 35px 70px;

}

@media screen and (max-width:414px) {

	#g-nav {
		width: 100%;
		height: 100vh;
		/*ナビの高さ*/
		padding: 70px 5px 50px 5px;
	}

	#g-nav.panelactive #g-nav-list {
		width: 100%;
		height: calc(100% - 100px);
		/*表示する高さ*/
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}

}

#g-nav h1 {
	width: 85%;
	max-width: 300px;
	margin: 0 auto;
	padding: 15px;
	box-sizing: border-box;
	border-bottom: thin solid #063332;
}

#g-nav ul {
	padding-left: 20px;
	padding-top: 20px;
	/*ナビゲーション天地中央揃え
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);*/
}

/*リストのレイアウト設定*/

#g-nav ul.main-nav li {
	list-style: none;
	text-align: left;
	line-height: 1.8;
}

#g-nav li a {
	border-bottom: thin dashed #999;
	font-size: 1.2rem;
	display: block;
	width: 100%;
	font-family: 'M PLUS 1p', sans-serif;
}

#g-nav .icon-cover {
	display: flex;
	align-items: center;
}

#g-nav .icon-cover i {
	margin-right: 15px;
	max-width: 40px;
}

#g-nav .icon-cover i img {
	width: 100%;
}

#g-nav ul.sub-nav {
	padding: 10px 10px 10px 40px;
}

#g-nav ul.sub-nav li a {
	font-size: 1rem;
	border: none;
	line-height: 1.5;
}


/*メニュー以外をクリックしたら閉じる動き*/
.main_cover {
	position: fixed;
	width: 100%;
	visibility: hidden;
	z-index: -1;
	-webkit-transition: .3s;
	transition: .3s;
}

.main_cover.active {
	height: 100%;
	visibility: visible;
	background: rgba(255, 255, 255, 0.4);
	z-index: 9;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
	position: fixed;
	z-index: 9999;
	/*ボタンを最前面に*/
	top: 0px;
	left: 0px;
	cursor: pointer;
	width: 70px;
	height: 70px;
	background-color: green;
}

/*×に変化*/
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 15px;
	height: 1px;
	border-radius: 2px;
	background-color: #fff;
	width: 55%;
}

.openbtn span:nth-of-type(1) {
	top: 15px;
}

.openbtn span:nth-of-type(2) {
	top: 23px;
}

.openbtn span:nth-of-type(3) {
	top: 31px;
}

.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 50%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 50%;
}

.drawer-text {
	font-size: 0.5rem;
	text-align: center;
	writing-mode: horizontal-tb;
	position: absolute;
	top: 40px;
	left: 15px;
	color: white;
}


/*サイドバーの中身*/
.side-conte {
	margin-top: 150px;
	display: flex;
	justify-content: center;
	white-space: nowrap;
}

.side-tategaki {
	writing-mode: vertical-rl;
}

.side-yokogaki {
	writing-mode: horizontal-tb;
}

.side-zip {
	font-size: 0.5rem;
	text-align: center;
	writing-mode: horizontal-tb;
}

/*headerとグローバルナビ*/

header {
	width: 100%;
	height: 80vh;
	position: relative;
	background-image: url(../img/index-header.jpg);
	background-size: cover;
	background-position: center center;
}

header.second-head {
	width: 100%;
	position: relative;
	height: 100px;
	background: none;
	padding-bottom: 20px;
}

.second-head-img {
	width: calc(100% - 70px);
	position: relative;
	margin-left: 80px;
}

.second-head-imgblock {
	background-size: cover;
	background-position: center center;
	border-radius: 10px;
	max-width: 1000px;
	height: 300px;
	margin: 0 auto;
}

.second-head-imgblock>img {
	width: 100%;
}

@media screen and (max-width:820px) {
	.second-head-img {
		width: calc(95% - 70px);
		position: relative;
		margin-left: 80px;
	}

	.second-head-imgblock {
		height: 250px;
	}
}

@media screen and (max-width:414px) {
	.second-head-img {
		width: 95%;
		position: relative;
		margin-left: 0px;
		margin: 0 auto;
	}

	.second-head-imgblock {
		height: 130px;
	}
}


.g_menu {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	padding-top: 40px;
	padding-left: 120px;
}

.syamei {
	width: 200px;
}

.syamei img {
	width: 100%;
}

.g_menu ul {
	display: flex;
	justify-content: flex-end;
	padding-right: 20px;
}

.g_menu li {
	margin-right: 20px;
	position: relative;
}

.g_menu li a {
	color: #063332;
	font-size: 1.1rem;
	font-family: 'M PLUS 1p', sans-serif;
}

.g_menu li a:hover {
	color: #028760;
	font-size: 1.1rem;
}


.g_menu ul ul {
	display: block;
}

.g_menu li.has-child ul {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	top: 30;
	width: 130%;
	z-index: 5;
	background: #fff;
	border-radius: 5px;
	padding: 10px;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	box-shadow: 0px 0px 3px #333;
}

.g_menu li.has-child:hover>ul,
.g_menu li.has-child ul li:hover>ul,
.g_menu li.has-child:active>ul,
.g_menu li.has-child ul li:active>ul {
	visibility: visible;
	opacity: 1;
}

.g_menu li.has-child ul li {
	margin: 0;
	border-bottom: thin #999 dotted;
	line-height: 1.2;
	padding: 5px 0;
}

.g_menu li.has-child ul li a {
	font-size: 0.9rem;
	letter-spacing: .7;
}

@media screen and (max-width:1170px) {
	.g_menu_cover {
		display: none;
	}

}

@media screen and (max-width:767px) {}

@media screen and (max-width:414px) {}





/*キャッチ*/
.catch {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.catch img {
	width: 100%;
}

@media screen and (max-width:1024px) {
	.catch img {
		width: 540px;
	}
}

@media screen and (max-width:414px) {
	.catch img {
		width: 400px;
	}
}

.catch-second {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.catch-second img {
	width: 100%;
}

@media screen and (max-width:1024px) {
	.catch-second img {
		width: 30vw;
	}
}

@media screen and (max-width:414px) {
	.catch-second img {
		width: 50vw;
	}
}

h2 {
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: lighter;
	font-size: 2em;
	border-bottom: dashed thin #666;
	padding-bottom: 10px;
	padding-left: 10px;
	color: #874b00;
	line-height: 1.5;
}



h3 {
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 1.3em;
	color: #874b00
}




@media screen and (max-width:414px) {
	h2 {
		font-size: 1.8em;
	}
}


footer {
	padding: 40px 0px;
	margin: 0;
	background-color: #FFE484;
}

.footer-content {
	padding: 20px 0;
	max-width: 500px;
	margin: 0 auto;
	background-image: url(../img/footer_bg.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: ;
}


/*トップページ*/

section.news {
	margin-top: 10px;
}

h4 {
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 1.2rem;
	color: #874b00;
	text-align: left;
	margin: 0;
	border-bottom: dotted thin #333;
}


#news-contents {
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px;
}

.news-post {
	width: 800px;
	height: 300px;
	/* margin-right: 10px; */
	padding: 15px;
	background-color: #FFE484;
	border: #ccc thin solid;
	overflow-y: scroll;
}

.news-post-contents {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.news-post-contents .date {
	width: 80px
}

.news-post-contents>div {
	margin: 3px 0;
}

.news-post-contents .cate {
	background-color: #FF820B;
	color: #fff;
	padding: 5px 10px;
	margin: 0px 10px;
	font-size: 13px;
	letter-spacing: 0px;
	white-space: nowrap;
}

.news-post-contents .text {}

.news-post ul li {
	border-bottom: dotted thin #333;
}

.twitter {
	width: 360px;
	height: 400px;
	border: #ccc thin solid;
	overflow: hidden;
}

.line-box {
	width: 100%;
	max-width: 800px;
}

.line-box img {
	width: 100%;
	height: auto;
}

.line-box a {
	transition: all .3s;
}

.line-box a:hover {
	opacity: .7;
}

.line-pc {
	display: none;
}

.line-sp {
	display: block;
}

/* 画像切り替え */
@media screen and (min-width: 601px) {
	.line-pc {
		display: block;
	}

	.line-sp {
		display: none;
	}
}

.x-box {
	width: 100%;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: dotted 1px gray;
	padding: 10px;
	background-color: #F7F3E8;
}

.x-title {
	color: #033003;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1;
}

.x-flex {
	width: 100%;
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: center;
}

.x-subtitle {
	flex: 1;
	max-width: 350px;
}

.x-link {
	width: 100%;
	max-width: 200px;
	aspect-ratio: 2.73/1;
	position: relative;
	display: inline-block;
	background: url("https://kakunou.or.jp/wp-content/uploads/2026/01/x-black.png") center / contain no-repeat;
	overflow: hidden;
	transition: background-image 0.3s ease;
}

/* .x-link::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("https://kakunou.or.jp/wp-content/uploads/2026/01/x-white.png") center / contain no-repeat;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.x-link:hover::before {
  transform: translateX(0);
} */

.x-link:hover {
	background-image: url("https://kakunou.or.jp/wp-content/uploads/2026/01/x-white.png");
}



@media screen and (max-width:414px) {
	.news-post {
		width: 100%;
		height: 300px;
		/* margin-right: 10px; */
		padding: 15px;
		background-color: #FFE484;
		border: #ccc thin solid;
		overflow-y: scroll;
	}

	.news-post-contents {
		display: inherit;
	}

	.x-flex {
		flex-direction: column;
	}

}


#shinki {
	position: relative;
}

.shinki-contents {
	width: 100%;
	background-image: url(../img/shinki_img.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
	height: 50vh;
}

.about-contents {
	width: 100%;
	background-image: url(../img/kousya_img.png);
	background-repeat: no-repeat;
	background-position: right top;
	background-size: contain;
	height: 50vh;
}

.shinki-text {
	position: absolute;
	right: 0;
	top: 50%;
	width: 400px;
	float: right;
}

.about-text {
	position: absolute;
	left: 100px;
	top: 100px;
	width: 400px;
	float: right;
}

.shinki-text h5 {
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: lighter;
	font-size: 2.5rem;
	color: #666;
	margin: 10px 0;
}

.shinki-text h6 {
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: lighter;
	font-size: 1.5rem;
	color: #666;
	margin: 0;
}

.about-text h5 {
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: lighter;
	font-size: 2.5rem;
	color: #666;
	margin: 10px 0;
}

.about-text h6 {
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: lighter;
	font-size: 1.5rem;
	color: #666;
	margin: 0;
}

@media screen and (max-width:414px) {
	.shinki-contents {
		background-size: 150%;
		background-position: center top;
		overflow: hidden;
		height: auto;
	}

	.about-contents {
		background-size: 150%;
		background-position: right top;
		overflow: hidden;
		height: auto;
	}

	.shinki-text {
		position: inherit;
		width: 95%;
		margin: 0 auto;
		float: inherit;
		padding-top: 250px;
	}

	.shinki-text h5 {
		font-size: 2rem;
	}

	.shinki-text h6 {
		font-size: 1rem;
	}

	.about-text {
		position: inherit;
		width: 95%;
		margin: 0 auto;
		float: inherit;
		padding-top: 250px;
	}

	.about-text h5 {
		font-size: 2rem;
	}

	.about-text h6 {
		font-size: 1rem;
	}


}



/*ボタン*/
.orange-btn {
	background-color: orange;
	border: 1px solid orange;
	padding: 10px 20px;
	color: #fff;
	text-align: center;
	width: 50%;
	float: right;
}

.orange-btn:after {
	clear: both;
}

.orange-btn:hover {
	background-color: #fff;
	border: 1px solid orange;
	padding: 10px 20px;
	color: orange;
}

.orange-btn a {
	display: block;
	color: #fff;
	text-align: center;
}

.orange-btn a:hover {
	display: block;
	color: orange;
}

.orange-btn-2 {
	background-color: orange;
	border: 1px solid orange;
	color: #fff;
	text-align: center;
	width: 70%;
	border-radius: 15px;
	margin: 10px auto;
	font-weight: bold;
	font-size: 1.1rem;
}

.orange-btn-2:hover {
	background-color: #fff;
	border: 1px solid orange;
	color: orange;
}

.orange-btn-2 a {
	display: block;
	padding: 10px 20px;
	width: 100%;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
}

.orange-btn-2 a:hover {
	display: block;
	color: orange;
}


.yellow-btn-2 {
	background-color: #ffdb4f;
	border: 1px solid #ffdb4f;
	color: #99842f;
	text-align: center;
	width: 70%;
	border-radius: 15px;
	margin: 10px auto;
	font-weight: bold;
	font-size: 1.1rem;
}

.yellow-btn-2:hover {
	background-color: #fff;
	border: 1px solid #ffdb4f;
	color: #99842f;
}

.yellow-btn-2 a {
	display: block;
	padding: 10px 20px;
	width: 100%;
	color: #99842f;
	text-align: center;
	box-sizing: border-box;
}

.yellow-btn-2 a:hover {
	display: block;
	color: #99842f;
}


@media screen and (max-width:414px) {
	.orange-btn {
		padding: 10px 10px;
	}

	.orange-btn-2 {
		width: 90%;
		padding: 10px 10px;
	}

	.yellow-btn-2 {
		width: 90%;
		padding: 10px 10px;
	}

}


.jigyou-contents h5 {
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: lighter;
	font-size: 2.5rem;
	color: #666;
	margin: 10px 0;
	margin-bottom: 40px;
}

.jigyou-block-cover {
	flex-wrap: wrap;
	justify-content: center;
}

.jigyou-block01 {
	background-image: url(../img/jigyou_bg01.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #fff;
	background-size: contain;
	border: thin #ddd solid;
	width: 500px;
	height: 231px;
	padding: 15px;
	position: relative;
	margin: 2px;
}

.jigyou-txt01 {
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: lighter;
	font-size: 1.4rem
}

.jigyou-block01:hover {
	background-color: #FFfeef;
}

.jigyou-block02 {
	background-image: url(../img/jigyou_bg02.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-color: #fff;
	background-size: contain;
	border: thin #ddd solid;
	width: 500px;
	height: 231px;
	padding: 15px;
	position: relative;
	margin: 2px;
}

.jigyou-txt02 {
	position: absolute;
	left: 20px;
	top: 20px;
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: lighter;
	font-size: 1.4rem
}

.jigyou-block02:hover {
	background-color: #FFfeef;
}

.jigyou-block03 {
	background-image: url(../img/jigyou_bg03.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-color: #fff;
	background-size: contain;
	border: thin #ddd solid;
	width: 500px;
	height: 231px;
	padding: 15px;
	position: relative;
	margin: 2px;
}

.jigyou-txt03 {
	position: absolute;
	right: 20px;
	top: 20px;
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: lighter;
	font-size: 1.4rem
}

.jigyou-block03:hover {
	background-color: #FFfeef;
}

.jigyou-block04 {
	background-image: url(../img/jigyou_bg04.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #fff;
	background-size: contain;
	border: thin #ddd solid;
	width: 500px;
	height: 231px;
	padding: 15px;
	position: relative;
	margin: 2px;
}

.jigyou-txt04 {
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: lighter;
	font-size: 1.4rem
}

.jigyou-block04:hover {
	background-color: #FFfeef;
}

@media screen and (max-width:414px) {
	.jigyou-contents h5 {
		font-size: 2rem;

	}

	.jigyou-block01,
	.jigyou-block02,
	.jigyou-block03,
	.jigyou-block04 {
		width: 100%;
		height: 90px;
		background-size: cover
	}

	.jigyou-txt01,
	.jigyou-txt02,
	.jigyou-txt03,
	.jigyou-txt04 {
		background-color: #fff;
		letter-spacing: 0;
		position: absolute;
		right: 20px;
		bottom: 20px;
		text-align: right;
		left: inherit;
		top: inherit;
	}

	.jigyou-txt01,
	.jigyou-txt02,
	.jigyou-txt03,
	.jigyou-txt04 {
		font-size: 1.1rem
	}
}



#abukuma {
	background-color: #F7F3E8;
	padding: 50px 0;
	margin-bottom: 0;
}

.abukuma-contents h5 {
	text-align: center;
}

.abukuma-contents h5 img {
	width: 100%;
	max-width: 539px;
}

.abukuma-contents-lead {
	width: 650px;
	margin: 0 auto;
	padding-bottom: 30px;
}

.abukuma-contents-lead a {
	text-decoration: underline;
	text-align: center;
}

.abukuma-cover {
	flex-wrap: wrap;
}

.abukuma-block {
	width: 30%;
	box-sizing: border-box;
	margin: 5px;
	text-align: center;
}

.abukuma-block h6 {
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 1rem;
	display: block;
	text-align: center;
}

.abukuma-block h6:after {
	content: "";
	display: block;
	border-bottom: 2px green solid;
	width: 25%;
	text-align: center;
	margin: 20px auto;
}

.abukuma-block-text {
	min-height: 480px;
}

.abukuma-block p {
	text-align: left;
}

.abukuma-block.orange-btn {}

@media screen and (max-width:414px) {
	.abukuma-contents {
		width: 95%;
		margin: 0 auto;

	}

	.abukuma-contents-lead {
		width: 95%;
		margin: 0 auto;
		padding-bottom: 30px;
	}

	.abukuma-block {
		width: 100%;
		margin: 30px 0;
		box-sizing: border-box;
	}

	.abukuma-block img {
		max-width: 250px;
	}

	.abukuma-block-text {
		min-height: inherit;
	}
}

.pan {
	font-size: 0.9rem;
}

.post-list {
	width: calc(100% - 320px);
}

.post-list ul {
	width: 100%;
}

.post-list li {
	background-color: #fff;
	border-bottom: dotted #666 thin;
	display: flex;
	align-items: center;
	padding: 10px;
}

.post-list li>div {
	margin: 0 5px;
}

.post-list li img {
	width: 150px;
	height: 100px;
	object-fit: cover;
}

.post-list li:first-child {
	border-top: dotted #666 thin;
}

.post-list li:nth-child(odd) {
	background-color: cornsilk;

}

.blog-contents img {
	float: left;
	margin-right: 15px;
	vertical-align: top;
}

@media screen and (max-width:414px) {
	.blog-contents img {
		float: inherit;
		margin-right: 0px;
		text-align: center;
		display: block;
	}

	.post-list {
		width: 100%;
	}
}

/***------------------------------------------
      side menu(secondary)
------------------------------------------***/

.sidebar-style {
	width: 320px;
	line-height: 1.8;
	font-size: 0.9rem;
	padding: 25px 0 25px 25px;
}

.sidebar-style ul {
	margin-left: 1.5em;
	list-style-type: disc;
}


.sidebar-style h4 {
	/* 注)サイドメニュー(プラグイン)タイトルフォント関連 */
	margin: 0 auto 20px;
	letter-spacing: 1px;
	padding-bottom: 10px;
	position: relative;
	font-size: 1.3rem;
	font-weight: normal;
	text-align: center;
	text-indent: 1px;
}


/*新規就農者支援ページ*/
span.shinki-syunou {
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 1.3em;
	color: #fff;
	background-color: orange;
	border-radius: 25px;
	padding: 5px 25px;

}

.hukidasi {
	position: relative;
	display: inline-block;
	margin: 1.5em 0 1.5em 15px;
	padding: 30px 20px 30px 50px;
	min-width: 120px;
	max-width: 100%;
	height: auto;
	color: #555;
	font-size: 0.9rem;
	background: #FFFEEB;
	border-radius: 15px;
	filter: drop-shadow(0 0 3px #999);
}

.hukidasi li {
	margin: 5px 0;
	list-style: square;
}


.hukidasi:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	margin-top: -15px;
	border: 15px solid transparent;
	border-right: 15px solid #FFFEEB;
}

.illust_img {
	margin-left: 20px;
}

.midashi_soudan_cover {
	width: 100%;
	margin: 30px auto;
	text-align: center;
}

.midashi_soudan {
	position: relative;
	display: inline-block;
	padding: 0 200px;
}

.midashi_soudan:before,
.midashi_soudan:after {
	content: '';
	position: absolute;
	top: 20%;
	display: inline-block;
	width: 180px;
	height: 15px;
	background-color: orange;
}

.midashi_soudan:before {
	left: 0;
}

.midashi_soudan:after {
	right: 0;
}

.soudan {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 10px;
	margin-bottom: 40px;

}

.soudan>div {
	margin: 5px;
}


@media screen and (max-width:414px) {
	.hukidasi {
		position: relative;
		display: inline-block;
		margin: 1.5em 0 1.5em 0;
		padding: 20px 10px 20px 30px;
		min-width: 120px;
		max-width: 100%;
		height: auto;
		color: #555;
		font-size: 0.9rem;
		background: #FFFEEB;
		border-radius: 15px;
		filter: drop-shadow(0 0 3px #999);
	}

	.midashi_soudan {
		position: relative;
		display: inline-block;
		padding: 0 60px;
	}

	.midashi_soudan:before,
	.midashi_soudan:after {
		content: '';
		position: absolute;
		top: 20%;
		display: inline-block;
		width: 50px;
		height: 15px;
		background-color: orange;
	}

	.soudan>div {
		width: 46%
	}

	.soudan>div img {
		width: 100%
	}
}


.img-text-middle {
	display: flex;
	align-items: center;
}

.img-text-middle img {
	margin: 0 5px;
	width: 30px
}

.aisatsu-img {
	float: left;
	margin: 0 15px 5px 0;
	position: relative;
}

.aisatsu-img:after {
	float: inherit;
}

.aisatsu-img img {
	width: 200px;
}

.aisatsu-cap {
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	text-align: center;
	padding: 5px 0;
}

.wp-block-contact-form-7-contact-form-selector input {
	height: 25px;
	padding: 2px;
	font-size: 1.1rem;
}


.syunou-iv-menu {
	width: 45%;
	margin: 15px 2px;
	position: relative;
}

.iv-bg {
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-radius: 15px;
}

.iv-title {
	font-size: 1rem;
	box-sizing: border-box;
	width: 240px;
	height: 250px;

}

.iv-title span {
	margin: 5px;
}

.iv-title p {
	text-align: right
}

.work-cate {
	background: #4EA900;
	color: #fff;
	padding: 5px 15px;
	border-radius: 15px;
}

.iv01 {
	background-image: url(../img/syunou-iv-img01.png)
}

.iv02 {
	background-image: url(../img/syunou-iv-img02.png)
}

.iv03 {
	background-image: url(../img/syunou-iv-img03.png);
	background-position: right;
	justify-content: flex-start;
}

.iv04 {
	background-image: url(../img/syunou-iv-img04.png)
}

.iv05 {
	background-image: url(../img/syunou-iv-img05.png)
}

.iv06 {
	background-image: url(../img/syunou-iv-img06.png);
	background-position: right;
	justify-content: flex-start;
}

.interview-text p {
	margin-bottom: 15px;
	text-indent: 1em;

}

.interview-text p.q {
	display: flex;
	align-items: center;
	padding-top: 15px;
}

.interview-text p.q:before {
	display: block;
	border-top: 1px solid #333;
	content: "";
	width: 30px;
}

.kyakutyu {
	font-size: 0.8rem
}

.iv-name {
	margin-top: 15px;
	font-size: 1.1rem
}

h2.iv-ttl {
	margin-top: 10px;
	font-size: 1.5rem
}

.interview-text img {
	width: 100%;
	max-width: 400px;
}

.fl-r .cap {
	font-size: 0.7em;
	text-align: right;
}

.fl-l .cap {
	font-size: 0.7em;
	text-align: left;
}

.fl-r {
	float: right;
	margin-left: 10px;
}

.fl-r:after {
	clear: both;
}

.fl-l {
	float: left;
	margin-right: 10px;
}

.fl-l:after {
	clear: both;
}


@media screen and (max-width:414px) {
	.syunou-iv-menu {
		width: 100%;
		margin: 0 auto;
	}

	.iv-title {
		width: 200px;
		height: auto;
	}

	.fl-l {
		float: inherit;
		margin-right: 0px;
	}

	.fl-r {
		float: inherit;
		margin-left: 0px;
	}
}

.gyotou p {
	padding-left: 1em;
	text-indent: -1em;
}

/*特産品*/
.tokusan-menu {
	position: relative;
	width: 45%;
	margin: 15px 2px 65px;
}

.tokusan-midashi {
	position: absolute;
	top: -65px;
	left: -65px;
}

.tokusan-img {
	width: 100%;
}

.tokusan-img img {
	width: 100%;
	object-fit: cover;
	border-radius: 15px 15px 0 0;
}

.tokusan-text {
	background-color: #fbfde9;
	padding: 1rem 2rem;
	border-radius: 0 0 15px 15px;

}

@media screen and (max-width:414px) {
	.tokusan-menu {
		width: 100%;
		margin: 15px 2px 65px;
	}

	.tokusan-midashi {
		position: relative;
		top: 0px;
		left: 0px;
		text-align: center;
		margin-bottom: 3px;
	}

}

#page-top a {
	position: fixed;
	right: 25px;
	bottom: 25px;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	border: none;
	background-color: darkgreen;
	color: #fff;
	padding: 0px;
	z-index: 20000;
	font-size: 20px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

#page-top a:hover {
	background-color: #fff;
	border: darkgreen solid 1px;
	color: darkgreen;
}

/*
問い合わせフォームボタン
*/
.form-btn {
	background-color: orange;
	border: 1px solid orange;
	padding: 10px 20px;
	color: #fff;
	text-align: center;
	width: 100px;
	height: 50px;
}

.wpcf7-form.invalid .wpcf7-response-output {
	display: none;
}

.wpcf7-form.sent .wpcf7-response-output {
	display: none;
}



/*
角田市の農業を知ろう
*/

.shinki-syuunou {
	text-align: justify;
}

.shinki-syuunou-linkmenu {
	margin: 40px auto;
}

.shinki-syunou-lnkmenu-flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.shinki-syunou-lnkmenu-flex a {
	color: #fff;
	font-size: 1.2em;
	margin: .4em;
	font-weight: bold;
	background-color: #FFB200;
	padding: .5em;
	transition: .3s;
}

.shinki-syunou-lnkmenu-flex a:hover {
	background-color: #FFDD9C;
}

.kakuda-sirou-bg {
	margin-bottom: 40px;
}

.kakuda-sirou-bg p {
	margin-bottom: 0;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: .3em;
	background-color: #009944;
	width: 8em;
	border-radius: 15px 15px 0 0;
	box-shadow: 7px 7px 4px gray;
}

.kakuda-sirou-contents {
	padding: 1.2em;
	background-color: #E8F3E3;
	border-radius: 0 15px 15px 15px;
	box-shadow: 7px 7px 4px gray;
}

.kakuda-sirou-contents img {
	padding: 10px;
	width: 22%;
	min-width: 120px;
	float: left;
}

.sirou-contents-nougyou img {
	width: 1.5em;
	float: right;
}

.shinki-syunou-interview {
	position: relative;
	margin-top: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shinki-syunou-interview .orange-btn-2 {
	margin: 0 10px;
	width: 60%;
}

.shinki-syunou-interview img {
	width: 20%;
}

.step1-content {}

.step1-content img {
	float: right;
}


@media screen and (max-width:767px) {
	.shinki-syunou-interview img {
		display: none;
	}
}


@media screen and (max-width:434px) {
	.shinki-syunou-lnkmenu-flex a {
		font-size: 1em;
	}

	.shinki-syunou-interview .orange-btn-2 {
		width: 100%;
	}

}




/*
就農までの道のり
*/
.kakuda-michinori {
	position: relative;
}

.step0 {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.step0-img {
	width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.step0-img img {
	width: 90%;
	min-width: 125px;
	margin-bottom: 50px;
}

.step0-accordion {
	width: 75%;
}

.accordion-kakomi {
	margin-bottom: 20px;
	padding: 15px;
	border: #009944 solid 2px;
	background-color: #fff;
}

.toggle,
.toggle-radio {
	display: none;
}

.Label {
	padding-bottom: 1em;
	display: inline-flex;
	color: #fff;
	justify-content: flex-start;
	align-items: center;
	border-bottom: #009944 solid 2px;
}

.Label-kigou-bg {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #009944;
	width: 35px;
	height: 35px;
	transition: .2s;
}

.Label:hover .Label-kigou-bg {
	background-color: #B0CC00;
}

.Label-kigou {
	width: 20px;
	height: 2px;
	background-color: #fff;
	transform: rotate(0deg);
	transition: .3s;
}


.Label-kigou::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 2px;
	background-color: #fff;
	transform: rotate(90deg);
	transition: .3s;
}

.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}

.content {
	/*本文*/
	height: 0;
	margin-bottom: 10px;
	padding: 0 20px;
	overflow: hidden;
}

.toggle:checked+.Label+.content {
	/*開閉時*/
	height: auto;
	padding: 20px;
	transition: all .3s;
}

.toggle:checked+.Label>.Label-kigou-bg>.Label-kigou {
	transform: rotate(180deg);
}

.toggle:checked+.Label>.Label-kigou-bg>.Label-kigou::before {
	transform: rotate(0deg);
}

.Label-text {
	/* max-width: 80%; */
	font-size: 1.2em;
	color: #121212;
	font-weight: bold;
	margin-left: .5em;
}

.step {
	/* margin-bottom: 40px; */
}

.step1,
.step2,
.step3 {
	background-color: #FFFCD1;
	padding: 30px 20px;
	margin: 30px 0;
}

.step-title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}

.step-title span {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0 15px;
}

.step-title img {
	position: relative;
}

.step-title-step {
	width: 5em;
	top: -10px;
}

.step-note {
	background-color: #fff;
	border-radius: 15px;
	padding: 1.2em;
	margin-bottom: 20px;
	box-shadow: 7px 7px 4px gray;
}

.step-note p {
	margin: 5px 0;
	font-size: 1.2em;
	font-weight: bold;
	color: #F08300;
}

.michinori-icon-ganbare {
	width: 175px;
}


@media screen and (max-width:767px) {
	.step0 {
		flex-direction: column;
	}

	.step0-accordion {
		width: 100%;
	}

	.step0-img {
		width: 100%;
		flex-direction: row;
	}

	.step3 .step-title {
		flex-direction: column;
		align-items: flex-start;
	}

	.michinori-icon-tractor {
		display: none;
	}

	.michinori-icon-ganbare {
		width: 110px;
	}
}




/*
支援制度
*/
.shuunoushien-contents {
	margin-bottom: 60px;
}

.shuunoushien-contents-title {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shuunoushien-contents-title span {
	margin-right: .5em;
	font-size: 2em;
	font-weight: bold;
	background: linear-gradient(transparent 50%, #FFF67F 50%);
}

.shuunoushien-contents-hukidashi {
	margin-bottom: 40px;
	position: relative;
	padding: 1em;
	background-color: #E8F3E3;
	border-radius: 15px;
	box-shadow: 7px 7px 4px gray;
}

.shuunoushien-contents-hukidashi::before {
	content: "";
	position: absolute;
	bottom: 100%;
	/* 吹き出しの上に配置 */
	left: 30%;
	/* 吹き出しの位置を調整 */
	border-width: 30px 0px 30px 30px;
	/* 三角形のサイズ */
	border-style: solid;
	border-color: transparent transparent #E8F3E3 transparent;
	/* 下部に色を指定 */
}

.shuunoushien-contents-flow-flex-cover,
.shuunoushien-contents-flow-flex {
	width: 100%;
}

.shuunoushien-contents-flow-flex-cover,
.shuunoushien-contents-flow-flex,
.shuunoushien-contents-flow {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.shuunoushien-flow-accordion {
	width: 50%;
}

.shuunoushien-contents-flow {
	margin-right: 10px;
}

.shuunoushien-contents-flow:hover .shuunoushien-contents-flow-text {
	background-color: #e6f1e3;
}

.shuunoushien-contents-flow-int,
.shuunoushien-contents-flow-text {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 65px;
	font-size: 1.2em;
	font-weight: bold;
	color: #fff;
	background-color: #009944;
}

.shuunoushien-contents-flow-int {
	width: 45px;
	border: 2px solid #009944;
	border-right: 0px;
	border-radius: 0 0 0 15px;
}

.shuunoushien-contents-flow-text {
	width: 160px;
	color: #121212;
	background-color: #fff;
	border: 2px solid #ccc;
	border-left: 0px;
	border-radius: 0 15px 0 0;
	transition: .3s;
}

.shuunoushien-contents-flow-content {
	position: relative;
	left: 0;
	width: 400%;
	max-width: 870px;
	padding: .7em;
	background-color: #FFFBC7;
	height: 0;
	visibility: hidden;
	opacity: 0;
}

.shuunoushien-contents-flow-content::before {
	content: "";
	position: absolute;
	bottom: 100%;
	/* 吹き出しの上に配置 */
	border-width: 30px 0px 30px 30px;
	/* 三角形のサイズ */
	border-style: solid;
	border-color: transparent transparent #FFFBC7 transparent;
	/* 下部に色を指定 */
}

.flow-content-03 {
	left: -100%;
}

.flow-content-04 {
	left: -200%;
}

.flow-content-05 {
	left: -300%;
}

.flow-content-02::before {
	left: 5%;
	/* 吹き出しの位置を調整 */
}

.flow-content-03::before {
	left: 25%;
	/* 吹き出しの位置を調整 */
}

.flow-content-04::before {
	left: 50%;
	/* 吹き出しの位置を調整 */
}

.flow-content-05::before {
	left: 75%;
	/* 吹き出しの位置を調整 */
}

.toggle-radio:checked+.shuunoushien-contents-flow>.shuunoushien-contents-flow-text {
	border: 2px solid #009944;
	border-left: 0;
	background-color: #FFFBC7;
}

.toggle-radio:checked+.shuunoushien-contents-flow+.shuunoushien-contents-flow-content {
	/*開閉時*/
	visibility: visible;
	opacity: 1;
	transition: opacity .9s;
	height: auto;
	margin: 40px 0;
}

@media screen and (max-width:767px) {

	.shuunoushien-contents-flow-flex-cover,
	.shuunoushien-contents-flow-flex {
		flex-direction: column;
	}

	.shuunoushien-contents-flow {
		margin-right: 0px;
		margin-bottom: 20px;
	}

	.shuunoushien-flow-accordion {
		width: 100%;
	}

	.shuunoushien-contents-flow-content {
		width: 100%;
		left: 0%;
	}

	.shuunoushien-contents-flow-content::before {
		left: 50%;
	}

}




/*
第三者承継支援事業
*/
.kakuda-keishou-title p {
	display: flex;
	align-items: center;
	position: relative;
	font-size: 1.5em;
	color: #8D5511;
	font-weight: bold;
}

.kakuda-keishou p::before,
.kakuda-keishou p::after {
	content: "";
	margin: 0 .5em;
	background-color: #8D5511;
	width: 30px;
	height: 2px;
	display: block;
}





/*
イベント情報
*/

.kakuda-event-block {
	margin-top: 50px;
	border-bottom: #FFB200 solid 1px;
	padding-bottom: 50px;
}

.kakuda-event-block p {
	margin: 10px 0;
}

.kakuda-event-title {
	font-size: 1.5em;
	font-weight: bold;
}

.kakuda-event-day {
	font-size: 1.2em;
	font-weight: bold;
	color: #FFB200;
}

.kakuda-event-content {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.kakuda-event-content span {
	display: inline-block;
	margin-left: 40px;
}

@media screen and (max-width:767px) {
	.kakuda-event-content {
		flex-direction: column;
	}

	.kakuda-event-content span {
		margin-left: 0;
		margin-top: 20px;
	}
}