@charset "utf-8";
@use "../foundation/mixin" as m;

/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  color: #222222;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  line-height: 180%;

  @media screen and (max-width: 767px) {
    scroll-padding-top: 100px;
  }
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  letter-spacing: normal;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  object-fit: cover;
  height: auto;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

a,
span {
  color: inherit;
}

svg {
  transition: all 0.3s;
}
