body {
  font-family: 'Inter', sans-serif;
}

html[lang="ja"] body {
  font-family: 'Noto Sans JP', sans-serif;
}

body::-webkit-scrollbar, div.jsmaps-text::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb, div.jsmaps-text::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
  border-radius: 6px;
}

body::-webkit-scrollbar-track, div.jsmaps-text::-webkit-scrollbar-track {
  background: var(--accent-muted);
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: rgba(18, 24, 33, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.image-lightbox.is-visible {
  opacity: 1;
  visibility: visible;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

.image-lightbox__content {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.image-lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 24px 48px rgba(15, 27, 37, 0.45);
}

.image-lightbox__caption {
  display: none;
  font-size: 0.95rem;
  color: rgba(241, 245, 249, 0.92);
  text-align: center;
  line-height: 1.5;
  max-width: 80ch;
  word-break: break-word;
}

.image-lightbox.has-caption .image-lightbox__caption {
  display: block;
}

.image-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-1px);
  outline: none;
}

.image-lightbox__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

.lightbox-trigger {
  cursor: zoom-in;
}

@media (max-width: 767.98px) {
  .image-lightbox {
    padding: 1.5rem;
  }

  .image-lightbox__content {
    max-height: 78vh;
    gap: 0.75rem;
  }

  .image-lightbox__img {
    border-radius: 3px;
    max-height: 72vh;
  }

  .image-lightbox__caption {
    font-size: 0.85rem;
  }

  .image-lightbox__close {
    top: -12px;
    right: -12px;
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-lightbox {
    transition: none;
  }

  .image-lightbox__close {
    transition: none;
  }
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding-top: 1.25rem;
}

.footer-meta__text {
  font-size: 0.92rem;
  color: rgba(59, 83, 95, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-meta__brand {
  font-weight: 600;
}

.footer-meta__link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-meta__link:hover,
.footer-meta__link:focus {
  color: var(--primary-hover);
  text-decoration: underline;
}

.sister-sites {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(59, 83, 95, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.sister-sites a {
  color: rgba(59, 83, 95, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sister-sites a:hover,
.sister-sites a:focus {
  color: var(--primary-color);
  text-decoration: underline;
}

.sister-sites .dot {
  user-select: none;
}

li a:hover {
  text-decoration: underline;
}

h2[id] {
  padding-top: 60px;
  margin-top: -60px;
}

.blur-item {
  -ms-filter: blur(10px);
  filter: blur(10px);
}

.apply-bg {
  background: var(--surface-color) !important;
}

.apply-bg.card-with-image {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 35%,
      rgba(255, 255, 255, 0.55) 65%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    var(--card-bg-image, var(--surface-color)) !important;
  background-size: cover;
  background-position: right !important;
  background-repeat: no-repeat !important;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.apply-bg2 {
  background: var(--surface-alt) !important;
}

.apply-bg,
.apply-bg2 {
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}

.article-surface {
  background: var(--surface-color);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
  padding: 2rem 2.5rem;
  color: var(--text-color);
}

.sidebar {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
  padding: 22px 18px;
}

@media (max-width: 991.98px) {
  .sidebar {
    margin-top: 2rem;
  }
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.92rem;
  color: var(--text-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}

.article-breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  font-weight: 600;
  color: inherit;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.article-breadcrumb .breadcrumb-item:first-child {
  padding-left: 0.85rem;
}

.article-breadcrumb .breadcrumb-item + .breadcrumb-item {
  margin-left: 0.35rem;
}

.article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\203A";
  position: absolute;
  left: -0.55rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: rgba(68, 110, 114, 0.5);
  font-weight: 700;
}

.article-breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb .breadcrumb-item a:hover,
.article-breadcrumb .breadcrumb-item a:focus {
  color: var(--primary-color);
}

.article-breadcrumb .breadcrumb-item:hover,
.article-breadcrumb .breadcrumb-item:focus-within {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(43, 39, 33, 0.08);
}

.article-breadcrumb .breadcrumb-item.active,
.article-breadcrumb .breadcrumb-item[aria-current="page"] {
  background: var(--primary-color);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  box-shadow: 0 10px 24px rgba(68, 110, 114, 0.28);
}

.article-breadcrumb .breadcrumb-item.active a,
.article-breadcrumb .breadcrumb-item[aria-current="page"] a {
  color: #fff;
  pointer-events: none;
}

.main-information {
  background: var(--surface-alt);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}

.main-information .section-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.main-information a {
  color: var(--primary-color);
  font-weight: 600;
}

.main-information a:hover {
  color: var(--primary-hover);
}

.site-navbar {
  background: rgba(255, 252, 252, 0.88);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-navbar.home-navbar {
  background: linear-gradient(135deg, rgba(255, 252, 252, 0.9), rgba(255, 252, 252, 0.75));
  box-shadow: none;
  border-bottom-color: transparent;
}

.site-navbar .nav-link {
  color: var(--text-color) !important;
  font-weight: 600;
  border-radius: 2px;
  padding: 0.6rem 1rem !important;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  color: var(--primary-color) !important;
  background-color: var(--accent-muted);
  box-shadow: 0 12px 28px rgba(68, 110, 114, 0.18);
}

.site-navbar .dropdown-menu {
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  padding: 0.75rem;
  background: var(--surface-color);
}

.site-navbar .dropdown-item {
  border-radius: 2px;
  color: var(--text-color);
  font-weight: 500;
  padding: 0.45rem 0.75rem;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
  background-color: var(--accent-muted);
  color: var(--primary-color);
}

.navbar-toggler {
  border: 1px solid var(--border-soft) !important;
  border-radius: 2px;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 252, 252, 0.7);
  transition: box-shadow 0.2s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(68, 110, 114, 0.25);
}

.lang-list {
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  padding: 0.35rem 1.25rem 0.35rem 0.9rem;
  background: var(--surface-color);
  color: var(--text-color);
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-list:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(68, 110, 114, 0.2);
}

.lang-list.dark {
  background: var(--surface-color);
  color: var(--text-color-dark);
}

.banner,
.hero-surface {
  position: relative;
  background: linear-gradient(135deg, rgba(68, 110, 114, 0.92) 0%, rgba(43, 39, 33, 0.9) 100%);
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0px;
  box-shadow: var(--shadow-accent);
  padding: 2.5rem 2rem;
  overflow: hidden;
}

.banner::after,
.hero-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 45%);
  pointer-events: none;
}

.banner .nav-link.text-dark {
  color: var(--secondary-color) !important;
}

.banner .nav-link.text-dark:hover {
  color: var(--primary-color) !important;
}

.banner .site-navbar {
  background: rgba(230, 228, 224, 0.92);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
  padding: 0.65rem 1.25rem;
}

.banner .site-navbar .nav-link {
  color: var(--secondary-color) !important;
}

.banner .site-navbar .nav-link:hover,
.banner .site-navbar .nav-link:focus {
  background-color: rgba(68, 110, 114, 0.12);
  color: var(--primary-color) !important;
  box-shadow: 0 10px 22px rgba(68, 110, 114, 0.18);
}

.banner .site-navbar .navbar-brand {
  color: var(--secondary-color) !important;
}

.banner .site-navbar .navbar-toggler {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(43, 39, 33, 0.16) !important;
}

.banner .site-navbar .lang-list {
  background: rgba(255, 255, 255, 0.95);
  color: var(--secondary-color);
  border-color: var(--border-soft);
}

code.language-css {
  line-height: 1em !important;
}

code.language-css span {
  line-height: 1em !important;
  margin: 0 !important;
}

.container {
  max-width: 95% !important;
}

.code-tabs {
  border: 0 !important;
}

.nav-tabs {
  border-bottom: 0 !important;
}

.code-tabs .nav-tabs .nav-item {
  border-right: 0 !important;
  background-color: var(--neutral-soft);
  border-radius: 2px;
  margin-right: 1em;
}

.code-tabs-colored .nav-tabs .nav-item {
  background-color: var(--accent-soft);
}

div.notices:first-child {
  margin: 0 !important;
}

div.notices a:hover {
  text-decoration: underline !important;
}

div.notices p,
div.notices-without-mark p {
  background: var(--surface-alt);
  border-radius: 2px;
  border: 1px solid var(--border-soft);
  color: var(--text-color);
  box-shadow: var(--shadow-soft);
}

div.notices.note p,
div.notices.info p,
div.notices.warning p,
div.notices-without-mark.rel p {
  border-top-width: 8px;
}

div.notices.note p {
  border-top-color: var(--primary-color);
  background: rgba(68, 110, 114, 0.12);
  color: var(--text-color);
}

div.notices.tip p {
  border-color: rgba(43, 39, 33, 0.12);
  background: var(--surface-color);
  color: var(--text-color);
}

div.notices.info p {
  border-top-color: var(--primary-hover);
  background: rgba(68, 110, 114, 0.08);
  color: var(--text-color);
}

div.notices.warning p {
  border-top-color: #8C6A42;
  background: rgba(140, 106, 66, 0.12);
  color: var(--text-color);
}

div.notices.warning p a,
div.notices.note p a,
div.notices.tip p a {
  color: var(--primary-color);
}

.notices.note p::after,
.notices.info p::after,
.notices.warning p::after,
.notices-without-mark.rel p::after {
  color: var(--primary-color);
}

.notices.note p::before,
.notices.info p::before,
.notices.warning p::before,
.notices-without-mark.rel p::before {
  color: var(--primary-color);
}

.notices.info p::before,
.notices.warning p::before,
.notices.denger p::before,
.notices.note p::before {
  content: none !important;
  display: none !important;
}

.notices.note p::after,
.notices.warning p::after {
  content: none !important;
  display: none !important;
}

div[title="繧上°繧翫ｄ縺吶＞逶ｮ蜊ｰ"] div.notices {
  margin: 3.0em 0 0 0 !important;
}

div[title="繧上°繧翫ｄ縺吶＞逶ｮ蜊ｰ"] div.notices.info {
  margin: 0 0 3.5em 0 !important;
}

div[title="繧上°繧翫ｄ縺吶＞逶ｮ蜊ｰ"] div.notices:first-child {
  margin: 0 !important;
}

div[title="繧上°繧翫ｄ縺吶＞逶ｮ蜊ｰ"] div.googlemap-if {
  margin-bottom: 0.5em;
}

div[title="繧上°繧翫ｄ縺吶＞逶ｮ蜊ｰ"] div.notices p {
  margin-bottom: 1em !important;
}

div.tip+div.note {
  margin: 0 0 0 0 !important;
}

.update-milestone-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(43, 39, 33, 0.12);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
  padding: 1.9rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.update-milestone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(68, 110, 114, 0.18), transparent 55%);
  pointer-events: none;
}

.update-milestone-card__updates,
.update-milestone-card__milestone {
  position: relative;
  z-index: 1;
}

.update-milestone-card__updates {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.update-milestone-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  background: rgba(68, 110, 114, 0.12);
  color: var(--primary-hover);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-milestone-card__label::before {
  content: "\f46c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.82rem;
}

.update-milestone-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.update-milestone-card__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.98rem;
  color: var(--secondary-color);
}

.update-milestone-card__item a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.update-milestone-card__item a:hover,
.update-milestone-card__item a:focus {
  color: var(--primary-hover);
  text-decoration: underline;
}

.update-milestone-card__item span {
  color: rgba(43, 39, 33, 0.85);
}

.update-milestone-card__date {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(68, 110, 114, 0.75);
}

.update-milestone-card__divider {
  position: relative;
  z-index: 1;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(68, 110, 114, 0.28), transparent);
}

.update-milestone-card__milestone {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.update-milestone-card__milestone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  border-radius: 2px;
  background: rgba(68, 110, 114, 0.12);
  color: var(--primary-hover);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.update-milestone-card__milestone-badge::before {
  content: "\f091";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.82rem;
}

.update-milestone-card__title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--secondary-color);
}

.update-milestone-card__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(43, 39, 33, 0.85);
}

.update-milestone-card__text strong {
  font-weight: 700;
  color: var(--primary-hover);
}

.update-milestone-card__milestone a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

.update-milestone-card__milestone a:hover,
.update-milestone-card__milestone a:focus {
  color: var(--primary-hover);
}

@media (max-width: 767.98px) {
  .update-milestone-card {
    padding: 1.55rem 1.5rem;
    gap: 1.4rem;
  }

  .update-milestone-card__title {
    font-size: 1.3rem;
  }

  .update-milestone-card__item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .update-milestone-card__date {
    font-size: 0.8rem;
  }
}

div.main-description {
  background-color: var(--surface-color) !important;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  padding: 1em;
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

div.main-description li {
  line-height: 1.2em;
  margin: 0.1em;
}

div.main-description li ul {
  line-height: 1em;
  margin: 0.1em;
}

a.important-card {
  font-weight: bold;
}


a.important-card p {
  font-size: 1.2em;
}


div.noshow-area {
  display: none !important;
}

div.top-flagarea {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 0;
  padding: 0.5rem 0;
}

div.top-flagarea img {
  width: min(100%, 680px);
  height: auto !important;
  max-height: 500px;
}

div.main-information {
  margin: 1em;
  padding: 1em 0em 0em 1em;
  border: 1px solid rgba(10, 10, 10, .6);
}

div.main-information li {
  line-height: 1.2em;
  margin: 0.1em;
}

div.main-information li ul {
  line-height: 1em;
  margin: 0.1em;
}

div.main-information a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2d0";
  margin-right: 0.2em;
}

.content div.main-information ul li::before {
  position: absolute;
  content: '';
  opacity: 0 !important;
}

div.googlemap-if {
  width: 100% !important;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

div.googlemap-if iframe {
  margin: 0;
}

div.googlemap-if div.description {
  margin: 0;
  padding: 0.5em;
  padding-bottom: 0;
  background-color: var(--surface-alt);
  font-size: 0.8em;
  width: 295px;
  height: 295px;
}

div.googlemap-if div.description p, div.googlemap-if div.description-wide p {
  margin: 0;
}


div.googlemap-if div.description-wide {
  margin: 0;
  padding: 0.5em;
  padding-bottom: 0;
  background-color: var(--surface-alt);
  font-size: 0.8em;
  width: 590px;
}

div.googlemap-if div.description a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2d0";
  margin-right: 0.2em;
}


div.googlemap-if div.imgs a::before {
  content: "" !important;
}


div.googlemap-if div.description-wide a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2d0";
  margin-right: 0.2em;
}

div.googlemap-if div.description-wide a[data-featherlight=image]::before {
  content: "";
  line-height: 0;
}

div.googlemap-if div.description-youtube {
  margin: 0;
  padding: 0;
  padding-bottom: 0;
  background-color: var(--surface-alt);
  font-size: 0.8em;
  width: 590px;
}

ul.flag-list {
  background: rgba(251, 251, 251, 0.163);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 2px;
  justify-content: center;
  padding: 0;
}

div.bg-light ul.flag-list:first-child {
  background: rgba(68, 110, 114, 0);
}

ul.flag-list li {
  float: left;
  list-style: none;
  padding: 10px;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
}

.content {
  ul.flag-list-japan {
    background: rgba(68, 110, 114, 0.12);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }

  div.bg-light ul.ul.flag-list-japan:first-child {
    background: rgba(68, 110, 114, 0);
  }

  ul.flag-list-japan {
    list-style-type: none !important;
  }

  ul.flag-list-japan li {
    max-width: 10em;
    float: left;
    list-style: none;
    list-style-type: none;
    padding: 10px;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
  }

  ul.flag-list-japan li::before {
    content: "" !important;
    width: 0;
  }

  ul.flag-list-japan li p {
    margin: 0;
    padding: 0;
  }
}


@media (min-width: 800px) {
  .flag-ispref {
    font-size: 0.9em;
    padding: 5px;
    margin-right: 3px;
    max-width: 90px !important;

    img {
      width: 80px !important;
    }
  }
}

a.flag-link {
  max-width: 100px;
  height: 120px;
  inline-size: 150px;
  overflow-wrap: break-word;
}

@media (max-width: 800px) {
  img.flag-img-link {
    width: 50px;
  }
}

@media (min-width: 800px) {
  img.flag-img-link {
    width: 140px;
  }
}

h3.section-title {
  margin-top: 2em;
  padding-left: 0.5em;
  border-left: solid 7px var(--primary-color);
}

h3.section-title:first-letter {
  font-size: 1.2em;
}

div.twitter-tab>div {
  margin: 0 auto;
}

div.pixiv-embed {
  text-align: center;
}

div.youtube-area {
  text-align: center;
}

div.linklist {
  padding: 2em 0 1em 1em;
}

div.linklist a {
  position: relative;
  padding-left: 42px;
}

div.linklist a:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f0eb";
  background: var(--primary-color);
  color: white;
  font-weight: 900;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}


