@charset "UTF-8";
/* font定義 */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  src: url("../webfonts/notosansjp/notosansjp-light.woff2") format("woff2"), url("../webfonts/notosansjp/notosansjp-light.woff") format("woff"), url("../webfonts/notosansjp/notosansjp-light.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/notosansjp/notosansjp-regular.woff2") format("woff2"), url("../webfonts/notosansjp/notosansjp-regular.woff") format("woff"), url("../webfonts/notosansjp/notosansjp-regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../webfonts/notosansjp/notosansjp-bold.woff2") format("woff2"), url("../webfonts/notosansjp/notosansjp-bold.woff") format("woff"), url("../webfonts/notosansjp/notosansjp-bold.otf") format("opentype");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: normal;
  src: url("../webfonts/YakuHanJP/YakuHafont-size.*pxnJP-Regular.woff2") format("woff2"), url("../webfonts/YakuHanJP/YakuHanJP-Regular.otf") format("opentype");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: Bold;
  src: url("../webfonts/YakuHanJP/YakuHanJP-Bold.woff2") format("woff2"), url("../webfonts/YakuHanJP/YakuHanJP-Bold.otf") format("opentype");
}
/* 要素セレクタに対するスタイル */
html {
  font-size: 62.5%;
  font-size: min(0.6vw, 62.5%);
}

body {
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  color: #231815;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  font-size: 1.8rem;
}

/* ユーティリティクラス */
.pc-only {
  display: block;
}
@media screen and (max-width: 750px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 750px) {
  .sp-only {
    display: block;
  }
}

.background-color-fuzai {
  background-color: #079a5c;
}

.background-color-zai {
  background-color: #cb0903;
}

.text-color-fuzai {
  color: #079a5c;
}

.text-color-zai {
  color: #cb0903;
}

.text-color-accent {
  color: #9e3eb2;
}

.text-color-accent-2 {
  color: #f95974;
}

.text-color-link {
  color: #006cb8;
}
.text-color-link > img {
  width: 1em;
  margin-left: 4px;
  position: relative;
  top: -1px;
}

.bracket-adjust {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 750px) {
  .bracket-adjust-spOnly {
    font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  }
}

.inline-block {
  display: inline-block;
}

.indent-second-line {
  /* 2行目以降を1文字下げる */
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
}

/* ユーティリティクラス 終わり*/
/* header */
.header {
  width: 100%;
}
.header__name {
  background-color: #3e4f83;
  color: #ffffff;
  font-size: 3rem;
  padding: 16px 120px;
}
.header__timeArea {
  width: 100%;
}
.header__logout {
  position: absolute;
  top: 20px;
  right: 100px;
  font-size: 2.4rem;
}
.header__logout > a {
  color: #ffffff;
  text-decoration: none;
}
.header__logout > a:hover {
  text-decoration: underline;
}

.timeArea {
  display: flex;
  width: 100%;
  background-color: #d3d3d3;
  padding: 20px 120px;
}
.timeArea__current > p {
  display: flex;
  align-items: center;
}
.timeArea__current > p:nth-of-type(1) {
  color: #3e4f83;
  font-size: 3rem;
}
.timeArea__current > p:nth-of-type(2) {
  font-size: 4.2rem;
}
.timeArea__current > p:nth-of-type(2) > span:nth-of-type(1) {
  font-size: 4.6rem;
}
.timeArea__current > p:nth-of-type(2) > span:nth-of-type(2) {
  font-size: 3rem;
  margin-left: 10px;
}
.timeArea__current > p:nth-of-type(2) > span:nth-of-type(3) {
  font-size: 4.6rem;
  font-weight: 800;
  margin-left: 28px;
}
.timeArea__period {
  padding-left: min(5vw, 100px);
}
.timeArea__period > p {
  display: flex;
  align-items: center;
}
.timeArea__period > p:nth-of-type(1) {
  color: #3e4f83;
  font-size: 3rem;
}
.timeArea__period > p:nth-of-type(2) {
  font-size: 3rem;
  padding-top: 12px;
}
.timeArea__elapsed {
  padding-left: min(5vw, 100px);
}
.timeArea__elapsed > p {
  display: flex;
  align-items: center;
}
.timeArea__elapsed > p:nth-of-type(1) {
  color: #3e4f83;
  font-size: 3rem;
}
.timeArea__elapsed > p:nth-of-type(2) {
  font-size: 4.6rem;
  font-weight: 800;
}

