@charset "UTF-8";
/* minimal-reset.css */
/* 全要素でボックスサイズを border-box に */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ベースの余白・フォントをリセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
}

/* HTML5 要素をブロックに */
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
  display: block;
}

/* ベースの body 設定 */
html {
  font-size: 100%;
}

body {
  font-family: "Inconsolata", monospace;
  color: #333;
  font-weight: 400;
  line-height: 1.5;
}

h1, h2, h3, h4, h5 {
  font-weight: 400;
  color: #222;
}

/* リストのデフォルトマーカーを削除 */
ol, ul {
  list-style: none;
}

/* 引用符の除去 */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* テーブルの境界線リセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
body main {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inner-wrap {
  padding: 0 1rem;
}

.name-wrap h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}
.name-wrap ul {
  color: #333;
}

.label-name {
  font-family: "Libre Barcode 39 Extended", system-ui;
  font-size: 0.4rem;
  margin: 0;
  margin-bottom: 0.5rem;
}

.sound-list {
  margin-bottom: 1.5rem;
}

.link-list {
  width: 100%;
  display: flex;
  gap: 0.875rem;
  margin-top: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
  border-top: 1px solid #333;
}
.link-list .link-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #222;
  text-decoration: none;
}
.link-item.icon_beat img {
  width: 1.25rem;
  height: auto;
  display: block;
}

footer {
  text-align: center;
  margin-top: 2rem;
}

#glitch {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  background: #fff; /* 完全な白 */
}/*# sourceMappingURL=style.css.map */