@charset "UTF-8";
/* CSS INFORMATION -====================================
File name : base.css
Description : 共通
===================================================== */
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
}

#wrapper {
  position: relative;
  font-family: "M PLUS 1", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #4a3519;
  background: #fff;
}
#wrapper img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
#wrapper a {
  display: block;
}

section,
header,
footer {
  position: relative;
}

.inner {
  position: relative;
  width: calc(700 / 750 * 100%);
  margin: 0 auto;
  z-index: 2;
}

.is-sp {
  display: block;
}

.is-pc {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1200 * 100vw);
  }
  .wrapper {
    font-size: 1.6rem;
  }
  .wrapper a {
    transition: 0.5s ease;
  }
  .inner {
    width: 100%;
    max-width: 1200px !important;
    padding: 0 calc(80 / 1200 * 100%);
  }
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 10px;
  }
  .inner {
    padding: 0;
  }
}
/* =====================================================
    フッター
======================================================*/
#footer {
  background: #f9db1f;
  padding: calc(44 / 750 * 100%) 0;
}
#footer .copy {
  text-align: center;
}
#footer .copy:nth-child(2) {
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  #footer {
    padding: 3rem 0;
  }
  #footer .copy {
    font-size: 1.4rem;
  }
  #footer .copy:nth-child(2) {
    margin-top: 0.7rem;
  }
}/*# sourceMappingURL=base.css.map */