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

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

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

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

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

iframe {
  border: none;
  display: block;
}

:root {
  --tenor: "Tenor Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Segoe UI", Arial, sans-serif;
  --shippori: "Shippori Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    "Yu Mincho", "YuMincho", "Noto Serif JP", "MS PMincho", serif;
  --gothic: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "YuGothic", "Noto Sans JP", "Meiryo", sans-serif;
  --main: #6d6f6a;
  --base: #f2f4f4;
  --gray01: #e4e9e9;
  --gray02: #c4c4c4;
  --gray03: #e4e9e9;
  --gray04: #c3c3c3;
}

.tenor {
  font-family: var(--tenor) !important;
  font-weight: 500;
}

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

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

.wh-txt {
  color: white !important;
  transition: all 0.6s ease;
}

.bk-txt {
  color: var(--main) !important;
  transition: all 0.6s ease;
}

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

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

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

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

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

body {
  font-family: var(--shippori);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--main);
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  body {
    line-height: 1.95;
  }
}

a {
  transition: all 0.3s ease;
  display: inline-block;
  color: var(--main);
}
a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--main);
}

.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);
  }
}
.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;
  }
}
.btn-wrap a, .btn-wrap__inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 15px 70px;
  padding-block: 12px;
  transition: all 0.3s ease;
  min-width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px var(--main);
  font-family: var(--tenor);
}
@media (min-width: 768px) {
  .btn-wrap a, .btn-wrap__inner {
    padding-inline: 23px 90px;
    padding-block: 14px;
    font-size: 1.125rem;
    min-width: 230px;
  }
}
.btn-wrap a .icon, .btn-wrap__inner .icon {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
@media (min-width: 768px) {
  .btn-wrap a .icon, .btn-wrap__inner .icon {
    width: 23px;
    height: 23px;
  }
}
.btn-wrap a .icon img, .btn-wrap__inner .icon img {
  aspect-ratio: 1;
}
.btn-wrap a .icon.icon-wh > img, .btn-wrap__inner .icon.icon-wh > img {
  transition: all 0.3s ease;
  position: absolute;
  inset: 0;
}
.btn-wrap a .icon.icon-wh > img:nth-child(1), .btn-wrap__inner .icon.icon-wh > img:nth-child(1) {
  opacity: 1;
}
.btn-wrap a .icon.icon-wh > img:nth-child(2), .btn-wrap__inner .icon.icon-wh > img:nth-child(2) {
  opacity: 0;
}
.btn-wrap a:hover .icon.icon-wh > img:nth-child(1), .btn-wrap__inner:hover .icon.icon-wh > img:nth-child(1) {
  opacity: 0;
}
.btn-wrap a:hover .icon.icon-wh > img:nth-child(2), .btn-wrap__inner:hover .icon.icon-wh > img:nth-child(2) {
  opacity: 1;
}
.btn-wrap a::after, .btn-wrap__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: block;
  background: url(../images/arrow.svg) center/contain no-repeat;
  width: 18px;
  height: 4px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-wrap a::after, .btn-wrap__inner::after {
    width: 20px;
    height: 6px;
    right: 20px;
  }
}
.btn-wrap a:hover, .btn-wrap__inner:hover {
  background-color: #6d6f6a;
  color: white;
}
.btn-wrap a:hover::after, .btn-wrap__inner:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
}
.btn-wrap a.arrow_wh, .btn-wrap__inner.arrow_wh {
  color: white;
  background-color: var(--main) !important;
  border: solid 1px white !important;
}
.btn-wrap a.arrow_wh::after, .btn-wrap__inner.arrow_wh::after {
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
}
.btn-wrap a.arrow_wh:hover, .btn-wrap__inner.arrow_wh:hover {
  background-color: white !important;
  color: #6d6f6a !important;
}
.btn-wrap a.arrow_wh:hover::after, .btn-wrap__inner.arrow_wh:hover::after {
  background: url(../images/arrow.svg) center/contain no-repeat !important;
}

.gjs-dashed .header__nav {
  opacity: 1;
  visibility: visible;
  position: static;
}
.gjs-dashed .swiper-wrapper {
  display: flex;
}

body {
  background-color: var(--base);
  transition: all 0.6s ease;
}
body.is-back {
  background-color: var(--main);
  color: white;
}
body.is-back .bk-txt {
  color: white !important;
}
body.is-back .p-top__service .link-box > a {
  border: solid 1px white;
}
body.is-back .p-top__service .link-box > a h2,
body.is-back .p-top__service .link-box > a p {
  color: white;
}
body.is-back .p-top__service .link-box > a .wrap::after {
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
}
body.is-back .p-top__service .link-box > a:hover {
  background-color: white;
}
body.is-back .p-top__service .link-box > a:hover h2,
body.is-back .p-top__service .link-box > a:hover p {
  color: var(--main);
}
body.is-back .p-top__service .link-box > a:hover .wrap::after {
  background: url(../images/arrow.svg) center/contain no-repeat;
}
body.is-back .p-about .sec02 .box-txt,
body.is-back .p-haircare .sec02 .box-txt,
body.is-back .p-headspa .sec02 .box-txt,
body.is-back .p-eyecare .sec02 .box-txt {
  background-color: var(--main);
}
body.is-back .guide {
  border: solid 1px white;
}
body.is-back .p-recruit .sec02 .box-wrap {
  border-bottom: solid 1px white !important;
}
body.is-back .p-recruit .sec02 .box-wrap::before {
  background: var(--base) !important;
}
body.is-back .p-recruit .sec02 .box-wrap::after {
  background: var(--main) !important;
}

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

