:root {
  --notosans: "Noto Sans jP", sans-serif;
  --zengothic: "Zen Kaku Gothic New", sans-serif;
  --bizgothic: "BIZ UDGothic", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --zenold: "Zen Old Mincho", serif;
  --sawarabi: "Sawarabi Mincho", serif;
  --shippori: "Shippori Mincho", serif;
  --kiwi: "Kiwi Maru", "Zen Maru Gothic", "Kosugi Maru", serif;
  --zenmaru: "Zen Maru Gothic", serif;
  --kosugimaru: "Kosugi Maru", serif;
  --futura: "futura-pt", sans-serif;
  --futura-bold: "futura-pt-bold", sans-serif;
  --tsuku: "fot-tsukuardgothic-std", sans-serif;
}

/* 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: hidden;
}

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: #565656;
  --main: #177480;
  --ac: rgba(225, 255, 243, 1);
  --bg-gd: linear-gradient(
      87deg,
      #e2d2b4 23.64%,
      #bfad8e 35.26%,
      #d0c0a1 62.2%,
      #9c8968 75.05%
    )
    1;
  --bg-gd02: linear-gradient(
      45deg,
      #e2d2b4 23.64%,
      #bfad8e 35.26%,
      #d0c0a1 62.2%,
      #9c8968 75.05%
    )
    1;
  --tsuku: fot-tsukuardgothic-std, sans-serif;
  --marcellus: "Marcellus", serif;
}

.bl {
  color: var(--main);
}

.ac-bl {
  color: var(--ac);
}

.bt-line {
  border-bottom: solid 1px var(--main);
}

.bl-line {
  border-left: solid 1px var(--main);
}

.br-line {
  border-right: solid 1px var(--main);
}

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

.bk-wh {
  background-color: white;
}

.bb-rd-10 {
  border-radius: 10px;
}

.bb-rd-20 {
  border-radius: 20px;
}

.bb-rd-30 {
  border-radius: 30px;
}

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

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

.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);
  }
}
.section-title > .en {
  font-size: clamp(1.875rem, 1.389rem + 2.1vw, 3.375rem);
  font-family: var(--marcellus);
  line-height: 1.2;
  margin-bottom: 5px;
}
.section-title > h2 {
  font-family: var(--tsuku);
  line-height: 1.2;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}

.contents-title h3 {
  font-family: var(--tsuku);
  font-size: clamp(1.063rem, 0.759rem + 1.31vw, 2rem);
}

.btn-wrap > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-family: var(--marcellus);
  font-weight: 500;
  color: white;
  border-radius: 99px;
  background-image: linear-gradient(97deg, #177480 0%, #177480 20%, #98d9bf 40%, #98d9bf 60%, #177480 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding: 13px 35px;
  gap: 24px;
}
@media (min-width: 768px) {
  .btn-wrap > a {
    min-width: 250px;
  }
}
.btn-wrap > a::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 25px;
  height: 6px;
  transition: all 0.3s ease;
}
.btn-wrap > a:hover {
  background-position: 120% 50%;
}
.btn-wrap > a:hover::after {
  transform: translateX(8px);
  transition: all 0.3s ease;
}
.btn-wrap .insta {
  gap: unset;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  justify-content: flex-start;
}
.btn-wrap .insta::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 25px;
  min-width: 25px;
  height: 6px;
  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(8px);
}
.btn-wrap .insta .icon {
  width: 19px;
  margin-right: 10px;
}

.l-header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px 10px 0;
}
@media (min-width: 576px) {
  .l-header {
    padding: clamp(10px, 3vw, 40px) 20px 0;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  max-width: 1150px;
  margin-inline: auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 12px 20px;
}
@media (min-width: 576px) {
  .l-header__inner {
    padding: 15px clamp(20px, 3vw, 50px);
  }
}
@media (min-width: 1200px) {
  .l-header__brand {
    border-right: solid 1px;
    -o-border-image: var(--bg-gd);
       border-image: var(--bg-gd);
    padding-right: clamp(20px, 4vw, 70px);
    margin-right: clamp(20px, 4vw, 70px);
  }
}
.l-header__logo {
  width: 100%;
  max-width: 100px;
}
@media (min-width: 576px) {
  .l-header__logo {
    max-width: 115px;
  }
}
.l-header__logo:hover {
  opacity: 0.5;
}
.l-header__nav {
  position: fixed;
  z-index: 997;
  inset: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  padding: 150px 0;
  overflow-y: auto;
  background: url(../images/bg-2.jpg) center/cover no-repeat;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 1200px) {
  .l-header__nav {
    margin-left: auto;
    gap: clamp(15px, 4vw, 40px);
    position: static;
    height: auto;
    width: auto;
    transform: none;
    transition: none;
    padding: 0;
    overflow-y: unset;
    opacity: 1;
    visibility: visible;
    background: none;
  }
}
.l-header__nav.open {
  opacity: 1;
  visibility: visible;
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 576px) {
  .l-header__nav-list {
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .l-header__nav-list {
    margin-left: auto;
    flex-direction: row;
    gap: clamp(10px, 3vw, 30px);
  }
}
.l-header__nav-link {
  font-size: 1rem;
  font-family: var(--marcellus);
}
.l-header__nav-link:hover {
  opacity: 0.5;
}
.l-header__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1200px) {
  .l-header__wrap {
    gap: clamp(15px, 4vw, 40px);
    justify-content: start;
    flex-direction: row;
  }
}
.l-header__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-family: var(--marcellus);
  border-radius: 99px;
  background-image: linear-gradient(97deg, #177480 0%, #177480 20%, #98d9bf 40%, #98d9bf 60%, #177480 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding: 13px 27px;
  gap: 24px;
  min-width: 175px;
}
.l-header__reserve::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 25px;
  height: 6px;
  transition: all 0.3s ease;
}
.l-header__reserve:hover {
  background-position: 120% 50%;
  transition: all 0.3s ease;
  color: white;
}
.l-header__reserve:hover::after {
  transform: translateX(8px);
  transition: all 0.3s ease;
}

.gjs-dashed .l-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: 1200px) {
  #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: 1200px) {
  .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(9.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(-9.5px) rotate(45deg);
}
@media (min-width: 768px) {
  .is-nav-open .btn-trigger__bar:nth-of-type(3) {
    transform: translateY(-15px) rotate(45deg);
  }
}

.l-footer {
  background-color: var(--main);
  padding: 80px 20px 50px;
  color: white;
}
@media (min-width: 768px) {
  .l-footer {
    padding: 110px 20px 85px;
  }
}
.l-footer__inner {
  max-width: 1070px;
  margin-inline: auto;
}
.l-footer__top {
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .l-footer__top {
    justify-content: space-between;
    flex-direction: row;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
.l-footer__logo {
  max-width: 180px;
  padding: 6px;
}
@media (min-width: 576px) {
  .l-footer__logo {
    max-width: 245px;
  }
}
.l-footer__address {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.l-footer__address .address-wrap h2,
.l-footer__address .address-wrap p {
  font-size: clamp(0.875rem, 0.794rem + 0.35vw, 1.125rem);
  text-align: center;
}
@media (min-width: 768px) {
  .l-footer__address .address-wrap h2,
.l-footer__address .address-wrap p {
    text-align: left;
  }
}
.l-footer__address .address-wrap > h2 {
  font-family: var(--marcellus);
  margin-bottom: 5px;
}
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 60px;
}
.l-footer__nav-link {
  color: white;
  width: calc(50% - 6px);
  font-family: var(--marcellus);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
@media (min-width: 576px) {
  .l-footer__nav-link {
    width: auto;
  }
}
.l-footer__nav-link:hover {
  color: var(--ac);
}
.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 10px 16px;
}
@media (min-width: 576px) {
  .l-footer__links {
    flex-direction: row;
  }
}
.l-footer__links > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 500;
  font-family: var(--marcellus);
  color: var(--main);
  border-radius: 99px;
  background-image: linear-gradient(97deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgb(225, 255, 243) 40%, rgb(225, 255, 243) 60%, rgb(255, 255, 255) 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding: 12px 25px;
  min-width: 190px;
}
.l-footer__links > a::after {
  content: "";
  display: block;
  background: url(../images/arrow_gr.svg) center/contain no-repeat;
  width: 25px;
  min-width: 25px;
  height: 6px;
  margin-left: clamp(20px, 3vw, 44px);
  transition: all 0.3s ease;
}
.l-footer__links > a:hover {
  background-position: 120% 50%;
}
.l-footer__links > a:hover::after {
  transition: all 0.3s ease;
  transform: translateX(8px);
}
.l-footer__links > a .icon {
  width: 16px;
  margin-right: 2px;
}
.l-footer__other {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .l-footer__other {
    flex-direction: row;
    align-items: baseline;
  }
}
.l-footer .copyright {
  font-size: 0.875rem;
}

.page-top__fv {
  position: relative;
  z-index: 1;
  padding: clamp(100px, 12vw, 180px) 20px;
}
.page-top .fv-text {
  text-align: center;
  margin-bottom: 28px;
}
.page-top .fv-text__title {
  font-family: var(--marcellus);
  line-height: 1.2;
  background: linear-gradient(87deg, #e2d2b4 23.64%, #bfad8e 35.26%, #d0c0a1 62.2%, #9c8968 75.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
}
.page-top .fv-text__title > p:first-child {
  font-size: clamp(1.875rem, 0.863rem + 4.38vw, 5rem);
}
.page-top .fv-text__title > p:last-child {
  font-size: clamp(1.375rem, 0.849rem + 2.28vw, 3rem);
}
.page-top .fv-text > h1 {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.page-top .fv-image {
  margin-inline: auto;
  width: 80%;
  position: relative;
  aspect-ratio: 737/982;
  overflow: hidden;
  border-radius: 50% 50% 0 0/45% 45% 0 0;
}
@media (min-width: 768px) {
  .page-top .fv-image {
    width: 52%;
  }
}
.page-top .fv-image::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(87deg, #e2d2b4 23.64%, #bfad8e 35.26%, #d0c0a1 62.2%, #9c8968 75.05%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.page-top .fv-image__inner {
  height: 100%;
  padding: 6px;
  overflow: hidden;
  border-radius: 50% 50% 0 0/45% 45% 0 0;
}
@media (min-width: 768px) {
  .page-top .fv-image__inner {
    padding: 10px;
  }
}
.page-top .fv-image img {
  aspect-ratio: inherit;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 0 0/45% 45% 0 0;
}
.page-top .loopText {
  position: absolute;
  z-index: -1;
  top: 55%;
  transform: translateY(-50%);
  width: 100%;
  font-size: clamp(3.75rem, 1.32rem + 10.51vw, 11.25rem);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--marcellus);
}
.page-top__sec01 {
  padding-block: clamp(80px, 14vw, 200px);
  padding-inline: 20px;
  position: relative;
  z-index: 1;
  text-align: center;
  border-top: solid 2px;
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
}
@media (min-width: 768px) {
  .page-top__sec01 {
    text-align: left;
  }
}
.page-top__sec01::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: -1;
}
@media (min-width: 768px) {
  .page-top__sec01::after {
    display: none;
  }
}
.page-top__sec01 > .row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .page-top__sec01 > .row {
    align-items: start;
  }
}
.page-top__sec01 .logo {
  position: relative;
  margin-inline: auto;
  max-width: 180px;
  padding-bottom: 40px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-top__sec01 .logo {
    max-width: 290px;
    padding-bottom: 70px;
    margin-bottom: 60px;
  }
}
.page-top__sec01 .logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
}
.page-top__sec02 {
  padding-block: clamp(60px, 10vw, 100px);
}
.page-top__sec02 .section-title {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-top__sec02 .section-title {
    margin-bottom: 65px;
  }
}
.page-top__sec02 .box--wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-top__sec02 .box--wrap {
    flex-direction: row;
  }
}
.page-top__sec02 .box--wrap .box {
  width: 100%;
  padding-block: 30px;
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd02);
     border-image: var(--bg-gd02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
@media (min-width: 576px) {
  .page-top__sec02 .box--wrap .box {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-top__sec02 .box--wrap .box {
    flex-direction: column;
    width: 33.3333333333%;
    border-bottom: none;
    border-right: solid 2px;
    padding-inline: clamp(20px, 4vw, 60px);
    padding-block: 0;
  }
}
@media (max-width: 575px) {
  .page-top__sec02 .box--wrap .box:first-child {
    padding-top: 0;
  }
}
.page-top__sec02 .box--wrap .box:last-child {
  border-right: none;
  border-bottom: none;
}
@media (max-width: 575px) {
  .page-top__sec02 .box--wrap .box:last-child {
    padding-bottom: 0;
  }
}
.page-top__sec02 .box--wrap .box__img {
  margin-inline: auto;
  max-width: 35%;
  min-width: 170px;
}
@media (min-width: 576px) {
  .page-top__sec02 .box--wrap .box__img {
    max-width: 95%;
  }
}
.page-top__sec03 {
  position: relative;
  z-index: 1;
  padding-block: 60px;
  border-top: solid 2px;
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
}
@media (min-width: 992px) {
  .page-top__sec03 {
    padding-block: 0 clamp(60px, 10vw, 100px);
  }
}
.page-top__sec03::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../images/bg-3.jpg) center/cover no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  inset: 0;
}
.page-top__sec03 .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .page-top__sec03 .container {
    flex-direction: row;
    align-items: flex-start;
  }
}
.page-top__sec03 .aside-title {
  margin-bottom: 55px;
}
@media (min-width: 992px) {
  .page-top__sec03 .aside-title {
    width: 35%;
    height: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    align-self: flex-start;
    padding-top: 160px;
    padding-bottom: 60px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .page-top__sec03 .sec-body {
    width: 65%;
    padding-left: clamp(20px, 10vw, 100px);
    border-left: solid 2px;
    -o-border-image: var(--bg-gd02);
       border-image: var(--bg-gd02);
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 100px;
  }
}
.page-top__sec03 .box:not(:last-child) {
  padding-bottom: clamp(60px, 10vw, 130px);
  margin-bottom: clamp(40px, 8vw, 95px);
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
}
.page-top__sec03 .box__text {
  margin-bottom: 35px;
}
.page-top__sec03 .box__text .contents-title {
  display: flex;
  align-items: center;
}
.page-top__sec03 .box__text .number {
  font-size: clamp(1.875rem, 1.389rem + 2.1vw, 3.375rem);
  font-family: var(--marcellus);
  margin-right: clamp(20px, 3vw, 40px);
}
.page-top__sec03 .box__img img {
  aspect-ratio: 4/3;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .page-top__sec03 .box__img img {
    border-radius: 30px;
  }
}
.page-top__sec04 .box--wrap {
  padding-block: clamp(60px, 10vw, 135px);
}
.page-top__sec04 .box--wrap .box {
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
  padding-block: 75px;
}
.page-top__sec04 .box--wrap .box:first-child {
  padding-top: 0;
}
.page-top__sec04 .box--wrap .box:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.page-top__sec04 .box--wrap .box__inner {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.page-top__sec04 .box--wrap .box:nth-child(odd) .box__inner {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .page-top__sec04 .box--wrap .box:nth-child(odd) .box__inner {
    flex-direction: row;
  }
}
.page-top__sec04 .box--wrap .box:nth-child(even) .box__inner {
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-top__sec04 .box--wrap .box:nth-child(even) .box__inner {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .page-top__sec04 .box--wrap .box__text, .page-top__sec04 .box--wrap .box__img {
    width: 50%;
  }
}
.page-top__sec04 .box--wrap .box__text {
  padding-inline: 20px;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .page-top__sec04 .box--wrap .box__text {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .page-top__sec04 .box--wrap .box__text {
    padding-inline: clamp(30px, 10vw, 100px);
  }
}
.page-top__sec04 .box--wrap .box__img {
  margin-inline: auto;
  position: relative;
  aspect-ratio: 432/717;
  overflow: hidden;
  border-radius: 9999px;
  min-width: 200px;
}
@media (max-width: 767px) {
  .page-top__sec04 .box--wrap .box__img {
    width: 55%;
  }
}
.page-top__sec04 .box--wrap .box__img::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(87deg, #e2d2b4 23.64%, #bfad8e 35.26%, #d0c0a1 62.2%, #9c8968 75.05%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.page-top__sec04 .box--wrap .box__img-inner {
  height: 100%;
  padding: 6px;
  overflow: hidden;
  border-radius: inherit;
}
@media (min-width: 768px) {
  .page-top__sec04 .box--wrap .box__img-inner {
    padding: 10px;
  }
}
.page-top__sec04 .box--wrap .box__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: inherit;
}
.page-top__sec04 .back-img {
  position: relative;
  z-index: 1;
  height: clamp(230px, 47vw, 700px);
  overflow: hidden;
}
.page-top__sec04 .back-img img {
  position: absolute;
  z-index: -1;
  top: -20%;
  min-height: 300px;
}
.page-top__sec05 {
  padding-block: 75px;
}
@media (min-width: 1200px) {
  .page-top__sec05 .container {
    max-width: 1050px;
  }
}
.page-top__news {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: solid 2px;
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
  padding-block: clamp(30px, 3vw, 60px);
}
@media (min-width: 768px) {
  .page-top__news {
    flex-direction: row;
    align-items: flex-start;
  }
}
.page-top__news .section-title {
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .page-top__news .section-title {
    width: 200px;
    margin-bottom: 0;
  }
}
.page-top__news-body {
  flex: 1;
}
@media (min-width: 992px) {
  .page-top__news-body {
    padding-left: clamp(20px, 4vw, 80px);
    border-left: solid 2px;
    -o-border-image: var(--bg-gd);
       border-image: var(--bg-gd);
    padding-block: 12px;
  }
}
.page-top .webgene-item:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-top .webgene-item:not(:last-child) {
    margin-bottom: 35px;
  }
}
.page-top .news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 40px;
}
.page-top .news-item > p {
  font-family: var(--marcellus);
}
.page-top .news-item > h3 {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
@media (min-width: 768px) {
  .page-top__other {
    margin-top: 60px;
  }
}
.page-top__other-recruit, .page-top__other-salon {
  padding-block: 35px;
}
.page-top__other-recruit {
  -o-border-image: var(--bg-gd02);
     border-image: var(--bg-gd02);
  border-right: none;
  border-bottom: solid 2px;
}
@media (min-width: 768px) {
  .page-top__other-recruit {
    border-right: solid 2px;
    border-bottom: none;
  }
}

.page-fv {
  min-height: 690px;
  display: flex;
  flex-direction: column;
}
@media (max-height: 800px) {
  .page-fv {
    min-height: 500px;
  }
}
@media (max-height: 700px) and (max-width: 576px) {
  .page-fv {
    height: auto;
  }
}
.page-fv .fv-image {
  min-height: inherit;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
}
@media (max-height: 700px) and (max-width: 576px) {
  .page-fv .fv-image {
    aspect-ratio: 2/2.5;
    min-height: auto;
  }
}
@media (min-width: 768px) {
  .page-fv .fv-image {
    border-bottom: solid 3px;
  }
}
.page-fv .fv-image > img {
  height: 100%;
  min-height: inherit;
  aspect-ratio: 1512/600;
}
@media (max-height: 700px) and (max-width: 576px) {
  .page-fv .fv-image > img {
    aspect-ratio: inherit;
  }
}
.page-fv .fv-text {
  padding-block: clamp(30px, 4vw, 55px);
}
.page-fv .fv-text .en,
.page-fv .fv-text h1 {
  line-height: normal;
}
.page-fv .fv-text .en {
  font-size: clamp(2.188rem, 0.871rem + 5.69vw, 6.25rem);
  font-family: var(--marcellus);
}
.page-fv .fv-text h1 {
  font-size: clamp(1.25rem, 1.088rem + 0.7vw, 1.75rem);
}

.page-commitment__sec01 {
  padding-block: clamp(80px, 12vw, 170px);
}
.page-commitment__sec01 img {
  aspect-ratio: 3/2;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-commitment__sec01 img {
    border-radius: 30px;
  }
}
.page-commitment__sec01-bottom {
  display: flex;
  align-items: flex-start;
  max-width: 1110px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .page-commitment__sec01-bottom {
    align-items: flex-end;
  }
}
.page-commitment__sec01-bottom .box:nth-child(1) {
  margin-bottom: clamp(15px, 2vw, 30px);
}
@media (min-width: 768px) {
  .page-commitment__sec01-bottom .box:nth-child(1) {
    margin-bottom: 0;
    margin-top: clamp(100px, 20vw, 200px);
  }
}
.page-commitment__sec01-bottom .box:nth-child(2) {
  margin-bottom: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .page-commitment__sec01-bottom .box:nth-child(2) {
    margin-bottom: clamp(70px, 12vw, 130px);
  }
}
.page-commitment__sec02 {
  background: url(../images/bg-3.jpg) center/cover no-repeat;
  padding-block: clamp(80px, 12vw, 170px);
  border-top: 2px solid;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
}
.page-commitment__sec02 .box--wrap {
  padding-block: clamp(60px, 10vw, 135px);
}
.page-commitment__sec02 .box--wrap .box {
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
  padding-block: 75px;
}
.page-commitment__sec02 .box--wrap .box:first-child {
  padding-top: 0;
}
.page-commitment__sec02 .box--wrap .box:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.page-commitment__sec02 .box--wrap .box .contents-title .number {
  font-size: clamp(1.875rem, 1.187rem + 2.98vw, 4rem);
  font-family: var(--marcellus);
  margin-bottom: 15px;
}
.page-commitment__sec02 .box--wrap .box__inner {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.page-commitment__sec02 .box--wrap .box:nth-child(odd) .box__inner {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .page-commitment__sec02 .box--wrap .box:nth-child(odd) .box__inner {
    flex-direction: row;
  }
}
.page-commitment__sec02 .box--wrap .box:nth-child(even) .box__inner {
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-commitment__sec02 .box--wrap .box:nth-child(even) .box__inner {
    flex-direction: row;
  }
}
.page-commitment__sec02 .box--wrap .box__text {
  padding-inline: 20px;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .page-commitment__sec02 .box--wrap .box__text {
    margin-bottom: 0;
    width: 55%;
  }
}
@media (min-width: 992px) {
  .page-commitment__sec02 .box--wrap .box__text {
    padding-inline: clamp(30px, 10vw, 100px);
  }
}
.page-commitment__sec02 .box--wrap .box__img {
  margin-inline: auto;
  position: relative;
  aspect-ratio: 432/717;
  overflow: hidden;
  border-radius: 9999px;
  min-width: 200px;
}
@media (max-width: 767px) {
  .page-commitment__sec02 .box--wrap .box__img {
    width: 55%;
  }
}
@media (min-width: 768px) {
  .page-commitment__sec02 .box--wrap .box__img {
    width: 45%;
  }
}
.page-commitment__sec02 .box--wrap .box__img::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(87deg, #e2d2b4 23.64%, #bfad8e 35.26%, #d0c0a1 62.2%, #9c8968 75.05%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.page-commitment__sec02 .box--wrap .box__img-inner {
  height: 100%;
  padding: 6px;
  overflow: hidden;
  border-radius: inherit;
}
@media (min-width: 768px) {
  .page-commitment__sec02 .box--wrap .box__img-inner {
    padding: 10px;
  }
}
.page-commitment__sec02 .box--wrap .box__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: inherit;
}
.page-commitment__sec02 .box--wrap .point-wrap {
  max-width: 900px;
  margin-inline: auto;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .page-commitment__sec02 .box--wrap .point-wrap {
    margin-top: 100px;
  }
}
.page-commitment__sec02 .box--wrap .point-wrap__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-commitment__sec02 .box--wrap .point-wrap__box {
    flex-direction: row;
    gap: 40px;
  }
}
.page-commitment__sec02 .box--wrap .point-wrap__box-img {
  width: clamp(100px, 10vw, 137px);
}
.page-commitment__sec02 .box--wrap .point-wrap__box-img img {
  border-radius: 100%;
  overflow: hidden;
  aspect-ratio: 1;
}
.page-commitment__sec02 .box--wrap .point-wrap__box-text {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .page-commitment__sec02 .box--wrap .point-wrap__box-text {
    text-align: left;
  }
}
.page-commitment__sec02 .box--wrap .point-wrap__box-text h4 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  line-height: 1.8;
}
.page-commitment__sec02 .gallery-wrap {
  margin-top: 55px;
  margin-inline: auto;
  max-width: 615px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 3vw, 30px);
}
@media (min-width: 768px) {
  .page-commitment__sec02 .gallery-wrap {
    margin-top: 80px;
  }
}
.page-commitment__sec02 .gallery-wrap__img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
.page-commitment__sec02 .gallery-wrap__img img {
  aspect-ratio: 1;
}
.page-commitment__sec02 .merit-wrap {
  margin-top: 55px;
  margin-inline: auto;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .page-commitment__sec02 .merit-wrap {
    padding: 35px;
    border-radius: 30px;
    flex-direction: row;
  }
}
.page-commitment__sec02 .merit-wrap h5 {
  color: var(--main);
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  width: 100%;
  margin-bottom: 35px;
}
.page-commitment__sec02 .merit-wrap__img {
  padding-block: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-commitment__sec02 .merit-wrap__img {
    width: 33.3333333333%;
    padding-block: 0;
    padding-inline: 25px;
    text-align: left;
  }
}
.page-commitment__sec02 .merit-wrap__img:first-of-type {
  padding-top: 0;
}
.page-commitment__sec02 .merit-wrap__img:last-of-type {
  padding-bottom: 0;
}
.page-commitment__sec02 .merit-wrap__img:not(:last-of-type) {
  border-bottom: solid 1px var(--main);
}
@media (min-width: 768px) {
  .page-commitment__sec02 .merit-wrap__img:not(:last-of-type) {
    border-right: solid 1px var(--main);
    border-bottom: none;
  }
}

.page-menu__sec01 .container {
  max-width: 1050px;
}

.gjs-dashed .js-tab-panel {
  display: block !important;
  opacity: 1 !important;
}

.js-tab {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-family: var(--marcellus);
  font-weight: 500;
  border-radius: 99px;
  background-size: 260% 100%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.5s ease;
  padding: 13px 35px;
  gap: 24px;
  color: var(--main) !important;
  border: solid 1px var(--main);
  background-image: linear-gradient(97deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 20%, rgb(225, 255, 243) 40%, rgb(225, 255, 243) 60%, rgb(255, 255, 255) 100%);
  word-break: break-all;
}
@media (min-width: 768px) {
  .js-tab {
    min-width: 250px;
  }
}
.js-tab > p {
  text-align: center;
}
.js-tab.is-active {
  background-image: linear-gradient(97deg, #177480 0%, #177480 20%, #98d9bf 40%, #98d9bf 60%, #177480 100%);
  color: white !important;
  border: none;
}
.js-tab.is-active::after {
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
}
.js-tab::after {
  content: "";
  display: block;
  background: url(../images/arrow_gr.svg) center/contain no-repeat;
  width: 25px;
  height: 6px;
  transition: all 0.3s ease;
}
.js-tab:hover {
  background-position: 120% 50%;
}
.js-tab:hover::after {
  transform: translateX(8px);
  transition: all 0.3s ease;
}

.js-tab__wrap {
  max-width: 850px;
  padding-inline: 20px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.js-tab-panel {
  display: none;
  opacity: 0;
}
.js-tab-panel.is-show {
  display: block;
  -webkit-animation: panel-show 0.6s ease forwards;
  animation: panel-show 0.6s ease forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dl {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .dl {
    flex-direction: row;
  }
}

.menu-title {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 6px 15px;
}
.menu-title > h3,
.menu-title > h2 {
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
  font-family: var(--marcellus);
}

.menu-wrap {
  margin-bottom: clamp(80px, 10vw, 150px);
  position: relative;
}
.menu-wrap:not(:last-child) {
  padding-bottom: clamp(80px, 10vw, 150px);
}
.menu-wrap:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 90%;
  height: 2px;
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
}
.menu-wrap .dl {
  gap: 8px 30px;
}
.menu-wrap .dl:not(:last-child) {
  margin-bottom: 50px;
}
.menu-wrap .dt {
  display: flex;
  flex-direction: column;
}
.menu-wrap .dt > h3 {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  margin-bottom: 12px;
}
.menu-wrap .dt > h3 > span {
  display: inline-block;
}
.menu-wrap .dt > h3::before {
  content: "";
  display: block;
  width: clamp(15px, 2vw, 20px);
  height: 1px;
  background-color: var(--txt);
  margin-right: 10px;
}
.menu-wrap .dd {
  text-align: right;
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
@media (min-width: 768px) {
  .menu-wrap .dd {
    width: 185px;
  }
}
.menu-wrap .menu-text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  padding-left: clamp(20px, 3vw, 30px);
}

.nailist-box {
  margin-bottom: clamp(80px, 10vw, 150px);
  position: relative;
}
.nailist-box:not(:last-child) {
  padding-bottom: clamp(80px, 10vw, 150px);
}
.nailist-box:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 90%;
  height: 2px;
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
}
.nailist-box__pr-title > h3 {
  font-size: clamp(1.625rem, 1.342rem + 1.23vw, 2.5rem);
}
.nailist-box__pr-title > p {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
}
.nailist-box__pr-img {
  width: 200px;
}
.nailist-box__pr-img img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 100%;
}
.nailist-box__pr-txt {
  flex: 1;
}
.nailist-box__gallery .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 576px) {
  .nailist-box__gallery .webgene-blog {
    gap: 25px;
  }
}
@media (min-width: 768px) {
  .nailist-box__gallery .webgene-blog {
    flex-direction: row;
    gap: 38px;
  }
}
.nailist-box__gallery .webgene-blog > article {
  width: calc(50% - 7.5px);
}
@media (min-width: 576px) {
  .nailist-box__gallery .webgene-blog > article {
    width: calc(50% - 17.5px);
  }
}
@media (min-width: 768px) {
  .nailist-box__gallery .webgene-blog > article {
    width: calc(33.3333333333% - 26px);
  }
}
.nailist-box__gallery .webgene-blog > article img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 20px;
}

.page-staff__box {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(80px, 10vw, 150px);
  align-items: center;
}
@media (min-width: 768px) {
  .page-staff__box {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(20px, 5vw, 75px);
  }
}
.page-staff__box:not(:last-child) {
  padding-bottom: clamp(80px, 10vw, 150px);
}
.page-staff__box:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 2px;
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
}
.page-staff__img {
  margin-inline: auto;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 9999px;
  min-width: 200px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .page-staff__img {
    width: 55%;
  }
}
@media (min-width: 768px) {
  .page-staff__img {
    width: 20%;
    margin-bottom: 0;
  }
}
.page-staff__img::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(87deg, #e2d2b4 23.64%, #bfad8e 35.26%, #d0c0a1 62.2%, #9c8968 75.05%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.page-staff__img-inner {
  height: 100%;
  padding: 6px;
  overflow: hidden;
  border-radius: inherit;
}
@media (min-width: 768px) {
  .page-staff__img-inner {
    padding: 10px;
  }
}
.page-staff__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: inherit;
}
.page-staff__title {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-staff__title {
    margin-bottom: 40px;
    align-items: baseline;
    flex-direction: row;
    gap: 5px 15px;
  }
}
.page-staff__title > h3 {
  font-size: clamp(1.75rem, 1.345rem + 1.75vw, 3rem);
}
.page-staff__title > p {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.page-staff__list {
  margin-bottom: 30px;
}
.page-staff__list .dl {
  gap: 5px 20px;
  padding-block: 20px;
  border-bottom: solid 1px var(--main);
}
.page-staff__list .dl:first-child {
  padding-top: 0px;
}
.page-staff__list .dt {
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-staff__list .dt {
    width: 150px;
    font-weight: normal;
  }
}
@media (min-width: 992px) {
  .page-staff__list .dt {
    width: 220px;
  }
}
.page-staff__list .dd {
  align-items: left;
  flex: 1;
}
.page-staff .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .page-staff .btn-wrap {
    align-items: stretch;
    flex-direction: row;
    gap: clamp(15px, 3vw, 38px);
  }
}
.page-staff .btn-wrap a {
  gap: unset;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  justify-content: flex-start;
}
.page-staff .btn-wrap a::after {
  content: "";
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 25px;
  min-width: 25px;
  height: 6px;
  margin-left: auto;
  transition: all 0.3s ease;
}
.page-staff .btn-wrap a:hover {
  background-position: 120% 50%;
}
.page-staff .btn-wrap a:hover::after {
  transition: all 0.3s ease;
  transform: translateX(8px);
}
.page-staff .btn-wrap a .icon {
  width: 19px;
  margin-right: 10px;
}

.page-gallerylist {
  padding-block: clamp(100px, 16vw, 240px);
}

.page-gallerydetail .container {
  max-width: 740px;
}
.page-gallerydetail .cases-detail__img {
  margin-bottom: 10px;
}
.page-gallerydetail .cases-detail__img img {
  aspect-ratio: 1;
  border-radius: 20px;
}
.page-gallerydetail .cases-detail__wrap dl, .page-gallerydetail .cases-detail__meta dl {
  padding-inline: clamp(20px, 4vw, 50px);
  padding-block: clamp(20px, 2vw, 40px);
  border-bottom: solid 1px var(--main);
  display: flex;
  flex-direction: column;
  gap: 10px 20px;
}
@media (min-width: 768px) {
  .page-gallerydetail .cases-detail__wrap dl, .page-gallerydetail .cases-detail__meta dl {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .page-gallerydetail .cases-detail__wrap dt, .page-gallerydetail .cases-detail__meta dt {
    width: 220px;
  }
}
.page-gallerydetail .cases-detail__wrap dd, .page-gallerydetail .cases-detail__meta dd {
  flex: 1;
}

.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(--main);
  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:last-of-type a {
  padding-bottom: 0px;
  border-bottom: none;
}
.page-news .webgene-blog > article .date,
.page-news .webgene-blog > article .title {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.page-news .webgene-blog > article .date {
  font-family: var(--marcellus);
}
@media (min-width: 768px) {
  .page-news .webgene-blog > article .date {
    width: 160px;
  }
}
.page-news .webgene-blog > article .title {
  flex: 1;
}

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

.page-gallerydetail .webgene-pagination,
.page-news .webgene-pagination,
.page-newsdetail .webgene-pagination {
  margin-top: clamp(60px, 11vw, 150px);
}
.page-gallerydetail .webgene-pagination ul,
.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-gallerydetail .webgene-pagination ul,
.page-news .webgene-pagination ul,
.page-newsdetail .webgene-pagination ul {
    flex-direction: row;
    align-items: stretch;
  }
}
.page-gallerydetail .webgene-pagination li,
.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-gallerydetail .webgene-pagination .prev > a,
.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-family: var(--marcellus);
  font-weight: 500;
  color: white;
  border-radius: 99px;
  background-image: linear-gradient(97deg, #177480 0%, #177480 20%, #98d9bf 40%, #98d9bf 60%, #177480 100%);
  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-gallerydetail .webgene-pagination .prev > a::before,
.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: 25px;
  height: 6px;
  transition: all 0.3s ease;
  transform: translateX(0) scale(-1, 1);
}
.page-gallerydetail .webgene-pagination .prev > a:hover,
.page-news .webgene-pagination .prev > a:hover,
.page-newsdetail .webgene-pagination .prev > a:hover {
  background-position: 120% 50%;
}
.page-gallerydetail .webgene-pagination .prev > a:hover::after,
.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-gallerydetail .webgene-pagination .next,
.page-news .webgene-pagination .next,
.page-newsdetail .webgene-pagination .next {
    margin-left: auto;
  }
}
.page-gallerydetail .webgene-pagination .next > a,
.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-family: var(--marcellus);
  font-weight: 500;
  color: white;
  border-radius: 99px;
  background-image: linear-gradient(97deg, #177480 0%, #177480 20%, #98d9bf 40%, #98d9bf 60%, #177480 100%);
  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-gallerydetail .webgene-pagination .next > a::after,
.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: 25px;
  height: 6px;
  transition: all 0.3s ease;
}
.page-gallerydetail .webgene-pagination .next > a:hover,
.page-news .webgene-pagination .next > a:hover,
.page-newsdetail .webgene-pagination .next > a:hover {
  background-position: 120% 50%;
}
.page-gallerydetail .webgene-pagination .next > a:hover::after,
.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-gallerydetail .webgene-pagination .btn-block,
.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-gallerydetail .webgene-pagination .btn-block,
.page-news .webgene-pagination .btn-block,
.page-newsdetail .webgene-pagination .btn-block {
    margin-top: 50px;
  }
}
.page-gallerydetail .webgene-pagination .btn-block > a,
.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-family: var(--marcellus);
  font-weight: 500;
  color: white;
  border-radius: 99px;
  background-image: linear-gradient(97deg, #177480 0%, #177480 20%, #98d9bf 40%, #98d9bf 60%, #177480 100%);
  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-gallerydetail .webgene-pagination .btn-block > a::after,
.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: 25px;
  height: 6px;
  transition: all 0.3s ease;
}
.page-gallerydetail .webgene-pagination .btn-block > a:hover,
.page-news .webgene-pagination .btn-block > a:hover,
.page-newsdetail .webgene-pagination .btn-block > a:hover {
  background-position: 120% 50%;
}
.page-gallerydetail .webgene-pagination .btn-block > a:hover::after,
.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-recruit__sec01 {
  padding-block: clamp(60px, 10vw, 120px);
}
.page-recruit__sec01 .inner-wrap {
  display: flex;
  align-items: center;
  gap: 30px 55px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-recruit__sec01 .inner-wrap {
    flex-direction: row;
  }
}
.page-recruit__sec01 .inner-wrap__img {
  margin-inline: auto;
  position: relative;
  aspect-ratio: 432/717;
  overflow: hidden;
  border-radius: 9999px;
  min-width: 200px;
}
@media (max-width: 767px) {
  .page-recruit__sec01 .inner-wrap__img {
    width: 55%;
  }
}
@media (min-width: 768px) {
  .page-recruit__sec01 .inner-wrap__img {
    width: 45%;
  }
}
.page-recruit__sec01 .inner-wrap__img::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(87deg, #e2d2b4 23.64%, #bfad8e 35.26%, #d0c0a1 62.2%, #9c8968 75.05%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.page-recruit__sec01 .inner-wrap__img-inner {
  height: 100%;
  padding: 6px;
  overflow: hidden;
  border-radius: inherit;
}
@media (min-width: 768px) {
  .page-recruit__sec01 .inner-wrap__img-inner {
    padding: 10px;
  }
}
.page-recruit__sec01 .inner-wrap__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: inherit;
}
.page-recruit__sec02 {
  position: relative;
  z-index: 1;
}
.page-recruit__sec02 .back-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.page-recruit__sec02 .back-img.is-fixed {
  position: fixed;
  top: 0;
}
.page-recruit__sec02 .back-img.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
}
.page-recruit__sec02 .benefits-title {
  letter-spacing: 2.88px;
  text-shadow: 1px 3px 3px rgba(0, 0, 0, 0.25);
  color: white;
  padding-block: 100px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-recruit__sec02 .benefits-title > h2 {
  font-size: clamp(2.188rem, 0.952rem + 5.34vw, 6rem);
  font-family: var(--marcellus);
  line-height: 1;
}
.page-recruit__sec02 .benefits-title > p {
  font-family: var(--tsuku);
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
}
.page-recruit__sec02 .point-wrap {
  margin-inline: auto;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 40px);
  padding-bottom: clamp(80px, 10vw, 150px);
}
.page-recruit__sec02 .point-wrap__box {
  background-color: white;
  border-radius: 20px;
  padding-block: 30px;
  padding-inline: clamp(20px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media (min-width: 768px) {
  .page-recruit__sec02 .point-wrap__box {
    gap: clamp(1.875rem, 0.984rem + 3.85vw, 4.625rem);
    border-radius: 30px;
    padding-block: 40px;
    flex-direction: row;
  }
}
.page-recruit__sec02 .point-wrap__box-txt {
  text-align: center;
}
@media (min-width: 768px) {
  .page-recruit__sec02 .point-wrap__box-txt {
    text-align: left;
  }
}
.page-recruit__sec02 .point-wrap__box-txt > h3 {
  margin-bottom: 6px;
  font-size: clamp(1.125rem, 0.923rem + 0.88vw, 1.75rem);
}
.page-recruit__sec02 .point-wrap .number {
  font-family: var(--marcellus);
  font-size: clamp(1.875rem, 0.984rem + 3.85vw, 4.625rem);
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
  padding-bottom: 10px;
  letter-spacing: 2.22px;
}
@media (min-width: 768px) {
  .page-recruit__sec02 .point-wrap .number {
    padding-right: clamp(20px, 4vw, 60px);
    padding-bottom: 0px;
    border-right: solid 2px;
    border-bottom: none;
    min-width: clamp(95px, 10vw, 160px);
  }
}
.page-recruit__sec03 {
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
  border-top: solid 3px;
  border-bottom: solid 3px;
  padding-block: clamp(60px, 9vw, 120px);
}
.page-recruit__sec03 .container {
  max-width: 990px;
}
.page-recruit__sec03 .step-contents {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding-bottom: clamp(60px, 10vw, 130px);
  margin-bottom: clamp(60px, 10vw, 130px);
}
.page-recruit__sec03 .step-contents::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
  border-bottom: solid 2px;
}
@media (min-width: 768px) {
  .page-recruit__sec03 .step-contents {
    gap: 70px;
  }
}
.page-recruit__sec03 .step-contents__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media (min-width: 768px) {
  .page-recruit__sec03 .step-contents__box {
    flex-direction: row;
    gap: clamp(20px, 3vw, 40px);
  }
}
.page-recruit__sec03 .step-contents__box-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  width: 120px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .page-recruit__sec03 .step-contents__box-img {
    margin-inline: 0;
    min-width: clamp(90px, 11vw, 137px);
    width: clamp(90px, 11vw, 137px);
  }
}
.page-recruit__sec03 .step-contents__box-img > img {
  aspect-ratio: 1;
}
.page-recruit__sec03 .step-contents__box-txt {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .page-recruit__sec03 .step-contents__box-txt {
    text-align: left;
  }
}
.page-recruit__sec03 .step-contents__box-txt > h4 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  margin-bottom: 5px;
}
.page-recruit .detail-tag {
  margin-block: 20px 8px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .page-recruit .detail-tag {
    margin-inline: 0;
  }
}
.page-recruit__sec04 {
  padding-block: clamp(60px, 10vw, 120px) clamp(80px, 11vw, 140px);
}
.page-recruit__sec05 {
  border-top: solid 2px;
  border-bottom: solid 2px;
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
  padding-block: clamp(60px, 9vw, 110px) clamp(80px, 12vw, 150px);
}
.page-recruit__sec05 .inner-wrap {
  display: flex;
  align-items: center;
  gap: 30px 55px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-recruit__sec05 .inner-wrap {
    flex-direction: row;
  }
}
.page-recruit__sec05 .inner-wrap__img {
  margin-inline: auto;
  position: relative;
  aspect-ratio: 432/717;
  overflow: hidden;
  border-radius: 9999px;
  min-width: 200px;
}
@media (max-width: 767px) {
  .page-recruit__sec05 .inner-wrap__img {
    width: 55%;
  }
}
@media (min-width: 768px) {
  .page-recruit__sec05 .inner-wrap__img {
    width: 40%;
  }
}
.page-recruit__sec05 .inner-wrap__img::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(87deg, #e2d2b4 23.64%, #bfad8e 35.26%, #d0c0a1 62.2%, #9c8968 75.05%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.page-recruit__sec05 .inner-wrap__img-inner {
  height: 100%;
  padding: 6px;
  overflow: hidden;
  border-radius: inherit;
}
@media (min-width: 768px) {
  .page-recruit__sec05 .inner-wrap__img-inner {
    padding: 10px;
  }
}
.page-recruit__sec05 .inner-wrap__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: inherit;
}
.page-recruit__sec05 .inner-wrap__text {
  flex: 1;
}
.page-recruit__sec06 {
  position: relative;
  z-index: 1;
  padding-block: clamp(80px, 12vw, 150px);
}
.page-recruit__sec06::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.page-recruit .menu-title {
  border-bottom: solid 1px var(--txt);
  margin-bottom: 35px;
}

.detail-tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 0.875rem;
  background-color: var(--main);
  border-radius: 100px;
  line-height: 1.7;
  padding: 2px 24px;
}
@media (min-width: 576px) {
  .detail-tag {
    font-size: 1rem;
  }
}

.detail-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 576px) {
  .detail-wrap {
    flex-direction: row;
    max-width: 730px;
  }
}
@media (min-width: 768px) {
  .detail-wrap {
    text-align: left;
  }
}
@media (min-width: 576px) {
  .detail-wrap > p {
    width: 50%;
  }
}

.page-salon__sec01 {
  padding-block: clamp(60px, 8vw, 100px) clamp(80px, 12vw, 150px);
}
.page-salon__sec01 .container {
  max-width: 800px;
}
.page-salon__sec01 .list-wrap {
  margin-bottom: clamp(55px, 5vw, 90px);
}
.page-salon__sec01 .list-wrap .dl {
  justify-content: flex-start;
  padding-block: 20px;
  border-bottom: solid 1px var(--main);
}
.page-salon__sec01 .list-wrap .dl:first-child {
  padding-top: 0;
}
.page-salon__sec01 .list-wrap .dl:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.page-salon__sec01 .list-wrap .dt {
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-salon__sec01 .list-wrap .dt {
    width: 160px;
    font-weight: normal;
  }
}
.page-salon__sec01 .list-wrap .dd {
  flex: 1;
  text-align: left;
}
.page-salon__sec01 .list-wrap .dd a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}
.page-salon__sec01 .list-wrap .dd a:hover {
  opacity: 0.5;
}
.page-salon__sec01 .map {
  height: clamp(300px, 30vw, 400px);
}
.page-salon__sec01 .map iframe {
  height: 100%;
}

.reserve-contents {
  background-image: url(../images/bg-2.jpg) !important;
  padding-block: clamp(80px, 12vw, 150px);
  -o-border-image: var(--bg-gd);
     border-image: var(--bg-gd);
  border-top: solid 2px;
}
.reserve-contents .container {
  max-width: 500px;
}
.reserve-contents .btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.reserve-contents .btn-wrap > a {
  max-width: 430px;
  font-family: var(--tsuku);
}