/* ==========================================================================
 *
 * root scss
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #272727;
  --color-white: #FFFFFF;
  --color-gray: #ACACAC;
  --color-bg: #F6F2EA;
  --color-main1: #B45A4A;
  --color-main2: #6C6860;
  --color-main3: #CCBE98; }

/* ==========================================================================
   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: calibri, 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: 116rem;
  --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-footer: 60;
  --z-index-main: 50; }

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

.l-toggle.js-active span {
  background: var(--color-white); }
.l-toggle.js-active span:nth-child(1) {
  top: 3px; }
.l-toggle.js-active span:nth-child(2) {
  bottom: 3px; }

/* ==========================================================================
   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 {
  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 {
  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-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 .c-cap {
  font-family: var(--font-family-sans);
  font-size: 4.6rem;
  letter-spacing: .075em;
  text-align: center; }
  @media screen and (max-width: 799px) {
    .c-head .c-cap {
      font-size: 3.8rem; } }
.c-head .c-txt {
  color: var(--color-gray);
  font-size: var(--font-size-14);
  margin-top: .75rem;
  text-align: center; }
  @media screen and (max-width: 799px) {
    .c-head .c-txt {
      font-size: var(--font-size-12); } }
.c-head .c-cap._w,
.c-head .c-txt._w {
  color: var(--color-white); }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: absolute;
  top: 5rem;
  left: 6%;
  z-index: var(--z-index-header); }
  @media screen and (max-width: 799px) {
    .l-header .header__nav {
      display: none; } }
  .l-header .header__list {
    display: flex;
    column-gap: 4rem; }
    .l-header .header__list li {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15); }

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 2.5rem;
  left: 2rem;
  z-index: var(--z-index-toggle); }
  @media screen and (min-width: 800px) {
    .l-toggle {
      display: none; } }
  .l-toggle .toggle__wrap {
    position: relative;
    width: 3.4rem;
    height: 7px; }
  .l-toggle span {
    background: var(--color-black);
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px; }
  .l-toggle span:nth-child(1) {
    top: 0; }
  .l-toggle span:nth-child(2) {
    bottom: 0; }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-black);
  padding: 9.5rem 8%;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }
  .l-sitemap .sitemap__list li {
    border-bottom: solid #555555 1px;
    font-size: 1rem;
    margin-top: .5rem; }
  .l-sitemap .sitemap__list li a {
    display: block;
    color: #acacac;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem; }
  .l-sitemap .sitemap__list li a span {
    color: var(--color-white);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-24);
    margin-right: 1.5rem; }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 579px) {
    .l-contact {
      width: 100%; } }
  .l-contact .contact__list {
    width: 54rem;
    height: 7.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr); }
    @media screen and (max-width: 579px) {
      .l-contact .contact__list {
        width: 100%;
        height: 7rem; } }
  .l-contact .contact__item {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1.75rem;
    background: var(--color-main1); }
    @media screen and (max-width: 579px) {
      .l-contact .contact__item {
        column-gap: 1.5rem; } }
    .l-contact .contact__item:nth-child(2) {
      background: var(--color-main2); }
    .l-contact .contact__item svg {
      width: 3rem;
      height: 3rem;
      fill: var(--color-white); }
      @media screen and (max-width: 579px) {
        .l-contact .contact__item svg {
          width: 2.6rem;
          height: 2.6rem; } }
    .l-contact .contact__item ._label {
      color: var(--color-white);
      font-size: var(--font-size-14);
      font-weight: var(--font-wight-medium);
      line-height: 1.5;
      margin-right: .5rem; }
      @media screen and (max-width: 579px) {
        .l-contact .contact__item ._label {
          line-height: 1.3; } }
    .l-contact .contact__item ._label span {
      display: block;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-12);
      font-weight: var(--font-wight-regular);
      letter-spacing: .05em;
      opacity: .5; }
      @media screen and (max-width: 579px) {
        .l-contact .contact__item ._label span {
          font-size: 1rem;
          margin-top: .3rem; } }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 18rem;
  padding-bottom: 8rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 8rem;
      padding-bottom: 6rem; } }
  .l-footer .footer__logo img {
    width: 30rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__logo img {
        width: 20rem; } }
  .l-footer .footer__nav {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__nav {
        margin-top: 3rem; } }
    .l-footer .footer__nav ul {
      display: flex;
      flex-wrap: wrap;
      column-gap: 4rem;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15); }
      @media screen and (max-width: 799px) {
        .l-footer .footer__nav ul {
          column-gap: 3rem; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__nav li {
        margin: .8rem 0; } }
  .l-footer .footer__copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy {
        margin-top: 7rem; } }
    .l-footer .footer__copy ._copy {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15); }
  .l-footer .footer__copy-link {
    display: flex;
    column-gap: 3rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy-link {
        column-gap: 2rem; } }
    .l-footer .footer__copy-link svg {
      width: 2.8rem;
      height: 2.8rem;
      fill: var(--color-gray); }
      @media screen and (max-width: 799px) {
        .l-footer .footer__copy-link svg {
          width: 2.4rem;
          height: 2.4rem; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh; }
  .p-index-hero .hero__photo {
    width: 55%;
    height: 100%;
    margin-left: auto;
    margin-right: 6%; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__photo {
        width: 92%;
        margin-right: 0; } }
    @media screen and (max-width: 579px) {
      .p-index-hero .hero__photo {
        height: 80%; } }
    .p-index-hero .hero__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .p-index-hero .hero__head._pc {
    position: absolute;
    top: 55%;
    left: 6%;
    transform: translateY(-50%);
    width: 26.5%; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__head._pc {
        display: none; } }
    .p-index-hero .hero__head._pc ._cap {
      margin-bottom: 4rem; }
      .p-index-hero .hero__head._pc ._cap img {
        width: 85%; }
    .p-index-hero .hero__head._pc ._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-14);
      line-height: var(--line-height-m);
      margin-top: 2rem; }
  @media screen and (min-width: 800px) {
    .p-index-hero .hero__head._sp {
      display: none; } }
  .p-index-hero .hero__head._sp ._cap {
    position: absolute;
    top: 2.2rem;
    right: 2.2rem; }
    .p-index-hero .hero__head._sp ._cap img {
      width: 20rem; }
  .p-index-hero .hero__head._sp ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: absolute;
    left: 0;
    bottom: 8rem;
    width: 96%;
    max-width: 47.5rem;
    background: rgba(39, 39, 39, 0.5);
    color: var(--color-white);
    font-size: var(--font-size-14);
    line-height: var(--line-height-m);
    padding: 2.5rem 2rem; }

/* ==========================================================================
   #news
========================================================================== */
.p-index-news {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-news {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-news {
      width: 92%;
      margin-top: 8rem; } }
  @media screen and (max-width: 579px) {
    .p-index-news {
      margin-top: 0; } }
  .p-index-news .news__wrap {
    background: var(--color-bg);
    padding: 6rem 1rem 6.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-news .news__wrap {
        padding: 5rem 1rem 5.5rem; } }
  .p-index-news .news__head {
    font-size: var(--font-size-22);
    font-weight: var(--font-wight-medium);
    text-align: center; }
  .p-index-news .news__txt {
    font-size: var(--font-size-14);
    line-height: var(--line-height-s);
    margin-top: 2.5rem;
    text-align: center; }
  .p-index-news .news__period {
    width: fit-content;
    margin: 3rem auto 0;
    background: var(--color-main1);
    color: var(--color-white);
    font-size: var(--font-size-16);
    font-weight: var(--font-wight-medium);
    padding: .8rem 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-news .news__period {
        margin: 2.5rem auto 0;
        padding: .6rem 2rem; } }
  .p-index-news .news__date {
    font-size: var(--font-size-16);
    margin-top: 2rem;
    text-align: center; }

/* ==========================================================================
   #message
========================================================================== */
.p-index-message {
  position: relative;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-message {
      margin-top: 8rem; } }
  .p-index-message .message__photo {
    position: relative;
    height: 72rem; }
    .p-index-message .message__photo::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--color-black);
      opacity: .5; }
    .p-index-message .message__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .p-index-message .message__conte {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%; }
  .p-index-message .message__conte .c-head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-message .message__conte .c-head {
        width: 84%; } }
  .p-index-message .message__conte-note {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__conte-note {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-message .message__conte-note {
        margin-top: 4rem; } }
    .p-index-message .message__conte-note ._txt {
      color: var(--color-white);
      font-size: var(--font-size-14);
      line-height: var(--line-height-l);
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-message .message__conte-note ._txt {
          line-height: 2.2; } }
    .p-index-message .message__conte-note ._txt + ._txt {
      margin-top: 1.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-message .message__conte-note ._txt + ._txt {
          margin-top: 1.2rem; } }

/* ==========================================================================
   #set
========================================================================== */
.set-menu__note{
  font-size: var(--font-size-15);
}

@media screen and (max-width: 799px){
  .set-menu__note{
    font-size: var(--font-size-14);
  }
}


.p-index-set {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-set {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-set {
      margin-top: 8rem; } }
  .p-index-set .set__list {
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list {
        margin-top: 6rem; } }
  .p-index-set .set__list-item {
    display: flex;
    column-gap: 16rem;
    border-bottom: solid #ccc 1px;
    padding-left: 5rem;
    padding-bottom: 9rem; }
    @media screen and (max-width: 1199px) {
      .p-index-set .set__list-item {
        column-gap: 8rem; } }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-item {
        display: block;
        padding-left: 0;
        padding-bottom: 6rem; } }
  .p-index-set .set__list-item + .set__list-item {
    margin-top: 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-item + .set__list-item {
        margin-top: 6rem; } }
  .p-index-set .set__list-photo {
    width: 25%;
    position: relative; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-photo {
        width: 45%;
        margin: 0 auto; } }
    @media screen and (max-width: 579px) {
      .p-index-set .set__list-photo {
        width: 65%; } }
    .p-index-set .set__list-photo .swiper-button-next,
    .p-index-set .set__list-photo .swiper-button-prev {
      width: 6.6rem;
      height: 4.6rem;
      background: #B45A4A;
      border-radius: 50%; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-photo .swiper-button-next,
        .p-index-set .set__list-photo .swiper-button-prev {
          width: 4.4rem;
          height: 3rem; } }
    .p-index-set .set__list-photo .swiper-button-next {
      right: -2.3rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-photo .swiper-button-next {
          right: -2.2rem; } }
    .p-index-set .set__list-photo .swiper-button-prev {
      left: -2.6rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-photo .swiper-button-prev {
          left: -2.6rem; } }
    .p-index-set .set__list-photo .swiper-button-next::after,
    .p-index-set .set__list-photo .swiper-button-prev::after {
      color: var(--color-white);
      font-size: 1.8rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-photo .swiper-button-next::after,
        .p-index-set .set__list-photo .swiper-button-prev::after {
          font-size: 1.2rem; } }
    .p-index-set .set__list-photo .swiper-pagination-bullet {
      width: 5px;
      height: 5px; }
    .p-index-set .set__list-photo .swiper-pagination-bullet-active {
      background: var(--color-black); }
    .p-index-set .set__list-photo .swiper-pagination-bullets.swiper-pagination-horizontal {
      top: 0;
      left: auto;
      right: -2rem;
      bottom: auto;
      width: auto; }
    .p-index-set .set__list-photo .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
      display: block;
      margin: 7px 0; }
    .p-index-set .set__list-photo .swiper-swipe {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      background: rgba(52, 52, 52, 0.6);
      z-index: 1; }
    .p-index-set .set__list-photo .swiper-swipe ._txt {
      color: var(--color-white);
      font-size: var(--font-size-11);
      line-height: 1.5;
      padding: 1.25rem 1rem;
      opacity: .7;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-photo .swiper-swipe ._txt {
          padding: 1rem; } }
  .p-index-set .set__list-photo-num {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    left: -5rem; }
    .p-index-set .set__list-photo-num ._txt {
      color: var(--color-gray);
      font-size: var(--font-size-14); }
    .p-index-set .set__list-photo-num ._txt span {
      font-size: var(--font-size-28);
      margin-bottom: .5rem; }
  .p-index-set .set__list-conte {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte {
        margin-top: 4rem; } }
  .p-index-set .set__list-conte-note {
    background: var(--color-bg);
    padding: 2.25rem 3rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte-note {
        padding: 2rem 2.25rem; } }
    .p-index-set .set__list-conte-note ._txt {
      font-size: var(--font-size-14);
      line-height: var(--line-height-s); }
  .p-index-set .set__list-conte-menu {
    margin-top: 4.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte-menu {
        margin-top: 3rem; } }
    .p-index-set .set__list-conte-menu ._label {
      font-size: var(--font-size-18); }
    .p-index-set .set__list-conte-menu ._cap {
      font-size: var(--font-size-24);
      line-height: var(--line-height-s);
      margin-top: 1.5rem; }
    .p-index-set .set__list-conte-menu ._price {
      font-size: var(--font-size-16);
      font-weight: var(--font-wight-medium);
      margin-top: 1rem;
      text-align: right; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-conte-menu ._price {
          margin-top: 2rem; } }
    .p-index-set .set__list-conte-menu ._price span {
      color: red;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-34);
      font-weight: var(--font-wight-bold); }
  .p-index-set .set__list-conte-link {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: .5rem;
    margin-top: 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte-link {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: .6rem;
        margin-top: 2rem; } }
    @media screen and (max-width: 579px) {
      .p-index-set .set__list-conte-link {
        grid-template-columns: repeat(1, 1fr); } }
    .p-index-set .set__list-conte-link ._btn {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 1rem;
      height: 5.6rem;
      background: var(--color-main2);
      border-radius: 2.8rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-conte-link ._btn {
          justify-content: flex-start;
          column-gap: 3rem;
          padding-left: 5rem; } }
      @media screen and (max-width: 579px) {
        .p-index-set .set__list-conte-link ._btn {
          max-width: 31.5rem; } }
    .p-index-set .set__list-conte-link ._btn:nth-child(2) {
      background: var(--color-main1); }
    .p-index-set .set__list-conte-link ._btn:nth-child(3) {
      background: var(--color-main3); }
    .p-index-set .set__list-conte-link svg {
      width: 2.4rem;
      height: 2.4rem;
      fill: var(--color-white); }
    .p-index-set .set__list-conte-link ._txt {
      color: var(--color-white);
      font-size: var(--font-size-14);
      margin-right: 1rem; }