.section-title .en {
  font-size: clamp(1.875rem, 1.187rem + 2.98vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--gray04);
  margin-bottom: clamp(20px, 15vw, 30px);
}
.section-title .ja {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  font-weight: 600;
  line-height: 1;
}

.content-title {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
  font-weight: 500;
}

.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--base);
  padding: 20px;
}
@media (min-width: 768px) {
  .header__inner {
    padding: 25px 55px;
  }
}
.header__brand {
  margin-right: 30px;
}
.header__brand > a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 140px;
}
@media (min-width: 768px) {
  .header__brand > a {
    max-width: 170px;
  }
}
.header__brand > a:hover {
  opacity: 0.5;
}
.header__nav {
  position: fixed;
  z-index: 997;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  background-color: var(--gray01);
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
  }
}
@media (max-height: 600px) {
  .header__nav {
    display: block;
  }
}
.header__nav.open {
  opacity: 1;
  visibility: visible;
}
.header__nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 100px;
}
@media (min-width: 992px) {
  .header__nav-wrap {
    flex-direction: row;
    align-items: flex-start;
  }
}
.header__nav-brand {
  width: clamp(180px, 32vw, 315px);
  padding-right: 0;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .header__nav-brand {
    width: clamp(230px, 25vw, 375px);
    padding-right: 50px;
    margin-bottom: 0;
  }
}
.header__nav-brand a {
  width: 100%;
}
.header__nav-lists {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .header__nav-lists {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    min-height: auto;
    max-width: 550px;
  }
}
.header__nav-lists .btn-wrap {
  width: 100%;
  margin-top: 55px;
  text-align: center;
}
@media (min-width: 992px) {
  .header__nav-lists .btn-wrap {
    text-align: left;
  }
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .header__nav-list {
    width: 50%;
  }
}
.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.9375rem;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .header__nav-link {
    font-size: clamp(0.938rem, 0.877rem + 0.26vw, 1.125rem);
  }
}
@media (min-width: 992px) {
  .header__nav-link {
    align-items: flex-start;
    text-align: left;
  }
}
.header__nav-link:hover {
  opacity: 0.7;
}
.header .reserve {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 99;
  width: 100%;
}
@media (min-width: 768px) {
  .header .reserve {
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: 22px;
  }
}
.header .reserve a {
  text-align: center;
  color: white;
  line-height: 1;
  padding: 20px;
  background-color: var(--main);
  border: solid 1px var(--main);
  width: 100%;
}
@media (min-width: 768px) {
  .header .reserve a {
    padding: 15px 35px;
    border-radius: 100px;
  }
}
.header .reserve a:hover {
  background-color: white;
  color: var(--main);
}

#hum-btn {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  width: 27px;
  height: 19px;
  margin-block: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  #hum-btn {
    margin-left: 0;
  }
}

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

.is-nav-open .btn-trigger {
  flex-direction: row;
  transition: all 0.5s ease;
}
.is-nav-open .btn-trigger__bar:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
          animation: active-menu-bar01 0.75s forwards;
}
.is-nav-open .btn-trigger__bar:nth-of-type(2) {
  opacity: 0;
}
.is-nav-open .btn-trigger__bar:nth-of-type(3) {
  -webkit-animation: active-menu-bar02 0.75s forwards;
          animation: active-menu-bar02 0.75s forwards;
}

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

