@charset "UTF-8";
/* CSS Document */

/* =========================
   Browser Control Reset
   ========================= */

/* box-model を完全統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 余白・装飾の初期値を除去 */
html,
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol,
li,
figure,
figcaption,
blockquote,
dl, dt, dd {
  margin: 0;
  padding: 0;
}

/* リストの自動装飾を除去 */
ul,
ol {
  list-style: none;
}

/* 行間・文字サイズ調整の自動制御を停止 */
body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* 画像・メディアのベース挙動を固定 */
img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* リンクの自動装飾を無効化 */
a {
  color: inherit;
  text-decoration: none;
}

/* フォーム系のブラウザ装飾を最小化 */
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
address{
font-style: normal;
}
/* ボタンの余計な挙動を排除 */
button {
  cursor: pointer;
}

/* tableの自動レイアウト差分を排除 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーカス時の自動装飾を抑制（必要なら別途定義） */
:focus {
  outline: none;
}
