@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 (min-width: 769px)and (max-width: 1280px) {
	html {
		font-size: calc(1000vw / 1280);
	}
}
@media all and (max-width: 374px) {
	html {
		font-size: calc(1000vw / 375);
	}
}
@font-face {
	font-family: "aozoraminchoregular";
	font-weight: 400;
	src: url("../font/aozoraminchoregular.woff2");
}
@font-face {
	font-family: "aozoraminchoregular";
	font-weight: 500;
	src: url("../font/aozoraminchomedium.woff2");
}
body, table, input, textarea, select, option {
	font-family: "aozoraminchoregular";
}
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: #333;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #333;
}
a:hover {
	color: #333;
}
a:active {
	color: #333;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #333;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
	overflow-y: scroll;
	--bodyWidth: 100vw;
}
.fixed {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
}
#container {
	position: relative;
	text-align: left;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 768px) {
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 3.2rem 4.5rem;
	box-sizing: border-box;
	z-index: 99;
}
#gHeader.fix {
	position: fixed;
	opacity: 0;
	transform: translateY(-100%);
	transition: none;
}

#gHeader.show {
	animation: slideIn 0.5s both;
}
#gHeader.hide {
	animation: slideOut 0.5s both;
}
@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes slideOut {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(-100%);
	}
}
#gHeader .logo {
	width: 7.8rem;
}
#gHeader .logoImg {
	display: none;
	width: 14.2rem;
}
#gHeader.fix .logoImg {
	display: block;
	padding-top: 1rem;
}
#gHeader.fix .logo {
	display: none;
}
#gHeader .hShop {
	position: absolute;
	right: 3.8rem;
	top: 2.2rem;
}
#gHeader .hShop img {
	width: 2.5rem;
}
#gNavi {
	position: absolute;
	right: 11.2rem;
	top: 3.2rem;
}
#gNavi ul {
	justify-content: flex-end;
	font-size: 1.2rem;
}
#gNavi li:not(:first-child) {
	margin-left: 3.3rem;
}
#gNavi a {
	color: #fff;
}
#gHeader.fix {
	position: fixed;
	background-color: rgba(32, 58, 3, 0.8);
}
@media all and (min-width: 769px) {
	#gHeader.fix {
		height: 6rem;
		padding: 1.2rem 4.5rem;
		background-color: rgba(32, 58, 3, 0.8);
	}
	#gHeader.fix .hShop a {
		background-color: rgba(35, 24, 21, 0.4);
	}
	#gHeader.fix #gNavi {
		top: 2.3rem;
	}
	#gNavi a:hover {
		color: #E5C18C;
	}
	#gHeader.fix .hShop {
		top: 1.2rem;
	}
	#gHeader .hShop a {
		width: 4rem;
		height: 4rem;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		border-radius: 1rem;
	}
	#gHeader .hShop a:hover {
		background-color: rgba(0, 0, 0, 0.4);
	}
	#gNavi {
		display: block !important;
	}
}
@media all and (max-width: 768px) {
	#gHeader {
		padding: 2rem 2rem 0;
		height: 5rem;
	}
	#gHeader .hShop {
		right: 5.6rem;
		top: 1.7rem;
	}
	#gHeader .logoImg {
		width: 7.8rem;
	}
	#gHeader.fix .logoImg {
		padding-top: 0;
		margin-top: -1.1rem;
	}
	.menu {
		width: 5rem;
		height: 5rem;
		position: absolute;
		right: 0.9rem;
		top: 0;
	}
	.menu span {
		width: 1.9rem;
		height: 1px;
		position: absolute;
		top: 2.2rem;
		left: 1.9rem;
		background: #fff;
		transition: all .35s ease;
	}
	.menu span:nth-of-type(2) {
		top: 3rem;
	}
	.menu span:nth-of-type(3) {
		top: 3.8rem;
	}
	.menu.on {
		top: -0.2rem;
	}
	.menu.on span {
		width: 2.7rem;
		left: 1.5rem;
	}
	.menu.on span:nth-of-type(1) {
		transform: translateY(0.9rem) translateX(0) rotate(135deg);
	}
	.menu.on span:nth-of-type(2) {
		opacity: 0;
	}
	.menu.on span:nth-of-type(3) {
		transform: translateY(-0.7rem) translateX(0) rotate(-135deg);
	}
	#gNavi {
		position: fixed;
		right: 0;
		top: 0;
		width: 17rem;
		height: 100dvh;
		overflow-y: scroll;
		box-sizing: border-box;
		background-color: rgba(21, 35, 2, 0.98);
		display: none;
	}
	#gNavi ul {
		padding: 7.4rem 1rem 4rem 3.4rem;
		display: block;
		font-size: 1.8rem;
	}
	#gNavi li:not(:first-child) {
		margin: 3.4rem 0 0;
	}
	#gNavi li:last-child {
		margin-top: 4.1rem !important;
	}
	#gNavi li:last-child a {
		padding: 0 2.4rem 0 2.8rem;
		display: inline-block;
		color: #E5C18C;
		background: url(../img/common/icon10.png) no-repeat right center,url(../img/common/icon09.png) no-repeat left center;
		background-size: 1.5rem auto,2.1rem auto;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 4.1rem 12.1rem 14.3rem 6.3rem;
	position: relative;
	background-color: #3E6349;
}
#gFooter .fLogo {
	margin-bottom: 0.7rem;
	align-items: center;
}
#gFooter .logo01 {
	width: 10.6rem;
}
#gFooter .img {
	margin: 0 0.7rem 0 1.2rem;
	width: 2.9rem;
}
#gFooter .logo02 {
	width: 13.4rem;
}
#gFooter p {
	color: #fff;
	font-size: 1.2rem;
}
#gFooter .fSub {
	margin-top: 3.5rem;
}
#gFooter .fSns {
	margin-bottom: 1rem;
	justify-content: flex-end;
	align-items: flex-start;
}
#gFooter .fSns a:hover {
	opacity: 0.7;
}
#gFooter .fSns li {
	margin-left: 1.8rem;
	width: 2.4rem;
}
#gFooter .fSns li:first-child {
	margin-top: 0.2rem;
}
#gFooter address {
	text-align: right;
	color: #fff;
	font-size: 1rem;
}
#gFooter .pageTop {
	position: absolute;
	left: 50%;
	bottom: 3.6rem;
	transform: translateX(-50%);
}
#gFooter .pageTop a {
	position: relative;
	display: block;
	font-size: 1.1rem;
	color: #fff;
}
#gFooter .pageTop a::before {
	position: absolute;
	left: 50%;
	width: 1px;
	top: -3.7rem;
	height: 2.8rem;
	background-color: #fff;
	content: "";
	animation: lineReveal 2s ease infinite;
	transform: rotate(180deg);
}
@keyframes lineReveal {
    0%,
    100% {
        clip-path: inset(0 0 0 0);
    }
    33% {
         clip-path: inset(100% 0 0 0);
    }
    66% {
       clip-path: inset(0 0 100% 0);
    }
}
@media all and (max-width: 768px) {
	#gFooter {
		padding: 7rem 2rem 10.9rem;
	}
	#gFooter .fBox {
		display: block;
	}
	#gFooter .fLogo {
		margin-bottom: 1.5rem;
		justify-content: center;
	}
	#gFooter .logo01 {
		width: 9.3rem;
	}
	#gFooter .img {
		margin: 0 0.7rem 0 1.2rem;
		width: 2.4rem;
	}
	#gFooter .logo02 {
		width: 11.8rem;
	}
	#gFooter p {
		text-align: center;
	}
	#gFooter .fSub {
		margin-top: 3.7rem;
	}
	#gFooter .fSns {
		margin-bottom: 1.6rem;
		justify-content: center;
	}
	#gFooter .fSns li {
		margin: 0 0.9rem;
	}
	#gFooter address {
		line-height: 1.8;
		text-align: center;
	}
	#gFooter .pageTop {
		bottom: 2.1rem;
	}
}