@keyframes menu-bar01 {
  0% {
    transform: translateY(9px) rotate(45deg);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(9px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(9px) rotate(45deg);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    transform: translateY(-9px) rotate(-45deg);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-9px) rotate(-45deg);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(-9px) rotate(-45deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(-9px) rotate(-45deg);
  }
}
.footer {
  background-color: var(--main);
  color: white;
  padding-block: clamp(50px, 7vw, 100px) 55px;
}
.footer a {
  color: white;
  align-items: stretch;
}
.footer a:hover {
  color: var(--gray04);
}
.footer h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .footer h2 {
    text-align: left;
  }
}
.footer__inner {
  gap: 0 20px;
}
.footer__brand {
  margin-bottom: clamp(55px, 7vw, 100px);
}
.footer__brand img {
  max-width: clamp(180px, 20vw, 300px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .footer__brand img {
    margin-inline: 0;
  }
}
.footer__access {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .footer__access {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .footer__access {
    width: 25%;
    margin-bottom: 0;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0 20px;
  width: 100%;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .footer__nav {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .footer__nav {
    width: calc(50% - 10px);
    flex: 1;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .footer__nav {
    width: 45%;
    flex: auto;
  }
}
.footer__nav-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-size: clamp(0.938rem, 0.877rem + 0.26vw, 1.125rem);
}
@media (min-width: 576px) {
  .footer__nav-list {
    width: calc(50% - 10px);
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .footer__nav-list {
    text-align: left;
  }
}
.footer__nav-list:nth-of-type(1) {
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .footer__nav-list:nth-of-type(1) {
    margin-bottom: 0;
  }
}
.footer__links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__links {
    text-align: right;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (min-width: 992px) {
  .footer__links {
    margin-left: auto;
  }
}
.footer__links a {
  padding-inline: 23px 85px;
  min-width: 230px;
}
@media (min-width: 768px) {
  .footer__links a {
    width: 100%;
  }
}
.footer .btn-wrap a .icon {
  position: relative;
}
.footer .btn-wrap a .icon img {
  position: absolute;
  width: inherit;
  height: inherit;
  inset: 0;
  transition: all 0.6s ease;
}
.footer .btn-wrap a .icon img:nth-child(1) {
  opacity: 1;
}
.footer .btn-wrap a .icon img:nth-child(2) {
  opacity: 0;
}
.footer .btn-wrap a:hover .icon img:nth-child(1) {
  opacity: 0;
}
.footer .btn-wrap a:hover .icon img:nth-child(2) {
  opacity: 1;
}

.p-top {
  margin-top: var(--header-top) !important;
}
.p-top__fv {
  padding-top: clamp(100px, 13vw, 200px);
}
.p-top__fv > * {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 20px;
}
.p-top__fv-title h1 {
  font-size: clamp(1.563rem, 1.259rem + 1.31vw, 2.5rem);
}
.p-top__fv-title > p {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .p-top__fv-title > p {
    font-size: 1rem;
  }
}
.p-top__about {
  padding-block: clamp(100px, 15vw, 240px) 50px;
}
.p-top__about .box-txt {
  position: relative;
  z-index: 1;
  margin-top: -50px;
}
@media (min-width: 768px) {
  .p-top__about .box-txt {
    margin-top: -80px;
  }
}
.p-top__about .box-txt h2 {
  font-size: clamp(3.75rem, 2.738rem + 4.38vw, 6.875rem);
  font-weight: 500;
  color: var(--gray04);
}
.p-top__about .box-txt p > span {
  display: inline-block;
}
.p-top__about .box-img {
  width: 90% !important;
  aspect-ratio: 8.1/5.4 !important;
}
@media (min-width: 576px) {
  .p-top__about .box-img {
    width: 80% !important;
  }
}
@media (min-width: 768px) {
  .p-top__about .box-img {
    width: 70% !important;
  }
}
.p-top__slide {
  padding-block: clamp(80px, 7vw, 100px);
}
.p-top__service {
  padding-block: clamp(80px, 13vw, 170px);
}
.p-top__service > h2 {
  padding-inline: 20px;
  margin-bottom: clamp(100px, 14vw, 200px);
}
.p-top__service .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 15vw, 220px);
}
.p-top__service .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .p-top__service .box {
    flex-direction: row;
    align-items: flex-end;
  }
}
.p-top__service .box-txt > h3 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  font-weight: 600;
  line-height: normal;
}
.p-top__service .box-img {
  position: relative;
  padding-top: 40px;
}
@media (min-width: 576px) {
  .p-top__service .box-img {
    padding-top: 60px;
  }
}
@media (min-width: 768px) {
  .p-top__service .box-img {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .p-top__service .box-img {
    padding-top: 100px;
  }
}
.p-top__service .box-img .en {
  content: "";
  position: absolute;
  top: 0;
  font-size: clamp(2.375rem, 0.917rem + 6.3vw, 6.875rem);
  font-weight: 500;
  line-height: normal;
  color: var(--gray04);
  z-index: 1;
}
.p-top__service .box-img img {
  aspect-ratio: 7.2/4.8;
}
.p-top__service .box:nth-child(odd) {
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .p-top__service .box:nth-child(odd) {
    flex-direction: row;
  }
}
.p-top__service .box:nth-child(odd) .box-img .en {
  left: 0;
}
@media (min-width: 768px) {
  .p-top__service .box:nth-child(odd) .box-img .en {
    left: -30px;
  }
}
@media (min-width: 1200px) {
  .p-top__service .box:nth-child(odd) .box-img .en {
    left: -80px;
  }
}
.p-top__service .box:nth-child(even) .box-img .en {
  right: 0;
}
@media (min-width: 768px) {
  .p-top__service .box:nth-child(even) .box-img .en {
    right: -30px;
  }
}
@media (min-width: 1200px) {
  .p-top__service .box:nth-child(even) .box-img .en {
    right: -80px;
  }
}
.p-top__service .link-box {
  padding-inline: 20px;
}
.p-top__service .link-box > a {
  max-width: 900px;
  margin-inline: auto;
  margin-top: clamp(100px, 14vw, 210px);
  border: solid 1px var(--main);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 20px clamp(30px, 7vw, 110px);
}
@media (min-width: 768px) {
  .p-top__service .link-box > a {
    flex-direction: row;
    padding: 50px 20px;
  }
}
.p-top__service .link-box > a > h2 {
  font-size: clamp(1.875rem, 1.511rem + 1.58vw, 3rem);
}
.p-top__service .link-box > a > h2,
.p-top__service .link-box > a > p {
  transition: all 0.3s ease;
}
.p-top__service .link-box > a .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(1.063rem, 0.921rem + 0.61vw, 1.5rem);
}
.p-top__service .link-box > a .wrap::after {
  content: "";
  display: block;
  width: 34px;
  height: 10px;
  background: url(../images/arrow.svg) center/contain no-repeat;
  transition: all 0.3s ease;
}
.p-top__service .link-box > a:hover {
  background-color: var(--main);
}
.p-top__service .link-box > a:hover h2,
.p-top__service .link-box > a:hover p {
  color: white;
}
.p-top__service .link-box > a:hover .wrap::after {
  transform: translateX(8px);
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
}
.p-top__salon {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-top__salon .container {
  gap: 40px 50px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .p-top__salon .container {
    flex-direction: row;
  }
}
.p-top__salon .section-title {
  width: 100%;
}
@media (min-width: 992px) {
  .p-top__salon .section-title {
    width: 350px;
  }
}
@media (min-width: 1200px) {
  .p-top__salon .section-title {
    width: 440px;
  }
}
.p-top__salon .section-title .en {
  margin-bottom: 0;
}
.p-top__salon .box-wrap {
  flex: 1;
}
.p-top__salon .box-wrap .box a {
  position: relative;
  width: 100%;
  border-bottom: solid 1px var(--main);
  padding-block: clamp(20px, 2vw, 45px);
  padding-inline: 0 60px;
}
@media (min-width: 992px) {
  .p-top__salon .box-wrap .box a {
    padding-inline: 20px 60px;
  }
}
.p-top__salon .box-wrap .box a > p {
  line-height: 1.5;
  font-weight: 400;
}
.p-top__salon .box-wrap .box a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  display: block;
  background: url(../images/arrow.svg) center/contain no-repeat;
  width: 29px;
  height: 10px;
  transition: all 0.3s ease;
}
.p-top__salon .box-wrap .box a:hover {
  background-color: var(--gray01);
}
.p-top__salon .box-wrap .box a:hover::after {
  right: 10px;
}
.p-top__salon .box-wrap .box:first-child > a {
  padding-top: 0;
}
.p-top__salon .box-wrap .box .title-wrap {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-top__salon .box-wrap .box .title-wrap {
    flex-direction: row;
  }
}
.p-top__salon .box-wrap .box .title-wrap h3 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
}
.p-top__salon .box-wrap .box .title-wrap > p {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
}
.p-top__recruit {
  padding-block: clamp(60px, 7vw, 100px);
}
@media (min-width: 1200px) {
  .p-top__recruit .container {
    max-width: 1300px;
  }
}
.p-top__recruit .inner {
  padding: clamp(50px, 6vw, 80px) clamp(20px, 4vw, 50px);
  background-color: rgba(255, 255, 255, 0.8);
}

.reserve-link {
  padding-block: clamp(80px, 12vw, 150px);
}
.reserve-link a {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  background-color: var(--gray01);
  padding: clamp(40px, 6vw, 80px) 20px;
}
.reserve-link a h2 {
  color: var(--main) !important;
}
.reserve-link a:hover {
  background-color: var(--gray04);
}

.page-body {
  margin-top: var(--header-top);
}

.page-hr {
  position: relative;
  height: calc(100vh - var(--header-top));
  min-height: 650px;
  display: flex;
  flex-direction: column;
}
@media (max-height: 900px) {
  .page-hr {
    min-height: calc(800px - var(--header-top)) !important;
  }
}
.page-hr__img {
  height: inherit;
}
.page-hr__img img {
  height: 100%;
}
.page-hr__txt {
  position: absolute;
  bottom: -1px;
  inset-inline: 0;
  width: 100vw;
  background-color: var(--base);
  padding-block: 25px 100px;
  padding-inline: clamp(20px, 6vw, 80px);
}
@media (min-width: 768px) {
  .page-hr__txt {
    padding-block: 25px 45px;
  }
}
@media (min-width: 1400px) {
  .page-hr__txt {
    padding-block: 10px 35px;
  }
}
.page-hr__txt > * {
  line-height: normal;
  font-weight: 500;
}
.page-hr__txt h1 {
  font-size: clamp(2rem, 1.028rem + 4.2vw, 5rem);
}
.page-hr__txt > p {
  font-size: clamp(1.063rem, 0.759rem + 1.31vw, 2rem);
}

.page-top-title h2 {
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
  font-weight: 500;
}

.p-about .sec01,
.p-haircare .sec01,
.p-headspa .sec01,
.p-eyecare .sec01 {
  padding-block: clamp(80px, 12vw, 170px);
}
.p-about .sec02,
.p-haircare .sec02,
.p-headspa .sec02,
.p-eyecare .sec02 {
  padding-block: clamp(80px, 11vw, 140px) 80px;
}
.p-about .sec02 .box,
.p-haircare .sec02 .box,
.p-headspa .sec02 .box,
.p-eyecare .sec02 .box {
  margin-bottom: clamp(100px, 15vw, 220px);
}
.p-about .sec02 .box:last-child,
.p-haircare .sec02 .box:last-child,
.p-headspa .sec02 .box:last-child,
.p-eyecare .sec02 .box:last-child {
  margin-bottom: 0;
}
.p-about .sec02 .box-img img,
.p-haircare .sec02 .box-img img,
.p-headspa .sec02 .box-img img,
.p-eyecare .sec02 .box-img img {
  aspect-ratio: 9/6;
}
.p-about .sec02 .box-txt,
.p-haircare .sec02 .box-txt,
.p-headspa .sec02 .box-txt,
.p-eyecare .sec02 .box-txt {
  position: relative;
  z-index: 1;
  padding: 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .p-about .sec02 .box-txt,
.p-haircare .sec02 .box-txt,
.p-headspa .sec02 .box-txt,
.p-eyecare .sec02 .box-txt {
    padding: 50px;
    margin-top: clamp(-250px, -50px - 200 * (100vw - 360px) / 1152, -50px);
  }
}

.menu-link {
  padding-block: clamp(80px, 13vw, 180px);
}
.menu-link .container > a {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 20px clamp(30px, 7vw, 110px);
  background-color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .menu-link .container > a {
    flex-direction: row;
    padding: clamp(50px, 12vw, 150px) 20px;
  }
}
.menu-link .container > a > h2 {
  font-size: clamp(1.875rem, 1.511rem + 1.58vw, 3rem);
}
.menu-link .container > a > h2,
.menu-link .container > a > p {
  transition: all 0.3s ease;
}
.menu-link .container > a .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(1.063rem, 0.921rem + 0.61vw, 1.5rem);
}
.menu-link .container > a .wrap::after {
  content: "";
  display: block;
  width: 34px;
  height: 10px;
  background: url(../images/arrow.svg) center/contain no-repeat;
  transition: all 0.3s ease;
}
.menu-link .container > a:hover .wrap::after {
  transform: translateX(8px);
}

