@charset "UTF-8";

.flashes {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.flashes .flash {
  display: none;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.flashes .info {
  padding: 1.5em 3em 1.5em;
  background-color: #d9edf7;
  border: 2px solid #00b0d3;
  color: #31708f;
  border-radius: 5px;
  margin-bottom: 4px;
  min-width: 350px;
  text-align: center;
}

.flashes .alert {
  padding: 1.5em 3em 1.5em;
  background-color: #f2dede;
  border: 2px solid #ea96a4;
  color: #a94442;
  border-radius: 5px;
  margin-bottom: 4px;
  min-width: 350px;
  text-align: center;
}

.list-style-none{
  list-style:none;
}

@media (min-width: 768px) {
  /* 横幅が(min-width: 768px)以上の場合に適用するスタイル */
  ul.toggled a.corp_logo {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  /* 横幅が(min-width: 768px)以下の場合に適用するスタイル */
  a.corp_logo {
    justify-content: center;
  }
}

.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}