/* ==========================================================================
   #about
========================================================================== */
.p-index-about {
  background: var(--color-bg);
  margin-top: 18rem;
  padding: 14rem 0; }
  @media screen and (max-width: 799px) {
    .p-index-about {
      margin-top: 8rem;
      padding: 6rem 0; } }
  .p-index-about .about__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-about .about__wrap {
        width: 84%; } }
  .p-index-about .about__list {
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__list {
        margin-top: 6rem; } }
  .p-index-about .about__list-item {
    display: flex;
    column-gap: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__list-item {
        display: block; } }
  .p-index-about .about__list-item:nth-child(2n) {
    flex-direction: row-reverse; }
  .p-index-about .about__list-item + .about__list-item {
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__list-item + .about__list-item {
        margin-top: 6rem; } }
  .p-index-about .about__list-photo {
    width: 47.5%; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__list-photo {
        width: 100%; } }
    .p-index-about .about__list-photo img {
      width: 100%; }
  .p-index-about .about__list-conte {
    position: relative;
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__list-conte {
        margin-top: 4rem; } }
    .p-index-about .about__list-conte ._label {
      position: absolute;
      top: 0;
      left: -6rem;
      color: var(--color-main3);
      font-family: var(--font-family-sans);
      font-size: 9.6rem;
      font-weight: var(--font-wight-bold);
      opacity: .2; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__list-conte ._label {
          top: -6rem;
          left: -5%;
          font-size: 7rem;
          line-height: .8; } }
    .p-index-about .about__list-conte ._cap {
      font-size: var(--font-size-22);
      line-height: var(--line-height-s);
      margin-top: 7rem; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__list-conte ._cap {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          margin-top: 0; } }
    .p-index-about .about__list-conte ._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-14);
      line-height: var(--line-height-m);
      margin-top: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__list-conte ._txt {
          margin-top: 1.5rem; } }