.guide {
  max-width: 940px;
  margin-inline: auto;
  border: solid 1px var(--main);
  padding: clamp(40px, 6vw, 85px) 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guide.guide01 {
  padding: clamp(40px, 6vw, 85px) clamp(20px, 6vw, 85px);
}
.guide.guide02 {
  padding: clamp(40px, 6vw, 85px) 20px;
}
.guide h3 {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
.guide h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: clamp(250px, 20vw, 420px);
  height: 1px;
  background-color: var(--main);
}
.guide .guide-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px 35px;
}
.guide .guide-wrap__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 35px;
}
@media (min-width: 768px) {
  .guide .guide-wrap__box {
    flex-direction: row;
  }
}
.guide .guide-wrap__box-img {
  width: clamp(120px, 12vw, 155px);
  margin-inline: auto;
}
.guide .guide-wrap__box-txt {
  flex: 1;
  width: 100%;
}

.p-about .sec02 {
  padding-block: clamp(80px, 12vw, 150px);
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 14vw, 200px);
}
.p-about .sec02 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 15vw, 220px);
}
.p-about .sec02 .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}
@media (min-width: 992px) {
  .p-about .sec02 .box {
    flex-direction: row;
    align-items: flex-end;
  }
}
.p-about .sec02 .box-txt h2 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  font-weight: 600;
  line-height: normal;
}
.p-about .sec02 .box-img {
  position: relative;
  padding-top: 40px;
}
@media (min-width: 576px) {
  .p-about .sec02 .box-img {
    padding-top: 60px;
  }
}
@media (min-width: 768px) {
  .p-about .sec02 .box-img {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .p-about .sec02 .box-img {
    padding-top: 100px;
  }
}
.p-about .sec02 .box-img .en {
  content: "";
  position: absolute;
  top: 0;
  font-size: clamp(2.375rem, 0.917rem + 6.3vw, 6.875rem);
  font-weight: 500;
  line-height: normal;
  color: var(--gray04);
  z-index: 1;
}
.p-about .sec02 .box-img .scroll-mask,
.p-about .sec02 .box-img .js-scroll-mask {
  aspect-ratio: 9.8/5 !important;
}
.p-about .sec02 .box-img img {
  aspect-ratio: inherit !important;
  height: auto !important;
}
.p-about .sec02 .box:nth-child(odd) {
  flex-direction: column;
}
@media (min-width: 992px) {
  .p-about .sec02 .box:nth-child(odd) {
    flex-direction: row;
  }
}
.p-about .sec02 .box:nth-child(odd) .box-img .en {
  left: 0;
}
@media (min-width: 768px) {
  .p-about .sec02 .box:nth-child(odd) .box-img .en {
    left: -30px;
  }
}
@media (min-width: 1200px) {
  .p-about .sec02 .box:nth-child(odd) .box-img .en {
    left: -80px;
  }
}
.p-about .sec02 .box:nth-child(even) .box-img .en {
  right: 0;
}
@media (min-width: 768px) {
  .p-about .sec02 .box:nth-child(even) .box-img .en {
    right: -30px;
  }
}
@media (min-width: 1200px) {
  .p-about .sec02 .box:nth-child(even) .box-img .en {
    right: -80px;
  }
}
.p-about .sec03 {
  padding-block: clamp(80px, 12vw, 150px);
  padding-inline: 20px;
}
.p-about .sec03 .box-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (min-width: 992px) {
  .p-about .sec03 .box-wrap {
    align-items: stretch;
    gap: 0;
  }
}
.p-about .sec03 .box-wrap .box {
  padding-inline: 0;
}
@media (min-width: 992px) {
  .p-about .sec03 .box-wrap .box {
    min-height: 590px;
    padding-inline: 15px;
  }
}
.p-about .sec03 .box-wrap .box a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 300px;
}
@media (min-width: 992px) {
  .p-about .sec03 .box-wrap .box a {
    min-height: 590px;
  }
}
.p-about .sec03 .box-wrap .box a::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.6s ease;
}
.p-about .sec03 .box-wrap .box a:hover::after {
  opacity: 1;
}
.p-about .sec03 .box-wrap .box a h3,
.p-about .sec03 .box-wrap .box a .arrow {
  pointer-events: none;
}
.p-about .sec03 .box-wrap .box a h3 {
  font-size: clamp(1.25rem, 0.845rem + 1.75vw, 2.5rem);
  text-align: center;
  color: white;
}
.p-about .sec03 .box-wrap .box a .arrow {
  max-width: 58px;
  margin-inline: auto;
}
.p-about .sec03 .box-wrap .box a > img {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}
.p-about .sec03 .box-wrap .box a:hover > img {
  transform: scale(1.1);
}
.p-about .sec04 a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  padding: 0;
  padding-top: calc(clamp(350px, 32vw, 500px) - 80px);
  padding-bottom: 30px;
  padding-inline: 30px;
}
.p-about .sec04 a::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.6s ease;
}
.p-about .sec04 a:hover::after {
  opacity: 1;
}
.p-about .sec04 a > img {
  position: absolute;
  z-index: -1;
  height: 100%;
  inset: 0;
  transition: all 0.5s ease;
}
.p-about .sec04 a .btn-wrap {
  text-align: right;
  pointer-events: none;
}
.p-about .sec04 a .btn-wrap__inner {
  background-color: transparent !important;
}
.p-about .sec04 a:hover .btn-wrap__inner::after {
  right: 14px;
}
.p-about .sec04 a:hover > img {
  transform: scale(1.1);
}

