@charset "utf-8";

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

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

ul{
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

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

html {
  scroll-behavior: smooth
}

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

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

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

img {
  max-width: 100%;
  display: block;
}

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

button {
  cursor: pointer;
  border: none;
  box-shadow: none;
}

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

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

/*common*/
html {
  position: relative;
  background: #fff;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP,Hiragino Kaku Gothic Pro",
  "ヒラギノ角ゴ Pro W3",
  YuGothic,
  'Yu Gothic',
  "メイリオ",
  Meiryo,
  sans-serif;
  color: #000;
  letter-spacing: .25rem;
  overflow-x: hidden;
  line-height: 1.5;
}

h2,h3,h4,h5,h6 {
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 800;
  font-size: 16px;
}

dt{
  margin-inline-start: 0px;
}

/*inner*/

.inner {
  margin: 0 auto;
  width: 1024px;
}

img {
  width: 100%;
  height: auto;
  border: none;
}

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

/*fade*/
.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.pc_none {
  display: block;
}

.sp_none,
.tab_none {
  display: none;
}

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

  .inner {
    width: 95%;
  }
}

@media screen and (max-width: 900px) {
  .tab_none {
    display: block;
  }
}

@media (max-width: 670px) {


  .pc_none {
    display: none;
  }

  .sp_none {
    display: block;
  }

  .mt20 {
    margin-top: 3vw;
  }

  .mt30 {
    margin-top: 4vw;
  }

  .mt40 {
    margin-top: 5vw;
  }

  .mt50 {
    margin-top: 12vw;
  }

  .mt60 {
    margin-top: 13vw;
  }

  .mt70 {
    margin-top: 14vw;
  }

  .mt80 {
    margin-top: 15vw;
  }

  .mt100 {
    margin-top: 10vw;
  }
}

@media (max-width: 370px) {}