div.linklist a.linktype-pint:before {
  background: red;
  font-family: "Font Awesome 5 Brands";
  content: "\f231";
}

div.linklist a.linktype-pixiv:before {
  background: #0099FF;
  content: "P";
}

div.linklist a.linktype-clip:before {
  background: gray;
  font-family: "Font Awesome 5 Free";
  content: "\f0c6";
}

div.linklist a.linktype-amazon:before {
  background: #000;
  font-family: "Font Awesome 5 Brands";
  content: "\f270";
}

div.linklist a:after {
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  height: 0;
  width: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--primary-color);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

div.linklist a.linktype-pint:after {
  border-left: 12px solid red;
}

div.linklist a.linktype-pixiv:after {
  border-left: 12px solid #0099FF;
}

div.linklist a.linktype-clip:after {
  border-left: 12px solid gray;
}

div.linklist a.linktype-amazon:after {
  border-left: 12px solid #000;
}


.sns_parent {
  text-align: center;
}

.sns_section {
  display: inline-block;
  text-align: left;
}

.sns_button {
  float: left;
  border-radius: 2px;
  -moz-transition: all 0ms ease;
  -o-transition: all 0ms ease;
  -webkit-transition: all 0ms ease;
  transition: all 0ms ease;
}

.sns_button.twitter {
  background-color: #000000;
}