.p-haircare .sec02 {
  padding-block: clamp(80px, 11vw, 140px) 80px;
}

.p-headspa .sec02 {
  padding-bottom: clamp(80px, 13vw, 180px);
}

.p-eyecare .sec02 {
  padding-bottom: clamp(80px, 13vw, 180px);
}

.hair-length {
  padding-block: clamp(80px, 12vw, 140px);
  padding-inline: 20px;
}
.hair-length h2 {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
.hair-length .container {
  max-width: 870px;
  border: solid 1px var(--main);
  padding-block: clamp(40px, 6vw, 75px);
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hair-length .container > * {
  max-width: 620px;
  margin-inline: auto;
  width: 100%;
}
.hair-length .container .list-dl {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.5vw, 30px);
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
.hair-length .container .list-dl::after {
  content: "";
  flex: 1;
  width: 100%;
  height: 1px;
  border-bottom: dotted 1px var(--main);
  order: 2;
}
.hair-length .container .list-dt {
  order: 1;
  width: 40px;
}
@media (min-width: 576px) {
  .hair-length .container .list-dt {
    width: 160px;
    text-align: right;
  }
}
.hair-length .container .list-dd {
  width: 130px;
  order: 3;
}
@media (min-width: 576px) {
  .hair-length .container .list-dd {
    width: 160px;
  }
}

.menu-list {
  padding-block: clamp(60px, 7vw, 100px) clamp(100px, 11vw, 200px);
}
.menu-list .container {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 11vw, 200px);
}

.menu-box__wrap > * {
  padding-inline: 0;
}
@media (min-width: 992px) {
  .menu-box__wrap > div:nth-child(1) {
    padding-right: clamp(20px, 6vw, 80px);
    border-right: solid 1px #c4c4c4;
  }
}
@media (min-width: 992px) {
  .menu-box__wrap > div:nth-child(2) {
    padding-left: clamp(20px, 6vw, 80px);
  }
}
.menu-box .list-dl {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  padding-block: 15px;
  border-bottom: dotted 1px #c4c4c4;
}
@media (min-width: 576px) {
  .menu-box .list-dl {
    flex-direction: row;
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  .menu-box .list-dl:first-child {
    padding-top: 0;
  }
}
.menu-box .list-dt,
.menu-box .list-dd {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.menu-box .list-dt {
  flex: 1;
  width: 100%;
}
.menu-box .list-dd {
  text-align: right;
  width: 100%;
  justify-content: flex-end;
}
@media (min-width: 576px) {
  .menu-box .list-dd {
    width: 120px;
  }
}

.menu-title {
  display: flex;
  flex-direction: column;
  background-color: var(--gray01);
  padding: 8px 20px;
  align-items: center;
}
@media (min-width: 576px) {
  .menu-title {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .menu-title {
    padding: 14px 38px;
  }
}

.p-forfirstvisitor .sec01 {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-forfirstvisitor .sec01 h2 > span {
  display: inline-block;
}
@media (min-width: 992px) {
  .p-forfirstvisitor .sec01 h2 > span {
    display: block;
  }
}
.p-forfirstvisitor .sec02 {
  padding-block: clamp(80px, 11vw, 140px) clamp(80px, 13vw, 180px);
}
.p-forfirstvisitor .sec02 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 992px) {
  .p-forfirstvisitor .sec02 .box-wrap {
    gap: 90px;
  }
}
.p-forfirstvisitor .sec02 .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: dotted 1px white;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .p-forfirstvisitor .sec02 .box {
    flex-direction: row;
    border-bottom: none;
    padding-bottom: 0;
    align-items: flex-start;
  }
}
.p-forfirstvisitor .sec02 .box-img {
  margin-bottom: 35px;
}
@media (min-width: 992px) {
  .p-forfirstvisitor .sec02 .box-img {
    margin-bottom: 0;
  }
}
.p-forfirstvisitor .sec02 .box-img img {
  aspect-ratio: 5.3/3.5;
}
.p-forfirstvisitor .sec02 .box-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .p-forfirstvisitor .sec02 .box-txt {
    align-items: flex-start;
  }
}
.p-forfirstvisitor .sec02 .box .step-title {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1vw, 24px);
}
.p-forfirstvisitor .sec02 .box .step-title .number {
  max-width: clamp(60px, 7vw, 95px);
}
.p-forfirstvisitor .sec02 .box .step-title .wrap h3 {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
}
.p-forfirstvisitor .sec02 .box .step-title .wrap > p {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
}
.p-forfirstvisitor .sec03 {
  padding-block: clamp(60px, 11vw, 130px) clamp(80px, 12vw, 150px);
}
.p-forfirstvisitor .sec03 .list-wrap .list-dl {
  padding-block: clamp(40px, 6vw, 70px);
  border-bottom: solid 1px #c4c4c4;
}
.p-forfirstvisitor .sec03 .list-wrap .list-dt,
.p-forfirstvisitor .sec03 .list-wrap .list-dd {
  display: flex;
  gap: clamp(20px, 2vw, 40px);
}
.p-forfirstvisitor .sec03 .list-wrap .list-dt > p,
.p-forfirstvisitor .sec03 .list-wrap .list-dd > p {
  padding-block: clamp(6px, 1vw, 20px);
  flex: 1;
}
.p-forfirstvisitor .sec03 .list-wrap .list-dt::before,
.p-forfirstvisitor .sec03 .list-wrap .list-dd::before {
  content: "";
  display: block;
  width: clamp(40px, 6vw, 70px);
  height: clamp(40px, 6vw, 70px);
  aspect-ratio: 1;
}
.p-forfirstvisitor .sec03 .list-wrap .list-dt {
  margin-bottom: 25px;
}
.p-forfirstvisitor .sec03 .list-wrap .list-dt::before {
  background: url(../images/q-icon.svg) center/contain no-repeat;
}
.p-forfirstvisitor .sec03 .list-wrap .list-dd::before {
  background: url(../images/a-icon.svg) center/contain no-repeat;
}

.p-staff .staff-list {
  padding-block: clamp(80px, 13vw, 180px) 40px;
}
.p-staff .staff-list .container {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 14vw, 200px);
}
.p-staff .staff-list__box .pr-list .list-dl {
  padding-block: 20px;
  border-bottom: solid 1px #c4c4c4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px 15px;
}
@media (min-width: 768px) {
  .p-staff .staff-list__box .pr-list .list-dl {
    flex-direction: row;
  }
}
.p-staff .staff-list__box .pr-list .list-dl:first-child {
  border-top: solid 1px #c4c4c4;
}
.p-staff .staff-list__box .pr-list .list-dt {
  width: 100%;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-staff .staff-list__box .pr-list .list-dt {
    width: 180px;
    font-weight: 500;
  }
}
.p-staff .staff-list__box .pr-list .list-dt::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #c4c4c4;
}
@media (min-width: 768px) {
  .p-staff .staff-list__box .pr-list .list-dt::before {
    display: none;
  }
}
.p-staff .staff-list__box .pr-list .list-dd {
  flex: 1;
}

