/* ==========================================================================
 *
 * root scss
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #4A3E35;
  --color-white: #FFFFFF;
  --color-gray: #CCCCCC;
  --color-baige: #EEE9E3;
  --color-blue: #A7DADB;
  --color-brown: #A4998C;
  --color-pink: #D18F8F; }

/* ==========================================================================
   font-size
========================================================================== */
:root {
  --font-size-10: 1rem;
  --font-size-11: 1.1rem;
  --font-size-12: 1.2rem;
  --font-size-13: 1.3rem;
  --font-size-14: 1.4rem;
  --font-size-15: 1.5rem;
  --font-size-16: 1.6rem;
  --font-size-17: 1.7rem;
  --font-size-18: 1.8rem;
  --font-size-19: 1.9rem;
  --font-size-20: 2rem;
  --font-size-22: 2.2rem;
  --font-size-24: 2.4rem;
  --font-size-26: 2.6rem;
  --font-size-28: 2.8rem;
  --font-size-30: 3.0rem;
  --font-size-32: 3.2rem;
  --font-size-34: 3.4rem;
  --font-size-36: 3.6rem; }

@media screen and (max-width: 799px) {
  :root {
    --font-size-11: 1rem;
    --font-size-12: 1.1rem;
    --font-size-13: 1.2rem;
    --font-size-14: 1.3rem;
    --font-size-15: 1.4rem;
    --font-size-16: 1.5rem;
    --font-size-17: 1.6rem;
    --font-size-18: 1.6rem;
    --font-size-19: 1.7rem;
    --font-size-20: 1.8rem;
    --font-size-22: 1.8rem;
    --font-size-24: 2rem;
    --font-size-26: 2rem;
    --font-size-28: 2.2rem;
    --font-size-30: 2.4rem;
    --font-size-32: 2.6rem;
    --font-size-34: 2.8rem;
    --font-size-36: 3rem; } }
/* ==========================================================================
   font-family
========================================================================== */
:root {
  --font-family-main: YakuHanJPs, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  --font-family-sans: YakuHanJPs, "Jost", sans-serif; }

/* ==========================================================================
   font-wight
========================================================================== */
:root {
  --font-wight-400: 400;
  --font-wight-500: 500;
  --font-wight-600: 600;
  --font-wight-700: 700; }

/* ==========================================================================
   line-height
========================================================================== */
:root {
  --line-height-s: 1.6;
  --line-height-m: 2.2;
  --line-height-l: 2.4; }

/* ==========================================================================
   letter-spacing
========================================================================== */
:root {
  --letter-spacing-s: .025em;
  --letter-spacing-m: .075em;
  --letter-spacing-l: .1em; }

/* ==========================================================================
   width
========================================================================== */
:root {
  --container-s: 96rem;
  --container-m: 118rem;
  --container-l: 144rem; }

/* ==========================================================================
   z-index
========================================================================== */
:root {
  --z-index-toggle: 100;
  --z-index-contact: 90;
  --z-index-sitemap: 80;
  --z-index-header: 70;
  --z-index-footer: 60;
  --z-index-main: 50; }

/* ==========================================================================
 *
 * mixin scss
 *
========================================================================== */
/* ==========================================================================
   container
========================================================================== */
/* ==========================================================================
   font-feature-settings
========================================================================== */
/* ==========================================================================
   writing-mode-vertical
========================================================================== */
/* ==========================================================================
 *
 * nav scss
 *
========================================================================== */
/* ==========================================================================
   toggle
========================================================================== */
.l-toggle span {
  transition-property: transform, opacity, top, bottom;
  transition-duration: .5s;
  transition-timing-function: ease; }

.l-toggle.js-active span:nth-child(1) {
  top: .7rem;
  transform: rotate(15deg); }
.l-toggle.js-active span:nth-child(2) {
  opacity: 0; }
.l-toggle.js-active span:nth-child(3) {
  bottom: .7rem;
  transform: rotate(-15deg); }

/* ==========================================================================
   sitemap
========================================================================== */
.l-sitemap {
  opacity: 0;
  visibility: hidden;
  transition-property: transform, opacity;
  transition-duration: .25s;
  transition-timing-function: ease; }
  .l-sitemap li {
    transform: translate(0, 20px);
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .l-sitemap li:nth-child(2) {
      transition-delay: 0.2s; }
    .l-sitemap li:nth-child(3) {
      transition-delay: 0.4s; }
    .l-sitemap li:nth-child(4) {
      transition-delay: 0.6s; }
    .l-sitemap li:nth-child(5) {
      transition-delay: 0.8s; }
    .l-sitemap li:nth-child(6) {
      transition-delay: 1s; }
    .l-sitemap li:nth-child(7) {
      transition-delay: 1.2s; }
    .l-sitemap li:nth-child(8) {
      transition-delay: 1.4s; }
    .l-sitemap li:nth-child(9) {
      transition-delay: 1.6s; }
    .l-sitemap li:nth-child(10) {
      transition-delay: 1.8s; }
    .l-sitemap li:nth-child(11) {
      transition-delay: 2s; }

.l-sitemap.js-active {
  opacity: 1;
  visibility: visible; }
  .l-sitemap.js-active li {
    transform: translate(0, 0);
    opacity: 1; }

/* ==========================================================================
 *
 * nav scss
 *
========================================================================== */
/* ==========================================================================
   img-scale
========================================================================== */
.c-img-scale {
  overflow: hidden; }
  .c-img-scale img {
    transform: scale(1.2);
    transition-property: transform;
    transition-duration: 3.5s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }

.c-img-scale.js-active img {
  transform: scale(1); }

/* ==========================================================================
   footer-hide
========================================================================== */
.c-footer-hide {
  transition-property: opacity, visibility;
  transition-duration: .25s;
  transition-timing-function: ease; }

.c-footer-hide.js-active {
  opacity: 0;
  visibility: hidden; }

/* ==========================================================================
   fade
========================================================================== */
.c-fade {
  transform: translateY(10px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 1s;
  transition-delay: .3s;
  transition-timing-function: ease; }

.c-fade._d1 {
  transition-delay: .6s; }

.c-fade._d2 {
  transition-delay: .9s; }

.c-fade.js-active {
  transform: translateY(0);
  opacity: 1; }

/* ==========================================================================
 *
 * accordion scss
 * -
 *
========================================================================== */
.c-accordion {
  position: relative; }
  .c-accordion .accordion__input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0; }
  .c-accordion .accordion__label {
    width: 100%;
    display: block;
    cursor: pointer;
    position: relative;
    transition: 0.4s ease; }
    .c-accordion .accordion__label::before {
      position: absolute;
      content: '+';
      top: .5rem;
      right: 0;
      font-size: var(--font-size-18); }
  .c-accordion .accordion__conte {
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    transition: 0.4s ease;
    opacity: 0; }
  .c-accordion .accordion__input:checked ~ .accordion__conte {
    height: auto;
    opacity: 1;
    border-top: solid #ccc 1px;
    margin-top: 2.5rem;
    padding-top: 2.5rem; }
  .c-accordion .accordion__input:checked ~ .accordion__label::before {
    content: '-'; }

/* ==========================================================================
 *
 * btn scss
 *
========================================================================== */
/* ==========================================================================
   btn1
========================================================================== */
.c-btn1 {
  background: var(--color-main1);
  border-radius: 3.2rem;
  color: var(--color-white);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 27.5rem;
  height: 6.4rem;
  padding: 0 3rem 0 4rem;
  transition: background .25s ease; }
  .c-btn1 svg {
    fill: var(--color-white);
    width: 1.8rem;
    height: 1.8rem; }
  .c-btn1:hover {
    background: var(--color-black); }

/* ==========================================================================
   btn2
========================================================================== */
.c-btn2 {
  background: var(--color-main1);
  border-radius: 3.2rem;
  color: var(--color-white);
  font-family: var(--font-family-sans);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 27.5rem;
  height: 6.4rem;
  padding: 0 3rem 0 4rem;
  transition: background .25s ease; }
  .c-btn2 svg {
    fill: var(--color-white);
    width: 2.6rem;
    height: 2.6rem; }
  .c-btn2:hover {
    background: var(--color-black); }

.c-btn2__label {
  flex: 1;
  margin-left: 2rem; }

.c-btn2__txt {
  display: block;
  font-size: var(--font-size-15);
  margin-bottom: .3rem; }

.c-btn2__num {
  font-size: var(--font-size-10); }

/* ==========================================================================
   btn3
========================================================================== */
.c-btn3 {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15);
  display: flex;
  align-items: center; }
  .c-btn3 svg {
    width: 1.6rem;
    height: 1.6rem; }
  .c-btn3:hover .c-btn3__icon {
    background: var(--color-black); }
  .c-btn3:hover svg {
    fill: var(--color-white); }

