/* ==========================================================================
 *
 * root scss
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-font: #DED3C5;
  --color-white: #FFFFFF;
  --color-gray: #CCCCCC;
  --color-bg: #41342B;
  --color-main1: #8C7C61;
  --color-main2: #7C5A21; }

/* ==========================================================================
   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, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  --font-family-sans: YakuHanJPs, "Inter", sans-serif; }

/* ==========================================================================
   font-wight
========================================================================== */
:root {
  --font-wight-regular: 400;
  --font-wight-medium: 500;
  --font-wight-semibold: 600;
  --font-wight-bold: 700; }

/* ==========================================================================
   line-height
========================================================================== */
:root {
  --line-height-s: 1.8;
  --line-height-m: 2;
  --line-height-l: 2.4; }

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

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

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

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

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

/* ==========================================================================
   sitemap
========================================================================== */
.l-sitemap {
  opacity: 0;
  visibility: hidden;
  transition-property: transform, opacity;
  transition-duration: .25s;
  transition-timing-function: ease; }
  .l-sitemap ul 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 ul li:nth-child(2) {
      transition-delay: 0.2s; }
    .l-sitemap ul li:nth-child(3) {
      transition-delay: 0.4s; }
    .l-sitemap ul li:nth-child(4) {
      transition-delay: 0.6s; }
    .l-sitemap ul li:nth-child(5) {
      transition-delay: 0.8s; }
    .l-sitemap ul li:nth-child(6) {
      transition-delay: 1s; }
    .l-sitemap ul li:nth-child(7) {
      transition-delay: 1.2s; }
    .l-sitemap ul li:nth-child(8) {
      transition-delay: 1.4s; }
    .l-sitemap ul li:nth-child(9) {
      transition-delay: 1.6s; }
    .l-sitemap ul li:nth-child(10) {
      transition-delay: 1.8s; }
    .l-sitemap ul li:nth-child(11) {
      transition-delay: 2s; }

.l-sitemap.js-active {
  opacity: 1;
  visibility: visible; }
  .l-sitemap.js-active ul 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; }

/* ==========================================================================
   link-target
========================================================================== */
.c-link-target {
  padding-top: .1rem;
  margin-top: -.1rem; }