.p-recruit .sec01 {
  padding-block: clamp(80px, 13vw, 180px) clamp(80px, 11vw, 130px);
}
.p-recruit .sec02 {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-recruit .sec02 .box-wrap {
  position: relative;
  border-bottom: solid 1px var(--main);
  transition: all 0.6s ease;
  max-width: 860px;
  margin-inline: auto;
}
.p-recruit .sec02 .box-wrap::before, .p-recruit .sec02 .box-wrap::after {
  transition: background 0.6s ease;
}
.p-recruit .sec02 .box-wrap::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 40px;
  height: 25px;
  background: var(--main);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.p-recruit .sec02 .box-wrap::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 38px;
  height: 23px;
  background: var(--base);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.p-recruit .sec03 {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-recruit .sec03 .section-title {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  top: var(--header-top);
}
.p-recruit .sec03 .section-title .en {
  line-height: 1.3;
}
.p-recruit .sec03 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 13vw, 180px);
}
.p-recruit .sec03 .box-txt .point-title {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1vw, 24px);
}
.p-recruit .sec03 .box-txt .point-title .number {
  max-width: clamp(60px, 7vw, 95px);
}
.p-recruit .sec03 .box-txt .point-title h3 {
  font-size: clamp(1.5rem, 1.257rem + 1.05vw, 2.25rem);
}
.p-recruit .sec03 .box-img img {
  align-self: 7/4.7;
}
.p-recruit .sec03 .staff-voice h3 {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
.p-recruit .sec03 .staff-voice .row {
  margin-inline: 0;
  gap: 25px;
}
.p-recruit .sec03 .staff-voice .row > * {
  padding: 15px 20px;
  border-radius: 20px;
  border: solid 1px var(--main);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  line-height: normal;
}
@media (min-width: 768px) {
  .p-recruit .sec03 .staff-voice .row > * {
    padding: 25px 20px;
  }
}
.p-recruit .sec04 {
  padding-block: clamp(60px, 9vw, 130px);
  padding-inline: 20px;
}
.p-recruit .sec04 .container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: clamp(45px, 7vw, 100px) 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-recruit .sec04 .container > * {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
}
.p-recruit .sec05 {
  padding-block: clamp(80px, 7vw, 110px) clamp(80px, 12vw, 150px);
}
.p-recruit .sec05 .container {
  max-width: 950px;
}
.p-recruit .sec05 .recruit-list .list-dl {
  display: flex;
  flex-direction: column;
  gap: 8px 20px;
  padding-block: 20px;
  border-bottom: solid #c4c4c4;
}
@media (min-width: 768px) {
  .p-recruit .sec05 .recruit-list .list-dl {
    flex-direction: row;
  }
}
.p-recruit .sec05 .recruit-list .list-dt {
  width: 100%;
  font-weight: bold;
  display: flex;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-recruit .sec05 .recruit-list .list-dt {
    max-width: 260px;
    font-weight: 500;
  }
}
.p-recruit .sec05 .recruit-list .list-dt::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #c4c4c4;
}
@media (min-width: 768px) {
  .p-recruit .sec05 .recruit-list .list-dt::before {
    display: none;
  }
}
.p-recruit .sec05 .recruit-list .list-dd {
  flex: 1;
  width: 100%;
}
.p-recruit .contact-link {
  max-width: 860px;
  margin-inline: auto;
}
.p-recruit .contact-link a {
  background-color: var(--main);
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-align: center;
  padding: clamp(35px, 4vw, 50px) 20px;
  border-radius: 20px;
  border: solid 1px var(--main);
}
.p-recruit .contact-link a > h3 {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.p-recruit .contact-link a > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.p-recruit .contact-link a > p::after {
  content: "";
  display: block;
  width: 20px;
  height: 6px;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  transition: all 0.3s ease;
}
.p-recruit .contact-link a:hover {
  background-color: transparent;
}
.p-recruit .contact-link a:hover > h3,
.p-recruit .contact-link a:hover > p {
  color: var(--main);
}
.p-recruit .contact-link a:hover > p::after {
  transform: translateX(8px);
  background: url(../images/arrow.svg) center/contain no-repeat;
}

.p-information .sec01 {
  padding-block: clamp(80px, 12vw, 150px);
}
.p-information .sec01 .info-address {
  max-width: 860px;
  margin-inline: auto;
}
.p-information .sec01 .info-address .list-dl {
  display: flex;
  flex-direction: column;
  gap: 8px 20px;
  padding-block: 20px;
  border-bottom: solid 1px #c4c4c4;
}
@media (min-width: 768px) {
  .p-information .sec01 .info-address .list-dl {
    flex-direction: row;
  }
}
.p-information .sec01 .info-address .list-dt {
  width: 100%;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-information .sec01 .info-address .list-dt {
    width: 180px;
  }
}
.p-information .sec01 .info-address .list-dt::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #c4c4c4;
}
@media (min-width: 768px) {
  .p-information .sec01 .info-address .list-dt::before {
    display: none;
  }
}
.p-information .sec01 .info-address .list-dd {
  flex: 1;
  width: 100%;
}
.p-information .sec02 iframe {
  height: clamp(400px, 45vw, 680px);
}

