/* Universal box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

/* Set default styles for html */
html {
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 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 */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

strong {
  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;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover {
  transition: all 0.3s ease;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -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;
  }
}
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--txt);
}
a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--txt);
}

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;
}

.gjs-dashed .sticky-bg {
  position: static !important;
}

:root {
  --alex: alex-brush, sans-serif;
  --shippori: shippori-mincho, sans-serif;
  --gothic: "Zen Kaku Gothic New", sans-serif;
  --txt: #65431e;
  --sub: #8f7e64;
  --br01: #e0d9cd;
  --br02: #e2d6c5;
  --br03: #f6f4ea;
  --br04: #c0b19b;
  --bg-body: linear-gradient(
    189deg,
    #e0d9cd 2.63%,
    #c0b19b 29.8%,
    #e0d9cd 52.29%,
    #c0b19b 77.11%,
    #e0d9cd 100.07%
  );
  --bg-gd: linear-gradient(
    75deg,
    #8f7e64 0%,
    #8f7e64 20%,
    #ebe3d7 40%,
    #ebe3d7 60%,
    #8f7e64 100%
  );
  --bg-gd01: linear-gradient(
    213deg,
    #c0b19b -9.85%,
    #e0d9cd 20.87%,
    #c0b19b 51.59%,
    #e0d9cd 82.31%,
    #c0b19b 113.03%
  );
  --bg-gd02: linear-gradient(
    205deg,
    #8f7e64 -11.33%,
    #c0b19b 54.46%,
    #8f7e64 116.57%
  );
}

.txt {
  color: var(--txt) !important;
}

.sub {
  color: var(--sub) !important;
}

.br01 {
  color: var(--br01) !important;
}

.br02 {
  color: var(--br02) !important;
}

.br03 {
  color: var(--br03) !important;
}

.br04 {
  color: var(--br04) !important;
}

.br05 {
  color: #aa9678 !important;
}

.bg-br03 {
  background-color: var(--br03) !important;
}

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

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

.txt {
  color: var(--txt) !important;
}

.txt-sub {
  color: var(--sub) !important;
}

.txt-wh {
  color: white !important;
}

.bb-txt {
  border-bottom: solid 1px var(--txt);
}

.bb-txt01 {
  border-bottom: solid 1px var(--br01);
}

body {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: var(--shippori);
  font-weight: 400;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: 1.5;
  color: var(--txt);
}

html.is-scroll-lock,
body.is-scroll-lock {
  overflow: hidden;
  touch-action: none;
}

.js-tick {
  overflow: hidden;
  white-space: nowrap;
}

.js-tick-track {
  display: inline-flex;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: loopText var(--loop-duration, 10s) linear infinite;
          animation: loopText var(--loop-duration, 10s) linear infinite;
}

.js-tick-item {
  display: inline-block;
  padding-right: 4rem;
}

@-webkit-keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}

@keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}
.sticky-bg {
  position: fixed;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100vh;
}
.sticky-bg img {
  width: inherit;
  height: inherit;
}

.section-title {
  position: relative;
  z-index: 1;
  padding-top: clamp(18px, 2vw, 24px);
}
.section-title > h2,
.section-title > h3 {
  line-height: normal;
  font-size: clamp(1.438rem, 0.931rem + 2.19vw, 3rem);
  line-height: 1.5;
}
.section-title .en {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 10px;
  color: var(--br02);
  font-family: var(--alex);
  font-size: clamp(1.75rem, 1.021rem + 3.15vw, 4rem);
  line-height: normal;
}
@media (min-width: 768px) {
  .section-title .en {
    left: 19px;
  }
}

.contents-title > h2,
.contents-title > h3 {
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
}
.contents-title > p {
  font-family: var(--gothic);
}

.btn-wrap a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  line-height: normal;
  border-radius: 99px;
  background-image: var(--bg-gd);
  background-size: 280% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding-inline: 25px 60px;
  padding-block: 12px;
  gap: 24px;
}
@media (min-width: 768px) {
  .btn-wrap a {
    min-width: 220px;
    padding-inline: 25px 100px;
    padding-block: 14px;
  }
}
.btn-wrap a:hover {
  background-position: 120% 50%;
}
.btn-wrap a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 20px;
  height: 4px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-wrap a::after {
    width: 27px;
    height: 6px;
  }
}
.btn-wrap a:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
}

.insta-btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  line-height: normal;
  border-radius: 99px;
  background-image: var(--bg-gd);
  background-size: 280% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding-inline: 25px 60px;
  padding-block: 12px;
}
@media (min-width: 768px) {
  .insta-btn a {
    min-width: 220px;
    padding-inline: 25px 100px;
    padding-block: 14px;
  }
}
.insta-btn a:hover {
  background-position: 120% 50%;
}
.insta-btn a .icon {
  max-width: 23px;
  min-width: 23px;
  margin-right: 5px;
}
.insta-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 20px;
  height: 4px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .insta-btn a::after {
    width: 27px;
    height: 6px;
  }
}
.insta-btn a:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
}

