@charset "UTF-8";
/* ==========================================================================
 *
 * root scss
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray: #CCCCCC;
  --color-bg: #F0E8DE;
  --color-main1: #696969;
  --color-main2: #50A572;
  --color-main3: #DD5E5E;
  --color-main4: #AA752D; }

/* ==========================================================================
   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-serif: YakuHanMPs, "Noto Serif JP", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "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: .025em;
  --letter-spacing-m: .05em;
  --letter-spacing-l: .075em; }

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

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

.l-toggle.js-active span:nth-child(1) {
  top: 8px;
  opacity: 0; }
.l-toggle.js-active span:nth-child(3) {
  bottom: 8px;
  opacity: 0; }

/* ==========================================================================
   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: .8s; }

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

.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 ._cap {
  font-family: var(--font-family-serif);
  font-size: 4.8rem;
  font-weight: 100;
  text-align: center; }
  @media screen and (max-width: 799px) {
    .c-head ._cap {
      font-size: 3.4rem; } }
.c-head ._label {
  position: relative;
  font-family: var(--font-family-serif);
  font-size: var(--font-size-18);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center; }
  @media screen and (max-width: 799px) {
    .c-head ._label {
      font-size: 1.4rem;
      margin-top: 1.8rem;
      padding-top: 1.8rem; } }
  .c-head ._label::before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 1px;
    background: var(--color-black); }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: var(--z-index-header);
  padding: 4rem 3% 0; }
  @media screen and (max-width: 799px) {
    .l-header {
      width: auto;
      padding: 3rem 0 0 5%; } }
  .l-header .header__logo img {
    width: 13rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__logo img {
        width: 10rem; } }
  .l-header .header__nav {
    display: flex;
    column-gap: 4rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__nav {
        display: none; } }
    .l-header .header__nav li {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-15); }
    .l-header .header__nav a {
      transition: opacity .3s; }
    .l-header .header__nav a:hover {
      opacity: .5; }

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #76523A;
  border-radius: 100%;
  z-index: var(--z-index-toggle); }
  @media screen and (min-width: 800px) {
    .l-toggle {
      display: none; } }
  .l-toggle .toggle__wrap {
    position: relative;
    width: 4px;
    height: 20px; }
  .l-toggle span {
    background: var(--color-white);
    border-radius: 100%;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px; }
  .l-toggle span:nth-child(1) {
    top: 0; }
  .l-toggle span:nth-child(2) {
    top: 8px; }
  .l-toggle span:nth-child(3) {
    bottom: 0; }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4rem;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }
  .l-sitemap .sitemap__photo {
    width: 47.5%;
    height: 100%; }
    .l-sitemap .sitemap__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 67.5% 50%; }
  .l-sitemap .sitemap__wrap {
    flex: 1; }
  .l-sitemap .sitemap__wrap-list li {
    font-family: var(--font-family-serif);
    font-size: 1.5rem;
    font-weight: 100; }
  .l-sitemap .sitemap__wrap-list li + li {
    margin-top: 3rem; }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  width: 45rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: .6rem;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 799px) {
    .l-contact {
      right: .5rem;
      bottom: .5rem;
      width: calc(100% - 1rem); } }
  .l-contact .contact__item {
    border-radius: .8rem;
    padding: 2rem 0;
    text-align: center;
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__item {
        border-radius: .6rem;
        padding: 1.2rem 0; } }
    .l-contact .contact__item._tel {
      background: var(--color-main1); }
    .l-contact .contact__item._tel:hover {
      background: #434242; }
    .l-contact .contact__item._line {
      background: var(--color-main2); }
    .l-contact .contact__item._line:hover {
      background: #2a9a57; }
    .l-contact .contact__item._web {
      background: var(--color-main3); }
    .l-contact .contact__item._web:hover {
      background: #db4141; }
    .l-contact .contact__item svg {
      width: 3rem;
      height: 3rem;
      fill: var(--color-white); }
      @media screen and (max-width: 799px) {
        .l-contact .contact__item svg {
          width: 2.6rem;
          height: 2.6rem; } }
    .l-contact .contact__item ._label {
      display: block;
      color: var(--color-white);
      font-size: var(--font-size-15);
      font-weight: var(--font-wight-semibold);
      margin-top: .8rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__item ._label {
          font-size: 1.2rem;
          margin-top: .6rem; } }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 7rem; } }
  .l-footer .footer__slide .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important; }
  .l-footer .footer__slide .swiper-slide {
    width: 35%; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__slide .swiper-slide {
        width: 80%; } }
  .l-footer .footer__slide .swiper-slide img {
    width: 100%; }
  .l-footer .footer__conte {
    background: #76523A;
    padding: 9rem 0 6rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__conte {
        padding: 5rem 0 3rem; } }
  .l-footer .footer__conte-inner {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__conte-inner {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__conte-inner {
        display: block; } }
  .l-footer .footer__conte-logo {
    flex: 1; }
    .l-footer .footer__conte-logo img {
      width: 16.5rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__conte-logo img {
          width: 13.5rem; } }
  @media screen and (max-width: 799px) {
    .l-footer .footer__conte-nav {
      margin-top: 4rem; } }
  .l-footer .footer__conte-nav-list {
    display: flex;
    column-gap: 4rem;
    border-bottom: solid rgba(255, 255, 255, 0.4) 1px;
    padding-bottom: 6rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__conte-nav-list {
        display: block;
        padding-bottom: 4rem; } }
    .l-footer .footer__conte-nav-list li {
      color: var(--color-white);
      font-family: var(--font-family-serif);
      font-size: var(--font-size-15);
      font-weight: 100; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__conte-nav-list li + li {
        margin-top: 1.8rem; } }
    .l-footer .footer__conte-nav-list a {
      transition: opacity .3s; }
    .l-footer .footer__conte-nav-list a:hover {
      opacity: .5; }
  .l-footer .footer__conte-nav-copy {
    color: var(--color-white);
    font-family: var(--font-family-serif);
    font-size: var(--font-size-13);
    margin-top: 6rem;
    text-align: right; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__conte-nav-copy {
        margin-top: 3rem; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh; }
  @media screen and (max-width: 799px) {
    .p-index-hero {
      height: auto; } }
  .p-index-hero .hero__photo {
    height: 100%; }
    .p-index-hero .hero__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 15%; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__photo img {
          height: 67.5vh;
          object-position: 75% 50%; } }
  .p-index-hero .hero__head {
    position: absolute;
    left: 5%;
    bottom: 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__head {
        position: relative;
        left: auto;
        bottom: auto;
        width: 95%;
        background: rgba(255, 255, 255, 0.6);
        margin-top: -6rem;
        padding: 2.5rem 0 0 6%; } }
    .p-index-hero .hero__head ._cap {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-34);
      line-height: var(--line-height-s); }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__head ._cap {
          font-size: 2rem; } }
    .p-index-hero .hero__head ._label {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-14);
      line-height: var(--line-height-s);
      margin-top: 2rem; }

/* ==========================================================================
   #concept
========================================================================== */
.p-index-concept {
  position: relative;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-concept {
      margin-top: 7rem; } }
  .p-index-concept .concept__bg {
    position: relative;
    padding-top: 37.5%; }
    @media screen and (max-width: 799px) {
      .p-index-concept .concept__bg {
        padding-top: 90%; } }
    @media screen and (max-width: 579px) {
      .p-index-concept .concept__bg {
        padding-top: 110%; } }
    .p-index-concept .concept__bg::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--color-black);
      opacity: .5;
      z-index: 1; }
    .p-index-concept .concept__bg img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .p-index-concept .concept__conte {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 2; }
    .p-index-concept .concept__conte h2, .p-index-concept .concept__conte p {
      color: var(--color-white);
      padding-left: 8%;
      padding-right: 8%; }
    .p-index-concept .concept__conte ._label::before {
      background: var(--color-white); }
    .p-index-concept .concept__conte ._txt {
      font-size: var(--font-size-18);
      line-height: var(--line-height-m);
      margin-top: 6rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-concept .concept__conte ._txt {
          font-size: 1.4rem;
          margin-top: 4rem; } }

