#page-about {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}
#page-about h1 {
  font-size: 36px;
  font-weight: 300;
  padding: 30px 24px 20px;
}
@media (min-width: 768px) {
  #page-about h1 {
    padding: 36px 32px 20px;
    font-size: 47px;
  }
}
#page-about > * {
  width: 100%;
}
@media (min-width: 768px) {
  #page-about {
    flex-wrap: nowrap;
  }
  #page-about > * {
    width: 50%;
    border-right: 1px solid black;
  }
}
#page-about .shops-section-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
#page-about .shops-section-menu-list > * {
  padding: 0;
  background: none;
}
#page-about .shops-section-menu-list > * button {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: white;
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #D1D1D1;
  transition: color, background-color 0.25s ease;
  font-size: 12px;
  color: black;
  font-weight: 400;
  padding: 20px 20px 20px 24px;
}
@media (min-width: 768px) {
  #page-about .shops-section-menu-list > * button {
    padding: 24px 20px 24px 36px;
  }
}
#page-about .shops-section-menu-list > * button .title {
  border-bottom: 1px solid black;
}
#page-about .shops-section-menu-list > * button.active {
  pointer-events: none;
  cursor: default;
}
#page-about .shops-section-menu-list > * button:hover,
#page-about .shops-section-menu-list > * button.active {
  color: white;
  background: black;
  border-color: white;
}
#page-about .shops-section-menu-list > * button:hover .title,
#page-about .shops-section-menu-list > * button.active .title {
  border-bottom: 1px solid white;
}
#page-about .shops-section-menu-list > * button:hover svg path,
#page-about .shops-section-menu-list > * button.active svg path {
  fill: white;
}
#page-about .shop-description-wrapper section {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
#page-about .shop-description-wrapper section.active {
  display: block;
}
#page-about .shop-description-wrapper section.animate {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#page-about .shop-description-wrapper section .shop-description-head {
  padding: 32px 24px 24px;
}
@media (min-width: 768px) {
  #page-about .shop-description-wrapper section .shop-description-head {
    padding: 40px 36px 30px;
  }
}
#page-about .shop-description-wrapper section .shop-description-head h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
#page-about .shop-description-wrapper section .shop-description-head p {
  font-size: 12px;
  color: #959595;
  margin: 0;
}
#page-about .shop-description-wrapper section img {
  max-width: 100%;
  width: 100%;
}
#page-about .shop-description-wrapper section iframe {
  width: 100%;
  height: 400px;
  border: none;
}
#page-about .shop-description-wrapper section .shop-description-footer {
  padding: 32px 24px 32px 24px;
}
@media (min-width: 768px) {
  #page-about .shop-description-wrapper section .shop-description-footer {
    padding: 32px 36px 40px 36px;
  }
}
#page-about .shop-description-wrapper section .shop-description-footer p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 23px;
}
#page-about .shop-description-wrapper section .shop-description-footer p + p {
  margin-top: 20px;
}
#page-about .shop-description-wrapper section .shop-description-footer button {
  width: 100%;
  margin-top: 32px;
}
/*# sourceMappingURL=styles.css.map */