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

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(53, 53, 53);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 14.4px;
  }
}
@media screen and (max-width: 374px) {
  html, body {
    font-size: 12.8px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.select-wrap {
  position: relative;
}
.select-wrap::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  border: 1px solid rgb(133, 133, 133);
  pointer-events: none;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
  content: "";
  z-index: 2;
  width: 10px;
  aspect-ratio: 1/1;
  border-bottom: 2px solid rgb(133, 133, 133);
  border-right: 2px solid rgb(133, 133, 133);
  pointer-events: none;
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  border: 1px solid rgb(133, 133, 133);
  padding: 10px;
  display: block;
}

section {
  padding: 220px 0;
}
@media (max-width: 767px) {
  section {
    padding: 100px 0;
  }
}
section.normal {
  padding: 100px 0;
}
@media (max-width: 767px) {
  section.normal {
    padding: 80px 0;
  }
}
section.mini {
  padding: 75px 0;
}
@media (max-width: 767px) {
  section.mini {
    padding: 50px 0;
  }
}
section.top-small {
  padding-top: 150px;
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 100px);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contents-wrapper {
    width: calc(100% - 40px);
  }
}
.contents-wrapper.mini {
  max-width: 1000px;
}
.contents-wrapper.big {
  width: 100%;
  max-width: 1500px;
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
  line-height: 200%;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: 50% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main-contents img:not(.emoji) {
    width: 100% !important;
  }
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.white-space {
  white-space: nowrap;
}

figure {
  margin: 0;
  padding: 0;
}

.top-title {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .top-title {
    margin-bottom: 40px;
  }
}
.top-title .en {
  display: block;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.9rem;
}
.top-title.left {
  padding-top: 5px;
  border-left: 1px solid rgb(53, 53, 53);
  padding-left: 10px;
}
.top-title.white {
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 5px rgba(5, 65, 17, 0.8);
}
.top-title.center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.top-title.bottom {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid rgb(53, 53, 53);
}

.concept-title {
  margin-bottom: 60px;
  font-size: 1.9rem;
}
@media (max-width: 767px) {
  .concept-title {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}

.en-normal-title {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.1rem;
}

.brown-title {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: rgb(88, 68, 59);
}

.top-link {
  margin: 50px auto 0;
  max-width: 250px;
  padding: 10px;
  color: rgb(53, 53, 53);
  border: 1px solid rgb(53, 53, 53);
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-link span {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.top-link.left {
  margin-left: 0;
}
.top-link.salon-page {
  display: none;
}
@media (max-width: 767px) {
  .top-link.salon-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    max-width: 100%;
    background-color: rgb(255, 255, 255);
  }
}
.top-link::before, .top-link::after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-size: contain;
  background-color: rgb(53, 53, 53);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top-link.bg-white {
  background-color: rgb(255, 255, 255);
}
.top-link.whtie {
  color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}
.top-link.whtie::before, .top-link.whtie::after {
  background-color: rgb(255, 255, 255);
}
.top-link.whtie:hover {
  color: rgb(53, 53, 53);
  background-color: rgb(255, 255, 255);
}
.top-link.whtie:hover::before, .top-link.whtie:hover::after {
  background-color: rgb(53, 53, 53);
}
.top-link.triangle::after {
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.top-link.arrow::after {
  -webkit-mask-image: url("../../images/arrow.svg");
          mask-image: url("../../images/arrow.svg");
}
.top-link.blank::after {
  -webkit-mask-image: url("../../images/blank-icon.svg");
          mask-image: url("../../images/blank-icon.svg");
}
.top-link.job::before {
  -webkit-mask-image: url("../../images/job-icon.svg");
          mask-image: url("../../images/job-icon.svg");
}
.top-link.instagram::before {
  -webkit-mask-image: url("../../images/instagram-icon.svg");
          mask-image: url("../../images/instagram-icon.svg");
}
.top-link.list::before {
  -webkit-mask-image: url("../../images/list-icon.svg");
          mask-image: url("../../images/list-icon.svg");
}
.top-link.map::before {
  -webkit-mask-image: url("../../images/map-icon.svg");
          mask-image: url("../../images/map-icon.svg");
}
.top-link.reserve::before {
  -webkit-mask-image: url("../../images/schedule-icon.svg");
          mask-image: url("../../images/schedule-icon.svg");
}
.top-link.scissors::before {
  -webkit-mask-image: url("../../images/scissors-icon.svg");
          mask-image: url("../../images/scissors-icon.svg");
}
.top-link:hover {
  background-color: rgb(53, 53, 53);
  color: rgb(255, 255, 255);
}
.top-link:hover::before, .top-link:hover::after {
  background-color: rgb(255, 255, 255);
}

.menu-list {
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
}

.salon-page-menu {
  position: sticky;
  top: 100px;
  left: 0;
  z-index: 500;
  padding: 20px 0;
  background-color: rgb(133, 133, 133);
}
@media (max-width: 767px) {
  .salon-page-menu {
    display: none;
  }
}
.salon-page-menu .contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (max-width: 1023px) {
  .salon-page-menu .contents-wrapper {
    width: calc(100% - 40px);
  }
}
.salon-page-menu .contents-wrapper a {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
}
.salon-page-menu .contents-wrapper .reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.salon-page-menu .contents-wrapper .reserve::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-size: contain;
  background-color: rgb(255, 255, 255);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-mask-image: url("../../images/schedule-icon.svg");
          mask-image: url("../../images/schedule-icon.svg");
}
.salon-page-menu .salon-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
}

.news-page-list.news .west {
  display: none;
}
.news-page-list.west .news {
  display: none;
}
.news-page-list.blog a {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .news-page-list.blog a {
    padding-bottom: 0;
  }
}
.news-page-list li:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .news-page-list li:not(:last-child) {
    margin-bottom: 30px;
  }
}
.news-page-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 30px;
  color: rgb(53, 53, 53);
}
.news-page-list .image-box {
  width: 250px;
}
@media (max-width: 767px) {
  .news-page-list .image-box {
    width: 100%;
  }
}
.news-page-list .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  aspect-ratio: 25/18;
}
.news-page-list .text-box {
  width: calc(100% - 250px - 30px);
}
@media (max-width: 767px) {
  .news-page-list .text-box {
    width: 100%;
  }
}

.news-time {
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-family: "Josefin Sans", sans-serif;
}

.news-title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-title:not(:last-child) {
  margin-bottom: 15px;
}

.top-news-list li {
  border-bottom: 1px solid rgb(222, 222, 222);
}
.top-news-list li:not(:last-child) {
  margin-bottom: 15px;
}
.top-news-list a {
  display: block;
  padding-bottom: 10px;
  color: rgb(53, 53, 53);
}
.top-news-list .news-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.top-blog-list .image-box {
  margin-bottom: 10px;
}
.top-blog-list a {
  color: rgb(53, 53, 53);
}
.top-blog-list a::before {
  display: none;
}
.top-blog-list .news-time {
  margin-bottom: 0;
}
.top-blog-list .news-title {
  margin-bottom: 3px;
}

.dot-list {
  font-weight: 500;
}
.dot-list li::before {
  content: "・";
}
.dot-list.icon li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5PX;
}
.dot-list.icon li::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/exclamation-mark.svg");
}

