/* 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 .loading-overlay {
  display: none;
}
.gjs-dashed .top-fv .swiper-wrapper {
  display: flex;
}
.gjs-dashed .top-menu {
  height: auto !important;
}
.gjs-dashed .top-menu__inner {
  height: auto !important;
}
.gjs-dashed .top-menu__box {
  opacity: 1;
  position: static !important;
}

:root {
  --txt: #594619;
  --main: #817352;
  --sub: #baae90;
  --ac: #f1ebe1;
  --bg-gd: linear-gradient(
    96deg,
    #594619 0%,
    #594619 20%,
    #baae90 40%,
    #baae90 60%,
    #594619 100%
  );
  --bg-gd2: linear-gradient(
    96deg,
    #fffcf6 0%,
    #fffcf6 20%,
    #cec4b5 60%,
    #fffcf6 100%
  );
  --tsuku: fot-tsukuardgothic-std, sans-serif;
  --ds: "Dancing Script", cursive;
}

.tsuku {
  font-family: var(--tsuku);
}

.ds {
  font-family: var(--ds);
}

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

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

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

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

body {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: var(--tsuku);
  font-weight: 400;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: 1.34;
  color: var(--txt);
}
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  background: url(../images/bg.jpg) center/cover no-repeat;
  display: block;
  width: 100%;
  height: 100vh;
  inset: 0;
}

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);
  }
}
.en {
  font-family: var(--ds) !important;
}

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

.section-title > h2,
.section-title > h3 {
  font-size: clamp(1.875rem, 1.025rem + 3.68vw, 4.5rem);
}
.section-title > p {
  font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
}

.btn-wrap > a,
.btn-wrap > .submit-btn {
  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-inline: 35px 15px;
  padding-block: 12px;
  gap: 24px;
}
@media (min-width: 768px) {
  .btn-wrap > a,
.btn-wrap > .submit-btn {
    min-width: 315px;
    padding-inline: 45px 25px;
    padding-block: 15px;
  }
}
.btn-wrap > a::after,
.btn-wrap > .submit-btn::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 25px;
  height: 25px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-wrap > a::after,
.btn-wrap > .submit-btn::after {
    width: 32px;
    height: 32px;
  }
}
.btn-wrap > a:hover,
.btn-wrap > .submit-btn:hover {
  background-position: 120% 50%;
}
.btn-wrap > a:hover::after,
.btn-wrap > .submit-btn:hover::after {
  transform: translateX(5px);
  transition: all 0.3s ease;
}
.btn-wrap.-wh > a {
  background-image: var(--bg-gd2);
  color: var(--txt);
}
.btn-wrap.-wh > a::after {
  background: url(../images/arrow.svg) center/contain no-repeat;
}
.btn-wrap .insta {
  gap: unset;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  justify-content: flex-start;
  color: white;
}
.btn-wrap .insta::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  margin-left: auto;
  transition: all 0.3s ease;
}
.btn-wrap .insta:hover {
  background-position: 120% 50%;
}
.btn-wrap .insta:hover::after {
  transition: all 0.3s ease;
  transform: translateX(5px);
}
.btn-wrap .insta .icon {
  width: 19px;
  margin-right: 10px;
}

.page-fv {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 650px;
}
.page-fv::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(89, 70, 25, 0.3);
}
.page-fv__title {
  color: white;
  text-align: center;
}
.page-fv__title h1 {
  font-size: clamp(2.5rem, 1.366rem + 4.9vw, 6rem);
}
.page-fv__title > p {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}

.page-top {
  overflow-x: clip;
}
.page-top__title {
  text-align: right;
  margin-bottom: 40px;
}
.page-top__title h1 {
  font-size: clamp(2.188rem, 1.276rem + 3.94vw, 5rem);
}
.page-top .top-slide {
  padding-top: 20px;
  margin-bottom: clamp(60px, 8vw, 115px);
  background: linear-gradient(180deg, var(--ac) 0%, var(--ac) 70%, transparent 70%, transparent 100%);
}
.page-top .top-slide .swiper-wrapper {
  transition-timing-function: linear;
}
.page-top .top-slide .swiper-slide.is-odd {
  margin-top: 20px;
}
.page-top .top-slide .swiper-slide.is-even {
  margin-bottom: 20px;
}
.page-top .top-fv {
  position: relative;
  min-height: 755px;
}
.page-top .top-fv > img {
  height: 100%;
  min-height: inherit;
}
.page-top .top-fv__txt-left, .page-top .top-fv__txt-right {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  height: 100%;
  padding: 35px 50px;
}
.page-top .top-fv__txt-left {
  left: 0;
  width: 60%;
}
@media (min-width: 576px) {
  .page-top .top-fv__txt-left {
    width: 30%;
  }
}
.page-top .top-fv__txt-right {
  width: 65%;
  right: 0;
  left: auto;
}
.page-top .top-fv__txt-left img, .page-top .top-fv__txt-right img {
  position: absolute;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 650ms ease-out, filter 650ms ease-out;
  transition-delay: var(--d, 0ms);
  will-change: opacity, filter;
}
.page-top .top-fv__txt-left > img:nth-child(1) {
  max-width: clamp(55px, 9vw, 123px);
  top: 5%;
  left: 20%;
}
@media (min-width: 576px) {
  .page-top .top-fv__txt-left > img:nth-child(1) {
    top: 3.5%;
    left: 11%;
  }
}
.page-top .top-fv__txt-left > img:nth-child(2) {
  max-width: clamp(70px, 12vw, 170px);
  top: 7%;
  left: 60%;
}
@media (min-width: 576px) {
  .page-top .top-fv__txt-left > img:nth-child(2) {
    top: 10%;
    left: 51%;
  }
}
.page-top .top-fv__txt-left > img:nth-child(3) {
  left: 9%;
  bottom: 22%;
  max-width: clamp(100px, 16vw, 236px);
}
.page-top .top-fv__txt-left > img:nth-child(4) {
  left: 28%;
  bottom: 14.5%;
  max-width: clamp(155px, 25vw, 370px);
}
.page-top .top-fv__txt-right > img:nth-child(1) {
  top: 70px;
  right: 18px;
  max-width: clamp(94px, 14vw, 213px);
}
@media (min-width: 576px) {
  .page-top .top-fv__txt-right > img:nth-child(1) {
    top: 63px;
    right: 10%;
  }
}
.page-top .top-fv__txt-right > img:nth-child(2) {
  top: 153px;
  right: 53px;
  max-width: clamp(112px, 14vw, 226px);
}
@media (min-width: 576px) {
  .page-top .top-fv__txt-right > img:nth-child(2) {
    top: 250px;
    right: 21%;
  }
}
.page-top .top-fv__txt-right > img:nth-child(3) {
  max-width: clamp(143px, 20vw, 332px);
  right: 18px;
  top: 69%;
  transform: translateY(-50%);
}
@media (min-width: 576px) {
  .page-top .top-fv__txt-right > img:nth-child(3) {
    right: 55px;
    top: 50%;
  }
}
.page-top .top-fv__txt-right > img:nth-child(4) {
  max-width: clamp(70px, 12vw, 152px);
  transform: translateY(-50%);
  right: 25%;
  top: 75%;
}
@media (min-width: 576px) {
  .page-top .top-fv__txt-right > img:nth-child(4) {
    right: 12%;
    top: 63%;
  }
}
.page-top .top-fv__txt-right > img:nth-child(5) {
  max-width: clamp(370px, 50vw, 850px);
  right: 15px;
  bottom: 15px;
}
@media (min-width: 576px) {
  .page-top .top-fv__txt-right > img:nth-child(5) {
    right: 35px;
    bottom: 50px;
  }
}
.page-top .top-fv__txt-left img.is-show, .page-top .top-fv__txt-right img.is-show {
  opacity: 1;
  filter: blur(0);
}
.page-top__concept {
  padding-block: clamp(80px, 14vw, 210px) clamp(60px, 8vw, 120px);
  position: relative;
  z-index: 1;
}
.page-top__concept::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(50px, 10vw, 115px);
  left: 0;
  width: clamp(250px, 41vw, 621px);
  height: clamp(300px, 45vw, 671px);
  background-color: #f1ebe1;
}
.page-top__concept-inner {
  gap: 40px;
}
.page-top__concept-inner .deco {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: -90px;
  opacity: 0.6;
}
@media (min-width: 576px) {
  .page-top__concept-inner .deco {
    margin-bottom: 0px;
    opacity: 1;
  }
}
.page-top__concept-inner .deco > div > img {
  width: clamp(60px, 7vw, 100px);
  margin-right: clamp(80px, 12vw, 150px);
  margin-bottom: -40px;
}
.page-top__concept-inner .deco > img:nth-child(2) {
  width: clamp(120px, 12vw, 200px);
}
.page-top__concept-img {
  padding-top: clamp(50px, 10vw, 115px);
  flex: 1;
}
.page-top__concept-img img {
  aspect-ratio: 551/826;
}
.page-top__concept-txt {
  line-height: 1.7;
}
.page-top__concept-txt h2 {
  font-size: clamp(1.875rem, 1.025rem + 3.68vw, 4.5rem);
  margin-bottom: 25px;
}
.page-top__first-visitor, .page-top__salon {
  background-color: var(--main);
}
.page-top__first-visitor h2,
.page-top__first-visitor div, .page-top__salon h2,
.page-top__salon div {
  color: white !important;
}
.page-top__first-visitor .inner .txt, .page-top__salon .inner .txt {
  padding-block: clamp(40px, 4vw, 85px);
  padding-inline: clamp(20px, 9vw, 135px);
  line-height: 1.7;
}
.page-top__first-visitor .inner .img img, .page-top__salon .inner .img img {
  height: 100%;
  min-height: 300px;
}
.page-top__salon .inner {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .page-top__salon .inner {
    flex-direction: row;
  }
}
.page-top__content-menu {
  padding-block: clamp(80px, 14vw, 200px);
}
.page-top__content-menu .content-menu__title {
  margin-bottom: clamp(55px, 12vw, 150px);
}
.page-top__content-menu .content-menu__title h2 {
  font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
}
.page-top__content-menu .content-menu__title img {
  max-width: clamp(200px, 20vw, 420px);
  margin-inline: auto;
}
.page-top__content-menu > .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .page-top__content-menu > .container {
    gap: 60px;
  }
}
@media (min-width: 992px) {
  .page-top__content-menu > .container {
    gap: 185px;
  }
}
.page-top__content-menu .txt {
  position: relative;
  background-color: var(--ac);
  padding-block: 60px;
  padding-inline: clamp(20px, 3vw, 50px);
}
@media (min-width: 992px) {
  .page-top__content-menu .txt {
    width: 60%;
  }
}
.page-top__content-menu .txt .en {
  position: absolute;
  z-index: 1;
  font-size: clamp(2.813rem, 1.699rem + 4.82vw, 6.25rem);
  top: -30px;
}
@media (min-width: 768px) {
  .page-top__content-menu .txt .en {
    top: -50px;
  }
}
@media (min-width: 992px) {
  .page-top__content-menu .txt .en {
    top: -90px;
    font-size: 6.25rem;
  }
}
.page-top__content-menu .txt .title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-top__content-menu .txt .title {
    margin-bottom: 35px;
  }
}
.page-top__content-menu .txt .title .icon {
  width: 50px;
}
@media (min-width: 768px) {
  .page-top__content-menu .txt .title .icon {
    width: 80px;
  }
}
.page-top__content-menu .txt .title h3 {
  flex: 1;
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
}
@media (min-width: 992px) {
  .page-top__content-menu .img {
    position: absolute;
    width: 50%;
    top: 0;
  }
}
.page-top__content-menu .img img {
  height: 300px;
}
@media (min-width: 992px) {
  .page-top__content-menu .img img {
    height: auto;
    aspect-ratio: 4/3;
  }
}
.page-top__content-menu .box {
  position: relative;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .page-top__content-menu .box {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .page-top__content-menu .box {
    padding-top: 150px;
  }
}
@media (min-width: 992px) {
  .page-top__content-menu .box:nth-child(odd) .txt {
    padding-inline: clamp(20px, 4vw, 70px) 170px;
  }
}
.page-top__content-menu .box:nth-child(odd) .txt .en {
  left: 0px;
}
@media (min-width: 576px) {
  .page-top__content-menu .box:nth-child(odd) .txt .en {
    left: -20px;
  }
}
@media (min-width: 992px) {
  .page-top__content-menu .box:nth-child(odd) .txt .en {
    left: -25px;
  }
}
.page-top__content-menu .box:nth-child(odd) .img {
  right: 0;
}
@media (min-width: 992px) {
  .page-top__content-menu .box:nth-child(even) .txt {
    padding-inline: 170px clamp(20px, 4vw, 70px);
    margin-left: auto;
  }
}
.page-top__content-menu .box:nth-child(even) .txt .en {
  left: 0px;
  right: auto;
}
@media (min-width: 576px) {
  .page-top__content-menu .box:nth-child(even) .txt .en {
    left: -20px;
  }
}
@media (min-width: 992px) {
  .page-top__content-menu .box:nth-child(even) .txt .en {
    left: auto;
    right: -25px;
  }
}
.page-top__content-menu .box:nth-child(even) .img {
  left: 0;
}
.page-top__other {
  padding-block: clamp(80px, 15vw, 190px) clamp(60px, 12vw, 140px);
}
.page-top__other .container {
  max-width: 1300px;
}
.page-top__other-links {
  gap: 20px;
  margin-inline: 0;
}
@media (min-width: 992px) {
  .page-top__other-links {
    flex-wrap: nowrap !important;
    gap: clamp(20px, 4vw, 55px);
  }
}
.page-top__other-links > div {
  background-color: var(--ac);
  padding-block: 55px;
}
@media (min-width: 992px) {
  .page-top__other-links > div {
    flex: 1;
  }
}
.page-top__other-links .btn-wrap a {
  min-width: auto;
}
.page-top__other-reserve {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
  background-color: var(--sub);
  color: white;
  overflow: hidden;
  padding-block: 45px;
  padding-inline: clamp(20px, 10vw, 110px);
  justify-content: space-between;
  max-width: 600px;
}
@media (min-width: 992px) {
  .page-top__other-reserve {
    max-width: 820px;
  }
}
.page-top__other-reserve .arrow {
  transition: all 0.3s ease;
  width: 45px;
}
@media (min-width: 768px) {
  .page-top__other-reserve .arrow {
    width: 72px;
  }
}
.page-top__other-reserve:hover .arrow {
  transform: translateX(5px);
  transition: all 0.3s ease;
}
.page-top__other-reserve .deco01,
.page-top__other-reserve .deco02 {
  position: absolute;
  z-index: -1;
}
.page-top__other-reserve .deco01 {
  left: -20px;
  bottom: -50px;
  width: clamp(100px, 12vw, 184px);
}
.page-top__other-reserve .deco02 {
  top: -8px;
  right: -11px;
  width: clamp(90px, 12vw, 178px);
}

@-webkit-keyframes fvIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes fvIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.page-concept__top {
  padding-block: clamp(80px, 10vw, 135px) clamp(60px, 10vw, 100px);
}
.page-concept__top-title {
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
}
.page-concept__top-imgs {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .page-concept__top-imgs {
    padding-inline: 40px;
  }
}
.page-concept__top-imgs .deco01,
.page-concept__top-imgs .deco02 {
  position: absolute;
  z-index: -1;
}
.page-concept__top-imgs .deco01 {
  left: 0;
  max-width: clamp(220px, 35vw, 520px);
  -webkit-animation: rotateAnimation 60s linear infinite;
          animation: rotateAnimation 60s linear infinite;
  top: 20px;
}
@media (min-width: 768px) {
  .page-concept__top-imgs .deco01 {
    top: 48px;
  }
}
.page-concept__top-imgs .deco02 {
  right: 0;
  bottom: 0;
  max-width: clamp(100px, 18vw, 265px);
}
.page-concept__top-img {
  aspect-ratio: 4/3;
}
.page-concept__content {
  background-color: var(--sub);
  color: white;
  padding-bottom: clamp(80px, 12vw, 180px);
}
.page-concept__content .block-title {
  position: relative;
  z-index: 1;
  padding-block: clamp(80px, 15vw, 225px);
}
.page-concept__content .block-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(89, 70, 25, 0.3);
}
.page-concept__content .block-title h2 {
  color: white;
  font-size: clamp(1.563rem, 1.259rem + 1.31vw, 2.5rem);
}
.page-concept__content .box-wrap {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

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

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.page-firstvisitor__sec01 {
  padding-block: clamp(80px, 12vw, 170px);
}
.page-firstvisitor__sec01-txt h2 span {
  display: inline-block;
}
.page-firstvisitor__sec01-img img {
  aspect-ratio: 4/3;
}
.page-firstvisitor__sec02 {
  padding-block: clamp(80px, 12vw, 175px);
  color: white;
  background-color: var(--main);
}
.page-firstvisitor__sec02 .section-title h2 {
  color: var(--sub);
}
.page-firstvisitor__sec02 .box-wrap {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(45px, 6vw, 80px);
}
.page-firstvisitor__sec02 .box-wrap img {
  aspect-ratio: 250/510;
}
.page-firstvisitor__sec02 .box-wrap h3 {
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
  color: var(--sub);
  margin-bottom: 16px;
}
.page-firstvisitor__sec02 .box-wrap p {
  line-height: 1.5;
}
.page-firstvisitor .reserve-links {
  gap: 30px;
}
@media (min-width: 768px) {
  .page-firstvisitor .reserve-links {
    gap: 50px;
  }
}
.page-firstvisitor .reserve-links__link {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 600px;
  min-height: 180px;
  padding-block: 20px;
  padding-inline: 20px;
  gap: 20px;
}
@media (min-width: 768px) {
  .page-firstvisitor .reserve-links__link {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-block: 45px;
    padding-inline: clamp(20px, 10vw, 80px);
    min-height: 200px;
  }
}
@media (min-width: 992px) {
  .page-firstvisitor .reserve-links__link {
    max-width: 820px;
  }
}
.page-firstvisitor .reserve-links__link.-res {
  background-color: var(--sub);
  color: white;
}
.page-firstvisitor .reserve-links__link.-hp {
  background-color: #f1ebe1;
}
.page-firstvisitor .reserve-links__link .b-icon {
  width: 40px;
  min-width: 40px;
}
@media (min-width: 768px) {
  .page-firstvisitor .reserve-links__link .b-icon {
    width: clamp(60px, 4vw, 94px);
    min-width: clamp(60px, 4vw, 94px);
  }
}
.page-firstvisitor .reserve-links__link .arrow {
  transition: all 0.3s ease;
  width: 45px;
  min-width: 45px;
}
@media (min-width: 768px) {
  .page-firstvisitor .reserve-links__link .arrow {
    width: 72px;
    min-width: 72px;
  }
}
.page-firstvisitor .reserve-links__link:hover .arrow {
  transform: translateX(5px);
  transition: all 0.3s ease;
}
.page-firstvisitor .reserve-links__link .deco01,
.page-firstvisitor .reserve-links__link .deco02,
.page-firstvisitor .reserve-links__link .deco03,
.page-firstvisitor .reserve-links__link .deco04 {
  position: absolute;
  z-index: -1;
}
.page-firstvisitor .reserve-links__link .deco01 {
  left: -20px;
  bottom: -30px;
  width: clamp(100px, 12vw, 184px);
}
@media (min-width: 768px) {
  .page-firstvisitor .reserve-links__link .deco01 {
    bottom: -50px;
  }
}
.page-firstvisitor .reserve-links__link .deco02 {
  top: -8px;
  right: -11px;
  width: clamp(90px, 12vw, 178px);
}
.page-firstvisitor .reserve-links__link .deco03 {
  top: -10px;
  left: -15px;
  width: clamp(90px, 12vw, 178px);
}
@media (min-width: 768px) {
  .page-firstvisitor .reserve-links__link .deco03 {
    top: -12px;
    left: -25px;
  }
}
.page-firstvisitor .reserve-links__link .deco04 {
  right: -20px;
  bottom: -10px;
  width: clamp(80px, 12vw, 163px);
}
@media (min-width: 768px) {
  .page-firstvisitor .reserve-links__link .deco04 {
    bottom: -53px;
  }
}
.page-firstvisitor .reserve-links__wrap {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 15px;
}
@media (min-width: 576px) {
  .page-firstvisitor .reserve-links__wrap {
    gap: clamp(20px, 2vw, 40px);
  }
}
.page-firstvisitor .reserve-links__wrap > p {
  flex: 1;
}
.page-firstvisitor__sec03 {
  padding-block: clamp(80px, 12vw, 180px);
}
.page-firstvisitor__sec03 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(55px, 8vw, 110px);
  max-width: 970px;
  margin-inline: auto;
}

.info-contents {
  padding-block: clamp(100px, 20vw, 300px);
  overflow: clip;
}
.info-contents > .container > .position-relative {
  z-index: 1;
}
.info-contents h2 span {
  display: inline-block;
}
.info-contents__en {
  position: absolute;
  z-index: -1;
  font-size: clamp(5rem, 2.368rem + 11.38vw, 13.125rem);
  color: var(--sub);
  top: -100px;
}
@media (min-width: 576px) {
  .info-contents__en {
    top: -16vw;
  }
}
@media (min-width: 992px) {
  .info-contents__en {
    top: -13vw;
  }
}

.features-contents {
  padding-block: clamp(60px, 8vw, 120px) clamp(80px, 12vw, 150px);
  background-color: #cec4b5;
}
.features-contents img {
  aspect-ratio: 1;
}
.features-contents .section-title h3 {
  font-size: clamp(1.875rem, 1.187rem + 2.98vw, 4rem);
}
.features-contents .section-title > p {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
.features-contents .point-wrap__title {
  border-block: solid 1px white;
  padding-block: 10px;
  font-size: clamp(1.125rem, 0.923rem + 0.88vw, 1.75rem);
  overflow: clip;
}
@media (min-width: 768px) {
  .features-contents .point-wrap__title {
    padding-block: 20px;
  }
}
.features-contents .point-wrap .point-box {
  padding-block: 40px;
  border-bottom: solid 1px white;
}
.features-contents .point-wrap .point-box .box {
  position: relative;
  padding-inline: 20px;
  padding-block: 30px;
}
@media (min-width: 992px) {
  .features-contents .point-wrap .point-box .box {
    padding-inline: clamp(20px, 3vw, 40px);
    padding-block: 0;
  }
}
.features-contents .point-wrap .point-box .box:first-child {
  padding-top: 0;
}
.features-contents .point-wrap .point-box .box:last-child {
  padding-bottom: 0;
}
.features-contents .point-wrap .point-box .box::after {
  content: "";
  position: absolute;
  display: block;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  bottom: 0;
  height: 1px;
  width: 80%;
  border-bottom: solid 1px white;
}
@media (min-width: 992px) {
  .features-contents .point-wrap .point-box .box::after {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: auto;
    bottom: auto;
    height: 80%;
    width: 1px;
    border-right: solid 1px white;
  }
}
.features-contents .point-wrap .point-box .box:last-child::after {
  border-right: none;
  border-bottom: none;
}
.features-contents .point-wrap .point-box .box .number {
  text-align: center;
  color: white;
  margin-bottom: 17px;
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
}
.features-contents .recommendation-wrap {
  background-color: white;
  padding-block: 50px;
  padding-inline: clamp(20px, 5vw, 80px);
}
.features-contents .recommendation-wrap__title {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  margin-bottom: 35px;
}
.features-contents .recommendation-wrap .recommendation-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .features-contents .recommendation-wrap .recommendation-box {
    flex-direction: row;
    align-items: stretch;
    gap: clamp(12px, 3vw, 30px);
  }
}
.features-contents .recommendation-wrap .recommendation-box .box {
  background-color: var(--ac);
  padding: 15px 10px;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: clamp(0.813rem, 0.671rem + 0.61vw, 1.25rem);
}
@media (min-width: 768px) {
  .features-contents .recommendation-wrap .recommendation-box .box {
    padding: 15px 20px;
    width: calc(50% - clamp(6px, 1.5vw, 15px));
  }
}
@media (min-width: 992px) {
  .features-contents .recommendation-wrap .recommendation-box .box {
    font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  }
}

.menu-contents {
  padding-block: clamp(80px, 12vw, 150px);
}
.menu-contents .aside {
  padding-bottom: 15px;
  border-bottom: solid 1px var(--main);
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .menu-contents .aside {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.menu-contents .aside .contents-title h3 {
  font-size: clamp(1.625rem, 1.058rem + 2.45vw, 3.375rem);
}
.menu-contents .aside .contents-title > p {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.menu-contents .main {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .menu-contents .main {
    gap: clamp(35px, 5vw, 70px);
    border-left: solid 1px var(--main);
    padding-left: clamp(20px, 4vw, 60px);
  }
}
.menu-contents .main .dl {
  display: flex;
  gap: 5px 20px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .menu-contents .main .dl {
    flex-direction: row;
  }
}
.menu-contents .main .dt,
.menu-contents .main .dd {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.menu-contents .main .dt {
  flex: 1;
}
.menu-contents .main .dd {
  text-align: right;
  margin-left: auto;
}
@media (min-width: 576px) {
  .menu-contents .main .dd {
    width: 120px;
  }
}

.goods-contents {
  background-color: var(--main);
  color: white;
  padding-block: clamp(50px, 9vw, 130px);
}
.goods-contents .section-title h2 {
  color: #baae90;
}
.goods-contents .section-title img {
  aspect-ratio: 4/3;
}

.page-nail .info-contents__en {
  left: 0;
}
@media (min-width: 576px) {
  .page-nail .info-contents__en {
    left: -10vw;
  }
}
@media (min-width: 992px) {
  .page-nail .info-contents__en {
    left: 4vw;
  }
}
.page-nail .info-contents h2 span {
  display: inline-block;
}

.attention-text strong {
  font-weight: bold;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}

.anchor .btn-wrap {
  gap: 20px 50px;
  max-width: 300px;
}
@media (min-width: 768px) {
  .anchor .btn-wrap {
    max-width: 800px;
  }
}
.anchor .btn-wrap a {
  width: 100%;
  padding-inline: 20px 15px;
}
@media (min-width: 576px) {
  .anchor .btn-wrap a {
    padding-inline: 35px 15px;
  }
}
@media (min-width: 768px) {
  .anchor .btn-wrap a {
    width: calc(50% - 25px);
    padding-inline: 45px 15px;
  }
}

.page-salon__sec01 {
  padding-block: clamp(60px, 10vw, 120px) clamp(80px, 12vw, 170px);
  background-color: var(--sub);
}
.page-salon__sec01 .staff-img {
  aspect-ratio: 524/787;
}
.page-salon__sec01 .reserve-links__link.-sns {
  background-color: var(--txt);
  color: white;
  padding-block: 10px;
  gap: 10px;
}
@media (min-width: 768px) {
  .page-salon__sec01 .reserve-links__link.-sns {
    padding-block: 45px;
  }
}
.page-salon__sec01 .reserve-links__link.-sns .s-icon {
  max-width: clamp(90px, 12vw, 150px);
}
.page-salon__sec01 .reserve-links__link .reserve-links__wrap {
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 576px) {
  .page-salon__sec01 .reserve-links__link .reserve-links__wrap {
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .page-salon__sec01 .reserve-links__link .reserve-links__wrap {
    gap: clamp(20px, 2vw, 40px);
    flex-direction: row;
  }
}
.page-salon__sec01 .reserve-links__link .reserve-links__wrap > p br {
  display: none;
}
@media (min-width: 768px) {
  .page-salon__sec01 .reserve-links__link .reserve-links__wrap > p br {
    display: block;
  }
}
.page-salon .career-box .dl {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .page-salon .career-box .dl {
    flex-direction: row;
    padding-left: 0;
  }
}
.page-salon .career-box .dl::before, .page-salon .career-box .dl::after {
  content: "";
  position: absolute;
  display: block;
}
@media (min-width: 768px) {
  .page-salon .career-box .dl::before, .page-salon .career-box .dl::after {
    display: none;
  }
}
.page-salon .career-box .dl::before {
  background-color: var(--txt);
  width: clamp(14px, 2vw, 18px);
  height: clamp(14px, 2vw, 18px);
  border-radius: 100%;
  top: clamp(4px, 0.5vw, 7px);
  left: 0;
}
.page-salon .career-box .dl::after {
  background-color: var(--txt);
  width: 2px;
  height: 100%;
  top: clamp(18px, 1vw, 25px);
  left: clamp(6.25px, 0.8vw, 7.5px);
}
.page-salon .career-box .dl:last-child .dt,
.page-salon .career-box .dl:last-child .dd {
  margin-bottom: 18px;
  padding-bottom: 0;
}
.page-salon .career-box .dt {
  position: relative;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
@media (min-width: 768px) {
  .page-salon .career-box .dt {
    padding-bottom: 50px;
    width: 125px;
  }
}
.page-salon .career-box .dt::before, .page-salon .career-box .dt::after {
  content: "";
  position: absolute;
  display: none;
}
@media (min-width: 768px) {
  .page-salon .career-box .dt::before, .page-salon .career-box .dt::after {
    display: block;
  }
}
.page-salon .career-box .dt::before {
  background-color: var(--txt);
  width: clamp(14px, 2vw, 18px);
  height: clamp(14px, 2vw, 18px);
  border-radius: 100%;
  top: clamp(4px, 0.5vw, 7px);
}
@media (min-width: 768px) {
  .page-salon .career-box .dt::before {
    right: 0;
  }
}
.page-salon .career-box .dt::after {
  background-color: var(--txt);
  width: 2px;
  height: 100%;
  top: clamp(18px, 1vw, 25px);
  right: clamp(6.25px, 0.8vw, 7.5px);
}
.page-salon .career-box .dd {
  flex: 1;
  padding-bottom: 30px;
  color: white;
}
@media (min-width: 768px) {
  .page-salon .career-box .dd {
    padding-bottom: 50px;
    padding-left: 45px;
  }
}
.page-salon__sec02 {
  padding-block: clamp(60px, 9vw, 110px) clamp(80px, 12vw, 150px);
}
.page-salon__sec02 .salon-list {
  max-width: 750px;
  margin-inline: auto;
}
.page-salon__sec02 .salon-list .dl {
  display: flex;
  flex-direction: column;
  gap: 5px 20px;
  border-bottom: solid 1px var(--txt);
  padding-block: 20px;
}
@media (min-width: 768px) {
  .page-salon__sec02 .salon-list .dl {
    flex-direction: row;
  }
}
.page-salon__sec02 .salon-list .dt {
  font-weight: bold;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .page-salon__sec02 .salon-list .dt {
    width: 170px;
    font-weight: normal;
    font-size: 1.25rem;
  }
}
.page-salon__sec02 .salon-list .dd {
  flex: 1;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.page-salon__sec02 .salon-list .dd a:hover {
  opacity: 0.5;
}
.page-salon__sec02 .map iframe {
  height: clamp(300px, 40vw, 600px);
}

.salon-img {
  max-width: 552px;
  margin-inline: auto;
  width: 80%;
}

.page-recruit__sec01 {
  padding-block: clamp(80px, 14vw, 200px);
}
@media (min-width: 768px) {
  .page-recruit__sec01 .container {
    max-width: 760px;
  }
}
.page-recruit__sec02 {
  padding-block: clamp(60px, 8vw, 120px);
  background-color: #cec4b5;
}
.page-recruit .salon-list {
  max-width: 750px;
  margin-inline: auto;
}
.page-recruit .salon-list .dl {
  display: flex;
  flex-direction: column;
  gap: 5px 20px;
  border-bottom: solid 1px white;
  padding-block: 20px;
}
@media (min-width: 768px) {
  .page-recruit .salon-list .dl {
    flex-direction: row;
  }
}
.page-recruit .salon-list .dt {
  font-weight: bold;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .page-recruit .salon-list .dt {
    width: 170px;
    font-weight: normal;
    font-size: 1.25rem;
  }
}
.page-recruit .salon-list .dd {
  flex: 1;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.page-recruit .salon-list .dd a:hover {
  opacity: 0.5;
}

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

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

.page-news .webgene-pagination,
.page-newsdetail .webgene-pagination {
  margin-top: clamp(60px, 11vw, 150px);
}
.page-news .webgene-pagination ul,
.page-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) {
  .page-news .webgene-pagination ul,
.page-newsdetail .webgene-pagination ul {
    flex-direction: row;
    align-items: stretch;
  }
}
.page-news .webgene-pagination li,
.page-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;
}
.page-news .webgene-pagination .prev > a,
.page-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;
}
.page-news .webgene-pagination .prev > a::before,
.page-newsdetail .webgene-pagination .prev > a::before {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: clamp(25px, 3vw, 32px);
  height: clamp(25px, 3vw, 32px);
  transition: all 0.3s ease;
  transform: translateX(0) scale(-1, 1);
}
.page-news .webgene-pagination .prev > a:hover,
.page-newsdetail .webgene-pagination .prev > a:hover {
  background-position: 120% 50%;
}
.page-news .webgene-pagination .prev > a:hover::after,
.page-newsdetail .webgene-pagination .prev > a:hover::after {
  transform: translateX(8px) scale(-1, 1);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .page-news .webgene-pagination .next,
.page-newsdetail .webgene-pagination .next {
    margin-left: auto;
  }
}
.page-news .webgene-pagination .next > a,
.page-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;
}
.page-news .webgene-pagination .next > a::after,
.page-newsdetail .webgene-pagination .next > a::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: clamp(25px, 3vw, 32px);
  height: clamp(25px, 3vw, 32px);
  transition: all 0.3s ease;
}
.page-news .webgene-pagination .next > a:hover,
.page-newsdetail .webgene-pagination .next > a:hover {
  background-position: 120% 50%;
}
.page-news .webgene-pagination .next > a:hover::after,
.page-newsdetail .webgene-pagination .next > a:hover::after {
  transform: translateX(8px);
  transition: all 0.3s ease;
}
.page-news .webgene-pagination .btn-block,
.page-newsdetail .webgene-pagination .btn-block {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-news .webgene-pagination .btn-block,
.page-newsdetail .webgene-pagination .btn-block {
    margin-top: 50px;
  }
}
.page-news .webgene-pagination .btn-block > a,
.page-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;
}
.page-news .webgene-pagination .btn-block > a::after,
.page-newsdetail .webgene-pagination .btn-block > a::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: clamp(25px, 3vw, 32px);
  height: clamp(25px, 3vw, 32px);
  transition: all 0.3s ease;
}
.page-news .webgene-pagination .btn-block > a:hover,
.page-newsdetail .webgene-pagination .btn-block > a:hover {
  background-position: 120% 50%;
}
.page-news .webgene-pagination .btn-block > a:hover::after,
.page-newsdetail .webgene-pagination .btn-block > a:hover::after {
  transform: translateX(8px);
  transition: all 0.3s ease;
}

.newsdetail-contents {
  margin-inline: auto;
  max-width: 820px;
}
.newsdetail-contents__date {
  font-family: var(--marcellus);
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  margin-bottom: 15px;
}
.newsdetail-contents__title {
  font-size: clamp(1.625rem, 1.382rem + 1.05vw, 2.375rem);
  margin-bottom: 35px;
}
.newsdetail-contents__meta {
  margin-top: 35px;
}

.page-contact__sec {
  padding-block: clamp(80px, 12vw, 150px);
}
.page-contact .contact-form label {
  margin: 0;
}
.page-contact .contact-form input[type=text],
.page-contact .contact-form input[type=tel],
.page-contact .contact-form input[type=email],
.page-contact .contact-form input[type=submit],
.page-contact .contact-form textarea {
  background-color: white;
  width: 100%;
  border-radius: 10px;
  border: solid 1px var(--main);
  padding: 8px;
}
.page-contact .contact-form textarea {
  height: 300px;
}
.page-contact .contact-form .formRow:not(:last-child) {
  margin-bottom: 55px;
}
.page-contact .contact-form .formTh {
  margin-bottom: 11px;
}
.page-contact .contact-form .formTh label {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  margin-bottom: 0;
}
.page-contact .contact-form .requiredText {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  background-color: var(--main);
  border-radius: 50px;
  font-size: 0.9375rem;
  padding: 4px 7px;
}
.page-contact .contact-form .privacyLabel {
  cursor: pointer;
}
.page-contact .contact-form .checkbox {
  width: clamp(18px, 3vw, 25px);
  height: clamp(18px, 3vw, 25px);
  border: 1px solid var(--main);
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}
.page-contact .privacypolicy-box {
  border-radius: 13px;
  background-color: var(--main);
  color: white;
  font-size: 0.8125rem;
  padding-right: 7px;
  overflow: clip;
}
.page-contact .privacypolicy-box__inner {
  padding: 12px;
  height: 230px;
  overflow-y: auto;
}
.page-contact .privacypolicy-box__inner::-webkit-scrollbar {
  width: 3px;
}
.page-contact .privacypolicy-box__inner::-webkit-scrollbar-track {
  background-color: transparent;
}
.page-contact .privacypolicy-box__inner::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 8px;
}
.page-contact .privacypolicy-box__inner a {
  color: white;
}

.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--ac);
}
.header__inner {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (min-width: 992px) {
  .header__inner {
    padding: 14px 55px;
  }
}
.header__brand {
  display: flex;
}
.header__brand > a {
  display: inline-block;
  width: 100%;
  max-width: 120px;
}
@media (min-width: 768px) {
  .header__brand > a {
    max-width: 160px;
  }
}
@media (min-width: 992px) {
  .header__brand > a {
    max-width: 200px;
  }
}
.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: 100px 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  gap: 25px;
  background-color: var(--ac);
}
@media (min-width: 992px) {
  .header__nav {
    flex-direction: row;
    margin-left: auto;
    gap: clamp(15px, 4vw, 50px);
    position: static;
    height: auto;
    width: auto;
    transform: none;
    transition: none;
    padding: 0;
    overflow-y: unset;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
  }
}
.header__nav.open {
  opacity: 1;
  visibility: visible;
}
.header__nav-link {
  line-height: 1.34;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .header__nav-link {
    padding-block: 15px;
  }
}
.header__nav-link:hover {
  opacity: 0.5;
}
.header__nav-link > p:nth-child(2) {
  color: var(--txt);
  font-size: 0.625rem;
}
@media (min-width: 576px) {
  .header__nav-link > p:nth-child(2) {
    font-size: 0.75rem;
  }
}

.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;
  margin-left: auto;
  width: 29px;
  height: 20px;
}
@media (min-width: 768px) {
  #hum-btn {
    width: 44px;
    height: 31px;
  }
}
@media (min-width: 992px) {
  #hum-btn {
    display: none;
  }
}

.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%);
}
.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(15px) rotate(-45deg);
  }
}
.is-nav-open .btn-trigger__bar:nth-of-type(2) {
  opacity: 0;
}
.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(-15px) 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);
  }
}

.pop-info {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  max-width: 80px;
}
@media (min-width: 576px) {
  .pop-info {
    bottom: 25px;
    right: 25px;
    max-width: clamp(80px, 11vw, 140px);
  }
}
.pop-info a:hover {
  opacity: 0.5;
}