.sns_button.hatena {
  background-color: #01a5df;
}

.sns_button.pocket {
  background-color: #E33D52;
}

.sns_button a {
  display: table-cell;
  width: 44px;
  height: 44px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  -moz-transition: all 0ms ease;
  -o-transition: all 0ms ease;
  -webkit-transition: all 0ms ease;
  transition: all 0ms ease;
}

.sns_button i {
  font-size: 20px;
  vertical-align: middle;
}

.sns_button:hover {
  box-shadow: inset 0 0 0 22px #eaeaea;
}

.sns_button+.sns_button {
  margin: 0 0 0 12px;
}

.twitter:hover a {
  color: #1B95E0;
}

.facebook:hover a {
  color: #3B5999;
}

.google:hover a {
  color: #dd4b39;
}

.instagram:hover a {
  color: var(--primary-color);
}

.pocket:hover a {
  color: #EE4056;
}

.hatena:hover a {
  color: #4BA3D9;
}

.fa-hatena:before {
  content: "B!";
  font-family: Verdana;
  font-weight: bold
}

.sns_parent {
  position: relative;
  margin-left: 0;
  margin-bottom: 1em;
}

.sns_section {
  position: absolute;
  display: flex;
  justify-content:
    flex-end;
}

h1.mb-5 {
  margin-bottom: 0rem !important;
}

