@charset "UTF-8";
/* ヘッダー */
.hamburger {
	display: none;
}

header {
	background: rgba(255, 255, 255, .8);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 0 0 56px;
	position: fixed;
	top: 0;
	z-index: 2;
}

header nav ul {
	display: flex;
	align-items: center;
	height: 64px;
}

header nav ul li {
	margin-right: 50px;
}

header nav ul li a {
	color: #1F1F1F;
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: .05em;
	position: relative;
}

header nav ul a::before {
	background: #006E3F;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	transform-origin: center top;
	transform: scale(0, 1);
	transition: transform .3s;
}

header nav ul a:hover:before {
	transform-origin: center top;
	transform: scale(1, 1);
}

header .shop-link {
	background: rgba(31, 31, 31, .7);
	margin-right: 0;
}

header .shop-link a::before,
header .contact-link a::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1);
    background: #fff;
}

header .shop-link a::before {
	background: #A1A1A1;
}

header .shop-link a span,
header .contact-link span {
	position: relative;
	z-index: 1;
}

header .contact-link a:hover span {
	color: #000;
}

header .shop-link a:hover::before,
header .contact-link a:hover:before {
	transform: scaleX(1);
	transform-origin: left;
}

header .shop-link a {
	color: #fff;
	font-size: 13px;
	font-weight: normal;
	line-height: 1.5;
	padding: 12px 42px 13px;
}

header .contact-link {
	background: #000;
	margin-right: 0;
}

header .contact-link a {
	color: #fff;
	padding: 17px 53px;
}

/* ドロップ */
.has-children {
	position: relative;
}

.has-children:hover ul {
	transform: scaleY(1);
}

.has-children ul {
	background: rgba(255, 255, 255, .8);
	border-radius: 10px;
	flex-flow: column;
	position: absolute;
	transform: scaleY(0);
	transform-origin: center top;
	transition: transform .3s;
	width: 188px;
	height: auto;
	padding: 10px 16px;
}

.has-children ul li {
	margin-right: 0;
	width: 100%;
	position: relative;
	padding-left: 1em;
}

.has-children ul li::before {
	content: "";
	background: #006E3F;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 16px;
	width: 7px;
	height: 7px;
}

header li.has-children a {
	color: #1F1F1F;
}

/* svg */
.text-svg {
	display: block;
	position: relative;
	width: max-content;
	max-width: 100%;
	z-index: 1;
}

.text-svg path {
	fill: transparent;
	stroke: transparent;
}

.text-svg.active path {
	animation: stroke 2s ease-in-out forwards;
	stroke: #000;
	stroke-dasharray: 1800;
	stroke-dashoffset: 0;
	stroke-width: 1;
}

@keyframes stroke {
	0% {
		fill: transparent;
		stroke-dashoffset: 1800;
	}

	10% {
		fill: transparent;
	}

	80% {
		fill: #E0E0E0;
	}

	100% {
		stroke: #E0E0E0;
		fill: #E0E0E0;
		stroke-dashoffset: 0;
	}
}

/* ボタン */

.btn {
	background: #fff;
	border: 1px solid #006E3F;
	border-radius: 30px;
	box-sizing: border-box;
	color: #1F1F1F;
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: .05em;
	position: relative;
	padding: 12px 117px 12px 65px;
	max-width: max-content;
	transition: transform .2s cubic-bezier(0.33, 1, 0.68, 1);
}

.btn::before {
	content: "";
	background: url(../img/btn-w.svg) no-repeat;
	background-size: contain;
	position: absolute;
	right: 41px;
	top: 50%;
	transform: translate(0, -50%);
	transition: .2s;
	width: 13px;
	height: 13px;
	z-index: 1;
}

.btn:hover:before {
	content: "";
	right: 3px;
	transition: .2s all;
	/*animation: slide-out-in .5s;
	animation-fill-mode: forwards;*/
}
/*
@keyframes slide-out-in {
	0% {
		transform: translate(0, -50%);
	}

	50% {
		transform: translate(8px, -50%);
		opacity: 0
	}

	51% {
		transform: translate(-8px, -50%);
		opacity: 0
	}

	100% {
		background: url(../img/btn-w.svg) no-repeat;
		background-size: contain;
		transform: translate(35px, -50%);
		opacity: 1
	}
}*/

.btn::after {
	content: "";
	position: absolute;
	right: 19px;
	top: 11px;
	background: #006E3F;
	border-radius: 50%;
	width: 60px;
	height: 34px;
	transition: .2s all;
	/*transition-delay: .2s;*/
}

.btn:hover::after {
	right: -17px;
}

/* フッター */

.bottom-svg {
	text-align: right;
	margin-right: 55px;
}

footer {
	background: url(../img/footer.webp);
	background-repeat: repeat;
	padding: 65px 0 40px;
	position: relative;
	z-index: 1;
}

