body {
  background: #ffffff;
  color: #333;
  font: 1em "Fira Sans", sans-serif;
  margin: 0px;
}

header {
  background: #080808;
  display: flex;
  padding: 10px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
}

#header-logo a {
  display: block;
  margin-left: 30px;
}
#header-logo a img {
  height: 80px;
}

#hamb-btn {
  display: none;
}

#header-menu {
  height: 80px;
  margin-left: auto;
  margin-right: 50px;
}
#header-menu ul li {
  display: inline-block;
  margin: auto 0px;
}
#header-menu ul li.page-link a {
  border-radius: 5px;
  color: #f6f3f3;
  display: block;
  font: 1.2em "Fira Sans", sans-serif;
  width: 70px;
  padding: 10px;
  text-decoration: none;
  text-align: center;
}
#header-menu ul li.page-link a:hover {
  background: rgb(118, 118, 118);
}
#header-menu ul li.book-link a {
  background: #341384;
  border-radius: 22px;
  color: #fff;
  display: block;
  font-weight: bold;
  width: 120px;
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
}
#header-menu ul li.book-link a:hover {
  background: #6463d4;
}

section.eye-catch {
  background: linear-gradient(#000000, 90%, #ffffff);
  color: #ffffff;
  padding: 100px 0px 500px;
  width: 100%;
}
section.eye-catch .image-part {
  display: block;
  margin: 200px auto 0px;
}

section.block {
  background: #ffffff;
  border-radius: 5px;
  margin: 100px auto 30px;
  padding: 30px;
  max-width: 1000px;
}

.top-section {
  background: #ffffff;
  margin-top: 150px;
}

.description {
  display: flex;
}

.reverse-part .image-part {
  order: 1;
}
.reverse-part .sent-part {
  order: 2;
}

.image-part {
  display: inline-block;
  padding: 30px;
  text-align: center;
  width: 50%;
}
.image-part img {
  border-radius: 5px;
  width: 100%;
}

.sent-part {
  padding: 30px;
  width: 50%;
  text-align: center;
  margin: auto;
}

.section-header {
  text-align: center;
  padding: 10px;
}

.headspa-description {
  padding: 30px;
  width: 50%;
  text-align: center;
  margin: auto;
}

#menu .menu-boxes .menu-box {
  background: #f0f0f0;
  border-radius: 5px;
  margin: 20px auto;
  padding: 20px;
  width: 600px;
  color: #090909;
}
#menu .menu-boxes .menu-box .menu-header {
  text-align: center;
}
#menu .menu-boxes .menu-box .menu-table {
  padding: 10px;
}
#menu .menu-boxes .menu-box .menu-table table {
  margin: auto;
}
#menu .menu-boxes .menu-box .menu-table table td {
  padding: 5px;
}
#menu .menu-boxes .menu-box .menu-table table td.item {
  width: 400px;
}
#menu .menu-boxes .menu-box .menu-table table td.price {
  padding-right: calc(5px + 1em);
  text-align: right;
  width: 100px;
}
#menu .menu-boxes .menu-box .menu-table table td.have-range {
  padding-right: 5px;
}
#menu .menu-boxes .menu-box .menu-text {
  text-align: center;
}

.link-button {
  margin: 20px 0px;
  text-align: center;
}
.link-button a {
  background: #888;
  border-radius: 22px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  padding: 10px 30px;
  text-decoration: none;
  text-align: center;
}
.link-button a:hover {
  background: #ccc;
}

#info .info-table table {
  margin: auto;
  color: #090909;
}
#info .info-table table th {
  background: #ccc;
  text-align: center;
  padding: 10px;
  width: 150px;
}
#info .info-table table td {
  background: #eee;
  padding: 10px;
  width: 450px;
}
#info .info-table table td .trip-map-link a {
  color: #333;
}
#info .info-table table td .trip-map-link a img.external-link-icon {
  height: 1em;
}
#info .google-map {
  margin: 30px;
  text-align: center;
}
#info .google-map iframe {
  height: 480px;
  width: 640px;
}