.p-main {
  position: relative;
  z-index: 1;
}

.page-body {
  background-color: var(--br03);
  margin-bottom: 100vh;
}

.p-top .top-title {
  position: relative;
  padding-left: clamp(20px, 8vw, 170px);
  margin-left: clamp(0px, 3vw, 40px);
  display: flex;
  align-items: center;
  font-size: clamp(2.188rem, 0.061rem + 9.19vw, 8.75rem);
  color: var(--br03);
}
@media (min-width: 768px) {
  .p-top .top-title {
    padding-left: clamp(20px, 13vw, 170px);
  }
}
.p-top .top-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 1px;
  width: clamp(20px, 6vw, 45px);
  background-color: var(--br03);
  margin-right: 8px;
}
@media (min-width: 768px) {
  .p-top .top-title::before {
    height: 2px;
    width: clamp(70px, 10vw, 142px);
    margin-right: 28px;
  }
}
.p-top__fv {
  padding-top: clamp(120px, 16vw, 235px);
}
@media (min-width: 1200px) {
  .p-top__fv .container {
    max-width: 1300px;
  }
}
.p-top__fv-title {
  margin-bottom: 47px;
}
.p-top__fv-title > h1 {
  font-size: clamp(1.5rem, 0.852rem + 2.8vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 12px;
}
.p-top__fv-img img {
  min-height: 400px;
  aspect-ratio: 1274/828;
  -o-object-position: left center;
     object-position: left center;
}
.p-top__about {
  padding-block: 20px clamp(80px, 12vw, 160px);
}
.p-top__about .top-title {
  margin-bottom: clamp(80px, 12vw, 160px);
}
.p-top__about .top-title::before {
  background-color: var(--br01);
}
.p-top__about-fx .link {
  position: relative;
  display: block;
  overflow: hidden;
}
.p-top__about-fx .link .img img {
  aspect-ratio: 497/331;
  transition: all 0.5s ease;
}
.p-top__about-fx .link:hover .img > img {
  transform: scale(1.05);
  transition: all 0.5s ease;
}
.p-top__about-fx .link:hover .btn .icon {
  transform: translateX(5px);
  transition: all 0.3s ease;
}
.p-top__about-fx .link .btn {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  color: white;
}
.p-top__about-fx .link .btn .icon {
  width: 20px;
  margin-left: 8px;
  transition: all 0.3s ease;
}
@media (min-width: 576px) {
  .p-top__about-fx .link .btn .icon {
    width: 28px;
  }
}
.p-top__service {
  background: var(--bg-body);
  padding-block: 60px clamp(60px, 9vw, 110px);
}
@media (min-width: 1200px) {
  .p-top__service .container {
    max-width: 1220px;
  }
}
.p-top__service-box01 {
  margin-bottom: clamp(60px, 12vw, 150px);
}
.p-top__service-box01 img {
  aspect-ratio: 670/445;
}
.p-top__service-box01 .row:not(:last-child) {
  margin-bottom: clamp(60px, 12vw, 150px);
}
.p-top__service-box02 {
  margin-bottom: clamp(60px, 12vw, 150px);
}
.p-top__service-box02 .row {
  gap: clamp(30px, 8vw, 110px);
}
@media (min-width: 768px) {
  .p-top__service-box02 .row > div {
    width: calc(50% - clamp(15px, 4vw, 55px));
    flex: auto;
  }
}
.p-top__service-box03 .img img {
  max-height: 380px;
}
@media (min-width: 992px) {
  .p-top__service-box03 .img img {
    max-height: 100%;
  }
}
.p-top__links a {
  position: relative;
  overflow: hidden;
}
.p-top__links a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(68, 37, 5, 0.7);
}
.p-top__links a > img {
  height: 100%;
  transition: all 0.3s ease;
}
.p-top__links a > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  color: #fff;
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  gap: 20px;
}
.p-top__links a > div p {
  flex: 1;
}
.p-top__links a > div p > span {
  display: inline-block;
}
.p-top__links a > div .icon {
  transition: all 0.3s ease;
}
.p-top__links a:hover > img {
  transition: all 0.3s ease;
  transform: scale(1.05);
}
.p-top__links a .icon {
  width: clamp(40px, 4vw, 55px);
}
.p-top__links a .icon img {
  aspect-ratio: 1;
}
.p-top__beforeafter {
  padding-block: clamp(40px, 6vw, 110px) clamp(80px, 12vw, 150px);
}
.p-top__beforeafter-txt {
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .p-top__beforeafter-txt {
    padding-inline: clamp(20px, 8vw, 110px) clamp(20px, 6vw, 80px);
  }
}
.p-top__beforeafter-img img {
  aspect-ratio: 1;
}
.p-top__beforeafter .top-title::before {
  background-color: var(--br01);
}
.p-top__voice {
  padding-block: 0 80px;
}
@media (min-width: 768px) {
  .p-top__voice {
    padding-block: clamp(40px, 6vw, 110px) clamp(80px, 12vw, 150px);
  }
}
.p-top__voice-txt {
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .p-top__voice-txt {
    padding-inline: clamp(20px, 8vw, 110px) clamp(20px, 6vw, 80px);
  }
}
.p-top__voice-comment {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-top__voice-comment .box {
  background-color: white;
  border-radius: 15px;
  border: solid 1px #8f7e64;
  padding-inline: clamp(20px, 2vw, 35px);
  padding-block: 20px;
}
@media (min-width: 768px) {
  .p-top__voice-comment .box {
    padding-block: 35px;
  }
}
.p-top__salon {
  background-color: var(--sub);
  padding-block: 65px clamp(80px, 12vw, 150px);
}
.p-top__salon-wrap {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .p-top__salon-wrap {
    flex-direction: row;
    gap: clamp(20px, 4vw, 65px);
  }
}
.p-top__salon .link-box {
  position: relative;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  flex: 1;
  max-width: 400px;
  margin-inline: auto;
  max-height: 390px;
}
@media (min-width: 576px) {
  .p-top__salon .link-box {
    max-height: 100%;
  }
}
.p-top__salon .link-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(170, 142, 99, 0.6);
  pointer-events: none;
}
.p-top__salon .link-box > img {
  height: 100%;
  transition: all 0.3s ease;
}
.p-top__salon .link-box:hover > img {
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.p-top__salon .link-box__wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
.p-top__salon .link-box .contents-title {
  text-align: center;
  margin-bottom: 18px;
}
.p-top__salon .link-box .icon {
  width: clamp(40px, 4vw, 55px);
}
.p-top__salon .link-box .icon img {
  aspect-ratio: 1;
}

.page-fv {
  margin-bottom: 100vh;
  background-color: var(--br03);
  padding-block: clamp(120px, 12vw, 150px) 45px;
}
.page-fv .container {
  max-width: 100%;
  padding-inline: clamp(20px, 6vw, 70px);
}
.page-fv__title {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: baseline;
  gap: 8px clamp(15px, 2vw, 25px);
}
@media (min-width: 768px) {
  .page-fv__title {
    flex-direction: row;
  }
}
.page-fv .en {
  font-size: clamp(1.875rem, 0.863rem + 4.38vw, 5rem);
}
.page-fv .ja {
  font-family: var(--gothic);
  font-size: clamp(0.938rem, 0.755rem + 0.79vw, 1.5rem);
}

.p-concept__sec01 {
  padding-block: clamp(100px, 15vw, 200px);
}
.p-concept__sec01 img {
  aspect-ratio: 4/3;
}
.p-concept__sec02 {
  background: var(--bg-body);
}
.p-concept__sec02 img {
  height: 450px;
}
@media (min-width: 992px) {
  .p-concept__sec02 img {
    height: 100%;
  }
}
.p-concept__sec02 .box:nth-child(odd) {
  flex-direction: column;
}
@media (min-width: 992px) {
  .p-concept__sec02 .box:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
.p-concept__sec02 .box:nth-child(even) {
  flex-direction: column;
}
@media (min-width: 992px) {
  .p-concept__sec02 .box:nth-child(even) {
    flex-direction: row;
  }
}
.p-concept__sec02 .box-txt {
  padding-block: clamp(80px, 12vw, 150px);
}

.p-commitment .section-top {
  padding-block: clamp(120px, 17vw, 250px);
  color: white;
}
.p-commitment .section-top .section-title .en {
  transform: none;
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
}
.p-commitment__sec01 {
  padding-block: clamp(100px, 14vw, 200px) clamp(80px, 12vw, 150px);
}
.p-commitment__sec02, .p-commitment__sec03 {
  background: var(--bg-gd01);
}
.p-commitment__sec02 .container, .p-commitment__sec03 .container {
  padding-block: clamp(60px, 7vw, 100px) clamp(80px, 12vw, 150px);
}
.p-commitment__sec02 .box-img img {
  overflow: hidden;
  border-radius: 999px;
  aspect-ratio: 1;
}
.p-commitment__sec03 .box-img img {
  aspect-ratio: 4/3;
}
.p-commitment__sec03 .section-title .en {
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.p-treatments .ank-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 400px) {
  .p-treatments .ank-links {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .p-treatments .ank-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.p-treatments .ank-links__box-link {
  position: relative;
  overflow: hidden;
  min-height: 100px;
}
@media (min-width: 576px) {
  .p-treatments .ank-links__box-link {
    min-height: 100%;
  }
}
.p-treatments .ank-links__box-link::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(68, 37, 5, 0.7);
  transition: all 0.3s ease;
}
.p-treatments .ank-links__box-link:hover::before {
  background-color: rgba(68, 37, 5, 0.5);
  transition: all 0.3s ease;
}
.p-treatments .ank-links__box-link:hover > img {
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.p-treatments .ank-links__box-link > img {
  height: 100%;
  transition: all 0.3s ease;
}
.p-treatments .ank-links__box-wrap {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 30px;
  padding-inline: clamp(15px, 3vw, 30px);
  color: white;
  gap: 8px 20px;
  font-size: clamp(1.063rem, 0.921rem + 0.61vw, 1.5rem);
  pointer-events: none;
}
.p-treatments .ank-links__box-wrap > p {
  flex: 1;
}
.p-treatments .ank-links__box-wrap .icon {
  width: clamp(28px, 6vw, 35px);
}
@media (min-width: 768px) {
  .p-treatments .ank-links__box-wrap .icon {
    width: 38px;
  }
}
.p-treatments .ank-links__box-wrap .icon img {
  aspect-ratio: 1;
  transition: all 0.3s ease;
}
.p-treatments__sec01 {
  padding-block: clamp(80px, 13vw, 180px);
}
.p-treatments__sec02 .box {
  padding-block: clamp(60px, 12vw, 150px);
}
.p-treatments__sec02 .box:nth-child(odd) {
  background-color: #e0d9cd;
}
.p-treatments__sec02 .box:nth-child(odd) .section-title .en {
  color: #f6f4ea;
}
.p-treatments__sec02 .box:nth-child(odd) .pick-box {
  background-color: #f6f4ea;
}
.p-treatments__sec02 .box:nth-child(odd) .box-inner {
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-treatments__sec02 .box:nth-child(odd) .box-inner {
    flex-direction: row;
  }
}
.p-treatments__sec02 .box:nth-child(even) .pick-box {
  background-color: #e0d9cd;
}
.p-treatments__sec02 .box:nth-child(even) .box-inner {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .p-treatments__sec02 .box:nth-child(even) .box-inner {
    flex-direction: row;
  }
}
.p-treatments__sec02 .box-inner {
  display: flex;
  align-items: center;
  gap: 40px 30px;
}
@media (min-width: 992px) {
  .p-treatments__sec02 .box-inner {
    gap: clamp(30px, 10vw, 120px);
  }
}
.p-treatments__sec02 .box-img {
  width: 75%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-treatments__sec02 .box-img {
    width: calc(48% - clamp(15px, 5vw, 60px));
  }
}
.p-treatments__sec02 .box-img img {
  aspect-ratio: 1;
  height: 100%;
}
.p-treatments__sec02 .box-txt {
  flex: 1;
}
.p-treatments__sec02 .box-txt .section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 30px;
}
@media (min-width: 768px) {
  .p-treatments__sec02 .box-txt .section-title {
    width: 100%;
    padding-inline: 0px;
  }
}
.p-treatments__sec02 .box .pick-box {
  padding-block: 28px;
  padding-inline: clamp(13px, 3vw, 60px);
}
.p-treatments__sec02 .box .pick-box h3 {
  position: relative;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.p-treatments__sec02 .box .pick-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 1px;
  background-color: var(--txt);
}
.p-treatments__sec02 .box .pick-box__inner .dl {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 0 20px;
}
@media (min-width: 576px) {
  .p-treatments__sec02 .box .pick-box__inner .dl {
    flex-direction: row;
  }
}
.p-treatments__sec02 .box .pick-box__inner .dt {
  flex: 1;
}
@media (max-width: 575px) {
  .p-treatments__sec02 .box .pick-box__inner .dt {
    font-size: 1rem;
    font-weight: 600;
  }
}
@media (min-width: 576px) {
  .p-treatments__sec02 .box .pick-box__inner .dd {
    width: 100px;
  }
}
.p-treatments__sec03 {
  padding-block: clamp(80px, 12vw, 170px);
  background: var(--bg-gd02);
}
.p-treatments__sec03 .container {
  max-width: 820px;
  margin-inline: auto;
}
.p-treatments__sec03 .menu-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 350px;
  margin-inline: auto;
}
.p-treatments__sec03 .menu-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}
.p-treatments__sec03 .menu-link:hover::before {
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.p-treatments__sec03 .menu-link > img {
  transition: all 0.3s ease;
  height: 100%;
}
.p-treatments__sec03 .menu-link:hover > img {
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.p-treatments__sec03 .wrap {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  inset-inline: 0;
  padding-inline: clamp(20px, 4vw, 80px);
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.p-treatments__sec03 .wrap > p {
  font-size: clamp(1rem, 0.676rem + 1.4vw, 2rem);
}
.p-treatments__sec03 .wrap .icon {
  width: clamp(30px, 4vw, 62px);
}
.p-treatments__sec03 .wrap .icon img {
  aspect-ratio: 1;
}

.p-menu__sec01 {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-menu .menu-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 30px;
  border-bottom: solid 1px var(--txt);
}
.p-menu .menu-title .en {
  font-size: clamp(1.75rem, 1.345rem + 1.75vw, 3rem);
}
.p-menu .menu-title .ja {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.p-menu .box-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 12vw, 150px);
}
.p-menu .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 75px);
}
.p-menu .box .dl {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-between;
  gap: 3px 20px;
}
@media (min-width: 768px) {
  .p-menu .box .dl {
    flex-direction: row;
  }
}
.p-menu .box .dl .title-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 10px;
}
.p-menu .box .dl .title-wrap > p {
  display: inline-block;
}
.p-menu .box .dt {
  flex: 1;
}
.p-menu .box .dt .tag-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px 15px;
}
.p-menu .box .dt .tag-wrap .tag {
  margin-top: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 99px;
  background-color: #ebe3d7;
  font-family: var(--gothic);
  font-size: clamp(0.688rem, 0.647rem + 0.18vw, 0.813rem);
  line-height: 1;
  padding: 6px 16px;
}
.p-menu .box .dd {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 3px 10px;
}
@media (min-width: 768px) {
  .p-menu .box .dd {
    width: 250px;
  }
}
.p-menu .advice-box__inner {
  max-width: 900px;
  background-color: var(--br01);
  padding-block: 45px;
  padding-inline: clamp(20px, 4vw, 55px);
  align-items: center;
  margin-inline: auto;
}
.p-menu .advice-box__img img {
  aspect-ratio: 3/2;
}

