@charset "UTF-8";
/* ================================
Reset
================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  word-break: break-all;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

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

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-wrap: break-word;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ================================
Base
================================ */
html {
  font-size: clamp(12px, 1.2vw, 15px);
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 3vw;
    height: 5.3rem;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.6;
  color: #292929;
}

* img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ================================
Container
================================ */
/* root container */
.l-wrapper {
  overflow-x: clip;
}

/* main container */
.l-content-container {
  position: relative;
  background-color: #FFF6EB;
  margin: 4rem 0 0;
}
@media screen and (max-width: 768px) {
  .l-content-container {
    margin: 5.3rem 0 0;
  }
}

/* container */
.l-container {
  width: 100%;
  padding-left: 14.1vw;
  padding-right: 14.1vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 920px) {
  .l-container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .l-container.-wide_only_mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ================================
Header
================================ */
.l-header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  border: 1px solid #292929;
  background-color: rgba(255, 246, 235, 0.7);
  backdrop-filter: blur(5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l-header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0 0 0 4rem;
}
.l-header__logo {
  width: 8.9rem;
  aspect-ratio: 568/104;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 auto 0 0;
  mix-blend-mode: multiply;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-header__logo:hover {
  opacity: 0.7;
}
.l-header__btn.c-arrow-link {
  width: 17.1rem;
  height: 100%;
  font-size: 1.2rem;
  border-right: 1px solid #292929;
}
.l-header__btn.c-arrow-link::before {
  content: none;
}
.l-header__btn.c-arrow-link::after {
  content: "↗︎";
}
.l-header__btn.c-arrow-link.-store {
  border-left: 1px solid #292929;
}
.l-header__toggle {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1000;
  width: 8rem;
  height: 100%;
  cursor: pointer;
}
.l-header__toggle span {
  position: absolute;
  left: 3rem;
  display: inline-block;
  width: 2.2rem;
  height: 2px;
  background-color: #292929;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l-header__toggle span:nth-of-type(1) {
  top: 1.5rem;
}
.l-header__toggle span:nth-of-type(2) {
  top: 2rem;
}
.l-header__toggle span:nth-of-type(3) {
  bottom: 1.3rem;
}
.l-header__toggle.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(0.4rem) rotate(30deg);
          transform: translateY(0.4rem) rotate(30deg);
}
.l-header__toggle.is-active span:nth-of-type(2) {
  opacity: 0;
}
.l-header__toggle.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-0.5rem) rotate(-30deg);
          transform: translateY(-0.5rem) rotate(-30deg);
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 5.3rem;
  }
  .l-header__inner {
    padding: 0 0 0 2rem;
  }
  .l-header__logo {
    width: 7.8rem;
  }
  .l-header__btn {
    display: none !important;
  }
  .l-header__toggle {
    width: 5.3rem;
    border-left: 1px solid #292929;
  }
  .l-header__toggle span {
    left: 1.7rem;
    width: 2.2rem;
    height: 1px;
  }
  .l-header__toggle span:nth-of-type(1) {
    top: 2.1rem;
  }
  .l-header__toggle span:nth-of-type(2) {
    top: 2.6rem;
  }
  .l-header__toggle span:nth-of-type(3) {
    bottom: 2rem;
  }
}

.l-header-drawer {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 500;
  top: 4rem;
  right: 0;
  width: 100%;
  height: calc(100dvh - 4rem);
  background-color: #FFF6EB;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l-header-drawer.is-active {
  visibility: visible;
  opacity: 1;
}
.l-header-drawer__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem 9.4vw;
  padding: 6.7rem 14.1vw;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.l-header-drawer__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-header-drawer__main-menu {
  margin: 0 0 3.2rem;
}
.l-header-drawer__main-menu-item {
  position: relative;
  font-size: 1.2rem;
  font-weight: 400;
  border-bottom: 1px solid #292929;
}
.l-header-drawer__main-menu-item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0.3rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-header-drawer__main-menu-item a::after {
  content: "↗︎";
}
.l-header-drawer__main-menu-item a:hover {
  opacity: 0.7;
}
.l-header-drawer__main-menu-item:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.l-header-drawer__main-menu-item.menu-item-blank > a {
  pointer-events: none;
}
.l-header-drawer__main-menu-item.menu-item-inactive {
  opacity: 0.7;
  pointer-events: none;
}
.l-header-drawer__sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 0.5rem;
}
.l-header-drawer__sub-menu-item {
  width: calc(50% - 0.3rem);
  font-size: 1.2rem;
  font-weight: 400;
  border: 1px solid #292929;
}
.l-header-drawer__sub-menu-item a {
  width: 100%;
  height: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.9rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-header-drawer__sub-menu-item a:hover {
  opacity: 0.7;
}
.l-header-drawer__sub-menu-item.-wide {
  width: 100% !important;
}
.l-header-drawer__sub-menu-item.-wide a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.l-header-drawer__sub-menu-item.menu-item-blank a {
  pointer-events: none;
}
.l-header-drawer__sub-menu-item.menu-item-inactive {
  opacity: 0.7;
  pointer-events: none;
}
.l-header-drawer__sub {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-header-drawer__reserve-heading {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0 0 0.3rem;
  margin: 0 0 1.3rem;
  border-bottom: 1px solid #292929;
}
.l-header-drawer__reserve-btn {
  display: none;
}
@media screen and (max-width: 920px) {
  .l-header-drawer__inner {
    padding: 6.7rem 6vw;
  }
}
@media screen and (max-width: 768px) {
  .l-header-drawer {
    top: 5.3rem;
    height: calc(100dvh - 5.3rem);
  }
  .l-header-drawer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.7rem 6vw;
  }
  .l-header-drawer__main-menu {
    margin: 0 0 2.7rem;
  }
  .l-header-drawer__main-menu-item {
    font-size: 1.3rem;
    border-bottom: none;
  }
  .l-header-drawer__main-menu-item a::after {
    content: none;
  }
  .l-header-drawer__main-menu-item:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  .l-header-drawer__sub-menu {
    gap: 0.5rem 0.5rem;
  }
  .l-header-drawer__sub-menu-item {
    width: calc(50% - 0.3rem);
    font-size: 1.1rem;
  }
  .l-header-drawer__sub-menu-item a {
    height: 4rem;
  }
  .l-header-drawer__reserve-heading {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 2rem;
    font-size: 1rem;
    padding: 0 6vw 1rem;
  }
  .l-header-drawer__reserve-btn {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    background-color: #c6a37c;
    padding: 1rem;
    margin: 0 0 2rem;
  }
}

/* ================================
Footer
================================ */
.l-footer {
  color: #fff;
  background-color: #5d5d5d;
  padding: 4.7rem 0 0.7rem;
}
.l-footer__body {
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.3rem 3.3rem;
  grid-template-areas: "salon nav" "sns nav" "copyright copyright";
}
.l-footer__copyright {
  grid-area: copyright;
  display: block;
  font-size: 0.6rem;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 2.7rem 0 5.5rem;
  }
  .l-footer__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    gap: 4.3rem 0;
  }
  .l-footer__copyright {
    -ms-flex-item-align: center;
        align-self: center;
    font-size: 0.8rem;
  }
}

.l-footer-salon {
  grid-area: salon;
}
.l-footer-salon__logo {
  width: 15.9rem;
  aspect-ratio: 237/47;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-footer-salon__logo:hover {
  opacity: 0.7;
}
.l-footer-salon__catch {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.3rem 0 0;
}
@media screen and (max-width: 768px) {
  .l-footer-salon {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .l-footer-salon__logo {
    width: 9.7rem;
  }
  .l-footer-salon__catch {
    display: none;
  }
}

.l-footer-nav {
  grid-area: nav;
}
.l-footer-nav__menu-item {
  font-size: 0.9rem;
}
.l-footer-nav__menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-footer-nav__menu-item a::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 24/12;
  background: url(../img/cmn/arrow_right_wh.svg) no-repeat center center/contain;
}
.l-footer-nav__menu-item a:hover {
  opacity: 0.7;
}
.l-footer-nav__menu-item:not(:last-of-type) {
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 768px) {
  .l-footer-nav__menu-item {
    font-size: 1.1rem;
  }
  .l-footer-nav__menu-item a::after {
    content: none;
  }
  .l-footer-nav__menu-item:not(:last-of-type) {
    margin-bottom: 0.5rem;
  }
}

.l-footer-sns {
  grid-area: sns;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em 1em;
}
.l-footer-sns__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.l-footer-sns__item:hover {
  opacity: 0.7;
}
.l-footer-sns__item-ico {
  width: 2.2rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer-sns__item-title {
  font-size: 0.9rem;
  margin: 0 0 0 1em;
}
@media screen and (max-width: 768px) {
  .l-footer-sns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .l-footer-sns__item-ico {
    width: 2.8rem;
  }
  .l-footer-sns__item-title {
    display: none;
  }
}

/* ================================
Common module
================================ */
/* heading */
.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.3rem 1rem;
}
.c-heading__sub-title {
  display: block;
  min-height: 5.3rem;
  font-family: "Aboreto", system-ui;
  font-size: 4.7rem;
  line-height: 1;
  font-weight: 400;
}
.c-heading__main-title {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-weight: 400;
}
.c-heading__main-title::before {
  content: "（";
}
.c-heading__main-title::after {
  content: "）";
}
.c-heading.-sm {
  gap: 0.7rem 1rem;
}
.c-heading.-sm .c-heading__sub-title {
  font-size: 3.2rem;
}
.c-heading.-sm .c-heading__main-title {
  font-size: 0.8rem;
}
@media screen and (max-width: 768px) {
  .c-heading {
    -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: last baseline;
        -ms-flex-align: last baseline;
            align-items: last baseline;
  }
  .c-heading__sub-title {
    min-height: initial;
    font-size: 4rem;
  }
}

.c-box-heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  border: 1px solid #292929;
  padding: 0.5rem 1.7rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-box-heading {
    font-size: 1.1rem;
  }
}