.header {
  position: absolute;
  width: 100%;
  z-index: 10000;
  padding: 10px 25px 10px 40px;
  -webkit-transition: top 1s ease, opacity 1.5s ease;
  transition: top 1s ease, opacity 1.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .header {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 5px 10px;
  }
}
.header::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  -webkit-transition: top 0.5s ease, opacity 0.5s ease;
  transition: top 0.5s ease, opacity 0.5s ease;
}
.header.fixed {
  position: fixed;
  top: -100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.header.fixed::before {
  opacity: 1;
}
.header.fixed.visible {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}
.header.fixed.visible .header-logo .fexd {
  opacity: 1;
}
.header.fixed.visible .drawer-hamburger .drawer-hamburger-icon {
  background-color: rgb(133, 133, 133);
}
.header.fixed.visible .drawer-hamburger .drawer-hamburger-icon::before, .header.fixed.visible .drawer-hamburger .drawer-hamburger-icon::after {
  background-color: rgb(133, 133, 133);
}
.header.fixed.visible .drawer-nav {
  padding: 50px 30px;
  top: 101px;
  height: calc(100vh - 101px);
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .header.fixed.visible .drawer-nav {
    top: 52px;
    height: calc(100vh - 52px);
  }
}
.header .header-logo {
  position: relative;
  width: auto;
  height: 81px;
}
@media (max-width: 767px) {
  .header .header-logo {
    height: 42px;
  }
}
.header .header-logo img {
  width: auto;
  height: 100%;
}
.header .header-logo .fexd {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header .drawer-hamburger {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  z-index: 200;
  width: 50px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 767px) {
  .header .drawer-hamburger {
    width: 30px;
    height: 20px;
  }
}
.header .drawer-hamburger .drawer-hamburger-icon {
  margin-top: 0;
  position: static;
  width: 70%;
  background-color: rgb(255, 255, 255);
}
.header .drawer-hamburger .drawer-hamburger-icon::before, .header .drawer-hamburger .drawer-hamburger-icon::after {
  background-color: rgb(255, 255, 255);
}
.header .drawer-hamburger .drawer-hamburger-icon::before {
  width: 50%;
  top: 0;
}
.header .drawer-hamburger .drawer-hamburger-icon::after {
  top: auto;
  bottom: 0;
}
.header .drawer-nav {
  height: 100vh;
  z-index: 100;
  padding: 120px 30px;
  background-color: rgb(222, 222, 222);
  text-align: center;
}
@media (max-width: 767px) {
  .header .drawer-nav {
    padding: 60px 30px;
  }
}
.header .drawer-nav .menu-list li:not(:last-child) {
  margin-bottom: 30px;
}
.header .drawer-nav .menu-list a {
  border-bottom: 1px solid transparent;
  color: rgb(133, 133, 133);
}
.header .drawer-nav .menu-list a:hover {
  border-color: rgb(133, 133, 133);
}
.header .menu-logo {
  display: block;
  margin-bottom: 40px;
  width: 100%;
}

.drawer--right.drawer-open button.drawer-hamburger {
  right: 0;
}
.drawer--right.drawer-open button.drawer-hamburger .drawer-hamburger-icon {
  width: 100%;
}
.drawer--right.drawer-open button.drawer-hamburger .drawer-hamburger-icon::before, .drawer--right.drawer-open button.drawer-hamburger .drawer-hamburger-icon::after {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.drawer--right.drawer-open button.drawer-hamburger .drawer-hamburger-icon::before {
  width: 100%;
}

.drawer-overlay.drawer-toggle {
  z-index: 100;
}

.instagram-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 1023px) {
  .instagram-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

.top-ricruit-section {
  padding: 0;
}
.top-ricruit-section .recruit-image-wrapper {
  background-image: url("../../images/recruit-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  aspect-ratio: 1440/400;
  max-height: 600px;
  min-height: 160px;
  width: 100%;
}
.top-ricruit-section .top-link {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

footer {
  padding: 100px 0 10px;
  background-color: rgb(53, 53, 53);
  color: rgb(255, 255, 255);
}
@media (max-width: 767px) {
  footer.salon-page-footer {
    padding-bottom: 50px;
  }
}
footer .menu-list {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
@media (max-width: 1023px) {
  footer .menu-list {
    display: none;
  }
}
footer .menu-list a {
  color: rgb(255, 255, 255);
}

.footer-logo {
  display: block;
  max-width: 155px;
  margin: 0 auto 50px;
}

.footer-address-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px 30px;
}
.footer-address-wrapper .inner-address-box {
  max-width: 550px;
  width: calc((100% - 30px) / 2);
}
@media (max-width: 1023px) {
  .footer-address-wrapper .inner-address-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    gap: 10px 50px;
  }
}
@media (max-width: 1023px) {
  .footer-address-wrapper .inner-address {
    width: calc(40% - 50px);
  }
}
@media (max-width: 767px) {
  .footer-address-wrapper .inner-address {
    width: 100%;
  }
}
.footer-address-wrapper .open,
.footer-address-wrapper .shop-name {
  font-size: 1.4rem;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
}
.footer-address-wrapper .shop-name {
  width: auto;
  height: 50px;
  margin: 0 0 20px;
}
.footer-address-wrapper .address-contect-box {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .footer-address-wrapper .address-contect-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .footer-address-wrapper .address-contect-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-address-wrapper .address-contect-box .tel {
  font-family: "Josefin Sans", sans-serif;
}
.footer-address-wrapper .address-contect-box .tel span {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .footer-address-wrapper .address-contect-box .tel span {
    font-size: 1.2rem;
  }
}
.footer-address-wrapper .address-contect-box .top-link {
  margin: 0;
}
.footer-address-wrapper .open-wrapper {
  border-top: 1px solid rgb(255, 255, 255);
  padding-top: 20px;
}
@media (max-width: 1023px) {
  .footer-address-wrapper .open-wrapper {
    width: 60%;
    border-top: none;
    padding-left: 30px;
    border-left: 1px solid rgb(255, 255, 255);
  }
}
@media (max-width: 767px) {
  .footer-address-wrapper .open-wrapper {
    width: 100%;
    border-top: 1px solid rgb(255, 255, 255);
    border-left: none;
    padding-left: 0;
  }
}
.footer-address-wrapper .inner-open-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.footer-address-wrapper .inner-open-box:not(:last-child) {
  margin-bottom: 5px;
}
.footer-address-wrapper .inner-open-box .day {
  width: 80px;
}

.copy-right {
  margin-top: 50px;
  padding-top: 10px;
  border-top: 1px solid rgb(255, 255, 255);
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.fv-section {
  position: relative;
  z-index: 1;
  height: 100vh;
  max-height: 1024px;
  min-height: 550px;
  padding: 0;
}
@media (max-width: 1023px) {
  .fv-section {
    height: 700px;
  }
}
@media (max-width: 767px) {
  .fv-section {
    height: 400px;
  }
}
.fv-section::after {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 40%;
  height: 190vh;
  background-color: rgb(222, 222, 222);
}
@media (max-width: 1023px) {
  .fv-section::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    display: block;
    width: calc(100% - 100px);
    height: 100%;
    background-color: rgba(53, 53, 53, 0.3);
  }
}
@media (max-width: 767px) {
  .fv-section::before {
    display: none;
  }
}
.fv-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: calc(100% - 100px);
  margin-left: 0;
}
@media (max-width: 767px) {
  .fv-section .bg-image {
    width: calc(100% - 50px);
  }
}
@media (max-width: 767px) {
  .fv-section .bg-image.coupon {
    -o-object-position: right;
       object-position: right;
  }
}
.fv-section .fv-logo {
  position: absolute;
  bottom: 0;
  right: 100px;
  width: 30%;
  max-width: 450px;
  z-index: 3;
}
@media (max-width: 767px) {
  .fv-section .fv-logo {
    right: 50px;
    width: 35%;
    max-width: 200px;
  }
}
.fv-section .sns-box {
  position: absolute;
  right: 50px;
  top: 120px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media (max-width: 767px) {
  .fv-section .sns-box {
    right: 25px;
    top: 70px;
  }
}
.fv-section .sns-box a {
  display: block;
  font-size: 0.8rem;
  color: rgb(255, 255, 255);
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .fv-section .sns-box a {
    font-size: 0.7rem;
  }
}
.fv-section .sns-box a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.fv-section .sns-box a:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .fv-section .sns-box a:not(:last-child) {
    margin-bottom: 25px;
  }
}
.fv-section .sns-box a img {
  margin-top: 3px;
  width: 30px;
}
@media (max-width: 767px) {
  .fv-section .sns-box a img {
    width: 20px;
  }
}
.fv-section .contents-wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
}
.fv-section .contents-wrapper::after {
  z-index: 5;
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: block;
  width: 5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .fv-section .contents-wrapper::after {
    bottom: 40px;
  }
}
.fv-section .contents-wrapper::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  content: "";
  display: block;
  width: 1px;
  height: 160px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(255, 255, 255)), color-stop(50%, rgb(53, 53, 53)));
  background: linear-gradient(to bottom, rgb(255, 255, 255) 50%, rgb(53, 53, 53) 50%);
}
@media (max-width: 767px) {
  .fv-section .contents-wrapper::before {
    height: 80px;
  }
}
.fv-section .fv-text {
  position: absolute;
  bottom: 100px;
  left: 50px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  z-index: 2;
  font-size: 5rem;
  line-height: 1.2em;
  letter-spacing: 2px;
  font-family: "Josefin Sans", sans-serif;
  color: rgb(255, 255, 255);
}
@media (max-width: 1230px) {
  .fv-section .fv-text {
    left: 5px;
    font-size: 4rem;
  }
}
@media (max-width: 1023px) {
  .fv-section .fv-text {
    bottom: 190px;
  }
}
@media (max-width: 767px) {
  .fv-section .fv-text {
    bottom: 140px;
    font-size: 2.2rem;
  }
}