.p-beforeafter__sec01 {
  padding-bottom: clamp(60px, 12vw, 150px);
}
.p-beforeafter .box-title {
  background-color: var(--br01);
  padding: 12px 20px;
}
.p-beforeafter .box-title .section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-top: clamp(6px, 2vw, 13px);
  padding-inline: 30px;
}
.p-beforeafter .box-title .section-title .en {
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
  color: var(--br03);
  right: 0;
  left: auto;
}
.p-beforeafter .box-title .section-title .ja {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
.p-beforeafter .box-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 12vw, 150px);
}
.p-beforeafter__sec02 {
  padding-block: clamp(80px, 12vw, 170px);
  background: var(--bg-gd02);
}
.p-beforeafter__sec02 .container {
  max-width: 820px;
  margin-inline: auto;
}
.p-beforeafter .inner-box {
  gap: 50px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .p-beforeafter .inner-box {
    align-items: start;
    gap: clamp(25px, 8vw, 100px);
  }
}
@media (min-width: 768px) {
  .p-beforeafter .inner-box {
    flex-direction: row;
  }
}
.p-beforeafter .inner-box > div {
  margin-inline: auto;
  flex: 1;
}
.p-beforeafter .inner-box__img {
  margin-inline: auto;
  max-width: 85%;
}
@media (min-width: 768px) {
  .p-beforeafter .inner-box__img {
    max-width: 100%;
  }
}
.p-beforeafter .inner-box__img img {
  aspect-ratio: 1;
}
.p-beforeafter .inner-box__txt {
  text-align: center;
}
@media (min-width: 768px) {
  .p-beforeafter .inner-box__txt {
    text-align: left;
  }
}
.p-beforeafter .inner-box__txt > h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 99px;
  color: white;
  background-color: #8f7e64;
  padding: 14px 25px;
  line-height: 1;
  font-family: var(--gothic);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  margin-block: 25px 20px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-beforeafter .inner-box__txt > h3 {
    margin-inline: 0 auto;
  }
}
.p-beforeafter .inner-box__txt > p {
  font-size: clamp(0.813rem, 0.752rem + 0.26vw, 1rem);
}
.p-beforeafter .insta-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 350px;
  margin-inline: auto;
}
.p-beforeafter .insta-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}
.p-beforeafter .insta-link:hover::before {
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.p-beforeafter .insta-link > img {
  transition: all 0.3s ease;
  height: 100%;
}
.p-beforeafter .insta-link:hover > img {
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.p-beforeafter .insta-link .wrap {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  inset-inline: 0;
  padding-inline: clamp(20px, 4vw, 80px);
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.p-beforeafter .insta-link .wrap > p {
  font-size: clamp(0.875rem, 0.511rem + 1.58vw, 2rem);
}
.p-beforeafter .insta-link .wrap .icon {
  width: clamp(30px, 4vw, 62px);
}
.p-beforeafter .insta-link .wrap .icon img {
  aspect-ratio: 1;
}

.p-voice__sec01 {
  padding-bottom: clamp(80px, 12vw, 150px);
}
.p-voice__sec01 .box {
  border-radius: 15px;
  border: solid 1px #8f7e64;
  padding-inline: clamp(15px, 4vw, 45px);
  padding-block: 20px;
  background-color: white;
}
.p-voice__sec01 .box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-voice__sec01 .box-wrapper {
    gap: 45px;
  }
}
.p-voice__sec01 .box > h3 {
  font-size: 0.8125rem;
  color: white;
  padding: 4px 22px;
  background-color: #8f7e64;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  border-radius: 99px;
  font-family: var(--gothic);
}

.p-staff__sec01 {
  padding-block: clamp(80px, 14vw, 190px);
}
.p-staff .staff-pr__date-img img {
  border-radius: 999px 999px 0 0;
  aspect-ratio: 506/758;
}
.p-staff .staff-pr__date-txt .tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 20px;
  background-color: #8f7e64;
  color: white;
  font-family: var(--gothic);
  line-height: 1;
  border-radius: 99px;
}
.p-staff .staff-gallery img {
  aspect-ratio: 4/3;
}

.p-info .salon-ank-links > div {
  gap: 10px clamp(20px, 5vw, 70px);
}
.p-info .salon-ank-links .btn-wrap a::after {
  background: url(../images/arrow_under.svg) center/contain no-repeat;
  width: clamp(18px, 3vw, 24px);
  height: clamp(18px, 3vw, 24px);
}
.p-info__sec01 {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-info__salon {
  position: relative;
  padding-top: clamp(80px, 13vw, 180px);
}
.p-info__salon:not(:last-child) {
  padding-bottom: clamp(80px, 13vw, 180px);
}
.p-info__salon:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background-color: var(--txt);
}
.p-info__salon-date img {
  aspect-ratio: 506/758;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
}
.p-info .list-wrap {
  max-width: 760px;
  margin-inline: auto;
}
.p-info .list-wrap .dl {
  gap: 8px 20px;
}
.p-info .list-wrap .dt {
  width: 100%;
  font-weight: bold;
}
@media (min-width: 576px) {
  .p-info .list-wrap .dt {
    width: 170px;
    font-weight: normal;
  }
}
.p-info .list-wrap .dd {
  flex: 1;
}
.p-info .list-wrap .dd a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-info .list-wrap .dd a:hover {
  opacity: 0.5;
}
.p-info .salon-map iframe {
  height: 380px;
}
@media (min-width: 768px) {
  .p-info .salon-map iframe {
    height: 550px;
  }
}
.p-info__sec02 {
  padding-block: clamp(80px, 12vw, 170px);
  background: var(--bg-gd02);
}
.p-info__sec02 .container {
  max-width: 820px;
  margin-inline: auto;
}
.p-info__sec02 .reserve-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 350px;
  margin-inline: auto;
}
.p-info__sec02 .reserve-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}
.p-info__sec02 .reserve-link:hover::before {
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.p-info__sec02 .reserve-link > img {
  transition: all 0.3s ease;
  height: 100%;
}
.p-info__sec02 .reserve-link:hover > img {
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.p-info__sec02 .wrap {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  inset-inline: 0;
  padding-inline: clamp(20px, 4vw, 80px);
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.p-info__sec02 .wrap > p {
  font-size: clamp(1rem, 0.676rem + 1.4vw, 2rem);
}
.p-info__sec02 .wrap .icon {
  width: clamp(30px, 4vw, 62px);
}
.p-info__sec02 .wrap .icon img {
  aspect-ratio: 1;
}

.p-news .webgene-blog {
  padding-block: clamp(80px, 10vw, 150px);
  max-width: 910px;
  padding-inline: 20px;
  margin-inline: auto;
}
.p-news .webgene-blog > article a {
  padding-block: 20px;
  border-bottom: solid 1px var(--br01);
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 4px 30px;
}
@media (min-width: 768px) {
  .p-news .webgene-blog > article a {
    padding-block: 35px;
    flex-direction: row;
  }
}
.p-news .webgene-blog > article:first-of-type a {
  padding-top: 0px;
}
.p-news .webgene-blog > article .date,
.p-news .webgene-blog > article .title {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.p-news .webgene-blog > article .date {
  font-family: var(--marcellus);
}
@media (min-width: 768px) {
  .p-news .webgene-blog > article .date {
    width: 160px;
  }
}
.p-news .webgene-blog > article .title {
  flex: 1;
}

.p-news .webgene-pagination,
.p-newsdetail .webgene-pagination {
  margin-top: clamp(60px, 11vw, 150px);
}
.p-news .webgene-pagination ul,
.p-newsdetail .webgene-pagination ul {
  max-width: 610px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 20px;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination ul,
.p-newsdetail .webgene-pagination ul {
    flex-direction: row;
    align-items: stretch;
  }
}
.p-news .webgene-pagination li,
.p-newsdetail .webgene-pagination li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-news .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .prev > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-weight: 500;
  color: white;
  border-radius: 99px;
  background-image: var(--bg-gd);
  background-size: 260% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding: 13px 35px;
  gap: 24px;
  min-width: 250px;
}
.p-news .webgene-pagination .prev > a::before,
.p-newsdetail .webgene-pagination .prev > a::before {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 25px;
  height: 6px;
  transition: all 0.3s ease;
  transform: translateX(0) scale(-1, 1);
}
.p-news .webgene-pagination .prev > a:hover,
.p-newsdetail .webgene-pagination .prev > a:hover {
  background-position: 120% 50%;
}
.p-news .webgene-pagination .prev > a:hover::after,
.p-newsdetail .webgene-pagination .prev > a:hover::after {
  transform: translateX(8px) scale(-1, 1);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .next,
.p-newsdetail .webgene-pagination .next {
    margin-left: auto;
  }
}
.p-news .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .next > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-weight: 500;
  color: white;
  border-radius: 99px;
  background-image: var(--bg-gd);
  background-size: 260% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding: 13px 35px;
  gap: 24px;
  min-width: 250px;
}
.p-news .webgene-pagination .next > a::after,
.p-newsdetail .webgene-pagination .next > a::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 25px;
  height: 6px;
  transition: all 0.3s ease;
}
.p-news .webgene-pagination .next > a:hover,
.p-newsdetail .webgene-pagination .next > a:hover {
  background-position: 120% 50%;
}
.p-news .webgene-pagination .next > a:hover::after,
.p-newsdetail .webgene-pagination .next > a:hover::after {
  transform: translateX(8px);
  transition: all 0.3s ease;
}
.p-news .webgene-pagination .btn-block,
.p-newsdetail .webgene-pagination .btn-block {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .btn-block,
.p-newsdetail .webgene-pagination .btn-block {
    margin-top: 50px;
  }
}
.p-news .webgene-pagination .btn-block > a,
.p-newsdetail .webgene-pagination .btn-block > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-weight: 500;
  color: white;
  border-radius: 99px;
  background-image: var(--bg-gd);
  background-size: 260% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding: 13px 35px;
  gap: 24px;
  min-width: 250px;
}
.p-news .webgene-pagination .btn-block > a::after,
.p-newsdetail .webgene-pagination .btn-block > a::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 25px;
  height: 6px;
  transition: all 0.3s ease;
}
.p-news .webgene-pagination .btn-block > a:hover,
.p-newsdetail .webgene-pagination .btn-block > a:hover {
  background-position: 120% 50%;
}
.p-news .webgene-pagination .btn-block > a:hover::after,
.p-newsdetail .webgene-pagination .btn-block > a:hover::after {
  transform: translateX(8px);
  transition: all 0.3s ease;
}

