* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-direction: row;
  padding: 0.5rem;
}
header h1 {
  font-size: 2.5rem;
}
header img {
  width: 3rem;
  margin-right: 1rem;
}

nav {
  background-color: #388088;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  display: flex;
}
nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.45rem;
  padding: 1.15rem 1.5rem;
  transition: all 0.25s ease;
}
nav ul li a:hover {
  background-color: #396b70;
}

@media screen and (max-width: 862px) {
  nav ul {
    flex-direction: column;
  }
  nav ul li a {
    padding: 1.1rem 67% 1.1rem 1.5rem;
  }
}
.nowpageCSS {
  background-color: #204d52;
  font-weight: bold;
}


main {
  width: 100%;
  height: 80.7vh;
}

footer {
  background-color: #212529;
  color: #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
footer section.left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer section.right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-top: 0.7rem;
}
footer section.right a img {
  width: 2.5rem;
  border-radius: 1.5rem;
  margin-right: 1rem;
}/*# sourceMappingURL=style.css.map */

/*子誠*/
table.center
{
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  border-collapse: collapse;
}
td
{
  border: 1px solid black;
  padding: 10px;
}
tr:nth-child(1)
{
  background-color: #388088;
  color: #ffffff;
}
tr:nth-child(even)
{
  background-color: lightgray;
}
.top3
{
  text-align: center;
  padding-top: 30px;
}
.content3
{
  padding-top: 20px;
}