@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: 1000px;
	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);
}
a {
	transition-duration: 0.3s;
	color: #76961d;
	text-decoration: none;
}
img {
	border-style: none;
	max-width: 100%;
}
.defs {
	display: none;
}
.iconArrow {
	vertical-align: middle;
	width: 25px;
	height: 12px;
	fill: #76961d;
	transition-duration: 0.3s;
}
.iconMail {
	vertical-align: middle;
	width: 24px;
	height: 19px;
	fill: #76961d;
	transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
	.iconArrow {
		width: 18px;
		height: 9px;
	}
	.iconMail {
		width: 22px;
		height: 17px;
	}
}
/*----------------------------------------------
 * clearfix
 *---------------------------------------------- */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
/* ----------------------------------------------
 *header
 *---------------------------------------------- */
header {
	padding: 10px 14px 20px;
}
header .logo a {
	display: inline-flex;
	align-items: flex-end;
}
header .logo a div {
	flex: 0 0 auto;
}
header .logo a img {
	transition-duration: 0.3s;
}
header .logo a span {
	flex: 0 0 auto;
	display: block;
	margin-left: 50px;
	font-size: 3.5rem;
	font-weight: bold;
	color: #4f4034;
	transition-duration: 0.3s;
}
@media screen and (min-width: 768px) {
	header .logo a:hover img {
		opacity: 0.7;
	}
	header .logo a:hover span {
		color: rgba(79, 64, 52, 0.7);
	}
}
@media screen and (max-width: 767px) {
	header {
		padding: 6px 65px 10px 5px;
	}
	header .logo a {
		align-items: stretch;
	}
	header .logo a div {
		flex: 0 1 97px;
		-ms-grid-row-align: center;
		align-self: center;
	}
	header .logo a span {
		flex: 0 0 auto;
		align-self: flex-end;
		font-size: 2.0rem;
		margin-left: 5px;
		letter-spacing: -0.03em;
	}
	header .logo a:active img {
		opacity: 0.7;
	}
	header .logo a:active span {
		color: rgba(79, 64, 52, 0.7);
	}
}
/* ----------------------------------------------
 *nav
 *---------------------------------------------- */