/*sentence*/
.c-sentence {
  line-height: 2.2;
}
.c-sentence + .c-sentence {
  margin-top: 2em;
}
.c-sentence + .c-dot-list {
  margin-top: 1.3rem;
}
.c-sentence + .c-btn__wrap {
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .c-sentence + .c-dot-list {
    margin-top: 1.7rem;
  }
  .c-sentence + .c-btn__wrap {
    margin-top: 1.7rem;
  }
}
.c-sentence.-center_only_desktop {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-sentence.-center_only_desktop {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .c-sentence.-lg_only_mobile {
    font-size: 1.1rem;
  }
}

.c-arrow-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-arrow-link::before {
  content: "（";
}
.c-arrow-link::after {
  content: "）↗︎";
}
.c-arrow-link:hover {
  opacity: 0.7;
}

.c-text-chunk {
  display: inline-block;
}

/* button */
.c-btn {
  min-width: 20rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border: 1px solid currentColor;
  padding: 0.7rem 2.1rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c-btn:hover {
  color: #fff;
  background-color: #292929;
}

.c-arrow-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid currentColor;
  padding: 0.7rem 2.1rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c-arrow-btn::after {
  content: "↗︎";
}
.c-arrow-btn:hover {
  color: #fff;
  background-color: #292929;
}

.c-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
}
.c-btn__wrap + .c-sentence {
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap {
    gap: 0.5rem 0.5rem;
  }
}
.c-btn__wrap.-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.c-btn__wrap.-right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.c-btn__wrap.-vertical_only_desktop {
  -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 screen and (max-width: 768px) {
  .c-btn__wrap.-vertical_only_desktop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-btn__wrap.-right_only_desktop {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-right_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-btn__wrap.-left_only_desktop {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-left_only_desktop {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .c-btn__wrap.-left_only_mobile {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

/* list */
.c-dot-list li {
  position: relative;
  padding: 0 0 0 1em;
}
.c-dot-list li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  width: 0.5em;
  aspect-ratio: 1/1;
  background-color: currentColor;
  border-radius: 50%;
}
.c-dot-list li:not(:last-child) {
  margin-bottom: 0.5em;
}

/* pager */
.c-pager__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem 0.3rem;
}
.c-pager__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2rem;
  height: 2rem;
  font-family: "Aboreto", system-ui;
  font-size: 0.7rem;
  border: 1px solid #292929;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c-pager__item.current {
  color: #fff;
  background-color: #292929;
}
.c-pager__item.prev, .c-pager__item.next {
  width: 4.7rem;
  font-size: 0.7rem;
}
.c-pager__item:hover {
  color: #fff;
  background-color: #292929;
}
.c-pager .screen-reader-text {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-pager__item {
    width: 3.3rem;
    height: 3.3rem;
    font-size: 1.3rem;
  }
  .c-pager__item.prev, .c-pager__item.next {
    width: 5rem;
    font-size: 1rem;
  }
}

/* accordion */
.c-accordion__item {
  cursor: pointer;
  overflow: hidden;
}
.c-accordion__item.is-open .c-accordion__header::after {
  content: "－";
}
.c-accordion__item.is-open .c-accordion__content {
  visibility: visible;
  opacity: 1;
  height: auto;
  padding: 1.3rem 4rem 0;
}
.c-accordion__item:not(:last-of-type) {
  margin-bottom: 2.3rem;
}
.c-accordion__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  gap: 0 1rem;
  padding: 0.7rem 2.7rem 0.7rem 4rem;
  border-bottom: 1px solid #292929;
}
.c-accordion__header::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "＋";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.c-accordion__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
}
.c-accordion__content {
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0 4rem;
  -webkit-transition: opacity 0.2s ease-out, height 0.2s ease-out, padding 0.2s ease-out;
  transition: opacity 0.2s ease-out, height 0.2s ease-out, padding 0.2s ease-out;
}
.c-accordion__content p {
  line-height: 2;
}
.c-accordion__content p a {
  text-decoration: underline;
}
.c-accordion__content p img {
  display: block;
  margin: 2em auto 0;
}
.c-accordion__content p + p {
  margin-top: 2em;
}
.c-accordion__content p:first-child img {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-accordion__item.is-open .c-accordion__content {
    padding: 1rem 6vw;
  }
  .c-accordion__item:not(:last-of-type) {
    margin-bottom: 1.7rem;
  }
  .c-accordion__header {
    padding: 0.5rem 6vw;
  }
  .c-accordion__title {
    font-size: 1.3rem;
  }
  .c-accordion__content {
    padding: 0 6vw;
  }
}

/* media object */
.c-media-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.7rem 6.6vw;
}
.c-media-object__content {
  width: calc(50% - 3.3vw);
}
.c-media-object__header {
  position: relative;
  padding: 0 0 0.7rem;
  margin: 0 0 1.3rem;
}
.c-media-object__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -14.1vw;
  display: block;
  width: calc(100% + 14.1vw);
  height: 1px;
  background-color: #292929;
}
.c-media-object__num {
  display: inline-block;
  font-family: "Aboreto", system-ui;
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 0.3rem;
}
.c-media-object__title {
  font-size: 1.5rem;
  font-weight: 400;
}
.c-media-object__img {
  width: calc(50% - 3.3vw);
  margin: 4rem 0 0;
}
.c-media-object__img.-wide {
  width: calc(50% - 3.3vw + 14.1vw);
  margin: 4rem -14.1vw 0 0;
}
.c-media-object + .c-media-object {
  margin-top: 10.7rem;
}
.c-media-object.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-media-object.-reverse .c-media-object__header::after {
  left: 0;
}
.c-media-object.-reverse .c-media-object__img.-wide {
  margin: 4rem 0 0 -14.1vw;
}
@media screen and (max-width: 920px) {
  .c-media-object__img.-wide {
    width: calc(50% - 3.3vw + 6vw);
    margin: 4rem -6vw 0 0;
  }
  .c-media-object.-reverse .c-media-object__img.-wide {
    margin: 4rem 0 0 -6vw;
  }
}
@media screen and (max-width: 768px) {
  .c-media-object {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-media-object__content {
    width: 100%;
  }
  .c-media-object__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: last baseline;
        -ms-flex-align: last baseline;
            align-items: last baseline;
    margin: 0 0 2.7rem;
  }
  .c-media-object__header::after {
    left: -6vw;
    width: 100vw;
  }
  .c-media-object__num {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 3.3rem;
    margin: 0 0 0 1rem;
  }
  .c-media-object__title {
    font-size: 1.8rem;
  }
  .c-media-object__img {
    width: 100%;
    margin: 0 auto;
  }
  .c-media-object__img.-wide {
    width: 100%;
    margin: 0 auto;
  }
  .c-media-object.-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-media-object.-reverse .c-media-object__header::after {
    left: -6vw;
  }
  .c-media-object.-reverse .c-media-object__img.-wide {
    width: 100%;
    margin: 0 auto;
  }
  .c-media-object + .c-media-object {
    margin-top: 2.7rem;
  }
}

/* before after */
.c-before-after__field-wrap + .c-before-after__img-wrap {
  margin-top: 1rem;
}
.c-before-after__field {
  font-size: 1.1rem;
  font-weight: 400;
}
.c-before-after__img {
  aspect-ratio: 460/300;
}
.c-before-after__footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.7rem;
  margin: 0.3rem 0 0;
}
.c-before-after__footer::before, .c-before-after__footer::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 5px;
  aspect-ratio: 1/1;
  border: 1px solid #292929;
  border-width: 0 0 1px 1px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c-before-after__footer::before {
  left: 0;
}
.c-before-after__footer::after {
  right: 0;
  border-width: 1px 1px 0 0;
}
.c-before-after__caption {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.7rem;
}
.c-before-after__caption .-before {
  width: 3.2em;
  text-align: right;
}
.c-before-after__caption .-after {
  width: 3.2em;
}
.c-before-after__caption::before, .c-before-after__caption::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #292929;
}
@media screen and (max-width: 768px) {
  .c-before-after__field-wrap + .c-before-after__img-wrap {
    margin-top: 1.7rem;
  }
  .c-before-after__field {
    font-size: 1rem;
  }
  .c-before-after__caption {
    font-size: 1.3rem;
  }
}

/* trouble list */
.c-trouble-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0.7rem;
}
.c-trouble-list__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  background-color: rgba(215, 197, 177, 0.4);
  padding: 1em 2em 1em 1em;
  border-radius: 9999px;
}
.c-trouble-list__item::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
}
.c-trouble-list__item.js-tabToggle {
  cursor: pointer;
}
.c-trouble-list__item.is-active {
  background-color: rgb(215, 197, 177);
}
.c-trouble-list__item.-or {
  background-color: #E4BF99;
}
.c-trouble-list__item.-gr {
  background-color: #E3D2C0;
}
.c-trouble-list__item.-be {
  background-color: #FFF6EB;
}
.c-trouble-list__item.-be::before {
  background-color: #e3d2c0;
}
.c-trouble-list + .c-trouble-list {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .c-trouble-list {
    gap: 1.1rem 0.7rem;
  }
  .c-trouble-list__item {
    gap: 0 0.5em;
    font-size: 1.1rem;
    padding: 0.75em 1.5em 0.75em 1em;
  }
  .c-trouble-list + .c-trouble-list {
    margin-top: 1.1rem;
  }
}

/* media card */
.c-media-card {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-media-card__date {
  display: block;
  font-size: 0.9rem;
  margin: 0 0 1.3rem;
}
.c-media-card__thumb {
  width: 100%;
  aspect-ratio: 257/224;
  padding: 0 0 2.3rem;
  margin: 0 0 1.3rem;
  border-bottom: 1px solid #292929;
}
.c-media-card__thumb img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-media-card__title {
  font-weight: 400;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.c-media-card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-media-card {
    display: grid;
    grid-template-areas: "thumb title" "thumb date";
    grid-template-columns: 10rem 1fr;
    gap: 1rem 2.5rem;
    padding: 2rem;
    border-bottom: 1px solid #292929;
  }
  .c-media-card__date {
    grid-area: date;
    align-self: end;
    font-size: 0.9rem;
    margin: 0;
  }
  .c-media-card__thumb {
    grid-area: thumb;
    aspect-ratio: 118/161;
    background-color: #fff;
    padding: 0;
    border-bottom: none;
    margin: 0;
  }
  .c-media-card__title {
    grid-area: title;
    align-self: center;
    font-size: 1.1rem;
  }
}

.c-media-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.7rem 4.7rem;
}
.c-media-card__wrap .c-media-card {
  width: calc((100% - 9.4rem) / 3);
}
@media screen and (max-width: 768px) {
  .c-media-card__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .c-media-card__wrap .c-media-card {
    width: 100%;
  }
}