/* wrapper */
.wrapper {
  width: 100%;
  padding: 40px 100px 70px;
  position: relative;
}
.wrapper--login {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.breadcrumb {
  position: absolute;
  top: 16px;
  left: 140px;
  font-size: 2.4rem;
}
.breadcrumb > a {
  color: #4491b7;
  text-decoration: none;
}
.breadcrumb > a:hover {
  text-decoration: underline;
}

.statusArea {
  text-align: center;
  margin-top: 36px;
  margin-bottom: 60px;
}
.statusArea__status {
  font-size: 5.6rem;
  margin-bottom: 10px;
}
.statusArea__status > img {
  height: 100%;
  width: auto;
  margin-right: 30px;
}
.statusArea__status > span:first-of-type {
  font-size: 6.6rem;
  font-weight: 800;
}
.statusArea__status > span:nth-of-type(2) {
  font-size: 6.4rem;
}
.statusArea__message {
  font-size: 2.8rem;
}

/* floors */
.floors {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.floor {
  width: 33.3333333333%;
}

/* history */
.history {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.history__pagination {
  position: absolute;
  right: 0;
  bottom: -40px;
  color: #4491b7;
}

/* table1 */
.table1 {
  text-align: center; /* 全テキストを中央寄せ */
  width: 100%;
}
.table1 tr:nth-of-type(1) {
  background-color: #ee6c4d;
  color: #ffffff;
}
.table1 tr:nth-of-type(1) > th {
  padding: 12px 0;
  font-size: 2.6rem;
}
.table1 tr:nth-of-type(1) > th > span {
  font-weight: 800;
  font-size: 3.2rem;
}
.table1 tr:nth-of-type(2) {
  background-color: #b24f3b;
  color: #ffffff;
}
.table1 tr:nth-of-type(2) > th {
  padding: 20px 0;
  font-size: 2rem;
}
.table1 tr:nth-of-type(n + 3):nth-of-type(even) {
  background-color: #eff4f4;
}
.table1 tr > td {
  padding: 14px 0;
  font-size: 2.6rem;
}
.table1 tr > td:nth-of-type(1) {
  color: #4491b7;
  min-width: 56px;
}
.table1 tr > td:nth-of-type(1) > a {
  color: #4491b7;
}
.table1 tr > td:nth-of-type(2) {
  padding: 0 5%;
}
.table1 tr > td:nth-of-type(2) > img {
  width: 100%;
  max-width: 151px;
}
.table1 tr > td:nth-of-type(3) {
  min-width: 90px;
  font-size: 2.2rem;
}
.table1 tr > td:nth-of-type(3) > span {
  font-size: 2.6rem;
  font-weight: 800;
}
.table1 th, .table1 td {
  border: solid 1px #333333;
}

/* table2 */
.table2 {
  text-align: center; /* 全テキストを中央寄せ */
  width: 100%;
  color: #ffffff;
}
.table2 thead {
  background-color: #606060;
}
.table2 tbody {
  background-color: #333333;
}
.table2 th {
  border-bottom: solid 2px #ffffff;
  border-right: solid 4px #ffffff;
  width: 25%;
  font-size: 1.8rem;
  padding: 8px 0;
}
.table2 th:last-of-type {
  border-right: none; /* 最後の列の右側のボーダーを消す */
}
.table2 tr > td {
  font-size: 1.8rem;
  border-right: solid 1px #ffffff;
  padding: 6px 0;
}
.table2 tr > td:last-of-type {
  border-right: none; /* 最後の列の右側のボーダーを消す */
}

.login {
  width: 400px;
  margin: 0 auto;
  text-align: center;
}
.login__title {
  font-size: 30px;
  margin-bottom: 8px;
  color: #3e4f83;
}
.login__divider {
  border: none;
  border-top: 1px solid #808080;
  margin: 6px 0 40px;
}
.login__error {
  background: #ffefef;
  color: #ff4f4f;
  padding: 10px;
  margin-bottom: 40px;
  font-size: 14px;
  border-radius: 4px;
  text-align: left;
  display: none;
  align-items: center;
}
.login__error--show {
  display: flex;
}
.login__error-icon {
  margin-right: 14px;
}
.login__form {
  text-align: left;
}
.login__form-item {
  margin-bottom: 20px;
}
.login__form-item--last {
  margin-bottom: 40px;
}
.login__input {
  width: 100%;
  padding: 18px 12px;
  font-size: 17px;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  background: #edf7fb;
  outline: none;
  box-sizing: border-box;
}
.login__input:focus {
  border-color: #3e4f83;
}
.login__button {
  width: 100%;
  padding: 14px 0;
  background: #3e4f83;
  color: #ffffff;
  font-size: 17px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
}