nav {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
	display: flex;
	transform: translateX(360px);
	pointer-events: none;
	transition-duration: 0.3s;
}
nav button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: 0;
	border: none;
	display: block;
	position: relative;
	top: 36px;
	left: -36px;
	background-color: #76961d;
	padding: 0;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	color: #fff;
	font-family: inherit;
	font-weight: bold;
	cursor: pointer;
	pointer-events: auto;
	transition-duration: 0.3s;
}
nav button::before,
nav button::after {
	content: "";
	position: absolute;
	width: 27px;
	height: 2px;
	background-color: #fff;
	border-radius: 3px;
	left: 17px;
	top: 12px;
	transform-origin: center;
	transition-duration: 0.3s;
}
nav button::after {
	top: 30px;
}
nav button span {
	position: absolute;
	right: 50%;
	bottom: 0;
	transform: translateX(50%);
	width: 100%;
	height: 100%;
	padding-top: 38px;
}
nav button span::before {
	content: "";
	position: absolute;
	left: 17px;
	top: 21px;
	width: 27px;
	height: 2px;
	border-radius: 3px;
	background-color: #fff;
	transition-duration: 0.3s;
}
nav .menu {
	background-color: #fff;
	border-left: 1px solid #76961d;
	border-bottom: 1px solid #76961d;
	width: 360px;
	padding: 10px 0 20px;
	pointer-events: auto;
}
nav .menu a {
	color: #4f4034;
	font-weight: bold;
}
nav .menu .navLogo {
	text-align: center;
	font-size: 2.2rem;
	line-height: 1.41;
}
nav .menu .navLogo img,
nav .menu .navLogo div {
	transition-duration: 0.3s;
}
nav .menu .navLogo span {
	display: block;
	font-size: 4.0rem;
	line-height: 1.2;
}
nav .menu ul {
	list-style: none;
	margin-top: 50px;
}
nav .menu li {
	border-bottom: 1px dashed #4f4034;
	font-size: 1.9rem;
}
nav .menu li a {
	display: block;
	padding: 10px 60px;
}
_:-ms-lang(x)::-ms-backdrop,
nav .menu li a {
	padding: 14px 60px 6px;
}
nav.open {
	transform: translateX(0);
}
nav.open button {
	left: 0;
}
nav.open button::before {
	top: 21px;
	transform: rotate(45deg);
}
nav.open button::after {
	top: 21px;
	transform: rotate(135deg);
}
nav.open button span::before {
	background-color: transparent;
}
@media screen and (min-width: 768px) {
	nav button:hover {
		opacity: 0.7;
	}
	nav .menu .navLogo a:hover img,
	nav .menu .navLogo a:hover div {
		opacity: 0.7;
	}
	nav .menu li a:hover {
		background-color: rgba(239, 244, 229, 0.7);
	}
}
@media screen and (max-width: 767px) {
	nav {
		transform: translateX(calc(100vw - 90px));
		height: 100%;
		align-items: flex-start;
	}
	nav button {
		left: 0;
		top: 0;
	}
	nav button:active {
		opacity: 0.7;
	}
	nav .menu {
		width: calc(100vw - 90px);
		max-height: 100%;
		padding-bottom: 15px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	nav .menu .navLogo {
		font-size: 1.6rem;
	}
	nav .menu .navLogo img {
		width: 126px;
	}
	nav .menu .navLogo div {
		margin-top: 3px;
	}
	nav .menu .navLogo span {
		font-size: 3.2rem;
	}
	nav .menu .navLogo a:active img,
	nav .menu .navLogo a:active div {
		opacity: 0.7;
	}
	nav .menu ul {
		margin-top: 28px;
	}
	nav .menu li {
		font-size: 1.6rem;
	}
	nav .menu li a {
		padding: 8px 30px;
	}
	nav .menu li a:active {
		background-color: rgba(239, 244, 229, 0.7);
	}
}
/* ----------------------------------------------
 *main
 *---------------------------------------------- */
.mainvisual img {
	vertical-align: middle;
}
.btnArrow a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	border: 1px solid #76961d;
	border-radius: 20px;
	width: 308px;
	height: 48px;
	padding: 0 25px;
	font-weight: bold;
	font-size: 2.0rem;
}
_:-ms-lang(x)::-ms-backdrop,
.btnArrow a {
	padding-top: 6px;
	padding-bottom: 0;
}
.btnArrow a span {
	flex: 0 0 auto;
}
.btnArrow a i {
	flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
	.btnArrow a:hover {
		background-color: #76961d;
		color: #fff;
	}
	.btnArrow a:hover .iconArrow {
		fill: #fff;
	}
}
@media screen and (max-width: 767px) {
	.btnArrow a {
		width: auto;
		padding: 0 28px;
	}
	.btnArrow a span {
		flex-grow: 1;
		padding-left: 25px;
		text-align: center;
	}
	.btnArrow a .iconArrow {
		width: 25px;
		height: 12px;
	}
	.btnArrow a:active {
		background-color: #76961d;
		color: #fff;
	}
	.btnArrow a:active .iconArrow {
		fill: #fff;
	}
}
/* ----------------------------------------------
 *footoer
 *---------------------------------------------- */
footer {
	background-color: #b6cc83;
	position: relative;
	margin-top: 110px;
}
footer::before {
	content: "";
	position: absolute;
	right: 50%;
	bottom: 100%;
	transform: translateX(50%);
	width: 960px;
	height: 110px;
	background: #fff 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:nth-child(-n+2) {
	position: relative;
}
footer li:nth-child(-n+2)::after {
	content: "｜";
	display: inline-block;
}
footer li:not(:last-child) a {
	display: inline-block;
	padding: 0 1em;
	color: #4f4034;
}
footer li:last-child a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: #fff;
	border-radius: 12px;
	margin-left: 1em;
	padding-left: 47px;
	width: 174px;
	height: 40px;
	position: relative;
}
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: #76961d;
		color: #fff;
	}
	footer li:last-child a:hover .iconMail {
		fill: #fff;
	}
}
@media screen and (max-width: 767px) {
	footer {
		margin-top: 76px;
	}
	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 {
		color: inherit;
	}
	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: #76961d;
		color: #fff;
	}
	footer li:last-child a:active .iconMail {
		fill: #fff;
	}
	.copyrights {
		font-size: 1.2rem;
	}
}