/* ==========================================================================
 *
 * 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: 0;
      right: 0; }
  .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; }
  .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 {
  background: var(--color-bg);
  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 {
  color: var(--color-font);
  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-tbBlock {
  display: none; }
  @media screen and (max-width: 799px) {
    .c-tbBlock {
      display: block; } }

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

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

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

.c-head {
  position: relative;
  padding-bottom: 3rem; }
  .c-head::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 2.2rem;
    height: 1px;
    background: var(--color-font); }
  .c-head ._label {
    color: var(--color-main1);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-12);
    font-weight: bold; }
  .c-head ._cap {
    color: var(--color-font);
    font-size: var(--font-size-20);
    font-weight: 500;
    margin-top: 2.25rem; }

.c-head._ct::before {
  left: 50%;
  transform: translateX(-50%); }
.c-head._ct ._label,
.c-head._ct ._cap {
  text-align: center; }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: absolute;
  top: 5rem;
  left: 5rem;
  z-index: var(--z-index-logo); }
  @media screen and (max-width: 799px) {
    .l-header {
      top: 3.5rem;
      left: 3.5rem; } }
  @media screen and (max-width: 579px) {
    .l-header {
      top: 2rem;
      left: 2rem; } }
  .l-header img {
    width: 10rem;
    height: 8rem; }
    @media screen and (max-width: 799px) {
      .l-header img {
        width: 7.5rem;
        height: 6rem; } }

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 5.6rem;
  height: 5.6rem;
  background: var(--color-font);
  border-radius: 100%;
  text-align: center;
  z-index: var(--z-index-toggle); }
  @media screen and (min-width: 800px) {
    .l-toggle {
      display: none; } }
  .l-toggle .toggle__wrap {
    position: relative;
    width: 1.4rem;
    height: 9px;
    margin-top: 1.5rem; }
  .l-toggle span {
    background: var(--color-bg);
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px; }
  .l-toggle span:nth-child(1) {
    top: 0; }
  .l-toggle span:nth-child(2) {
    top: 4px; }
  .l-toggle span:nth-child(3) {
    bottom: 0; }
  .l-toggle .toggle__txt {
    color: var(--color-bg);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: .5rem; }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  padding: 0 8%;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }
  .l-sitemap .sitemap__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    z-index: -1; }
    .l-sitemap .sitemap__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .l-sitemap .sitemap__nav li {
    font-size: var(--font-size-16); }
  .l-sitemap .sitemap__nav li + li {
    margin-top: 2.5rem; }
  .l-sitemap .sitemap__tel {
    margin-top: 6rem; }
    .l-sitemap .sitemap__tel ._btn {
      display: flex;
      align-items: center;
      column-gap: 1rem; }
    .l-sitemap .sitemap__tel svg {
      width: 2.2rem;
      height: 2.2rem;
      fill: var(--color-font); }
    .l-sitemap .sitemap__tel ._label {
      color: var(--color-font);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-28);
      letter-spacing: var(--letter-spacing-m); }
    .l-sitemap .sitemap__tel ._txt {
      font-size: var(--font-size-12);
      margin-top: .5rem; }
  .l-sitemap .sitemap__copy {
    position: absolute;
    left: 8%;
    bottom: 4rem;
    font-family: var(--font-family-sans);
    font-size: 1rem; }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  top: 4rem;
  right: 3.5rem;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 799px) {
    .l-contact {
      top: auto;
      right: 1rem;
      bottom: 1rem;
      width: 45rem; } }
  @media screen and (max-width: 579px) {
    .l-contact {
      right: .5rem;
      bottom: .5rem;
      width: calc(100% - 1rem); } }
  .l-contact .contact__wrap {
    width: 22.5rem; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__wrap {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: .5rem; } }
    .l-contact .contact__wrap ._btn {
      display: flex;
      align-items: center;
      background: var(--color-main1);
      border-radius: 3rem;
      height: 6rem;
      padding: 0 2rem 0 2.5rem; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__wrap ._btn {
          border-radius: 2.8rem;
          height: 5.6rem;
          padding: 0 1.5rem 0 2.5rem; } }
    .l-contact .contact__wrap ._btn + ._btn {
      margin-top: .75rem; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__wrap ._btn + ._btn {
          margin-top: 0; } }
    .l-contact .contact__wrap ._btn:nth-child(2) {
      background: var(--color-main2); }
    .l-contact .contact__wrap ._label {
      flex: 1;
      column-gap: .75rem;
      color: var(--color-white);
      font-size: var(--font-size-13);
      font-weight: 700;
      line-height: 1.4; }
    .l-contact .contact__wrap ._label span {
      display: block;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-12);
      font-weight: 600; }
    .l-contact .contact__wrap svg {
      width: 2.2rem;
      height: 2.2rem;
      fill: var(--color-white); }
      @media screen and (max-width: 799px) {
        .l-contact .contact__wrap svg {
          width: 2rem;
          height: 2rem; } }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 7rem; } }
  .l-footer .footer__nav {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .l-footer .footer__nav {
        width: 84%; } }
    .l-footer .footer__nav ul {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 3rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__nav ul {
          display: block; } }
    .l-footer .footer__nav li {
      font-size: var(--font-size-14); }
      @media screen and (max-width: 799px) {
        .l-footer .footer__nav li {
          margin-top: 2rem;
          text-align: center; } }
  .l-footer .footer__logo {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 10rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__logo {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__logo {
        margin-top: 6rem; } }
    .l-footer .footer__logo img {
      width: 10rem;
      height: 8rem; }
  .l-footer .footer__copy {
    position: relative;
    height: 10rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy {
        height: 6.6rem;
        margin-top: 6rem; } }
    .l-footer .footer__copy img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .4; }
    .l-footer .footer__copy ._copy {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      width: 100%;
      color: #7f7b78;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-12);
      text-align: center; }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh; }
  .p-index-hero .hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    opacity: .4;
    z-index: -1; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__bg {
        width: 100%; } }
    .p-index-hero .hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__bg img {
          height: 62.5vh; } }
  .p-index-hero .hero__photo {
    width: 82.5%;
    height: 100%; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__photo {
        width: 92%; } }
    .p-index-hero .hero__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      clip-path: ellipse(100% 135% at 0% 50%); }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__photo img {
          height: 60vh;
          object-position: 35% 50%; } }
  .p-index-hero .hero__head {
    position: absolute;
    right: 30%;
    bottom: 9rem; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__head {
        left: 5.5%;
        right: auto;
        bottom: 15rem; } }
    @media screen and (max-width: 579px) {
      .p-index-hero .hero__head {
        bottom: 9rem; } }
    .p-index-hero .hero__head ._cap {
      color: var(--color-white);
      font-size: var(--font-size-32);
      font-weight: bold;
      line-height: var(--line-height-s);
      text-align: right; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__head ._cap {
          display: inline;
          background: rgba(65, 52, 43, 0.6);
          -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
          line-height: 1.7;
          padding: 0 .25rem;
          text-align: left; } }
    .p-index-hero .hero__head ._txt {
      color: var(--color-white);
      font-size: var(--font-size-16);
      line-height: var(--line-height-l);
      text-align: right;
      margin-top: 1.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__head ._txt {
          line-height: 2.2;
          padding: 0 .25rem;
          text-align: left; } }
  .p-index-hero .hero__nav {
    position: absolute;
    right: 4.5rem;
    bottom: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__nav {
        display: none; } }
  .p-index-hero .hero__nav-list li {
    text-align: right; }
  .p-index-hero .hero__nav-list li + li {
    margin-top: 2rem; }
  .p-index-hero .hero__nav-list a {
    font-size: var(--font-size-14);
    font-weight: medium; }
  .p-index-hero .hero__nav-info {
    margin-top: 7rem; }
    .p-index-hero .hero__nav-info ._tel {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      column-gap: .5rem; }
    .p-index-hero .hero__nav-info svg {
      width: 2.4rem;
      height: 2.4rem;
      fill: var(--color-font); }
    .p-index-hero .hero__nav-info ._label {
      color: var(--color-font);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-20);
      font-weight: bold;
      letter-spacing: .1em; }
    .p-index-hero .hero__nav-info ._time {
      font-size: var(--font-size-12);
      line-height: var(--line-height-s);
      margin-top: .75rem;
      text-align: right; }

/* ==========================================================================
   #about
========================================================================== */
.p-index-about {
  position: relative;
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    .p-index-about {
      margin-top: 0;
      padding-bottom: 5rem; } }
  .p-index-about::before {
    position: absolute;
    content: '';
    right: 0;
    width: 90%;
    height: 100%;
    background: var(--color-font);
    border-radius: .5rem 0 0 .5rem;
    opacity: .1;
    z-index: -2; }
    @media screen and (max-width: 799px) {
      .p-index-about::before {
        bottom: 0;
        width: 97.5%;
        height: 90%; } }
  .p-index-about .about__wrap {
    display: flex;
    flex-direction: row-reverse;
    padding: 8rem 0; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__wrap {
        display: block;
        padding: 0; } }
  .p-index-about .about__photo {
    width: 50%;
    padding-right: 5%;
    text-align: right; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__photo {
        width: 82.5%;
        margin-left: auto; } }
    .p-index-about .about__photo img {
      border-radius: .5rem; }
    .p-index-about .about__photo ._img1 {
      width: 100%; }
    .p-index-about .about__photo ._img2 {
      width: 38.5%;
      margin-top: 4rem;
      margin-right: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__photo ._img2 {
          margin-top: 2rem;
          margin-right: 1rem; } }
  .p-index-about .about__conte {
    position: relative;
    flex: 1;
    margin-top: 8rem;
    padding: 14rem 0 14rem 15%; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__conte {
        margin-top: -4rem;
        padding: 0 9%; } }
    .p-index-about .about__conte::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 120%;
      height: 100%;
      background: var(--color-bg);
      z-index: -1; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__conte::before {
          display: none; } }
  .p-index-about .about__conte-note {
    margin-top: 7rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__conte-note {
        margin-top: 4rem; } }
    .p-index-about .about__conte-note ._txt {
      font-size: var(--font-size-15);
      line-height: var(--line-height-l); }
    .p-index-about .about__conte-note ._txt + ._txt {
      margin-top: 2rem; }

