.header-wrapper {
	display: block;
	position: fixed;
	z-index: 20;
	width: 100%;
}

.header_inner {
	position: relative;
	width: 100%;
}

.header_inner::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.03);
	content: "";
	filter: blur(35px);

/*-webkit-backdrop-filter: blur(35px);*/

	backdrop-filter: blur(35px);
}

.header-wrapper a {
	color: #2c3841;
	transition: all 0.3s ease;
}

.header-wrapper a:hover {
	opacity: 0.7;
}

.header_contents {
	display: flex;
	position: relative;
	z-index: 9999;
	max-width: 1820px;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
}

@media screen and (min-width: 768px) {
	.header_contents {
		width: 95%;
		height: 110px;
	}
}

@media screen and (max-width: 767px) {
	.header_inner {
		padding: 0 20px;
	}

	.header_contents {
		width: 100%;
		height: 75px;
	}
}

.head_base {
	display: flex;
	column-gap: 20px;
	align-items: center;
}
.head_base a {
	background-image: url(../img/instagram_gradate.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	font-size: 35px;

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.foot_base {
	display: flex;

	row-gap: 20px;
}
@media screen and (min-width: 1001px) {
	.foot_base {
		flex-direction: column;
	}
	.footer-navigation-nav {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 1000px) {
	.foot_base {
		justify-content: space-between;
		align-items: flex-start;
	}
}
.foot_insta {
	display: block;
	width: fit-content;
	background-image: url(../img/instagram_gradate.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	color: transparent;
	font-size: 35px;
	line-height: 1;

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.site_title {
	display: block;
	width: fit-content;
	word-break: keep-all;
}

.site_title a {
	display: flex;
	width: fit-content;
	border-bottom: clamp(0.125rem, 0.042rem + 0.17vw, 0.25rem) solid #f2afaa;
	column-gap: 5px;
	align-items: center;
}

@media screen and (max-width: 1270px) {
	.site_title a {
		flex-direction: column;
	}

	.h1-small {
		margin-bottom: -4px;
	}
}

.site_title a span {
	display: block;
}

.h1-small {
	font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
}

.h1 {
	font-size: clamp(1.25rem, 0.622rem + 1.31vw, 2.188rem);
}

.nav-wrapper {
	display: block;
	max-width: 930px;
	min-width: 915px;
	width: 66.7583%;
	margin-right: 20px;
	margin-left: auto;
	font-weight: var(--Medium);
	font-size: clamp(0.875rem, 0.749rem + 0.26vw, 1.063rem);
}



.header_menu-list {
	display: flex;
	column-gap: 10px;
	justify-content: space-between;
	align-items: center;
}






#header_menu-contact {
	font-weight: var(--Bold);
}

#header_menu-contact a {
	display: block;
	border: solid 2px #f2afaa;
	border-radius: 37.5px;
	background-color: #f2afaa;
	color: #ffffff;
}

#header_menu-contact a:hover {
	background-color: #ffffff;
	color: #f2afaa;
	opacity: 1;
}

.header_contact-content {
	display: flex;
	padding: 22px clamp(0.781rem, 0.07rem + 1.48vw, 1.844rem);
	column-gap: 15px;
	flex-direction: row-reverse;
	align-items: center;
}

.header_contact-content img {
	width: clamp(1.5rem, 0.83rem + 1.39vw, 2.5rem);
}

.navToggle {
	display: flex;
	z-index: 9999;
	overflow: hidden;
	width: 50px;
	padding-top: 5px;
	background-color: #80d05d;
	color: #ffffff;
	font-weight: var(--Bold);
	font-size: 12px;
	flex-direction: column;
	align-items: center;
	cursor: pointer;

	aspect-ratio: 1 / 1;
}

@media screen and (min-width: 1241px) {
	.navToggle {
		display: none;
	}
}

@media screen and (max-width: 1240px) {
	.nav-wrapper {
		display: none;
	}
}

.toggle_line {
	display: flex;
	position: relative;
	width: 30px;
	height: 15px;
	margin-top: 5px;
	margin-left: 0.5px;
	justify-content: center;
	align-items: center;
}

.navToggle span {
	position: absolute;
	transform-origin: center;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
}


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

.navToggle span:nth-child(2) {
	top: 6.5px;
}

.navToggle span:nth-child(3) {
	bottom: 0;
}

.motion_union span:nth-of-type(1) {
	animation: union-bar01 0.75s forwards;
	-webkit-animation: union-bar01 0.75s forwards;
}

.motion_union span:nth-of-type(2) {
	opacity: 1;
	transition: all 0.25s 0.25s;
}

.motion_union span:nth-of-type(3) {
	animation: union-bar02 0.75s forwards;
	-webkit-animation: union-bar02 0.75s forwards;
}

.motion_union.active span:nth-of-type(1) {
	animation: active-union-bar01 0.75s forwards;
	-webkit-animation: active-union-bar01 0.75s forwards;
}

.motion_union.active span:nth-of-type(2) {
	opacity: 0;
}

.motion_union.active span:nth-of-type(3) {
	animation: active-union-bar03 0.75s forwards;
	-webkit-animation: active-union-bar03 0.75s forwards;
}



@keyframes union-bar01 {
	0% {
		transform: translateY(6.5px) rotate(28deg);
	}

	50% {
		transform: translateY(6.5px) rotate(0);
	}

	100% {
		transform: translateY(0) rotate(0);
	}
}

@keyframes union-bar02 {
	0% {
		transform: translateY(-6.5px) rotate(-28deg);
	}

	50% {
		transform: translateY(-6.5px) rotate(0);
	}

	100% {
		transform: translateY(0) rotate(0);
	}
}

@keyframes active-union-bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}

	50% {
		transform: translateY(6.5px) rotate(0);
	}

	100% {
		transform: translateY(6.5px) rotate(28deg);
	}
}

