@-webkit-keyframes spinLoad {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinLoad {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#load {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 150;
  opacity: 1;
}
#load.off {
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s ease 0.1s;
}
#load span {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  -webkit-animation: spinLoad 1s linear 0s infinite;
          animation: spinLoad 1s linear 0s infinite;
  transform-origin: center;
  background-image: url(/bqplus/img/top/windmill.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.effect {
  opacity: 0;
  transition: all 0.5s ease;
}

.translate {
  transform: translateY(5px);
}

#logo.effect,
#copy.effect {
  transition: all 1s ease;
}
#logo.translate,
#copy.translate {
  transform: translateY(5px);
}
#logo.inview,
#copy.inview {
  opacity: 0;
}
#logo.inview.loaded,
#copy.inview.loaded {
  opacity: 1;
}
#logo.inview.loaded.translate,
#copy.inview.loaded.translate {
  transform: translateY(0px);
}

.inview {
  opacity: 1;
}
.inview.translate {
  transform: translateY(0px);
}

.delay1 {
  transition-delay: 0s !important;
}

.delay2 {
  transition-delay: 0.25s !important;
}

.delay3 {
  transition-delay: 0.5s !important;
}

.delay4 {
  transition-delay: 0.75s !important;
}

.delay5 {
  transition-delay: 1s !important;
}

.delay6 {
  transition-delay: 1.25s !important;
}

.delay7 {
  transition-delay: 1.5s !important;
}

.delay8 {
  transition-delay: 1.75s !important;
}

.delay9 {
  transition-delay: 2s !important;
}

.delay10 {
  transition-delay: 2.25s !important;
}

.delay11 {
  transition-delay: 2.5 !important;
}

@-webkit-keyframes slider {
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slider {
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes patapata {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1);
  }
  50% {
    transform: scale(0.4, 1);
  }
  100% {
    transform: scale(0.9, 1);
  }
}
@keyframes patapata {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1);
  }
  50% {
    transform: scale(0.4, 1);
  }
  100% {
    transform: scale(0.9, 1);
  }
}
@-webkit-keyframes yurayura {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-16deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes yurayura {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-16deg);
  }
  100% {
    transform: rotate(0);
  }
}
/*----------------------------------*/
/* STYLE RESET 
/----------------------------------*/
* {
  box-sizing: border-box;
  outline: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

::before,
::after {
  box-sizing: border-box;
}

main {
  display: block;
}

button {
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  transition: 0.3s;
  color: #222;
}

img {
  vertical-align: bottom;
}

a {
  display: block;
  text-decoration: none;
  word-wrap: break-word;
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  transition: all 0.4s ease;
  color: #222;
  opacity: 1;
}

a:hover {
  opacity: 0.6;
}

input,
select,
textarea {
  display: block;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  font-size: inherit;
  cursor: pointer;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
  font-feature-settings: "palt";
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-size: 0;
  font-weight: normal;
}

html {
  font-size: 62.5%;
  height: 100%;
  color: #222;
}

body {
  position: relative;
  z-index: 0;
  line-height: 1;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  color: #222;
  text-size-adjust: 100%;
  /*Chrome,Safari*/
  -webkit-text-size-adjust: 100%;
  /*EgdeMobile*/
  -ms-text-size-adjust: 100%;
  /*firefox*/
  -moz-text-size-adjust: 100%;
  font-weight: 400;
}
body p {
  line-height: 2;
}
body .en {
  font-family: "Karla", sans-serif;
  font-weight: 400;
}

.flex {
  display: flex;
}

.sp {
  display: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
}
.header:not(#fixedHeader) {
  margin-top: 30px;
}
.header:not(#fixedHeader) .wrapper {
  width: calc(100% - 60px);
  margin: 0 auto;
  background-color: #f7f6f2;
  padding-top: 41px;
  padding-right: 3.27%;
}
.header:not(#fixedHeader) .wrapper .inner {
  text-align: right;
}
.header:not(#fixedHeader) .wrapper .inner .website-link {
  display: inline-block;
}
.header:not(#fixedHeader) .wrapper .inner .website-link:hover svg {
  transform: translate(5px, 0);
}
.header:not(#fixedHeader) .wrapper .inner .website-link .en {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.22em;
  padding-right: 12px;
}
.header:not(#fixedHeader) .wrapper .inner .website-link svg {
  width: 14px;
  height: 10px;
  transform: translate(0, 0);
  transition: all 0.5s ease;
}

footer > .wrapper {
  width: 100%;
  height: 80px;
  background-color: #777;
  position: relative;
}
footer > .wrapper .inner .page-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 3.68%;
  top: -140px;
}
footer > .wrapper .inner .page-top .text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.15em;
}
footer > .wrapper .inner .page-top svg {
  width: 82px;
  height: 50px;
}
footer > .wrapper .inner .page-top.jump svg {
  -webkit-animation: 0.25s linear infinite patapata;
          animation: 0.25s linear infinite patapata;
}
footer > .wrapper .inner .copyright {
  font-size: 1.3rem;
  line-height: 80px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.19em;
}