li.list-inline-item a {
  font-size: 1.5em;
}

div.footer-fontsize-area {
  margin-top: 1em;
  font-size: 0.9em;
}

div.main-desciption {
  margin: 2.5em 1em 0.5em 1em;
  padding: 1em;
  border-radius: 2px;
  background-color: #ededed;
}

ul.rule-list {
  margin: 1em;
  font-size: 1em;
}

ul.rule-list li::before {
  height: 10px;
  width: 10px;
  opacity: 0.3;
}

ul.rule-list-colored li::before {
  height: 10px;
  width: 10px;
  opacity: 1;
  background: var(--primary-color) !important;
}

ul.rule-list-colored li>ul li::before {
  height: 10px;
  width: 10px;
  opacity: 0.3;
  background: #000 !important;
  border-radius: 0;
}


ul.rule-list-none {
  font-size: 1em;
  list-style: none;
}

ul.rule-list-none li {
  list-style: none;
}

ul.rule-list-none li::before {
  content: "" !important;
  width: 0px;
}

ul.list-styled {
  padding-left: 0;
}

ul.list-styled li {
  padding: 0rem 0rem 0rem 1.75rem;
  margin: 0;
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

ul.list-styled li a {
  color: inherit;
  font-weight: 500;
  transition: color 0.2s ease;
}

ul.list-styled li a:hover {
  color: var(--primary-color);
}

div.dropdown-menu>a.dropdown-link-item {
  color: var(--text-color) !important;
}

div.dropdown-menu>a.dropdown-link-item:hover {
  color: var(--primary-color) !important;
}

a.nav-link:hover {
  color: var(--primary-color) !important;
}

div.unclickable, p.unclickable {
  /* pointer-events: none; */
}

/* 逕ｻ髱｢縺檎強縺・凾縺ｯ繝｡繝九Η繝ｼ繧呈ｶ医☆ */
@media screen and (max-width: 1000px) {
  ul.list-styled {
    display: none;
  }
}

li.sidelist>a {
  margin-left: 0;
}

a.hinttext {
  font-size: 0.8em;
}

a.hinttext>i {
  margin: 0;
}

a.link-text {
  font-size: 1.0em;
}

a.link-color:hover {
  color: var(--primary-color);
}


ul.rule-list li {
  margin-bottom: 10px;
}

ul.rule-list li i {
  margin-bottom: 0px;
}

.content ul.rule-list li.no-evidence {
  list-style: none;
}

/*
.content ul.rule-list li.no-evidence::before {
  font-family: "Font Awesome 5 Free";
  content: "\f059";
  background: rgb(0, 0, 0, 0);
}
*/

a.by-twitch {
  color: #59005c;
}

a.link-color {
  color: #126ec4;
}

.hide-element {
  display: none !important;
}

.blurtext {
  filter: blur(12px);
}

.blurtext::after {
  content: "繧｢繧､莠懊え繧ｨ繧ｪ螻・・";
  filter: blur(12px);
}

.blurtext:hover {
  filter: blur(0px);
  transition-duration: 0.1s;
}

.blurtext:hover::after {
  transition-duration: 0.1s;
  opacity: 0;
}

.blurtext-2 {
  filter: blur(5px);
}

.blurtext-2::after, .blurtext-2::before {
  content: "莠・;
  filter: blur(5px);
}

.blurtext-2:hover {
  filter: blur(0px);
  color: #740804;
  font-weight: bold;
  transition-duration: 0.1s;
}

.blurtext-2:hover::after, .blurtext-2:hover::before {
  transition-duration: 0.1s;
  opacity: 0;
}

div#option-area {
  z-index: 100;
  margin: 0 1em;
  opacity: 1;
}