/* salon card */
.c-salon-card {
  border: 1px solid #292929;
}
.c-salon-card__header {
  width: 100%;
  padding: 1.3rem 2rem 0.7rem;
  border-bottom: 1px solid #292929;
}
.c-salon-card__title {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.3rem;
}
.c-salon-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem 0.3rem;
}
.c-salon-card__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5em;
  font-size: 0.7rem;
  line-height: 1;
  background-color: #e3d2c0;
  padding: 0.5em 1em 0.5em 0.75em;
  border-radius: 9999px;
}
.c-salon-card__tag::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
}
.c-salon-card__more-btn {
  font-size: 0.7rem;
}
.c-salon-card__thumb {
  width: 100%;
  aspect-ratio: 3/2;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-salon-card__thumb:hover + .c-salon-card__reserve-btn {
  color: #fff;
  background-color: #292929;
}
.c-salon-card__reserve-btn {
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  padding: 1.2rem;
  border-top: 1px solid #292929;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c-salon-card__reserve-btn:hover {
  color: #fff;
  background-color: #292929;
}
@media screen and (max-width: 768px) {
  .c-salon-card {
    border-width: 1px 0 1px 0;
  }
  .c-salon-card__header {
    padding: 1.7rem 6vw 0.5rem;
  }
  .c-salon-card__title {
    font-size: 1.8rem;
  }
  .c-salon-card__tag {
    font-size: 0.8rem;
  }
  .c-salon-card__more-btn {
    font-size: 0.8rem;
  }
  .c-salon-card__reserve-btn {
    font-size: 1.8rem;
  }
  .c-salon-card + .c-salon-card {
    border-width: 0 0 1px 0;
  }
}

.c-salon-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.3rem 6rem;
}
.c-salon-card__wrap .c-salon-card {
  width: calc(50% - 3rem);
}
@media screen and (max-width: 768px) {
  .c-salon-card__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .c-salon-card__wrap .c-salon-card {
    width: 100%;
  }
}

/* blog card */
.c-blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-blog-card__date {
  display: block;
  font-size: 0.9rem;
  padding: 0 0.7rem;
  margin: 0.7rem 0 0;
}
.c-blog-card__thumb {
  width: 100%;
  aspect-ratio: 3/2;
  padding: 0.3rem;
  margin: 0 0 0.7rem;
  border: 1px solid #292929;
}
.c-blog-card__thumb img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-blog-card__title-wrap {
  border-bottom: 1px solid #292929;
  padding: 0 0.7rem 0.7rem 0.7rem;
}
.c-blog-card__title {
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.c-blog-card__category {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Aboreto", system-ui;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1;
  border-radius: 9999px;
  background-color: #d7c5b1;
  padding: 0.5em 1em;
  margin: 0 0 0.7rem;
}
.c-blog-card:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-blog-card {
    display: grid;
    grid-template-areas: "thumb date" "thumb title-wrap" "thumb category";
    grid-template-columns: 12.5rem 1fr;
    gap: 0.3rem 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid #292929;
  }
  .c-blog-card__date {
    grid-area: date;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
  }
  .c-blog-card__title-wrap {
    grid-area: title-wrap;
    padding: 0;
    margin: 0;
    border-bottom: none;
  }
  .c-blog-card__title {
    font-size: 1.3rem;
  }
  .c-blog-card__category {
    grid-area: category;
    align-self: end;
    font-size: 0.9rem;
  }
  .c-blog-card__thumb {
    grid-area: thumb;
    padding: 0;
    border: none;
  }
}

.c-blog-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem 4.7rem;
}
.c-blog-card__wrap .c-blog-card {
  width: calc((100% - 9.4rem) / 3);
}
@media screen and (max-width: 768px) {
  .c-blog-card__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .c-blog-card__wrap .c-blog-card {
    width: 100%;
  }
}

/* panel */
.c-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-panel__item {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-panel__item.-col3 {
  width: 33.3333333333%;
}
.c-panel__item.-flex {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-panel__item.-pr0 {
  width: calc(50% + 14.1vw);
  margin: 0 -14.1vw 0 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.c-panel__item.-pl0 {
  width: calc(50% + 14.1vw);
  margin: 0 0 0 -14.1vw;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.c-panel__item.-self_start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.c-panel__item.-items_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px) {
  .c-panel__item.-pr0_only_desktop {
    width: calc(50% + 14.1vw);
    margin: 0 -14.1vw 0 0;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .c-panel__item.-pr25_only_desktop {
    padding-right: 1.7rem;
  }
  .c-panel__item.-pr45_only_desktop {
    padding-right: 3rem;
  }
  .c-panel__item.-pl25_only_desktop {
    padding-left: 1.7rem;
  }
  .c-panel__item.-pl45_only_desktop {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 920px) {
  .c-panel__item.-pr0 {
    width: calc(50% + 6vw);
    margin: 0 -6vw 0 0;
  }
  .c-panel__item.-pl0 {
    width: calc(50% + 6vw);
    margin: 0 0 0 -6vw;
  }
}
@media screen and (max-width: 768px) {
  .c-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4.2rem 0;
  }
  .c-panel__item {
    width: 100%;
  }
  .c-panel__item.-pr0 {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .c-panel__item.-pl0 {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

/* news list */
.c-news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.c-news-list__item::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 1.7rem;
  aspect-ratio: 26/11;
  background: url(../img/cmn/arrow_right.svg) no-repeat center center/contain;
  margin: 0 0 0 auto;
}
.c-news-list__item:hover {
  opacity: 0.7;
}
.c-news-list__item:not(:last-of-type) {
  margin-bottom: 1.3rem;
}
.c-news-list__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 400;
}
.c-news-list__title {
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-news-list__item::after {
    width: 2.2rem;
  }
}

/* MW WP Form */
.mwform-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.7rem 0;
}
.mwform-item__col--label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mwform-item__col--controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mwform-item__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5em;
  font-weight: 400;
}
.mwform-item__label::after {
  content: "任意";
  display: inline-block;
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  border-radius: 9999px;
  background-color: #5d5d5d;
  padding: 0.5em 1em;
}
.mwform-item__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.7rem 0.7rem;
}
.mwform-item__controls.-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.mwform-item__note {
  font-size: 0.7rem;
  line-height: 2;
}
.mwform-item.-required .mwform-item__label::after {
  content: "必須";
  background-color: rgba(175, 134, 110, 0.9);
}
.mwform-item:not(:last-of-type) {
  margin-bottom: 1.3rem;
}
.mwform-item:has(.mwform-item__note) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .mwform-item__label {
    font-size: 1.3rem;
  }
  .mwform-item__label::after {
    font-size: 0.9rem;
  }
  .mwform-item__controls.-horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mwform-item__note {
    font-size: 0.8rem;
  }
  .mwform-item:not(:last-of-type) {
    margin-bottom: 2rem;
  }
}

.mwform-text-field__control {
  width: 100%;
  height: 2.3rem;
  border: 1px solid rgba(175, 134, 110, 0.9);
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 1em;
}
@media screen and (max-width: 768px) {
  .mwform-text-field__control {
    height: 2.8rem;
  }
}

.mwform-textarea-field__control {
  width: 100%;
  height: 9.7rem;
  border: 1px solid rgba(175, 134, 110, 0.9);
  background-color: #fff;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .mwform-textarea-field__control {
    height: 12rem;
  }
}

.mwform-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 1.3rem;
  margin: 3rem 0 0;
}
@media screen and (max-width: 768px) {
  .mwform-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 3.7rem 0 0;
  }
}

.mw_wp_form .error {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-size: 0.7rem;
}
@media screen and (max-width: 768px) {
  .mw_wp_form .error {
    font-size: 0.8rem;
  }
}

.mw_wp_form_input .-display_only_confirm {
  display: none;
}

.mw_wp_form_confirm .-display_only_input {
  display: none;
}
.mw_wp_form_confirm .-display_only_confirm {
  display: block;
}
.mw_wp_form_confirm .mwform-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.mw_wp_form_confirm .mwform-item__col {
  padding: 0 0 0.3rem;
  border-bottom: 1px solid rgba(175, 134, 110, 0.9);
}
.mw_wp_form_confirm .mwform-item__col--label {
  width: 12.3rem;
}
.mw_wp_form_confirm .mwform-item__col--controls {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mw_wp_form_confirm .mwform-item__label {
  font-weight: 700;
}
.mw_wp_form_confirm .mwform-item__label::after {
  display: none;
}
.mw_wp_form_confirm .mwform-item.-message .mwform-item__col {
  padding: 0 0 2rem;
}
.mw_wp_form_confirm .mwform-item:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .mwform-item__col--label {
    width: 10.8rem;
  }
  .mw_wp_form_confirm .mwform-item__label {
    font-size: 1rem;
  }
}

