@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
html {
  font-size: 16px;
}

body {
  color: #fff;
  background: #000;
  box-sizing: border-box;
}

header {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  position: relative;
}
header div {
  width: 50%;
  color: #fff;
  text-decoration: none;
}
header div h1 img {
  width: 100%;
}
header div p {
  margin: 1em 0;
  font-family: "Anton", sans-serif;
  font-size: 1.75rem;
  text-align: center;
}
header div div {
  transition: 0.3s;
}
header div div:after {
  content: "\f188";
  font-family: "Material Symbols Outlined";
  font-size: 3rem;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  opacity: 0;
}
header div div:hover {
  cursor: pointer;
  color: #dc0a7d;
}
header div div.showAfter:after {
  opacity: 1;
}

main {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
}
main article section {
  margin: 3.5rem;
}
main article section *:before {
  padding-right: 0.3em;
  font-family: "Material Symbols Outlined";
  font-size: 0.75em;
}
main article section h2 {
  margin-bottom: 1rem;
}
main article section h3 {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 0.25em;
  border-bottom: 2px #4b0082 solid;
}
main article section#scheduleArea h2:before {
  content: "\ebcc";
}
main article section#scheduleArea section h3 {
  align-items: baseline;
}
main article section#scheduleArea section h3:before {
  content: "\e405";
}
main article section#scheduleArea section h3 + div {
  display: flex;
  align-items: start;
  gap: 2rem;
}
main article section#scheduleArea section h3 + div img {
  width: 30%;
}
main article section#scheduleArea section h3 + div > div > div {
  display: flex;
  align-items: baseline;
}
main article section#scheduleArea section h3 + div > div > div:before {
  content: "\e8b5";
  padding-right: 0.7em;
}
main article section#scheduleArea section address {
  display: flex;
  font-style: normal;
  align-items: baseline;
}
main article section#scheduleArea section address:before {
  content: "\e0c8";
  padding-right: 0.7em;
}
main article section#scheduleArea section p {
  margin: 1.5rem 0;
  font-size: 1.25rem;
}
main article section#past h2:before {
  content: "\e86c";
}
main article section#past ul {
  font-size: 1rem;
}
main article section#past ul li {
  margin: 1em 0;
}

footer {
  padding: 0.3rem;
  font-family: "Roboto", sans-serif;
  background: #222;
}
footer .link {
  margin-bottom: 2rem;
}
footer .link ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 3em;
}
footer .link ul li a {
  opacity: 0.7;
  text-decoration: none;
  transition: 0.3s opacity;
}
footer .link ul li a img {
  height: 2.5rem;
}
footer .link ul li a:hover {
  opacity: 1;
}
footer p {
  margin-bottom: 1.5em;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
}

@media screen and (orientation: portrait) {
  html {
    font-size: 24px;
  }
  header div {
    width: 80%;
  }
  main {
    font-size: 2rem;
    font-family: "Roboto", sans-serif;
  }
  main article section {
    margin: 5rem 30px;
  }
  main article section#scheduleArea section h3 + div {
    display: block;
  }
  main article section#scheduleArea section h3 + div img {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  main article section#scheduleArea section h3 + div > div > div span {
    white-space: nowrap;
  }
  main article section#scheduleArea section address {
    display: flex;
    font-style: normal;
    align-items: baseline;
  }
  main article section#scheduleArea section address:before {
    content: "\e0c8";
    padding-right: 0.7em;
  }
  main article section#scheduleArea section p {
    margin: 1.5rem 0;
    font-size: 1.25rem;
  }
  main article section#past ul li {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=base.css.map */