@charset "UTF-8";
/* 共通 */
body {
  font-family: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

.sp-pc {
  display: none;
}
@media screen and (max-width: 1080px) {
  .sp-pc {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 1080px) {
  .pc {
    display: none;
  }
}

.sp-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-tab {
    display: block;
  }
}

.tab {
  display: block;
}
@media screen and (max-width: 768px) {
  .tab {
    display: none;
  }
}

.Ban img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.sp_u {
  display: inline-block;
}

/* パディング */
.p_b_30 {
  padding-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .p_b_30 {
    padding-bottom: 20px;
  }
}

.p_b_50 {
  padding-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .p_b_50 {
    padding-bottom: 30px;
  }
}

.p_b_100 {
  padding-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .p_b_100 {
    padding-bottom: 50px;
  }
}

sup {
  font-size: 1.4rem;
  vertical-align: top;
}

#floating {
  background-color: #7F4F21;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 800px;
  z-index: 99;
  height: 91px;
}
@media screen and (max-width: 800px) {
  #floating {
    height: 11.375vw;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #floating {
    height: 14.5vw;
  }
}
#floating .floating_area {
  width: 800px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  #floating .floating_area {
    width: 100%;
  }
}
#floating .text, #floating .btn {
  display: inline-block;
  width: 50%;
}/*# sourceMappingURL=style.css.map */