@keyframes btnOnTop {
  0% {
    top: -1rem;
    transform: rotate(0deg);
  }
  75% {
    top: 0;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(45deg);
  }
}
@keyframes btnOnBottom {
  0% {
    top: 1rem;
    transform: rotate(0deg);
  }
  75% {
    top: 0;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(-45deg);
  }
}
@keyframes btnOffTop {
  0% {
    top: 0;
    transform: rotate(45deg);
  }
  25% {
    top: 0;
    transform: rotate(0deg);
  }
  100% {
    top: -1rem;
    transform: rotate(0deg);
  }
}
@keyframes btnOffBottom {
  0% {
    top: 0;
    transform: rotate(-45deg);
  }
  25% {
    top: 0;
    transform: rotate(0deg);
  }
  100% {
    top: 1rem;
    transform: rotate(0deg);
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
/*--------------------
number
---------------------*/
/*--------------------
area
---------------------*/
.js-page-shop-tab-content {
  display: none;
}
.js-page-shop-tab-content.active {
  display: block;
}

.page-shop__nav {
  padding: 2rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 749.98px) {
  .page-shop__nav .container {
    width: 100%;
  }
}
.page-shop-tab {
  width: 100%;
}
.page-shop-tab-list {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 749.98px) {
  .page-shop-tab-list {
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0;
  }
}
.page-shop-tab-list li {
  width: 100%;
  height: 5.6rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid #333;
  border-radius: 0.4rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 749.98px) {
  .page-shop-tab-list li {
    width: calc((100% - 1.2rem) / 4);
    height: 3.2rem;
    font-size: 1.3rem;
    padding: 0;
  }
}
.page-shop-tab-list li.active {
  background-color: #333;
  color: #fff;
}
.page-shop-tab-list li.active:before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.7rem;
  background-color: #333;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -0.6rem;
  left: calc((100% - 1.5rem) / 2);
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 749.98px) {
  .page-shop-tab-list li.active:before {
    content: none;
  }
}
@media (hover: hover) {
  .page-shop-tab-list li:hover {
    background-color: rgba(51, 51, 51, 0.1);
  }
  .page-shop-tab-list li:hover.active {
    background-color: #333;
  }
}
.page-shop-content {
  display: none;
}
.page-shop-content.active {
  display: block;
  animation: footerFadeIn 0.8s forwards;
}
.page-shop-content .area {
  display: none;
}
@media screen and (max-width: 749.98px) {
  .page-shop-content .area {
    display: block;
    font-size: 1.3rem;
    line-height: 1.4615384615;
    font-weight: 700;
    padding: 0.4rem 1.4rem;
    background-color: #3e3e3e;
  }
}
.page-shop-detail {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
}
@media screen and (max-width: 749.98px) {
  .page-shop-detail {
    padding: 1.2rem 0 0;
    margin-bottom: 0;
  }
}
.page-shop-detail dt {
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 749.98px) {
  .page-shop-detail dt {
    display: none;
  }
}
.page-shop-detail dt:after {
  content: "";
  display: block;
  width: 1px;
  height: 2rem;
  background-color: #707070;
  position: absolute;
  right: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.page-shop-detail dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
}
.page-shop-detail dd a {
  font-size: 1.5rem;
  position: relative;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 749.98px) {
  .page-shop-detail dd a {
    font-size: 1.3rem;
  }
}