footer li a {
	font-size: 16px;
	font-weight: 500;
	line-height: 2.5;
	letter-spacing: .05em;
}

footer li a:hover {
	color: #006E3F;
}

footer ul>li {
	font-size: 16px;
	font-weight: 500;
	line-height: 2.5;
	letter-spacing: .05em;
	padding-left: .8em;
	position: relative;
	margin-top: 14px;
}

footer ul>li:first-child {
	margin-top: 0;
}

footer ul>li::before {
	content: "";
	background: #006E3F;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 16px;
	width: 7px;
	height: 7px;
}

footer ul>li:has(.btn) {
	margin-top: 0;
	padding-left: 0;
}

footer ul>li:has(.btn)::before {
	content: none;
}

.child-link {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 20px;
	margin-top: -13px !important;
	margin-left: -.8em;
}

.child-link li {
	padding-left: .8em;
	position: relative;
	margin-top: 0;
}

.child-link li::before {
	content: "";
	background: url(../img/arrow-g.svg) no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-30%);
	width: 8px;
	height: 8px;
}

footer .child-link li a {
	color: #3D3D3D;
	font-size: 15px;
	line-height: 2;
}

footer .child-link li a:hover {
	color: #006E3F;
}

/* フッター ボタン */

footer .btn {
	border-radius: 10px;
	color: #fff !important;
	font-size: 16px;
	max-width: 315px;
}

footer .shop-link {
	background: #3D3D3D;
	border: 1px solid #3D3D3D;
	line-height: 1.3;
	margin-top: 24px;
	padding: 9px 28px 9px 52px;
}

footer .shop-link::before {
	background: url(../img/footer-b.svg) no-repeat;
	background-size: contain;
	right: 34px;
	width: 8px;
	height: 8px;
}

footer .shop-link::after {
	top: 17px;
	background: #fff;
	width: 41px;
	height: 23px;
}

/*footer .shop-link:hover {
	background: #fff;
	border: 1px solid #3D3D3D;
	color: #3D3D3D !important;
}*/

footer .shop-link:hover:before {
	content: "";
	right: -2px;
	/*animation: slide-shop .5s;
	animation-fill-mode: forwards;*/
}
/*
@keyframes slide-shop {
	0% {
		transform: translate(0, -50%);
	}

	50% {
		transform: translate(8px, -50%);
		opacity: 0
	}

	51% {
		transform: translate(-8px, -50%);
		opacity: 0
	}

	100% {
		background: url(../img/footer-w.svg) no-repeat;
		background-size: contain;
		transform: translate(35px, -50%);
		opacity: 1
	}
}*/

footer .shop-link:hover::after {
	right: -17px;
}

footer .contact-link {
	background: #006E3F;
	margin-top: 9px;
	padding: 14px 130px 14px 75px;
}

footer .contact-link::before {
	background: url(../img/footer-g.svg) no-repeat;
	background-size: contain;
	right: 34px;
	width: 8px;
	height: 8px;
}

footer .contact-link::after {
	top: 19px;
	background: #fff;
	width: 41px;
	height: 23px;
}

/*footer .contact-link:hover {
	background: #fff;
	color: #006E3F !important;
}*/

footer .contact-link:hover:before {
	content: "";
	right: -2px;
	/*animation: slide-contact .5s;
	animation-fill-mode: forwards;*/
}
/*
@keyframes slide-contact {
	0% {
		transform: translate(0, -50%);
	}

	50% {
		transform: translate(8px, -50%);
		opacity: 0
	}

	51% {
		transform: translate(-8px, -50%);
		opacity: 0
	}

	100% {
		background: url(../img/footer-w.svg) no-repeat;
		background-size: contain;
		transform: translate(35px, -50%);
		opacity: 1
	}
}*/

footer .contact-link:hover::after {
	right: -17px;
}

footer .col {
	display: flex;
	justify-content: space-between;
	max-width: 1140px;
	width: 90%;
	margin: 0 auto;
}

.address>div:last-child {
	margin-top: 48px;
}

.address p {
	font-size: 15px;
	font-weight: 500;
	line-height: 2.5;
	letter-spacing: .05em;
}

.address p span {
	font-size: 20px;
	line-height: 1.2;
}

.address p a {
	margin-left: 8px;
}

.address>img {
	margin-bottom: 39px;
	width: 105px;
	height: 70px;
}

.privacy {
	display: flex;
    gap: 24px;
    justify-content: end;
	text-align: right;
	max-width: 1140px;
	margin: -30px auto 0;
}

.privacy a {
	color: #3D3D3D;
	font-size: 13px;
	font-weight: normal;
	line-height: 2.3;
	letter-spacing: .05em;
}

