﻿@charset "utf-8";

.menu_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 24rem;
  height: calc(100% - 6.4rem);
  min-height: calc(100vh - 6.4rem);
  margin-top: 6.4rem;
  background-color: #fff;
  box-shadow: 0 -1rem 1.5rem rgba(44, 44, 44, 0.19);
  transition: background-color 0.3s;
  overflow-y: auto;
}

.menugroup {
  list-style-type: none;
  padding: 0;
}

.menugroup li {
  padding: 1.6rem 2.4rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border-bottom: 1px solid #e9ecef;
}

.subMenu {
  padding-top: 1.6rem;
}
.subMenu li {
  padding: 0;
  border-bottom: none !important;
  font-size: 1.4rem;
  line-height: 3.2rem;
}
.subMenu li:hover a {
  color: #007bff;
}

.subMenu li a.active {
  color: #007bff;
}
.LinkCommon {
  font-weight: 600;
  font-size: 1.4rem;
  color: #343a40;
}

.arrow01 {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-left: 0.1rem solid #111;
  border-bottom: 0.1rem solid #111;
  transform: rotate(-45deg);
}
.arrow {
  transition: transform 0.3s ease;
}

.arrow-rotate {
  transform: rotate(135deg);
}