/* ==========================================================================
   #set
========================================================================== */
.p-index-set {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-set {
      margin-top: 7rem; } }
  .p-index-set .set__bg {
    position: relative;
    width: 100%;
    height: 60rem;
    z-index: -1; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__bg {
        height: 45rem; } }
    .p-index-set .set__bg::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background: var(--color-bg);
      opacity: .75;
      z-index: 1; }
    .p-index-set .set__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .p-index-set .set__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    align-items: center;
    column-gap: 2rem;
    margin-top: -40rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__head {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-set .set__head {
        display: block;
        margin-top: -35rem; } }
    .p-index-set .set__head .c-head {
      flex: 1; }
  .p-index-set .set__head-note {
    width: 50%; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__head-note {
        width: 100%;
        margin-top: 3rem; } }
    .p-index-set .set__head-note ._txt {
      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); }
    .p-index-set .set__head-note ._min {
      font-size: var(--font-size-13);
      line-height: var(--line-height-s);
      margin-top: 1rem; }
  .p-index-set .set__list {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 14rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list {
        width: 90%;
        margin-top: 5rem; } }
    @media screen and (max-width: 579px) {
      .p-index-set .set__list {
        width: 94%; } }
  .p-index-set .set__list-item {
    display: flex;
    column-gap: 6rem;
    background: var(--color-bg);
    border: solid var(--color-font) 1px;
    border-radius: .5rem;
    padding: 2.5rem 5rem 2.5rem 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-item {
        display: block;
        padding: 3.5rem; } }
    @media screen and (max-width: 579px) {
      .p-index-set .set__list-item {
        padding: 2.2rem; } }
  .p-index-set .set__list-item + .set__list-item {
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-item + .set__list-item {
        margin-top: 3rem; } }
  .p-index-set .set__list-item:nth-child(2n) {
    flex-direction: row-reverse;
    padding: 2.5rem 2.5rem 2.5rem 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-item:nth-child(2n) {
        padding: 2.2rem; } }
  .p-index-set .set__list-item:nth-child(2n) .set__list-photo ._label {
    left: auto;
    right: -1.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-item:nth-child(2n) .set__list-photo ._label {
        left: -4.5rem;
        right: auto; } }
  .p-index-set .set__list-photo {
    position: relative;
    width: 25%; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-photo {
        width: 37.5%;
        margin-left: auto; } }
    @media screen and (max-width: 579px) {
      .p-index-set .set__list-photo {
        width: 47.5%; } }
    .p-index-set .set__list-photo img {
      width: 100%; }
    .p-index-set .set__list-photo ._label {
      position: absolute;
      left: -1.5rem;
      top: -1.5rem;
      width: 8rem;
      height: 8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100%;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-14);
      font-weight: 700;
      letter-spacing: var(--letter-spacing-s);
      color: var(--color-font);
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-photo ._label {
          left: -4.5rem;
          width: 6.4rem;
          height: 6.4rem; } }
    .p-index-set .set__list-photo ._label._ladies {
      background: var(--color-main1); }
    .p-index-set .set__list-photo ._label._mens {
      background: var(--color-main2); }
  .p-index-set .set__list-conte {
    flex: 1;
    padding-top: 2rem; }
    @media screen and (max-width: 579px) {
      .p-index-set .set__list-conte {
        margin-top: -4rem; } }
  .p-index-set .set__list-conte-info ._menu {
    font-size: var(--font-size-20);
    font-weight: 700;
    line-height: var(--line-height-s); }
  .p-index-set .set__list-conte-info ._limit {
    width: fit-content;
    background: rgba(222, 211, 197, 0.1);
    font-size: var(--font-size-15);
    line-height: var(--line-height-s);
    margin-top: 1.25rem;
    padding: 0 1rem; }
  .p-index-set .set__list-conte-info ._min {
    font-size: var(--font-size-13);
    line-height: var(--line-height-s);
    margin-top: 1rem; }
  .p-index-set .set__list-conte-info ._price {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    column-gap: 1rem;
    margin-top: -1rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte-info ._price {
        margin-top: 1.5rem;
        display: block; } }
  .p-index-set .set__list-conte-info ._np {
    font-size: var(--font-size-15);
    line-height: var(--line-height-s); }
  .p-index-set .set__list-conte-info ._sp {
    font-size: var(--font-size-16);
    line-height: var(--line-height-s); }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte-info ._sp {
        text-align: right; } }
  .p-index-set .set__list-conte-info ._sp span {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-26);
    font-weight: 600; }
  .p-index-set .set__list-conte-check {
    display: flex;
    column-gap: 3rem;
    border-top: solid var(--color-font) 1px;
    margin-top: .5rem;
    padding-top: 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte-check {
        display: block;
        padding-top: 1.5rem; } }
    .p-index-set .set__list-conte-check ._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-14);
      line-height: var(--line-height-s); }
    .p-index-set .set__list-conte-check ._txt a {
      text-decoration: underline; }
    .p-index-set .set__list-conte-check ._btn {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 1rem;
      width: 20rem;
      height: 6rem;
      background: var(--color-font);
      border-radius: 3rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-conte-check ._btn {
          width: 17.5rem;
          height: 5rem;
          border-radius: 2.5rem;
          margin-top: 2rem; } }
    .p-index-set .set__list-conte-check svg {
      width: 2.2rem;
      height: 2.2rem;
      fill: var(--color-bg); }
    .p-index-set .set__list-conte-check ._label {
      color: var(--color-bg);
      font-size: var(--font-size-14);
      font-weight: 600;
      margin-right: 1rem; }