/* ================================
Top
================================ */
.p-top-sec__header {
  width: 100%;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
}
.p-top-sec__header.-bt_hidden {
  border-top: none;
}
.p-top-sec__heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1em;
}
.p-top-sec__sub-heading {
  font-size: 1.7rem;
  font-weight: 400;
}
.p-top-sec__main-heading {
  font-size: 2.1rem;
  font-weight: 400;
}
.p-top-sec__main-heading.-sm {
  font-size: 0.9rem;
  font-weight: 600;
}
.p-top-sec__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5rem;
  background-color: #e3d2c0;
  border-radius: 9999px;
  color: #292929;
  font-family: "Aboreto", system-ui;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 400;
  padding: 0.4rem 0.8rem 0.3rem 0.7rem;
}
.p-top-sec__label::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 0.4rem;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
}
.p-top-sec__label + .p-top-sec__main-heading {
  margin-top: 1.3rem;
}
.p-top-sec__body {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 2.7rem;
}
.p-top-sec__footer {
  width: 100%;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
@media screen and (max-width: 768px) {
  .p-top-sec__sub-heading {
    font-size: 1.3rem;
  }
  .p-top-sec__main-heading {
    font-size: 2.7rem;
  }
  .p-top-sec__main-heading.-sm {
    font-size: 1rem;
  }
  .p-top-sec__label {
    font-size: 0.9rem;
  }
}

.p-top-area01 {
  border-bottom: 1px solid #292929;
}
@media screen and (max-width: 768px) {
  .p-top-area01 {
    gap: 0;
  }
}

.p-top-rsv {
  border-right: 1px solid #292929;
}
.p-top-rsv__header {
  padding: 1.3rem 2rem 1.3rem 14.1vw;
}
.p-top-rsv__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 4rem 2rem 2.7rem 14.1vw;
}
@media screen and (max-width: 920px) {
  .p-top-rsv__header {
    padding: 1.3rem 2rem 1.3rem 6vw;
  }
  .p-top-rsv__body {
    padding: 4rem 2rem 2.7rem 6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-rsv {
    border-right: none;
  }
  .p-top-rsv__header {
    padding: 1.3rem 6vw;
  }
  .p-top-rsv__body {
    padding: 2rem 6vw;
  }
}

.p-top-news__header {
  padding: 1.3rem 14.1vw 1.3rem 2rem;
}
.p-top-news__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 4rem 14.1vw 2.7rem 2rem;
}
.p-top-news__list {
  margin: 0 0 1.7rem;
}
.p-top-news__btn-wrap {
  margin: auto 0 0;
}
@media screen and (max-width: 920px) {
  .p-top-news__header {
    padding: 1.3rem 6vw 1.3rem 2rem;
  }
  .p-top-news__body {
    padding: 4rem 6vw 2.7rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-news__header {
    padding: 1.3rem 6vw;
  }
  .p-top-news__body {
    padding: 2rem 6vw;
  }
}

.p-top-intro {
  color: #fff;
  background-color: rgba(175, 134, 110, 0.9);
  border-bottom: 1px solid #292929;
}
.p-top-intro__logo {
  width: 20rem;
  aspect-ratio: 303/61;
  margin: 0 0 3.6rem;
}
.p-top-intro__movie video {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-intro__body {
    padding: 2.7rem 6vw 0;
  }
}

.p-top-concept {
  color: #fff;
  background-color: rgba(175, 134, 110, 0.9);
  padding: 4.7rem 0;
  border-bottom: 1px solid #292929;
}
.p-top-concept__heading {
  font-family: "Aboreto", system-ui;
  font-size: 4.7rem;
  font-weight: 400;
  line-height: 1;
  margin: 2.7rem 0 3.7rem;
}
.p-top-concept__body {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-top-concept__btn-wrap {
  margin-top: 5rem !important;
}
@media screen and (max-width: 768px) {
  .p-top-concept {
    padding: 2.7rem 0;
  }
  .p-top-concept__heading {
    font-size: 4rem;
    margin: 1.2rem 0 3.3rem;
  }
}

.p-top-cover01 {
  border-bottom: 1px solid #292929;
}

.p-top-feature {
  background-color: #e3d2c0;
}
.p-top-feature__body {
  display: grid;
  grid-template-areas: "header list" "content list";
  grid-template-columns: 1fr 32.7rem;
}
.p-top-feature__label {
  background-color: rgba(175, 134, 110, 0.9);
}
.p-top-feature__main-heading {
  margin: 0 0 4.7rem;
}
.p-top-feature__header {
  grid-area: header;
  align-self: end;
  padding: 2.7rem 2.7rem 2rem 0;
}
.p-top-feature__content {
  grid-area: content;
  align-self: start;
  padding: 0 2.7rem 2.7rem 0;
}
.p-top-feature__list {
  grid-area: list;
  display: grid;
}
.p-top-feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.1rem;
  text-align: center;
  line-height: 2;
  aspect-ratio: 1/1;
  border: 1px solid #292929;
}
.p-top-feature__item.-text01 {
  grid-row: 1/2;
  grid-column: 1/2;
  border-width: 0 1px 1px 1px;
}
.p-top-feature__item.-text02 {
  grid-row: 2/3;
  grid-column: 2/3;
  border-width: 0 1px 1px 0;
}
.p-top-feature__item.-text03 {
  grid-row: 3/4;
  grid-column: 1/2;
  border-width: 0 1px 0 1px;
}
.p-top-feature__item.-img01 {
  grid-row: 2/3;
  grid-column: 1/2;
  border-width: 0 1px 1px 1px;
}
.p-top-feature__item.-img02 {
  grid-row: 1/2;
  grid-column: 2/3;
  border-width: 0 1px 1px 0;
}
.p-top-feature__item.-img03 {
  grid-row: 3/4;
  grid-column: 2/3;
  border-width: 0 1px 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-feature {
    padding: 0 0 8.3rem;
  }
  .p-top-feature__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-feature__header {
    padding: 2.7rem 0 3.8rem;
  }
  .p-top-feature__main-heading {
    margin: 0 0 2rem;
  }
  .p-top-feature__list {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .p-top-feature__item {
    font-size: 1rem;
    height: 100%;
    aspect-ratio: 134/153;
    overflow: hidden;
  }
  .p-top-feature__item.-text01 {
    border-width: 1px 1px 1px 0;
  }
  .p-top-feature__item.-text02 {
    border-width: 0 1px 1px 0;
  }
  .p-top-feature__item.-text03 {
    grid-row: 1/2;
    grid-column: 3/4;
    border-width: 1px 0 1px 0;
  }
  .p-top-feature__item.-img01 {
    border-width: 0 1px 1px 0;
  }
  .p-top-feature__item.-img02 {
    border-width: 1px 1px 1px 0;
  }
  .p-top-feature__item.-img03 {
    grid-row: 2/3;
    grid-column: 3/4;
    border-width: 0 0 1px 0;
  }
  .p-top-feature__content {
    padding: 2rem 0 0;
  }
}

.p-top-media {
  background-color: #e3d2c0;
}
@media screen and (min-width: 769px) {
  .p-top-media__list {
    gap: 0;
    border-left: 1px solid #292929;
  }
  .p-top-media__card {
    width: 33.3333333333% !important;
    border-right: 1px solid #292929;
    padding: 2.3rem 1.7rem 2rem;
  }
  .p-top-media__card .c-media-card__thumb {
    padding: 0;
    border-bottom: none;
  }
  .p-top-media__footer {
    border-top: 1px solid #292929;
  }
}
@media screen and (max-width: 768px) {
  .p-top-media__list {
    padding: 1.3rem 0 0;
  }
  .p-top-media__card {
    padding-bottom: 0;
    border-bottom: none;
  }
  .p-top-media__footer {
    padding: 2rem 6vw 2.2rem;
  }
}

.p-top-salon {
  border-bottom: 1px solid #292929;
  margin: 0 0 6.7rem;
}
.p-top-salon__header {
  padding: 2.7rem 14.1vw;
}
.p-top-salon__label {
  background-color: #e3d2c0;
}
.p-top-salon__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top-salon__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 4.3rem 0;
}
.p-top-salon__slider-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 23.3rem;
  border-left: 1px solid #292929;
  border-right: 1px solid #292929;
}
.p-top-salon__slider01.slick-dotted {
  margin: 0 0 1rem;
}
.p-top-salon__slider-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  display: inline-block;
  width: 1.8rem;
  height: 1.5rem;
  background: url(../img/cmn/chevron_right.svg) no-repeat center center/contain;
}
.p-top-salon__slider-arrow.-prev {
  right: initial;
  left: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
.p-top-salon__slider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.3rem;
}
.p-top-salon__slider-dots li {
  width: 0.4rem;
  aspect-ratio: 1/1;
  line-height: 0;
  font-size: 0;
  border-radius: 50%;
  border: 1px solid #292929;
}
.p-top-salon__slider-dots li.slick-active {
  background-color: #292929;
}
.p-top-salon__info-slide {
  padding: 2.1rem 2.7rem;
}
.p-top-salon__name {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.8rem;
}
.p-top-salon__address {
  font-size: 0.7rem;
}
.p-top-salon__thumb-slide {
  aspect-ratio: 352/235;
  overflow: hidden;
}
@media screen and (max-width: 920px) {
  .p-top-salon__header {
    padding: 2.7rem 6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-salon {
    margin: 0;
  }
  .p-top-salon__main-heading {
    margin: 0 0 2rem;
  }
  .p-top-salon__header {
    padding: 2rem 6vw 0;
    border-bottom: none;
  }
  .p-top-salon__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-salon__content {
    width: 100vw;
    padding: 0 6vw 5rem;
    margin: 0 calc(50% - 50vw);
    border-bottom: 1px solid #292929;
  }
  .p-top-salon__slider-wrap {
    width: 100%;
  }
  .p-top-salon__slider-arrow {
    display: none !important;
  }
  .p-top-salon__slider02.slick-dotted {
    margin: 0;
  }
  .p-top-salon__slider-dots {
    position: absolute;
    bottom: 0.7rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    gap: 0 0.4rem;
  }
  .p-top-salon__slider-dots li {
    width: 0.5rem;
  }
  .p-top-salon__info-slide {
    padding: 1.7rem 0.8rem 0.8rem;
  }
  .p-top-salon__name {
    font-size: 1.8rem;
  }
  .p-top-salon__address {
    font-size: 0.9rem;
  }
}

.p-top-menu__header {
  border-top: none;
}
.p-top-menu__block {
  border-bottom: 1px solid #292929;
}
.p-top-menu__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-menu__main-title {
  display: block;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
}
.p-top-menu__sub-title {
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0.3rem 0 0;
}
.p-top-menu__desc {
  font-size: 0.8rem;
  text-align: center;
  font-weight: 400;
  margin: 0 0 1.1rem;
}
.p-top-menu__comingsoon {
  font-size: 0.8rem;
  text-align: center;
  line-height: 2;
  margin: 1.3rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-menu__block {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    aspect-ratio: 400/230;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
  .p-top-menu__block.-facial {
    background: url(../img/top/menu-block01_bg.jpg) no-repeat center center/cover;
  }
  .p-top-menu__block.-body {
    background: url(../img/top/menu-block02_bg.jpg) no-repeat center center/cover;
  }
  .p-top-menu__block:not(:has(.p-top-menu__comingsoon)):hover {
    opacity: 0.7;
  }
  .p-top-menu__content {
    height: 100%;
    color: #fff;
  }
  .p-top-menu__main-title {
    font-size: 2.3rem;
  }
  .p-top-menu__sub-title {
    font-size: 1rem;
    margin: 0;
  }
  .p-top-menu__desc {
    font-size: 1rem;
    margin: 0.5rem 0 0;
  }
  .p-top-menu__img {
    display: none;
  }
  .p-top-menu__comingsoon {
    font-size: 1rem;
  }
}

.p-top-product__header {
  border-top: none;
  padding: 2.7rem 14.1vw;
}
.p-top-product__content {
  padding: 2.7rem 0;
}
@media screen and (max-width: 920px) {
  .p-top-product__header {
    padding: 2.7rem 6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-product {
    margin: 0 0 2rem;
  }
  .p-top-product__header {
    border-bottom: none;
    padding: 4.7rem 6vw 0;
    margin: 0 0 2.7rem;
  }
  .p-top-product__main-heading {
    margin: 1.2rem 0 0.5rem;
  }
  .p-top-product__content {
    padding: 0;
  }
}

.p-top-item {
  margin: 0 0 7.3rem;
}
.p-top-item__block {
  display: grid;
  grid-template-areas: "img header" "img content";
  grid-template-columns: 19.6rem 1fr;
  gap: 1rem 10.9vw;
  border-bottom: 1px solid #292929;
}
.p-top-item__img {
  grid-area: img;
  border: 1px solid #292929;
  border-width: 0 1px 0 1px;
}
.p-top-item__header {
  grid-area: header;
  align-self: end;
  padding: 2rem 0 0;
}
.p-top-item__content {
  grid-area: content;
  align-self: start;
  padding: 0 0 1.3rem;
}
.p-top-item__catch {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 0.7rem;
}
.p-top-item__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1em;
  font-size: 0.7rem;
  margin: 0 0 0.7rem;
}
.p-top-item__name .-en {
  font-family: "Aboreto", system-ui;
  font-size: 1.5rem;
  line-height: 1.2;
}
.p-top-item__name .-jp {
  font-weight: 400;
}
.p-top-item__name.-vertical {
  -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;
}
.p-top-item__desc {
  font-size: 0.8rem;
  line-height: 1.7;
  padding: 0 4.7vw 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-item {
    width: calc(100% - 12vw);
    border: 1px solid #292929;
    border-width: 0 1px 0 1px;
    margin: 0 auto 5rem;
  }
  .p-top-item__block {
    grid-template-areas: "img header" "content content";
    grid-template-columns: 11.7rem 1fr;
    gap: 1.3rem 1.7rem;
    padding: 2rem 1.3rem;
  }
  .p-top-item__img {
    aspect-ratio: 1/1;
    border: none;
  }
  .p-top-item__header {
    padding: 0;
    -ms-flex-item-align: center;
        align-self: center;
  }
  .p-top-item__catch {
    font-size: 1rem;
  }
  .p-top-item__name {
    -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;
    font-size: 0.8rem;
    gap: 0.5em 0;
    margin: 0 0 1.3rem;
  }
  .p-top-item__name .-en {
    font-size: 1.3rem;
  }
  .p-top-item__price {
    font-size: 0.8rem;
  }
  .p-top-item__content {
    padding: 0;
  }
  .p-top-item__desc {
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.9;
  }
}

.p-top-blog {
  color: #fff;
  background-color: #b7917a;
}
.p-top-blog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  border-bottom-color: #fff;
  padding: 2.7rem 14.1vw;
}
.p-top-blog__list {
  border-top: 1px solid #fff;
  margin: 2.7rem 0 1.3rem;
}
.p-top-blog__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15.6vw;
  padding: 3.3rem 1.2rem 3.3rem 0;
  border-bottom: 1px solid #fff;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-top-blog__card::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 24/12;
  background: url(../img/cmn/arrow_right_wh.svg) no-repeat center center/contain;
  margin: 0 0 0 auto;
}
.p-top-blog__card:hover {
  opacity: 0.7;
}
.p-top-blog__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14.3rem;
  aspect-ratio: 3/2;
}
.p-top-blog__content {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.p-top-blog__date {
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0 0 0.7rem;
}
.p-top-blog__title {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 0.7rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-top-blog__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3rem 0.3rem;
}
.p-top-blog__category {
  font-family: "Aboreto", system-ui;
  font-size: 0.7rem;
  background-color: #e3d2c0;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
}
@media screen and (max-width: 920px) {
  .p-top-blog__header {
    padding: 2.7rem 6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-blog__header {
    -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;
    padding: 2.7rem 6vw;
    border-bottom: none;
  }
  .p-top-blog__main-heading {
    display: none;
  }
  .p-top-blog__body {
    padding: 0 6vw 5rem;
  }
  .p-top-blog__list {
    margin: 1.7rem 0 0;
  }
  .p-top-blog__card {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0 1rem;
    padding: 1rem 0;
  }
  .p-top-blog__card::after {
    content: none;
  }
  .p-top-blog__thumb {
    -ms-flex-item-align: start;
        align-self: start;
    width: 12.5rem;
  }
  .p-top-blog__date {
    font-size: 0.9rem;
  }
  .p-top-blog__title {
    font-size: 1.3rem;
  }
  .p-top-blog__categories {
    margin: auto 0 0;
  }
  .p-top-blog__category {
    font-size: 0.9rem;
  }
}

/* ================================
Page
================================ */
.p-page-content {
  padding: 5.7rem 0 10rem;
}
.p-page-content__editable-area p {
  line-height: 2;
}
.p-page-content__editable-area p a {
  text-decoration: underline;
}
.p-page-content__editable-area p + p {
  margin-top: 2rem;
}
.p-page-content__editable-area p.has-text-align-center {
  text-align: center;
}
.p-page-content__editable-area p.has-text-align-right {
  text-align: right;
}
.p-page-content__editable-area h2 {
  font-size: 1.7rem;
  text-align: center;
  font-weight: 400;
  border-bottom: 1px solid #292929;
  padding: 0 0 1rem;
  margin: 5rem 0 3rem;
}
.p-page-content__editable-area ul {
  margin: 2rem 0;
}
.p-page-content__editable-area ul li {
  position: relative;
  line-height: 2;
  padding: 0 0 0 1em;
}
.p-page-content__editable-area ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
}
.p-page-content__editable-area ol {
  margin: 2rem 0;
}
.p-page-content__editable-area ol li {
  position: relative;
  line-height: 2;
  counter-increment: table-ol;
  padding: 0 0 0 1em;
}
.p-page-content__editable-area ol li::before {
  content: counter(table-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
}
.p-page-content.-pt0 {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-page-content {
    padding: 2.5rem 0 3.3rem;
  }
  .p-page-content__editable-area h2 {
    width: 100vw;
    font-size: 1.8rem;
    text-align: left;
    padding: 0 6vw 0.8rem;
    margin: 3.7rem calc(50% - 50vw) 2.5rem;
  }
  .p-page-content__editable-area p.has-text-align-center {
    text-align: left;
  }
}

.p-page-sec__heading {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 2rem;
}

.p-page-float {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-page-float {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-page-float__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 4.5rem;
    font-size: 1.1rem;
    border: 1px solid #292929;
    background-color: #FFF6EB;
  }
  .p-page-float__btn:nth-of-type(1) {
    border-width: 1px 0 1px 1px;
  }
}

.p-page-cover__bg {
  aspect-ratio: 1280/500;
}
@media screen and (max-width: 768px) {
  .p-page-cover__bg {
    aspect-ratio: 400/350;
  }
}

/* ================================
Post
================================ */
/* archive */
.p-post-archive__footer {
  margin: 6rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-post-archive__footer {
    margin: 1.7rem 0 0;
  }
}

/* single */
.p-post-mv {
  min-height: 20.7rem;
  color: #fff;
  background-color: rgba(175, 134, 110, 0.9);
  padding: 6.7rem 0 2rem;
}
.p-post-mv__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.7rem 0;
}
.p-post-mv__title {
  font-size: 2rem;
  font-weight: 400;
}
.p-post-mv__date {
  font-family: "Aboreto", system-ui;
}
.p-post-mv__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 1.7rem;
}
.p-post-mv__category {
  color: #fff;
  font-family: "Aboreto", system-ui;
  font-size: 0.9rem;
  line-height: 1;
  background-color: #D7C5B1;
  border-radius: 9999px;
  padding: 0.5em 1em;
}
@media screen and (max-width: 768px) {
  .p-post-mv {
    min-height: 16.7rem;
    padding: 3.3rem 0;
  }
  .p-post-mv__content {
    gap: 2rem 0;
  }
  .p-post-mv__title {
    font-size: 1.8rem;
  }
  .p-post-mv__date {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .p-post-mv__categories {
    margin: -2rem 0 0;
  }
  .p-post-mv__category {
    font-size: 0.9rem;
  }
}

.p-post-single__footer {
  margin: 9.3rem 0 0;
}
.p-post-single__pager-list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-post-single__btn.prev, .p-post-single__btn.next {
  width: 18.3rem;
  height: 3.3rem;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .p-post-single__footer {
    margin: 3.5rem 0 0;
  }
  .p-post-single__btn.prev, .p-post-single__btn.next {
    width: 11rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}
.p-post-article,.p-post-single__footer {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.p-post-article__editable-area p {
  line-height: 2;
}
.p-post-article__editable-area p a {
  text-decoration: underline;
}
.p-post-article__editable-area p img {
  display: block;
  max-width: 54%;
  margin: 6.7rem auto 2.7rem;
}
@media screen and (max-width: 768px) {
  .p-post-article__editable-area p img {
    max-width: 100%;
    margin: 1.7rem auto;
  }
}

/* ================================
About
================================ */
.p-about-mv__body {
  display: grid;
  grid-template-areas: "heading heading" "content movie";
  grid-template-columns: 1fr 1fr;
}
.p-about-mv__heading {
  grid-area: heading;
  margin: 0 0 5.3rem;
}
.p-about-mv__content {
  grid-area: content;
  padding: 0 1.3rem 0 0;
}
.p-about-mv__main-title {
  font-family: "Aboreto", system-ui;
  font-weight: 400;
  margin: 0 0 1rem;
}
.p-about-mv__desc {
  font-size: 1.1rem;
  line-height: 2.3;
  font-weight: 400;
}
.p-about-mv__desc + .p-about-mv__desc {
  margin-top: 2.3em;
}
.p-about-mv__movie {
  grid-area: movie;
  align-self: start;
  margin: 0 -14.1vw 0 0;
}
.p-about-mv__movie video {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .p-about-mv {
    padding-bottom: 6.7rem;
  }
}
@media screen and (max-width: 920px) {
  .p-about-mv__movie {
    margin: 0 -6vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-about-mv__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem 0;
  }
  .p-about-mv__heading {
    margin: 0;
  }
  .p-about-mv__movie {
    position: relative;
    width: 100vw;
    height: 21.8rem;
    margin: 0 calc(50% - 50vw);
    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;
  }
  .p-about-mv__movie video {
    position: absolute;
    top: 0;
    left: 6vw;
    width: calc(100% - 12vw);
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-about-mv__desc {
    font-size: 1rem;
    line-height: 2.5;
  }
  .p-about-mv__desc + .p-about-mv__desc {
    margin-top: 2.5em;
  }
  .p-about-mv__main-title {
    margin: 0 0 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-about-cover__bg {
    aspect-ratio: 400/412;
  }
}

.p-about-promise {
  background-color: #e3d2c0;
  padding: 6rem 0 4rem;
  border-bottom: 1px solid #292929;
  border-top: 1px solid #292929;
}
.p-about-promise__heading {
  font-size: 2.3rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 6rem;
}
@media screen and (max-width: 768px) {
  .p-about-promise {
    padding: 2.7rem 0 5.2rem;
  }
  .p-about-promise__heading {
    font-size: 2.7rem;
    text-align: left;
    line-height: 1.3;
    margin: 0 0 5.2rem;
  }
}

.p-about-salon {
  padding: 6rem 0 0;
}
.p-about-salon__heading {
  margin: 0 0 2rem;
}
@media screen and (max-width: 768px) {
  .p-about-salon {
    padding: 5rem 0 0;
  }
  .p-about-salon__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.7rem 0;
  }
  .p-about-salon__img-wrap.-pr0 {
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0.3rem 0;
  }
}

/* ================================
Sonicfit
================================ */
@media screen and (min-width: 769px) {
  .p-sonicfit-mv {
    padding-bottom: 6.7rem;
  }
}

.p-sonicfit-effect {
  border-bottom: 1px solid #292929;
  padding: 7.3rem 0;
}
.p-sonicfit-effect__img01 {
  margin: 7.3rem 0 0;
}
@media screen and (min-width: 769px) {
  .p-sonicfit-effect__img02 {
    margin: 7.3rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-sonicfit-effect {
    padding: 4.2rem 0;
  }
  .p-sonicfit-effect__body {
    gap: 2rem 0;
  }
  .p-sonicfit-effect__img01 {
    margin: 0 2rem 0 0;
  }
  .p-sonicfit-effect__content02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 4.2rem 0;
  }
}

.p-sonicfit-feature {
  background-color: #e3d2c0;
  border-bottom: 1px solid #292929;
  padding: 5.7rem 0 4.7rem;
}
.p-sonicfit-feature__img01 {
  margin: -2.7rem auto 6.7rem;
}
.p-sonicfit-feature__slider-wrap {
  margin: -5rem 0 0;
}
.p-sonicfit-feature__slider.slick-dotted.slick-slider {
  margin: 0;
}
.p-sonicfit-feature__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-sonicfit-feature__slider-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -0.7rem;
  display: inline-block;
  width: 0.7rem;
  aspect-ratio: 7/23;
  background: url(../img/cmn/chevron_right.svg) no-repeat center center/contain;
}
.p-sonicfit-feature__slider-arrow.-prev {
  right: initial;
  left: -0.7rem;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
.p-sonicfit-feature__slider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.3rem;
  margin: 1.7rem 0 0;
}
.p-sonicfit-feature__slider-dots li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.5rem;
  aspect-ratio: 1/1;
  line-height: 0;
  font-size: 0;
  border-radius: 50%;
  border: 1px solid #292929;
}
.p-sonicfit-feature__slider-dots li.slick-active {
  background-color: #292929;
}
.p-sonicfit-feature__slide {
  height: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 0;
  padding: 0 1.7rem;
}
.p-sonicfit-feature__slide-img {
  width: 100%;
  aspect-ratio: 290/254;
}
.p-sonicfit-feature__slide-title {
  font-size: 0.9rem;
  margin: 0 0 auto;
}
.p-sonicfit-feature__slide-note {
  font-size: 0.8rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-sonicfit-feature {
    padding: 5rem 0;
  }
  .p-sonicfit-feature__heading {
    margin: 0 0 4.2rem;
  }
  .p-sonicfit-feature__img01 {
    margin: 1.7rem 0 5rem;
  }
  .p-sonicfit-feature__slider-wrap {
    background-color: #FFF6EB;
    width: 100vw;
    padding: 1.7rem 0;
    margin: 0 calc(50% - 50vw);
  }
  .p-sonicfit-feature__slider-arrow {
    right: 2rem;
    width: 0.7rem;
  }
  .p-sonicfit-feature__slider-arrow.-prev {
    left: 2rem;
  }
  .p-sonicfit-feature__slide {
    gap: 1.3rem 0;
    padding: 0 4.2rem;
  }
  .p-sonicfit-feature__slider-title {
    font-size: 1.1rem;
  }
  .p-sonicfit-feature__slider-note {
    font-size: 1rem;
  }
  .p-sonicfit-feature__slider-dots {
    margin: 2.8rem 0 0;
  }
  .p-sonicfit-feature__img04 {
    max-width: 23.3rem;
  }
}

.p-sonicfit-repeat {
  padding: 7.3rem 0 9rem;
}
@media screen and (max-width: 768px) {
  .p-sonicfit-repeat {
    padding: 5rem 0 3.3rem;
  }
}

.p-sonicfit-ba__body {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-sonicfit-ba__tab-wrap {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-sonicfit-ba__block-wrap {
  position: relative;
  width: calc(50% + 4rem);
  margin: 0 -2rem 0 0;
  overflow: hidden;
}
.p-sonicfit-ba__block {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-sonicfit-ba__block.is-active {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.p-sonicfit-ba__slider {
  width: 100%;
  opacity: 0;
  padding: 0 2rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-sonicfit-ba__slider.slick-initialized {
  opacity: 1;
}
.p-sonicfit-ba__slider.slick-dotted.slick-slider {
  margin: 0;
}
.p-sonicfit-ba__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-sonicfit-ba__slider-arrow {
  position: absolute;
  bottom: 11.3vw;
  right: 0;
  display: inline-block;
  width: 0.7rem;
  aspect-ratio: 7/23;
  background: url(../img/cmn/chevron_right.svg) no-repeat center center/contain;
}
.p-sonicfit-ba__slider-arrow.-prev {
  right: initial;
  left: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-sonicfit-ba__slider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.3rem;
  margin: 1.7rem 0 0;
}
.p-sonicfit-ba__slider-dots li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.5rem;
  aspect-ratio: 1/1;
  line-height: 0;
  font-size: 0;
  border-radius: 50%;
  border: 1px solid #292929;
}
.p-sonicfit-ba__slider-dots li.slick-active {
  background-color: #292929;
}
.p-sonicfit-ba__slider-dots li:first-child:last-child {
  display: none;
}
@media screen and (max-width: 920px) {
  .p-sonicfit-ba__slider-arrow {
    bottom: 14.1vw;
  }
}
@media screen and (max-width: 768px) {
  .p-sonicfit-ba__heading {
    font-size: 1.8rem;
  }
  .p-sonicfit-ba__body {
    gap: 2.5rem 0;
  }
  .p-sonicfit-ba__block-wrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .p-sonicfit-ba__slider {
    padding: 0 2rem;
  }
  .p-sonicfit-ba__slider-arrow {
    right: 0.3rem;
    bottom: 10.5rem;
    width: 0.7rem;
  }
  .p-sonicfit-ba__slider-arrow.-prev {
    left: 0.3rem;
  }
  .p-sonicfit-ba__slider-dots {
    gap: 0 0.3rem;
    margin: 0.8rem 0 0;
  }
  .p-sonicfit-ba__slider-dots li {
    width: 0.5rem;
  }
}

.p-sonicfit-ba01 {
  padding: 0 0 5.3rem;
  border-bottom: 1px solid #292929;
}
@media screen and (max-width: 768px) {
  .p-sonicfit-ba01 {
    padding: 0 0 3.3rem;
  }
}

.p-sonicfit-ba02 {
  padding: 5.3rem 0 4rem;
  border-bottom: 1px solid #292929;
}
@media screen and (max-width: 768px) {
  .p-sonicfit-ba02 {
    padding: 3.3rem 0;
  }
}

.p-sonicfit-course {
  margin: 0 0 4.7rem;
}
.p-sonicfit-course__header {
  padding-top: 5.7rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #292929;
}
.p-sonicfit-course__block {
  border-bottom: 1px solid #292929;
}
.p-sonicfit-course__content {
  padding: 3.3rem 0;
}
.p-sonicfit-course__heading-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  border-bottom: 1px solid #292929;
  padding: 0 0 0.3rem;
  margin: 0 0 1.3rem;
}
.p-sonicfit-course__title {
  font-size: 1.9rem;
  font-weight: 400;
}
.p-sonicfit-course__title .-jp {
  font-size: 0.9rem;
  margin: 0 0 0 1.3rem;
}
.p-sonicfit-course__outline {
  font-size: 0.9rem;
}
.p-sonicfit-course__price-wrap {
  margin: 0 0 0.7rem;
}
.p-sonicfit-course__price {
  font-size: 1.6rem;
  text-align: center;
}
.p-sonicfit-course__price .-unit {
  font-size: 0.8rem;
}
.p-sonicfit-course__time {
  font-size: 1.1rem;
  text-align: center;
}
.p-sonicfit-course__time .-note {
  font-size: 0.8rem;
}
.p-sonicfit-course__note {
  display: block;
  font-size: 0.8rem;
  text-align: center;
}
.p-sonicfit-course__btn-wrap {
  margin: 1rem 0 0;
}
.p-sonicfit-course__comingsoon {
  font-size: 0.8rem;
  text-align: center;
  line-height: 2;
}
.p-sonicfit-course__comingsoon .-lg {
  font-size: 2em;
}
@media screen and (max-width: 768px) {
  .p-sonicfit-course {
    margin: 0 0 3.3rem;
  }
  .p-sonicfit-course__header {
    padding: 3.3rem 6vw;
  }
  .p-sonicfit-course__block {
    width: 100vw;
    padding: 0;
    margin: 0 calc(50% - 50vw);
  }
  .p-sonicfit-course__block.-facial .p-sonicfit-course__text-wrap {
    background: url(../img/top/menu-block01_bg.jpg) no-repeat center center/cover;
  }
  .p-sonicfit-course__block.-body .p-sonicfit-course__text-wrap {
    background: url(../img/top/menu-block02_bg.jpg) no-repeat center center/cover;
  }
  .p-sonicfit-course__block:hover .c-arrow-btn {
    color: #fff;
    background-color: #292929;
    border-color: #292929;
  }
  .p-sonicfit-course__content {
    padding: 0;
  }
  .p-sonicfit-course__heading-wrap {
    padding: 1rem 6vw;
    margin: 0;
  }
  .p-sonicfit-course__title {
    font-size: 1.3rem;
  }
  .p-sonicfit-course__title .-jp {
    display: none;
  }
  .p-sonicfit-course__outline {
    font-size: 1rem;
  }
  .p-sonicfit-course__text-wrap {
    width: 100%;
    min-height: 15.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    padding: 1.7rem 6vw;
  }
  .p-sonicfit-course__price-wrap {
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 0 0 0.8rem;
    margin: 0 0 0.8rem;
  }
  .p-sonicfit-course__price {
    font-size: 2rem;
  }
  .p-sonicfit-course__price .-unit {
    font-size: 1rem;
  }
  .p-sonicfit-course__note {
    font-size: 1rem;
  }
  .p-sonicfit-course__time {
    font-size: 1.1rem;
  }
  .p-sonicfit-course__time .-note {
    font-size: 1rem;
  }
  .p-sonicfit-course__comingsoon {
    font-size: 1rem;
  }
}

.p-sonicfit-attention {
  margin: 0 0 6.7rem;
}
.p-sonicfit-attention__heading {
  width: 26.3rem;
  margin: 0 auto 2rem;
}
.p-sonicfit-attention__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem 0;
}
.p-sonicfit-attention__block:not(:last-of-type) {
  margin-bottom: 3.3rem;
}
.p-sonicfit-attention__title {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #292929;
  padding: 0 0 0.3rem;
}
@media screen and (max-width: 768px) {
  .p-sonicfit-attention {
    margin: 0 0 5rem;
  }
  .p-sonicfit-attention__heading {
    width: 100%;
  }
  .p-sonicfit-attention__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: last baseline;
        -ms-flex-align: last baseline;
            align-items: last baseline;
    padding: 0 0 0.5rem;
    border-bottom: 1px solid #292929;
  }
  .p-sonicfit-attention__block:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  .p-sonicfit-attention__title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 8.3rem;
    font-size: 1rem;
    text-align: left;
    border-bottom: none;
    padding: 0;
  }
  .p-sonicfit-attention__desc {
    line-height: 1.5;
  }
}

.p-sonicfit-faq__heading {
  width: 26.3rem;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 768px) {
  .p-sonicfit-faq__heading {
    width: 100%;
  }
}

/* ================================
Course & Price
================================ */
.p-price-nav__body {
  height: 22rem;
  border: 1px solid #292929;
  border-width: 1px 0 1px 0;
}
.p-price-nav__slider01 {
  width: 100%;
  height: 100%;
}
.p-price-nav__slider01 .slick-list,
.p-price-nav__slider01 .slick-track {
  height: 100%;
}
.p-price-nav__slider-wrap02 {
  background-color: #e3d2c0;
  border-left: 1px solid #292929;
}
.p-price-nav__slider02 {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-price-nav__slider02.slick-dotted.slick-slider {
  margin: 0;
}
.p-price-nav__slider02 .slick-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-price-nav__slider02 .slick-track {
  height: 100%;
}
.p-price-nav__content {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4rem 2rem 1.3rem;
}
.p-price-nav__title {
  font-weight: 400;
  text-align: center;
}
.p-price-nav__title::before {
  content: attr(data-en);
  display: block;
  font-size: 2.3333333333em;
  line-height: 1;
  margin: 0 0 0.7rem;
}
.p-price-nav__slider-arrow {
  position: absolute;
  z-index: 10;
  top: 9.3rem;
  right: 0;
  display: inline-block;
  width: 4.4rem;
  height: 2.7rem;
  background: url(../img/cmn/chevron_right.svg) no-repeat center center/contain;
}
.p-price-nav__slider-arrow.-prev {
  right: initial;
  left: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-price-nav__slider-arrow.slick-disabled {
  display: none !important;
}
.p-price-nav__slider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.3rem;
  padding: 1.3rem 0;
  border-top: 1px solid #292929;
}
.p-price-nav__slider-dots li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.5rem;
  aspect-ratio: 1/1;
  line-height: 0;
  font-size: 0;
  border-radius: 50%;
  border: 1px solid #292929;
}
.p-price-nav__slider-dots li.slick-active {
  background-color: #292929;
}
@media screen and (max-width: 768px) {
  .p-price-nav__body {
    height: 13.3rem;
  }
  .p-price-nav__slider-wrap01 {
    display: none;
  }
  .p-price-nav__slider-wrap02 {
    height: 100%;
    border-left: none;
  }
  .p-price-nav__slider-dots {
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-price-nav__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 6vw;
  }
  .p-price-nav__content.-facial {
    background: url(../img/price/nav-slide01_img.jpg) no-repeat center center/cover;
  }
  .p-price-nav__content.-body {
    background: url(../img/price/nav-slide02_img.jpg) no-repeat center center/cover;
  }
  .p-price-nav__title {
    -ms-flex-item-align: center;
        align-self: center;
    color: #fff;
    text-align: center;
  }
  .p-price-nav__title::before {
    font-size: 2.3333333333em;
    margin: 0;
  }
  .p-price-nav__slider-arrow {
    top: 50%;
    width: 3.2rem;
    height: 1.7rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url(../img/cmn/chevron_right_wh.svg) no-repeat center center/contain;
  }
  .p-price-nav__slider-arrow.-prev {
    -webkit-transform: translateY(-50%) scale(-1, 1);
            transform: translateY(-50%) scale(-1, 1);
  }
  .p-price-nav__slider-dots {
    padding: 0;
    border-top: none;
  }
  .p-price-nav__slider-dots li {
    border-color: #fff;
  }
  .p-price-nav__slider-dots li.slick-active {
    background-color: #fff;
  }
  .p-price-nav__slider-dots li:first-child:last-child {
    display: none;
  }
}

.p-price-sec__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3.7rem;
  padding-bottom: 3.7rem;
  border-bottom: 1px solid #292929;
}
.p-price-sec__heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 0;
}
.p-price-sec__intro {
  font-size: 0.8rem;
}
.p-price-sec__body {
  padding-top: 5.3rem;
  padding-bottom: 5.3rem;
}
.p-price-sec__block:not(:last-of-type) {
  margin-bottom: 4.7rem;
}
.p-price-sec__title {
  font-size: 1.7rem;
  font-weight: 400;
  border-bottom: 1px solid #292929;
  padding: 0 4rem 0.7rem;
  margin: 0 0 2.7rem;
}
.p-price-sec__content {
  padding: 0 4rem;
}
.p-price-sec__price {
  font-size: 1.6rem;
}
.p-price-sec__price .-unit {
  font-size: 0.8rem;
}
.p-price-sec__note {
  display: block;
  font-size: 0.8rem;
}
.p-price-sec__img {
  margin: 0 auto 3.7rem;
}
.p-price-sec:nth-of-type(odd) {
  background-color: #e3d2c0;
}
@media screen and (max-width: 768px) {
  .p-price-sec__header {
    gap: 0;
    border-bottom: none;
    padding: 6.7rem 6vw 0;
  }
  .p-price-sec__heading {
    width: 100vw;
    padding: 0 6vw 2.5rem;
    margin: 0 calc(50% - 50vw) 2.5rem;
    border-bottom: 1px solid #292929;
  }
  .p-price-sec__intro {
    font-size: 1rem;
  }
  .p-price-sec__block:not(:last-of-type) {
    margin-bottom: 2.5rem;
  }
  .p-price-sec__title {
    font-size: 1.8rem;
    padding: 0 6vw 0.8rem;
  }
  .p-price-sec__content {
    gap: 0;
    padding: 0 6vw;
  }
  .p-price-sec__price-wrap {
    width: 100%;
    text-align: center;
    margin: 0 0 1rem;
  }
  .p-price-sec__price {
    font-size: 2rem;
  }
  .p-price-sec__price .-unit {
    font-size: 1rem;
  }
  .p-price-sec__note {
    font-size: 1rem;
  }
}

