@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald&display=swap");
body {
  margin: 0;
  background: #111;
  color: #eee;
  font: 16px/1.5 system-ui, "Noto Sans JP", sans-serif;
  font-weight: 300;
  height: 100vh;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
}

.lang-switcher {
  float: right;
  margin: 0 0 1rem 1rem;
  font-family: "Oswald", sans-serif;
}
.lang-switcher a {
  display: inline-block;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: #333;
  color: #eee;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.lang-switcher a:hover {
  background: #444;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}

.card {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: #1a1a1a;
  overflow: hidden;
}

.thumb {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}

.index-page h1 {
  font-size: 24px;
  margin: 0 0 8px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.index-page .desc {
  color: #aaa;
  font-size: 14px;
  margin: 0 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.index-page a.card {
  display: block;
  text-decoration: none;
  color: #eee;
  transition: transform 0.2s;
}
.index-page a.card:hover {
  transform: translateY(-2px);
  border-color: #444;
}
.index-page .info {
  padding: 12px;
}
.index-page .pref-name {
  font-size: 20px;
  margin: 0 0 4px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.index-page .pref-name .en-name {
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-left: 8px;
}
.index-page .video-title {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #aaa;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
.index-page .loading {
  color: #666;
  font-size: 12px;
}

.prefecture-page .wrap {
  padding: 16px 20px;
}
.prefecture-page header {
  position: sticky;
  top: 0;
  background: #111;
  border-bottom: 1px solid #2a2a2a;
}
.prefecture-page .toolbar {
  display: flex;
  gap: 8px;
  align-items: center;
}
.prefecture-page .toolbar a {
  text-decoration: none;
  color: #9cf;
}
.prefecture-page .toolbar #prefLabel {
  margin-left: 8px;
  font-weight: 600;
}
.prefecture-page .toolbar span:not(#prefLabel) {
  color: #aaa;
}
@media (max-width: 639px) {
  .prefecture-page .toolbar {
    flex-wrap: wrap;
  }
}
.prefecture-page select,
.prefecture-page button {
  padding: 10px;
  border: 1px solid #333;
  background: #000;
  color: #eee;
  border-radius: 8px;
  cursor: pointer;
}
.prefecture-page select:hover,
.prefecture-page button:hover {
  background: #222;
}
.prefecture-page .grid {
  gap: 12px;
  padding: 20px 20px 80px;
}
.prefecture-page .card .meta {
  padding: 10px 12px;
}
.prefecture-page .card .ttl {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 6px;
  font-weight: 500;
}
.prefecture-page .card .sub {
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
  margin: 12px 0 0;
}
.prefecture-page .card .row {
  display: flex;
  gap: 4px 8px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 12px;
  color: #bbb;
}

.site-footer {
  background: #181818;
  border-top: 1px solid #2a2a2a;
  margin-top: 40px;
  bottom: 0;
  position: fixed;
  width: 100%;
}
.site-footer .footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  text-align: center;
}
.site-footer .footer-content p {
  margin: 0;
  font-size: 12px;
  color: #aaa;
}
@media (max-width: 639px) {
  .site-footer .footer-content {
    padding: 16px 20px;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: #444;
  border-color: #444;
  transform: translateY(-2px);
}
.scroll-to-top:hover::before {
  border-color: #9cf;
  transform: rotate(-45deg) scale(1.1);
}
.scroll-to-top:active {
  transform: translateY(0);
}
.scroll-to-top::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 4px solid #eee;
  border-right: 4px solid #eee;
  transform: rotate(-45deg);
  margin-bottom: -6px;
  transition: all 0.2s;
}
@media (max-width: 639px) {
  .scroll-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .scroll-to-top::before {
    width: 10px;
    height: 10px;
  }
}/*# sourceMappingURL=styles.css.map */