@charset "UTF-8";

/* ==============================
		リセット
		============================== */
img {
	width: 100%;
}

/* ==============================
		共通
		============================== */
html {
	font-family: "ten-mincho", serif;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-size: 1.4rem;
	line-height: 2.14;
}

.flex {
	display: flex;
}

a {
	text-decoration: none;
	color: #fff;
}

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

/* ==============================
		header
		============================== */
header {
	background: #00956D;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 20px 20px 40px;
}

header .tagline p {
	color: #fff;
	/* text-align: right; */
	font-size: 1.8rem;
	line-height: 1;
}

header .logo {
	max-width: 160px;
	margin: 130px auto 220px;
}

.global_nav ul {
	justify-content: center;
	font-size: 1.3rem;
}

.global_nav ul li+li {
	margin-left: 2em;
}

.global_nav ul li a {
	position: relative;
}

.global_nav ul li a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	bottom: -10px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform 0.3s;
}

.global_nav ul li a:hover::after {
	transform: scale(1, 1);
}

@media screen and (max-width:768px) {
	header .logo {
		margin: 50px auto 100px;
	}

	.global_nav ul li+li {
		margin-left: 1em;
	}
}

/* ==============================
		main
		============================== */
main {
	width: calc(100% - 20px);
	max-width: 980px;
	margin: 0 auto;
	border-left: 1px solid #D3EDFB;
	border-right: 1px solid #D3EDFB;
}

.area::after {
	content: "";
	display: block;
	width: 100%;
	height: 33px;
	background: #796BAF;
}

.area:last-child::after {
	display: none;
}

.area .inner {
	padding: 180px 10px;
}

.area .contents {
	text-align: center;
}

.area .contents>.ttl {
	font-size: 1.6rem;
	display: inline-block;
	margin-bottom: 30px;
	padding: 1rem;
	position: relative;
}

.area .contents>.ttl::after {
	position: absolute;
	content: '';
	display: block;
	left: 0;
	right: 0;
	bottom: -10px;
	margin: auto;
	width: 100%;
	height: 1px;
	background: #796BAF;
}

.area .contents .desc a {
	color: #595757;
	position: relative;
}

.area .contents .desc a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #595757;
	bottom: -5px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform 0.3s;
}

.area .contents .desc a:hover::after {
	transform: scale(1, 1);
}

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

	.area .inner {
		padding: 90px 30px;
	}

	.area .contents .desc {
		text-align: left;
	}
}

/* ==============================
		about
		============================== */

.about .logo {
	width: 21vw;
}

.about .logo p {
	max-width: 165px;
}

.area.about .inner {
	align-items: center;
	justify-content: space-between;
	padding: 70px 10px 100px;
}

.area.about .contents {
	width: calc(100% - 22vw);
}

.about .contents .desc dl {
	display: flex;
	flex-flow: row wrap;
	padding: 10px 0;
	justify-content: space-between;
}

.about .contents .desc dl dt {
	width: 6em;
	text-align: justify;
	text-align-last: justify;
}

.about .contents .desc dl dd {
	width: calc(100% - 10em);
}

.about .contents .desc dl dd.mbn {
	margin-bottom: 1em;
}

@media screen and (min-width:769px) {
	.area.about .contents {
		text-align: left;
	}
}

@media screen and (max-width:768px) {
	.about .logo {
		width: auto;
		display: flex;
		justify-content: center;
	}

	.area.about .inner {
		display: block;
		padding: 70px 30px 100px;
	}

	.area.about .contents {
		width: auto;
	}
}

/* ==============================
		csr
		============================== */

/* ==============================
		enviro
		============================== */
.forestock {
	margin-top: 80px;
	color: #595757;
}

.forestock>.ttl {
	margin-bottom: 0.5em;
}

.forestock>.desc {
	line-height: 2;
}

/* ==============================
		contact
		============================== */
.area.contact .contents .desc {
	text-align: center;
}

.area.contact .contents .desc a {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 240px;
	margin: auto;
	padding: 0.5em;
	font-weight: bold;
	border: 2px solid #00956D;
	background: #00956D;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
	margin-top: 40px;
}

.area.contact .contents .desc a:hover {
	color: #00956D;
	background: #fff;
}

.area.contact .contents .desc a::after {
	display: none;
}

/* ==============================
		footer
		============================== */
footer {
	background: #796BAF;
	padding: 5px 40px;
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}

footer .flex {
	align-items: center;
}

.footerLogo {
	margin-right: 2em;
}

.footerLogo a {
	width: 24px;
}

footer .item+.item {
	margin-left: 2em;
}

footer .item a {
	position: relative;
}

footer .item a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	bottom: -5px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform 0.3s;
}

footer .item a:hover::after {
	transform: scale(1, 1);
}

@media screen and (max-width:768px) {
	footer {
		padding: 24px 30px;
	}

	footer .flex {
		/* flex-direction: column; */
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.footerLogo {
		width: 100%;
		margin-right: 0;
		display: flex;
		justify-content: center;
		margin-bottom: 1em;
	}

	footer .item {
		width: 48%;
		margin-bottom: 0.5em;
	}

	footer .item:nth-child(even) {
		text-align: right;
	}

	footer .item+.item {
		margin-left: 0;
	}
}