@keyframes active-union-bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}

	50% {
		transform: translateY(-6.5px) rotate(0);
	}

	100% {
		transform: translateY(-6.5px) rotate(-28deg);
	}
}
.menu_container {
	display: flex;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9000;
	width: 100%;
	height: 100vh;
	padding: 0 20px;
	background-color: #ffffff;
	opacity: 0;
	flex-direction: column;
	align-items: center;
	transition: all 0.6s;
}
.menu_container.active {
	visibility: visible;
	overflow-y: scroll;
	opacity: 1;
}
.menu_inner {
	display: flex;
	position: relative;
	z-index: 9999;
	max-width: 1000px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	flex-direction: column;
	flex-wrap: wrap;
}.mobile_menu-list {
	display: flex;
	width: 100%;
	height: 100%;
	font-size: clamp(0.875rem, 0.749rem + 0.26vw, 1.063rem);
	column-gap: clamp(3.125rem, -12.757rem + 33.09vw, 8.75rem);
	flex-direction: column;
	flex-wrap: wrap;

	row-gap: 20px;
	;
}

#mobile_menu-contact a {
	display: block;
	max-width: 270px;
	border: solid 2px #f2afaa;
	border-radius: 37.5px;
	background-color: #f2afaa;
	color: #ffffff;
}
.mobile_contact-content {
	display: flex;
	padding: 22px clamp(0.781rem, 0.07rem + 1.48vw, 1.844rem);
	font-weight: bold;
	column-gap: 15px;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}.mobile_contact-content img {
	width: clamp(1.5rem, 0.83rem + 1.39vw, 2.5rem);
}
@media screen and (min-width: 768px) {
	.mobile_nav-wrapper {
		display: flex;
		max-width: 800px;
		width: 100%;
	}
	.menu_inner {
		padding-top: 150px;
	}
}

@media screen and (max-width: 767px) {
	.menu_inner {
		padding-top: 200px;
	}
}