.share {
  width: 100%;
  text-align: center;
}
.share .img-wrapper {
  display: block;
  padding-bottom: 50px;
}
.share .sns-list {
  justify-content: center;
  align-items: center;
}
.share .sns-list .item {
  margin: 0 25px;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
}
.share .sns-list .item .link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.kv .wrapper {
  width: calc(100% - 60px);
  margin: 0 auto;
  background-color: #f7f6f2;
  padding-top: 105px;
}
.section.kv .wrapper .kv-top {
  width: 86.88%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 93px;
}
.section.kv .wrapper .kv-top .logo {
  width: 47.1%;
  max-width: 500px;
  padding-bottom: 10px;
}
.section.kv .wrapper .kv-top .logo img {
  width: 100%;
  height: auto;
}
.section.kv .wrapper .kv-top .copy-wrapper {
  width: 46.2%;
  display: flex;
  justify-content: flex-end;
}
.section.kv .wrapper .kv-top .copy-wrapper .copy {
  font-size: 2.6rem;
  line-height: 1.96;
  letter-spacing: 0.21em;
  font-weight: 500;
}
.section.kv .wrapper .slider-wrapper {
  min-width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  display: -ms-grid;
  -ms-grid-columns: min-content;
}
.section.kv .wrapper .kv-bottom {
  min-width: 100%;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: flex;
  -webkit-animation: 80s linear infinite slider;
          animation: 80s linear infinite slider;
}
.section.kv .wrapper .kv-bottom .item {
  width: 114vw;
  min-width: 1470px;
  max-height: 600px;
  position: relative;
}
.section.kv .wrapper .kv-bottom .item img {
  width: 100%;
  height: auto;
}
.section.massage .wrapper {
  width: calc(100% - 60px);
  margin: 0 auto;
  background-color: #f7f6f2;
}
.section.massage .wrapper .inner {
  width: 86.88%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 92px;
}
.section.massage .wrapper .inner p .under-line {
  display: inline-block;
  line-height: 4.1;
  letter-spacing: 0.1em;
  padding-bottom: 0px;
  font-weight: 500;
  background-image: linear-gradient(to right, #d5d5d5, #d5d5d5 5px, transparent 5px, transparent 10px);
  background-size: 10px 1px;
  background-position: left bottom 14px;
  background-repeat: repeat-x;
}
.section.articles .wrapper {
  width: calc(100% - 60px);
  margin: 0 auto;
  margin: 0 auto 30px;
  background-color: #f7f6f2;
  padding-bottom: 238px;
}
.section.articles .wrapper .inner {
  width: 86.88%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 93px;
}
.section.articles .wrapper .inner .article-list.ver-a {
  margin-top: 0;
}
.section.articles .wrapper .inner .article-list.ver-b {
  margin-top: 461px;
}
.section.articles .wrapper .inner .article-list.ver-c {
  margin-top: 0;
}
.section.articles .wrapper .inner .article-list .item .link:hover {
  opacity: 1;
}
.section.articles .wrapper .inner .article-list .item .link:hover .thumb-wrapper img {
  transform: scale(1.03);
}
.section.articles .wrapper .inner .article-list .item:not(.dummy) .for-hover {
  margin-bottom: 14px;
}
.section.articles .wrapper .inner .article-list .item.dummy {
  padding-bottom: 5vw;
}
.section.articles .wrapper .inner .article-list .item.new {
  position: relative;
}
.section.articles .wrapper .inner .article-list .item.new::before {
  content: "";
  width: 150px;
  height: 120px;
  display: block;
  position: absolute;
  background-image: url(/bqplus/img/top/new_bird.svg);
  background-size: cover;
  background-position: center;
  top: -120px;
  right: 0;
  z-index: 5;
  -webkit-animation: 2.5s ease infinite yurayura;
          animation: 2.5s ease infinite yurayura;
  transform-origin: bottom right;
}
.section.articles .wrapper .inner .article-list .item.new::after {
  content: "";
  width: 150px;
  height: 120px;
  display: block;
  position: absolute;
  background-image: url(/bqplus/img/top/new_text.svg);
  background-size: cover;
  background-position: center;
  top: -120px;
  right: 0;
}

.section.articles .wrapper .inner .article-list .item.width36.new {
  margin-top: 72px;
}

.section.articles .wrapper .inner .article-list .item.width38.new {
  margin-top: 0;
}

.section.articles .wrapper .inner .article-list .item.width40.new {
  margin-top: 0;
}

.section.articles .wrapper .inner .article-list .item.width36 {
  width: 36.7%;
  margin-left: 0;
  margin-right: auto;
  margin-top: -407px;
}
.section.articles .wrapper .inner .article-list .item.width38 {
  width: 37.6%;
  margin-left: auto;
  margin-right: 0;
}
.section.articles .wrapper .inner .article-list .item.width48 {
  width: 47.9%;
  margin-left: auto;
  margin-right: 8.1vw;
  padding-bottom: 8.27%;
}
.section.articles .wrapper .inner .article-list .item.last {
  padding-bottom: 14vw;
}
.section.articles .wrapper .inner .article-list .item .link {
  display: block;
}
.section.articles .wrapper .inner .article-list .item .link .thumb-wrapper {
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.section.articles .wrapper .inner .article-list .item .link .thumb-wrapper img {
  transition: all 0.4s ease;
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center;
}
.section.articles .wrapper .inner .article-list .item .link .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 6px;
}
.section.articles .wrapper .inner .article-list .item .link .row .article-num {
}
.section.articles .wrapper .inner .article-list .item .link .row .article-num::after {
  content: "|";
  font-size: 1.3rem;
  line-height: 2;
  font-weight: 700;
  margin-right: 18px;
  margin-left: 15px;
}
.section.articles .wrapper .inner .article-list .item .link .row .article-num .text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.22em;
}
.section.articles .wrapper .inner .article-list .item .link .row .article-num .num {
  font-size: 2.5rem;
  line-height: 1.8;
  letter-spacing: 0.22em;
}
.section.articles .wrapper .inner .article-list .item .link .row .shop-name {
  font-size: 1.3rem;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.section.articles .wrapper .inner .article-list .item .link .name-wrapper {
  padding-bottom: 13px;
}
.section.articles .wrapper .inner .article-list .item .link .name-wrapper .name {
  display: inline-block;
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: -2px;
}
.section.articles .wrapper .inner .article-list .item .link .name-wrapper .company-name {
  display: block;
  font-size: 1.3rem;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.section.articles .wrapper .inner .article-list .item .link .name-wrapper .position {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding-right: 14px;
}
.section.articles .wrapper .inner .article-list .item .link .posting-date {
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: 0.15em;
  opacity: 0.7;
}
.section.articles .wrapper .inner .share {
  padding-top: 4.6vw;
}
body.page-article .header > .wrapper > .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.page-article .header > .wrapper > .inner .left .logo {
  width: 150px;
  height: 51px;
}
body.page-article .header#fixedHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 60px);
  margin: 0 auto;
  height: 120px;
  background-color: transparent;
  transform: translateY(-15px);
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
body.page-article .header#fixedHeader.scroll {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}
body.page-article .header#fixedHeader > .wrapper {
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  background-color: transparent;
}
body.page-article .header#fixedHeader > .wrapper > .inner {
  padding-left: 2.86%;
  height: 100%;
}
body.page-article .header:not(#fixedHeader) > .wrapper {
  padding-left: 2.86%;
  padding-top: 32px;
}
body.page-article .header:not(#fixedHeader) > .wrapper > .inner .right {
  margin-bottom: 15px;
}
body.page-article .article > .wrapper {
  width: calc(100% - 60px);
  margin: 0 auto;
  background-color: #f7f6f2;
}
body.page-article .article > .wrapper > .inner {
  width: 74%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 68px;
}
body.page-article .article > .wrapper > .inner article .pc-margin10 {
  margin-top: 10px;
}
body.page-article .article > .wrapper > .inner article .pc-margin15 {
  margin-top: 15px;
}
body.page-article .article > .wrapper > .inner article .pc-margin20 {
  margin-top: 20px;
}
body.page-article .article > .wrapper > .inner article .pc-margin25 {
  margin-top: 25px;
}
body.page-article .article > .wrapper > .inner article .pc-margin30 {
  margin-top: 30px;
}
body.page-article .article > .wrapper > .inner article .pc-margin35 {
  margin-top: 35px;
}
body.page-article .article > .wrapper > .inner article .pc-margin40 {
  margin-top: 40px;
}
body.page-article .article > .wrapper > .inner article .pc-margin45 {
  margin-top: 45px;
}
body.page-article .article > .wrapper > .inner article .pc-margin50 {
  margin-top: 50px;
}
body.page-article .article > .wrapper > .inner article .pc-margin55 {
  margin-top: 55px;
}
body.page-article .article > .wrapper > .inner article .pc-margin60 {
  margin-top: 60px;
}
body.page-article .article > .wrapper > .inner article .pc-margin65 {
  margin-top: 65px;
}
body.page-article .article > .wrapper > .inner article .pc-margin70 {
  margin-top: 70px;
}
body.page-article .article > .wrapper > .inner article .pc-margin75 {
  margin-top: 75px;
}
body.page-article .article > .wrapper > .inner article .pc-margin80 {
  margin-top: 80px;
}
body.page-article .article > .wrapper > .inner article .pc-margin85 {
  margin-top: 85px;
}
body.page-article .article > .wrapper > .inner article .pc-margin90 {
  margin-top: 90px;
}
body.page-article .article > .wrapper > .inner article .pc-margin95 {
  margin-top: 95px;
}
body.page-article .article > .wrapper > .inner article .pc-margin100 {
  margin-top: 100px;
}
body.page-article .article > .wrapper > .inner article .caption-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
body.page-article .article > .wrapper > .inner article .caption {
  display: block;
  font-size: 1.2rem;
  line-height: 2;
  opacity: 0.7;
  padding-top: 11px;
  text-align: left;
}
body.page-article .article > .wrapper > .inner article .caption.no-margin {
  margin-bottom: 0 !important;
}
body.page-article .article > .wrapper > .inner article .caption.credit {
  font-size: 1rem;
  line-height: 2;
  text-align: right;
}
body.page-article .article > .wrapper > .inner article .text-right {
  display: block;
  text-align: right;
}
body.page-article .article > .wrapper > .inner article > .top .article-num {
  text-align: center;
  padding-bottom: 30px;
}
body.page-article .article > .wrapper > .inner article > .top .article-num .text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.22em;
}
body.page-article .article > .wrapper > .inner article > .top .article-num .num {
  font-size: 2.5rem;
  line-height: 1.8;
  letter-spacing: 0.22em;
}
body.page-article .article > .wrapper > .inner article > .top .article-title {
  font-size: 2.5rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-align: center;
  padding-bottom: 35px;
}
body.page-article .article > .wrapper > .inner article > .top .people {
  display: flex;
  padding-bottom: 43px;
}
body.page-article .article > .wrapper > .inner article > .top .people.center {
  justify-content: center;
}
body.page-article .article > .wrapper > .inner article > .top .people .name {
  width: 50%;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-align: center;
}
body.page-article .article > .wrapper > .inner article > .top .people + .people {
  margin-top: -30px;
}
body.page-article .article > .wrapper > .inner article > .top .kv {
  margin-bottom: 30px;
}
body.page-article .article > .wrapper > .inner article > .top .width740 {
  width: 740px;
  margin: 0 auto;
  max-width: 100%;
}
body.page-article .article > .wrapper > .inner article > .top .description-img {
  padding-top: 30px;
}
body.page-article .article > .wrapper > .inner article > .top img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}
body.page-article .article > .wrapper > .inner article > .top .description {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
}
body.page-article .article > .wrapper > .inner article > .bottom {
  width: 740px;
  margin: 0 auto;
  max-width: 100%;
  padding-bottom: 57px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section {
  padding-top: 93px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section img + .caption-wrapper {
  margin-top: -28px;
  margin-bottom: 28px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section img + .caption {
  margin-top: -28px;
  margin-bottom: 28px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section h2 {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-bottom: 41px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section h2 + .block {
  margin-top: -20px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section p {
  font-size: 1.5rem;
  line-height: 2;
  padding-bottom: 26px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .note {
  display: block;
  font-size: 1.0rem;
  line-height: 2;
  padding-top: 10px;
  padding-bottom: 3px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  margin-bottom: 28px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .img-wrapper.has-margin.wide-bottom {
  margin-bottom: 60px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block img.has-margin.top {
  margin-top: 40px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block img.has-margin.wide-bottom {
  margin-bottom: 60px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block.border-none.all {
  border: none;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block.border-none.top {
  border-top: none;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block.border-none.bottom {
  border-bottom: none;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block + .block {
  border-top: none;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block p {
  padding-top: 10px;
  padding-bottom: 41px;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block {
  padding-top: 20px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block.part {
  display: flex;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block.part .people {
  width: 16%;
  min-width: 120px;
  padding-right: 20px;
  display: flex;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 700;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block.part .people::before {
  content: "";
  display: block;
  margin-top: 4px;
  margin-right: 5px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block.part .people.people1::before {
  background-image: url(/bqplus/img/article/icon_bird.png);
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block.part .people.people2::before {
  background-image: url(/bqplus/img/article/icon_butterfly.png);
}
body.page-article .article > .wrapper > .inner article > .bottom .section .block.part .text {
  width: 84%;
}
body.page-article .article > .wrapper > .inner article > .recommend {
  width: 740px;
  margin: 0 auto;
  max-width: 100%;
  padding-bottom: 86px;
}
body.page-article .article > .wrapper > .inner article > .recommend h3 {
  display: block;
  text-align: center;
  padding-bottom: 62px;
  background-image: url(/bqplus/img/article/wave.svg);
  background-size: 15px 4px;
  background-repeat: repeat-x;
}
body.page-article .article > .wrapper > .inner article > .recommend h3 .text {
  font-size: 1.7rem;
  line-height: 2;
  text-align: center;
  display: inline-block;
  background-color: #f7f6f2;
  margin-top: -17px;
  padding-right: 12px;
  padding-left: 12px;
}
body.page-article .article > .wrapper > .inner article > .recommend h3 .text .en {
  font-size: 1.9rem;
}
body.page-article .article > .wrapper > .inner article > .recommend > .block {
  display: flex;
  justify-content: space-between;
  background-image: url(/bqplus/img/article/wave.svg);
  background-size: 15px 4px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 62px;
}
body.page-article .article > .wrapper > .inner article > .recommend > .block .left {
  width: 32%;
}
body.page-article .article > .wrapper > .inner article > .recommend > .block .left img {
  width: 100%;
  height: auto;
}
body.page-article .article > .wrapper > .inner article > .recommend > .block .right {
  width: 59.45%;
  margin-top: -8px;
}
body.page-article .article > .wrapper > .inner article > .recommend > .block .right .ballon {
  font-size: 1.2rem;
  line-height: 2;
}
body.page-article .article > .wrapper > .inner article > .recommend > .block .right .products-name {
  font-size: 2.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
}
body.page-article .article > .wrapper > .inner article > .recommend > .block .right .products-name-small {
  display: block;
  font-size: 1.4rem;
  line-height: 2;
  padding-top: 5px;
  padding-bottom:13px;
}
body.page-article .article > .wrapper > .inner article > .recommend > .block .right .description {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
body.page-article .article > .wrapper > .inner article > .recommend > .block .img-wrapper img {
  border-radius: 20px;
}
body.page-article .information {
  width: calc(100% - 60px);
  margin: 0 auto;
}
body.page-article .information > .wrapper {
  background-color: #f7f6f2;
  padding-bottom: 110px;
}
body.page-article .information > .wrapper > .inner {
  width: 740px;
  margin: 0 auto;
  max-width: 100%;
}
body.page-article .information > .wrapper > .inner .floor {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 5.4%;
  align-items: center;
  justify-content: space-between;
}
body.page-article .information > .wrapper > .inner .floor:nth-of-type(n+2) {
  margin-top: 20px;
}
body.page-article .information > .wrapper > .inner .floor .left {
  display: flex;
  align-items: center;
  width: calc(100% - 100px);
}
body.page-article .information > .wrapper > .inner .floor .left .img-wrapper {
  width: 150px;
  padding-right: 6%;
  box-sizing: content-box;
}
body.page-article .information > .wrapper > .inner .floor .left .shop-name {
  font-size: 1.7rem;
  line-height: 2;
}
body.page-article .information > .wrapper > .inner .floor .right {
  align-items: center;
}
body.page-article .information > .wrapper > .inner .floor .right:hover img {
  transform: translate(1px, -3px);
}
body.page-article .information > .wrapper > .inner .floor .right img {
  width: 10px;
  height: 10px;
  transform: translate(0, 0);
  transition: all 0.5s ease;
}
body.page-article .information > .wrapper > .inner .floor .right .text {
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: 0.19em;
  padding-right: 4px;
}
body.page-article .share {
  width: calc(100% - 60px);
  margin: 0 auto;
  background-color: #f7f6f2;
}
body.page-article .share > .wrapper {
  width: 74%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 273px;
}
body.page-article .share > .wrapper > .inner .block {
  padding-bottom: 121px;
  width: 740px;
  margin: 0 auto;
  max-width: 100%;
}
body.page-article .share > .wrapper > .inner .back-link {
  display: flex;
  align-items: center;
}
body.page-article .share > .wrapper > .inner .back-link:hover img {
  transform: translate(-5px, 0);
}
body.page-article .share > .wrapper > .inner .back-link img {
  transform: translate(0, 0);
  transition: all 0.5s ease;
}
body.page-article .share > .wrapper > .inner .back-link .text {
  padding-left: 22px;
  font-size: 2.3rem;
  line-height: 1.7;
  letter-spacing: 0.22em;
}

@media screen and (max-width: 999px) {
  .pc {
    display: none;
  }
  #load span {
    width: 45px;
    height: 45px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .header:not(#fixedHeader) {
    margin-top: 10px;
  }
  .header:not(#fixedHeader) .wrapper {
    padding-top: 13px;
    width: calc(100% - 20px);
    max-width: initial;
    max-width: auto;
    padding-right: 3.33%;
  }
  .header:not(#fixedHeader) .wrapper .inner .website-link {
    display: flex;
    justify-content: flex-end;
  }
  .header:not(#fixedHeader) .wrapper .inner .website-link .en {
    display: block;
    font-size: 1.2rem;
    line-height: 1.41;
    padding-right: 7px;
    text-align: right;
  }
  .header:not(#fixedHeader) .wrapper .inner .website-link svg {
    margin-top: 4px;
    width: 10px;
    height: 7px;
  }
  footer > .wrapper {
    height: 70px;
  }
  footer > .wrapper .inner .page-top {
    top: -98px;
    right: 4.66%;
  }
  footer > .wrapper .inner .page-top .text {
    font-size: 1.2rem;
    padding-top: 5px;
  }
  footer > .wrapper .inner .page-top svg {
    wodth: 60px;
    height: 40px;
  }
  footer > .wrapper .inner .copyright {
    font-size: 1rem;
    line-height: 70px;
  }
  .share .img-wrapper {
    width: 120px;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .share .img-wrapper img {
    width: 100%;
    height: auto;
  }
  .share .sns-list .item {
    width: 60px;
    height: 60px;
    margin: 0 10px;
  }
  .share .sns-list .item .link img {
    width: 25px;
    height: 25px;
  }
  .section.kv .wrapper {
    padding-top: 69px;
    width: calc(100% - 20px);
    max-width: initial;
    max-width: auto;
    display: -ms-grid;
    -ms-grid-columns: min-content;
  }
  .section.kv .wrapper .kv-top {
    display: block;
    padding-bottom: 36px;
    width: 86%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
  }
  .section.kv .wrapper .kv-top .logo {
    width: 250px;
    padding-bottom: 29px;
  }
  .section.kv .wrapper .kv-top .copy-wrapper {
    width: 100%;
    justify-content: flex-start;
  }
  .section.kv .wrapper .kv-top .copy-wrapper .copy {
    font-size: 1.8rem;
    line-height: 2.1;
  }
  .section.kv .wrapper .slider-wrapper {
    min-width: calc(100% + 20px);
    margin-left: -10px;
  }
  .section.kv .wrapper .kv-bottom .item {
    width: 230vw;
    min-width: auto;
    min-width: initial;
  }
  .section.massage .wrapper {
    width: calc(100% - 20px);
    max-width: initial;
    max-width: auto;
  }
  .section.massage .wrapper .inner {
    width: 86%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
    padding-top: 53px;
  }
  .section.massage .wrapper .inner p .under-line {
    font-size: 1.5rem;
    line-height: 3.33;
    background-position: left bottom 6px;
  }
  .section.articles .wrapper {
    width: calc(100% - 20px);
    max-width: initial;
    max-width: auto;
    margin: 0 auto 10px;
    padding-bottom: 171px;
  }
  .section.articles .wrapper .inner {
    width: 86%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
    padding-top: 114px;
  }
  .section.articles .wrapper .inner .article-list {
    padding-bottom: 14px;
  }
  .section.articles .wrapper .inner .article-list.ver-a {
    margin-top: 0;
  }
  .section.articles .wrapper .inner .article-list.ver-b {
    margin-top: 0;
  }
  .section.articles .wrapper .inner .article-list.ver-c {
    margin-top: 0;
  }
  .section.articles .wrapper .inner .article-list .item {
    padding-bottom: 36px;
  }
  .section.articles .wrapper .inner .article-list .item:not(.dummy) .for-hover {
    margin-bottom: 13px;
  }
  .section.articles .wrapper .inner .article-list .item.new::before {
    width: 100px;
    height: 80px;
    top: -80px;
  }
  .section.articles .wrapper .inner .article-list .item.new::after {
    width: 100px;
    height: 80px;
    top: -80px;
  }
  .section.articles .wrapper .inner .article-list .item.width36.new {
    margin-top: 0;
  }
  .section.articles .wrapper .inner .article-list .item.width38.new {
    margin-top: 0;
  }
  .section.articles .wrapper .inner .article-list .item.width40.new {
    margin-top: 0;
  }

  .section.articles .wrapper .inner .article-list .item.width36 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
  .section.articles .wrapper .inner .article-list .item.width38 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .section.articles .wrapper .inner .article-list .item.width48 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 36px;
  }
  .section.articles .wrapper .inner .article-list .item.last {
    padding-bottom: 36px;
  }
  .section.articles .wrapper .inner .article-list .item .link .row {
    padding-bottom: 0px;
  }
  .section.articles .wrapper .inner .article-list .item .link .row .article-num::after {
    /* margin-right: 18px;
    margin-left: 15px; */
  }
  .section.articles .wrapper .inner .article-list .item .link .row .article-num .text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .section.articles .wrapper .inner .article-list .item .link .row .article-num .num {
    font-size: 2.3rem;
    line-height: 1.6;
  }
  .section.articles .wrapper .inner .article-list .item .link .name-wrapper {
    padding-bottom: 4px;
  }
  .section.articles .wrapper .inner .article-list .item .link .name-wrapper .name {
    font-size: 1.6rem;
    line-height: 1.92;
  }
  body.page-article .header > .wrapper {
    padding-top: 0px;
  }
  body.page-article .header > .wrapper > .inner .left .logo {
    width: 100px;
    height: auto;
  }
  body.page-article .header#fixedHeader {
    width: 100%;
    height: 70px;
  }
  body.page-article .header#fixedHeader.scroll {
    background-color: rgb(255, 255, 255);
  }
  body.page-article .header#fixedHeader > .wrapper {
    width: 100%;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  body.page-article .header#fixedHeader > .wrapper > .inner {
    padding-left: 4.33%;
  }
  body.page-article .header:not(#fixedHeader) > .wrapper {
    padding-left: 4.33%;
    padding-top: 16px;
  }
  body.page-article .header:not(#fixedHeader) > .wrapper > .inner {
    align-items: flex-start;
  }
  body.page-article .header:not(#fixedHeader) > .wrapper > .inner .right {
    margin-top: -2px;
    margin-bottom: 0px;
  }
  body.page-article .article > .wrapper {
    width: calc(100% - 20px);
    max-width: initial;
    max-width: auto;
  }
  body.page-article .article > .wrapper > .inner {
    width: 86%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
    padding-top: 67px;
  }
  body.page-article .article > .wrapper > .inner article .pc-margin10,
body.page-article .article > .wrapper > .inner article .pc-margin15,
body.page-article .article > .wrapper > .inner article .pc-margin20,
body.page-article .article > .wrapper > .inner article .pc-margin25,
body.page-article .article > .wrapper > .inner article .pc-margin30,
body.page-article .article > .wrapper > .inner article .pc-margin35,
body.page-article .article > .wrapper > .inner article .pc-margin40,
body.page-article .article > .wrapper > .inner article .pc-margin45,
body.page-article .article > .wrapper > .inner article .pc-margin50,
body.page-article .article > .wrapper > .inner article .pc-margin55,
body.page-article .article > .wrapper > .inner article .pc-margin60,
body.page-article .article > .wrapper > .inner article .pc-margin65,
body.page-article .article > .wrapper > .inner article .pc-margin70,
body.page-article .article > .wrapper > .inner article .pc-margin75,
body.page-article .article > .wrapper > .inner article .pc-margin80,
body.page-article .article > .wrapper > .inner article .pc-margin85,
body.page-article .article > .wrapper > .inner article .pc-margin90,
body.page-article .article > .wrapper > .inner article .pc-margin95,
body.page-article .article > .wrapper > .inner article .pc-margin100 {
    margin-top: 0;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin10 {
    margin-top: 10px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin15 {
    margin-top: 15px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin20 {
    margin-top: 20px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin25 {
    margin-top: 25px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin30 {
    margin-top: 30px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin35 {
    margin-top: 35px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin40 {
    margin-top: 40px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin45 {
    margin-top: 45px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin50 {
    margin-top: 50px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin55 {
    margin-top: 55px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin60 {
    margin-top: 60px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin65 {
    margin-top: 65px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin70 {
    margin-top: 70px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin75 {
    margin-top: 75px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin80 {
    margin-top: 80px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin85 {
    margin-top: 85px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin90 {
    margin-top: 90px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin95 {
    margin-top: 95px;
  }
  body.page-article .article > .wrapper > .inner article .sp-margin100 {
    margin-top: 100px;
  }
  body.page-article .article > .wrapper > .inner article .caption {
    font-size: 1rem;
    line-height: 2;
  }
  body.page-article .article > .wrapper > .inner article > .top .caption {
    width: 100%;
  }
  body.page-article .article > .wrapper > .inner article > .top .article-num {
    padding-bottom: 14px;
  }
  body.page-article .article > .wrapper > .inner article > .top .article-num .text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  body.page-article .article > .wrapper > .inner article > .top .article-num .num {
    font-size: 2.3rem;
    line-height: 1.6;
  }
  body.page-article .article > .wrapper > .inner article > .top .article-title {
    font-size: 2.3rem;
    line-height: 1.6;
    padding-bottom: 26px;
  }
  body.page-article .article > .wrapper > .inner article > .top .people {
    gap: 10px;
    padding-bottom: 30px;
  }
  body.page-article .article > .wrapper > .inner article > .top .people .name {
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.69;
  }
  body.page-article .article > .wrapper > .inner article > .top .people + .people {
    margin-top: -2px;
  }
  body.page-article .article > .wrapper > .inner article > .top .kv {
    margin-bottom: 25px;
  }
  body.page-article .article > .wrapper > .inner article > .top .kv img {
    width: calc(116% + 20px);
    margin-left: calc(-8% - 10px);
  }
  body.page-article .article > .wrapper > .inner article > .top .description-img {
    padding-top: 26px;
  }
  body.page-article .article > .wrapper > .inner article > .top .description {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    padding-bottom: 0;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section {
    padding-top: 33px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section h2 {
    font-size: 1.7rem;
    line-height: 1.8;
    padding-bottom: 26px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section p {
    font-size: 1.4rem;
    line-height: 1.8;
    padding-bottom: 18px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section .note{
    padding-bottom: 0;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section img {
    margin-bottom: 17px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section img + .caption-wrapper {
    display: block;
    margin-top: -14px;
    margin-bottom: 28px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section img + .caption-wrapper + p {
    margin-top: -10px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section img + .caption {
    margin-top: -14px;
    margin-bottom: 28px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section .block {
    padding-top: 16px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section .block img.has-margin.top {
    margin-top: 11px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section .block img.has-margin.wide-bottom {
    margin-bottom: 38px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section .block .img-wrapper.has-margin.wide-bottom {
    margin-bottom: 40px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section .block p {
    padding-top: 8px;
    padding-bottom: 25px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section .block.part {
    display: block;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section .block.part .people {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2;
    padding: right 0;
    padding-bottom: 7px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section .block.part .people::before {
    width: 16px;
    height: 16px;
    margin-top: 7px;
  }
  body.page-article .article > .wrapper > .inner article > .bottom .section .block.part .text {
    width: 100%;
  }
  body.page-article .article > .wrapper > .inner article > .recommend {
    padding-bottom: 77px;
  }
  body.page-article .article > .wrapper > .inner article > .recommend h3 {
    padding-bottom: 29px;
  }
  body.page-article .article > .wrapper > .inner article > .recommend h3 .text {
    font-size: 1.4rem;
    line-height: 1.57;
    margin-top: -11px;
  }
  body.page-article .article > .wrapper > .inner article > .recommend h3 .text .en {
    font-size: 1.6rem;
  }
  body.page-article .article > .wrapper > .inner article > .recommend > .block {
    display: block;
    padding-bottom: 43px;
  }
  body.page-article .article > .wrapper > .inner article > .recommend > .block .left {
    width: 54%;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  body.page-article .article > .wrapper > .inner article > .recommend > .block .right {
    width: 100%;
  }
  body.page-article .article > .wrapper > .inner article > .recommend > .block .right .ballon {
    padding-bottom: 3px;
  }
  body.page-article .article > .wrapper > .inner article > .recommend > .block .right .products-name {
    font-size: 1.9rem;
    padding-bottom: 6px;
  }
  body.page-article .article > .wrapper > .inner article > .recommend > .block .right .description {
    line-height: 2;
  }
  body.page-article .information {
    width: calc(100% - 20px);
    max-width: initial;
    max-width: auto;
  }
  body.page-article .information > .wrapper {
    padding-bottom: 42px;
  }
  body.page-article .information > .wrapper > .inner {
    width: 86%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
  }
  body.page-article .information > .wrapper > .inner .shop-logo {
    padding-bottom: 18px;
  }
  body.page-article .information > .wrapper > .inner .shop-logo.sp {
    display: block;
    text-align: center;
  }
  body.page-article .information > .wrapper > .inner .shop-logo:nth-of-type(n+2) {
    margin-top: 20px;
  }
  body.page-article .information > .wrapper > .inner .floor {
    padding: 12px 20px;
  }
  body.page-article .information > .wrapper > .inner .floor:nth-of-type(n+2) {
    margin-top: 0px;
  }
  body.page-article .information > .wrapper > .inner .floor .left .img-wrapper {
    width: auto;
  }
  body.page-article .information > .wrapper > .inner .floor .left .shop-name {
    font-size: 1.4rem;
  }
  body.page-article .share {
    width: calc(100% - 20px);
    max-width: initial;
    max-width: auto;
    margin-bottom: 10px;
  }
  body.page-article .share > .wrapper {
    width: 86%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
    padding-bottom: 188px;
  }
  body.page-article .share > .wrapper > .inner .block {
    width: 100%;
    padding-bottom: 61px;
  }
  body.page-article .share > .wrapper > .inner .back-link img {
    width: 14px;
  }
  body.page-article .share > .wrapper > .inner .back-link .text {
    padding-left: 12px;
    font-size: 1.8rem;
  }
}
/*# sourceMappingURL=common.css.map */