@media (min-width: 769px) {
  #menu__toggle, .menu__btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .header {
    height: 50px;
    position: relative;
    z-index: 99999;
  }
  .header .header_inner {
    position: fixed;
    height: 50px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: #fff;
    padding-right: 20px;
  }
  .header .header_inner .header_logo_link {
    font-weight: 700;
  }
  .logotype {
    font-family: sans-serif;
    font-size: 24px;
    color: #ffffff;
  }
  nav {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 48em) {
  nav nav {
    display: inline;
  }
}
@media (max-width: 768px) {
  .menu__box {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    gap: 0 !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 48em) {
  .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    margin: -80vh 0 0 0;
    padding: 50px 0 35px;
    text-align: center;
    background-color: #fff;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 20;
    transition-duration: 0.5s;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .red {
    color: #f06c64;
  }
  .menu__item {
    display: flex;
    justify-content: center;
    width: 77%;
    padding: 20px;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 400;
    border-top: 1px dashed #242384;
  }
  .menu__item:nth-child(1)::before {
    display: block;
    content: url(/common/img/original/home.svg);
  }
  .nav_con a {
    width: 90vw !important;
    height: 50px !important;
    flex-direction: row-reverse;
  }
  #menu__toggle {
    opacity: 0;
  }
  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
    background: #f06c64;
  }
  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
    background: #f06c64;
  }
  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
    margin: 0;
  }
  .menu__btn {
    transition-duration: 0.25s;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    bottom: 2px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 99;
  }
  .menu__btn span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #242384;
  }
  .menu__btn span::before {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #242384;
    content: "";
    top: -8px;
    transition-duration: 0.25s;
  }
  .menu__btn span::after {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #242384;
    content: "";
    top: 8px;
    transition-duration: 0.25s;
  }
}
@media screen and (max-width: 768px) and (min-width: 48em) {
  .menu__btn {
    display: none;
  }
}
.overlay {
  position: relative;
  overflow: hidden;
  width: 100vw;
  top: 0;
  left: 0;
}
.overlay::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 4;
}/*# sourceMappingURL=header.css.map */