@charset "UTF-8";

/**
 * SCSS definition file for CSS reset.
 * 
 * ・Change log
 * | update date | author            | summary                              |
 * | :-----------| :---------------- | :----------------------------------- |
 * | 2019/03/26  | Yoichi Inoue      | Create                               |
 * 
 * @file
 * 
 * File that defines SCSS for resetting CSS default values.
 * 
 * @author    Yoichi Inoue
 */

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,
font,
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 {
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
  vertical-align: middle;
  background: transparent;
  word-wrap: break-word;
  word-break: break-all;
  text-decoration: none;
  position: relative;
}

html {
  font-size: 10pt;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", Hiragino Kaku Gothic ProN, Arial, "\30E1\30A4\30EA\30AA", Meiryo, sans-serif;
  line-height: 1.6;
  overflow-x: auto;
  overflow-y: auto;
}

body {
  line-height: 1;
}

span,
p,
a,
font,
img,
dt,
dd,
ol,
ul,
li,
form {
  display: inline-block;
}

img {
  -o-object-fit: contain;
     object-fit: contain;
}

input,
select,
textarea {
  vertical-align: middle;
}

ol,
ul {
  list-style: none;
}

form {
  width: 100%;
}

blockquote,
q {
  quotes: none;
}

a:hover,
button:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

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

/* remember to define focus styles! */

:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing=0' in the markup */

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

table * {
  word-break: break-word;
}