div#option-area p {
  margin: 0;
}

div.googlemap-if.div-quizif {
  background-color: #000;
}

.iframe-blur {
  -webkit-mask-image: linear-gradient(160deg, transparent 15%, black 15%);
  mask-image: linear-gradient(160deg, transparent 15%, black 15%);
}

div#comment-container {
  margin: 20px;
}

textarea#urlComment {
  display: none;
}


div.cmt div.cmt-text {
  margin: 0;
}


div.cmt div.cmt-text pre {
  margin: 0;
}

p#comment-notice {
  font-size: 1em;
}

pre.comment {
  font-family: 'M PLUS 1p', sans-serif;
}

textarea#commentTextArea {
  width: 95%;
  max-width: 90%;
  resize: vertical;
}

.code-tabs {
  margin: 20px 17px !important;
}

ol.breadcrumb {
  padding: 0.5em 0.5em 0.5em 1em;
  background-color: #fff;
  border-radius: 0;
}

ol.breadcrumb li {
  display: inline;
  list-style: none;
}

ol.breadcrumb li:hover {
  font-weight: bold;
}

ol.breadcrumb li:not(:last-child)::after {
  content: '>';
  padding: 0 0.5em;
}

div.div-lb p img {
  margin-top: 1em;
  filter: blur(2.2rem);
  transition: 0.3s;
  max-width: 80%;
  transition-property: filter;
}