/* ==========================================================================
   #features
========================================================================== */
.p-index-features {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-features {
      margin-top: 7rem; } }
  .p-index-features .features__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-features .features__head {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-features .features__head .c-head._ct::before {
        left: 0;
        transform: translateX(0); } }
    @media screen and (max-width: 799px) {
      .p-index-features .features__head .c-head._ct ._label,
      .p-index-features .features__head .c-head._ct ._cap {
        text-align: left; } }
  .p-index-features .features__list {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-features .features__list {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-features .features__list {
        width: 100%;
        margin-top: 4rem; } }
  .p-index-features .features__list-item {
    display: flex;
    align-items: center;
    column-gap: 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-features .features__list-item {
        display: block; } }
  .p-index-features .features__list-item:nth-child(2n) {
    flex-direction: row-reverse; }
  .p-index-features .features__list-item + .features__list-item {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-features .features__list-item + .features__list-item {
        margin-top: 5rem; } }
  .p-index-features .features__list-photo {
    width: 45%; }
    @media screen and (max-width: 799px) {
      .p-index-features .features__list-photo {
        width: 92%; } }
    .p-index-features .features__list-photo img {
      width: 100%; }
  @media screen and (max-width: 799px) {
    .p-index-features .features__list-item:nth-child(2n) .features__list-photo {
      margin-left: auto; } }
  .p-index-features .features__list-conte {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-index-features .features__list-conte {
        margin: 0 auto;
        width: 88%;
        max-width: var(--container-m);
        margin-top: 3rem; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-features .features__list-conte {
      width: 84%; } }

  .p-index-features .features__list-conte-head {
    display: flex;
    align-items: flex-end; }
    .p-index-features .features__list-conte-head ._num {
      color: var(--color-main1);
      font-family: var(--font-family-sans);
      font-size: 4.4rem;
      font-weight: 600; }
      @media screen and (max-width: 799px) {
        .p-index-features .features__list-conte-head ._num {
          font-size: 3.6rem; } }
    .p-index-features .features__list-conte-head ._cap {
      position: relative;
      flex: 1;
      font-size: var(--font-size-20);
      font-weight: 600;
      margin-left: 2rem;
      margin-bottom: 1rem;
      padding-left: 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-features .features__list-conte-head ._cap {
          margin-left: 1.5rem;
          padding-left: 1.5rem; } }
    .p-index-features .features__list-conte-head ._cap::before {
      position: absolute;
      content: '';
      left: 0;
      bottom: 0;
      width: 1px;
      height: 80%;
      background: var(--color-font); }
  .p-index-features .features__list-conte-note {
    margin-top: 1.5rem; }
    .p-index-features .features__list-conte-note ._txt {
      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); }
    .p-index-features .features__list-conte-note ._txt + ._txt {
      margin-top: 1.5rem; }
    .p-index-features .features__list-conte-note ._bg {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      background: rgba(222, 211, 197, 0.1);
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      margin: 1.75rem 0;
      padding: 1rem 1.75rem; }
    .p-index-features .features__list-conte-note ._bg span {
      font-weight: 700; }

/* ==========================================================================
   #menu
========================================================================== */
.p-index-menu {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-menu {
      margin-top: 7rem; } }
  .p-index-menu .menu__bg {
    position: relative;
    width: 100%;
    height: 60rem;
    z-index: -1; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__bg {
        height: 45rem; } }
    .p-index-menu .menu__bg::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background: var(--color-bg);
      opacity: .75;
      z-index: 1; }
    .p-index-menu .menu__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .p-index-menu .menu__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: -40rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__head {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__head {
        margin-top: -35rem; } }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__head .c-head._ct::before {
        left: 0;
        transform: translateX(0); } }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__head .c-head._ct ._label,
      .p-index-menu .menu__head .c-head._ct ._cap {
        text-align: left; } }
    .p-index-menu .menu__head ._txt {
      font-size: var(--font-size-14);
      margin-top: 4rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__head ._txt {
          text-align: left; } }
  .p-index-menu .menu__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 9rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__wrap {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 6rem;
        margin-top: 6rem; } }
  .p-index-menu .menu__wrap-head {
    height: 5.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-font);
    border-radius: 2.6rem;
    color: var(--color-bg);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-16);
    font-weight: 700; }
  .p-index-menu .menu__wrap-list {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__wrap-list {
        margin-top: 4rem; } }
  .p-index-menu .menu__wrap-item + .menu__wrap-item {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__wrap-item + .menu__wrap-item {
        margin-top: 5rem; } }
  .p-index-menu .menu__wrap-item-cap {
    display: flex;
    align-items: center; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__wrap-item-cap {
        display: block; } }
    .p-index-menu .menu__wrap-item-cap ._cap {
      font-size: var(--font-size-20);
      font-weight: 700; }
    .p-index-menu .menu__wrap-item-cap ._txt {
      flex: 1;
      font-size: var(--font-size-12);
      line-height: var(--line-height-s);
      text-align: right; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__wrap-item-cap ._txt {
          margin-top: .75rem;
          text-align: left; } }
  .p-index-menu .menu__wrap-item-table {
    margin-top: 2rem; }
    .p-index-menu .menu__wrap-item-table ._block {
      border-top: solid #8e8375 1px;
      padding: 2rem 0; }
    .p-index-menu .menu__wrap-item-table ._block:last-child {
      border-bottom: solid #8e8375 1px; }
    .p-index-menu .menu__wrap-item-table dl {
      display: flex;
      align-items: center;
      justify-content: space-between; }
    .p-index-menu .menu__wrap-item-table dt {
      font-size: var(--font-size-15);
      line-height: 1.6; }
    .p-index-menu .menu__wrap-item-table dd {
      font-size: var(--font-size-15);
      line-height: 1.6; }
    .p-index-menu .menu__wrap-item-table ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-12);
      line-height: 1.6;
      margin-top: .5rem;
      padding-right: 8rem; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__wrap-item-table ._txt {
          padding-right: 6rem; } }
  .p-index-menu .menu__wrap-item-note {
    margin-top: 2rem; }
    .p-index-menu .menu__wrap-item-note ._txt {
      font-size: var(--font-size-12);
      line-height: 1.6; }

