.hamburger_btn {
	width: 8.2rem;
	height: 2.5rem;
	border-radius: 100vmax;
	background-color: rgb(0 203 204 / .3);
	backdrop-filter: blur(25px);
	position: fixed;
	top: 2.5rem;
	right: 2rem;
	z-index: 9999;
	display: none;
}
.hamburger_btn.active {
	background-color: #00CBCC;
}
.hamburger_btn_inner {
	display: flex;
	align-items: center;
	padding-left: 1.3rem;
	gap: .8rem;
	width: 100%;
	height: 100%;
}
.hamburger_btn_inner:after {
	content: "MENU";
	font-family: aktiv-grotesk, sans-serif;
	font-family: "optima-lt-pro", sans-serif;
	font-size: 1.1rem;
	color: #F2F3F5;
	line-height: 1;
	letter-spacing: 0.05em;
	transition: .3s;
}
.hamburger_btn.active .hamburger_btn_inner:after {
	content: "CLOSE";
}
.hamburger_btn_line {
	width: 1.5rem;
	height: .9rem;
	position: relative;
}
.hamburger_btn_line span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	background-color: #fff;
	position: absolute;
	width: 100%;
	height: .1rem;
}
.hamburger_btn_line span:nth-of-type(1) {
	top: 0;
}
.hamburger_btn_line span:nth-of-type(2) {
	top: .4rem;
}
.hamburger_btn_line span:nth-of-type(3) {
	bottom: 0;
}
.hamburger_btn.active .hamburger_btn_line span:nth-of-type(1) {
	transform: translateY(.4rem) rotate(30deg);
}
.hamburger_btn.active .hamburger_btn_line span:nth-of-type(2) {
	opacity: 0;
}
.hamburger_btn.active .hamburger_btn_line span:nth-of-type(3) {
	transform: translateY(-.4rem) rotate(-30deg);
}


.hamburger {
	position: fixed;
	z-index: 5000;
	width: 37.3rem;
	height: calc(100dvh - 3rem);
	top: 1.5rem;
	left: 1rem;
	background-color: rgb(77 77 77 / .6);
	backdrop-filter: blur(18px);
	border-radius: 1.1rem;
	padding: 0 1rem 5rem;
	box-sizing: border-box;
	clip-path: inset(0 0 100% 0);
	transition: clip-path 0.5s ease;
}
.hamburger.active {
	clip-path: inset(0 0 0 0);
}
.hamburger_inner {
	height: 100%;
}
.hamburger_inner_sns_flex {
 	display: flex;
 	justify-content: center;
     gap: 2rem;
}
.hamburger_instagram {
	width: 2rem;
	margin: 1.5rem 0 0;
	display: block;
}
.hamburger_box {
	margin-top: 8rem;
	padding-left: 1rem;
	padding-right: 1.5rem;
	overflow-y: scroll;
	height: calc(100% - 11.5rem);
}
.hamburger_box::-webkit-scrollbar {
	width: .2rem;
}
.hamburger_box::-webkit-scrollbar-thumb {
  background: #fff;
}
.hamburger_box::-webkit-scrollbar-track {
  background: rgb(242 243 245 / 0.6);
}
.hamburger_list {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 3rem 0;
}
.hamburger_list_item_link {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.5rem;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.05em;
}
.hamburger_list_item_link_blank {
	display: flex;
	align-items: baseline;
	gap: 1rem;
}
.hamburger_list_item_link_blank:after {
	content: "";
	width: 1.3rem;
	height: 1.4rem;
	background-image: url("../img/blank-icon.svg");
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
}
.hamburger_column_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 4rem;
}
.hamburger_column_title {
	font-family: ivymode, sans-serif;
	font-size: 1.3rem;
	color: #fff;
}
.hamburger_column_arrow {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid #fff;
	display: grid;
	place-items: center;
}
.hamburger_column_arrow_img {
	width: .85rem;
	height: .5rem;
	filter: brightness(10);
}
.hamburger_column {
	margin-top: 1rem;
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.hamburger_column::-webkit-scrollbar {
	display: none;
}
.hamburger_column_link {
	width: 12.5rem;
	height: 15rem;
	flex-shrink: 0;
	display: block;
	white-space: nowrap;
	position: relative;
	z-index: 2;
	padding-top: 5.8rem;
	text-align: center;
}
.hamburger_column_image {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.hamburger_column_image:before {
	content: "";
	background-color: rgb(30 30 30 / .6);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.hamburger_column_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hamburger_column_text_en {
	font-family: ivymode, sans-serif;
	font-weight: 300;
	font-size: 2rem;
	color: #fff;
	line-height: 1;
}
.hamburger_column_text_ja {
	font-size: 1rem;
	color: #fff;
	margin-top: .5rem;
}
.hamburger_column_link_arrow {
	width: 1.2rem;
	margin: 1.5rem auto 0;
	filter: brightness(10);
}
.hamburger_recruit {
	height: 12rem;
	background-image: url(../img/hamburger-recruit.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 2.5rem;
	display: block;
	padding: 2rem;
	position: relative;
}
.hamburger_recruit:before {
	content: "";
	width: 1.2rem;
	height: .7rem;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	background-image: url(../img/arrow-black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	filter: brightness(10);
}
.hamburger_recruit_text {
	font-size: .9rem;
	color: #fff;
	line-height: 1.3;
}
.hamburger_recruit_title_en {
	font-family: ivymode, sans-serif;
	font-weight: 300;
	font-size: 2.8rem;
	color: #fff;
	line-height: 1;
	margin-top: .8rem;
}
.hamburger_recruit_title_ja {
	font-size: 1rem;
	color: #fff;
	line-height: 1;
	margin-top: .8rem;
}

@media (max-width:767px) {
	.hamburger_btn {
		display: block;
	}
}