@charset "UTF-8";

/* src/styles.scss */
* {
  color: #303030;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans JP",
    "BIZ UDPGothic",
    Meiryo,
    system-ui,
    sans-serif;
}
.min-tyo {
  font-family:
    "MS \660e\671d",
    "\30d2\30e9\30ae\30ce\660e\671d",
    serif;
}
header,
main,
footer,
body {
  width: 100%;
  margin: 0;
}
img {
  width: 100%;
}
.container,
.form-elements {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.clickable {
  cursor: pointer;
}
.clickable:disabled {
  cursor: default;
}
.clickable.disabled {
  cursor: default;
}
.invisible {
  display: none !important;
}
button {
  -webkit-user-select: none;
  user-select: none;
}
button:disabled {
  pointer-events: none;
}
.error-message {
  color: rgb(255, 0, 0);
}
.form-container {
  width: 95%;
  padding: 0 2.5%;
}
.form-elements {
  width: 100%;
  margin-bottom: 1.5vh;
}
.form-elements label {
  display: block;
  width: 100%;
}
.form-elements input,
.form-elements textarea {
  width: calc(100% - 20px);
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  border-color: rgb(175, 175, 175);
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  font-weight: 200;
}
.form-elements .form-checkbox {
  display: block;
  width: calc(100% - 10px);
  padding: 5px;
}
.form-elements .form-checkbox label,
.form-elements .form-checkbox input {
  display: inline-block;
  width: initial;
}
.form-elements .form-checkbox input {
  margin-right: 10px;
}
.form-elements select {
  width: 100%;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  border-color: rgb(175, 175, 175);
  background-color: rgba(255, 255, 255, 0.8);
  font-size: calc(1.4rem * 0.8);
  font-weight: 200;
  appearance: none;
}
.form-elements textarea {
  min-width: calc(100% - 10px);
}
img.inner-img {
  display: block;
  width: 90%;
  margin: 5%;
}
.large {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 540px) {
  .large {
    font-size: 1.1rem;
  }
}
#modal-dialog {
  position: fixed;
}
#modal-dialog.invisible {
  z-index: -1;
}
#modal-dialog.show-fade-in {
  z-index: 10000;
}
#modal-dialog > .dialog-bg {
  background-color: rgba(0, 0, 0, 0.5);
}
#modal-dialog .dialog-content {
  position: relative;
  z-index: 12000;
  min-width: 50%;
  max-width: 75%;
  padding: 25px;
  border-radius: 25px;
  background-color: rgb(255, 255, 255);
}
#modal-dialog #dialog-header {
  position: relative;
  min-height: 30px;
}
#modal-dialog #dialog-close-btn {
  position: absolute;
  top: 0;
  right: 0;
}
#dialog-title {
  font-size: 1.5em;
}
#modal-dialog #dialog-footer {
  position: relative;
  min-height: 30px;
}
.img-white {
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}
.animation-base {
  animation-duration: 0.35s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.show-fade-in {
  animation-name: fadeIn;
  animation-duration: 0.25s;
  animation-timing-function: ease-in-out;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.show-fade-out {
  animation-name: fadeOut;
  animation-timing-function: ease-in-out;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.run-away {
  animation-name: runAway;
  animation-timing-function: linear;
}
.show-slide-fade-in {
  z-index: 100;
  animation-name: slideFadeIn;
  animation-duration: 0.25s;
  animation-timing-function: ease-in-out;
}
@keyframes slideFadeIn {
  0% {
    top: 100vh;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes runAway {
  0% {
    margin-left: 0;
    opacity: 0;
  }
  50% {
    margin-left: 150px;
    opacity: 1;
  }
  100% {
    margin-left: 300px;
    opacity: 0;
  }
}
.limit-break {
  animation: limit-break 2s linear infinite;
  background:
    linear-gradient(
      to right,
      #f00 0%,
      #f80 14.28%,
      #dd0 28.56%,
      #0d0 42.85%,
      #0dd 57.14%,
      #00f 71.42%,
      #e0e 85.71%,
      #f00 100%) 0% center/200% auto;
  background-clip: text;
  font-weight: bold;
  -webkit-text-fill-color: transparent;
}
@keyframes limit-break {
  to {
    background-position-x: 200%;
  }
}
.limit-break2 {
  animation: gaming-bg-led 1s linear infinite;
}
@keyframes gaming-bg-led {
  0% {
    background-color: rgba(250, 0, 150, 0.65);
  }
  33% {
    background-color: rgba(250, 250, 0, 0.65);
  }
  66% {
    background-color: rgba(0, 150, 250, 0.65);
  }
  100% {
    background-color: rgba(250, 0, 150, 0.65);
  }
}
.limit-break3 {
  animation: gaming-border-led 1s linear infinite;
}
@keyframes gaming-border-led {
  0% {
    border-color: rgba(250, 0, 150, 0.65);
  }
  33% {
    border-color: rgba(250, 250, 0, 0.65);
  }
  66% {
    border-color: rgba(0, 150, 250, 0.65);
  }
  100% {
    border-color: rgba(250, 0, 150, 0.65);
  }
}
#loading-animation {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
}
.loading-animation {
  animation: loading 2s linear infinite;
}
i.loading-animation {
  display: inline-block;
  color: rgb(173, 255, 47);
  font-size: 25vw;
}
#loading-animation-loader {
  position: absolute;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  border: 8px solid #fff;
  border-radius: 50%;
  border-right-color: transparent;
}
.flash-message {
  animation: flash 1s linear infinite;
}
.show-slide-rtl {
  animation-name: slideRtl;
}
@keyframes slideRtl {
  0% {
    right: -100vw;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
.show-slide-ltr {
  animation-name: slideLtr;
}
@keyframes slideLtr {
  0% {
    left: -100vw;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.2;
  }
}
@keyframes flash {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes rightOutLeftIn {
  0% {
    left: 100vw;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes rightInLeftOut {
  0% {
    left: -100vw;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes rotateInOut {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  49% {
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    transform: rotateX(270deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes turn {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes swing {
  0% {
    transform: rotate3d(0, 0, 0, 0deg);
    transform-origin: 50% 100%;
  }
  25% {
    transform: rotate3d(0.2, 1, 1, 60deg);
    transform-origin: 50% 100%;
  }
  50% {
    transform: rotate3d(0.8, 1, 1, -60deg);
    transform-origin: 50% 100%;
  }
  75% {
    transform: rotate3d(0.1, 1, 1, 30deg);
    transform-origin: 50% 100%;
  }
  100% {
    transform: rotate3d(0, 0, 0, 0deg);
    transform-origin: 50% 100%;
  }
}
@media print {
  html,
  body {
    height: 100%;
    background-color: white;
  }
  header,
  footer {
    display: none;
  }
  main {
    display: block;
    width: 100%;
    height: 100%;
  }
  h3 {
    border-bottom-width: 1px;
    border-bottom-style: solid;
  }
  .page-breaker {
    break-before: always;
  }
  .modal-dialog,
  .dialog-content,
  .dialog-main,
  .dialog-form-container {
    width: 100%;
    height: 100%;
  }
  .dialog-header,
  .print-btn-container,
  .form-container,
  .dialog-footer {
    display: none;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
