@charset "UTF-8";

/*
 * 帳票マッピング調整用フォント
 * (アプリケーションには展開しなくてよい)
 */
/*
 * [Morisawa BIZ UDGothic]
 * This Font Software is licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL)
 * Copyright 2022 The BIZ UDGothic Project Authors (https://github.com/googlefonts/morisawa-biz-ud-mincho)
 */
@font-face {
  font-family: 'bizudgothic';
  src: url('../fonts/BIZUDGothic-Regular.ttf') format('truetype');
}
/*
 * [Morisawa BIZ UDMincho]
 * This Font Software is licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL)
 * Copyright 2022 The BIZ UDMincho Project Authors (https://github.com/googlefonts/morisawa-biz-ud-mincho)
 */
@font-face {
  font-family: 'bizudmincho';
  src: url('../fonts/BIZUDMincho-Regular.ttf') format('truetype');
}
/*
 * [Morisawa BIZ UDPGothic]
 * This Font Software is licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL)
 * Copyright 2022 The BIZ UDGothic Project Authors (https://github.com/googlefonts/morisawa-biz-ud-mincho)
 */
@font-face {
  font-family: 'bizudpgothic';
  src: url('../fonts/BIZUDPGothic-Regular.ttf') format('truetype');
}
/*
 * [Morisawa BIZ UDPMincho]
 * This Font Software is licensed under the SIL Open Font License, Version 1.1 (http://scripts.sil.org/OFL)
 * Copyright 2022 The BIZ UDMincho Project Authors (https://github.com/googlefonts/morisawa-biz-ud-mincho)
 */
@font-face {
  font-family: 'bizudpmincho';
  src: url('../fonts/BIZUDPMincho-Regular.ttf') format('truetype');
}
/*
 * [IPAexゴシック(Ver.004.01)]
 * This Font Software is licensed under the IPA Font License Agreement v1.0 (https://moji.or.jp/ipafont/license/)
 * 「IPAフォント」は、IPAの登録商標です。
 */
@font-face {
  font-family: 'ipaexg';
  src: url('../fonts/ipaexg.ttf') format('truetype');
}
/*
 * [IPAex明朝(Ver.004.01)]
 * This Font Software is licensed under the IPA Font License Agreement v1.0 (https://moji.or.jp/ipafont/license/)
 * 「IPAフォント」は、IPAの登録商標です。
 */
@font-face {
  font-family: 'ipaexm';
  src: url('../fonts/ipaexm.ttf') format('truetype');
}

@font-face {
  font-family: migu;
  src: url("../fonts/migu-1m-regular.ttf");
}

div#first-loading {
  margin-top: 100px;
  text-align: center;
  font-size: 16px;
}
/* ローディング メッセージ */
.first-loading-message {
  text-align: center;
}
/* ローディング アイコン */
@keyframes first-loading-icon-bar {
  from, to {
    opacity: 0.2;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
.first-loading-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.first-loading-icon-bar {
  flex: none;
  display: block;
  position: relative;
  padding: 0;
  width: 24px;
  height: 14px;
  border-radius: 0;
  background-color: #AAA;
  opacity: 0.2;
  animation-name: first-loading-icon-bar;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.first-loading-icon-bar + .first-loading-icon-bar {
  margin-left: 6px;
}
.first-loading-icon-bar.no1 {
  animation-delay: 0.2s;
}
.first-loading-icon-bar.no2 {
  animation-delay: 0.4s;
}
.first-loading-icon-bar.no3 {
  animation-delay: 0.6s;
}
.first-loading-icon-bar.no4 {
  animation-delay: 0.8s;
}
.first-loading-icon-bar.no5 {
  animation-delay: 1s;
}

#browser-notice {
  margin-top: 2em;
  font-size: 11px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
  line-break: strict;
}