.p-reserve .sec01 {
  padding-block: clamp(80px, 10vw, 120px);
}
@media (min-width: 992px) {
  .p-reserve .sec01 .container {
    max-width: 1080px;
  }
}
.p-reserve .sec01 .reserve-step {
  background-color: var(--gray03);
  padding: 55px 20px;
}
@media (min-width: 768px) {
  .p-reserve .sec01 .reserve-step {
    padding: 55px 40px;
  }
}
@media (min-width: 992px) {
  .p-reserve .sec01 .reserve-step {
    padding: clamp(55px, 7vw, 100px) clamp(20px, 11vw, 130px);
  }
}
.p-reserve .sec01 .reserve-step .step-wrap {
  display: flex;
  flex-direction: column;
}
.p-reserve .sec01 .reserve-step .box {
  display: flex;
  flex-direction: column;
}
.p-reserve .sec01 .reserve-step .box-inner {
  display: flex;
  gap: clamp(8px, 1.5vw, 30px);
}
.p-reserve .sec01 .reserve-step .box-inner .number {
  max-width: clamp(35px, 7vw, 95px);
}
.p-reserve .sec01 .reserve-step .box-inner .wrap {
  flex: 1;
  line-height: normal;
}
@media (min-width: 768px) {
  .p-reserve .sec01 .reserve-step .box-inner .wrap {
    padding-block: 15px;
  }
}
.p-reserve .sec01 .reserve-step .box-inner .wrap h3 {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
}
.p-reserve .sec01 .reserve-step .box-inner .wrap h3 > span {
  display: inline-block;
}
.p-reserve .sec01 .reserve-step .box::after {
  content: "";
  display: block;
  width: 26px;
  height: 15px;
  background: url(../images/step-arrow.svg) center/contain no-repeat;
  margin-block: 25px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .p-reserve .sec01 .reserve-step .box::after {
    margin-inline: clamp(22px, 2vw, 35px);
  }
}
.p-reserve .sec01 .reserve-step .box:last-child::after {
  display: none;
}
.p-reserve .reserve-link a {
  background-color: rgba(255, 255, 255, 0.85);
}