  #app {
    margin: 0 auto;
  }

  .side_menu {
    display: inline-block;
    background-color: #e3e3e3;
    width: 100%;
    padding: 8px 4px;
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: pointer;
  }
  .active_side_menu {
    background-color: #f3f3f3;
  }

/* modal */
.modal-overlay {
  align-items: center;
  background: rgba(0,0,0,.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 100;
  color: #333 !important;
}

.modal-container {
  background-color: #fff;
  max-height: 90vh;
  max-width: 1200px;
  overflow-y: auto;
  padding: 0px 10px;
  width: 80%;
}

.modal-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  color: #333 !important;
}
.modal-footer {
  align-items: end;
  display: flex;
  justify-content: space-between;
  color: #333 !important;
  padding-bottom: 20px;
}

.modal-title {
  font-size: 12px;
  color: #333 !important;
}

.modal-close {
  background: transparent;
  border: 0;
}

.modal-header .modal-close::before {
  content: "\2715";
}

.modal-content {
  line-height: 1.5;
  height: 700px;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.modal-open {
  display: block;
  margin: 100px auto;
}

.indent1 {
  margin-left: 40px;
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal-container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut .3s cubic-bezier(.0, .0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}
/* /modal */

  @media screen and (min-width:800px) {
    .login_form {
      max-width: 300px;
      margin: 0 auto;
    }
  }
