@charset "UTF-8";

/*--------------------------------
  基本のリセット
--------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/*--------------------------------
  オリジナルのスタイル
--------------------------------*/
/* 要素の下に 2rem の余白を付ける */
p,
hr,
ul,
ol,
dl,
table {
  margin-bottom: 2rem;
}

/* リストのインデントの再設定など */
li,
dd {
  margin-left: 2rem;
}

dt {
  font-weight: bold;
}