.p-newsdetail__sec01 {
  padding-block: clamp(150px, 15vw, 220px) clamp(60px, 8vw, 120px);
}

.newsdetail-contents {
  margin-inline: auto;
  max-width: 820px;
}
.newsdetail-contents__date {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  margin-bottom: 15px;
}
.newsdetail-contents__title {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  margin-bottom: 35px;
}
.newsdetail-contents__meta {
  margin-top: 35px;
}

.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--br03);
}
.header__inner {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .header__inner {
    gap: 30px;
    padding: 25px 55px;
  }
}
@media (max-width: 400px) {
  .header__inner > .btn-wrap a {
    padding-inline: 18px 50px;
  }
}
.header__brand {
  display: flex;
}
.header__brand > a {
  display: inline-block;
  width: 100%;
  max-width: 133px;
}
@media (max-width: 400px) {
  .header__brand > a {
    max-width: 110px;
  }
}
.header__brand > a:hover {
  opacity: 0.5;
}
.header__nav {
  position: fixed;
  z-index: 997;
  inset: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  padding: 80px 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  gap: 25px;
  background-color: var(--br01);
}
@media (min-width: 768px) {
  .header__nav {
    padding-block: 120px;
  }
}
.header__nav.open {
  opacity: 1;
  visibility: visible;
}
.header__nav .container {
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .header__nav .container {
    gap: 40px;
    flex-direction: row;
    max-width: 750px;
  }
}
@media (min-width: 1200px) {
  .header__nav .container {
    max-width: 900px;
  }
}
.header__nav-brand {
  display: inline-table;
  margin-bottom: clamp(30px, 3vw, 65px);
  width: 35%;
  min-width: 160px;
}
@media (min-width: 768px) {
  .header__nav-brand {
    width: 23%;
  }
}
.header__nav-brand a {
  display: block;
  height: 100%;
}
.header__nav-link {
  line-height: 1.34;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  padding-block: 15px;
}
@media (min-width: 768px) {
  .header__nav-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }
}
.header__nav-link:hover {
  opacity: 0.5;
}
.header__nav-link .en {
  font-size: clamp(1.125rem, 0.882rem + 1.05vw, 1.875rem);
}
.header__nav-link .ja {
  font-size: clamp(0.688rem, 0.505rem + 0.79vw, 1.25rem);
  font-family: var(--gothic);
}
.header__nav > .btn-wrap {
  margin-top: clamp(40px, 3vw, 55px);
}

