@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@media (prefers-reduced-motion: no-preference) {
html:focus-within {
	scroll-behavior: smooth;
	}
}

* {
	box-sizing: border-box;
}

html {
	color: #333;
	font-family: "Roboto","Noto Sans JP",  sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

a {
	color: #009944;
	text-decoration: none;
	transition: .3s ease;
	}

a:hover {
	color: #44b0ff;
	}

img {
	display: block;
	width: 100%;
}

.sp {
	display: none;
	}

/* headerここから */
.header {
	display: none;
}
/* headerここまで */

/* footerここから */
footer {
	position: relative;
	display: block;
	padding: 100px 0 30px;
	text-align: center;
	background: #2E9F92;
}

footer .logo {
	width: 312.54px;
	height: 50px;
	margin: 0 auto 70px;
}

footer p {
	margin: 0 0 70px;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
}
/* footerここまで */

/* mainここから */
main {
	position: relative;
	display: block;
	background: #72BD27;
}
/* mainここまで */

/* 共通ボタンここから */
a.bt {
	display: block;
	width: 120px;
	margin: 0 auto 20px;
	padding: 8px 0;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #1B9FFF;
	border: 1px solid #1B9FFF;
	border-radius: 15px;
	transition: .3s ease;
}

a.bt:hover {
	color: #1B9FFF;
	background: #fff;
	border: 1px solid #1B9FFF;
}
/* 共通ボタンここまで */

/* CVボタンここから */
.bt_cv {
	margin: 0;
	padding: 50px 4vw;
	background: #fff;
}
.bt_cv a {
	display: block;
	width: 400px;
	margin: 0 auto;
	padding: 28px 0;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 1em;
	text-align: center;
	background: #009944;
	border: 1px solid #009944;
	border-radius: 50px;
	transition: .3s ease;
}
.bt_cv a:hover {
	color: #009944;
	background: #fff;
	border: 1px solid #009944;
}
/* CVボタンここまで */

.pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 40px;
	width: 40px;
	background: #fff;
	border: solid 2px #009944;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}
.pagetop__arrow {
	display: block;
	height: 10px;
	width: 10px;
	border-top: 3px solid #009944;
	border-right: 3px solid #009944;
	transform: translateY(20%) rotate(-45deg);
}



/* タブレットここから */
@media screen and (max-width: 1024px) {
}
/* タブレットここまで */



/* スマホここから */
@media screen and (max-width: 600px) {

.header {
	position: fixed;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 50px;
	z-index: +1;
	}

.hamburger-menu {
	position: absolute;
	right: 0px;
	top: 0px;
	display: block;
	width: 50px;
	height: 50px;
	border: none;
	background: transparent;
	appearance: none;
	padding: 0;
	cursor: pointer;
	z-index: 99999;
}

.hamburger-menu__bar {
	display: inline-block;
	width: 44%;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	box-shadow: 0 1px 1px rgba(0,0,0,.5), 0 0 3px rgba(0,0,0,.25);
	transform: translateX(-50%);
	transition: .5s;
}
.hamburger-menu__bar:first-child {
	top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
	top: 24px;
}
.hamburger-menu__bar:last-child {
	top: 32px;
}
.hamburger-menu--open .hamburger-menu__bar {
	top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
	display: none;
}

.navigation {
	display: none;
	background: #009944;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	padding: 0;
	z-index: 9999;
}

.navigation__list {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.navigation__list li {
	display: block;
	margin: 0;
	padding: 0;
	height: auto;
	border-bottom: solid 1px #ccc;
}

.navigation__list li a {
	display: block;
	color: #fff;
	background: none;
	font-size: 16px;
	font-weight: 400;
	padding: 24px 20px;
	transition: .5s;
}
@media (hover: hover) and (pointer: fine) {
	.navigation__list li a:hover {
		color: #fff;
		background: #1B9FFF;
	}
}

.navigation__list li a i {
	display: inline;
	margin-right: 5px;
}

.subnav_list {
	display: block;
	position: relative;
	left: auto;
	top: auto;
	padding-bottom: 20px;
	opacity: 1;
}

.navigation__list-item:hover .subnav_list {
	top: 0px;
}

.subnav_list-item a {
	display: block;
	margin: 0;
	padding: 10px 24px;
	color: #1B9FFF;
	background: none;
	box-shadow: none;
	font-size: 16px;
	font-weight: 300;
	text-decoration: none;
	white-space: nowrap;
	transition: .3s ease;
}

footer {
	padding: 50px 0 20px;
}

footer ul {
	display: none;
}

footer p {
	margin: 0 0 50px;
	font-size: 14px;
	line-height: 2em;
}

footer p span {
	display: none;
}

.sp {
	display: inline;
	}

/* 共通ボタンここから */
a.bt {
	width: 200px;
	margin: 0 auto 40px;
	padding: 16px 0;
	font-size: 16px;
	border-radius: 30px;
}
/* 共通ボタンここまで */

/* CVボタンここから */
.bt_cv {
	padding: 10vw 4vw;
}
.bt_cv a {
	width: 270px;
	padding: 18px 0;
	font-size: 4vw;
}
/* CVボタンここまで */

}
/* スマホここまで */


.page_title {
	padding: 100px 0;
	text-align: center;
	background: url(img/bg_page_title.jpg) center center no-repeat;
	background-size: cover;
	}
@media screen and (max-width: 600px) {
.page_title {
	padding: 10vw 0;
	}
}

.page_title h1 {
	color: #fff;
	font-size: 40px;
	font-weight: 400;
	}
@media screen and (max-width: 600px) {
.page_title h1 {
	font-size: 6vw;
	font-weight: 600;
	}
}

.page_title p {
	color: #fff;
	font-size: 20px;
	}
@media screen and (max-width: 600px) {
.page_title p {
	font-size: 4vw;
	}
}

/* Container
---------------------------------------------------------------------- */

.container {
	display: block;
	padding: 1rem;
}

/* Target Elements
---------------------------------------------------------------------- */

.mix,
.gap {
	position: relative;
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 1rem;
}

.mix {
	min-height: 210px;
	padding: 1rem 1rem .5em 230px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(0,0,0,.5);
	position: relative;
}
@media screen and (max-width: 600px) {
.mix {
	padding: 1rem 1rem .5em;
	}
}

.mix a {
	display: block;
}

.mix ul.icon {
	display: block;
	margin: 0 0 .5rem;
}
@media screen and (max-width: 600px) {
.mix ul.icon {
	text-align: center;
	}
}

.mix ul.icon li {
	display: inline-block;
	margin: 0 0 5px;
	padding: 5px 10px;
	color: #fff;
	font-size: 16px;
	line-height: 1em;
	text-align: center;
	background: #ccc;
	border-radius: 20px;
}
@media screen and (max-width: 600px) {
.mix ul.icon li {
	font-size: 14px;
	}
}

.mix ul.icon li.env {
	background: #72BD27;
}

.mix ul.icon li.pot {
	background: #FF815F;
}

.mix p.point {
	display: block;
	margin: 0 0 .5rem;
	color: #333;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5em;
}
@media screen and (max-width: 600px) {
.mix p.point {
	text-align: center;
	}
}

.mix img {
	position: absolute;
	left: 1rem;
	top: 1rem;
	display: block;
	width: 100%;
	max-width: 200px;
	margin: 0 0 1rem;
}
@media screen and (max-width: 600px) {
.mix img {
	position: relative;
	left: auto;
	top: auto;
	max-width: 100%;
	margin: 0 auto 1rem;
	}
}

.mix h2 {
	display: block;
	margin: 0 0 .5rem;
	color: #333;
	font-size: 24px;
	font-weight: 600;
}
@media screen and (max-width: 600px) {
.mix h2 {
	text-align: center;
	}
}

.mix p.desc {
	display: block;
	width: 100%;
	max-width: 800px;
	margin: 0 0 1rem;
	color: #333;
	font-size: 14px;
	line-height: 1.5em;
}

.mix .use {
	display: block;
	padding: 1rem 0;
	border-top: 1px solid #ccc;
}

.mix h3 {
	display: block;
	margin: 0 0 10px;
	color: #333;
	font-size: 16px;
	font-weight: 600;
}
@media screen and (max-width: 600px) {
.mix h3 {
	text-align: center;
	}
}

.mix .use p {
	display: block;
	color: #333;
	font-size: 14px;
	line-height: 1.5em;
}

.mix span.bt {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	display: block;
	width: 200px;
	padding: 5px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5em;
	text-align: center;
	background: #216F28;
	border-radius: 50px;
	transition: .3s ease;
}
@media screen and (max-width: 600px) {
.mix span.bt {
	position: relative;
	left: auto;
	bottom: auto;
	max-width: 100%;
	margin: 0 auto 1rem;
	}
}

.mix span.bt:hover {
	background: #2EBB3B;
}

/* Grid Breakpoints
---------------------------------------------------------------------- */
