@charset "UTF-8";
/**
 * Modern & Standard Reset.scss
 * コーディングがしやすく、ブラウザ間の差異をなくすための標準リセットスタイルです。
 */
*,
*::before,
*::after {
  box-sizing: border-box; /* パディングやボーダーを含めたサイズ計算にする */
}

/* フォーム要素のフォントバグ・外観リセット */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ボタンとリンクのデフォルトカーソル・調整 */
button,
select,
label {
  cursor: pointer;
}

button:disabled,
input:disabled {
  cursor: not-allowed;
}

/* マージン・パディングの初期化 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* リスト要素の初期化 */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* べースとなる文字・画面設定 */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* スマホ等での不要な横スクロール（隙間）を防止 */
}

/* リンクの初期化 */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像・メディア要素のレスポンシブ対応 */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block; /* 下部に謎の隙間ができるバグを防止 */
  vertical-align: middle;
}

/* テキストエリアのサイズ調整固定を防止（縦のみ許可） */
textarea {
  resize: vertical;
}

/* テーブルの隙間をなくす */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 印刷・アクセシビリティ：不要なアニメーションの無効化 */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}/*# sourceMappingURL=reset.css.map */