@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 {
	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 {
		-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: #76951d;
	text-decoration: none;
}
img {
	border-style: none;
	max-width: 100%;
}
.defs {
	display: none;
}
.iconArrow {
	vertical-align: middle;
	width: 25px;
	height: 12px;
	fill: #fff;
	transition-duration: 0.3s;
}
.iconMail {
	vertical-align: middle;
	width: 24px;
	height: 19px;
	fill: #76951d;
	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);
	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: #76951d;
	padding: 0;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	color: #fff;
	font-family: inherit;
	font-weight: bold;
	cursor: pointer;
	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 #76951d;
	border-bottom: 1px solid #76951d;
	width: 360px;
	padding: 10px 0 20px;
}
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));
	}
	nav button {
		left: 0;
		top: 0;
	}
	nav button:active {
		opacity: 0.7;
	}
	nav .menu {
		width: calc(100vw - 90px);
		padding-bottom: 15px;
	}
	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
 *---------------------------------------------- */
main {
	padding-bottom: 110px;
}
main::before,
main::after {
	display: none;
}
.mainHeader {
	padding-top: 324px;
	background: url(../img/h1-photo.jpg) center 75% no-repeat;
	background-size: cover;
}
.mainHeader h1 {
	background-color: #768f1d;
	color: #fff;
	font-size: 3.8rem;
	line-height: 1.0;
}
.mainHeader h1 span {
	display: block;
	position: relative;
	z-index: 0;
	max-width: 980px;
	margin: 0 auto;
	padding: 26px 0 20px;
}
_:-ms-lang(x)::-ms-backdrop,
.mainHeader h1 span {
	padding-top: 30px;
	padding-bottom: 16px;
}
h2 {
	width: 980px;
	margin: 30px auto 50px;
	font-size: 2.5rem;
}
dl.telBox {
	width: 980px;
	margin: 60px auto;
	padding: 10px 0;
	display: flex;
	align-items: center;
	background: #768f1d url("../img/icon01.png") no-repeat 15px center;
	background-size: 90px auto;
	color: #fff;
}
dl.telBox dt {
	width: 50%;
	font-size: 2.5rem;
	text-align: center;
}
dl.telBox dt span {
	display: block;
	font-size: 2.0rem;
}
dl.telBox dd {
	width: 50%;
	font-size: 5.5rem;
	font-weight: bold;
}
_:-ms-lang(x)::-ms-backdrop,
dl.telBox dd {
	padding-top: 20px;
}
h3 {
	border-top: 6px solid #768f1d;
	padding: 60px 0 20px;
	font-size: 2.5rem;
	text-align: center;
}
h3 img {
	margin-right: 15px;
	vertical-align: middle;
	width: 60px;
	height: auto;
}
p.lead {
	margin: 20px auto;
	text-align: center;
	font-size: 1.8rem;
}
p.lead2 {
	margin: 20px auto 100px;
	text-align: center;
	font-size: 1.8rem;
}
p.privacy {
	width: 980px;
	margin: 0 auto;
	text-align: right;
	font-size: 1.5rem;
}
p.thanks {
	margin: 50px 0 0;
	text-align: center;
	font-size: 3.5rem;
	color: #768f1d;
}
/* 入力フォーム*/
.formWr dl {
  width: 980px;
  margin: 40px auto 20px;
  border: 1px solid #4f4034;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.7;
}
.formWr dl dt {
  width: 300px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background-color: #e0e8ce;
  border-right: 1px solid #4f4034;
  border-bottom: 1px solid #4f4034;
  padding: 15px;
	font-size: 1.8rem;
}
_:-ms-lang(x)::-ms-backdrop,
.formWr dl dt {
	padding-top: 17px;
	padding-bottom: 10px;
}
.formWr dl dt:last-of-type,
.formWr dl dd:last-of-type{
  border-bottom: none;
}
.formWr dl .hissu {
  color: #fff;
  background-color: #d01c24;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: normal;
  margin-left: 10px;
  line-height: 1;
  width: 45px;
  height: 20px;
}
_:-ms-lang(x)::-ms-backdrop,
.formWr dl .hissu {
	padding-top: 5px;
}
.formWr dl .nini {
  color: #fff;
  background-color: #3fa9f5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: normal;
  border-radius: 4px;
  margin-left: 10px;
  line-height: 1;
  width: 34px;
  height: 20px;
}
.formWr dl dd {
  width: 678px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #4f4034;
  padding: 15px 20px;
  overflow: hidden;
  text-align: left;
	font-size: 1.5rem;
}
.btnNext a {
  display: flex;
	justify-content: center;
	align-items: center;
	width: 400px;
	height: 67px;
	margin: 60px auto;
	border: 1px solid #76951d;
	background-color: #76951d;
	position: relative;
	padding: 0 45px;
	font-weight: bold;
	text-align: center;
	font-size: 1.8rem;
	color: #fff;
}
.btnBack a {
  display: flex;
	justify-content: center;
	align-items: center;
	width: 400px;
	height: 67px;
	margin: 60px auto;
	border: 1px solid #afafaf;
	background-color: #afafaf;
	position: relative;
	padding: 0 45px;
	font-weight: bold;
	text-align: center;
	font-size: 1.8rem;
	color: #fff;
}
.btnNext a i {
	position: absolute;
	right: 20px;
	bottom: 50%;
	transform: translateY(50%);
}
.btnBack a i {
	position: absolute;
	left: 20px;
	bottom: 50%;
	transform: scale(-1, 1) translateY(50%);
}
_:-ms-lang(x)::-ms-backdrop,
.btnNext a {
	padding-top: 4px;
}
/* エラー表示 */
.error {
	width: 980px;
	margin: 20px auto;
	color: #d01c24;
	background-color: #fef4f8;
	padding: 20px;
	border: 3px solid #d01c24;
	text-align: left;
}
.error h4 {
	font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 15px;
}
.error ul {
	list-style: none;
	font-size: 1.6rem;
}
.error ul li {
  line-height: 1.4;
  margin-bottom: 5px;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
/* 確認ページ */
.btnWrFlex {
	width: 980px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;

}
@media screen and (min-width: 768px) {
	.btnNext a:hover {
		background-color: #fff;
		color: #76951d;
	}
	.btnNext a:hover .iconArrow {
		fill: #76951d;
	}
	.btnBack a:hover {
		background-color: #fff;
		color: #666;
	}
	.btnBack a:hover .iconArrow {
		fill: #666;
	}
	p.lead br {
		display: none;
	}
	p.privacy a:hover {
		text-decoration: underline;
	}
}
@media screen and (max-width: 767px) {
	main {
		padding-bottom: 76px;
	}
	.mainHeader {
		padding-top: 242px;
		background-position: center bottom 45px;
	}
	.mainHeader h1 {
		background-image: url(../img/h1-bg-sp.png);
		background-size: 30px 30px;
		text-align: center;
		font-size: 2.6rem;
	}
	.mainHeader h1 span {
		padding: 24px 0 18px;
	}
	h2 {
	width: 100%;
	margin: 30px 0;
	padding: 0 16px;
	font-size: 1.8rem;
}
dl.telBox {
	width: 94%;
	margin: 30px auto 50px;
	padding: 10px 0;
	display: block;
	align-items: center;
	background: #768f1d url("../img/icon01.png") no-repeat 0 0;
	background-size: 70px auto;
	color: #fff;
}
dl.telBox dt {
	width: 100%;
	font-size: 1.7rem;
	text-align: center;
}
dl.telBox dt span {
	display: block;
	font-size: 1.4rem;
}
dl.telBox dd {
	width: 100%;
	font-size: 4.0rem;
	font-weight: bold;
	text-align: center;
}
	dl.telBox dd a {
		color: #fff;
	}
h3 {
	border-top: 6px solid #768f1d;
	padding: 30px 16px 20px;
	font-size: 1.8rem;
	text-align: center;
}
h3 img {
	display: block;
	margin: 15px auto;
	vertical-align: middle;
	width: 60px;
	height: auto;
}
p.lead {
	margin: 20px auto;
	padding: 0 16px;
	text-align: left;
	font-size: 1.5rem;
}
	p.lead2 {
	margin: 20px auto 50px;
	padding: 0 16px;
	text-align: center;
	font-size: 1.5rem;
}
p.privacy {
	width: 94%;
	margin: 0 auto;
	text-align: right;
	font-size: 1.5rem;
}
p.thanks {
	margin: 30px 0 0;
	text-align: center;
	font-size: 2.5rem;
	color: #768f1d;
}
/* 入力フォーム*/
.formWr dl {
  width: 94%;
  margin: 40px auto 20px;
  border: 1px solid #4f4034;
  display: block;
  line-height: 1.7;
}
.formWr dl dt {
  width: 100%;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background-color: #e0e8ce;
  border-right: none;
  border-bottom: none;
  padding: 10px;
	font-size: 1.6rem;
}
.formWr dl dt:last-of-type {
  border-bottom: none;
}
.formWr dl .hissu {
  color: #fff;
  background-color: #d01c24;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: normal;
  margin-left: 10px;
  line-height: 1;
  width: 45px;
  height: 20px;
}
.formWr dl .nini {
  color: #fff;
  background-color: #3fa9f5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: normal;
  border-radius: 4px;
  margin-left: 10px;
  line-height: 1;
  width: 34px;
  height: 20px;
}
.formWr dl dd {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #4f4034;
  padding: 15px 10px;
  overflow: hidden;
  text-align: left;
}
.btnNext a {
	width: 94%;
	height: 67px;
	margin: 20px auto 60px;
	padding: 0 45px;
	font-size: 1.8rem;
	color: #fff;
}
.btnBack a {
	width: 94%;
	height: 67px;
	margin: 60px auto 20px;
	padding: 0 45px;
	font-size: 1.8rem;
	color: #fff;
}
/* エラー表示 */
.error {
	width: 94%;
	margin: 20px auto;
	color: #d01c24;
	background-color: #fef4f8;
	padding: 20px;
	border: 3px solid #d01c24;
	text-align: left;
}
.error h4 {
	font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 15px;
}
.error ul {
	list-style: none;
	font-size: 1.5rem;
}
/* 確認ページ */
.btnWrFlex {
	width: 100%;
	margin: 0 auto;
	display: block;
}
.btnNext a:active {
		background-color: #fff;
		color: #76951d;
	}
	.btnNext a:active .iconArrow {
		fill: #76951d;
	}
	.btnBack a:active {
		background-color: #fff;
		color: #666;
	}
	.btnBack a:active .iconArrow {
		fill: #666;
	}
	p.privacy a:active {
		text-decoration: underline;
	}
}
/*----------------------------------------------
 form base styles
----------------------------------------------*/
input::-ms-clear {
  visibility:hidden
}
input::-ms-reveal {
  visibility:hidden
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
  -moz-appearance:textfield;
}
input, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  outline: none;
  border: 1px solid #c9c9c9;
  width: 100%;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  outline: none;
  border: 1px solid #c9c9c9;
  width: 100%;
}
input[type="text"], input[type="tel"] {
	width: 70%;
  height: 40px;
  padding: 10px;
}
input[type="email"] {
  height: 40px;
  padding: 10px;
}
textarea {
  height: 125px;
  padding: 10px;
}
select {
	width: 70%;
  height: 40px;
  padding: 0 10px;
}
@media screen and (max-width:767px) {
	input[type="text"], input[type="tel"] {
	width: 100%;
  height: 40px;
  padding: 10px;
}
textarea {
  height: 100px;
}
select {
	width: 100%;
}
}
/* ----------------------------------------------
 *footoer
 *---------------------------------------------- */
footer {
	background-color: #b5cb82;
	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: #76951d;
		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: #76951d;
		color: #fff;
	}
	footer li:last-child a:active .iconMail {
		fill: #fff;
	}
	.copyrights {
		font-size: 1.2rem;
	}
}