.menu-trigger-box {
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	z-index: 9990;
	cursor: pointer;
    display: none;
    background-color: #373737;
    border-radius: 50%;
    padding: 13px;
}
.menu-trigger-box.active {
    background-color: #fff;
    box-shadow: 0 4px 4px rgb(255 255 255 / .15);
}
.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: 1px;
    background-color: #fff;
    border-radius: 4px;
    transition: .4s;
}
.menu-trigger-box.active .menu-trigger span {
	background-color: #373737;
}
.menu-trigger span:nth-of-type(1) {
	width: 100%;
    top: 0;
	left: 0;
}
.menu-trigger span:nth-of-type(2) {
	width: 100%;
    top: 5px;
	left: 0;
}
.menu-trigger span:nth-of-type(3) {
    width: 100%;
    top: 10px;
	left: 0;
}
.menu-trigger-box.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
  }
  .menu-trigger-box.active span:nth-of-type(2) {
      opacity: 0;
  }
  .menu-trigger-box.active span:nth-of-type(3) {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
@media (max-width: 1250px) {
    .menu-trigger-box {
        display: block;
    }
}

.drawer {
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #373737;
    z-index: -99;
    padding: 0 30px;
    transition: .3s;
    opacity: 0;
}
.drawer.active {
    opacity: 1;
    z-index: 5000;
}
.drawer_inner {
    max-width: 370px;
    margin: 90px auto 0;
    height: calc(100% - 125px);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.drawer_bg_logo {
    position: absolute;
    z-index: -1;
    top: -70px;
    width: 546px;
    opacity: .1;
    right: -75px;
}
.drawer_btn_box {
    display: grid;
    grid-row-gap: 10px;
}
.drawer_btn {
    width: 100%;
    height: 80px;
    position: relative;
    border: 1px solid #00409A;
    background-color: #fff;
    border-radius: 999px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.drawer_btn_title {
margin-bottom: 2px;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: var(--maincolor);
}
.drawer_mail_text {
    font-weight: bold;
    font-size: 16px;
    line-height: calc(19/14);
    margin-top: 3px;
}
.drawer_tel_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
}
.drawer_tel_icon {
    width: 23px;
}
.drawer_tel_text {
    font-family: "Ubuntu", sans-serif;
    font-weight: bold;
    font-size: 24px;
}
.drawer_tel_text_small {
    font-weight: bold;
    font-size: 10px;
}
.drawer_btn_arrow_box {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
}
.drawer_btn_arrow {
    width: 6px;
}
.drawer_list_box {
    overflow-y: auto;
    margin-top: 50px;
    flex: 1;
}
.drawer_list + .drawer_list {
    margin-top: 40px;
}
.drawer_list_item + .drawer_list_item {
    margin-top: 30px;
}
.drawer_list_item_sublist:nth-child(2) {
	margin-top: 15px;
}
.drawer_list_item_sublist {
    position: relative;
    padding: 8px 0 8px 30px;
}
.drawer_list_item_sublist:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-radius: 100%;
    background-color: #818181;
    content: "";
}
.drawer_list_item_link {
    font-size: 15px;
    color: #fff;
    line-height: 1;
}
.drawer_list_item_link_big {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-size: 17px;
}
.drawer_list_item_link_big .drawer_list_item_link_big_hosoku {
	font-size: 13px;
	margin: 0 3px;
	letter-spacing: 0.01em;
    	font-weight: 500;
}

.drawer_list_flex {
	    opacity: .8;
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    margin-bottom: 28px;
}
.drawer_list_icon_search {
    width: 15px;
}
.drawer_list_flex_text {
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.04em;
}
.drawer_sns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 70px;
    padding-bottom: 100px;
    margin-bottom: 60px;
}
.drawer_sns_title {
    font-family: "Ubuntu", sans-serif;
    color: #fff;
    text-align: end;
        font-size: 20px;
}
.drawer_sns_title_jp {
display: block;
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: 0.03em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    line-height: 1.4;
}
.drawer_sns_box {
    margin-left: 25px;
    display: flex;
    column-gap: 15px;
}
.drawer_sns_box_item {
    width: 40px;
}