#sns {
  text-align: center;
}
#sns .section-content .line {
  margin: 30px 0px;
}
#sns .section-content .line a img {
  height: 50px;
}
#sns .section-content .insta {
  margin: 30px 0px;
}
#sns .section-content .insta iframe {
  margin-left: auto !important;
  margin-right: auto !important;
}

.popup-background {
  display: none;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
}

.popup-main {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  width: 400px;
}

.popup-show {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  background: #fffcfc;
}
footer .copyright {
  padding: 10px;
}
footer .copyright p {
  text-align: center;
}

.fade-up {
  animation: slideIn 3s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 1100px) {
  header {
    flex-wrap: wrap;
    height: 60px;
    padding: 10px 0px;
  }
  #header-logo a {
    margin-left: 20px;
  }
  #header-logo a img {
    height: 60px;
  }
  #hamb-menu {
    display: block;
    height: 50px;
    width: 50px;
    margin: auto 20px auto auto;
  }
  #hamb-menu span {
    background: #fff;
    border-radius: 2px;
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    margin: 22px auto auto 5px;
    position: absolute;
    transition: 0.2s;
  }
  #hamb-menu span::before,
  #hamb-menu span::after {
    background: #fff;
    border-radius: 2px;
    display: block;
    content: "";
    width: 40px;
    height: 4px;
    position: absolute;
    transition: 0.3s;
  }
  #hamb-menu span::before {
    margin-top: -13px;
  }
  #hamb-menu span::after {
    margin-top: 13px;
  }
  #hamb-menu span.close {
    background: transparent;
  }
  #hamb-menu span.close::before {
    margin-top: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  #hamb-menu span.close::after {
    margin-top: 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  #header-menu {
    background: #000;
    display: none;
    height: 420px;
    width: 100%;
    padding: 30px 0px 30px;
    margin-right: 0px;
  }
  #header-menu ul {
    padding: 0px;
  }
  #header-menu ul li {
    width: 100%;
  }
  #header-menu ul li a {
    margin: 10px auto;
  }
  section.block {
    margin: 100px 10px 100px;
    padding: 10px;
  }
  .description {
    display: block;
  }
  .image-part {
    display: block;
    margin: auto;
    padding: 10px;
    width: 90%;
  }
  .sent-part {
    padding: 10px;
    width: 90%;
  }
  .section-header {
    text-align: center;
    padding: 10px;
  }
  #top {
    margin-top: 120px;
  }
  .shop-introduction h1 {
    margin: 400px auto 380px;
    font-size: 3rem;
  }
  .shop-introduction h2 {
    margin: 100px auto 200px;
    font-size: 1.25rem;
  }
  .shop-introduction h3 {
    margin: 100px auto 100px;
    font-size: 1.25rem;
  }
  .salonroom-introduction h2 {
    margin: 50px auto 50px;
    font-size: 1rem;
  }
  .salonroom-introduction h3 {
    font-size: 1rem;
  }
  .headspa-introduction h2 {
    margin: 50px auto 50px;
    font-size: 1rem;
  }
  .headspa-introduction h3 {
    font-size: 1rem;
  }
  .salon-introduction h2 {
    margin: 50px auto 50px;
    font-size: 1rem;
  }
  .salon-introduction h3 {
    font-size: 1rem;
  }
  .cut-introduction h2 {
    margin: 50px auto 50px;
    font-size: 1rem;
  }
  .cut-introduction h3 {
    font-size: 1rem;
  }
  .bridal-introduction h2 {
    margin: 50px auto 50px;
    font-size: 1rem;
  }
  .bridal-introduction h3 {
    font-size: 1rem;
  }
  .profile-introduction h2 {
    margin: 50px auto 50px;
    font-size: 1rem;
  }
  .profile-introduction h3 {
    margin: 50px auto 50px;
    font-size: 0.75rem;
  }
  #menu .menu-boxes .menu-box {
    margin: 10px auto;
    padding: 10px;
    width: 90%;
    max-width: 600px;
  }
  #menu .menu-boxes .menu-box .menu-text {
    text-align: center;
  }
  #info .google-map {
    margin: 10px;
  }
  #info .google-map iframe {
    aspect-ratio: 4/3;
    height: 100%;
    width: 100%;
    max-width: 640px;
  }
}/*# sourceMappingURL=style.css.map */