/* ==========================================================================
   #menu
========================================================================== */
.p-index-menu {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-menu {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-menu {
      margin-top: 8rem; } }
  .p-index-menu .menu__wrap {
    column-count: 2;
    column-gap: 10rem;
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__wrap {
        column-count: 1;
        margin-top: 6rem; } }
  .p-index-menu .menu__block {
    break-inside: avoid;
    margin-bottom: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__block {
        margin-bottom: 6rem; } }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__block:last-child {
        margin-bottom: 0; } }
  .p-index-menu .menu__block-cap {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-22);
    font-weight: var(--font-wight-bold); }
  .p-index-menu .menu__block-list {
    margin-top: 2rem; }
  .p-index-menu .menu__block-list-item {
    border-top: solid #a8a8a8 1px;
    padding: 2rem 0; }
    .p-index-menu .menu__block-list-item:last-child {
      border-bottom: solid #a8a8a8 1px; }
    .p-index-menu .menu__block-list-item dl {
      display: flex;
      align-items: flex-end;
      column-gap: 1rem; }
    .p-index-menu .menu__block-list-item dt {
      position: relative;
      flex: 1;
      font-size: var(--font-size-14);
      line-height: var(--line-height-s); }
    .p-index-menu .menu__block-list-item dt span {
      background: var(--color-white);
      padding-right: 1rem; }
    .p-index-menu .menu__block-list-item dt::before {
      position: absolute;
      content: '';
      left: 0;
      bottom: 12px;
      width: 100%;
      height: 1px;
      border-bottom: dotted var(--color-gray) 1px;
      z-index: -1; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__block-list-item dt::before {
          bottom: 10px; } }
    .p-index-menu .menu__block-list-item dd {
      font-size: var(--font-size-14);
      line-height: var(--line-height-s); }
    .p-index-menu .menu__block-list-item ._txt {
      color: var(--color-gray);
      font-size: var(--font-size-12);
      line-height: 1.6;
      margin-top: .5rem; }

/* ==========================================================================
   #staff
========================================================================== */
.p-index-staff {
  background: var(--color-bg);
  margin-top: 18rem;
  padding: 14rem 0; }
  @media screen and (max-width: 799px) {
    .p-index-staff {
      margin-top: 8rem;
      padding: 6rem 0; } }
  .p-index-staff .staff__wrap {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-s); }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__wrap {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__wrap {
        width: 70%; } }
  .p-index-staff .staff__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 11rem;
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 5rem; } }
  .p-index-staff .staff__list._mt {
    margin-top: 5rem; }
  .p-index-staff .staff__list-item {
    position: relative; }
  .p-index-staff .staff__list-item:nth-child(3n-2) {
    margin-top: 24rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-item:nth-child(3n-2) {
        margin-top: 0; } }
  .p-index-staff .staff__list-item:nth-child(3n-1) {
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-item:nth-child(3n-1) {
        margin-top: 0; } }
  .p-index-staff .staff__list-item-label {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    left: -3rem; }
    .p-index-staff .staff__list-item-label ._kana {
      color: var(--color-gray);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-14); }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__list-item-photo {
      width: 50%;
      margin-left: auto; } }
  @media screen and (max-width: 579px) {
    .p-index-staff .staff__list-item-photo {
      width: 100%; } }
  .p-index-staff .staff__list-item-photo img {
    width: 100%; }
  .p-index-staff .staff__list-item-conte {
    margin-top: 3.5rem; }
    .p-index-staff .staff__list-item-conte ._name {
      font-size: var(--font-size-20); }
    .p-index-staff .staff__list-item-conte ._lank {
      font-size: var(--font-size-13);
      line-height: var(--line-height-s);
      margin-top: 1rem; }
    .p-index-staff .staff__list-item-conte ._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-13);
      line-height: var(--line-height-s);
      margin-top: 1.5rem; }
  .p-index-staff .staff__list-item-link {
    margin-top: 3rem; }
    .p-index-staff .staff__list-item-link ._btn {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 1.5rem;
      height: 5.6rem;
      background: var(--color-main1);
      border-radius: 2.8rem;
      max-width: 31.5rem; }
    .p-index-staff .staff__list-item-link svg {
      width: 2.4rem;
      height: 2.4rem;
      fill: var(--color-white); }
    .p-index-staff .staff__list-item-link ._txt {
      color: var(--color-white);
      font-size: var(--font-size-14);
      margin-right: 1rem; }

