@charset "UTF-8";
/*----------------------------------------------
 * reset styles
 *---------------------------------------------- */
main {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	display: block;
}
/*----------------------------------------------
 * formatting styles
 *---------------------------------------------- */
html {
	font-size: 62.5%;
	box-sizing: border-box;
}
* {
	box-sizing: inherit;
}
*:before,
*:after {
	box-sizing: inherit;
}
body {
	min-width: 1258px;
	font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: 1.3em;
	line-height: 1.55;
	color: #4f4034;
}
body::before {
	content: "";
	position: fixed;
	z-index: 10;
	right: 0;
	top: 0;
	width: 100vw;
	height: 100vw;
	background-color: rgba(227, 234, 210, 0.8);
	border-radius: 100%;
	opacity: 0;
	transform: scale(0, 0);
	transform-origin: right top;
	transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
	body {
		min-width: 320px;
		-webkit-text-size-adjust: 100%;
	}
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
.fixed::before {
	width: 100%;
	height: 100%;
	border-radius: 0;
	opacity: 1;
	transform: scale(1, 1);
}
img {
	border-style: none;
	vertical-align: middle;
	max-width: 100%;
}
.defs {
	display: none;
}
.iconArrow {
	vertical-align: middle;
	width: 25px;
	height: 12px;
	fill: #609e30;
	transition-duration: 0.3s;
}
.iconMail {
	vertical-align: middle;
	width: 24px;
	height: 19px;
	fill: #60a130;
	transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
	.iconArrow {
		width: 18px;
		height: 9px;
	}
	.iconMail {
		width: 22px;
		height: 17px;
	}
}
a {
	transition-duration: 0.3s;
	color: inherit;
	text-decoration: none;
}
@media screen and (min-width: 768px) {
	a:hover .iconArrow,
	a:hover .iconMail {
		fill: #fff;
	}
}
@media screen and (max-width: 767px) {
	a:active .iconArrow,
	a:active .iconMail {
		fill: #fff;
	}
}
/*----------------------------------------------
 * clearfix
 *---------------------------------------------- */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
/* ----------------------------------------------
 *header
 *---------------------------------------------- */
header {
	background-color: #fff;
	padding: 20px 0 234px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
}
header .logo {
	display: none;
}
@media screen and (max-width: 767px) {
	header {
		display: block;
		padding: 8px 0 100px;
	}
	header .logo {
		display: block;
		padding: 0 65px 0 8px;
	}
	header .logo a {
		display: inline-flex;
		align-items: flex-end;
	}
	header .logo a .img {
		flex: 0 1 97px;
	}
	header .logo a .text {
		flex: 0 0 auto;
		margin-left: 8px;
		font-weight: bold;
		font-size: 1.1rem;
	}
	header .logo a .text span {
		display: block;
		font-size: 2.0rem;
		line-height: 1.1;
	}
	header .logo a:active img {
		opacity: 0.7;
	}
	header .logo a:active .text {
		color: rgba(79, 64, 52, 0.7);
	}
}
/* ----------------------------------------------
 *nav
 *---------------------------------------------- */
nav {
	flex: 0 0 358px;
	margin-left: 30px;
	font-weight: bold;
}
nav button {
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 60px;
	position: relative;
	background-color: #609e30;
	border: none;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}
nav button::before,
nav button::after {
	content: "";
	position: absolute;
	left: 16px;
	top: 12px;
	height: 2px;
	width: 28px;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	transition-duration: 0.3s;
}
nav button::after {
	top: 30px;
}
nav button span {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 36px;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
nav button span::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 21px;
	height: 2px;
	width: 28px;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	transition-duration: 0.3s;
}
nav .navLogo {
	text-align: center;
}
nav .navLogo img {
	transition-duration: 0.3s;
}
nav .navLogo div {
	margin-top: 10px;
	font-size: 1.5rem;
}
nav .navLogo span {
	display: block;
	line-height: 1.0;
	font-size: 3.0rem;
}
nav ul {
	list-style: none;
	margin-top: 45px;
}
nav li {
	border-bottom: 1px dashed #4f4034;
	padding: 4px 0;
	font-size: 1.9rem;
	line-height: 1.26;
}
nav li a {
	display: block;
	padding: 6px 0 6px 60px;
}
_:-ms-lang(x)::-ms-backdrop,
nav li a {
	padding: 9px 0 3px 60px;
}
nav .current a {
	background-color: #60a130;
	color: #fff;
}
@media screen and (min-width: 768px) {
	nav .navLogo a:hover {
		color: rgba(79, 64, 52, 0.7);
	}
	nav .navLogo a:hover img {
		opacity: 0.7;
	}
	nav li a:hover {
		background-color: #60a130;
		color: #fff;
	}
}
@media screen and (max-width: 767px) {
	nav {
		margin-left: 0;
		position: fixed;
		z-index: 100;
		right: 0;
		top: 0;
		transform: translateX(calc(100% - 60px));
		display: flex;
		align-items: flex-start;
		pointer-events: none;
		transition-duration: 0.3s;
	}
	nav button {
		display: block;
		flex: 0 0 auto;
		pointer-events: auto;
	}
	nav .menu {
		pointer-events: auto;
		flex: 0 0 auto;
		padding: 10px 0;
		background-color: #fff;
		border-left: 1px solid #609e30;
		border-bottom: 1px solid #609e30;
		width: calc(100% - 60px);
	}
	nav .navLogo img {
		width: 126px;
	}
	nav .navLogo div {
		margin-top: 5px;
	}
	nav .navLogo span {
		font-size: 2.8rem;
	}
	nav .navLogo a:active {
		color: rgba(79, 64, 52, 0.7);
	}
	nav .navLogo a:active img {
		opacity: 0.7;
	}
	nav li {
		font-size: 1.6rem;
	}
	nav li a {
		padding: 8px 30px;
	}
	nav li a:active {
		background-color: #60a130;
		color: #fff;
	}
	nav.open {
		transform: translateX(0);
		height: 100%;
	}
	nav.open button::before {
		top: 21px;
		transform: rotate(45deg);
		box-shadow: none;
	}
	nav.open button::after {
		top: 21px;
		transform: rotate(135deg);
		box-shadow: none;
	}
	nav.open button span::before {
		opacity: 0;
	}
	nav.open .menu {
		max-height: 100%;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
}
/* ----------------------------------------------
 *mainvisual
 *---------------------------------------------- */
.mainvisual {
	flex: 0 0 auto;
	width: 870px;
	height: 636px;
	border-radius: 59px;
	position: relative;
	background-repeat: no-repeat;
	background-position: 0 0;
}
.mainvisual::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	background: url(../img/mv-bg.png) 0 0 no-repeat;
	width: 100%;
	height: 586px;
}
.mainvisual::after {
	content: "";
	position: absolute;
	right: -44px;
	top: -12px;
	z-index: 1;
	background: url(../img/mv-img.png) 0 0 no-repeat;
	width: 236px;
	height: 190px;
}
.mainvisual .text {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.mainvisual {
		width: auto;
		height: auto;
		padding: 10px 10px 67.2%;
		background-size: calc(100% - 20px) auto;
		background-position: 10px 10px;
		border-radius: 0;
	}
	.mainvisual::before {
		background-size: 100% auto;
		height: calc(100% - 20px);
		width: calc(100% - 20px);
		right: 10px;
		top: 10px;
	}
	.mainvisual::after {
		width: 92px;
		height: 74px;
		right: 0;
		top: 5px;
		background-size: 92px 74px;
	}
	.mainvisual .text {
		width: 162px;
		left: 10px;
		bottom: 0px;
	}
}
/* ----------------------------------------------
 *main
 *---------------------------------------------- */
main {
	background: url(../img/bg.jpg) center center repeat;
	background-size: 400px 400px;
	position: relative;
	z-index: 1;
}
main::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 1025px;
	height: 226px;
	top: -113px;
	right: 50%;
	transform: translateX(50%);
	background: inherit;
	border-radius: 100%;
}
main::after {
	content: "";
	position: absolute;
	z-index: -2;
	width: 100%;
	height: 62px;
	background: url(../img/line01.png) center center repeat-x;
	right: 50%;
	top: -31px;
	transform: translateX(50%);
}
main > .inner {
	padding-bottom: 110px;
}
main > .inner::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 1167px;
	height: 174px;
	top: -136px;
	right: 50%;
	transform: translateX(50%);
	background: url(../img/line02.png) center center no-repeat;
	border-radius: 100%;
}
@media screen and (max-width: 767px) {
	main::before {
		width: 85%;
		height: auto;
		padding-bottom: 22.05%;
		top: auto;
		bottom: 100%;
		transform: translate(50%, 50%);
	}
	main::after {
		background-size: 73px 31px;
	}
	main > .inner {
		padding-bottom: 76px;
	}
	main > .inner::before {
		width: 90%;
		height: auto;
		padding-bottom: 28.05%;
		top: auto;
		bottom: 100%;
		transform: translate(50%, 45%);
		background-size: 583px auto;
	}
}
/* ----------------------------------------------
 *footoer
 *---------------------------------------------- */
