@charset "UTF-8";

/*A Modern CSS Reset https://github.com/hankchizljaw/modern-css-reset/blob/master/dist/reset.min.css */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

main {
  display: block;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  margin: auto;
  height: auto;
  max-width: 100%;
  width: 100%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a,
a:hover {
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*common*/
html {
  position: relative;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", YuGothic, "Yu Gothic",
    "メイリオ", Meiryo, sans-serif;
  color: #000;
  overflow-x: hidden;
  line-height: 1.5;
}

a:active,
a:visited {
  color: #000;
}

svg {
  width: 100%;
  height: 100%;
}

/*inner*/
main {
  position: relative;
}

/*flexbox*/
.fb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.svg-icon {
  display: none;
}

.sp {
  display: none;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

@media screen and (max-width: 900px) {
  html {
    width: 100%;
  }

  .inner {
    width: 95%;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*# sourceMappingURL=common.css.map */