.top-concept-section {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-concept-section {
    padding-top: 100px;
  }
}
.top-concept-section .concept-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
.top-concept-section .concept-wrapper .text-box {
  width: calc(50% - 30px);
}
@media (max-width: 1023px) {
  .top-concept-section .concept-wrapper .text-box {
    position: relative;
    width: 60%;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .top-concept-section .concept-wrapper .text-box {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .top-concept-section .concept-wrapper .text-box p {
    width: 75%;
  }
}
.top-concept-section .concept-wrapper .image-box {
  width: 50%;
  position: relative;
}
@media (max-width: 1023px) {
  .top-concept-section .concept-wrapper .image-box {
    width: calc(40% - 30px);
  }
}
@media (max-width: 767px) {
  .top-concept-section .concept-wrapper .image-box {
    display: none;
  }
}
.top-concept-section .concept-wrapper .main-image {
  width: 55%;
}
@media (max-width: 1023px) {
  .top-concept-section .concept-wrapper .main-image {
    width: 85%;
  }
}
.top-concept-section .concept-wrapper .main-image.one {
  margin-right: 0;
}
.top-concept-section .concept-wrapper .main-image.two {
  position: absolute;
  left: 0;
  top: 100px;
}
@media (max-width: 1023px) {
  .top-concept-section .concept-wrapper .main-image.two {
    right: 60%;
    left: auto;
    top: 210px;
  }
}
.top-concept-section .concept-wrapper .logo-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  -webkit-animation: rotateAnimation 10s linear infinite;
          animation: rotateAnimation 10s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes rotateAnimation {
  from {
    -webkit-transform: translate(50%, 50%) rotate(0deg);
            transform: translate(50%, 50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(50%, 50%) rotate(360deg);
            transform: translate(50%, 50%) rotate(360deg);
  }
}

@keyframes rotateAnimation {
  from {
    -webkit-transform: translate(50%, 50%) rotate(0deg);
            transform: translate(50%, 50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(50%, 50%) rotate(360deg);
            transform: translate(50%, 50%) rotate(360deg);
  }
}
.top-salon-section {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-salon-section {
    padding-top: 100px;
  }
}
.top-salon-section.top::before {
  position: absolute;
  top: 85%;
  left: 0;
  z-index: -1;
  background-color: rgb(133, 133, 133);
}
.top-salon-section::before {
  content: "";
  display: block;
  width: 30%;
  height: 100%;
}

.salon-link-wrapper {
  display: -ms-grid;
  display: grid;
  gap: 50px;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1040px) {
  .salon-link-wrapper {
    gap: 30px;
  }
}
@media (max-width: 1023px) {
  .salon-link-wrapper {
    -ms-grid-columns: 80%;
    grid-template-columns: 80%;
    gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .salon-link-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.salon-link-wrapper .text-box {
  padding: 30px 15px;
}
.salon-link-wrapper .salon-name {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.9rem;
}
.salon-link-wrapper .arspace .text-box {
  background-color: rgb(245, 247, 255);
}
.salon-link-wrapper .arspace .salon-name {
  color: rgb(45, 61, 120);
}
.salon-link-wrapper .west .text-box {
  background-color: rgb(242, 249, 251);
}
.salon-link-wrapper .west .salon-name {
  color: rgb(5, 65, 17);
}
.salon-link-wrapper .tel {
  margin: 10px 0 30px;
  font-family: "Josefin Sans", sans-serif;
}
.salon-link-wrapper .tel span {
  font-size: 1.4rem;
}
.salon-link-wrapper .link-wrapper {
  display: -ms-grid;
  display: grid;
  gap: 10px 15px;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .salon-link-wrapper .link-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.salon-link-wrapper .top-link {
  max-width: 100%;
  margin: 0;
}

.top-pick-up-section {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.top-pick-up-section .swiper.pick-up-swiper {
  overflow: visible;
}
.top-pick-up-section img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  aspect-ratio: 1/1;
}

section .contents-wrapper div.swiper div.swiper-scrollbar.pick-up {
  opacity: 1 !important;
  position: relative;
  width: 200px;
  margin: 30px auto 0;
}

.top-news-section {
  position: relative;
  z-index: 2;
}
.top-news-section::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/top-news-bg.jpg");
}
@media (max-width: 1023px) {
  .top-news-section::before {
    width: 35%;
  }
}

.top-news-wrapper {
  position: relative;
  padding-block: 50px;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 30px;
}
@media (max-width: 767px) {
  .top-news-wrapper {
    padding: 50px 30px 70px;
    width: 90%;
  }
}
.top-news-wrapper:not(:last-child) {
  margin-bottom: 75px;
}
.top-news-wrapper::after {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 60px;
  height: 100%;
  -webkit-writing-mode: sideways-rl;
      -ms-writing-mode: sideways-rl;
          writing-mode: sideways-rl;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .top-news-wrapper::after {
    width: 100%;
    height: 35px;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    top: auto;
    bottom: 0;
  }
}
.top-news-wrapper.arspace {
  background-color: rgb(245, 247, 255);
  padding-inline: 250px 110px;
}
@media (max-width: 1500px) {
  .top-news-wrapper.arspace {
    padding-inline: calc((100vw - 1000px) / 2) 110px;
  }
}
@media (max-width: 1100px) {
  .top-news-wrapper.arspace {
    padding-inline: 50px 80px;
  }
}
@media (max-width: 767px) {
  .top-news-wrapper.arspace {
    padding-inline: 20px;
  }
}
.top-news-wrapper.arspace::after {
  content: "arspace";
  right: 0;
  background-color: rgb(45, 61, 120);
}
.top-news-wrapper.arspace .sub-title {
  color: rgb(45, 61, 120);
}
.top-news-wrapper.arspace .list-wrapper {
  padding-left: 30px;
  border-left: 1px solid rgb(222, 222, 222);
}
@media (max-width: 1023px) {
  .top-news-wrapper.arspace .list-wrapper {
    border: none;
    padding-left: 0;
  }
}
.top-news-wrapper.west {
  margin-left: auto;
  background-color: rgb(242, 249, 251);
  padding-inline: 110px 250px;
}
@media (max-width: 1500px) {
  .top-news-wrapper.west {
    padding-inline: 110px calc((100vw - 1000px) / 2);
  }
}
@media (max-width: 1100px) {
  .top-news-wrapper.west {
    padding-inline: 80px 50px;
  }
}
@media (max-width: 767px) {
  .top-news-wrapper.west {
    padding-inline: 20px;
  }
}
.top-news-wrapper.west::after {
  content: "arspace west";
  left: 0;
  background-color: rgb(5, 65, 17);
}
.top-news-wrapper.west .sub-title {
  color: rgb(5, 65, 17);
}
.top-news-wrapper .title-wrapper {
  width: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1023px) {
  .top-news-wrapper .title-wrapper {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .top-news-wrapper .title-wrapper {
    display: contents;
  }
}
@media (max-width: 1023px) {
  .top-news-wrapper .top-link {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .top-news-wrapper .top-link {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    margin: 30px auto 0;
  }
}
.top-news-wrapper .sub-title {
  font-family: "Josefin Sans", sans-serif;
}
.top-news-wrapper .list-wrapper {
  border-left: 1px solid rgb(222, 222, 222);
  padding-left: 30px;
  width: calc(100% - 270px - 30px);
}
@media (max-width: 1023px) {
  .top-news-wrapper .list-wrapper {
    border: none;
    padding-left: 0;
    width: 100%;
  }
}

.top-blog-section {
  overflow: hidden;
  background-color: rgb(222, 222, 222);
}
.top-blog-section .contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 50px;
  padding-left: 150px;
}
@media (max-width: 1500px) {
  .top-blog-section .contents-wrapper {
    padding-left: calc((100vw - 1200px) / 2);
  }
}
@media (max-width: 1300px) {
  .top-blog-section .contents-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .top-blog-section .contents-wrapper {
    padding-left: 20px;
  }
}
.top-blog-section .title-wrapper {
  position: relative;
  z-index: 2;
  background-color: rgb(222, 222, 222);
  width: 270px;
}
@media (max-width: 767px) {
  .top-blog-section .title-wrapper {
    display: contents;
  }
}
.top-blog-section .title-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  content: "";
  display: block;
  width: calc((100vw - 1200px) / 2);
  min-width: 50px;
  height: 100%;
  background-color: rgb(222, 222, 222);
}
.top-blog-section .top-link {
  margin-top: 140px;
}
@media (max-width: 767px) {
  .top-blog-section .top-link {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 60px auto 0;
    width: 100%;
  }
}
.top-blog-section .blog-swiper {
  overflow: visible;
  width: calc(100% - 270px - 50px);
}
@media (max-width: 767px) {
  .top-blog-section .blog-swiper {
    width: 100%;
  }
}

.fv-section.mv {
  height: 500px;
  min-height: 100%;
}
@media (max-width: 1023px) {
  .fv-section.mv {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .fv-section.mv {
    height: 300px;
  }
}
.fv-section.mv::after {
  width: 300px;
  height: 120%;
}
.fv-section.mv .contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.fv-section.mv .contents-wrapper::before, .fv-section.mv .contents-wrapper::after {
  display: none;
}
@media (max-width: 767px) {
  .fv-section.mv .top-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .fv-section.mv .top-title .en {
    font-size: 1.4rem;
  }
}
.fv-section.mv .top-title .plus-text {
  margin-top: 10px;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .fv-section.mv .top-title .plus-text {
    font-size: 0.9rem;
  }
}

.products-wrapper:not(:last-child) {
  margin-bottom: 100px;
}

.products-title {
  margin-bottom: 40px;
  background-color: rgb(133, 133, 133);
  color: rgb(255, 255, 255);
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.products-title::before {
  content: "";
  display: block;
  width: 25px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/check-icon.svg");
}
.products-title > span {
  width: calc(100% - 25px - 10px);
}
.products-title .en {
  display: inline-block;
  padding-top: 5px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.9rem;
  margin-right: 10px;
}

.products-detail-wrapper {
  margin-bottom: 30px;
}

.products-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
@media (max-width: 1023px) {
  .products-item-wrapper {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .products-item-wrapper {
    gap: 30px 10px;
  }
}
.products-item-wrapper .item-box {
  width: calc((100% - 100px) / 3);
}
@media (max-width: 1023px) {
  .products-item-wrapper .item-box {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .products-item-wrapper .item-box {
    width: calc((100% - 10px) / 2);
  }
}
.products-item-wrapper .image-box {
  margin-bottom: 10px;
}
.products-item-wrapper .products-name {
  margin-bottom: 5px;
  font-weight: 500;
}
.products-item-wrapper .products-supplement {
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .products-item-wrapper .products-supplement {
    font-size: 0.7rem;
  }
}
.products-item-wrapper .products-data-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px 10px;
  font-family: "Josefin Sans", sans-serif;
}
@media (max-width: 767px) {
  .products-item-wrapper .products-data-wrapper {
    font-size: 0.9rem;
  }
}
.products-item-wrapper .products-data-wrapper .volume::after {
  content: "/";
  margin: 0 5px;
}

.products-banner-wrapper {
  margin-top: 30px;
  max-width: 630px;
}

.fv-section.concept::after {
  height: 1100px;
}
@media (max-width: 767px) {
  .fv-section.concept::after {
    height: 800px;
  }
}

.concept-page-section {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .concept-page-section {
    padding-top: 100px;
  }
}
.concept-page-section .concept-page-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
@media (max-width: 1023px) {
  .concept-page-section .concept-page-wrapper {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .concept-page-section .concept-page-wrapper {
    width: calc(100% - 20px);
  }
}
.concept-page-section .concept-page-wrapper:not(:last-child) {
  margin-bottom: 250px;
}
@media (max-width: 1023px) {
  .concept-page-section .concept-page-wrapper:not(:last-child) {
    margin-bottom: 100px;
  }
}
.concept-page-section .concept-page-wrapper:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-left: 150px;
}
@media (max-width: 1300px) {
  .concept-page-section .concept-page-wrapper:nth-child(odd) {
    padding-left: 50px;
  }
}
@media (max-width: 1023px) {
  .concept-page-section .concept-page-wrapper:nth-child(odd) {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .concept-page-section .concept-page-wrapper:nth-child(odd) {
    padding-left: 20px;
  }
}
@media (max-width: 1023px) {
  .concept-page-section .concept-page-wrapper:nth-child(odd) .text-box {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .concept-page-section .concept-page-wrapper:nth-child(odd) .text-box {
    padding-right: 20px;
  }
}
.concept-page-section .concept-page-wrapper:nth-child(even) {
  padding-right: 150px;
}
@media (max-width: 1500px) {
  .concept-page-section .concept-page-wrapper:nth-child(even) {
    padding-right: calc((100vw - 1200px) / 2);
  }
}
@media (max-width: 1300px) {
  .concept-page-section .concept-page-wrapper:nth-child(even) {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .concept-page-section .concept-page-wrapper:nth-child(even) {
    padding-right: 20px;
  }
}
@media (max-width: 1023px) {
  .concept-page-section .concept-page-wrapper:nth-child(even) .text-box {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .concept-page-section .concept-page-wrapper:nth-child(even) .text-box {
    padding-left: 20px;
  }
}
.concept-page-section .concept-page-wrapper .image-box {
  width: 420px;
}
@media (max-width: 1023px) {
  .concept-page-section .concept-page-wrapper .image-box {
    width: 100%;
  }
}
.concept-page-section .concept-page-wrapper .concept-title {
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .concept-page-section .concept-page-wrapper .concept-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .concept-page-section .concept-page-wrapper .concept-title {
    font-size: 1.2rem;
  }
}
.concept-page-section .concept-page-wrapper .text-box {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: calc(100% - 420px - 50px);
}
@media (max-width: 1023px) {
  .concept-page-section .concept-page-wrapper .text-box {
    width: 100%;
  }
}
.concept-page-section .blue-text {
  color: rgb(76, 106, 213);
}
.concept-page-section .green-text {
  color: rgb(101, 157, 112);
}

.top-salon-section.other {
  position: relative;
}
.top-salon-section.other::before {
  position: absolute;
  top: calc(50% + 110px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: rgb(222, 222, 222);
  z-index: -1;
}
@media (max-width: 767px) {
  .top-salon-section.other::before {
    top: calc(50% + 50px);
  }
}

.concept-company-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px 30px;
}
.concept-company-wrapper .company-box {
  max-width: 475px;
  width: calc((100% - 30px) / 2);
}
@media (max-width: 767px) {
  .concept-company-wrapper .company-box {
    width: 100%;
    margin: auto;
  }
}
.concept-company-wrapper .inner-box {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: dashed 2px rgb(222, 222, 222);
}
.concept-company-wrapper .inner-box:not(:last-child) {
  margin-bottom: 20px;
}
.concept-company-wrapper .inner-box .title {
  font-weight: 500;
  width: 100px;
}
@media (max-width: 767px) {
  .concept-company-wrapper .inner-box .title {
    width: 85px;
  }
}
.concept-company-wrapper .inner-box .contents {
  width: calc(100% - 100px);
}
@media (max-width: 1023px) {
  .concept-company-wrapper .inner-box .contents {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .concept-company-wrapper .inner-box .contents {
    width: calc(100% - 85px);
  }
}

.company-logo {
  margin-top: 50px;
  max-width: 245px;
}
@media (max-width: 767px) {
  .company-logo {
    margin-top: 30px;
  }
}

.fv-section.salon {
  background-color: rgb(133, 133, 133);
}
.fv-section.salon::after {
  display: none;
}

.salon-image-swiper {
  margin-top: 100px;
}
.salon-image-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.top-news-section.salon::before {
  height: 90%;
  top: auto;
  bottom: 0;
  background-image: url("../../images/salon-news-bg.jpg");
  background-position: left;
}
.top-news-section.salon.west::before {
  right: auto;
  left: 0;
}

.staff-style-section.salon .salon-tag-wrapper :not(.ja) {
  display: none;
}

.arspace-page-insta .instagram-wrapper {
  display: block;
}
.arspace-page-insta .west {
  display: none;
}

.west-page-insta .instagram-wrapper {
  display: block;
}
.west-page-insta .arspace {
  display: none;
}

.salon-menu-section {
  position: relative;
}
@media (max-width: 1023px) {
  .salon-menu-section {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .salon-menu-section {
    padding-top: 80px;
  }
}

.menu-bg-image {
  width: 65%;
  position: absolute;
  top: 0;
}
@media (max-width: 1023px) {
  .menu-bg-image {
    width: 85%;
  }
}
.menu-bg-image.left {
  left: 0;
}
.menu-bg-image.right {
  right: 0;
}

.salon-menu-wrapper {
  position: relative;
  z-index: 2;
  padding: 50px 100px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1023px) {
  .salon-menu-wrapper {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .salon-menu-wrapper {
    padding: 50px 20px;
  }
}
.salon-menu-wrapper .menu-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 180px 1fr;
  grid-template-columns: 180px 1fr;
}
@media (max-width: 1023px) {
  .salon-menu-wrapper .menu-wrapper {
    -ms-grid-columns: 165px 1fr;
    grid-template-columns: 165px 1fr;
  }
}
@media (max-width: 1023px) {
  .salon-menu-wrapper .menu-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 30px;
  }
}
.salon-menu-wrapper .menu-wrapper:not(:last-child) {
  padding-bottom: 50px;
  border-bottom: 1px solid rgb(222, 222, 222);
  margin-bottom: 50px;
}
.salon-menu-wrapper .menu-inner:not(:last-child) {
  margin-bottom: 35px;
}
.salon-menu-wrapper .menu-category .en {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .salon-menu-wrapper .menu-category .en {
    font-weight: 700;
  }
}
.salon-menu-wrapper .menu-category .ja {
  color: rgb(133, 133, 133);
}
@media (max-width: 1023px) {
  .salon-menu-wrapper .menu-main-contnets {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .salon-menu-wrapper .menu-main-contnets {
    padding-left: 0;
  }
}
.salon-menu-wrapper .main-menu-text {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 20px;
}
@media (max-width: 767px) {
  .salon-menu-wrapper .main-menu-text {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.salon-menu-wrapper .menu-name {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.salon-menu-wrapper .menu-name::after {
  content: "";
  display: block;
  height: 1px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  border-bottom: 1px dashed;
}
@media (max-width: 767px) {
  .salon-menu-wrapper .menu-name::after {
    display: none;
  }
}
.salon-menu-wrapper .price {
  font-family: "Josefin Sans", sans-serif;
}
@media (max-width: 767px) {
  .salon-menu-wrapper .price {
    margin-left: auto;
  }
}
.salon-menu-wrapper .price.after::after {
  content: "~";
  font-family: "Noto Sans JP", sans-serif;
}
.salon-menu-wrapper .menu-note {
  font-size: 0.9rem;
  color: rgb(133, 133, 133);
  padding-left: 20px;
}
@media (max-width: 767px) {
  .salon-menu-wrapper .menu-note {
    padding-left: 5px;
    font-size: 0.8rem;
  }
}
.salon-menu-wrapper .menu-note p:not(:last-child) {
  margin-bottom: 3px;
}
.salon-menu-wrapper .red-text {
  color: rgb(208, 0, 0);
}
@media (max-width: 767px) {
  .salon-menu-wrapper .red-text {
    font-size: 0.9rem;
  }
}
.salon-menu-wrapper .menu-image {
  width: 100%;
}
@media (max-width: 1150px) {
  .salon-menu-wrapper .menu-image {
    width: 130%;
  }
}
.salon-menu-wrapper .menu-image.left {
  -webkit-transform: translateX(-45%);
          transform: translateX(-45%);
}
@media (max-width: 767px) {
  .salon-menu-wrapper .menu-image.left {
    -webkit-transform: translateX(-23%);
            transform: translateX(-23%);
  }
}
.salon-menu-wrapper .menu-image.right {
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}
@media (max-width: 1150px) {
  .salon-menu-wrapper .menu-image.right {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.salon-menu-section.mini {
  padding-bottom: 10px;
}
.salon-menu-section {
  overflow: hidden;
}
.salon-menu-section.arspace .menu-name::after {
  border-color: rgb(76, 106, 213);
}
.salon-menu-section.arspace .color-text {
  color: rgb(76, 106, 213);
}
.salon-menu-section.arspace .menu-image.left {
  display: none;
}
.salon-menu-section.west .menu-name::after {
  border-color: rgb(5, 65, 17);
}
.salon-menu-section.west .color-text {
  color: rgb(5, 65, 17);
}
.salon-menu-section.west .menu-image.right {
  display: none;
}

.salon-information-section .blue-text {
  color: rgb(45, 61, 120);
}
.salon-information-section .green-text {
  color: rgb(5, 65, 17);
}

.salon-information-wrapper {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
.salon-information-wrapper .google-map {
  width: 55%;
}
@media (max-width: 1023px) {
  .salon-information-wrapper .google-map {
    width: 80%;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .salon-information-wrapper .google-map {
    width: 100%;
  }
}
.salon-information-wrapper .text-box {
  width: calc(45% - 50px);
  padding-right: 150px;
}
@media (max-width: 1500px) {
  .salon-information-wrapper .text-box {
    padding-right: calc((100vw - 1200px) / 2);
  }
}
@media (max-width: 1300px) {
  .salon-information-wrapper .text-box {
    padding-right: 50px;
  }
}
@media (max-width: 1023px) {
  .salon-information-wrapper .text-box {
    width: 80%;
    margin: auto;
    padding-inline: 50px;
  }
}
@media (max-width: 767px) {
  .salon-information-wrapper .text-box {
    width: 100%;
    padding-inline: 20px;
  }
}
.salon-information-wrapper .text-box p:not(:last-child) {
  margin-bottom: 10px;
}
.salon-information-wrapper .comapny-name {
  font-size: 1.4rem;
  font-family: "Josefin Sans", sans-serif;
}
.salon-information-wrapper .access-area {
  padding: 10px;
}
.salon-information-wrapper .access-area.blue {
  background-color: rgb(245, 247, 255);
}
.salon-information-wrapper .small-text {
  font-size: 0.8rem;
}

.salon-data-wrapper .inner-box {
  padding: 0 30px 30px;
  border-bottom: 1px solid rgb(222, 222, 222);
}
@media (max-width: 767px) {
  .salon-data-wrapper .inner-box {
    padding-inline: 0;
  }
}
.salon-data-wrapper .inner-box:not(:last-child) {
  margin-bottom: 30px;
}
.salon-data-wrapper .title {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.salon-data-wrapper .contents {
  font-family: "Josefin Sans", sans-serif;
}

.indoor-view {
  width: 100%;
  height: 500px;
}
@media (max-width: 1023px) {
  .indoor-view {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .indoor-view {
    height: 250px;
  }
}

.page-contnets-wrapper:not(:last-child) {
  margin-bottom: 50px;
}
.page-contnets-wrapper .products-title .ja {
  font-size: 1.9rem;
}
@media (max-width: 767px) {
  .page-contnets-wrapper .products-title .ja {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .page-contnets-wrapper .products-title .en {
    font-size: 1.3rem;
  }
}
.page-contnets-wrapper .inner-box {
  padding: 0 30px;
}
@media (max-width: 1023px) {
  .page-contnets-wrapper .inner-box {
    padding: 0;
  }
}
.page-contnets-wrapper p:not(:last-child):not(.menu-name) {
  margin-bottom: 15px;
}
.page-contnets-wrapper p:not(:last-child):not(.menu-name).first-text {
  margin-bottom: 25px;
}
.page-contnets-wrapper .gray-text {
  color: rgb(133, 133, 133);
}
.page-contnets-wrapper .bg-gray-box {
  padding: 30px;
  background-color: rgb(222, 222, 222);
}
@media (max-width: 767px) {
  .page-contnets-wrapper .bg-gray-box {
    padding: 20px 15px;
  }
}
.page-contnets-wrapper .border-box {
  padding: 30px;
  border: 1px solid rgb(222, 222, 222);
}
@media (max-width: 767px) {
  .page-contnets-wrapper .border-box {
    padding: 30px 10px;
  }
}
.page-contnets-wrapper .border-box:not(:last-child) {
  margin-bottom: 30px;
}
.page-contnets-wrapper .border-box .top-title {
  margin-bottom: 30px;
  font-size: 1.4rem;
}
.page-contnets-wrapper .image-wrapper {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .page-contnets-wrapper .image-wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-contnets-wrapper .tow-column-wrapper {
  display: -ms-grid;
  display: grid;
  gap: 50px;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .page-contnets-wrapper .tow-column-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.page-contnets-wrapper .tow-column-wrapper img {
  margin-bottom: 10px;
}
.page-contnets-wrapper .salon-menu-wrapper {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-top: 1px solid rgb(222, 222, 222);
  padding: 50px 0 0;
}
.page-contnets-wrapper.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
.page-contnets-wrapper.flex .image-box {
  width: 40%;
}
@media (max-width: 767px) {
  .page-contnets-wrapper.flex .image-box {
    width: 100%;
  }
}
.page-contnets-wrapper.flex .text-box {
  width: calc(60% - 30px);
}
@media (max-width: 767px) {
  .page-contnets-wrapper.flex .text-box {
    width: 100%;
  }
}
.page-contnets-wrapper .bold-text {
  font-weight: 500;
}

.flow-wrapper {
  counter-reset: number 0;
}
.flow-wrapper .flow-box {
  counter-increment: number 1;
}
.flow-wrapper .flow-box:not(:last-child) {
  margin-bottom: 40px;
}
.flow-wrapper .flow-box.no-step .step-title::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  content: counter(number, decimal-leading-zero);
}
.flow-wrapper .step-title {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 15px;
  color: rgb(88, 68, 59);
}
.flow-wrapper .step-title::before {
  display: block;
  padding: 10px 15px 5px;
  background-color: rgb(88, 68, 59);
  color: rgb(255, 255, 255);
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.4rem;
  border-radius: 50px;
  text-transform: uppercase;
  content: "step." counter(number, decimal-leading-zero);
}
.flow-wrapper .step-title span {
  font-weight: 500;
}

.news-page-section .contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
.news-page-section .side-box {
  width: 190px;
}
@media (max-width: 1023px) {
  .news-page-section .side-box {
    margin-left: auto;
  }
}
.news-page-section .side-box select {
  display: block;
  width: 100%;
}
.news-page-section .side-box .side-link:not(:last-child) {
  margin-bottom: 40px;
}
.news-page-section .news-main-wrapper {
  width: calc(100% - 190px - 50px);
}
@media (max-width: 1023px) {
  .news-page-section .news-main-wrapper {
    width: 100%;
  }
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
}
.wp-pagenavi > a, .wp-pagenavi > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 40px;
  aspect-ratio: 1/1;
  color: rgb(53, 53, 53);
  border-color: rgb(53, 53, 53);
  font-family: "Josefin Sans", sans-serif;
}
@media (max-width: 767px) {
  .wp-pagenavi > a, .wp-pagenavi > span {
    width: 30px;
  }
}
.wp-pagenavi > a.current, .wp-pagenavi > span.current {
  color: rgb(255, 255, 255);
  background-color: rgb(53, 53, 53);
}
.wp-pagenavi > a span.arrow-button, .wp-pagenavi > span span.arrow-button {
  border: none;
}
.wp-pagenavi a:hover {
  background-color: rgb(53, 53, 53);
  color: rgb(255, 255, 255);
}
.wp-pagenavi a:hover .arrow::before {
  background-image: url("../../images/white-arrow.svg");
}

.arrow-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 40px;
  aspect-ratio: 1/1;
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  border: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.arrow-button::before {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 15/5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/arrow.svg");
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.arrow-button.left::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.news-single-section .title-wrapper {
  margin-bottom: 50px;
  padding: 0 30px 10px;
  border-bottom: 1px solid rgb(222, 222, 222);
}
@media (max-width: 767px) {
  .news-single-section .title-wrapper {
    padding-inline: 0;
    margin-bottom: 30px;
  }
}
.news-single-section .image-box {
  margin: 0 auto 40px;
  max-width: 500px;
}
@media (max-width: 767px) {
  .news-single-section .image-box {
    margin-bottom: 25px;
  }
}
.news-single-section .contents-box {
  padding-inline: 30px;
}
@media (max-width: 767px) {
  .news-single-section .contents-box {
    padding-inline: 0;
  }
}

.single-pager {
  margin-top: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1023px) {
  .single-pager {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .single-pager {
    max-width: 335px;
    margin-inline: auto;
  }
}
.single-pager .pager-box {
  width: 180px;
}
@media (max-width: 767px) {
  .single-pager .pager-box {
    width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 767px) {
  .single-pager .pager-box.list {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.single-pager .pager-box.next a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.single-pager a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(53, 53, 53);
}
.single-pager a:hover .arrow-button {
  background-color: rgb(53, 53, 53);
}
.single-pager a:hover .arrow-button::before {
  background-image: url("../../images/white-arrow.svg");
}
.single-pager .single-summary {
  padding: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgb(53, 53, 53);
  background-color: rgb(255, 255, 255);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  min-width: 180px;
  cursor: pointer;
}
.single-pager .single-summary:hover {
  background-color: rgb(53, 53, 53);
  color: rgb(255, 255, 255);
}
.single-pager .arrow-button {
  border: 1px solid rgb(53, 53, 53);
}

.salon-tag-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
}
.salon-tag-wrapper:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .salon-tag-wrapper:not(:last-child) {
    margin-bottom: 10px;
  }
}

.salon-tag {
  display: inline-block;
  padding: 10px 20px 5px;
  border: 1px solid;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .salon-tag {
    font-size: 0.7rem;
    padding: 10px 10px 5px;
  }
}
.salon-tag.arspace {
  color: rgb(76, 106, 213);
}
.salon-tag.arspace-west {
  color: rgb(101, 157, 112);
}
.salon-tag.salon {
  padding-top: 5px;
  color: rgb(88, 68, 59);
}
.salon-tag.all {
  color: rgb(88, 68, 59);
}
.salon-tag.ja {
  padding-top: 5px;
}

.sharp-tag {
  color: rgb(133, 133, 133);
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .sharp-tag {
    font-size: 0.7rem;
  }
}

@media (max-width: 1023px) {
  .side-box.blog {
    width: 100%;
    display: -ms-grid;
    display: grid;
    gap: 20px;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
  .side-box.blog .side-link:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .side-box.blog {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-single-section.blog .salon-tag-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-single-section.blog .salon-tag-wrapper .news-time {
  padding-top: 5px;
  margin: 0 10px;
}

/*タブ切り替え全体のスタイル*/
.coupon-tabs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px 20px;
}
@media (max-width: 1023px) {
  .coupon-tabs-wrapper {
    gap: 50px 5px;
  }
}

/*タブのスタイル*/
.tab_item {
  display: block;
  padding: 15px;
  width: calc((100% - 40px) / 3);
  border: 1px solid;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1023px) {
  .tab_item {
    width: calc((100% - 10px) / 3);
  }
}
@media (max-width: 767px) {
  .tab_item {
    padding: 10px 5px;
    font-size: 0.9rem;
  }
}
.tab_item.default {
  display: none;
}
.tab_item.all {
  color: rgb(88, 68, 59);
}
.tab_item.all:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(88, 68, 59);
}
.tab_item.new {
  color: rgb(45, 61, 120);
}
.tab_item.new:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(45, 61, 120);
}
.tab_item.repeater {
  color: rgb(5, 65, 17);
}
.tab_item.repeater:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(5, 65, 17);
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#default:checked ~ #default_content,
#all:checked ~ #all_content,
#new:checked ~ #new_content,
#repeater:checked ~ #repeater_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item.all {
  color: rgb(255, 255, 255);
  background-color: rgb(88, 68, 59);
}
.tabs input:checked + .tab_item.new {
  color: rgb(255, 255, 255);
  background-color: rgb(45, 61, 120);
}
.tabs input:checked + .tab_item.repeater {
  color: rgb(255, 255, 255);
  background-color: rgb(5, 65, 17);
}

.coupon-list .coupon-inner:not(:last-child) {
  margin-bottom: 50px;
}
.coupon-list a {
  position: relative;
  padding: 30px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px 50px;
  border: 1px solid;
}
@media (max-width: 1023px) {
  .coupon-list a {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .coupon-list a {
    padding: 30px 20px;
  }
}
.coupon-list a.all {
  color: rgb(88, 68, 59);
}
.coupon-list a.new {
  color: rgb(45, 61, 120);
}
.coupon-list a.repeater {
  color: rgb(5, 65, 17);
}
.coupon-list .title-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 15px;
}
.coupon-list .coupon-target {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  color: rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .coupon-list .coupon-target {
    padding: 5px 20px;
  }
}
.coupon-list .coupon-target.all {
  background-color: rgb(88, 68, 59);
}
.coupon-list .coupon-target.new {
  background-color: rgb(45, 61, 120);
}
.coupon-list .coupon-target.repeater {
  background-color: rgb(5, 65, 17);
}
.coupon-list .coupon-title {
  font-weight: 500;
}
@media (max-width: 767px) {
  .coupon-list .coupon-title {
    width: 100%;
  }
}
.coupon-list .text-box {
  width: calc(100% - 50px - 220px);
}
@media (max-width: 1023px) {
  .coupon-list .text-box {
    width: 100%;
  }
}
.coupon-list .price-box {
  margin-bottom: 15px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}
@media (max-width: 767px) {
  .coupon-list .price-box {
    font-size: 1.7rem;
    gap: 10px;
  }
}
.coupon-list .price-box .number:first-child span {
  vertical-align: middle;
}
.coupon-list .price-box .number:first-child::after {
  content: "";
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  margin-left: 20px;
  aspect-ratio: 15/5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/arrow.svg");
}
@media (max-width: 767px) {
  .coupon-list .price-box .number:first-child::after {
    width: 15px;
    margin-left: 10px;
  }
}
.coupon-list .detail-wrapper {
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: rgb(53, 53, 53);
}
.coupon-list .conditions-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px 100px;
}
@media (max-width: 1100px) {
  .coupon-list .conditions-wrapper {
    gap: 5px 30px;
  }
}
.coupon-list .conditions-wrapper .conditions-inner span {
  color: rgb(53, 53, 53);
}
.coupon-list .image-box {
  max-width: 220px;
}
@media (max-width: 1023px) {
  .coupon-list .image-box {
    margin: auto;
  }
}

.check-link {
  position: relative;
}
.check-link::before {
  position: absolute;
  right: 10px;
  bottom: 10px;
  content: "check!!";
  text-transform: uppercase;
  font-family: "Josefin Sans", sans-serif;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  pointer-events: none;
}
@media (max-width: 767px) {
  .check-link::before {
    display: none;
  }
}
.check-link:hover::before {
  -webkit-animation: poyoyon2 1s ease-in-out forwards;
          animation: poyoyon2 1s ease-in-out forwards;
}

@-webkit-keyframes poyoyon2 {
  0% {
    -webkit-transform: scale(1, 1) translate(0, 0);
            transform: scale(1, 1) translate(0, 0);
  }
  15% {
    -webkit-transform: scale(0.98, 0.9) translate(0, 5px);
            transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    -webkit-transform: scale(1.02, 1) translate(0, 8px);
            transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    -webkit-transform: scale(0.98, 1.05) translate(0, -8px);
            transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    -webkit-transform: scale(1, 0.9) translate(0, 5px);
            transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0, 0);
            transform: scale(1, 1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}

@keyframes poyoyon2 {
  0% {
    -webkit-transform: scale(1, 1) translate(0, 0);
            transform: scale(1, 1) translate(0, 0);
  }
  15% {
    -webkit-transform: scale(0.98, 0.9) translate(0, 5px);
            transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    -webkit-transform: scale(1.02, 1) translate(0, 8px);
            transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    -webkit-transform: scale(0.98, 1.05) translate(0, -8px);
            transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    -webkit-transform: scale(1, 0.9) translate(0, 5px);
            transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0, 0);
            transform: scale(1, 1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}
.coupon-single-section .coupon-inner {
  pointer-events: none;
}
.coupon-single-section .coupon-inner .text-box {
  width: 100%;
}
.coupon-single-section .coupon-inner .image-box {
  max-width: 270px;
  margin: auto;
}

.staff-page-section {
  background-color: rgb(222, 222, 222);
}
.staff-page-section .salon-tag-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 30px;
  margin-top: 50px;
}
.staff-page-section .top-link {
  width: 100%;
  margin: 0;
}

.staff-single-wrapper {
  padding: 50px 80px;
  background-color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
@media (max-width: 1100px) {
  .staff-single-wrapper {
    gap: 30px;
    padding: 50px 35px;
  }
}
@media (max-width: 767px) {
  .staff-single-wrapper {
    padding: 30px 20px;
  }
}
.staff-single-wrapper .image-box {
  width: 40%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 1023px) {
  .staff-single-wrapper .image-box {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .staff-single-wrapper .image-box {
    width: 100%;
  }
}
.staff-single-wrapper .text-box {
  width: calc(60% - 50px);
}
@media (max-width: 1100px) {
  .staff-single-wrapper .text-box {
    width: calc(60% - 30px);
  }
}
@media (max-width: 1023px) {
  .staff-single-wrapper .text-box {
    width: 100%;
  }
}
.staff-single-wrapper .name-en,
.staff-single-wrapper .position {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
}
.staff-single-wrapper .top-title {
  margin-top: 10px;
}
@media (max-width: 1100px) {
  .staff-single-wrapper .top-title {
    margin-bottom: 30px;
  }
}
.staff-single-wrapper .top-title .ja {
  font-size: 1.9rem;
}
.staff-single-wrapper .top-title .name-en::before {
  margin: 0 5px;
  content: "/";
}
.staff-single-wrapper .message-box {
  margin-bottom: 50px;
}
@media (max-width: 1100px) {
  .staff-single-wrapper .message-box {
    margin-bottom: 30px;
  }
}
.staff-single-wrapper .staff-detail-wrapper {
  border-top: 1px solid rgb(222, 222, 222);
}
.staff-single-wrapper .staff-detail-wrapper.salon .title {
  color: rgb(88, 68, 59);
}
.staff-single-wrapper .staff-detail-wrapper.arspace .title {
  color: rgb(45, 61, 120);
}
.staff-single-wrapper .staff-detail-wrapper.arspace-west .title {
  color: rgb(5, 65, 17);
}
.staff-single-wrapper .staff-detail-wrapper .inner-box {
  padding: 20px 10px;
  border-bottom: 1px solid rgb(222, 222, 222);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
.staff-single-wrapper .staff-detail-wrapper .inner-box .title {
  width: 120px;
}
.staff-single-wrapper .staff-detail-wrapper .inner-box .contents {
  width: calc(100% - 120px - 20px);
}

.gallery-list {
  gap: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .gallery-list {
    gap: 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery-list img {
  height: auto;
  aspect-ratio: 30/35;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-list li {
  overflow: hidden;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  opacity: 1;
  height: auto;
  display: none;
}

.staff-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px 100px;
}
@media (max-width: 1100px) {
  .staff-list {
    gap: 50px 30px;
  }
}
@media (max-width: 767px) {
  .staff-list {
    gap: 30px 10px;
  }
}
.staff-list li {
  width: calc((100% - 200px) / 3);
}
@media (max-width: 1100px) {
  .staff-list li {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 1023px) {
  .staff-list li {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .staff-list li {
    width: calc((100% - 10px) / 2);
  }
}
.staff-list a:hover .image-box::after {
  opacity: 0;
}
.staff-list .image-box {
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .staff-list .image-box {
    margin-bottom: 10px;
  }
}
.staff-list .image-box::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgb(217, 217, 217);
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.staff-list .image-box img {
  height: auto;
  aspect-ratio: 33/25;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  mix-blend-mode: Luminosity;
}
@media (max-width: 767px) {
  .staff-list .salon-tag-wrapper .salon-tag {
    padding: 10px 5px 5px;
  }
}
.staff-list .text-box {
  color: rgb(53, 53, 53);
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .staff-list .position {
    font-size: 0.8rem;
  }
}
.staff-list .name {
  margin-top: 4px;
}
.staff-list .name .ja {
  font-family: "Noto Sans JP", sans-serif;
}
.staff-list .name .name-en {
  display: inline-block;
}
@media (max-width: 767px) {
  .staff-list .name .name-en {
    font-size: 0.8rem;
    display: block;
  }
}
.staff-list .name .name-en::before {
  content: "/";
  margin: 0 5px;
}

.style-category-wrapper {
  margin-bottom: 50px;
}
.style-category-wrapper .inner-box:not(:last-child) {
  margin-bottom: 40px;
}
.style-category-wrapper .top-title {
  margin-bottom: 20px;
}
.style-category-wrapper .salon-tag-wrapper {
  gap: 10px;
}
.style-category-wrapper .salon-tag-wrapper .sharp-tag {
  color: rgb(53, 53, 53);
}
.style-category-wrapper .salon-tag-wrapper .sharp-tag.active, .style-category-wrapper .salon-tag-wrapper .sharp-tag:hover {
  color: rgb(133, 133, 133);
}
.style-category-wrapper .salon-tag.shop.salon {
  display: none;
}
.style-category-wrapper .salon-tag.all.active, .style-category-wrapper .salon-tag.all:hover, .style-category-wrapper .salon-tag.salon.active, .style-category-wrapper .salon-tag.salon:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(88, 68, 59);
}
.style-category-wrapper .salon-tag.arspace.active, .style-category-wrapper .salon-tag.arspace:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(76, 106, 213);
}
.style-category-wrapper .salon-tag.arspace-west.active, .style-category-wrapper .salon-tag.arspace-west:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(101, 157, 112);
}

.style-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
@media (max-width: 1023px) {
  .style-list {
    gap: 50px 30px;
  }
}
@media (max-width: 767px) {
  .style-list {
    gap: 30px 10px;
  }
}
.style-list li {
  width: calc((100% - 100px) / 3);
}
@media (max-width: 1023px) {
  .style-list li {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .style-list li {
    width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 767px) {
  .style-list .salon-tag {
    padding-inline: 5px;
  }
}
.style-list .image-box {
  margin-bottom: 20px;
}
.style-list .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  aspect-ratio: 30/35;
}
/*# sourceMappingURL=main.css.map */