@charset "UTF-8";

.main-fade-in {
	opacity: 0;
	animation: fade-In 1s ease forwards;
}
.main-fade-right {
	opacity: 0;
	transform: translateX(30px);
	animation: fadeIn-Right 1s ease forwards;
}
.main-fade-left {
	opacity: 0;
	transform: translateX(-30px);
	animation: fadeIn-Left 1s ease forwards;
}


/*
*共通
*/
main {
	font-family:"BIZ+UDGothic";
}
.container {
}
.hd_container {
	background:#fff;
}
.container .page {
	position:relative;
	background:#F7FCF3;
	z-index:auto;
}
.content_header {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background:#fff;
}
.content_visual {
	padding-top: 171px;
	background-repeat: no-repeat;
	background-size:contain;
	background-position: right top;
	background-color: #fff;
	height: 500px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.content_header_text {
	padding-left: 20px;
}
.content_hd_wrap {
	display: flex;
	flex-flow: column;
}
.content_hd_wrap h2 {
	font-size: 40px;
	color:#179243;
}
.content_nav {
	width:98%;
	padding: 0 1%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
}
.content_nav_wrap {
	width: 80%;
	padding: 50px 0;
	display:flex;
	justify-content:space-between;
	align-items: center;
}
.content_nav_wrap .nav_title {
	color:#179243;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-align:center;
	width: 20%;
}
.content_nav_wrap .nav_title p {
	position:relative;
}
.content_nav_wrap .nav_title p::after {
	position:absolute;
	top: 50%;
	right:-40px;
	content:"";
	width: 80px;
	height: 1px;
	background:#179243;
}
.nav_content {
	width: 80%;
	background: #fff;
	border-radius: 20px;
	padding: 2rem 4rem;
	box-shadow: 0 0 24px rgb(23,146,67,0.41);
	display:flex;
	justify-content:space-between;
}
.nav_content ul {
	width: 100%;
	display:flex;
	flex-wrap:wrap;
}
.nav_content ul li {
	font-size: 12px;
	line-height: 3;
	margin-right:3rem
}

.nav_content ul li a {
	color:#000;
	position:relative;
	transition: 0.5s;
}
.nav_content ul li:hover a{
	color:#179243;
}
.nav_content ul li a::after {
	content: '';
    position: absolute;
    right: -20px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #14126E;
    border-right: 2px solid #14126E;
    transform: rotate(45deg);
	transition: 0.5s;
}
.nav_content ul li:hover a::after {
	right: -30px;
	border-top: 2px solid #179243;
    border-right: 2px solid #179243;
}
.content_flex {
	display:flex;
}
.main {
		
}
.content {
	padding: 50px 0;
}
.content_wrap {
	width:100%;
	max-width:1200px;
	margin: 0 auto;
}

/*戻るボタン*/
.btn_area {
	margin-top: 50px;
	text-align:center;
}
.btn_area .submit {
	display: inline-block;
}
.btn_area .submit a {
	display:block;
	padding: 0.5rem 3rem;
	color: #fff;
	background:#179243;
	border:solid 1px #179243;
	border-radius:20px;
	transition:0.5s
}
.btn_area .submit a:hover {
	background: #fff;
	color: #179243;
}
.submit_more:hover {
	color: #fff;
}

.submit_more::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #179243;
	border-radius: 25px;
	transform: scaleX(0);
	transform-origin: left; /* 統一 */
	transition: transform 0.5s ease;
	z-index: 0;
}
.submit_more .text {
	margin-right:70px;
}
@media screen and (max-width: 1200px) {
	.content_visual {
		background-position: right bottom;
	}
	.content_wrap {
		overflow:hidden;
	}
}
@media screen and (max-width: 1024px) {
	
}
@media screen and (max-width: 960px) {
	.content_nav{
		display:block;
	}
	.nav_content　{
		width:100%;
	}
	.content_nav_wrap {
		width:100%;
	}
	.content_visual {
		height: 400px;
	}
}
@media screen and (max-width: 920px) {
	.content_visual {
		padding-top:70px;
		height: 300px;
	}
	.content_hd_wrap h2 {
		font-size:32px;
	}
	.content_hd_wrap p {
		font-size:14px;
	}
}
@media screen and (max-width: 768px) {
	.content_nav_wrap {
		flex-flow:column;
	}
	.content_nav_wrap .nav_title {
		margin-bottom: 1rem;
	}
	.content_nav_wrap .nav_title p::before {
		position: absolute;
		top: 50%;
		transform:translatey(-50%);
		left: -80px;
		content: "";
		width: 80px;
		height: 1px;
		background: #179243;
	}
	.content_nav_wrap .nav_title p::after {
		top: 50%;
		transform:translatey(-50%);
		right: -80px;
	}
	.nav_content {
		width:100%;
	}
}
@media screen and (max-width: 560px) {
	.content_visual {
		padding-top:50px;
		height: 220px;
	}
	.nav_content {
		padding: 1rem;
		flex-flow:column;
	}
	.content_nav_wrap .nav_title {
		width: 50%;
	}
}
@media screen and (max-width: 428px) {
	
}
@media screen and (max-width: 375px) {
	.content_visual {
		height: 184px;
	}
}