footer {
	background-color: #60a130;
	position: relative;
	color: #fff;
}
footer::before {
	content: "";
	position: absolute;
	z-index: 1;
	right: 50%;
	bottom: 100%;
	transform: translateX(50%);
	width: 960px;
	height: 110px;
	background: url(../img/rainbow.png) 0 0 no-repeat;
}
footer > .inner {
	max-width: 980px;
	margin: 0 auto;
	padding: 45px 10px 30px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	font-size: 1.6rem;
}
footer address {
	flex: 0 0 auto;
	font-style: normal;
}
footer address .name {
	margin-bottom: 8px;
	font-weight: bold;
	font-size: 2.7rem;
}
footer ul {
	list-style: none;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}
footer li {
	flex: 0 0 auto;
}
footer li:first-child {
	position: relative;
}
footer li:first-child::after {
	content: "｜";
	display: inline-block;
}
footer li:not(:last-child) a {
	display: inline-block;
	padding: 0 1em;
}
footer li:last-child a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 12px;
	margin-left: 1em;
	padding-left: 47px;
	width: 174px;
	height: 40px;
	position: relative;
	color: #60a130;
}
footer li:last-child a i {
	position: absolute;
	left: 13px;
	bottom: 50%;
	transform: translateY(50%);
}
_:-ms-lang(x)::-ms-backdrop,
footer li:last-child a {
	padding-top: 4px;
}
.copyrights {
	border-top: 1px solid #fff;
	padding: 20px 5px;
	text-align: center;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	footer li:not(:last-child) a:hover {
		text-decoration: underline;
	}
	footer li:last-child a:hover {
		background-color: #60a130;
		color: #fff;
	}
}
@media screen and (max-width: 767px) {
	footer::before {
		width: 100%;
		height: 76px;
		background-size: 190px auto;
		background-position: 10px 0;
	}
	footer > .inner {
		display: block;
		padding: 30px 1em 20px;
		font-size: 1.4rem;
	}
	footer address {
		text-align: center;
	}
	footer address .name {
		font-size: 2.5rem;
	}
	footer address .tel a:active {
		text-decoration: underline;
	}
	footer ul {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 42px;
	}
	footer li:not(:last-child) a {
		padding: 0;
	}
	footer li:not(:last-child) a:active {
		text-decoration: underline;
	}
	footer li:last-child {
		flex-basis: 100%;
		margin-top: 20px;
	}
	footer li:last-child a {
		justify-content: center;
		width: 100%;
		margin-left: 0;
		padding-left: 0;
		border-radius: 10px;
		height: 35px;
	}
	footer li:last-child a i {
		left: calc(50% - 30px - 3em);
	}
	footer li:last-child a:active {
		background-color: #60a130;
		color: #fff;
	}
	.copyrights {
		font-size: 1.2rem;
	}
}
