* {
  caret-color: orange;
}

html {
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  vertical-align: baseline;
}

body {
  background-color: #fafafa;
  color: #333;
}

header {
  position: sticky;
  top: 0;
  padding: 0 1rem;
  height: 80px;
  background-color: #fff;
  z-index: 100;
}
header .header_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header .header_contents h1 {
  font-size: 1.2rem;
  font-weight: 600;
}
header .header_contents h1 img {
  height: 1.2rem;
}
header .header_contents a {
  text-decoration: none;
}

footer {
  padding: 2rem 1rem;
  text-align: center;
}
footer .copyright {
  display: inline-block;
  padding: 0 1rem;
  background-color: #000;
  color: #fff;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 600;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.material-symbols-outlined {
  pointer-events: none;
  font-size: inherit;
}

.apps {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 2rem;
  margin: auto;
  padding: 2rem;
  width: 1400px;
  max-width: 100%;
}
@media (max-width: 1400px) {
  .apps {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1rem;
  }
}
@media (max-width: 1000px) {
  .apps {
    padding: 2rem 1rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 800px) {
  .apps {
    grid-gap: 0.5rem;
  }
}
.apps .app {
  display: grid;
  grid-gap: 1rem;
  text-decoration: none;
}
@media (max-width: 800px) {
  .apps .app {
    grid-gap: 0.5rem;
  }
}
.apps .app:hover .app_image {
  background-color: #fafafa;
  transform: scale(1.05);
}
.apps .app:active .app_image {
  transform: scale(0.9);
}
.apps .app .app_image {
  aspect-ratio: 1;
  width: 100%;
  transition: 0.2s;
}
.apps .app .app_image .app_thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apps .app .app_title {
  font-weight: 600;
  text-align: center;
}
@media (max-width: 600px) {
  .apps .app .app_title {
    font-size: 10px;
  }
}

.app_page .app_header {
  padding: 2rem 1rem;
}
.app_page .app_header .app_information {
  display: grid;
  grid-template-columns: 4rem 1fr;
  grid-gap: 1rem;
  align-items: center;
  margin: auto;
  width: 600px;
  max-width: 100%;
}
.app_page .app_header .app_information .app_image .app_thumbnail {
  display: block;
  aspect-ratio: 1;
  width: 4rem;
  background-color: #eee;
  border-radius: 50%;
}
.app_page .app_header .app_information .app_text .app_title {
  font-size: 1rem;
  font-weight: 600;
}
.app_page .app_header .app_information .app_text .app_description {
  font-size: 0.8rem;
}
.app_page .app_main {
  margin: 0 auto;
  width: 600px;
  max-width: 100%;
}
.app_page .app_sub {
  margin: 0 auto;
  width: 600px;
  max-width: 100%;
}

#app {
  position: relative;
  padding: 2rem;
  padding-bottom: 5rem;
  width: 100%;
  max-width: 100%;
  background-color: #eee;
  border-radius: 2rem;
  border-radius: 8px;
}
@media (max-width: 800px) {
  #app {
    border-radius: 0;
  }
}
#app .app_contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: baseline;
  width: 100%;
  height: 100%;
}
#app .app_controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3rem;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #ddd;
}
#app .app_controls .app_controls_button {
  aspect-ratio: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}
#app .app_controls #exitFullscreenBtn {
  display: none;
}/*# sourceMappingURL=common.css.map */