/* ==========================================================================
   #set
========================================================================== */
.p-index-set .set__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  background: var(--color-bg);
  border-radius: 3rem;
  margin-top: 18rem;
  padding: 14rem 5%; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-set .set__wrap {
      width: 96%;
      border-radius: 2rem;
      margin-top: 7rem;
      padding: 6rem 8%; } }
.p-index-set .set__conte {
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte {
      margin-top: 5rem; } }
.p-index-set .set__conte-item {
  display: flex;
  column-gap: 10rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item {
      display: block; } }
.p-index-set .set__conte-item + .set__conte-item {
  border-top: solid #aaa 1px;
  margin-top: 8rem;
  padding-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item + .set__conte-item {
      margin-top: 4rem;
      padding-top: 4rem; } }
.p-index-set .set__conte-item-photo {
  flex: 1; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item-photo {
      margin-top: 3rem; } }
  .p-index-set .set__conte-item-photo img {
    width: 100%;
    border-radius: 3rem; }
.p-index-set .set__conte-item-info {
  width: 50%;
  margin-top: 5rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item-info {
      width: 100%;
      margin-top: 3rem; } }
.p-index-set .set__conte-item-head {
  display: flex;
  align-items: center;
  column-gap: 4rem;
  border-bottom: solid var(--color-gray) 1px;
  padding-bottom: 1.5rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item-head {
      column-gap: 2.5rem; } }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item-head._pc {
      display: none; } }
  @media screen and (min-width: 800px) {
    .p-index-set .set__conte-item-head._sp {
      display: none; } }
  .p-index-set .set__conte-item-head ._num {
    font-family: var(--font-family-serif);
    font-weight: 100;
    font-size: 1.6rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__conte-item-head ._num {
        font-size: 1.2rem; } }
  .p-index-set .set__conte-item-head ._num span {
    display: block;
    font-size: 5.4rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__conte-item-head ._num span {
        font-size: 3.6rem; } }
  .p-index-set .set__conte-item-head ._cap {
    flex: 1;
    font-family: var(--font-family-serif);
    font-size: var(--font-size-26);
    font-weight: 100;
    line-height: 1.5; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__conte-item-head ._cap {
        font-size: 1.8rem;
        font-weight: 400;
        margin-top: .5rem; } }