@media screen and (max-width:1024px) {

	/* ハンバーガーメニュー */
	header {
		padding: 0 24px;
		height: 56px;
	}

	header nav {
		position: absolute;
		right: 0;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		transform: translateX(100%);
		background-color: #1F1F1F;
		transition: ease .4s;
	}

	.hamburger {
		cursor: pointer;
		background: none;
		border: none;
		display: block;
		width: 24px;
		height: 20px;
		padding: 0;
		position: relative;
		z-index: 1;
	}

	.hamburger span {
		width: 100%;
		height: 2px;
		background: #000;
		position: absolute;
		left: 50%;
		transform: translatex(-50%);
		transition: .3s;
	}

	header.active .hamburger span {
		background: #fff;
	}

	.hamburger span:nth-child(1) {
		top: 0;
	}

	.hamburger span:nth-child(2) {
		top: 10px;
	}

	.hamburger span:nth-child(3) {
		top: 20px;
	}

	/* open */
	header nav.ham-active {
		transform: translateX(0);
	}

	header > a {
		position: relative;
		z-index: 2;
	}

	.hamburger.ham-active span {
		background: #fff;
	}

	header:has(.ham-active) svg path {
		fill: #fff;
		stroke: #fff;
	}

	.hamburger.ham-active span:nth-child(1) {
		top: 12px;
		transform: translatex(-50%)rotate(45deg);
	}

	.hamburger.ham-active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.ham-active span:nth-child(3) {
		top: 12px;
		transform: translatex(-50%)rotate(-45deg);
	}

	/* ヘッダー sp */
	header svg {
		width: 48px;
		z-index: 1;
	}

	header nav ul {
		align-items: flex-start;
		flex-flow: column;
		justify-content: center;
		gap: 17px;
		margin: 0 auto;
		width: max-content;
		height: 100vh;
	}

	header nav ul li a,
	.has-children {
		color: #fff !important;
		font-size: 25px;
		font-weight: bold;
		line-height: 1.6;
		position: relative;
		padding-left: 1em;
	}

	.has-children > a {
		padding-left: 0;
	}

	header nav>ul>li a::before,
	.has-children::before {
		content: "";
		position: absolute;
		top: 16px;
		left: 0;
		background: #006E3F;
		border-radius: 50%;
		width: 9px;
		height: 9px;
	}

	.has-children ul {
		gap: 0;
		background: none;
		margin: 0 auto;
		transform: none;
		padding: 0;
		position: relative;
		width: 100%;
	}

	.has-children ul li::before {
		content: '';
		background: none;
		border-radius: 0;
		width: 5px;
		height: 5px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		transform: rotate(45deg);
		left: 7px;
	}

	.has-children ul li a {
		font-size: 16px;
		font-weight: 500;
		line-height: 2.5;
		padding-left: 0;
	}

	header nav ul .has-children a::before {
		content: none;
	}

	header .shop-link a,
	header .contact-link a {
		border-radius: 10px;
		box-sizing: border-box;
		font-size: 16px;
		font-weight: 500;
		position: relative;
		width: 315px;
	}

	header .shop-link {
		margin-top: 19px;
	}

	header .shop-link a {
		background: #fff;
		color: #005531 !important;
		line-height: 1.2;
		padding: 12px 29px 12px 52px;
	}

	header .shop-link a::after,
	header .contact-link a::after {
		content: "";
		position: absolute;
		right: 19px;
		top: 50%;
		transform: translateY(-50%);
		border-radius: 50%;
		width: 41px;
		height: 23px;
	}

	header .shop-link a::before,
	header .contact-link a::before {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: auto;
		right: 34px;
		width: 8px;
		height: 8px;
		z-index: 1;
	}

	header .shop-link a::before {
		background: url(../img/footer-w.svg) no-repeat;
		background-size: contain;
	}

	header .shop-link a::after {
		background: #005531;
	}

	header .contact-link a::before {
		background: url(../img/footer-g.svg) no-repeat;
		background-size: contain;
	}

	header .contact-link a::after {
		background: #fff;
	}

	header .contact-link {
		background: none;
		margin-top: -8px;
	}

	header .contact-link a {
		background: #005531;
		color: #fff !important;
		line-height: 2.5;
		padding: 11px 29px 11px 75px;
	}
}

@media screen and (max-width:768px) {

	/* フッター sp */
	.bottom-svg {
		margin-right: 23px;
	}

	.bottom-svg img {
		width: 104px;
	}

	footer {
		padding: 42px 23px 45px 32px;
	}

	footer .col {
		flex-flow: column-reverse;
		gap: 48px;
		justify-content: center;
		width: 100%;
		max-width: max-content;
	}

	footer .col ul {
		margin-top: 29px;
	}

	.child-link li {
		line-height: 0;
	}

	.address p {
		line-height: 2;
	}

	.address p span {
		font-size: 20px;
		line-height: 1.2;
	}

	.address>div:last-child {
		margin-top: 25px;
	}

	.privacy {
		flex-flow: column-reverse;
		justify-content: center;
		gap: 0;
		margin: 33px auto 0;
		text-align: center;
	}
}