.header {
  display: flex;
  height: 70px;
  padding: 10px;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: white;
  box-shadow: 2px 2px 4px rgba(75, 75, 75, 0.3);
  z-index: 500;
}
.header .logo img {
  height: 45px;
  width: auto;
}
.header .menu {
  flex-grow: 1;
}
.header .menu ul {
  display: flex;
  justify-content: right;
  align-items: center;
}
.header .menu li {
  position: relative;
  margin-right: 20px;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-weight: 600;
}
.header .menu li a {
  color: #07308b;
}
.header .menu .hover-box {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translate(-50%, 0);
  z-index: 500;
  display: none;
  width: 240px;
}
.header .menu .hover-box ul {
  display: block;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 10px;
  padding-bottom: 20px;
}
.header .menu .hover-box ul li {
  margin: 0;
  margin-bottom: 10px;
}
.header .menu .hover-box ul li a {
  color: #333333;
  font-weight: 400;
}
.header .menu .hover-box ul li a:hover {
  color: #e71e19;
}
.header .menu .hover {
  transition: 1s;
}
.header .menu .hover:hover .hover-box {
  display: block;
}
.header .menu .mail-flex {
  display: flex;
  align-items: center;
  background: #07308b;
  color: white;
  text-decoration: none;
  padding: 3px 10px;
  border-radius: 5px;
}
.header .menu .mail-flex img {
  width: 20px;
  padding-right: 5px;
}
.header .menu .mail-flex .text {
  color: white;
}
.header .jpx img {
  height: 60px;
  width: auto;
}

body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.hamburger {
  position: fixed;
  top: 13px;
  right: 10px;
  z-index: 1002;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #e71e19;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

.side-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100%;
  height: 100%;
  overflow-y: scroll;
  background: #fff;
  z-index: 1001;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  padding-top: 0;
}

.side-menu.active {
  right: 0;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu li {
  margin-bottom: 15px;
}
.side-menu li a {
  display: block;
  border-bottom: dashed 2px #a5a5a5;
  padding: 0 10px;
  padding-bottom: 10px;
  height: 40px;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-weight: 600;
}

.menu-parent {
  display: flex;
  justify-content: space-between;
  height: 40px;
  border-bottom: dashed 2px #a5a5a5;
  padding-bottom: 10px;
}
.menu-parent a {
  border-bottom: 0 !important;
}

.side-menu .has-children ul {
  padding: 20px 30px;
}
.side-menu .has-children ul li {
  list-style: ">  ";
}
.side-menu .has-children ul a {
  border-bottom: 0 !important;
  padding-bottom: 0;
  height: auto;
  font-weight: 400;
}

.toggle-sub {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #e71e19;
}

.submenu {
  display: none;
  padding-left: 1em;
}

.submenu.open {
  display: block;
}

.side-menu .logo img {
  width: 150px;
  height: auto;
}

.side-menu .jpx img {
  width: auto;
  height: 40px;
  margin-right: 40px;
}

.side-flex {
  display: flex;
  align-items: center;
  padding: 10px;
  height: 50px;
}
.side-flex .logo {
  flex-grow: 1;
}

.side-menu ul {
  padding: 30px;
}

@media screen and (min-width: 1101px) {
  .hamburger {
    display: none;
  }
  .side-menu {
    display: none;
  }
  body.menu-open::before {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .header .logo img {
    width: 150px;
    height: auto;
  }
  .header .menu {
    display: none;
  }
  .header {
    height: 50px;
  }
  .header .logo {
    flex-grow: 1;
  }
  .header .jpx img {
    height: 40px;
    margin-right: 40px;
  }
}/*# sourceMappingURL=head.css.map */