.gjs-dashed .header__nav {
  width: 100vw;
  visibility: visible;
  opacity: 1;
}

#hum-btn {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  width: 29px;
  height: 20px;
  min-width: 29px;
  min-height: 20px;
}
@media (min-width: 768px) {
  #hum-btn {
    width: 31px;
    height: 23px;
    min-width: 31px;
    min-height: 23px;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.btn-trigger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  background-color: var(--txt);
}
@media (min-width: 992px) {
  .btn-trigger__bar {
    box-shadow: none;
  }
}
.btn-trigger__bar:nth-of-type(1) {
  top: 0;
}
.btn-trigger__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) translateX(0%);
}
.btn-trigger__bar:nth-of-type(3) {
  bottom: 0;
}

.is-nav-open .btn-trigger__bar:nth-of-type(1) {
  transform: translateY(11.5px) rotate(-45deg);
}
@media (min-width: 768px) {
  .is-nav-open .btn-trigger__bar:nth-of-type(1) {
    transform: translateY(11.5px) rotate(-45deg);
  }
}
.is-nav-open .btn-trigger__bar:nth-of-type(2) {
  opacity: 0;
  transform: translateY(-50%) translateX(50%);
}
.is-nav-open .btn-trigger__bar:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}
@media (min-width: 768px) {
  .is-nav-open .btn-trigger__bar:nth-of-type(3) {
    transform: translateY(-11.5px) rotate(45deg);
  }
}

