@charset "UTF-8";
body {
  background-color: #eee;
}

a {
  text-decoration: none;
}

.sp-only {
  overflow: hidden;
  display: none;
}

.header {
  grid-row: 1;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner a {
  text-decoration: none;
  color: #325cf8;
  font-size: 36px;
  transition: 0.2s;
  font-weight: bold;
}
.header__inner a:hover {
  color: rgb(255, 154, 86);
}
.header__inner h1 {
  margin: 0;
  padding: 8px 20px;
  font-weight: 400;
}
.header__sp {
  padding: 0;
  border: none;
  outline: none;
  background-color: #325cf8;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  width: 70px;
  height: 70px;
}
.header__sp:hover {
  background-color: #f93;
  transition: 0.2s;
}
.header__sp::before {
  content: "";
  display: block;
  margin: auto;
  width: 28px;
  height: 2px;
  background: #fff;
}
.header__sp::after {
  content: "";
  display: block;
  margin: auto;
  width: 28px;
  height: 2px;
  background: #fff;
}
.header__sp::before {
  transform: translateY(-7px);
  box-shadow: 0 8px #fff;
}
.header__sp::after {
  transform: translateY(7px);
}
.header__nav {
  position: fixed;
  top: 0;
  right: 100%;
  /* 初期位置を画面外に設定 */
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.header__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.header__nav ul li {
  margin: 20px 0;
  font-weight: 100;
}
.header__nav.open {
  left: 0;
  /* メニューが表示される位置 */
}
.header__close {
  width: 70px;
  height: 70px;
  background-color: #325cf8;
  color: #fff;
  position: absolute;
  top: 0px;
  right: 0px;
  border: none;
  font-size: 30px;
  cursor: pointer;
  margin: auto;
  line-height: 1;
  vertical-align: middle;
}
.header__close:hover {
  background-color: #f93;
  transition: 0.2s;
}

.logout__button {
  font-size: 36px;
  text-decoration: none;
  font-weight: bold;
  background-color: #fff;
  border: none;
  color: #325cf8;
}
.logout__button:hover {
  background-color: #fff;
  color: rgb(255, 154, 86);
  transition: 0.2s;
}

main {
  grid-row: 2;
  margin-top: 10px;
}

.footer {
  grid-row: 3;
  text-align: center;
  padding: 20px 0;
}

.alert-success {
  background-color: #cfc;
  text-align: center;
  color: #060;
  font-size: 20px;
  padding: 20px 0;
}

.alert-danger {
  background-color: #fcc;
  text-align: center;
  color: #600;
  font-size: 20px;
  padding: 20px 0;
}
.alert-danger li {
  list-style: none;
}

.page__nav {
  margin-top: 40px;
  text-align: center;
}

.flex-1,
div > p.leading-5 {
  display: none;
}

svg.w-5.h-5 {
  /*paginateメソッドの矢印の大きさ調整のために追加*/
  width: 14px;
  height: 14px;
}

.z-0 {
  padding: 8px 0;
  overflow: hidden;
}
.z-0 > a {
  padding: 4px 8px;
  color: #2384cf;
  background-color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-left: 2px solid #eee;
}
.z-0 > span .px-2 {
  padding: 5px 0px 3px 10px;
  color: #2384cf;
  background-color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  border: none;
}
.z-0 > span .px-4 {
  padding: 4px 12px;
  margin-left: 6px;
  margin-right: -4px;
  color: #fff;
  background-color: #2384cf;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  border: none;
}

th,
td {
  text-align: left;
  padding: 20px 35px;
  font-size: 18px;
  border: none;
}

@media (min-width: 768px) {
  .header {
    position: static;
  }
  .header__inner {
    padding: 30px 10%;
    justify-content: left;
  }
  .header__inner h1 {
    order: 2;
  }
  .header__sp {
    width: 40px;
    height: 40px;
    border-radius: 5px;
  }
  .header__close {
    width: 40px;
    height: 40px;
    top: 45px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    right: calc(100% - 240px);
    border-radius: 5px;
  }
}/*# sourceMappingURL=common.css.map */