.p-price-sec01__img {
  max-width: 26.7rem;
}

.p-price-sec02__img {
  max-width: 33.3rem;
}
@media screen and (max-width: 768px) {
  .p-price-sec02__img {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 3.5rem;
    padding: 0 0.8rem;
  }
}

/* ================================
Salon
================================ */
/* archive */
.p-salon-cancel {
  color: #fff;
  background-color: rgba(175, 134, 110, 0.9);
  padding: 6.7rem 0;
}
@media screen and (max-width: 768px) {
  .p-salon-cancel {
    padding: 4.2rem 0;
  }
}

.p-salon-archive {
  padding: 4.3rem 0 0;
}
.p-salon-archive__states {
  max-width: 41.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.7rem 0.7rem;
  margin: 2.7rem auto 4rem;
}
.p-salon-archive__state {
  width: 13.3rem;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  border: 1px solid #292929;
  padding: 0.5rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-salon-archive__state:hover {
  color: #fff;
  background-color: #292929;
}
@media screen and (max-width: 768px) {
  .p-salon-archive {
    padding: 4.2rem 0;
  }
  .p-salon-archive__states {
    width: 100%;
    gap: 0.8rem 0.8rem;
    margin: 5rem auto;
  }
  .p-salon-archive__state {
    width: calc(50% - 0.4rem);
    font-size: 1.3rem;
    padding: 0.8rem;
  }
}

/* single */
.p-salon-mv {
  color: #fff;
  background-color: rgba(175, 134, 110, 0.9);
  padding: 6.7rem 0;
}
.p-salon-mv__header {
  padding-bottom: 2.7rem;
  border-bottom: 1px solid #292929;
}
.p-salon-mv__title {
  font-size: 2rem;
  font-weight: 400;
}
.p-salon-mv__body {
  border-bottom: 1px solid #292929;
}
.p-salon-mv__slider {
  height: 36rem;
  border: 1px solid #292929;
  border-width: 0 1px 0 1px;
}
.p-salon-mv__slider.slick-dotted.slick-slider {
  margin: 0;
}
.p-salon-mv__slider .slick-track, .p-salon-mv__slider .slick-list {
  height: 100%;
}
.p-salon-mv__slide {
  overflow: hidden;
}
.p-salon-mv__slider-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.3rem;
  display: inline-block;
  width: 0.7rem;
  aspect-ratio: 7/23;
  background: url(../img/cmn/chevron_right.svg) no-repeat center center/contain;
}
.p-salon-mv__slider-arrow.-prev {
  right: initial;
  left: 1.3rem;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
.p-salon-mv__slider-dots {
  position: absolute;
  bottom: -2.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.3rem;
}
.p-salon-mv__slider-dots li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.7rem;
  aspect-ratio: 1/1;
  line-height: 0;
  font-size: 0;
  border-radius: 50%;
  border: 1px solid #fff;
}
.p-salon-mv__slider-dots li.slick-active {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-salon-mv {
    padding: 5rem 0 9.2rem;
  }
  .p-salon-mv__header {
    padding: 0 6vw 2rem;
  }
  .p-salon-mv__title {
    font-size: 1.8rem;
  }
  .p-salon-mv__body {
    padding: 0;
  }
  .p-salon-mv__slider {
    border: none;
  }
  .p-salon-mv__slider-arrow {
    display: none !important;
  }
  .p-salon-mv__slider-dots {
    left: initial;
    -webkit-transform: none;
            transform: none;
    right: 6vw;
    bottom: -3rem;
  }
  .p-salon-mv__slider-dots li {
    width: 0.5rem;
  }
}

