/* reset */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header, main, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
/* reset */



html {
  font-size: 62.5%;
  color: #232121;
  overflow-x: hidden;
}

@media(max-width:1300px) {
  html {
    font-size: calc(10 / 1300* 100vw);
  }
}

@media(max-width:768px) {
  html {
    font-size: calc(10 / 768* 100vw);
  }
}

body {
  font-family: 'EB Garamond', serif;
  font-family: 'Noto Serif JP', serif;
  font-family: 'Zen Old Mincho', serif;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  overflow-x: hidden;
}

.header img,
section img,
.footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.sp {
  display: none;
}

@media(max-width:768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}

/* common */
.common__inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}