div.div-lb p {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

div.div-lb p img:hover {
  filter: blur(0rem);
  transition: 0.3s;
}


div.resolution-small p img, div.resolution-small a img {
  filter: blur(1.2rem) !important;
  max-width: 70%;
}

div.resolution-small p img:hover, div.resolution-small a img:hover {
  filter: blur(0rem) !important;
  transition: 0.3s;
}


div.div-lb p:nth-child(2)::before, div.div-lb p:nth-child(4)::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2d0";
  margin-right: 0.2em;
  letter-spacing: 0em;
}

div.div-lb p:nth-child(2), div.div-lb p:nth-child(4) {
  letter-spacing: 0em;
  font-size: 80%;
  text-align: center;
}

div.size-50 p img {
  max-width: 38% !important;
}

a.snsl {
  margin-left: 1em;
  font-size: 1.1em;
}

a.snsl-youtube {
  color: rgb(221, 0, 0);
}

a.snsl-twitter {
  color: rgb(0, 0, 0);
}

.fa-twitter:before {
  content: "\1D54F";
  line-height: 1.25;
  font-size: 1.2em;
  font-family: 'Segoe UI Symbol', 'Noto Sans Symbols', sans-serif;
  font-weight: 700;
}

a.snsl-twitch {
  color: rgb(134, 0, 211);
}

div.content ul>li {
  margin-bottom: 0.2em !important;
}

span.quiz {
  font-weight: bold;
  color: var(--primary-color);
}

li.important-rule {
  font-weight: bold;
}

a.area-link {
  font-weight: bold;
}

a.area-link::after {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f2d2";
  margin-left: 0.2em;
  margin-right: 1em;
}

table.word-list {
  max-width: 80%;
}

table.word-list tr td, table.word-list tr th {
  text-align: center;
}

table.word-list tr td span.blurtext-2 {
  letter-spacing: 0em;
}

table.word-list tr td span.blurtext-2::before {
  content: "縺薙ｌ縺ｯ";
}

table.word-list tr td span.blurtext-2::after {
  content: "隱槭〒縺・;
}

span.f-enlarge {
  font-weight: bold;
}

div.unclickable-area a {
  pointer-events: none;
}

blockquote {
  background: rgba(68, 110, 114, 0.1);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 2px 2px 0;
  box-shadow: var(--shadow-soft);
  color: var(--text-color);
}

span.navbar-toggler-icon {
  filter: invert(38%) sepia(12%) saturate(724%) hue-rotate(135deg) brightness(88%) contrast(92%);
}

.button-sc {
  border-radius: 2px;
  border: 1px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family), sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  outline: none;
  padding: 0.5rem 1.25rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  vertical-align: middle;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  background: transparent;
  color: var(--text-color);
}

.button-sc:hover,
.button-sc:focus {
  transform: translateY(-1px);
}

.bg-black-button {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.bg-black-button:hover,
.bg-black-button:focus {
  background-color: var(--primary-hover);
  color: var(--white-color);
}

.bg-white-button {
  background-color: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--border-soft);
  font-weight: 600;
  font-size: 1em;
}