.p-index-set .set__conte-item-menu ._menu {
  font-size: var(--font-size-30);
  line-height: 1.6;
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item-menu ._menu {
      font-size: 2.2rem;
      margin-top: 0; } }
.p-index-set .set__conte-item-menu ._submenu {
  display: flex;
  flex-wrap: wrap;
  column-gap: .5rem;
  margin-top: 1.5rem; }
  .p-index-set .set__conte-item-menu ._submenu li {
    background: var(--color-main4);
    border-radius: 1.5rem;
    color: var(--color-white);
    font-size: var(--font-size-13);
    padding: .3rem 1rem; }
.p-index-set .set__conte-item-menu ._txt {
  color: #77736F;
  font-size: var(--font-size-13);
  line-height: var(--line-height-s);
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item-menu ._txt {
      margin-top: 1.5rem; } }
.p-index-set .set__conte-item-menu ._price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item-menu ._price {
      display: block;
      margin-top: 2.5rem; } }
  .p-index-set .set__conte-item-menu ._price li:nth-child(1) {
    position: relative;
    font-size: var(--font-size-15);
    margin-right: 1.5rem;
    padding-right: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__conte-item-menu ._price li:nth-child(1) {
        width: fit-content; } }
  .p-index-set .set__conte-item-menu ._price li:nth-child(1)::before {
    position: absolute;
    content: '▶︎';
    top: 0;
    right: 0; }
  .p-index-set .set__conte-item-menu ._price li:nth-child(2) {
    font-size: var(--font-size-18); }
    @media screen and (max-width: 799px) {
      .p-index-set .set__conte-item-menu ._price li:nth-child(2) {
        margin-top: 2rem;
        text-align: right; } }
  .p-index-set .set__conte-item-menu ._price li:nth-child(2) span {
    color: #F57474;
    font-size: 4.2rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__conte-item-menu ._price li:nth-child(2) span {
        font-size: 3.4rem; } }