/* ==========================================================================
   #staff
========================================================================== */
.p-index-staff {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-staff {
      margin-top: 7rem; } }
  .p-index-staff .staff__photo {
    padding-left: 8%; }
    .p-index-staff .staff__photo ._photo {
      position: relative;
      width: 100%;
      height: 60rem; }
      @media screen and (max-width: 799px) {
        .p-index-staff .staff__photo ._photo {
          height: 30rem; } }
    .p-index-staff .staff__photo ._photo::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background: var(--color-bg);
      opacity: .4;
      z-index: 1; }
    .p-index-staff .staff__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .p-index-staff .staff__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__head {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__head {
        margin-top: 6rem; } }
  .p-index-staff .staff__list {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list {
        width: 84%; } }
  .p-index-staff .staff__list-item {
    width: 75%;
    display: flex;
    column-gap: 6rem;
    border-bottom: solid var(--color-font) 1px;
    margin-left: auto;
    padding: 5rem 0; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-item {
        width: 100%;
        display: block;
        padding: 4rem 0; } }
  .p-index-staff .staff__list-photo {
    width: 30%; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-photo {
        width: 35%;
        margin-left: auto; } }
    @media screen and (max-width: 579px) {
      .p-index-staff .staff__list-photo {
        width: 45%; } }
    .p-index-staff .staff__list-photo img {
      width: 100%; }
  .p-index-staff .staff__list-conte {
    flex: 1;
    margin-top: 1.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-conte {
        margin-top: -4rem; } }
    .p-index-staff .staff__list-conte ._name {
      font-size: var(--font-size-20);
      font-weight: 700; }
    .p-index-staff .staff__list-conte ._kana {
      font-size: var(--font-size-13);
      margin-top: 1rem; }
    .p-index-staff .staff__list-conte ._lank {
      font-size: var(--font-size-15);
      line-height: var(--line-height-s);
      margin-top: 2rem; }
    .p-index-staff .staff__list-conte ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      border-top: solid #8e8375 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-s);
      margin-top: 1rem;
      padding-top: 1rem; }