/* ==========================================================================
   #salon
========================================================================== */
.p-index-salon {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon {
      margin-top: 8rem; } }
  .p-index-salon .salon__conte {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    column-gap: 12rem;
    margin-top: 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__conte {
        display: block;
        margin-top: 6rem; } }
  .p-index-salon .salon__conte-photo {
    width: 50%; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__conte-photo {
        width: 100%; } }
    .p-index-salon .salon__conte-photo .swiper-wrapper {
      -webkit-transition-timing-function: linear !important;
      transition-timing-function: linear !important; }
    .p-index-salon .salon__conte-photo img {
      width: 100%; }
  .p-index-salon .salon__conte-info {
    flex: 1;
    padding-left: 8%; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__conte-info {
        margin-top: 5rem;
        padding-right: 8%; } }
    .p-index-salon .salon__conte-info dl {
      display: flex;
      column-gap: .5rem;
      margin-top: 2.5rem; }
    .p-index-salon .salon__conte-info dt {
      width: 15rem;
      font-size: var(--font-size-14);
      line-height: var(--line-height-s);
      border-bottom: solid var(--color-black) 1px;
      padding-bottom: 1.75rem; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__conte-info dt {
          width: 7.5em; } }
    .p-index-salon .salon__conte-info dd {
      flex: 1;
      border-bottom: solid var(--color-gray) 1px;
      font-size: var(--font-size-14);
      line-height: var(--line-height-s);
      padding-bottom: 1.5rem;
      text-align: right; }
  .p-index-salon .salon__conte-map {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    margin-top: 14rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__conte-map {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__conte-map {
        margin-top: 6rem; } }
    .p-index-salon .salon__conte-map iframe {
      width: 100%;
      height: 47.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__conte-map iframe {
          height: 40rem; } }
