@charset "UTF-8";
/* CSS Document */
/* headArea
================================================== */
.header {
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 108px;
	padding: 0;
	background-color: rgba(255, 255, 255, 0.5);
	transition: 0.5s;
}
.header.scroll {
	background-color: #fff;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: 0.5s;
}
.headInner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 3%;
}
.headLogo {
	width: 180px;
	margin-top: 18px;
}
.headLinks {
	padding-top: 16px;
}
.btn {
	position: relative;
	display: inline-block;
	border: solid 1px #222;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	line-height: 2px%;
}
.btn:hover {
	border: solid 1px #8ed2f4;
	transition: .3S;
	-webkit-transition: .3s;
}
.btn a {
	padding: 5px 35px 5px 45px;
	color: #222;
	display: block;
}
.btn:hover a {
	transition: .3S;
	-webkit-transition: .3s;
	color: #8ed2f4;
}
.btn .btn-border:before {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: .3s;
	transition: .3s;
	font-family: 'Material Symbols Outlined';
	content: "\e887";
	-webkit-transform: translateX(10px) translateY(5px);
	transform: translateX(10px) translateY(5px);
}
.btn:hover .btn-border:before {
	-webkit-transform: translateX(16px) translateY(5px);
	transform: translateX(16px) translateY(5px);
	color: #8ed2f4;
}
.menuBtn {
	display: none;
}
@media screen and (min-width: 1px) and (max-width: 767.499px) {
	.header {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		z-index: 15;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 64px;
		padding: 10px 10px 10px 15px;
	}
	.headInner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
		padding: 0;
	}
	.headLogo {
		width: 100px;
		margin-top: 4px;
	}
	.headLinks {
		display: none;
	}
	.menuBtn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 70px;
		height: 44px;
		margin-left: 10px;
	}
	.m-head-menu {
		position: relative;
		width: 70px;
		height: 44px;
	}
	.m-head-menu--active {
		background: #f3f4f5;
	}
	.m-head-menu__item {
		display: inline-block;
		position: absolute;
		right: 0;
		left: 0;
		width: 32px;
		height: 2px;
		margin: 0 auto;
		border-radius: 2px;
		background: #222222;
		-webkit-transition-duration: 0.4s;
		transition-duration: 0.4s;
		-webkit-transition-property: background, border, color, fill, content, opacity, -webkit-transform;
		transition-property: background, border, color, fill, content, opacity, -webkit-transform;
		transition-property: background, border, color, transform, fill, content, opacity;
		transition-property: background, border, color, transform, fill, content, opacity, -webkit-transform;
	}
	.m-head-menu__item:nth-of-type(1) {
		top: 8px;
	}
	.m-head-menu__item:nth-of-type(2) {
		top: 14px;
	}
	.m-head-menu__item:nth-of-type(3) {
		top: 20px;
	}
	.m-head-menu__text {
		position: absolute;
		bottom: 4px;
		width: 100%;
		color: #222222;
		font-size: 10px;
		letter-spacing: 0;
		line-height: 1.1;
		text-align: center;
	}
	.m-head-menu__text__open {
		display: block;
	}
	.m-head-menu__text__close {
		display: none;
	}
	.m-head-menu--active > *:nth-child(1) {
		-webkit-transform: translateY(6px) rotate(-335deg);
		transform: translateY(6px) rotate(-335deg);
	}
	.m-head-menu--active > *:nth-child(2) {
		opacity: 0;
	}
	.m-head-menu--active > *:nth-child(3) {
		-webkit-transform: translateY(-6px) rotate(335deg);
		transform: translateY(-6px) rotate(335deg);
	}
	.m-head-menu--active .m-head-menu__text__open {
		display: none;
	}
	.m-head-menu--active .m-head-menu__text__close {
		display: block;
	}
}
/* headSnsArea
================================================== */
.headSns {
	margin-top: 18px;
}
.headSnsIcon {
	float: left;
	margin-right: 10px;
	width: 30px;
}
.headSnsIcon:last-child {
	padding-top: 4px;
}
@media screen and (min-width: 1px) and (max-width: 767.499px) {
	.headSns {
		display: none;
	}
}