.header__nav-link.drop {
  position: relative;
  pointer-events: none;
  border: solid 1px var(--bg);
  padding-block: 20px;
  opacity: 1 !important;
  border: solid 1px var(--main);
}
@media (min-width: 992px) {
  .header__nav-link.drop {
    pointer-events: auto;
    border: none;
    padding-block: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
}
.header__nav-link.drop::after {
  content: "";
  position: absolute;
  top: 19%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 15px;
  display: block;
  background-color: var(--main);
}
@media (min-width: 992px) {
  .header__nav-link.drop::after {
    display: none;
  }
}
.header__nav-link.drop > .drop-menu {
  max-width: 300px;
  padding: 20px 20px 0;
  pointer-events: auto;
}
@media (min-width: 992px) {
  .header__nav-link.drop > .drop-menu {
    position: absolute;
    left: 0%;
    top: 100%;
    min-width: 250px;
    max-width: 100%;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media (min-width: 992px) {
  .header__nav-link.drop:hover > .drop-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.header__nav-link.drop .drop-link {
  position: relative;
  display: flex;
  padding: 13px 25px;
}
@media (min-width: 992px) {
  .header__nav-link.drop .drop-link {
    align-items: flex-start;
    transition: all 0.3s ease;
    background-color: rgba(241, 235, 225, 0.9);
  }
}
.header__nav-link.drop .drop-link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  display: none;
  background: url(../images/arrow.svg) center/contain no-repeat;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .header__nav-link.drop .drop-link::after {
    display: block;
  }
}
.header__nav-link.drop .drop-link:hover::after {
  transition: all 0.3s ease;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
}
.header__nav-link.drop .drop-link > p {
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .header__nav-link.drop .drop-link {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease, color 0.2s ease;
  }
}
@media (min-width: 992px) {
  .header__nav-link.drop .drop-link:nth-child(1) {
    transition-delay: 0s, 0s, 0s, 0s;
  }
}
@media (min-width: 992px) {
  .header__nav-link.drop .drop-link:nth-child(2) {
    transition-delay: 0.08s, 0.08s, 0s, 0s;
  }
}
@media (min-width: 992px) {
  .header__nav-link.drop .drop-link:nth-child(3) {
    transition-delay: 0.16s, 0.16s, 0s, 0s;
  }
}
@media (min-width: 992px) {
  .header__nav-link.drop .drop-link:nth-child(4) {
    transition-delay: 0.24s, 0.24s, 0s, 0s;
  }
}
@media (min-width: 992px) {
  .header__nav-link.drop .drop-link:hover {
    transition: all 0.3s ease !important;
    background-color: rgba(137, 117, 73, 0.9);
  }
}
@media (min-width: 992px) {
  .header__nav-link.drop .drop-link:hover > p {
    color: white;
    transition: all 0.3s ease !important;
  }
}
@media (min-width: 992px) {
  .header__nav-link.drop:hover > .drop-menu > a.drop-link {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  position: relative;
  z-index: 2;
}
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(246, 244, 234, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.footer .container {
  max-width: 1300px;
  padding-block: 50px 40px;
}
@media (min-width: 768px) {
  .footer .container {
    padding-block: 80px 40px;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(30px, 4vw, 80px);
  }
}
.footer__nav, .footer__address {
  flex: 1;
  width: 100%;
  text-align: center;
}
@media (min-width: 576px) {
  .footer__nav, .footer__address {
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  .footer__nav, .footer__address {
    max-width: auto;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .footer__nav, .footer__address {
    padding-top: 60px;
  }
}
.footer__brand {
  width: 100%;
}
@media (min-width: 992px) {
  .footer__brand {
    width: auto;
    flex: 1;
  }
}
.footer__brand > a {
  display: block;
}
.footer__brand img {
  min-width: 160px;
  width: 35%;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .footer__brand img {
    min-width: 240px;
    width: 100%;
  }
}
.footer__address .address-box:not(:last-child) {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .footer__address .address-box:not(:last-child) {
    margin-bottom: 75px;
  }
}
.footer__address .address-box .insta-btn {
  margin-top: 15px;
}
.footer__address > p a:hover {
  opacity: 0.5;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .footer__nav a {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    margin-inline: 0 auto;
  }
}
.footer__nav a .ja {
  font-family: var(--gothic);
  font-size: 0.8125rem;
}
.footer__nav a:hover {
  opacity: 0.5;
}
.footer .copyright {
  font-size: 0.875rem;
  text-align: center;
  padding-block: 27px;
  background-color: var(--br04);
}