.menu-trigger-box {
	position: fixed;
	top: 31px;
	right: 35px;
	width: 80px;
	height: 80px;
	padding: 32px 22px;
	box-sizing: border-box;
	z-index: 9990;
	cursor: pointer;
	background-color: #001860;
	border-radius: 50%;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
	width: 100%;
	height: 100%;
  position: relative;
}
.menu-trigger span {
  position: absolute;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
	width: 100%;
  top: 0;
	left: 0;
}
.menu-trigger span:nth-of-type(2) {
	width: 100%;
  bottom: 0;
	left: 0;
}
.menu-trigger.active span {
	background-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-30deg);
  transform: translateY(8px) rotate(-30deg);
}
.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(-6px) rotate(30deg);
  transform: translateY(-6px) rotate(30deg);
}


.hamburger {
  background-color: rgb(224 224 224 / 1);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 110px 0 80px 110px;
    z-index: -1;
    overflow-y: scroll;
    clip-path: polygon(100% 0, 100% 0, 150% 100%, 100% 100%);
}


}
.hamburger_container {
	position: relative;
}
.pointer {
	position: absolute;
	width: 10px;
	height: 10px;
	background: #001860;
	border-radius: 50%;
	left: -20px;
	top: 30px;
	transition: all .7s cubic-bezier(0.22, 0.61, 0.36, 1) .15s;
}
.hamburger.active {
	animation-name: hamburger_open;
  animation-fill-mode: forwards;
  animation-duration: 1.2s;
	transition-timing-function: ease-out;
}
.hamburger.close {
	animation-name: hamburger_close;
  animation-fill-mode: forwards;
  animation-duration: 1.2s;
	transition-timing-function: ease-out;
}
@keyframes hamburger_open {
  0% {
    clip-path: polygon(100% 0, 100% 0, 150% 100%, 100% 100%);
		z-index: 5000;
  }
	50% {
		clip-path: polygon(100% 0, 100%, 0, 70% 100%, 100% 100%);
		z-index: 5000;
	}
  100% {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
		z-index: 5000;
  }
}
@keyframes hamburger_close {
  0% {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
		z-index: 5000;
  }
	50% {
		clip-path: polygon(100% 0, 100%, 0, 70% 100%, 100% 100%);
		z-index: 5000;
	}
  100% {
    clip-path: polygon(100% 0, 100% 0, 150% 100%, 100% 100%);
		z-index: -1;
  }
}
.ham_header_logo {
	width: 120px;
	height: auto;
	margin-bottom: 80px;
}
.hamburger_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.hamburger_list_item {
	margin-bottom: 40px;
	overflow: hidden;
}
.hamburger_list_item_link {
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-size: 11px;
	line-height: 2.25;
	position: relative;
	transition: 1.2s;
	transition-delay: .5s;
	color: #2B5D89;
	display: block;
	transform: translateY(50px);
}
.hamburger.active .hamburger_list_item_link {
	transform: inherit;
}
.hamburger_list_item_link_en {
	color: #053864;
	font-family: MADEEvolve;
	font-size: 28px;
	display: block;
	margin-bottom: 0px;
	line-height: 1;
}
.hamburger_container > .footer_sns_box_wrapper {
    margin-top: 60px;
    grid-gap: 40px;
    display: block;
    justify-content: flex-start;
}
.hamburger_container > .footer_sns_box.footer_sns_list {
	grid-gap: 20px;
}
.hamburger_container_copy_box {
	overflow: hidden;
}
.hamburger_container_copy {
	color: #053864;
	font-family: MADEEvolve;
	font-size: 11px;
	transition: .8s;
	transition-delay: .5s;
	transform: translateY(50px);
}
.hamburger.active .hamburger_container_copy {
	transform: inherit;
}
.hamburger_sns_box {
	transition: .8s;
	transition-delay: .5s;
	transform: translateY(50px);
	margin-bottom: 0 !important;
	font-family: MADEEvolve;
	display: flex;
	grid-gap: 40px;
	align-items: center;
	font-size: 15px;
}
.hamburger.active .hamburger_sns_box {
	transform: inherit;
    justify-content: flex-start;
	margin-bottom: 50px;
}
.ham_sns_box_wrapper {
	display: inline-block;
	overflow: hidden;
	margin-bottom: 50px;
}

.ham_sns_list_item_text {
	
}
.ham_sns_list {
	grid-gap: 25px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.ham_sns_list_item_link_img_bg {
	width: fit-content;
    background: #053864;
    margin: auto;
    border-radius: 50%;
    padding: 10px;
	}
.ham_sns_list_item_link_img {
	width: 22px;
	margin: auto;
}
.ham_sns_list_item_link_text {
	font-size: 11px;
    margin-top: 7px;
}
.ham_logo {
	width: 196px;
	margin: auto;
}
@media (max-width: 767px) {
	.menu-trigger-box {
    top: 15px;
    right: 35px;
    width: 45px;
    height: 45px;
    padding: 15px 13px;
	}
	.menu-trigger-box {
		top: 20px;
    right: 20px;
	}
	.menu-trigger span:nth-of-type(1) {
    top: 2px;
	}
	.menu-trigger span:nth-of-type(2) {
    bottom: 2px;
	}
	.menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(5px) rotate(-30deg);
    transform: translateY(5px) rotate(-30deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
    -webkit-transform: translateY(-4px) rotate(30deg);
    transform: translateY(-4px) rotate(30deg);
	}
	.hamburger {
		width: 100%;
		padding: 60px 30px;
		padding-top: 15vh;
	}
	.pointer {
		display: none;
	}
	.hamburger_list_item {
		margin-bottom: 25px;
	}
	.ham_header_logo {
    margin-bottom: 60px;
		width: 100px;
	}
	.hamburger_list_item_link {
		font-size: 12px;
	}
	.hamburger_list {
    grid-template-columns: 1fr;
	}
	.hamburger_list_item_link_en {
    font-size: 18px;
    margin-bottom: -1px;
	}
	.ham_sns_box_wrapper {
    margin-top: 20px;
    grid-gap: 10px;
	align-items: baseline;
		margin-bottom: 25px;
	}
	.hamburger_sns_box {
		flex-direction: column;
		align-items: flex-start;
		grid-gap: 15px;
		
	}
	.hamburger.active .hamburger_sns_box {
		align-items: flex-start;
	}
	.ham_sns_list_item_text {
    text-align: left;
	font-size: 12px;
	}
	.ham_sns_list {
    grid-gap: 15px;
	}
	.ham_sns_list_item_link_img {
    width: 17px;
    margin: auto;
}

}