.p-salon-article {
  padding: 0 0 6rem;
}
.p-salon-article__body {
  margin: 0 auto 6.7rem;
}
.p-salon-article__table {
  width: 100%;
}
.p-salon-article__table th, .p-salon-article__table td {
  line-height: 2;
  padding: 0.5em 0;
}
.p-salon-article__table th {
  width: 5.3rem;
  font-weight: 400;
}
.p-salon-article__table td a:not(.c-arrow-link) {
  text-decoration: underline;
}
.p-salon-article__table td .c-sentence + .c-btn__wrap {
  margin-top: 0.7rem;
}
.p-salon-article__map {
  position: relative;
  width: 100%;
  aspect-ratio: 415/343;
}
.p-salon-article__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-salon-article__reserve-btn {
  width: 17.7rem;
}
@media screen and (max-width: 768px) {
  .p-salon-article__body {
    margin: 0 0 3.5rem;
  }
  .p-salon-article__table th {
    width: 6.7rem;
  }
}

.p-salon-attention__heading {
  font-size: 1.7rem;
  font-weight: 400;
  border-bottom: 1px solid #292929;
  padding: 0 0 1.3rem;
  margin: 0 0 2rem;
}

/* ================================
FAQ
================================ */
/* archive */
.p-faq-search {
  background-color: #e3d2c0;
  padding: 5rem 0;
}
.p-faq-search__box {
  max-width: 555px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  background-color: #fff;
  border: 1px solid #756464;
  margin: 0 auto;
}
.p-faq-search__box input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 1rem;
}
.p-faq-search__box button {
  width: 7.7rem;
  color: #fff;
  text-align: center;
  background-color: rgba(175, 134, 110, 0.9);
  padding: 0.5rem 0;
  border-left: 1px solid #756464;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-faq-search__box button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-faq-search {
    padding: 4.2rem 0;
  }
  .p-faq-search__box input {
    padding: 0 1.7rem;
  }
  .p-faq-search__box button {
    width: 6.2rem;
  }
}

