html {
  font-size: 2.6666666666vw;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
}

body {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  background: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

header .mb-header {
  padding: 2rem;
}

header .mb-header .logo {
  width: 8rem;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  background-color: #fff;
}

header .mb-header .hamburger-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  z-index: 30;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #3f3a35;
}

header .mb-header .hamburger-menu .line {
  display: block;
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .mb-header .hamburger-menu .line:nth-of-type(1) {
  top: 30%;
}

header .mb-header .hamburger-menu .line:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header .mb-header .hamburger-menu .line:nth-of-type(3) {
  bottom: 30%;
  top: auto;
}

header .mb-header .hamburger-menu.active > .line:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

header .mb-header .hamburger-menu.active > .line:nth-of-type(2) {
  opacity: 0;
}

header .mb-header .hamburger-menu.active > .line:nth-of-type(3) {
  top: 50%;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

header .mb-header .nav-menu {
  display: none;
}

header .mb-header .nav-menu.active {
  background: #e9e9e9;
  display: block;
  border: 1px solid #333;
  padding: 10rem 2rem 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  position: absolute;
}

header .mb-header .nav-menu a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 12px 18px;
  margin: 0;
  width: 100%;
  height: 5rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

@-webkit-keyframes fadeIn {
  0% {
    top: 45%;
    opacity: 0;
  }
  100% {
    top: 50%;
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    top: 45%;
    opacity: 0;
  }
  100% {
    top: 50%;
    opacity: 1;
  }
}

header .pc-header {
  height: 10rem;
}

header .pc-header .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .pc-header .logo {
  width: 10%;
}

header .pc-header .logo img {
  width: 100%;
  height: auto;
}

header .pc-header .h-nav {
  width: 90%;
  padding: 2rem 5rem 2rem 0;
  background-color: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

header .pc-header .h-nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

header .pc-header .h-nav nav a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 4rem;
}

.pc-size {
  position: relative;
}

.pc-size .bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: url(../img/retreat-pc-back.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: -10;
}

.pc-size .campaign-fixed {
  width: 20vw;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 500;
}

footer {
  background-color: #fff;
}

footer .right {
  padding: 4rem 0 10rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  footer {
    padding: 0 20% 10rem;
  }
}
/*# sourceMappingURL=style.css.map */