﻿@charset "UTF-8";
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
html {
  position: relative;
  height: 100%;
}
body {
  position: relative;
  font-family: "Yu Gothic UI", "Meiryo UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color: lightsteelblue;
  font-size: 1rem;
  line-height: 150%;
  height: 100%;
}
header {
  position: relative;
  display: block;
  height: 2rem;
  margin: 0;
  padding: 0.2rem 0.5rem;
  background-color: dodgerblue;
  color: white;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
header h1 {
  font-size: inherit;
  margin: 0;
  padding: 0;
}
content {
  position: relative;
  display: block;
  height: calc(100% - 3.4rem);
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 150%;
  background-color: transparent;
  color: black;
}
content div {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
content div button {
  font-size: 0.6rem;
  margin: 0;
  padding: 0;
  line-height: 100%;
  min-width: 40%;
  border: none;
}
content div button:hover {
  border: 2px solid black;
}
object.pdfHolder,
embed.pdfHolder {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: cornsilk;
}
footer {
  position: relative;
  display: block;
  height: 1.4rem;
  margin: 0;
  padding: 0 0.5rem;
  background-color: powderblue;
  color: black;
  font-size: 0.8rem;
  line-height: 1.4rem;
  text-align: right;
}
div.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  color: blue;
  font-size: 2rem;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}