.p-faq-archive {
  padding: 4rem 0 0;
}
.p-faq-archive__categories {
  max-width: 42.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.3rem 0.7rem;
  margin: 0 auto 4rem;
}
.p-faq-archive__category {
  width: 20.7rem;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  border: 1px solid #292929;
  padding: 1rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-faq-archive__category:hover {
  color: #fff;
  background-color: #292929;
}
@media screen and (max-width: 768px) {
  .p-faq-archive__categories {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem 0;
  }
  .p-faq-archive__category {
    min-width: 25.8rem;
    font-size: 1.3rem;
  }
}

/* ================================
お知らせ
================================ */
.p-news-archive__date {
  padding: 0 4rem;
}
@media screen and (max-width: 768px) {
  .p-news-archive__date {
    padding: 0 6vw;
  }
}

/* ================================
Contact
================================ */
.p-contact-intro {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #e3d2c0;
  padding: 2.7rem 0;
}
.p-contact-intro__heading {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.7rem;
}
.p-contact-intro__desc {
  font-size: 0.8rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-contact-intro {
    padding: 3.3rem 0;
  }
  .p-contact-intro__heading {
    font-size: 1.5rem;
    text-align: center;
  }
  .p-contact-intro__desc {
    font-size: 1rem;
  }
}

.p-contact-form {
  max-width: 41.3rem;
  margin: 0 auto;
  padding: 5.3rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-contact-form {
    padding: 3.3rem 0 0;
  }
}

.p-contact-complete {
  padding: 5.3rem 0 0;
}
.p-contact-complete__desc {
  margin: 0 0 5.3rem;
}
@media screen and (max-width: 768px) {
  .p-contact-complete {
    padding: 5rem 0 0;
  }
  .p-contact-complete__desc {
    margin: 0 0 3.3rem;
  }
}

/* ================================
Hygiene Management
================================ */
.p-hygiene-intro {
  background-color: #e3d2c0;
  padding: 2.7rem 0;
}
.p-hygiene-intro__heading {
  font-size: 1.5rem;
  font-weight: 400;
  border-bottom: 1px solid #292929;
  padding: 0 9.3rem 1rem;
  margin: 0 0 1.3rem;
}
.p-hygiene-intro__content {
  padding: 0 9.3rem;
}
@media screen and (max-width: 768px) {
  .p-hygiene-intro {
    padding: 3.3rem 0;
  }
  .p-hygiene-intro__heading {
    font-size: 1.8rem;
    text-align: center;
    padding: 0 0 1rem;
    margin: 0 0 1.7rem;
  }
  .p-hygiene-intro__content {
    padding: 0;
  }
}

.p-hygiene-mgt {
  padding: 5.3rem 0;
}
.p-hygiene-mgt__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0.7rem;
  margin: 0 0 3rem;
  border-bottom: 1px solid #292929;
}
.p-hygiene-mgt__count {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: "Aboreto", system-ui;
  font-size: 4rem;
  line-height: 1;
}
.p-hygiene-mgt__title {
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
}
.p-hygiene-mgt__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 2rem;
  margin: 4rem 0 0;
}
.p-hygiene-mgt__img {
  width: calc(50% - 1rem);
  aspect-ratio: 3/2;
}
.p-hygiene-mgt__img07 {
  width: 100%;
  aspect-ratio: 915/375;
}
.p-hygiene-mgt__block:first-of-type {
  margin-top: 5.3rem;
}
.p-hygiene-mgt__block:not(:last-of-type) {
  margin-bottom: 6.7rem;
}
@media screen and (min-width: 769px) {
  .p-hygiene-mgt__gallery.-col3 {
    gap: 1.3rem 1.3rem;
  }
  .p-hygiene-mgt__gallery.-col3 .p-hygiene-mgt__img {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: calc((100% - 2.7rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .p-hygiene-mgt {
    padding: 5rem 0 0;
  }
  .p-hygiene-mgt__block:first-of-type {
    margin-top: 4.2rem;
  }
  .p-hygiene-mgt__block:not(:last-of-type) {
    margin-bottom: 4.2rem;
  }
  .p-hygiene-mgt__header {
    width: 100vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: last baseline;
        -ms-flex-align: last baseline;
            align-items: last baseline;
    gap: 0 1rem;
    padding: 0 6vw 1rem;
    margin: 0 calc(50% - 50vw) 2.8rem;
  }
  .p-hygiene-mgt__title {
    font-size: 1.8rem;
  }
  .p-hygiene-mgt__count {
    position: initial;
    font-size: 3.3rem;
  }
  .p-hygiene-mgt__gallery {
    gap: 1rem 1rem;
    margin: 2.5rem 0 0;
  }
  .p-hygiene-mgt__img {
    width: calc(50% - 0.5rem);
  }
  .p-hygiene-mgt__img07 {
    width: 100%;
    aspect-ratio: 354/250;
  }
}

/* ================================
Company
================================ */
.p-company-outline {
  max-width: 49.3rem;
  margin: 0 auto;
}
.p-company-outline__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 10rem;
  padding: 1rem 0;
  border-top: 1px solid #292929;
}
.p-company-outline__header {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2rem;
}
.p-company-outline__main-title {
  width: 6rem;
  font-weight: 400;
}
.p-company-outline__sub-title {
  font-family: "Aboreto", system-ui;
  color: rgba(175, 134, 110, 0.9);
  text-transform: uppercase;
}
.p-company-outline__desc {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 17.7rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-company-outline__item {
    gap: 0;
    padding: 0.5rem 6vw;
  }
  .p-company-outline__item:first-of-type {
    border-top: none;
  }
  .p-company-outline__header {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 8.3rem;
  }
  .p-company-outline__main-title {
    width: auto;
  }
  .p-company-outline__sub-title {
    display: none;
  }
  .p-company-outline__desc {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/* ================================
Adjistment
================================ */
.u-fit--contain {
  text-align: center;
}
.u-fit--contain img,
.u-fit--contain source {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.u-color--main {
  color: rgba(175, 134, 110, 0.9);
}
.u-color--wh {
  color: #fff;
}

.u-align--center {
  text-align: center;
}
.u-align--right {
  text-align: right;
}
.u-align--left {
  text-align: left;
}

.u-indent--01 {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.u-display_ib {
  display: inline-block;
}
.u-display_ib--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_ib--sm {
    display: inline-block;
  }
}

.u-display--lg {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display--lg {
    display: block;
  }
}
.u-display--md {
  display: none;
}
@media screen and (max-width: 920px) {
  .u-display--md {
    display: block;
  }
}
.u-display--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sm {
    display: block;
  }
}

.u-display_flex--lg {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display_flex--lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--md {
  display: none;
}
@media screen and (max-width: 920px) {
  .u-display_flex--md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.u-display_flex--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display_flex--sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1024px) {
  .u-hidden--lg {
    display: none;
  }
}
@media screen and (max-width: 920px) {
  .u-hidden--md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden--sm {
    display: none;
  }
}