/* Universal box-sizing reset */
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  zoom: 1;
  min-height: auto;
}

/* Set default styles for html */
html {
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
a,
figure,
blockquote,
dl,
dd,
input,
textarea,
label {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size-adjust: 0.5;
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100vw;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
}

strong {
  font-style: normal;
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  outline: none;
  cursor: pointer;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style-type: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

iframe {
  border: none;
  display: block;
}

:root {
  --c-bg: #d9d9d9;
  --c-bg2: #7a7979;
  --c-panel: #5d5c5c;
  --c-dark: #5d5c5c;
  --c-white: #fff;
  --c-txt: #333;
  --c-label: #dcdcdc;
  --c-ghost: #969696;
  --c-num: #f7f7f7;
  --c-text: #26272a;
  --noto-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --noto-en: "Noto Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Segoe UI", Arial, sans-serif;
  --dai: "Dai Banna SIL", "Cormorant Garamond", "Times New Roman", Georgia,
    "Hiragino Mincho ProN", serif;
  --shippori: "Shippori Mincho", "Shippori Mincho B1", "Hiragino Mincho ProN",
    "Yu Mincho", "Noto Serif JP", "MS PMincho", serif;
}

.noto {
  font-family: var(--noto-ja) !important;
}

.dai {
  font-family: var(--dai) !important;
}

.shippori {
  font-family: var(--shippori) !important;
}

body {
  font-family: var(--shippori);
  font-size: 0.8125rem;
  font-weight: 300;
  background-color: var(--c-bg);
  color: var(--c-dark);
  line-height: 1.87;
  letter-spacing: 0.09em;
  transition: all 0.3s ease;
}
body.is-back {
  background-color: var(--c-dark);
  color: white;
}

@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

.lg-none {
  display: none;
}
@media (min-width: 992px) {
  .lg-none {
    display: block;
  }
}

.lg-bk {
  display: block;
}
@media (min-width: 992px) {
  .lg-bk {
    display: none;
  }
}

.sp-br > br {
  display: block;
}
@media (min-width: 768px) {
  .sp-br > br {
    display: none;
  }
}

.tab-br > br {
  display: block;
}
@media (min-width: 992px) {
  .tab-br > br {
    display: none;
  }
}

.xl-br > br {
  display: block;
}
@media (min-width: 1200px) {
  .xl-br > br {
    display: none;
  }
}

.reverse-x {
  transform: scale(-1, 1);
}

.reverse-y {
  transform: scale(1, -1);
}

.reverse-xy {
  transform: scale(-1, -1);
}

html.is-resizing *,
html.is-resizing *::before,
html.is-resizing *::after {
  transition: none !important;
}

a {
  transition: all 0.3s ease;
  display: inline-block;
}
a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  opacity: 0.6;
}

.is-scroll-lock {
  overflow: hidden;
}

.js-stagger > * {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-stagger.is-show > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

html:not(.is-page-ready) body:not(.gjs-dashed) {
  opacity: 0;
  visibility: hidden;
}

.gjs-dashed {
  background: transparent;
}
.gjs-dashed .header__nav {
  visibility: visible !important;
  opacity: 1 !important;
}
.gjs-dashed * {
  -webkit-animation: none !important;
          animation: none !important;
  transition: none !important;
}
.gjs-dashed .scroll-mask,
.gjs-dashed .scroll-mask-vertical {
  opacity: 1 !important;
  -webkit-mask-image: none !important;
          mask-image: none !important;
}
.gjs-dashed .p-concept .sec02 .box-txt p {
  color: white !important;
}
.gjs-dashed .js-typein {
  opacity: 1 !important;
}
.gjs-dashed .js-typein > * {
  opacity: 1 !important;
}
.gjs-dashed .page-hr img {
  display: block !important;
}
.gjs-dashed .js-stagger > * {
  opacity: 1 !important;
  transform: none !important;
  filter: blur(0px) !important;
}

/* ==========================================
Text / Image reveal animation hooks
(common.js: .blur / .scroll-mask + .is-visible)
========================================== */
.scroll-mask,
.scroll-mask-vertical {
  display: block;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.scroll-mask img,
.scroll-mask-vertical img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.15);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-mask.is-visible,
.scroll-mask-vertical.is-visible {
  opacity: 1;
}

.scroll-mask.is-visible img,
.scroll-mask-vertical.is-visible img {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-mask,
.scroll-mask-vertical {
    transition: none;
    opacity: 1;
  }
  .scroll-mask img,
.scroll-mask-vertical img {
    transition: none;
    transform: none;
  }
}
.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  color: #fff;
  mix-blend-mode: difference;
}
.header__inner {
  pointer-events: none;
  padding-inline: 20px;
  padding-block: 20px 0px;
}
@media (min-width: 768px) {
  .header__inner {
    padding-inline: 60px;
    padding-block: 33px 0px;
  }
}
@media (min-width: 1200px) {
  .header__inner {
    padding-block: 50px 0px;
    padding-inline: 75px;
  }
}
.header__brand {
  pointer-events: all;
  max-width: clamp(7.5rem, 6.346rem + 4.99vw, 11.063rem);
}
.header__brand:hover {
  opacity: 0.7;
}
.header__nav {
  pointer-events: all;
  position: fixed;
  z-index: 997;
  inset: 0;
  width: 100%;
  height: 100dvh;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../images/deco.jpg) center/cover no-repeat;
  transition: all 0.4s ease;
  opacity: 0;
  margin-left: auto;
  justify-content: center;
  padding-block: 50px;
  padding-inline: 20px;
  overflow-y: auto;
  gap: 30px;
}
.header__nav::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}
.header__nav::-webkit-scrollbar-track {
  background-color: transparent;
}
.header__nav::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: var(--c-dark);
}
@media (max-height: 500px) {
  .header__nav {
    justify-content: flex-start;
  }
}
@media screen and (max-height: 600px) and (orientation: landscape) {
  .header__nav {
    justify-content: flex-start;
  }
}
@media (min-width: 1400px) {
  .header__nav {
    position: static;
    opacity: 1;
    height: auto;
    visibility: visible;
    padding-block: 0px;
    padding-inline: 0px;
    background: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header__nav.open {
  visibility: visible;
  opacity: 1;
}
.header__nav-lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1400px) {
  .header__nav-lists {
    flex: 1;
    flex-direction: row;
    align-items: center;
  }
}
.header__nav-link {
  font-size: 1.25rem;
  color: inherit;
  transition: all 0.3s ease;
  font-family: var(--dai);
}
.header__nav-link:hover {
  opacity: 0.7;
}

#hum-btn {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  margin-block: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  padding: 14.5px 10px;
  border: solid 1px white;
  border-radius: 100px;
  transition: all 0.3s ease;
}
@media (min-width: 1400px) {
  #hum-btn {
    display: none;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  display: inline-block;
  transition: all 0.5s ease;
  box-sizing: border-box;
  width: 24px;
  height: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.btn-trigger__bar {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  height: 1.5px;
  transition: all 0.5s ease;
  background-color: white;
  border-radius: 99px;
}
@media (min-width: 768px) {
  .btn-trigger__bar {
    height: 2px;
  }
}
.btn-trigger__bar:nth-of-type(1) {
  top: 0;
  left: 0;
  -webkit-animation: menu-bar01 0.75s forwards;
          animation: menu-bar01 0.75s forwards;
}
.btn-trigger__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.btn-trigger__bar:nth-of-type(3) {
  bottom: 0;
  left: 0;
  -webkit-animation: menu-bar02 0.75s forwards;
          animation: menu-bar02 0.75s forwards;
}

.is-nav-open .header {
  color: var(--c-dark);
  mix-blend-mode: normal;
}
.is-nav-open #hum-btn {
  border: solid 1.5px var(--c-dark);
}
.is-nav-open .btn-trigger {
  flex-direction: row;
  transition: all 0.5s ease;
}
.is-nav-open .btn-trigger__bar {
  background-color: var(--c-dark);
}
.is-nav-open .btn-trigger__bar:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
          animation: active-menu-bar01 0.75s forwards;
}
.is-nav-open .btn-trigger__bar:nth-of-type(2) {
  opacity: 0;
}
.is-nav-open .btn-trigger__bar:nth-of-type(3) {
  -webkit-animation: active-menu-bar02 0.75s forwards;
          animation: active-menu-bar02 0.75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6.5px) rotate(0);
  }
  100% {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6.5px) rotate(0);
  }
  100% {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}
