/*============================================================
	Base
============================================================*/
html,
body {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  html,
body {
    min-height: 100vh;
  }
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  font-feature-settings: "palt";
  color: #000;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.5897435897vw;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: 1.25vw;
  }
}
html * {
  box-sizing: border-box;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f2f2f7;
}

img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #000;
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

header,
main,
section,
footer {
  width: 100%;
}

main {
  flex: 1 0 auto;
  min-height: 1px;
}

dt, strong {
  font-weight: inherit;
}