@charset "UTF-8";
/* reset
-------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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,
sub,
sup,
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,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  outline: 0;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

mark {
  color: #000;
  font-weight: bold;
  font-style: italic;
  background-color: #ff9;
}

i {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

sup {
  font-size: x-small;
  vertical-align: super;
}

address {
  font-style: normal;
}

/* base
-------------------------- */
html {
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  letter-spacing: 0.03em;
  font-size: 3.2vw;
}
@media (min-width: 769px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: #fa7598;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}
a img {
  overflow: hidden;
  outline: none;
  transition: opacity 0.3s ease;
}
a.pcmo:hover {
  color: #ff9db7;
}
a.pcmo:hover img {
  opacity: 0.8;
}

a:link,
a:visited,
a:active,
a:hover,
a:focus {
  outline: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
  pointer-events: none;
}

button {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

table {
  width: 100%;
}

/* font
-------------------------- */
.icon-font::before, .icon-font::after {
  font-family: "icomoon";
}

.noto-sans-r {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.noto-sans-m {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.armstrong {
  font-family: "armstrong", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.proxima-nova-l {
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.proxima-nova-r {
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.proxima-nova-m {
  font-family: "proxima-nova", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.proxima-nova-b {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* common
-------------------------- */
.pc {
  display: none;
}

@media (min-width: 769px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .width-01 {
    width: 100%;
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 55px;
  }
}
/* keyframes
-------------------------- */
/* header
-------------------------- */
/* stylelint-disable no-descending-specificity */
.header {
  width: 100%;
  height: 108px;
}

.header-sticky {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 108px;
  background-color: #fff;
}

.page-home .header-sticky,
.page-home-member .header-sticky {
  background-color: transparent;
}

.page-information-list .header-sticky,
.page-fcreport-list .header-sticky,
.page-discography-list .header-sticky {
  background-color: #fff1f3;
  transition: background-color 0.3s ease;
}
.page-information-list .header.scrolled .header-sticky, .page-information-list .header.on .header-sticky,
.page-fcreport-list .header.scrolled .header-sticky,
.page-fcreport-list .header.on .header-sticky,
.page-discography-list .header.scrolled .header-sticky,
.page-discography-list .header.on .header-sticky {
  background-color: #fff;
}

.page-goods-list .header-sticky,
.page-goods-single .header-sticky,
.page-cart .header-sticky {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}
.page-goods-list .header.scrolled .header-sticky, .page-goods-list .header.on .header-sticky,
.page-goods-single .header.scrolled .header-sticky,
.page-goods-single .header.on .header-sticky,
.page-cart .header.scrolled .header-sticky,
.page-cart .header.on .header-sticky {
  background-color: #fff;
}

.header-logo {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  width: 163px;
  height: 66px;
  transition: width 0.4s ease, height 0.4s ease;
}
.header-logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.drawer-menu-btn {
  position: fixed;
  z-index: 1004;
  top: 30px;
  right: 25px;
  width: 40px;
  height: 52px;
}
.drawer-menu-btn button {
  display: block;
  width: 100%;
  height: 100%;
}
.drawer-menu-btn .bar {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 34px;
  height: 34px;
  pointer-events: none;
}
.drawer-menu-btn .bar span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #231815;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0, 0, 0.5, 1);
}
.drawer-menu-btn .bar span:nth-of-type(1) {
  transform: translate(-50%, -10px);
}
.drawer-menu-btn .bar span:nth-of-type(2) {
  transform: translate(-50%, -1px);
  transition: opacity 0.4s ease;
}
.drawer-menu-btn .bar span:nth-of-type(3) {
  transform: translate(-50%, 8px);
}
.drawer-menu-btn .text {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  white-space: nowrap;
  color: #231815;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-size: 10px;
  font-size: 1rem;
}
.drawer-menu-btn .text span {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  transition: opacity 0.4s ease;
}
.drawer-menu-btn .text .close {
  opacity: 0;
}

.drawer-menu {
  position: fixed;
  z-index: 1003;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: transform 0.4s ease;
}
.drawer-menu.drawer-menu-uc-on .drawer-menu-list {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0, 0, 0.5, 1), visibility 0.3s cubic-bezier(0, 0, 0.5, 1);
}
.drawer-menu.drawer-menu-uc-on .underconstruction {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0, 0, 0.5, 1), visibility 0.3s cubic-bezier(0, 0, 0.5, 1);
}
.drawer-menu.uc-on .drawer-menu-list {
  visibility: hidden;
  opacity: 0;
}
.drawer-menu.uc-on .underconstruction {
  visibility: visible;
  opacity: 1;
}

.drawer-menu-inner {
  overflow-y: auto;
  position: relative;
  z-index: 1;
  padding: 11em 0;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}
.drawer-menu-inner::-webkit-scrollbar {
  display: none;
}

.drawer-menu-list-wrap {
  margin: 0 auto;
  width: 70%;
}

.drawer-menu-list li {
  margin-bottom: 2.5em;
}
.drawer-menu-list li a {
  display: inline-block;
  color: #ff9db7;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 6.4vw;
}
.drawer-menu-list li a.current {
  color: #fa7598;
  pointer-events: none;
}
.drawer-menu-list li a:active {
  color: #ffbcc9;
}
.drawer-menu-list li a.ja {
  font-size: 5.3333333333vw;
}
.drawer-menu-list li.logout {
  padding-top: 3.5em;
}

.underconstruction {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  color: #fa7598;
}

.underconstruction-text-01 {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-size: 6.4vw;
}

.underconstruction-text-02 {
  margin-bottom: 1em;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-size: 5.3333333333vw;
}

.underconstruction-text-03 {
  font-size: 3.2vw;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.js-drawer-menu-open {
  position: fixed !important;
  width: 100%;
}
.js-drawer-menu-open .drawer-menu-btn .bar span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.js-drawer-menu-open .drawer-menu-btn .bar span:nth-of-type(2) {
  opacity: 0;
}
.js-drawer-menu-open .drawer-menu-btn .bar span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.js-drawer-menu-open .drawer-menu-btn .text .menu {
  opacity: 0;
}
.js-drawer-menu-open .drawer-menu-btn .text .close {
  opacity: 1;
}
.js-drawer-menu-open .drawer-menu {
  transform: translateX(0%);
}

@media (min-width: 769px) {
  .page-home .header,
  .page-home-member .header {
    height: 0;
  }
  .page-home .header .header-logo.scrolled, .page-home .header .header-logo.on,
  .page-home-member .header .header-logo.scrolled,
  .page-home-member .header .header-logo.on {
    visibility: visible;
    opacity: 1;
  }
  .page-home .header-sticky,
  .page-home-member .header-sticky {
    height: 0;
  }
  .page-home .header-logo,
  .page-home-member .header-logo {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .page-room .header {
    height: 0;
  }
  .page-room .header-sticky {
    background-color: transparent;
  }
  .drawer-menu-inner {
    padding: 280px 0;
  }
  .drawer-menu-list-wrap {
    display: flex;
    width: 90%;
    max-width: 1110px;
  }
  .drawer-menu-list {
    width: 40%;
  }
  .drawer-menu-list li {
    margin-bottom: 30px;
    /* &.logout {
      padding-top: 71px;
    } */
  }
  .drawer-menu-list li a {
    font-size: 35px;
    font-size: 3.5rem;
  }
  .drawer-menu-list li a.pcmo:hover {
    color: #fa7598;
  }
  .drawer-menu-list li a.pcmo:hover:active {
    color: #ffbcc9;
  }
  .drawer-menu-list li a.ja {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.28;
  }
  .underconstruction-text-01 {
    font-size: 42px;
    font-size: 4.2rem;
  }
  .underconstruction-text-02 {
    margin-bottom: 1em;
    font-size: 35px;
    font-size: 3.5rem;
  }
  .underconstruction-text-03 {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
/* footer
-------------------------- */
.footer .copyright {
  padding: 2.5em 0;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-size: 2.1333333333vw;
  text-align: center;
  letter-spacing: 0.06em;
}

.footer-menu {
  text-align: center;
}
.footer-menu li {
  margin-bottom: 0.5em;
}
.footer-menu li a {
  position: relative;
  padding-left: 1em;
  font-size: 2.9333333333vw;
  color: #000;
}
.footer-menu li a::before {
  /* content: '>'; */
  /* @include sm_fz_vw(30); */
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  aspect-ratio: 1/1;
  width: 0.5em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translate(0, -50%) rotate(45deg);
}

@media (min-width: 769px) {
  .footer .copyright {
    padding: 16px 0 50px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .footer-menu li {
    display: inline-block;
    margin: 0 10px;
  }
  .footer-menu li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .footer-menu li a::before {
    transition: border-color 0.3s ease;
  }
  .footer-menu li a.pcmo:hover::before {
    border-color: #fa7598;
  }
}
/* main
-------------------------- */
/* stylelint-disable no-descending-specificity */
.container {
  padding: 1em 0;
}

.page-information-single .container,
.page-movie-single .container {
  padding: 0;
}

.page-room .container {
  padding-top: 0;
}

.page-title-01 {
  margin-bottom: 0.5em;
  padding: 0 5%;
  letter-spacing: 0.06em;
  color: #fa7598;
  font-size: 7.2vw;
}
.page-title-01 span {
  font-size: 4.8vw;
  margin-left: 0.8em;
}
.page-goods-list .page-title-01, .page-goods-single .page-title-01, .page-cart .page-title-01 {
  margin-bottom: 0;
}

.common-btn-01 a {
  display: block;
  position: relative;
  padding: 1em 0;
  background-color: #fa7598;
  text-align: center;
  letter-spacing: 0.03em;
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-size: 4vw;
}
.common-btn-01 a.current {
  background-color: #ffbcc9;
  pointer-events: none;
}
.common-btn-01 a::after {
  content: "";
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  right: 3%;
  bottom: 9%;
  width: 6%;
  background-color: #fff;
  aspect-ratio: 1;
}
.common-btn-01 a:active {
  background-color: #ffbcc9;
  color: #fff;
}
.common-btn-01 a.ja {
  padding: 1.45em 0;
  font-size: 3.2vw;
}

.common-menu-01,
.common-menu-02,
.common-menu-03 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 4em;
  width: 90%;
}
.common-menu-01 li,
.common-menu-02 li,
.common-menu-03 li {
  margin: 0 1% 0.25em 0;
  width: 49.5%;
}
.common-menu-01 li:nth-of-type(2n),
.common-menu-02 li:nth-of-type(2n),
.common-menu-03 li:nth-of-type(2n) {
  margin-right: 0;
}

.viewmore-btn-01 {
  margin: 0 auto;
  width: 46%;
}
.viewmore-btn-01 a {
  display: block;
  padding: 1em;
  border-radius: 200px;
  background-color: #009ade;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-size: 4vw;
}
.viewmore-btn-01 a:active {
  background-color: #22c5f0;
  color: #fff;
}

.single-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 3em;
  padding: 0 5%;
}

.single-nav-item {
  margin-right: 1.25%;
  width: 32.5%;
}
.single-nav-item:nth-of-type(3) {
  margin-right: 0;
}
.single-nav-item a {
  display: block;
  padding: 1em 0;
  height: 100%;
  border: 1px solid #009ade;
  background-color: #fff;
  text-align: center;
  white-space: nowrap;
  color: #009ade;
  line-height: 1;
  font-size: 3.7333333333vw;
}
.single-nav-item.prev a span, .single-nav-item.next a span {
  display: inline-block;
  position: relative;
}
.single-nav-item.prev a span::before, .single-nav-item.prev a span::after, .single-nav-item.next a span::before, .single-nav-item.next a span::after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.single-nav-item.prev a span {
  padding: 0 0.7em 0 1.7em;
}
.single-nav-item.prev a span::before, .single-nav-item.prev a span::after {
  content: "〈";
}
.single-nav-item.prev a span::before {
  left: 0;
}
.single-nav-item.prev a span::after {
  left: 0.5em;
}
.single-nav-item.next a span {
  padding: 0 1.7em 0 0.7em;
}
.single-nav-item.next a span::before, .single-nav-item.next a span::after {
  content: "〉";
}
.single-nav-item.next a span::before {
  right: 0.5em;
}
.single-nav-item.next a span::after {
  right: 0;
}
.single-nav-item.all a {
  font-size: 4vw;
  border: 1px solid #fa7598;
  background-color: #fa7598;
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
}

.common-room-logo {
  margin: 0 auto 1em;
  width: 90%;
}

.goods-head {
  margin-bottom: 1em;
}
.goods-head.is-fixed .goods-menu, .goods-head.on .goods-menu {
  position: fixed;
  z-index: 1001;
  top: 108px;
  left: 0;
  width: 100%;
  background-color: #fff;
}

.goods-menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.5em 0 1em;
  transition: background-color 0.3s ease;
}
.goods-menu > li {
  position: relative;
  text-align: center;
}
.goods-menu > li > a {
  display: inline-block;
  color: #000;
  font-size: 2.9333333333vw;
}
.goods-menu > li > a .icon {
  display: block;
  margin: 0 auto;
  width: 2.3em;
}
.goods-menu > li > a .icon-cart img {
  transform: translateX(-0.25em);
}
.goods-menu > li .num {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1em;
  right: -0.7em;
  width: 1.4em;
  height: auto;
  border: 1px solid #000;
  border-radius: 10em;
  aspect-ratio: 1/1;
}
.goods-menu > li .num span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -53%);
  line-height: 1;
  font-size: 2.4vw;
}
.goods-menu > li > button {
  display: inline-block;
  position: relative;
  padding: 0.8em 1.3em 0.8em 0;
  width: auto;
  color: #000;
  font-weight: 500;
  font-size: 2.9333333333vw;
}
.goods-menu > li > button::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  right: 0.3em;
  transform: translate(0, -50%);
  width: 0.7em;
  height: 0.5em;
  background: #000;
}
.goods-menu > li .goods-menu-sub {
  display: none;
  position: absolute;
  z-index: 1002;
  top: 100%;
  right: 0;
  padding: 0.5em 0;
  background-color: #fff;
}
.goods-menu > li .goods-menu-sub li {
  text-align: right;
}
.goods-menu > li .goods-menu-sub li a {
  display: block;
  padding: 0.5em 1em;
  white-space: nowrap;
  color: #000;
  font-size: 2.9333333333vw;
}
.goods-menu > li .goods-menu-sub li a.current {
  background-color: #d9d9d9;
  pointer-events: none;
}

@media (min-width: 769px) {
  .container {
    padding: 40px 0;
  }
  .page-home .container,
  .page-home-member .container,
  .page-room .container {
    padding: 0 0 40px;
  }
  .page-information-single .container,
  .page-movie-single .container {
    padding: 50px 0 40px;
  }
  .page-title-01 {
    margin-bottom: 60px;
    padding: 0;
    font-size: 42px;
    font-size: 4.2rem;
  }
  .page-title-01 span {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .common-btn-01 a {
    padding: 1.7em 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .common-btn-01 a::after {
    right: 5px;
    bottom: 5px;
    width: 10px;
  }
  .common-btn-01 a.pcmo:hover {
    background-color: #ff9db7;
    color: #fff;
  }
  .common-btn-01 a.pcmo:active {
    background-color: #ffbcc9;
    color: #fff;
  }
  .common-btn-01 a.ja {
    padding: 1.85em 0;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .common-menu-01 {
    margin: 0 auto 100px;
    padding: 0 55px;
    width: 100%;
    max-width: 1110px;
  }
  .common-menu-01 li {
    margin: 0 0.5% 0.3em 0;
    width: 33%;
  }
  .common-menu-01 li:nth-of-type(2n) {
    margin-right: 0.5%;
  }
  .common-menu-01 li:nth-of-type(3n) {
    margin-right: 0;
  }
  .common-menu-02 {
    margin: 0 auto 100px;
    padding: 0 55px;
    width: 100%;
    max-width: 1110px;
  }
  .common-menu-02 li {
    margin: 0 0.6% 0.3em 0;
    width: 49.7%;
  }
  .common-menu-03 {
    margin: 0 auto 100px;
    padding: 0 55px;
    width: 100%;
    max-width: 1110px;
  }
  .common-menu-03 li {
    margin: 0 0.4% 0.3em 0;
    width: 24.7%;
  }
  .common-menu-03 li:nth-of-type(2n) {
    margin-right: 0.4%;
  }
  .common-menu-03 li:nth-of-type(4n) {
    margin-right: 0;
  }
  .viewmore-btn-01 {
    width: 30%;
    max-width: 310px;
  }
  .viewmore-btn-01 a {
    padding: 1em;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .viewmore-btn-01 a.pcmo:hover {
    background-color: #00b2eb;
    color: #fff;
  }
  .viewmore-btn-01 a.pcmo:active {
    background-color: #22c5f0;
    color: #fff;
  }
  .single-nav {
    margin: 0 auto 50px;
    padding: 0;
    width: 100%;
    max-width: 675px;
  }
  .single-nav-item {
    margin-right: 1.25%;
    width: 32.5%;
  }
  .single-nav-item:nth-of-type(3) {
    margin-right: 0;
  }
  .single-nav-item a {
    padding: 1em 0;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .single-nav-item a.pcmo:hover {
    background-color: #009ade;
    color: #fff;
  }
  .single-nav-item a.pcmo:active {
    border: 1px solid #22c5f0;
    background-color: #22c5f0;
    color: #fff;
  }
  .single-nav-item.all a {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .single-nav-item.all a.pcmo:hover {
    border: 1px solid #ffbcc9;
    background-color: #ff9db7;
    color: #fff;
  }
  .single-nav-item.all a.pcmo:active {
    border: 1px solid #ffbcc9;
    background-color: #ffbcc9;
    color: #fff;
  }
  .common-room-logo {
    margin: 0 auto 40px;
    width: 100%;
  }
  .goods-head {
    position: relative;
    z-index: 1001;
    margin-bottom: 50px;
  }
  .goods-head.is-fixed .goods-head-sticky, .goods-head.on .goods-head-sticky {
    position: fixed;
    top: 108px;
    left: 0;
    width: 100%;
    background-color: #fff;
  }
  .goods-head.is-fixed .goods-menu, .goods-head.on .goods-menu {
    position: relative;
    top: auto;
    width: 60%;
    background-color: transparent;
  }
  .goods-head-sticky {
    padding-bottom: 10px;
    transition: background-color 0.3s ease;
  }
  .goods-head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .goods-menu {
    justify-content: space-between;
    padding: 6px 0;
    width: 60%;
    max-width: 500px;
  }
  .goods-menu > li:nth-of-type(2) {
    margin-right: 10%;
  }
  .goods-menu > li:nth-of-type(3) {
    margin-left: 10%;
  }
  .goods-menu > li > a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .goods-menu > li > a.pcmo:hover {
    opacity: 0.8;
    color: #000;
  }
  .goods-menu > li > a .icon {
    width: 2em;
  }
  .goods-menu > li > a .icon-cart img {
    transform: translateX(-0.2em);
  }
  .goods-menu > li .num {
    right: -1em;
  }
  .goods-menu > li .num span {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .goods-menu > li > button {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .goods-menu > li .goods-menu-sub {
    padding: 0.5em 0;
  }
  .goods-menu > li .goods-menu-sub li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .goods-menu > li .goods-menu-sub li a.pcmo:hover {
    background-color: #efefef;
  }
}/*# sourceMappingURL=style.css.map */