@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
@media all and (max-width: 374px) {
	html {
		font-size: calc(1000vw / 375);
	}
}
@media all and (min-width: 376px) and (max-width: 896px) {
	html {
		font-size: calc(1000vw / 375);
	}
}
body, table, input, textarea, select, option {
	font-family: "M PLUS Rounded 1c", sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
chrome_annotation {
	border: none !important;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
address {
	font-style: normal;
}
a,
a:link {
	color: #000;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
}
a:active {
	color: #000;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 132rem;
	color: #000;
	font-size: 1.8rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background: #fbff90;
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	padding-top: 5.4rem;
	text-align: left;
	position: relative;
	overflow: hidden;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.5rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
	#container {
		padding-top: 8.2rem;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader .logo {
	position: absolute;
	top: 4.2rem;
	left: 3.9rem;
	width: 25.1rem;
	z-index: 99;
}
#gHeader .rightBox {
	position: absolute;
	top: 3.8rem;
	right: 4rem;
	display: flex;
	z-index: 99;
}

.menuBtn {
	margin: 0.2rem 0 0 1rem;
	width: 7.4rem;
	height: 7.4rem;
	border-radius: 5rem;
	background-color: #000;
	position: relative;
	cursor: pointer;
	transition: 0.3s;
}
@media all and (min-width: 897px) {
	.menuBtn:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	#gHeader .rightBox {
		top: 1.5rem;
		right: 1rem;
	}
	.menuBtn {
		margin: 0 0 0 0.6rem;
		width: 5rem;
  		height: 5rem;
	}
	#gHeader .logo {
		top: 2.2rem;
		left: 1rem;
		width: 13rem;
		z-index: 99;
	}
}

/* menu */
.menu {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 2rem;
	width: 3.5rem;
	z-index: 100;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	transform: translate(-50%,-50%);
}
.menu.active .top {
	transform: translateY(0.8rem) translateX(0) rotate(-45deg);
}
.menu.active .middle {
	opacity: 0;
}
.menu.active .bottom {
	transform: translateY(-0.8rem) translateX(0) rotate(45deg);
}
.menu span {
	background: #fff;
	border: none;
	height: 0.3rem;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	border-radius: 0.5rem;
	cursor: pointer;
}
.menu span:nth-of-type(2) {
	top: 0.8rem;
}
.menu span:nth-of-type(3) {
	top: 1.6rem;
}
@media all and (max-width: 896px) {
	.menu {
		height: 1.5rem;
  		width: 2.3rem;
	}
	.menu span {
		height: 0.2rem;
	}
	.menu span:nth-of-type(2) {
		top: 0.6rem;
	}
	.menu span:nth-of-type(3) {
		top: 1.2rem;
	}
	.menu.active .top {
		transform: translateY(0.6rem) translateX(0) rotate(-45deg);
	}
	.menu.active .bottom {
		transform: translateY(-0.6rem) translateX(0) rotate(45deg);
	}
}


/* menuBox */
.menuBox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: rgba(251,255,144, 0.96);
	z-index: 99;
	display: none;
}
.menuBox .close {
	width: 7.5rem;
	position: absolute;
	top: 4rem;
	right: 3.9rem;
	cursor: pointer;
}
.menuBox .innerBox {
	padding: 10.9rem 2rem;
}
.menuBox .naviUl {
	margin: 0 auto;
	max-width: 36.1rem;
	font-size: 2.75rem;
	font-weight: 800;
	text-align: center;
}
.menuBox .naviUl a {
	padding: 2.1rem 0 2rem;
	display: block;
}
.menuBox .naviUl li {
	border-bottom: 0.3rem solid #000;
}
.menuBox .comBtn {
	margin-top: 4.6rem;
}
.menuBox .comBtn a {
	margin: 0 auto;
}
@media all and (min-width: 897px) {
	.menuBox .comBtn a {
		width: 36.6rem;
		font-size: 2.75rem;
	}
	.menuBox .comBtn .btn {
		height: 9.6rem;
		border-width: 0.4rem;
	}
	.menuBox .comBtn .hand {
		width: 8.2rem;
		left: -3.4rem;
		bottom: -2.3rem;
	}
	.menuBox .naviUl a:hover {
		opacity: 0.7;
	}
	.menuBox .close:hover {
		opacity: 0.7;
	}
	
}
@media all and (max-width: 896px) {
	.menuBox .close {
		width: 5.1rem;
		top: 1.5rem;
		right: 0.9rem;
	}
	.menuBox .naviUl {
		max-width: 29.8rem;
		font-size: 2.24rem;
	}
	.menuBox .naviUl li {
		border-width: 0.2rem;
	}
	.menuBox .innerBox {
		padding: 9.7rem 2rem;
	}
	.menuBox .naviUl a {
		padding: 1.8rem 0 1.7rem;
	}
	.menuBox .comBtn {
		margin-top: 3.7rem;
	}
	.menuBox .comBtn a {
		width: 29.6rem;
		font-size: 2.242rem;
	}
	.menuBox .comBtn .btn {
		height: 7.9rem;
		border-width: 0.3rem;
	}
	.menuBox .comBtn .hand {
		width: 6.7rem;
		left: -3rem;
		bottom: -2.1rem;
	}
}
	
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#main-footer {
	background: #9067A2;
	position: relative;
}
#main-footer .footer_inner {
	display: flex;
	align-items: flex-end;
	font-family: "Montserrat", sans-serif;
	width: 100%;
	max-width: 136.6rem;
	padding: 2.8rem 7.3rem 2.7rem 7.3rem;
	margin: 0 auto;
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
}
@media screen and (max-width: 1200px) {
	#main-footer .footer_inner {
		padding: 2.5rem 6rem 1.8rem 3rem;
		align-items: center;
	}
}
@media screen and (max-width: 896px) {
	#main-footer .footer_inner {
		display: block;
		text-align: center;
		padding: 2.5rem 3rem 3rem;
	}
}
#main-footer .footer_inner .copyright {
	width: 77.6%;
	max-width: calc(100% - 13.7rem);
	letter-spacing: 1.2px;
	position: relative;
	top: 0.8rem;
}

@media screen and (max-width: 1200px) {
	#main-footer .footer_inner .copyright {
		top: 0;
	}
}

@media screen and (max-width: 896px) {
	#main-footer .footer_inner .copyright {
		width: 100%;
		max-width: 100%;
		margin-top: 2.3rem;
		line-height: 1.92;
	}
}


/* page-top */
.page-top {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 4rem;
	right: 4rem;
	background: #694977;
	letter-spacing: 0;
	width: 6.5rem;
	height: 6.5rem;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
	color: #fff !important;
	z-index: 99;
}
@media all and (min-width: 897px) {
	.page-top:hover {
		opacity: 0.7 !important;
	}
}
@media screen and (max-width: 896px) {
	.page-top {
		font-size: 0.7rem;
		width: 4.5rem;
		height: 4.5rem;
		bottom: 1rem;
		right: 1rem;
	}
}

.page-top img {
	display: block;
	margin: 0 auto 1.5rem;
}
@media screen and (max-width: 896px) {
	.page-top img {
		margin-bottom: 0.7rem;
	}
}
.page-top.bot {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 0 1.5rem;
	letter-spacing: 0.8px;
	transition: 0.3s;
	width: auto;
	height: auto;
}
.page-top.show {
	opacity: 1;
	pointer-events: auto;
	transition: 0.3s;
}