@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: #053D0B;
}
/* 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;
	}
}


/* Controls
---------------------------------------------------------------------- */

.controls {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
	padding: 1rem;
	text-align: center;
}

.controls p.desc {
	display: block;
	margin: 0 0 .5rem;
	width: 100%;
	color: #fff;
	line-height: 1.5em;
}

.controls p.desc br {
	display: none;
}
@media screen and (max-width: 600px) {
.controls p.desc br {
	display: block;
	}
}

.controls div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
	padding: .5rem;
	background: #fff;
	border-radius: 10px;
}
@media screen and (max-width: 600px) {
.controls div {
	padding: .1rem;
	gap: .1rem;
	border-radius: 1.5vw;
	}
}

.controls .env {
	width: 35%;
}
@media screen and (max-width: 600px) {
.controls .env {
	width: 100%;
	}
}

.controls .pot {
	width: 60%;
}
@media screen and (max-width: 600px) {
.controls .pot {
	width: 100%;
	}
}

.controls h3 {
	display: block;
	width: 100%;
	color: #fff;
	font-weight: 600;
	padding: .5rem 0;
	border-radius: 5px;
}
@media screen and (max-width: 600px) {
.controls h3 {
	font-size: 4vw;
	}
}

.env h3 {
	background: #36A618;
}

.pot h3 {
	background: #DC6241;
}

.control {
	position: relative;
	display: block;
	width: 7rem;
	height: 7rem;
	background: #D3D3D3;
	border: 2px solid #D3D3D3;
	cursor: pointer;
	transition: background 150ms;
	border-radius: 5px;
	transition: .3s ease;
}
@media screen and (max-width: 600px) {
.control {
	width: 49.5%;
	height: auto;
	padding: .5rem 0;
	}
}

.control:hover {
	opacity: .8;
}

.control img {
	display: block;
	height: 3rem;
	margin: 0 auto 5px;
}
@media screen and (max-width: 600px) {
.control img {
	display: none;
	}
}

.control span {
	font-size: 12px;
	line-height: 1.25em;
}
@media screen and (max-width: 600px) {
.control span {
	font-size: 3.5vw;
	line-height: 1em;
	}
}

.env .mixitup-control-active {
	background: #72BD27;
	border: 2px solid #216F28;
}

.pot .mixitup-control-active {
	background: #FF815F;
	border: 2px solid #BF3B18;
}

.mixitup-control-active:hover {
	opacity: 1;
}

.mixitup-control-active[data-toggle]:after {
	background: transparent;
}


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

.container {
	display: flex;
	flex-wrap: wrap;
	jutify-content: center;
	padding: 1rem;
	gap: 1rem;
	background: #72BD27;
}

.container:after {
	content: '';
	display: inline-block;
	width: 100%;
}

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

.mix,
.gap {
	position: relative;
	display: block;
}

.mix {
	padding: 1rem 1rem 4rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(0,0,0,.5);
	position: relative;
}

.mix a {
	display: block;
}

.mix ul.icon {
	display: block;
	text-align: center;
	margin: 0 0 1rem;
}

.mix ul.icon li {
	display: inline-block;
	padding: 3px 5px;
	color: #fff;
	font-size: 10px;
	line-height: 1em;
	text-align: center;
	background: #ccc;
	border-radius: 20px;
}

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

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

.mix p.point {
	display: block;
	margin: 0 0 1rem;
	color: #333;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	line-height: 1.5em;
}

.mix img {
	display: block;
	width: 100%;
	margin: 0 0 1rem;
}

.mix h2 {
	display: block;
	margin: 0 0 1rem;
	color: #333;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
}

.mix p.desc {
	display: block;
	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;
	text-align: center;
}

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

.mix span.bt {
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translate(-50%,0);
	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;
}

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

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


/* 2 Columns */

.mix,
.gap {
	width: calc(100%/2 - (((2 - 1) * 1rem) / 2));
}
@media screen and (max-width: 600px) {
.mix,
.gap {
	width: 100%;
	}
}

/* 3 Columns */

@media screen and (min-width: 541px) {

	.mix,
	.gap {
		width: calc(100%/3 - (((3 - 1) * 1rem) / 3));
	}
}

/* 4 Columns */

@media screen and (min-width: 961px) {

	.mix,
	.gap {
		width: calc(100%/4 - (((4 - 1) * 1rem) / 4));
	}
}

#search {
	margin-top: -150px;
	padding-top: 160px;
	}