/* ==========================================================================
   #salon
========================================================================== */
.p-index-salon {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon {
      margin-top: 7rem; } }
  .p-index-salon .salon__photo {
    width: 92%; }
  .p-index-salon .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important; }
  .p-index-salon .swiper-slide {
    width: 34%; }
    @media screen and (max-width: 799px) {
      .p-index-salon .swiper-slide {
        width: 45%; } }
    @media screen and (max-width: 579px) {
      .p-index-salon .swiper-slide {
        width: 65%; } }
  .p-index-salon .salon__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__head {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__head {
        margin-top: 6rem; } }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__head .c-head._ct::before {
        left: 0;
        transform: translateX(0); } }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__head .c-head._ct ._label,
      .p-index-salon .salon__head .c-head._ct ._cap {
        text-align: left; } }
  .p-index-salon .salon__info {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    column-gap: 10rem;
    column-gap: 9rem;
    margin-top: 9rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__info {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__info {
        display: block;
        margin-top: 5rem; } }
  .p-index-salon .salon__info-conte {
    flex: 1; }
    .p-index-salon .salon__info-conte img {
      width: 100%; }
    .p-index-salon .salon__info-conte ._cap {
      font-size: var(--font-size-13);
      margin-top: 7rem; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__info-conte ._cap {
          margin-top: 4.5rem; } }
    .p-index-salon .salon__info-conte ._cap span {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-20);
      font-weight: 700;
      margin-right: 1rem; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__info-conte ._cap span {
          display: block;
          margin-bottom: .75rem; } }
    .p-index-salon .salon__info-conte ._table {
      margin-top: 2rem; }
    .p-index-salon .salon__info-conte dl {
      display: flex;
      border-bottom: solid #8e8375 1px;
      padding: 1.75rem 0; }
    .p-index-salon .salon__info-conte dt {
      width: 15rem;
      font-size: var(--font-size-15);
      line-height: 1.6; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__info-conte dt {
          width: 9rem; } }
    .p-index-salon .salon__info-conte dd {
      flex: 1;
      font-size: var(--font-size-15);
      line-height: 1.6; }
  .p-index-salon .salon__info-map {
    width: 45%; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__info-map {
        width: 100%;
        margin-top: 6rem; } }
    .p-index-salon .salon__info-map iframe {
      width: 100%;
      height: 100%; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__info-map iframe {
          height: 35rem; } }