@-webkit-keyframes menu-bar01 {
  0% {
    transform: translateY(7px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(7px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  50% {
    transform: translateY(-6.5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  50% {
    transform: translateY(-6.5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.bg-shadow {
  background: rgba(0, 0, 0, 0.5215686275);
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 996;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.is-nav-open .bg-shadow {
  opacity: 1;
}

.footer {
  background: url(../images/ft-bg.jpg) center/cover no-repeat;
  padding-block: 80px;
  color: white;
}
@media (min-width: 576px) {
  .footer {
    padding-block: 120px;
  }
}
@media (min-width: 768px) {
  .footer {
    padding-block: 170px;
  }
}
.footer__inner {
  padding-inline: 20px;
}
@media (min-width: 1200px) {
  .footer__inner {
    max-width: 1300px;
    margin-inline: auto;
  }
}
.footer__nav {
  gap: 20px;
  flex-direction: column;
  align-items: center;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
@media (min-width: 992px) {
  .footer__nav {
    flex-direction: row;
  }
}
.footer__nav-lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__nav-lists {
    flex-direction: row;
  }
}
.footer__nav a {
  font-family: var(--dai);
}
@media (min-width: 768px) {
  .footer__nav a {
    font-size: clamp(0.75rem, 0.588rem + 0.7vw, 1.25rem);
  }
}
.footer__top {
  border-bottom: solid 1px white;
}

.l-sec {
  position: relative;
  overflow-x: clip;
}
.l-sec--dark {
  background-color: var(--c-dark);
  color: var(--c-white);
}

@media (min-width: 1400px) {
  .container {
    max-width: 78%;
  }
}

@media (min-width: 1400px) {
  .p-top-fv > .container, .p-top-service > .container, .p-top-salon > .container, .p-top-insta > .container {
    max-width: 89%;
  }
}
.p-top-fv > .container {
  position: relative;
}
.p-top-blog > .container, .p-top-access > .container {
  max-width: 895px;
}
.p-top-fv {
  padding-block: clamp(120px, 15.01vw, 227px) clamp(40px, 9.19vw, 139px);
  padding-inline: 20px;
}
.p-top-fv__head {
  margin-inline: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-fv__head {
    width: 90%;
  }
}
.p-top-fv__ttl {
  font-size: clamp(1.25rem, 0.643rem + 2.63vw, 3.125rem);
  font-weight: 300;
  line-height: 1.32;
  letter-spacing: clamp(0.125rem, 0.3vw, 0.281rem);
  color: var(--c-dark);
}
.p-top-fv__lead {
  font-size: clamp(0.813rem, 0.671rem + 0.61vw, 1.25rem);
  letter-spacing: clamp(0.05rem, 0.12vw, 0.113rem);
  color: var(--c-dark);
}
.p-top-fv__img {
  margin-inline: auto;
  max-width: 1232px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top-fv__img {
    width: 85%;
  }
}
.p-top-fv__img .swiper-wrapper,
.p-top-fv__img .swiper-slide {
  min-height: inherit;
}
.p-top-fv__img img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-concept {
  padding-block: clamp(80px, 13.36vw, 202px) clamp(80px, 12vw, 181px);
}
.p-top-concept .container {
  position: relative;
  z-index: 2;
}
.p-top-concept__txt {
  padding-top: clamp(0px, 1.19vw, 18px);
}
.p-top-concept__catch {
  font-size: clamp(1.125rem, 1.52vw, 1.438rem);
  line-height: 1.6;
  letter-spacing: clamp(0.063rem, 0.14vw, 0.129rem);
  color: var(--c-txt);
}
.p-top-concept__desc {
  max-width: 507px;
  color: var(--c-dark);
}
.p-top-concept__img {
  margin-inline: auto;
  width: 100%;
  max-width: 458px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .p-top-concept__img {
    margin-left: auto;
    margin-right: 0;
  }
}
.p-top-concept__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-concept__deco {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  margin-bottom: clamp(-40px, -3.97vw, -60px);
  width: clamp(220px, 51vw, 771px);
  aspect-ratio: 771/181;
  overflow: hidden;
}
.p-top-concept__deco > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-first {
  padding-block: clamp(90px, 12.63vw, 191px) clamp(80px, 16.27vw, 246px);
}
@media (min-width: 992px) {
  .p-top-first__figs {
    padding-top: clamp(24px, 1.72vw, 26px);
  }
}
.p-top-first__figs-inner {
  position: relative;
  width: 100%;
  max-width: 407px;
  margin-inline: auto;
  aspect-ratio: 407/644;
}
.p-top-first__deco, .p-top-first__img {
  position: absolute;
  width: 70.27%;
  aspect-ratio: 286/347;
  overflow: hidden;
}
.p-top-first__deco > img, .p-top-first__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-first__deco {
  left: 0;
  top: 28.26%;
  z-index: 1;
}
.p-top-first__img--01 {
  left: 16.22%;
  top: 0;
  z-index: 2;
}
.p-top-first__img--02 {
  left: 29.73%;
  top: 46.12%;
  z-index: 3;
}
.p-top-first__catch {
  font-size: clamp(1.125rem, 1.52vw, 1.438rem);
  line-height: 1.6;
  letter-spacing: clamp(0.063rem, 0.14vw, 0.129rem);
  color: var(--c-txt);
}
.p-top-first__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.65vw, 40px);
  padding-block: clamp(14px, 2.18vw, 33px);
  border-bottom: 1px solid currentColor;
}
.p-top-first__num {
  flex: 0 0 auto;
  width: clamp(44px, 4.7vw, 71px);
  font-size: clamp(2.25rem, 4.96vw, 4.688rem);
  font-weight: 500;
  line-height: 1;
  color: var(--c-num);
  opacity: 0.5;
}
.p-top-first__name {
  flex: 1 1 auto;
  font-size: clamp(0.938rem, 1.46vw, 1.375rem);
  line-height: 1.5;
  color: var(--c-dark);
}
.p-top-service {
  padding-block: clamp(70px, 8.4vw, 127px) clamp(60px, 9.72vw, 147px);
}
.p-top-service__lead {
  max-width: 492px;
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.35;
  letter-spacing: clamp(0.05rem, 0.12vw, 0.113rem);
  color: var(--c-label);
}
.p-top-service__list {
  --bs-gutter-x: clamp(16px, 3.97vw, 60px);
  --bs-gutter-y: clamp(24px, 3.97vw, 60px);
}
.p-top-service__card {
  position: relative;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-service__card {
    min-height: 350px;
  }
}
.p-top-service__card:hover {
  opacity: 1;
}
.p-top-service__img {
  width: 100%;
  overflow: hidden;
  min-height: inherit;
}
.p-top-service__img > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-top-service__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
}
.p-top-service__body .btn-wrap {
  margin-top: 50px;
}
.p-top-service__name {
  font-size: clamp(1.375rem, 3.17vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.p-top-service__card:hover .p-top-service__img > img {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .p-top-service__img > img {
    transition: none;
  }
  .p-top-service__card:hover .p-top-service__img > img {
    transform: none;
  }
}
.p-top-salon {
  padding-block: clamp(50px, 6.15vw, 93px) clamp(70px, 9.13vw, 138px);
}
.p-top-salon__item + .p-top-salon__item {
  margin-top: clamp(16px, 3.97vw, 60px);
}
.p-top-salon__link {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.79vw, 12px);
  padding-bottom: clamp(12px, 2.05vw, 31px);
  border-bottom: 1px solid var(--c-white);
}
.p-top-salon__num {
  flex: 0 0 auto;
  font-size: clamp(1.875rem, 4.23vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--c-bg2);
  opacity: 0.5;
}
.p-top-salon__name {
  flex: 1 1 auto;
  margin-left: clamp(-8px, -0.66vw, -10px);
  font-size: clamp(1.25rem, 2.65vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-label);
}
.p-top-salon__arrow {
  flex: 0 0 auto;
  width: clamp(56px, 8.2vw, 124px);
  height: auto;
  transition: transform 0.3s ease;
}
.p-top-salon__link:hover .p-top-salon__arrow {
  transform: translateX(8px);
}
@media (prefers-reduced-motion: reduce) {
  .p-top-salon__arrow, .p-top-salon__link:hover .p-top-salon__arrow {
    transition: none;
    transform: none;
  }
}
.p-top-insta {
  padding-block: clamp(60px, 6.35vw, 96px) clamp(70px, 8.73vw, 132px);
}
.p-top-insta__wide {
  --bs-gutter-x: clamp(12px, 2.05vw, 31px);
}
.p-top-insta__list {
  --bs-gutter-x: clamp(12px, 2.05vw, 31px);
  --bs-gutter-y: clamp(12px, 2.05vw, 31px);
}
.p-top-insta__img {
  width: 100%;
  aspect-ratio: 314/399;
  overflow: hidden;
}
.p-top-insta__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-top-insta__item:hover .p-top-insta__img > img {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .p-top-insta__img > img {
    transition: none;
    transform: none;
  }
}
.p-top-blog {
  padding-block: clamp(70px, 9.92vw, 150px) clamp(60px, 8.2vw, 124px);
}
.p-top-blog__link {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
  padding-block: clamp(14px, 1.85vw, 28px);
  border-bottom: 1px solid var(--c-dark);
  color: var(--c-dark);
}
@media (min-width: 768px) {
  .p-top-blog__link {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.p-top-blog__link:hover {
  opacity: 0.7;
}
.p-top-blog__item:first-child .p-top-blog__link {
  padding-top: 0;
}
.p-top-blog__date {
  flex: 0 0 auto;
  font-family: var(--noto-ja);
  font-weight: 300;
  font-size: clamp(0.813rem, 1.06vw, 1rem);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-top-blog__date {
    width: clamp(120px, 19.38vw, 293px);
  }
}
.p-top-blog__ttl {
  flex: 1 1 auto;
  font-size: clamp(0.875rem, 1.06vw, 1rem);
  line-height: 1.6;
}
.p-top-access {
  padding-block: 0px clamp(70px, 9.92vw, 150px);
}
.p-top-access__txt {
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.5;
  text-align: center;
  color: var(--c-dark);
}
.p-top-access__map {
  width: 100%;
  overflow: hidden;
}
.p-top-access__map iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.p-top-access__map iframe:hover {
  filter: grayscale(0%);
}

.c-hd {
  position: relative;
  padding-top: clamp(24px, 3.44vw, 52px);
}
.c-hd__ghost {
  position: absolute;
  top: 0;
  left: -10px;
  display: block;
  font-size: clamp(2.5rem, 1.589rem + 3.94vw, 5.313rem);
  line-height: 1.17;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: normal;
}
.c-hd__main {
  position: relative;
  font-size: clamp(1.75rem, 3.17vw, 3rem);
  line-height: 1.17;
  color: var(--c-dark);
}
.c-hd--dark .c-hd__ghost {
  color: rgba(150, 150, 150, 0.5);
}
.c-hd--dark .c-hd__main {
  color: var(--c-white);
}
.c-hd--gray .c-hd__ghost {
  color: rgba(240, 240, 240, 0.5);
}
.c-hd--center {
  text-align: center;
}
.c-hd--center .c-hd__ghost {
  left: 0;
  right: 0;
}
.c-hd--offset .c-hd__ghost {
  left: clamp(28px, 5.95vw, 90px);
}
.c-hd--flush .c-hd__ghost {
  left: 0;
}
.c-hd--sm .c-hd__ghost {
  font-size: clamp(1.75rem, 4.76vw, 4.5rem);
}
.c-hd--sm .c-hd__main {
  font-size: clamp(1rem, 1.19vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 186px;
  max-width: 100%;
  min-height: 42px;
  padding-inline: 10px;
  border: 1px solid var(--c-dark);
  color: var(--c-dark);
  font-family: var(--noto-ja);
  font-weight: 300;
  font-size: clamp(0.875rem, 1.06vw, 1rem);
  line-height: 1.4;
  text-align: center;
  transition: all 0.3s ease;
}
.c-btn:hover {
  background-color: var(--c-dark);
  color: var(--c-bg);
}
.c-btn--wh {
  border-color: var(--c-white);
  color: var(--c-white);
}
.c-btn--wh:hover {
  background-color: var(--c-white);
  color: var(--c-dark);
}
.c-btn--center {
  margin-inline: auto;
}
.c-btn--right {
  margin-left: auto;
}

.c-reserve {
  position: fixed;
  z-index: 99;
  right: 4px;
  bottom: clamp(-20px, -1.32vw, -16px);
  display: grid;
  place-items: center;
  width: clamp(120px, 16vw, 242px);
  aspect-ratio: 242/248;
  bottom: 20px;
  right: 20px;
  border-radius: 1000px;
}
.c-reserve__circle {
  width: clamp(104px, 13.89vw, 210px);
  height: auto;
  transition: transform 0.6s ease;
}
.c-reserve__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--noto-ja);
  font-weight: 300;
  font-size: clamp(0.75rem, 1.32vw, 1.25rem);
  line-height: 1;
  white-space: nowrap;
  color: var(--c-reserve-label, #808080);
}
.c-reserve:hover .c-reserve__circle {
  transform: rotate(30deg);
}

@media (prefers-reduced-motion: reduce) {
  .c-reserve__circle,
.c-reserve:hover .c-reserve__circle {
    transition: none;
    transform: none;
  }
}
.c-reservation {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: clamp(40px, 9.92vw, 150px);
  margin-inline: auto;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 700/128;
  border: 1px solid var(--c-dark);
  padding: clamp(3px, 0.4vw, 6px);
  overflow: hidden;
}
.c-reservation__bg {
  position: absolute;
  top: clamp(3px, 0.4vw, 6px);
  left: clamp(3px, 0.4vw, 6px);
  width: calc(100% - clamp(6px, 0.8vw, 12px));
  height: calc(100% - clamp(6px, 0.8vw, 12px));
  -o-object-fit: cover;
     object-fit: cover;
}
.c-reservation__label {
  position: relative;
  z-index: 1;
  font-family: var(--noto-ja);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.65vw, 2.5rem);
  line-height: 1.2;
  color: var(--c-dark);
}
.c-reservation:hover {
  opacity: 0.85;
}

.page-fv {
  padding-top: clamp(7.5rem, 5.273rem + 9.63vw, 14.375rem);
}
.page-fv__text {
  margin-bottom: 60px;
}
.page-fv__text .en,
.page-fv__text .ja {
  color: #8b8b8b;
}
.page-fv__text .en {
  font-size: clamp(1.875rem, 0.66rem + 5.25vw, 5.625rem);
  margin-bottom: 30px;
}
.page-fv__text .ja {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.page-fv__img {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .page-fv__img {
    padding-bottom: 75px;
  }
}
.page-fv__img img {
  min-height: 300px;
  aspect-ratio: 1187/546;
}
.page-fv__img .bg-deco {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background: url(../images/deco.jpg) center/cover no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 1187/546;
  min-height: 300px;
  max-width: 90%;
}
@media (min-width: 576px) {
  .page-fv__img .bg-deco {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .page-fv__img .bg-deco {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .page-fv__img .bg-deco {
    max-width: 960px;
  }
}
@media (min-width: 1400px) {
  .page-fv__img .bg-deco {
    max-width: 78%;
  }
}

.c-media-row {
  padding-block: clamp(24px, 3.64vw, 55px);
  --bs-gutter-x: clamp(24px, 3.57vw, 54px);
  --bs-gutter-y: clamp(20px, 2.65vw, 40px);
  margin-top: 0;
}
.c-media-row__img {
  margin-top: 0;
}
.c-media-row__img > img {
  display: block;
  width: 100%;
  max-width: 532px;
  height: auto;
  margin-inline: auto;
  aspect-ratio: 532/320;
}
.c-media-row__img.video-col img {
  width: 50%;
}
.c-media-row__img.video-col video {
  width: 50%;
}
.c-media-row__img.video-col > div {
  aspect-ratio: 532/320;
  max-width: 532px;
}
.c-media-row__body {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .c-media-row__body {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .c-media-row:nth-child(odd) {
    padding-right: 80px;
  }
}
@media (min-width: 992px) {
  .c-media-row:nth-child(even) {
    padding-left: 80px;
  }
}

.c-gallery__list {
  --bs-gutter-y: clamp(16px, 2vw, 30px);
}
.c-gallery__item > img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .c-homecare__desc {
    max-width: 480px;
  }
}
.c-homecare__catch {
  font-size: clamp(1.063rem, 1.32vw, 1.25rem);
  line-height: 1.5;
  color: var(--c-txt);
}
.c-homecare__figs {
  position: relative;
  display: flow-root;
  width: 100%;
  max-width: 624px;
  margin-inline: auto;
}
.c-homecare__figs img {
  display: block;
  width: 100%;
  height: auto;
}
.c-homecare__fig01 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 29.49%;
  width: 70.51%;
}
.c-homecare__fig02 {
  position: relative;
  z-index: 2;
  margin-top: 188px;
  width: 71.31%;
}

.p-concept__about {
  padding-block: clamp(70px, 10.71vw, 162px) clamp(60px, 7.87vw, 119px);
}
.p-concept__catch {
  font-size: clamp(1.125rem, 1.59vw, 1.5rem);
  line-height: 1.6;
  letter-spacing: clamp(0.063rem, 0.14vw, 0.129rem);
  color: var(--c-txt);
}
.p-concept__values {
  padding-block: clamp(70px, 9.59vw, 145px) clamp(30px, 3.37vw, 51px);
}
.p-concept__lead {
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.5;
}
.p-concept__item {
  padding-block: clamp(40px, 6.61vw, 100px);
  --bs-gutter-x: clamp(24px, 3.57vw, 54px);
}
.p-concept__item + .p-concept__item {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.p-concept__img > img {
  display: block;
  width: 100%;
  height: auto;
}
.p-concept__head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 clamp(10px, 1.72vw, 26px);
}
.p-concept__num {
  position: absolute;
  left: 0;
  top: clamp(-10px, -0.73vw, -8px);
  font-size: clamp(1.75rem, 2.65vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--c-bg2);
  opacity: 0.5;
  pointer-events: none;
}
.p-concept__name {
  position: relative;
  padding-left: clamp(18px, 1.72vw, 26px);
  font-size: clamp(1.25rem, 1.59vw, 1.5rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: var(--c-white);
}
.p-concept__sub {
  position: relative;
  font-size: clamp(0.75rem, 0.93vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.p-concept__style {
  padding-block: clamp(70px, 9.92vw, 150px) clamp(60px, 10.12vw, 153px);
}
@media (min-width: 1400px) {
  .p-concept__style > .container {
    max-width: 89%;
  }
}
@media (min-width: 992px) {
  .p-concept__style-txt {
    padding-top: clamp(0px, 4.63vw, 70px);
  }
}
.p-concept__figs {
  position: relative;
  display: flow-root;
  width: 100%;
  max-width: 535px;
  margin-inline: auto;
}
.p-concept__figs img {
  display: block;
  width: 100%;
  height: auto;
}
.p-concept__fig01, .p-concept__fig-deco {
  position: absolute;
}
.p-concept__fig01 {
  left: 0;
  top: 0;
  width: 57.94%;
  z-index: 2;
}
.p-concept__fig-deco {
  left: 42.8%;
  top: 28.76%;
  width: 82.99%;
  z-index: 1;
}
.p-concept__fig02 {
  position: relative;
  z-index: 3;
  margin-left: 44.86%;
  margin-top: 50.09%;
  width: 55.14%;
}

.p-first-visit__promise, .p-first-visit__flow, .p-first-visit__faq {
  padding-block: clamp(70px, 9.92vw, 150px);
}
.p-first-visit__lead {
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.5;
}
.p-first-visit__item {
  padding-block: clamp(40px, 6.61vw, 100px);
  --bs-gutter-x: clamp(24px, 3.57vw, 54px);
}
.p-first-visit__item + .p-first-visit__item {
  border-top: 1px solid rgba(93, 92, 92, 0.35);
}
.p-first-visit__img > img {
  display: block;
  width: 100%;
  height: auto;
}
.p-first-visit__head {
  position: relative;
}
.p-first-visit__num {
  position: absolute;
  left: 0;
  top: clamp(-10px, -0.73vw, -8px);
  font-size: clamp(1.75rem, 2.65vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--c-num);
  pointer-events: none;
}
.p-first-visit__name {
  position: relative;
  padding-left: clamp(18px, 1.72vw, 26px);
  font-size: clamp(1.063rem, 1.32vw, 1.25rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--c-dark);
}
.p-first-visit__step {
  position: relative;
  padding-bottom: clamp(40px, 5.29vw, 80px);
  --bs-gutter-y: clamp(20px, 2.65vw, 40px);
  --p-num: clamp(44px, 4.83vw, 73px);
  --p-col-pad: 15px;
}
.p-first-visit__step:last-child {
  padding-bottom: 0;
}
.p-first-visit__step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: var(--p-num);
  bottom: 0;
  left: calc(var(--p-col-pad) + var(--p-num) / 2);
  transform: translateX(-50%);
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
.p-first-visit__step-main {
  align-items: flex-start;
  gap: clamp(16px, 2.84vw, 43px);
}
.p-first-visit__step-num {
  flex: 0 0 auto;
  width: var(--p-num, clamp(44px, 4.83vw, 73px));
  background-color: var(--c-dark);
}
.p-first-visit__step-num > img {
  display: block;
  width: 100%;
  height: auto;
}
.p-first-visit__step-txt {
  flex: 1 1 auto;
  padding-block: clamp(10px, 1.5vw, 20px);
}
.p-first-visit__step-name {
  font-size: clamp(1.063rem, 1.46vw, 1.375rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--c-white);
}
.p-first-visit__step-img > img {
  display: block;
  width: 100%;
  max-width: 286px;
  height: auto;
  margin-left: auto;
}
.p-first-visit__faq .c-hd__main {
  color: var(--c-white);
}
.p-first-visit__faq .c-hd__ghost {
  color: rgba(150, 150, 150, 0.5);
}
.p-first-visit__qa {
  padding: clamp(20px, 2.65vw, 40px) clamp(20px, 3.04vw, 46px);
  border: 1px solid rgba(93, 92, 92, 0.35);
}
.p-first-visit__qa + .p-first-visit__qa {
  margin-top: clamp(16px, 2.25vw, 34px);
}
.p-first-visit__q, .p-first-visit__a {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
}
.p-first-visit__q::before, .p-first-visit__a::before {
  flex: 0 0 auto;
}
.p-first-visit__q {
  font-size: clamp(0.938rem, 1.32vw, 1.25rem);
  line-height: 1.5;
  color: var(--c-dark);
  font-weight: 400;
}
.p-first-visit__q::before {
  content: "Q.";
}
.p-first-visit__a {
  font-size: clamp(0.813rem, 1.06vw, 1rem);
  line-height: 1.875;
  color: var(--c-dark);
  font-weight: 400;
}
.p-first-visit__a::before {
  content: "A.";
}

.p-extension__method, .p-extension__types, .p-extension__care {
  padding-block: clamp(70px, 9.92vw, 150px);
}
.p-extension__lead {
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.5;
}
.p-extension__type-list {
  --bs-gutter-x: clamp(16px, 1.98vw, 30px);
  --bs-gutter-y: clamp(16px, 1.98vw, 30px);
}
.p-extension__type-inner {
  height: 100%;
  padding: clamp(15px, 4.3vw, 65px);
  border: 1px solid var(--c-label);
}
.p-extension__type-en {
  font-size: clamp(1.5rem, 2.45vw, 32px);
  line-height: 1.17;
  color: var(--c-white);
}
.p-extension__type-name {
  font-size: clamp(1.063rem, 0.961rem + 0.44vw, 1.375rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--c-white);
  margin-top: 8px;
}
.p-extension__type-term {
  font-size: clamp(0.938rem, 1.32vw, 1.25rem);
  line-height: 1.5;
  color: var(--c-white);
}
.p-extension__note {
  font-size: clamp(0.75rem, 0.93vw, 0.875rem);
  line-height: 1.6;
}

.p-color__method, .p-color__design, .p-color__care {
  padding-block: clamp(70px, 9.92vw, 150px);
}
.p-color__lead {
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.5;
}
.p-color__variations {
  --bs-gutter-y: clamp(40px, 5.29vw, 80px);
  align-items: stretch;
}
.p-color__variation {
  width: 100%;
  max-width: 487px;
  height: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.p-color__variation-img {
  width: 88.3%;
}
.p-color__variation-img > img {
  display: block;
  width: 100%;
  height: auto;
}
.p-color__variation-body {
  position: relative;
  z-index: 1;
  width: 88.3%;
  margin-top: -8.83%;
  margin-left: 11.7%;
  padding: 18.69% 10.88% 13.96%;
  border: 1px solid var(--c-label);
  flex-grow: 1;
}
.p-color__variation-en {
  font-size: clamp(1.125rem, 1.59vw, 1.5rem);
  line-height: 1.2;
  color: var(--c-white);
}
.p-color__variation-ja {
  font-size: clamp(0.75rem, 0.93vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.p-blog-content {
  padding-block: 80px 60px;
}
@media (min-width: 576px) {
  .p-blog-content {
    padding-block: 120px 80px;
  }
}
@media (min-width: 768px) {
  .p-blog-content {
    padding-block: 150px 100px;
  }
}
.p-blog-content .container {
  max-width: 895px;
}
.p-blog__link {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
  padding-block: clamp(14px, 1.85vw, 28px);
  border-bottom: 1px solid var(--c-dark);
  color: var(--c-dark);
}
@media (min-width: 768px) {
  .p-blog__link {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.p-blog__link:hover {
  opacity: 0.7;
}
.p-blog__item:first-child .p-blog__link {
  padding-top: 0;
}
.p-blog__date {
  flex: 0 0 auto;
  font-family: var(--noto-ja);
  font-weight: 300;
  font-size: clamp(0.813rem, 1.06vw, 1rem);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-blog__date {
    width: clamp(120px, 19.38vw, 293px);
  }
}
.p-blog__ttl {
  flex: 1 1 auto;
  font-size: clamp(0.875rem, 1.06vw, 1rem);
  line-height: 1.6;
}

.p-blogdetail-content {
  padding-block: clamp(120px, 18vw, 230px) clamp(80px, 7vw, 120px);
}

.p-blog .webgene-pagination ul,
.p-blogdetail .webgene-pagination ul {
  max-width: 430px;
  width: 100%;
  margin-inline: auto;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 45px;
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination ul,
.p-blogdetail .webgene-pagination ul {
    flex-direction: row;
    align-items: center;
    margin-top: 75px;
  }
}
.p-blog .webgene-pagination ul .prev,
.p-blog .webgene-pagination ul .next,
.p-blog .webgene-pagination ul .back,
.p-blogdetail .webgene-pagination ul .prev,
.p-blogdetail .webgene-pagination ul .next,
.p-blogdetail .webgene-pagination ul .back {
  max-width: 185px;
  width: 100%;
  text-align: center;
  font-family: var(--noto-ja);
}
.p-blog .webgene-pagination ul .prev a,
.p-blog .webgene-pagination ul .next a,
.p-blog .webgene-pagination ul .back a,
.p-blogdetail .webgene-pagination ul .prev a,
.p-blogdetail .webgene-pagination ul .next a,
.p-blogdetail .webgene-pagination ul .back a {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  border: solid 1px var(--c-dark);
}
.p-blog .webgene-pagination ul .prev a:hover,
.p-blog .webgene-pagination ul .next a:hover,
.p-blog .webgene-pagination ul .back a:hover,
.p-blogdetail .webgene-pagination ul .prev a:hover,
.p-blogdetail .webgene-pagination ul .next a:hover,
.p-blogdetail .webgene-pagination ul .back a:hover {
  background-color: var(--c-dark);
  color: white;
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination ul .next,
.p-blogdetail .webgene-pagination ul .next {
    margin-left: auto;
  }
}
.p-blog .webgene-pagination ul .back,
.p-blogdetail .webgene-pagination ul .back {
  margin-inline: auto;
}
.p-blog .webgene-pagination ul .back span,
.p-blogdetail .webgene-pagination ul .back span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.p-blog .webgene-pagination ul .back span::before,
.p-blogdetail .webgene-pagination ul .back span::before {
  content: "";
  display: block;
  background: url(../images/arrow_bk.svg) center/contain no-repeat;
  width: 30px;
  height: 3.5px;
  transition: inherit;
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination ul .back span::before,
.p-blogdetail .webgene-pagination ul .back span::before {
    width: 48px;
    height: 5px;
  }
}
.p-blog .webgene-pagination ul .back a:hover span::before,
.p-blogdetail .webgene-pagination ul .back a:hover span::before {
  background: url(../images/back_arrow_wh.svg) center/contain no-repeat;
}

.p-treatment__method, .p-treatment__levels, .p-treatment__care {
  padding-block: clamp(70px, 9.92vw, 150px);
}
.p-treatment__lead {
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
  line-height: 1.5;
}
@media (min-width: 1400px) {
  .p-treatment__levels-inner {
    max-width: 91%;
  }
}
.p-treatment__level-list {
  --bs-gutter-x: clamp(20px, 6.61vw, 100px);
  --bs-gutter-y: clamp(32px, 3.7vw, 56px);
  padding-inline: 20px;
}
@media (min-width: 992px) {
  .p-treatment__level-list {
    padding-inline: 0;
  }
}
.p-treatment__level {
  padding-block: clamp(16px, 1.85vw, 28px);
  padding-inline: 10px;
}
@media (min-width: 992px) {
  .p-treatment__level {
    padding-inline: 20px;
  }
}
@media (min-width: 1200px) {
  .p-treatment__level {
    padding-inline: clamp(20px, 4vw, 50px);
  }
}
@media (min-width: 992px) {
  .p-treatment__level:first-child {
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .p-treatment__level:last-child {
    padding-right: 0;
  }
}
.p-treatment__level + .p-treatment__level {
  border-top: 1px solid white;
}
@media (min-width: 992px) {
  .p-treatment__level + .p-treatment__level {
    border-top: none;
    border-left: 1px solid white;
  }
}
.p-treatment__level-step {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--c-white);
}
.p-treatment__level-num {
  font-size: clamp(2rem, 3.17vw, 3rem);
  line-height: 1.2;
}
.p-treatment__level-unit {
  font-size: clamp(1.25rem, 1.98vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.p-treatment__level-name {
  font-size: clamp(0.875rem, 1.06vw, 1rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: var(--c-white);
}
.p-treatment__note {
  font-size: clamp(0.75rem, 0.93vw, 0.875rem);
  line-height: 1.6;
}

.p-menu__categories {
  padding-block: clamp(70px, 11.84vw, 179px) 0;
}
.p-menu__price {
  padding-block: clamp(60px, 8.27vw, 125px) clamp(70px, 9.92vw, 150px);
}
.p-menu__inner {
  width: 100%;
  max-width: 971px;
  margin-inline: auto;
}
.p-menu__cat-list {
  --bs-gutter-x: clamp(16px, 1.98vw, 30px);
  --bs-gutter-y: clamp(16px, 1.32vw, 20px);
}
.p-menu__cat-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.46vw, 7px);
  height: 100%;
  min-height: clamp(64px, 6.08vw, 92px);
  padding: 10px;
  border: 1px solid var(--c-dark);
  color: var(--c-dark);
  text-align: center;
  transition: all 0.3s ease;
}
.p-menu__cat-link:hover {
  background-color: var(--c-dark);
  color: var(--c-bg);
}
.p-menu__cat-en {
  font-size: clamp(1.125rem, 1.59vw, 1.5rem);
  line-height: 1.2;
}
.p-menu__cat-ja {
  font-size: clamp(0.75rem, 1.06vw, 1rem);
}
.p-menu__group + .p-menu__group {
  margin-top: clamp(60px, 10.52vw, 159px);
}
.p-menu__group-head {
  padding-bottom: clamp(16px, 1.98vw, 30px);
  border-bottom: 1px solid var(--c-dark);
}
.p-menu__group-en {
  font-size: clamp(1.75rem, 3.17vw, 3rem);
}
.p-menu__group-ja {
  font-size: clamp(0.875rem, 1.32vw, 1.25rem);
}
.p-menu .list-dl {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 12px clamp(16px, 2.65vw, 40px);
}
@media (min-width: 768px) {
  .p-menu .list-dl {
    flex-direction: row;
  }
}
.p-menu .list-dl + .list-dl {
  margin-top: 55px;
}
.p-menu .list-dt {
  flex: 1 1 auto;
  min-width: 0;
}
.p-menu .list-dt > h3 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .p-menu .list-dt > h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .p-menu .list-dt > h3 {
    font-size: 1.375rem;
  }
}
.p-menu .list-dd {
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .p-menu .list-dd {
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .p-menu .list-dd {
    font-size: 1.375rem;
  }
}
.p-menu .tags {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 0.86vw, 13px);
}
.p-menu .tag {
  padding: 5px clamp(10px, 1.06vw, 16px);
  border-radius: 999px;
  background-color: #808080;
  font-size: clamp(0.688rem, 0.93vw, 0.875rem);
  color: var(--c-white);
  font-family: var(--noto-ja);
  line-height: 1.2;
}
.p-menu__care-list {
  max-width: 882px;
}
.p-menu__care-item {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4.7vw, 71px);
}
@media (min-width: 768px) {
  .p-menu__care-item {
    flex-direction: row;
    align-items: center;
  }
}
.p-menu__care-item + .p-menu__care-item {
  margin-top: 35px;
}
@media (min-width: 768px) {
  .p-menu__care-item + .p-menu__care-item {
    margin-top: 50px;
  }
}
.p-menu__care-img {
  width: 75%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-menu__care-img {
    width: clamp(140px, 19.71vw, 298px);
  }
}
.p-menu__care-body {
  flex: 1;
  min-width: 0;
}
.p-menu__care-name {
  font-size: 1.0625rem;
}
@media (min-width: 768px) {
  .p-menu__care-name {
    font-size: 1.375rem;
  }
}
.p-menu__care-desc {
  font-size: clamp(0.813rem, 1.06vw, 1rem);
}
.p-menu__care-caution {
  font-size: clamp(0.75rem, 1.06vw, 1rem);
}

.p-info-content {
  padding-block: 80px;
}
@media (min-width: 576px) {
  .p-info-content {
    padding-block: 120px;
  }
}
@media (min-width: 768px) {
  .p-info-content {
    padding-block: 150px;
  }
}
.p-info .staff-contents {
  padding-bottom: 80px;
}
@media (min-width: 576px) {
  .p-info .staff-contents {
    padding-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .p-info .staff-contents {
    padding-bottom: 150px;
  }
}
.p-info .staff-box {
  display: flex;
  max-width: 785px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
@media (min-width: 768px) {
  .p-info .staff-box {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 35px clamp(20px, 8vw, 100px);
  }
}
@media (min-width: 1400px) {
  .p-info .staff-box {
    max-width: 75%;
  }
}
@media (min-width: 768px) {
  .p-info .staff-box .box {
    width: calc(50% - clamp(10px, 4vw, 50px));
  }
}
.p-info .info-contents {
  padding-bottom: 80px;
}
@media (min-width: 576px) {
  .p-info .info-contents {
    padding-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .p-info .info-contents {
    padding-bottom: 150px;
  }
}
.p-info .list-wrap {
  max-width: 853px;
  margin-inline: auto;
}
@media (min-width: 1400px) {
  .p-info .list-wrap {
    max-width: 75%;
  }
}
.p-info .list-wrap .list-dl {
  display: flex;
  flex-direction: column;
  gap: 8px 25px;
  padding-bottom: clamp(14px, 2.31vw, 35px);
  border-bottom: 1px solid var(--c-white);
  padding-inline: 10px;
}
@media (min-width: 768px) {
  .p-info .list-wrap .list-dl {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
@media (min-width: 992px) {
  .p-info .list-wrap .list-dl {
    padding-inline: 25px;
  }
}
.p-info .list-wrap .list-dl + .list-dl {
  margin-top: clamp(14px, 2.31vw, 35px);
}
.p-info .list-wrap .list-dl:last-child {
  border-bottom: none;
}
.p-info .list-wrap .list-dt {
  position: relative;
  width: 100%;
  padding-left: 20px;
  font-size: 1rem;
}
.p-info .list-wrap .list-dt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background-color: var(--c-white);
}
@media (min-width: 768px) {
  .p-info .list-wrap .list-dt {
    font-size: 1.125rem;
    width: auto;
    flex: 0 0 29%;
    padding-left: 0;
  }
  .p-info .list-wrap .list-dt::before {
    content: none;
  }
}
.p-info .list-wrap .list-dd {
  margin-left: 0;
  padding-right: 0;
  padding-left: 20px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .p-info .list-wrap .list-dd {
    font-size: 1.125rem;
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 0;
  }
}
.p-info .access-contents {
  padding-bottom: 80px;
}
@media (min-width: 576px) {
  .p-info .access-contents {
    padding-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .p-info .access-contents {
    padding-bottom: 150px;
  }
}
.p-info .access-map iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-info .access-map iframe {
    height: 500px;
  }
}
.p-info .access-map iframe:hover {
  filter: grayscale(0%);
}

.js-stagger > *.is-action {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}