.p-index-set .set__conte-item-menu ._note {
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: var(--color-white);
  border-radius: 1rem;
  font-size: var(--font-size-14);
  line-height: var(--line-height-s);
  margin-top: 2.5rem;
  padding: 2rem 2.5rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item-menu ._note {
      border-radius: .8rem;
      margin-top: 2.5rem;
      padding: 1.5rem 2rem; } }
.p-index-set .set__conte-item-link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: .6rem;
  margin-top: 5rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__conte-item-link {
      grid-template-columns: repeat(3, 1fr);
      grid-row-gap: .6rem;
      margin-top: 3.5rem; } }
  @media screen and (max-width: 579px) {
    .p-index-set .set__conte-item-link {
      grid-template-columns: repeat(1, 1fr); } }
  .p-index-set .set__conte-item-link ._btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: .8rem;
    padding: 1.4rem 2.5rem;
    transition: background .3s; }
  .p-index-set .set__conte-item-link ._btn._tel {
    background: var(--color-main1); }
  .p-index-set .set__conte-item-link ._btn._tel:hover {
    background: #434242; }
  .p-index-set .set__conte-item-link ._btn._line {
    background: var(--color-main2); }
  .p-index-set .set__conte-item-link ._btn._line:hover {
    background: #2a9a57; }
  .p-index-set .set__conte-item-link ._btn._web {
    background: var(--color-main3); }
  .p-index-set .set__conte-item-link ._btn._web:hover {
    background: #db4141; }
  .p-index-set .set__conte-item-link ._label {
    color: var(--color-white);
    font-size: var(--font-size-14);
    font-weight: var(--font-wight-semibold); }
  .p-index-set .set__conte-item-link svg {
    width: 2.6rem;
    height: 2.6rem;
    fill: var(--color-white); }

/* ==========================================================================
   #about
========================================================================== */
.p-index-about .about__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__head {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-about .about__head {
      margin-top: 7rem; } }
.p-index-about .about__list {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 12rem;
  grid-row-gap: 4rem;
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__list {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-about .about__list {
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 6rem;
      margin-top: 6rem; } }
.p-index-about .about__list-item:nth-child(2n) {
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__list-item:nth-child(2n) {
      margin-top: 0; } }
.p-index-about .about__list-photo {
  display: flex;
  align-items: flex-start; }
  .p-index-about .about__list-photo ._num {
    position: relative;
    width: 30%;
    font-family: var(--font-family-serif);
    font-weight: 100;
    font-size: 1.6rem;
    line-height: 1.2;
    margin-top: 3rem;
    padding-bottom: 2rem;
    z-index: 1; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__list-photo ._num {
        font-size: 1.2rem;
        line-height: 1.4; } }
  .p-index-about .about__list-photo ._num::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 120%;
    height: 1px;
    background: var(--color-black); }
  .p-index-about .about__list-photo ._num span {
    display: block;
    font-size: 5.4rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__list-photo ._num span {
        font-size: 4rem; } }
  .p-index-about .about__list-photo img {
    flex: 1;
    border-radius: 1rem; }
.p-index-about .about__list-note {
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__list-note {
      margin-top: 3rem; } }

/* ==========================================================================
   #staff
========================================================================== */
.p-index-staff .staff__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 18rem; }
  @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: 7rem; } }