.c-btn3__icon {
  border: solid var(--color-black) 1px;
  border-radius: 50%;
  margin-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 3.6rem;
  transition: background .25s ease; }

/* ==========================================================================
   btn4
========================================================================== */
.c-btn4 {
  position: relative;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15); }
  .c-btn4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.5rem;
    width: 0;
    height: 1px;
    background-color: var(--color-black);
    transition: width .25s ease; }
  .c-btn4:hover::after {
    width: 100%; }

/* ==========================================================================
 *
 * text scss
 * text-anime1 / text-anime2
 *
========================================================================== */
/* ==========================================================================
   text-anime1
========================================================================== */
.c-text-anime1 .c-text-block {
  display: block; }
.c-text-anime1 .c-text-divide {
  display: block;
  overflow: hidden; }
  .c-text-anime1 .c-text-divide .js-char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
    .c-text-anime1 .c-text-divide .js-char:nth-child(1) {
      transition-delay: .3s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(2) {
      transition-delay: 0.35s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(3) {
      transition-delay: 0.4s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(4) {
      transition-delay: 0.45s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(5) {
      transition-delay: 0.5s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(6) {
      transition-delay: 0.55s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(7) {
      transition-delay: 0.6s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(8) {
      transition-delay: 0.65s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(9) {
      transition-delay: 0.7s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(10) {
      transition-delay: 0.75s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(11) {
      transition-delay: 0.8s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(12) {
      transition-delay: 0.85s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(13) {
      transition-delay: 0.9s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(14) {
      transition-delay: 0.95s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(15) {
      transition-delay: 1s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(16) {
      transition-delay: 1.05s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(17) {
      transition-delay: 1.1s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(18) {
      transition-delay: 1.15s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(19) {
      transition-delay: 1.2s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(20) {
      transition-delay: 1.25s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(21) {
      transition-delay: 1.3s; }
.c-text-anime1.js-active .c-text-block {
  display: block; }
.c-text-anime1.js-active .c-text-divide .js-char {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

/* ==========================================================================
   text-anime2
========================================================================== */
.c-text-anime2 .c-text-block {
  display: block; }
.c-text-anime2 .c-text-divide {
  display: block;
  overflow: hidden; }
  .c-text-anime2 .c-text-divide .js-char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(-100%, 0, 0) scale(2);
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
    .c-text-anime2 .c-text-divide .js-char:nth-child(1) {
      transition-delay: .3s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(2) {
      transition-delay: 0.35s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(3) {
      transition-delay: 0.4s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(4) {
      transition-delay: 0.45s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(5) {
      transition-delay: 0.5s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(6) {
      transition-delay: 0.55s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(7) {
      transition-delay: 0.6s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(8) {
      transition-delay: 0.65s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(9) {
      transition-delay: 0.7s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(10) {
      transition-delay: 0.75s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(11) {
      transition-delay: 0.8s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(12) {
      transition-delay: 0.85s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(13) {
      transition-delay: 0.9s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(14) {
      transition-delay: 0.95s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(15) {
      transition-delay: 1s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(16) {
      transition-delay: 1.05s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(17) {
      transition-delay: 1.1s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(18) {
      transition-delay: 1.15s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(19) {
      transition-delay: 1.2s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(20) {
      transition-delay: 1.25s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(21) {
      transition-delay: 1.3s; }
.c-text-anime2.js-active .c-text-block {
  display: block; }
.c-text-anime2.js-active .c-text-divide .js-char {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1); }

/* ==========================================================================
 *
 * common scss
 *
========================================================================== */
/* ==========================================================================
   #general
========================================================================== */
html {
  font-size: 62.5%; }
  @media screen and (min-width: 1920px) {
    html {
      font-size: 0.5211047421vw; } }
  @media screen and (min-width: 800px) and (max-width: 1199px) {
    html {
      font-size: 0.834028357vw; } }
  @media screen and (max-width: 374px) {
    html {
      font-size: 2.6737967914vw; } }

body {
  color: var(--color-black);
  font-family: var(--font-family-main);
  font-optical-sizing: auto;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal; }

h1, h2, h3, h4, h5, p, li, dt, dd, th, td {
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing-m); }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
img {
  max-width: 100%;
  height: auto; }

/* ==========================================================================
   #other
========================================================================== */
.c-tb-block {
  display: none; }
  @media screen and (max-width: 799px) {
    .c-tb-block {
      display: block; } }

@media screen and (max-width: 799px) {
  .c-tb-none {
    display: none; } }

.c-sp-block {
  display: none; }
  @media screen and (max-width: 579px) {
    .c-sp-block {
      display: block; } }

@media screen and (max-width: 579px) {
  .c-sp-none {
    display: none; } }

.c-heading {
  display: flex;
  align-items: baseline;
  column-gap: 2rem; }
  @media screen and (max-width: 799px) {
    .c-heading {
      display: block;
      column-gap: 1.5rem; } }
  .c-heading h2 {
    position: relative;
    font-family: var(--font-family-sans);
    font-size: var(--font-size-34);
    padding-left: 3rem; }
    @media screen and (max-width: 799px) {
      .c-heading h2 {
        font-size: 3rem;
        padding-left: 2rem; } }
    .c-heading h2::before {
      position: absolute;
      content: '';
      top: 1.2rem;
      left: 0;
      width: 1.4rem;
      height: 1.4rem;
      background: var(--color-blue);
      border-radius: 100%; }
      @media screen and (max-width: 799px) {
        .c-heading h2::before {
          width: 1rem;
          height: 1rem; } }
  .c-heading p {
    font-size: var(--font-size-18);
    font-weight: var(--font-wight-600); }
    @media screen and (max-width: 799px) {
      .c-heading p {
        font-size: 1.4rem;
        margin-top: 1rem;
        margin-left: 6rem; } }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 4rem 6rem 0 4rem;
  z-index: var(--z-index-header); }
  @media screen and (max-width: 799px) {
    .l-header {
      position: absolute;
      width: auto;
      top: auto;
      left: auto;
      right: 2rem;
      bottom: 2rem;
      padding: 0; } }
  .l-header__logo img {
    width: 18rem;
    transition: all .3s ease; }
    @media screen and (max-width: 799px) {
      .l-header__logo img {
        width: 14rem; } }
  @media screen and (max-width: 799px) {
    .l-header__nav {
      display: none; } }
  .l-header__nav-menu {
    display: flex;
    column-gap: 3.5rem; }
    .l-header__nav-menu li {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-18);
      padding-bottom: .5rem; }
    .l-header__nav-menu a {
      transition: all .3s; }
      .l-header__nav-menu a:hover {
        opacity: .3; }
      .l-header__nav-menu a.is-active {
        border-bottom: solid var(--color-blue) 1px;
        color: var(--color-blue); }

.l-header.js-small .l-header__logo img {
  width: 12rem; }
  @media screen and (max-width: 799px) {
    .l-header.js-small .l-header__logo img {
      width: 14rem; } }

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 2.2rem;
  left: 2.2rem;
  z-index: var(--z-index-toggle); }
  @media screen and (min-width: 800px) {
    .l-toggle {
      display: none; } }
  .l-toggle__btn {
    position: relative;
    width: 4rem;
    height: 1.5rem; }
    .l-toggle__btn span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--color-black); }
    .l-toggle__btn span:nth-child(1) {
      top: 0; }
    .l-toggle__btn span:nth-child(2) {
      top: .7rem; }
    .l-toggle__btn span:nth-child(3) {
      bottom: 0; }
  .l-toggle__label {
    font-family: var(--font-family-sans);
    font-size: 1.2rem;
    font-weight: var(--font-wight-500);
    margin-top: 1rem;
    text-align: center; }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-baige);
  padding: 16rem 8% 6rem;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }
  .l-sitemap__menu {
    column-count: 2; }
    .l-sitemap__menu li {
      font-size: 1.1rem;
      break-inside: avoid;
      margin-bottom: 3rem; }
    .l-sitemap__menu a {
      color: var(--color-brown); }
    .l-sitemap__menu span {
      display: block;
      font-family: var(--font-family-sans);
      font-size: 2rem;
      margin-bottom: .6rem; }

/* ==========================================================================
   #cta
========================================================================== */
.l-cta {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 799px) {
    .l-cta {
      top: .5rem;
      right: .5rem;
      bottom: auto; } }
  .l-cta__btn {
    width: 34rem;
    height: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    background: var(--color-brown);
    border-radius: .5rem;
    padding: 0 2rem;
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .l-cta__btn {
        width: 25rem;
        height: 6rem;
        column-gap: .5rem;
        padding: 0 1rem; } }
    .l-cta__btn:hover {
      background: #968167; }
    .l-cta__btn .label {
      flex: 1;
      color: var(--color-white);
      font-size: var(--font-size-16);
      font-weight: var(--font-wight-600);
      line-height: 1.4;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .l-cta__btn .label {
          font-size: 1.3rem;
          letter-spacing: 0; } }
      .l-cta__btn .label span {
        font-size: var(--font-size-17); }
        @media screen and (max-width: 799px) {
          .l-cta__btn .label span {
            font-size: 1.4rem; } }
    .l-cta__btn .icon {
      width: 3rem;
      height: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--color-white);
      border-radius: 100%; }
      @media screen and (max-width: 799px) {
        .l-cta__btn .icon {
          width: 2rem;
          height: 2rem; } }
      .l-cta__btn .icon svg {
        width: 1rem;
        height: 1rem;
        fill: var(--color-brown); }
        @media screen and (max-width: 799px) {
          .l-cta__btn .icon svg {
            width: .6rem;
            height: .6rem; } }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  background: #D8D0C6;
  margin-top: 16rem;
  padding: 10rem 0 8rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 7rem;
      padding: 6rem 0 4rem; } }
  .l-footer__inner {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    display: flex;
    column-gap: 4rem; }
    @media screen and (max-width: 799px) {
      .l-footer__inner {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer__inner {
        display: block; } }
    .l-footer__inner-logo img {
      width: 20rem; }
      @media screen and (max-width: 799px) {
        .l-footer__inner-logo img {
          width: 14rem; } }
    .l-footer__inner-nav {
      flex: 1; }
      @media screen and (max-width: 799px) {
        .l-footer__inner-nav {
          margin-top: 4rem; } }
    .l-footer__inner-menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 1rem 3rem; }
      @media screen and (max-width: 799px) {
        .l-footer__inner-menu {
          display: block;
          column-count: 2;
          column-gap: 0; } }
      .l-footer__inner-menu li {
        font-family: var(--font-family-sans);
        font-size: var(--font-size-18); }
        @media screen and (max-width: 799px) {
          .l-footer__inner-menu li {
            break-inside: avoid;
            margin-bottom: 2.5rem; } }
      .l-footer__inner-menu a {
        color: #7D726B;
        transition: opacity .3s; }
        .l-footer__inner-menu a:hover {
          opacity: .3; }
  .l-footer__copy {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    color: #7D726B;
    font-family: var(--font-family-sans);
    font-size: var(--font-size-13);
    text-align: right; }
    @media screen and (max-width: 799px) {
      .l-footer__copy {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer__copy {
        margin-top: 6rem; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
.l-index {
  /* ==========================================================================
     #hero
  ========================================================================== */
  /* ==========================================================================
     #about
  ========================================================================== */
  /* ==========================================================================
     #special
  ========================================================================== */
  /* ==========================================================================
     #faq
  ========================================================================== */
  /* ==========================================================================
     #voice
  ========================================================================== */
  /* ==========================================================================
     #features
  ========================================================================== */
  /* ==========================================================================
     #menu
  ========================================================================== */
  /* ==========================================================================
     #staff
  ========================================================================== */
  /* ==========================================================================
     #salon
  ========================================================================== */ }
  .l-index .p-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100svh; }
    @media screen and (max-width: 799px) {
      .l-index .p-hero::before {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        width: 100%;
        height: 60%;
        background-image: linear-gradient(0deg, #fff, transparent);
        z-index: 1; } }
    .l-index .p-hero__image {
      width: 100%;
      height: 100%; }
      .l-index .p-hero__image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
        @media screen and (max-width: 799px) {
          .l-index .p-hero__image img {
            object-position: 71.5% 50%; } }
    .l-index .p-hero__conte {
      position: absolute;
      left: 8%;
      bottom: 18%; }
      @media screen and (max-width: 799px) {
        .l-index .p-hero__conte {
          left: 0;
          padding: 0 8%;
          bottom: 7rem;
          z-index: 2; } }
      .l-index .p-hero__conte .caption {
        font-size: var(--font-size-24);
        font-weight: var(--font-wight-600);
        line-height: var(--line-height-l); }
        @media screen and (max-width: 799px) {
          .l-index .p-hero__conte .caption {
            font-size: 1.8rem;
            line-height: var(--line-height-m); } }
        .l-index .p-hero__conte .caption span {
          font-size: var(--font-size-30); }
          @media screen and (max-width: 799px) {
            .l-index .p-hero__conte .caption span {
              font-size: 2rem; } }
      .l-index .p-hero__conte .label {
        font-family: var(--font-family-sans);
        font-size: var(--font-size-18);
        letter-spacing: var(--letter-spacing-l);
        margin-top: 6rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-hero__conte .label {
            font-size: 1.3rem;
            margin-top: 3rem; } }
  .l-index .p-about {
    background: var(--color-baige);
    padding: 14rem 0; }
    @media screen and (max-width: 799px) {
      .l-index .p-about {
        padding: 6rem 0; } }
    .l-index .p-about__inner {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      display: flex;
      flex-direction: row-reverse;
      column-gap: 8rem; }
      @media screen and (max-width: 799px) {
        .l-index .p-about__inner {
          width: 84%; } }
      @media screen and (max-width: 799px) {
        .l-index .p-about__inner {
          display: block; } }
    .l-index .p-about__conte {
      flex: 1;
      margin-top: 3rem; }
      @media screen and (max-width: 799px) {
        .l-index .p-about__conte {
          margin-top: 0; } }
      .l-index .p-about__conte-note {
        margin-top: 3rem; }
        .l-index .p-about__conte-note p {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          font-size: var(--font-size-15);
          line-height: var(--line-height-m); }
          .l-index .p-about__conte-note p + p {
            margin-top: 1.2rem; }
    .l-index .p-about__image {
      width: 50%; }
      @media screen and (max-width: 799px) {
        .l-index .p-about__image {
          width: 100%;
          margin-top: 4rem; } }
  .l-index .p-special {
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .l-index .p-special {
        margin-top: 7rem; } }
    .l-index .p-special__head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m); }
      @media screen and (max-width: 799px) {
        .l-index .p-special__head {
          width: 84%; } }
      .l-index .p-special__head-text {
        font-size: var(--font-size-16);
        line-height: var(--line-height-s);
        margin-top: 4rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__head-text {
            margin-top: 3rem; } }
      .l-index .p-special__head-tax {
        font-size: var(--font-size-14);
        margin-top: 2rem;
        text-align: right; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__head-tax {
            margin-top: 4rem; } }
      .l-index .p-special__head-nav {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 3rem;
        border-top: solid var(--color-black) 1px;
        margin-top: 5rem;
        padding-top: 7rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__head-nav {
            grid-template-columns: 1fr;
            grid-row-gap: 1rem;
            margin-top: 2rem;
            padding-top: 4rem; } }
      .l-index .p-special__head-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 2rem 1.5rem 3rem;
        transition: background .3s; }
      .l-index .p-special__head-label {
        font-size: var(--font-size-18);
        transition: color .3s; }
      .l-index .p-special__head-icon {
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__head-icon {
            width: 2.4rem;
            height: 2.4rem; } }
        .l-index .p-special__head-icon svg {
          width: 1rem;
          height: 1rem;
          fill: var(--color-white); }
          @media screen and (max-width: 799px) {
            .l-index .p-special__head-icon svg {
              width: .8rem;
              height: .8rem; } }
      .l-index .p-special__head .area1 {
        border: solid #88ABAF 1px; }
        .l-index .p-special__head .area1:hover {
          background: #88ABAF; }
          .l-index .p-special__head .area1:hover .p-special__head-label {
            color: var(--color-white); }
        .l-index .p-special__head .area1 .p-special__head-label {
          color: #88ABAF; }
        .l-index .p-special__head .area1 .p-special__head-icon {
          background: #88ABAF; }
      .l-index .p-special__head .area2 {
        border: solid var(--color-pink) 1px; }
        .l-index .p-special__head .area2:hover {
          background: var(--color-pink); }
          .l-index .p-special__head .area2:hover .p-special__head-label {
            color: var(--color-white); }
        .l-index .p-special__head .area2 .p-special__head-label {
          color: var(--color-pink); }
        .l-index .p-special__head .area2 .p-special__head-icon {
          background: var(--color-pink); }
      .l-index .p-special__head .area3 {
        border: solid var(--color-brown) 1px; }
        .l-index .p-special__head .area3:hover {
          background: var(--color-brown); }
          .l-index .p-special__head .area3:hover .p-special__head-label {
            color: var(--color-white); }
        .l-index .p-special__head .area3 .p-special__head-label {
          color: var(--color-brown); }
        .l-index .p-special__head .area3 .p-special__head-icon {
          background: var(--color-brown); }
    .l-index .p-special__conte {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m); }
      @media screen and (max-width: 799px) {
        .l-index .p-special__conte {
          width: 84%; } }
      .l-index .p-special__conte-area {
        margin-top: 12rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__conte-area {
            margin-top: 6rem; } }
      .l-index .p-special__conte #area1 .p-special__conte-head::before {
        background: #88ABAF; }
      .l-index .p-special__conte #area1 .p-special__conte-head h3 {
        color: #88ABAF; }
      .l-index .p-special__conte #area2 .p-special__conte-head::before {
        background: var(--color-pink); }
      .l-index .p-special__conte #area2 .p-special__conte-head h3 {
        color: var(--color-pink); }
      .l-index .p-special__conte #area3 .p-special__conte-head::before {
        background: var(--color-brown); }
      .l-index .p-special__conte #area3 .p-special__conte-head h3 {
        color: var(--color-brown); }
      .l-index .p-special__conte-head {
        position: relative;
        text-align: center; }
        .l-index .p-special__conte-head::before {
          position: absolute;
          content: '';
          top: 50%;
          left: 0;
          width: 100%;
          height: 1px;
          z-index: -1; }
        .l-index .p-special__conte-head h3 {
          display: inline-block;
          background: var(--color-white);
          font-size: var(--font-size-28);
          font-weight: var(--font-wight-600);
          padding: 0 3rem; }
          @media screen and (max-width: 799px) {
            .l-index .p-special__conte-head h3 {
              font-size: 2rem;
              padding: 0 2rem; } }
      .l-index .p-special__conte-block {
        display: flex;
        column-gap: 12rem;
        border-bottom: solid #707070 1px;
        margin-top: 10rem;
        padding-bottom: 12rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__conte-block {
            display: block;
            margin-top: 5rem;
            padding-bottom: 6rem; } }
      .l-index .p-special__conte-image {
        flex: 1;
        display: flex;
        column-gap: 4.5rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__conte-image {
            column-gap: 3rem; } }
      .l-index .p-special__conte-num {
        font-family: var(--font-family-sans);
        font-size: var(--font-size-18);
        text-align: center; }
        .l-index .p-special__conte-num span {
          display: block;
          font-size: 4rem; }
        .l-index .p-special__conte-num.blue {
          color: #88ABAF; }
        .l-index .p-special__conte-num.pink {
          color: var(--color-pink); }
        .l-index .p-special__conte-num.brown {
          color: var(--color-brown); }
      .l-index .p-special__conte-media {
        flex: 1; }
        .l-index .p-special__conte-media img {
          width: 100%; }
      .l-index .p-special__conte-inner {
        width: 45%; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__conte-inner {
            width: 100%;
            margin-top: 5rem; } }
      .l-index .p-special__conte-note {
        background: #F5F3F3;
        border: solid var(--color-black) 1px;
        border-radius: .5rem;
        padding: 2rem 2.5rem; }
        .l-index .p-special__conte-note p {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          font-size: var(--font-size-15);
          line-height: var(--line-height-s); }
      .l-index .p-special__conte-list {
        margin-top: 6rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__conte-list {
            margin-top: 5rem; } }
      .l-index .p-special__conte-item {
        border-bottom: solid #BFBFBF 1px;
        padding-bottom: 6rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__conte-item {
            padding-bottom: 5rem; } }
        .l-index .p-special__conte-item + .p-special__conte-item {
          margin-top: 6rem; }
          @media screen and (max-width: 799px) {
            .l-index .p-special__conte-item + .p-special__conte-item {
              margin-top: 5rem; } }
      .l-index .p-special__conte-select {
        display: flex;
        align-items: center;
        column-gap: 2rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__conte-select {
            flex-wrap: wrap;
            gap: 1.5rem 1.5rem; } }
        .l-index .p-special__conte-select .select {
          font-size: var(--font-size-18);
          border-radius: 1.7rem;
          padding: .6rem 1.5rem; }
          @media screen and (max-width: 799px) {
            .l-index .p-special__conte-select .select {
              font-size: 1.5rem;
              padding: .6rem 1rem; } }
          .l-index .p-special__conte-select .select.blue {
            background: #E0EAEB; }
          .l-index .p-special__conte-select .select.baige {
            background: #EBE9E0; }
        .l-index .p-special__conte-select .point {
          font-size: var(--font-size-18);
          display: inline;
          padding: 0 0 .2rem;
          background: linear-gradient(transparent 60%, #EBE9E0 0%); }
          @media screen and (max-width: 799px) {
            .l-index .p-special__conte-select .point {
              font-size: 1.5rem; } }
      .l-index .p-special__conte-cap {
        font-size: var(--font-size-28);
        font-weight: var(--font-wight-600);
        line-height: var(--line-height-s);
        margin-top: 2rem; }
      .l-index .p-special__conte-detail {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem .8rem;
        margin-top: 1.5rem; }
        .l-index .p-special__conte-detail li {
          border: solid var(--color-brown) 1px;
          border-radius: 1.5rem;
          font-size: var(--font-size-14);
          padding: .5rem 1rem; }
      .l-index .p-special__conte-txt {
        font-size: var(--font-size-15);
        line-height: var(--line-height-s);
        margin-top: 3rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__conte-txt {
            margin-top: 2rem; } }
      .l-index .p-special__conte-price {
        display: flex;
        align-items: baseline;
        justify-content: flex-end;
        column-gap: 1rem;
        margin-top: 3rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__conte-price {
            display: block; } }
        .l-index .p-special__conte-price .np {
          font-size: var(--font-size-16); }
          @media screen and (max-width: 799px) {
            .l-index .p-special__conte-price .np {
              text-align: right; } }
        .l-index .p-special__conte-price .sp {
          font-size: var(--font-size-20);
          font-weight: var(--font-wight-600); }
          @media screen and (max-width: 799px) {
            .l-index .p-special__conte-price .sp {
              margin-top: 1rem;
              text-align: right; } }
          .l-index .p-special__conte-price .sp span {
            color: var(--color-pink);
            font-family: var(--font-family-sans);
            font-size: var(--font-size-36);
            font-weight: var(--font-wight-500); }
      .l-index .p-special__conte-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 1rem;
        margin-top: 3rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-special__conte-cta {
            grid-template-columns: 1fr;
            grid-row-gap: .6rem;
            margin-top: 2rem; } }
        .l-index .p-special__conte-cta .cta {
          display: flex;
          align-items: center;
          justify-content: center;
          column-gap: 2rem;
          border-radius: .5rem;
          padding: 1.5rem 0;
          transition: background .3s; }
          .l-index .p-special__conte-cta .cta.tel {
            background: #88ABAF; }
            .l-index .p-special__conte-cta .cta.tel:hover {
              background: #60959b; }
          .l-index .p-special__conte-cta .cta.hpb {
            background: var(--color-brown); }
            .l-index .p-special__conte-cta .cta.hpb:hover {
              background: #968167; }
          .l-index .p-special__conte-cta .cta svg {
            width: 2.6rem;
            height: 2.6rem;
            fill: var(--color-white); }
          .l-index .p-special__conte-cta .cta span {
            color: var(--color-white);
            font-size: var(--font-size-16);
            font-weight: var(--font-wight-700);
            margin-right: 1rem; }
  .l-index .p-faq {
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .l-index .p-faq {
        margin-top: 7rem; } }
    .l-index .p-faq__head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m); }
      @media screen and (max-width: 799px) {
        .l-index .p-faq__head {
          width: 84%; } }
    .l-index .p-faq__conte {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-s);
      margin-top: 8rem; }
      @media screen and (max-width: 799px) {
        .l-index .p-faq__conte {
          width: 84%; } }
      @media screen and (max-width: 799px) {
        .l-index .p-faq__conte {
          margin-top: 4rem; } }
      .l-index .p-faq__conte-item {
        background: #F6F1EA;
        border-radius: .5rem;
        padding: 2.5rem 4rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-faq__conte-item {
            padding: 2.5rem; } }
        .l-index .p-faq__conte-item + .p-faq__conte-item {
          margin-top: 3rem; }
          @media screen and (max-width: 799px) {
            .l-index .p-faq__conte-item + .p-faq__conte-item {
              margin-top: 1rem; } }
      .l-index .p-faq__conte-label {
        display: flex;
        align-items: baseline;
        column-gap: 1rem;
        padding-right: 3rem; }
        .l-index .p-faq__conte-label .en {
          font-family: var(--font-family-sans);
          font-size: var(--font-size-20); }
        .l-index .p-faq__conte-label .cap {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          flex: 1;
          font-size: var(--font-size-18);
          line-height: var(--line-height-s); }
      .l-index .p-faq__conte-note {
        display: flex;
        align-items: baseline;
        column-gap: 1rem; }
        .l-index .p-faq__conte-note .en {
          font-family: var(--font-family-sans);
          font-size: var(--font-size-20); }
        .l-index .p-faq__conte-note .txt {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          flex: 1;
          font-size: var(--font-size-15);
          line-height: var(--line-height-m); }
        .l-index .p-faq__conte-note a {
          text-decoration: underline; }
  .l-index .p-voice {
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .l-index .p-voice {
        margin-top: 7rem; } }
    .l-index .p-voice__head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      display: flex;
      align-items: flex-end;
      justify-content: space-between; }
      @media screen and (max-width: 799px) {
        .l-index .p-voice__head {
          width: 84%; } }
      @media screen and (max-width: 799px) {
        .l-index .p-voice__head {
          display: block; } }
      .l-index .p-voice__head-txt {
        font-size: var(--font-size-15);
        line-height: var(--line-height-m);
        margin-top: 3rem; }
      .l-index .p-voice__head .swiper-controller {
        display: flex;
        align-items: center;
        column-gap: 4rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-voice__head .swiper-controller {
            column-gap: 3rem;
            margin-top: 3rem; } }
      .l-index .p-voice__head .swiper-pagination {
        flex: 1;
        position: relative; }
      .l-index .p-voice__head .swiper-pagination-fraction {
        bottom: 0;
        font-size: var(--font-size-16);
        text-align: right; }
      .l-index .p-voice__head .swiper-nav {
        position: relative;
        width: 19rem;
        height: 8.5rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-voice__head .swiper-nav {
            width: 11rem;
            height: 5rem; } }
      .l-index .p-voice__head .swiper-button-next,
      .l-index .p-voice__head .swiper-button-prev {
        top: 0;
        width: 8.5rem;
        height: 8.5rem;
        border: solid var(--color-brown) 1px;
        border-radius: 100%;
        margin-top: 0; }
        @media screen and (max-width: 799px) {
          .l-index .p-voice__head .swiper-button-next,
          .l-index .p-voice__head .swiper-button-prev {
            width: 5rem;
            height: 5rem; } }
      .l-index .p-voice__head .swiper-button-next::after,
      .l-index .p-voice__head .swiper-button-prev::after {
        color: var(--color-brown);
        font-size: var(--font-size-18); }
        @media screen and (max-width: 799px) {
          .l-index .p-voice__head .swiper-button-next::after,
          .l-index .p-voice__head .swiper-button-prev::after {
            font-size: 1.2rem; } }
      .l-index .p-voice__head .swiper-button-next {
        right: 0; }
      .l-index .p-voice__head .swiper-button-prev {
        left: 0; }
    .l-index .p-voice__slide {
      margin-top: 8rem;
      padding-left: 15%; }
      @media screen and (max-width: 799px) {
        .l-index .p-voice__slide {
          margin-top: 3rem;
          padding-left: 8%; } }
      .l-index .p-voice__slide .swiper {
        padding-right: 8%; }
      .l-index .p-voice__slide .swiper-slide {
        width: 35%;
        height: auto;
        background: #FCFBF9;
        border: solid #6E6760 1px;
        padding: 4rem 5rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-voice__slide .swiper-slide {
            width: 95%;
            padding: 4rem 9%; } }
      .l-index .p-voice__slide-info {
        display: flex;
        align-items: center;
        column-gap: 4rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-voice__slide-info {
            column-gap: 2rem; } }
        .l-index .p-voice__slide-info img {
          width: 11rem;
          height: 11rem; }
          @media screen and (max-width: 799px) {
            .l-index .p-voice__slide-info img {
              width: 9rem;
              height: 9rem; } }
        .l-index .p-voice__slide-info p {
          flex: 1;
          font-size: var(--font-size-18);
          font-weight: var(--font-wight-600); }
          @media screen and (max-width: 799px) {
            .l-index .p-voice__slide-info p {
              font-size: 1.5rem; } }
        .l-index .p-voice__slide-info span {
          color: var(--color-blue);
          font-family: var(--font-family-sans);
          font-size: var(--font-size-15);
          display: block;
          margin-bottom: 1rem; }
      .l-index .p-voice__slide-note {
        border-top: solid #E5DFD8 1px;
        margin-top: 2.5rem;
        padding-top: 2.5rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-voice__slide-note {
            margin-top: 2rem;
            padding-top: 2rem; } }
        .l-index .p-voice__slide-note p {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          font-size: var(--font-size-15);
          line-height: var(--line-height-m); }
  .l-index .p-features {
    background: var(--color-baige);
    margin-top: 16rem;
    padding: 14rem 0; }
    @media screen and (max-width: 799px) {
      .l-index .p-features {
        margin-top: 7rem;
        padding: 6rem 0; } }
    .l-index .p-features__head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m); }
      @media screen and (max-width: 799px) {
        .l-index .p-features__head {
          width: 84%; } }
      .l-index .p-features__head-txt {
        font-size: var(--font-size-15);
        line-height: var(--line-height-m);
        margin-top: 3rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-features__head-txt {
            margin-top: 2.5rem; } }
      .l-index .p-features__head .swiper-controller {
        position: relative;
        margin-top: 4rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-features__head .swiper-controller {
            margin-top: 3rem; } }
      .l-index .p-features__head .swiper-pagination {
        position: relative;
        bottom: 0;
        display: flex;
        justify-content: flex-end; }
      .l-index .p-features__head .swiper-pagination-bullet {
        width: 4.2rem;
        height: 4.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-white);
        border: solid var(--color-brown) 1px;
        font-family: var(--font-family-sans);
        font-size: 1.4rem;
        opacity: 1; }
        @media screen and (max-width: 799px) {
          .l-index .p-features__head .swiper-pagination-bullet {
            width: 3.8rem;
            height: 3.8rem;
            font-size: 1.2rem; } }
      .l-index .p-features__head .swiper-pagination-bullet-active {
        background: #D8ECEC; }
    .l-index .p-features__slide {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      margin-top: 2rem; }
      @media screen and (max-width: 799px) {
        .l-index .p-features__slide {
          width: 84%; } }
      @media screen and (max-width: 799px) {
        .l-index .p-features__slide {
          margin-top: 4rem; } }
      .l-index .p-features__slide .swiper-slide {
        display: flex;
        align-items: center;
        column-gap: 12rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-features__slide .swiper-slide {
            display: block; } }
      .l-index .p-features__slide-image {
        width: 40%; }
        @media screen and (max-width: 799px) {
          .l-index .p-features__slide-image {
            width: 65%;
            margin-left: auto; } }
      .l-index .p-features__slide-note {
        flex: 1; }
        @media screen and (max-width: 799px) {
          .l-index .p-features__slide-note {
            margin-top: 1rem; } }
      .l-index .p-features__slide-label {
        color: var(--color-blue);
        font-family: var(--font-family-sans);
        font-size: var(--font-size-16);
        font-weight: var(--font-wight-600); }
      .l-index .p-features__slide-cap {
        font-size: var(--font-size-28);
        font-weight: var(--font-wight-700);
        margin-top: 2rem; }
      .l-index .p-features__slide-txt {
        font-size: var(--font-size-15);
        line-height: var(--line-height-m);
        margin-top: 2.5rem; }
  .l-index .p-menu {
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .l-index .p-menu {
        margin-top: 7rem; } }
    .l-index .p-menu__head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m); }
      @media screen and (max-width: 799px) {
        .l-index .p-menu__head {
          width: 84%; } }
      .l-index .p-menu__head-txt {
        font-size: var(--font-size-15);
        line-height: var(--line-height-m);
        margin-top: 3rem; }
      .l-index .p-menu__head-tax {
        font-size: var(--font-size-13);
        margin-top: 2rem;
        text-align: right; }
    .l-index .p-menu__inner {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      column-count: 2;
      column-gap: 12rem;
      margin-top: 4rem; }
      @media screen and (max-width: 799px) {
        .l-index .p-menu__inner {
          width: 84%; } }
      @media screen and (max-width: 799px) {
        .l-index .p-menu__inner {
          column-count: 1; } }
      .l-index .p-menu__inner-cat {
        break-inside: avoid;
        margin-bottom: 6rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-menu__inner-cat {
            margin-bottom: 5rem; } }
      .l-index .p-menu__inner-head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        border-bottom: solid var(--color-brown) 1px;
        padding-bottom: 1.5rem; }
        .l-index .p-menu__inner-head .cap {
          font-size: var(--font-size-20);
          font-weight: var(--font-wight-700); }
        .l-index .p-menu__inner-head .txt {
          font-size: var(--font-size-12); }
      .l-index .p-menu__inner-item {
        border-bottom: solid #D8D0C6 1px;
        padding: 2rem 0; }
        .l-index .p-menu__inner-item dl {
          display: flex;
          column-gap: 2rem;
          align-items: baseline; }
        .l-index .p-menu__inner-item dt {
          flex: 1;
          font-size: var(--font-size-16); }
        .l-index .p-menu__inner-item dd {
          font-size: var(--font-size-16); }
        .l-index .p-menu__inner-item p {
          color: #9F968E;
          font-size: 1.2rem;
          line-height: var(--line-height-s);
          margin-top: 1rem; }
    .l-index .p-menu__cta {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      margin-top: 12rem; }
      @media screen and (max-width: 799px) {
        .l-index .p-menu__cta {
          width: 84%; } }
      @media screen and (max-width: 799px) {
        .l-index .p-menu__cta {
          margin-top: 1rem; } }
      .l-index .p-menu__cta a {
        width: 100%;
        max-width: 55rem;
        height: 12rem;
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 1rem;
        border: solid var(--color-brown) 1px;
        border-radius: .5rem;
        padding: 0 2rem;
        margin: 0 auto;
        transition: background .3s; }
        @media screen and (max-width: 799px) {
          .l-index .p-menu__cta a {
            padding: 0 2rem 0 2.5rem; } }
        .l-index .p-menu__cta a:hover {
          background: var(--color-brown); }
          .l-index .p-menu__cta a:hover .label {
            color: var(--color-white); }
      .l-index .p-menu__cta .label {
        flex: 1;
        color: var(--color-brown);
        font-size: var(--font-size-18);
        font-weight: var(--font-wight-600);
        line-height: 1.4;
        text-align: center;
        transition: color .3s; }
        @media screen and (max-width: 799px) {
          .l-index .p-menu__cta .label {
            text-align: left; } }
        .l-index .p-menu__cta .label span {
          font-size: var(--font-size-20); }
      .l-index .p-menu__cta .icon {
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-brown);
        border-radius: 100%; }
        .l-index .p-menu__cta .icon svg {
          width: 1rem;
          height: 1rem;
          fill: var(--color-white); }
  .l-index .p-staff {
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .l-index .p-staff {
        margin-top: 7rem; } }
    .l-index .p-staff__head {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m); }
      @media screen and (max-width: 799px) {
        .l-index .p-staff__head {
          width: 84%; } }
    .l-index .p-staff__list {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-column-gap: 9rem;
      grid-row-gap: 8rem;
      margin-top: 8rem; }
      @media screen and (max-width: 799px) {
        .l-index .p-staff__list {
          width: 84%; } }
      @media screen and (max-width: 799px) {
        .l-index .p-staff__list {
          grid-template-columns: 1fr;
          grid-row-gap: 5rem;
          margin-top: 5rem; } }
      .l-index .p-staff__list-head {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-end;
        column-gap: 2rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-staff__list-head {
            position: relative;
            display: block;
            padding-bottom: 12rem; } }
      .l-index .p-staff__list-image {
        width: 55%; }
        @media screen and (max-width: 799px) {
          .l-index .p-staff__list-image {
            width: 65%;
            margin-left: auto; } }
      .l-index .p-staff__list-info {
        flex: 1;
        padding-bottom: 2rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-staff__list-info {
            position: absolute;
            width: 55%;
            left: 0;
            bottom: 0;
            background: var(--color-white);
            padding-top: 2rem; } }
        .l-index .p-staff__list-info .num {
          color: var(--color-blue);
          font-family: var(--font-family-sans);
          font-size: var(--font-size-14);
          font-weight: var(--font-wight-600); }
        .l-index .p-staff__list-info .name {
          font-size: var(--font-size-22);
          line-height: var(--line-height-s);
          margin-top: 2rem; }
          @media screen and (max-width: 799px) {
            .l-index .p-staff__list-info .name {
              margin-top: 1.5rem; } }
        .l-index .p-staff__list-info .kana {
          font-family: var(--font-family-sans);
          font-size: var(--font-size-13);
          line-height: var(--line-height-s);
          margin-top: .5rem; }
        .l-index .p-staff__list-info .lank {
          font-size: var(--font-size-14);
          line-height: var(--line-height-s);
          margin-top: 1rem; }
        .l-index .p-staff__list-info .year {
          font-size: var(--font-size-14);
          line-height: var(--line-height-s); }
        .l-index .p-staff__list-info a {
          width: 100%;
          max-width: 15rem;
          height: 4.8rem;
          display: flex;
          align-items: center;
          justify-content: center;
          background: var(--color-brown);
          border-radius: .5rem;
          margin-top: 3rem;
          transition: background .3s; }
          @media screen and (max-width: 799px) {
            .l-index .p-staff__list-info a {
              margin-top: 2.5rem; } }
          .l-index .p-staff__list-info a:hover {
            background: #968167; }
          .l-index .p-staff__list-info a img {
            width: 50%; }
      .l-index .p-staff__list-text {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: var(--font-size-15);
        line-height: var(--line-height-m);
        margin-top: 4rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-staff__list-text {
            margin-top: 1rem; } }
  .l-index .p-salon {
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .l-index .p-salon {
        margin-top: 7rem; } }
    .l-index .p-salon__slide .swiper-wrapper {
      -webkit-transition-timing-function: linear !important;
      transition-timing-function: linear !important; }
    .l-index .p-salon__slide .swiper-slide {
      width: 40%; }
      @media screen and (max-width: 799px) {
        .l-index .p-salon__slide .swiper-slide {
          width: 75%; } }
    .l-index .p-salon__inner {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      display: flex;
      align-items: flex-end;
      column-gap: 8rem;
      margin-top: 12rem; }
      @media screen and (max-width: 799px) {
        .l-index .p-salon__inner {
          width: 84%; } }
      @media screen and (max-width: 799px) {
        .l-index .p-salon__inner {
          display: block;
          margin-top: 5rem; } }
      .l-index .p-salon__inner-conte {
        flex: 1; }
      .l-index .p-salon__inner-cap {
        font-size: var(--font-size-15);
        line-height: var(--line-height-s);
        margin-top: 3rem; }
        .l-index .p-salon__inner-cap span {
          font-family: var(--font-family-sans);
          font-size: var(--font-size-22);
          margin-right: 1rem; }
          @media screen and (max-width: 799px) {
            .l-index .p-salon__inner-cap span {
              display: block;
              margin-bottom: .5rem; } }
      .l-index .p-salon__inner-info dl {
        display: flex; }
      .l-index .p-salon__inner-info dt {
        width: 10rem;
        border-bottom: solid var(--color-brown) 1px;
        font-size: var(--font-size-15);
        line-height: var(--line-height-s);
        padding: 2rem 0 1.2rem; }
        @media screen and (max-width: 799px) {
          .l-index .p-salon__inner-info dt {
            width: 9rem; } }
      .l-index .p-salon__inner-info dd {
        flex: 1;
        border-bottom: solid #D8D0C6 1px;
        font-size: var(--font-size-15);
        line-height: var(--line-height-s);
        padding: 2rem 0 1.2rem; }
      .l-index .p-salon__inner-map {
        width: 47.5%; }
        @media screen and (max-width: 799px) {
          .l-index .p-salon__inner-map {
            width: 100%;
            margin-top: 6rem; } }
        .l-index .p-salon__inner-map iframe {
          width: 100%;
          height: 100%;
          min-height: 45rem; }
          @media screen and (max-width: 799px) {
            .l-index .p-salon__inner-map iframe {
              min-height: 40rem; } }