/* ==========================================================================
   #reserve
========================================================================== */
.p-index-reserve {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-reserve {
      margin-top: 7rem; } }
  .p-index-reserve .reserve__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    position: relative; }
    @media screen and (max-width: 799px) {
      .p-index-reserve .reserve__wrap {
        width: 84%; } }
  .p-index-reserve .reserve__photo {
    position: relative;
    height: 50rem;
    border-radius: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-reserve .reserve__photo {
        height: 42rem;
        border-radius: 3rem; } }
    .p-index-reserve .reserve__photo::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background: var(--color-bg);
      border-radius: 4rem;
      opacity: .75;
      z-index: 1; }
      @media screen and (max-width: 799px) {
        .p-index-reserve .reserve__photo::before {
          border-radius: 3rem; } }
    .p-index-reserve .reserve__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-reserve .reserve__photo img {
          border-radius: 3rem; } }
  .p-index-reserve .reserve__conte {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 4rem;
    text-align: center;
    z-index: 2; }
    @media screen and (max-width: 799px) {
      .p-index-reserve .reserve__conte {
        padding: 0 2rem; } }
    .p-index-reserve .reserve__conte ._txt {
      font-size: var(--font-size-20);
      font-weight: 700;
      line-height: var(--line-height-s);
      margin-top: 3rem; }
      @media screen and (max-width: 799px) {
        .p-index-reserve .reserve__conte ._txt {
          font-size: 1.6rem; } }
    .p-index-reserve .reserve__conte ._label2 {
      width: fit-content;
      border: solid var(--color-font) 1px;
      border-radius: 2rem;
      font-size: var(--font-size-15);
      margin: 3.5rem auto 1rem;
      padding: .5rem 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-reserve .reserve__conte ._label2 {
          margin-top: 2.5rem;
          margin-bottom: 2rem; } }
    .p-index-reserve .reserve__conte ._btn {
      color: var(--color-font);
      font-family: var(--font-family-sans);
      font-size: 4.6rem;
      letter-spacing: var(--letter-spacing-m); }
      @media screen and (max-width: 799px) {
        .p-index-reserve .reserve__conte ._btn {
          font-size: 3rem; } }
    .p-index-reserve .reserve__conte ._min {
      font-size: var(--font-size-14);
      line-height: var(--line-height-s);
      margin-top: .25rem; }
      @media screen and (max-width: 799px) {
        .p-index-reserve .reserve__conte ._min {
          font-size: 1rem; } }