.p-index-staff .staff__conte {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 8rem;
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__conte {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__conte {
      display: block;
      margin-top: 5rem; } }
.p-index-staff .staff__conte-item {
  width: calc((100% - 20rem) / 3); }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__conte-item {
      width: 100%;
      text-align: center; } }
  .p-index-staff .staff__conte-item img {
    width: 100%; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte-item img {
        width: 77.5%; } }
  .p-index-staff .staff__conte-item ._name {
    font-size: var(--font-size-20);
    margin-top: 4rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte-item ._name {
        margin-top: 2.5rem; } }
  .p-index-staff .staff__conte-item ._name span {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-14);
    margin-left: 1rem; }
  .p-index-staff .staff__conte-item ._lank {
    font-size: var(--font-size-13);
    margin-top: 1.5rem;
    text-align: center; }
  .p-index-staff .staff__conte-item ._btn {
    width: 100%;
    max-width: 30rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-main3);
    border-radius: .8rem;
    margin: 4rem auto 0;
    padding: 1.4rem 2.5rem;
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte-item ._btn {
        max-width: 25rem;
        margin-left: auto;
        margin-right: auto;
        margin: 3.5rem auto 0;
        padding: 1.2rem 2.5rem; } }
  .p-index-staff .staff__conte-item ._btn:hover {
    background: #db4141; }
  .p-index-staff .staff__conte-item ._label {
    color: var(--color-white);
    font-size: var(--font-size-14);
    font-weight: var(--font-wight-semibold); }
  .p-index-staff .staff__conte-item svg {
    width: 2.6rem;
    height: 2.6rem;
    fill: var(--color-white); }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__conte-item svg {
        width: 2.4rem;
        height: 2.4rem; } }

/* ==========================================================================
   #salon
========================================================================== */
.p-index-salon .salon__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 18rem; }
  @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: 7rem; } }
.p-index-salon .salon__conte {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  column-gap: 8rem;
  margin-top: 10rem;
  padding-top: 12rem;
  padding-bottom: 12rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__conte {
      display: block;
      padding-top: 0;
      padding-bottom: 6rem; } }
  .p-index-salon .salon__conte::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 92%;
    height: 100%;
    background: var(--color-bg);
    z-index: -1; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__conte::before {
        top: auto;
        bottom: 0;
        width: 98%;
        height: calc(100% - 12rem); } }
.p-index-salon .salon__conte-slide {
  flex: 1; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__conte-slide {
      padding-left: 8%; } }
  .p-index-salon .salon__conte-slide .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important; }
  .p-index-salon .salon__conte-slide .swiper-slide {
    width: 55%; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__conte-slide .swiper-slide {
        width: 65%; } }
  .p-index-salon .salon__conte-slide .swiper-slide img {
    width: 100%;
    border-radius: 1rem; }
.p-index-salon .salon__conte-info {
  width: 50%;
  padding-left: 8%; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__conte-info {
      width: 100%;
      margin-top: 5rem;
      padding-right: 10%; } }
.p-index-salon .salon__conte-cap {
  font-size: var(--font-size-24); }
  .p-index-salon .salon__conte-cap span {
    font-size: var(--font-size-18); }
.p-index-salon .salon__conte-list {
  border-top: solid var(--color-gray) 1px;
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__conte-list {
      margin-top: 3.5rem; } }
  .p-index-salon .salon__conte-list dl {
    display: flex;
    border-bottom: solid var(--color-gray) 1px;
    padding: 2rem 0; }
  .p-index-salon .salon__conte-list dt {
    width: 15rem;
    font-size: var(--font-size-15);
    line-height: var(--line-height-s); }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__conte-list dt {
        width: 8.5rem; } }
  .p-index-salon .salon__conte-list dd {
    flex: 1;
    font-size: var(--font-size-15);
    line-height: var(--line-height-s); }
.p-index-salon .salon__map {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__map {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__map {
      margin-top: 7rem; } }
  .p-index-salon .salon__map iframe {
    width: 100%;
    height: 55rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__map iframe {
        height: 45rem; } }
