@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

fieldset,
img {
  border: 0;
  vertical-align: middle;
}

code,
em,
strong,
th {
  font-style: normal;
  font-weight: normal;
}

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

a,
a:link,
a:active,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
}

@font-face {
  font-family: 'UDEVGothicJPDOC-Italic';
  /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("/include/fonts/UDEVGothicJPDOC-Italic.ttf") format("truetype");
}

@font-face {
  font-family: 'UDEVGothicJPDOC-Regular';
  src: url("/include/fonts/UDEVGothicJPDOC-Regular.ttf") format("truetype");
}

*,
::after,
::before {
  box-sizing: border-box;
}

/* input と textarea の reset */
input,
textarea {
  margin: 0;              /* ブラウザデフォルトの余白リセット */
  padding: 0;             /* デフォルトpaddingリセット */
  border: none;           /* 標準の枠線を削除 */
  outline: none;          /* フォーカス時のアウトライン削除 */
  background: none;       /* 背景リセット */
  font: inherit;          /* 親要素のフォントを継承 */
  color: inherit;         /* 文字色を継承 */
  box-sizing: border-box; /* paddingやborderを含めてサイズ計算 */
  resize: none;           /* textarea のサイズ変更ハンドルを無効化 */
}
input,
textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5em;
  background-color: #fff;
}