.bg-white-button:hover,
.bg-white-button:focus {
  background-color: var(--accent-muted);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.button-1:hover,
.button-1:focus {
  background-color: var(--primary-color);
}

.sc_area {
  padding: 0 0 0 0.3em;
  margin: 0 0 0 0;
  list-style: none;
  overflow: hidden;
}

.add-space {
  padding: 1em 0 1em 0;
  position: relative;
  left: -0.8em;
}

.sc_area>ul>li.sc-title {
  pointer-events: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sc_area li {
  text-align: center;
  vertical-align: center;
  float: left;
  margin: 0.5em 0 0.4em 0.3em;
}

.sc_area li a {
  text-decoration: none;
}

i.link-title-button {
  font-size: 1.1em;
  margin: 0 0.2em 0 0.3em;
}

i.i-googlecar {
  color: var(--secondary-color);
  margin-left: 0.3em;
}

i.i-bollard {
  opacity: 0;
  color: var(--secondary-color);
  margin-left: 0.3em;
  transform: rotate(-45deg);
}

i.i-bollard2 {
  color: var(--text-color-dark);
  transform: rotate(-45deg);
  margin: 0;
}

a.bollard-link {
  font-weight: bold;
}

div.sign-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

div.sign-area a {
  /* pointer-events: none; */
  margin: 0.5em;
}

div.sign-area-clickable a {
  pointer-events: auto;
  margin: 0em;
  font-size: 0.8em;
}

div.sign-area img {
  max-height: 4.5em;
  max-width: 7em;
  min-width: 3em;
}

div.sign-area img.small {
  max-height: 3.5em;
  max-width: 5.5em;
  min-width: 2.5em;
}

div.sign-area img.verysmall {
  max-height: 2.5em;
  max-width: 4em;
  min-width: 2em;
}

div.corp-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

div.corp-area a {
  /* pointer-events: none; */
  margin: 0.5em;
}

div.corp-area-clickable a {
  pointer-events: none;
  margin: 0em;
  font-size: 0.8em;
}

div.corp-area img {
  min-height: 2.5em;
  max-height: 3.5em;
  max-width: 7.5em;
  margin: 0;
}

div.corp-area img.small {
  max-height: 2.5em;
  max-width: 6em;
}

div.corp-area img.verysmall {
  max-height: 2em;
  max-width: 5em;
}

div.licence-area p {
  margin-right: 1em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.8em !important;
  color: var(--text-color);
}

div.licence-area a {
  color: var(--primary-color);
  font-size: 0.8em !important;
}

i.fa-map-signs {
  margin-bottom: 0;
}

.hover-opacity-1:hover {
  transition: all 0.5s 0s ease;
  opacity: 1 !important;
}

span.small-title {
  font-size: 0.7em;
}

div.map-container {
  width: 95%;
  margin: auto;
}

@media screen and (min-width: 800px) {
  div.jsmaps {
    max-width: 100% !important;
    max-height: 600px !important;
    margin: 0;
  }

  div.jsmaps svg {
    max-height: 90% !important;
  }

  div.jsmaps-text {
    margin-top: 0 !important;
    margin-left: 0em;
    padding: 1em;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1000;
    width: 50% !important;
    max-height: 630px !important;
  }

  div.jsmaps-wrapper {
    max-height: 640px !important;
  }
}

@media screen and (max-width: 800px) {
  div.map-container {
    display: none;
  }
}

div.areamap-container.narrow-map div.jsmaps {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

div.areamap-container.narrow-map div.jsmaps svg {
  max-width: 400px !important;
  max-height: 600px !important;
  margin: 0 auto !important;
}


div.areamap-container.wide-map div.jsmaps {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

div.areamap-container.wide-map div.jsmaps svg {
  max-width: 85% !important;
  max-height: 700px !important;
  margin: 0 auto !important;
  padding-left: 4%;
}

div.areamap-container.wide-map2 div.jsmaps {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

div.areamap-container.wide-map2 div.jsmaps svg {
  max-width: 700px !important;
  max-height: 600px !important;
  margin: auto !important;
  padding-left: 8%;
}

div.areamap-container.wide-map3 div.jsmaps {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

div.areamap-container.wide-map3 div.jsmaps svg {
  max-width: 750px !important;
  max-height: 700px !important;
  margin: 0 auto !important;
  padding-left: 4%;
}


@media screen and (min-width: 800px) {
  div.areamap-container {
    min-height: 500px;
  }
}

@media screen and (max-width: 800px) {
  div.areamap-container {}
}


div.map-container, div.areamap-container {
  max-width: 1200px;
}

div.width-90 {
  max-width: 90%;
}

img.margin-ten-px {
  margin: 10px;
}

img.width150 {
  width: 140px;
}

img.width100 {
  width: 100px;
}

img.maxheight150 {
  height: 140px;
  max-height: 140px;
}

a.a-openmap::after {
  font-family: "Font Awesome 5 Free";
  content: "\f279";
  margin-left: 0.2em;
  margin-right: 0.1em;
}

img.img-top-slider {
  height: 80px;
  margin: 5px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-90%);
  }
}

.demo__wrap:hover .flag-scroller__list {
  animation-play-state: paused;
}

img#gachaImage {
  max-height: 300px;
}

#gachaText {
  text-align: center;
  font-weight: bold;
  font-size: 2em;
}

.buttonRound {
  height: 44px;
  width: 200px;
  border-radius: 2px;
  margin: 10px;
  font-size: 1.2em;
  border-width: 1px;
  font-weight: bold;
  background-color: #fff;
}

.buttonRound:hover {
  background-color: #ffe187;
}

.buttonRound-tweet {
  height: 34px;
  width: 200px;
  border-width: 1px;
  border-radius: 2px;
  margin: 10px;
  font-size: 1em;
  font-weight: bold;
  background-color: #fff;
}

.buttonRound-tweet:hover {
  background-color: #baf9ff;
}

.mymemo {
  opacity: 0.0;
  pointer-events: none;
}

.mymemo.mymemo-show {
  opacity: 1;
  pointer-events: initial;
}

.hidden-setting {
  opacity: 0;
  transition: 0s;
}

.hidden-setting:hover {
  opacity: 0;
}

.polish-font {
  font-family: "Drogowskaz";
}

i.i-enlarge {
  font-size: 1.2em !important;
  margin: 0 0 0 0.2em;
}

i.i-ensmall {
  margin: 0 0.2em 0 0;
}

a.imgref-text {
  font-size: 0.8em;
}

div.no-margin p, div.no-margin a {
  margin: 0 !important;
  padding: 0 !important;
}

div.no-margin p, div.no-margin a img {
  margin-bottom: 0 !important;
}


@media (max-width: 800px) {
  p.mobile-noshow {
    display: none;
  }
}

@media (min-width: 800px) {
  p.mobile-noshow {
    display: default;
  }
}

span.miss-text {
  font-size: 0.5em;
  margin-left: 0.5em;
  color: rgba(59, 83, 95, 0.6);
}

.rum {
  width: 300px;
}

.rum:hover {
  animation: rumble 0.12s linear infinite;
}

@keyframes rumble {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }

  12.5% {
    transform: rotate(0.4deg) translate(1px, -1px);
  }

  25% {
    transform: rotate(1deg) translate(0px, 1px);
  }

  37.5% {
    transform: rotate(0.4deg) translate(-1px, 0);
  }

  50% {
    transform: rotate(0deg) translate(0, 0);
  }

  62.5% {
    transform: rotate(-0.4deg) translate(1px, 0);
  }

  75% {
    transform: rotate(-0.8deg) translate(0, 3px);
  }

  87.5% {
    transform: rotate(-0.4deg) translate(-1px, -1px);
  }

  100% {
    transform: rotate(0deg) translate(0, 0);
  }
}

.streaming-status-disp {
  transition: margin-right 4s 1s;
}

.streaming-status-area-title {
  opacity: 0;
}

.streaming-status-area-img {
  display: none;
}

.streaming-status-area-img-dummy {
  opacity: 0;
}

.streaming-status-area-streming-title {
  font-weight: bold;
  font-size: 0.8em;
}

table.compare-table {
  margin-top: 1em;
  width: 90%;
}

table.compare-table tr td {
  font-size: 0.8em;
  text-align: center;
}

.corp-desc-dp {
  display: none !important;
}

.image-row-booth {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow-x: auto;
  padding: 20px;
  background: repeating-linear-gradient(45deg,
      #f0f0f0,
      #f0f0f0 8px,
      #ffffff 8px,
      #ffffff 16px);

  margin: 2.5em 1em .5em;
  padding: 1em;
  border-radius: 2px;
}

.image-row-booth h2 {
  width: 100%;
  font-size: 18px;
  margin-bottom: 5px;
}

.image-item {
  width: 200px;
  flex-shrink: 0;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-item a {
  display: block;
  width: 200px;
  height: 200px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  clip-path: inset(2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
  padding-bottom: 0;
}

.caption {
  margin-top: 5px;
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-item-lg {
  width: 250px;
  flex-shrink: 0;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-item-lg a {
  display: block;
  width: 250px;
  height: 250px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-item-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  clip-path: inset(2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
  padding-bottom: 0;
}


.image-item-lg img.knowbook {
  width: 180px !important;
  height: 225px !important;
  object-fit: contain !important;
}


.sidebar-search {
  margin-bottom: 1.5rem;
}

.sidebar-search-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  background-color: var(--surface-color);
  color: var(--text-color);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sidebar-search-trigger:hover,
.sidebar-search-trigger:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(68, 110, 114, 0.15), var(--shadow-soft);
  transform: translateY(-1px);
  outline: none;
}

.sidebar-search-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
}

.sidebar-search-placeholder {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-color);
}

.sidebar-search-shortcut {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(59, 83, 95, 0.7);
}

.homepage-search {
  max-width: 560px;
  margin: 0 auto;
}

.homepage-search-field {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 32px rgba(43, 39, 33, 0.18);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.homepage-search-field:focus-within,
.homepage-search-field:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25), 0 18px 36px rgba(43, 39, 33, 0.2);
  transform: translateY(-1px);
}

.homepage-search-icon svg {
  left: 20px;
  width: 20px;
  height: 20px;
  color: inherit;
  opacity: 0.85;
}

.search-icon {
    position: absolute;
    right: -16px;
    top: 8px;
    font-size: 14px;
}

.homepage-search-input {
  flex: 1;
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0;
  outline: none;
}

.homepage-search-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.homepage-search-shortcut {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  text-transform: uppercase;
  background: #cc0000;
  color: #ffffff;
  border: 1px solid #cc0000;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-button:hover,
.subscribe-button:focus {
  background: #b40000;
  border-color: #b40000;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.subscribe-button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.youtube-subscribe {
  display: inline-block;
  transform: scale(1.2);
  transform-origin: top center;
}

.twitch-follow-link {
  min-width: 130px;
  background: #9146ff;
  border-color: #9146ff;
}

.twitch-follow-link:hover,
.twitch-follow-link:focus {
  background: #7b2cff;
  border-color: #7b2cff;
}

section.section-updates {
  padding-bottom: 0 !important;
}
