@charset "UTF-8";

/* ========================================
  destyle.css
  ブラウザ標準スタイルのリセット
======================================== */

/* box-sizingを全要素に適用 */
*,
*::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,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

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

/* 基本設定 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  font-family: sans-serif;
  color: #000;
  background: #fff;
}

/* リスト装飾を消す */
ol,
ul {
  list-style: none;
}

/* 引用符を消す */
blockquote,
q {
  quotes: none;
}

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

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 画像 */
img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ボタン・フォーム */
button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  appearance: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* フォーカス時のアウトラインは必要に応じて調整 */
:focus {
  outline: none;
}

/* アドレスなどの斜体を解除 */
address,
em {
  font-style: normal;
}

/* strong, b の太字は維持 */
strong,
b {
  font-weight: bold;
}