/* ==========================================================================
 *
 * root scss
 * media query / color / font-size/ font-family / line-height
 * width / z-index
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray1: #D0CCC3;
  --color-gray2: #CCCCCC;
  --color-gray3: #A8A8A8;
  --color-main1: #E1BBB5;
  --color-main2: #D6A096;
  --color-main3: #B99388;
  --color-main4: #B7915B; }

/* ==========================================================================
   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.1rem;
    --font-size-14: 1.2rem;
    --font-size-15: 1.3rem;
    --font-size-16: 1.4rem;
    --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, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  --font-family-serif: "Cormorant", serif;
  --font-family-serif-jp: YakuHanJPs, "Zen Old Mincho", serif; }

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

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

/* ==========================================================================
   width
========================================================================== */
:root {
  --container-s: 96rem;
  --container-m: 124rem;
  --container-l: 144rem;
  --container-na: 132rem;
  --container-ns: 96rem; }

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

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

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

/* ==========================================================================
   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 / footer-hide / link-target
 *
========================================================================== */
/* ==========================================================================
   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(20px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 1.2s;
  transition-delay: .3s;
  transition-timing-function: ease; }

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

.c-fade.l2 {
  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 / btn2 / btn3 / btn4
 *
========================================================================== */
/* ==========================================================================
   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 / #other
 *
========================================================================== */
/* ==========================================================================
   #general
========================================================================== */
html {
  font-size: 62.5%; }
  @media screen and (min-width: 1920px) {
    html {
      font-size: 0.5211047421vw; } }
  @media screen and (min-width: 800px) and (max-width: 1199px) {
    html {
      font-size: 0.834028357vw; } }
  @media screen and (max-width: 374px) {
    html {
      font-size: 2.6737967914vw; } }

body {
  background: #FFF8F8;
  font-family: var(--font-family-main);
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing-m);
  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: .075em; }

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

/* ==========================================================================
   #c-spBlock, c-spNone
========================================================================== */
.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-head {
  position: relative;
  padding-bottom: 1.5rem; }
  .c-head::before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 4rem;
    height: 1px;
    transform: translateX(-50%);
    background: var(--color-black); }
  .c-head ._cap {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-32);
    font-weight: 700;
    text-align: center; }

.c-head._left::before {
  left: .5rem;
  transform: translateX(0); }
.c-head._left ._cap {
  text-align: left; }

/* ==========================================================================
 *
 * header scss
 * #header / #toggle / #sitemap / #contact
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: absolute;
  top: 10rem;
  left: 7%;
  z-index: var(--z-index-header); }
  @media screen and (max-width: 799px) {
    .l-header {
      top: 4rem; } }
  .l-header .header__logo img {
    width: 17.5rem;
    height: 5rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__logo img {
        width: 10rem;
        height: 2.8rem; } }
  .l-header .header__logo ._label {
    font-size: var(--font-size-12);
    margin-top: 1rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .l-header .header__logo ._label {
        margin-top: .7rem; } }
  .l-header .header__nav {
    margin-top: 9rem;
    margin-left: .8rem; }
    @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-16);
      font-weight: 700;
      letter-spacing: var(--letter-spacing-s); }
    .l-header .header__nav a {
      transition: color .3s; }
    .l-header .header__nav a:hover {
      color: var(--color-gray3); }
    .l-header .header__nav li + li {
      margin-top: 1.5rem; }

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-index-toggle); }
  .l-toggle::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid var(--color-black) 1px;
    transform: rotate(45deg); }
  @media screen and (min-width: 800px) {
    .l-toggle {
      display: none; } }
  .l-toggle .toggle__wrap {
    position: relative;
    width: 1.4rem;
    height: 13px; }
  .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) {
    top: 6px; }
  .l-toggle span:nth-child(3) {
    bottom: 0; }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #C8ACA9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }
  .l-sitemap .sitemap__list li {
    color: var(--color-white);
    font-family: var(--font-family-serif);
    font-size: var(--font-size-20);
    letter-spacing: var(--letter-spacing-s);
    text-align: center; }
  .l-sitemap .sitemap__list li + li {
    margin-top: 3rem; }
  .l-sitemap .sitemap__logo {
    position: absolute;
    top: 4rem;
    left: 7%; }
    .l-sitemap .sitemap__logo img {
      width: 10rem;
      height: 2.8rem; }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  top: 5rem;
  right: 5rem;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 799px) {
    .l-contact {
      top: auto;
      right: 0;
      bottom: 0;
      background: transparent;
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      background-color: rgba(255, 255, 255, 0.15); } }
  .l-contact .contact__list {
    width: calc(100vw - 10rem);
    max-width: 54rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr); }
    @media screen and (max-width: 799px) {
      .l-contact .contact__list {
        width: 100vw;
        max-width: 100%; } }
    .l-contact .contact__list ._item {
      position: relative;
      display: block;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__list ._item {
          padding: 1.2rem 0; } }
    .l-contact .contact__list ._item::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 1px;
      height: 100%;
      background: var(--color-black); }
      @media screen and (max-width: 799px) {
        .l-contact .contact__list ._item::before {
          top: 25%;
          height: 50%; } }
    @media screen and (max-width: 799px) {
      .l-contact .contact__list ._item:first-child::before {
        display: none; } }
    .l-contact .contact__list ._item:last-child::after {
      position: absolute;
      content: '';
      top: 0;
      right: 0;
      width: 1px;
      height: 100%;
      background: var(--color-black); }
      @media screen and (max-width: 799px) {
        .l-contact .contact__list ._item:last-child::after {
          display: none; } }
    .l-contact .contact__list ._item:hover ._icon {
      fill: #8d5140; }
    .l-contact .contact__list ._item:hover ._label {
      color: #8d5140; }
    .l-contact .contact__list ._icon {
      width: 2.2rem;
      height: 2.2rem;
      transition: fill .3s; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__list ._icon {
          width: 2rem;
          height: 2rem; } }
    .l-contact .contact__list ._label {
      display: block;
      font-family: var(--font-family-serif);
      font-size: var(--font-size-13);
      font-weight: 700;
      letter-spacing: var(--letter-spacing-s);
      margin-top: .5rem;
      text-align: center;
      transition: color .3s; }

/*
@supports not ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
	
	
	.l-contact {
		
		@include mq('max', 'md') {
			background-color: rgba(255, 255, 255, 0.6);
		}
	}
}
*/
/* ==========================================================================
 *
 * footer scss
 * #footer
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  background: #B9AC88;
  margin-top: 18rem;
  padding: 10rem 0 6rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 7rem;
      padding: 8rem 0 4rem; } }
  .l-footer .footer__col {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col {
        display: block; } }
  .l-footer .footer__col-logo {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-logo {
        text-align: center; } }
    .l-footer .footer__col-logo img {
      width: 13rem;
      height: 3.7rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-logo img {
          width: 10rem;
          height: 2.8rem; } }
  .l-footer .footer__col-nav {
    width: 50%; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-nav {
        width: 100%;
        margin-top: 5rem; } }
    .l-footer .footer__col-nav li {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-16);
      font-weight: 700;
      letter-spacing: var(--letter-spacing-s); }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-nav li {
          text-align: center; } }
    .l-footer .footer__col-nav li + li {
      margin-top: 1.5rem; }
    .l-footer .footer__col-nav a {
      color: var(--color-white);
      transition: opacity .3s; }
    .l-footer .footer__col-nav a:hover {
      opacity: .6; }
  .l-footer .footer__copy {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy {
        margin-top: 8rem; } }
    .l-footer .footer__copy p {
      width: 50%;
      color: var(--color-white);
      font-family: var(--font-family-serif);
      font-size: var(--font-size-12);
      font-weight: 300;
      letter-spacing: var(--letter-spacing-s);
      margin-left: auto; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__copy p {
          width: 100%;
          text-align: center; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh; }
  .p-index-hero .hero__photo {
    width: 100%;
    height: 100%; }
    .p-index-hero .hero__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 0; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__photo img {
          object-position: 40% 0; } }
  .p-index-hero .hero__note {
    position: absolute;
    left: 7%;
    bottom: 8rem;
    width: 40%; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__note {
        left: 0;
        bottom: 10rem;
        width: 87.5%;
        padding: 0 8%; } }
    .p-index-hero .hero__note p {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m); }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__note p {
          line-height: 2.1; } }
    .p-index-hero .hero__note p + p {
      margin-top: 1rem; }
  .p-index-hero .hero__scroll {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    right: 8rem;
    bottom: -2rem; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__scroll {
        right: 5%;
        bottom: 9rem; } }
    .p-index-hero .hero__scroll ._label {
      position: absolute;
      right: 0;
      bottom: 10rem;
      font-family: var(--font-family-serif);
      font-size: var(--font-size-12);
      font-weight: 700; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__scroll ._label {
          bottom: 9rem; } }
    .p-index-hero .hero__scroll .c-scroll-wrap {
      position: absolute;
      right: .5rem;
      bottom: 0;
      width: 1px;
      height: 8rem;
      margin: 0 auto;
      overflow: hidden; }
    .p-index-hero .hero__scroll .c-scroll-line {
      width: 100%;
      height: 100%;
      display: block;
      background: linear-gradient(to bottom, black 50%, rgba(255, 255, 255, 0) 50%);
      background-position: 0 -8rem;
      background-size: 100% 200%;
      animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite; }

@keyframes scrolldown {
  0% {
    background-position: 0 -8rem; }
  75% {
    background-position: 0 0; }
  100% {
    background-position: 0 8rem; } }
/* ==========================================================================
   #concept
========================================================================== */
.p-index-concept .concept__wrap {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__wrap {
      margin-top: 7rem; } }
.p-index-concept .concept__loop .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important; }
.p-index-concept .concept__loop .swiper-slide {
  width: fit-content;
  font-family: var(--font-family-serif);
  font-size: 12rem;
  font-weight: 300;
  white-space: nowrap; }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__loop .swiper-slide {
      font-size: 7rem; } }
.p-index-concept .concept__col {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  display: flex;
  align-items: center;
  column-gap: 12rem;
  margin-top: -12rem; }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__col {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__col {
      display: block;
      margin-top: -7rem; } }
.p-index-concept .concept__col-photo {
  width: 47.5%; }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__col-photo {
      width: 100%; } }
  .p-index-concept .concept__col-photo svg {
    width: 100%; }
.p-index-concept .concept__col-note {
  flex: 1;
  padding-top: 12rem; }
  @media screen and (max-width: 799px) {
    .p-index-concept .concept__col-note {
      padding-top: 0;
      margin-top: 5rem; } }
  .p-index-concept .concept__col-note ._note {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-concept .concept__col-note ._note {
        margin-top: 4rem; } }
  .p-index-concept .concept__col-note ._txt {
    font-size: var(--font-size-15);
    line-height: var(--line-height-l); }
    @media screen and (max-width: 799px) {
      .p-index-concept .concept__col-note ._txt {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word; } }
  .p-index-concept .concept__col-note ._txt + ._txt {
    margin-top: 2rem; }

/* ==========================================================================
   #set
========================================================================== */
.p-index-set .set__wrap {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__wrap {
      margin-top: 7rem; } }
.p-index-set .set__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m); }
  @media screen and (max-width: 799px) {
    .p-index-set .set__head {
      width: 84%; } }
.p-index-set .set__list {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 5rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__list {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-set .set__list {
      margin-top: 1rem; } }
.p-index-set .set__list-item {
  display: flex;
  align-items: flex-start;
  column-gap: 8rem;
  border-bottom: solid var(--color-gray1) 1px;
  padding: 7rem 0; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__list-item {
      display: block;
      padding: 4rem 0; } }
.p-index-set .set__list-point {
  width: 45%;
  background: var(--color-white);
  border: solid var(--color-gray1) 1px;
  padding: 2.5rem; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__list-point {
      width: 100%;
      padding: 2.2rem; } }
  .p-index-set .set__list-point ._label {
    color: var(--color-main4);
    font-family: var(--font-family-serif);
    font-size: var(--font-size-15);
    font-weight: 700;
    letter-spacing: var(--letter-spacing-s); }
  .p-index-set .set__list-point span {
    font-family: "Times New Roman", Times, "serif";
    font-size: var(--font-size-16);
    font-weight: 400;
    margin-left: .6rem; }
  .p-index-set .set__list-point ._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); }
.p-index-set .set__list-conte {
  flex: 1; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__list-conte {
      margin-top: 2.5rem; } }
  .p-index-set .set__list-conte ._menu {
    font-family: var(--font-family-serif-jp);
    font-size: var(--font-size-24);
    line-height: var(--line-height-s); }
  .p-index-set .set__list-conte ._rp {
    font-size: var(--font-size-14);
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._rp {
        margin-top: 2rem; } }
  .p-index-set .set__list-conte ._sp {
    font-size: var(--font-size-16);
    margin-top: 1rem;
    text-align: right; }
  .p-index-set .set__list-conte ._sp span {
    color: #D37272;
    font-family: "Times New Roman", Times, "serif";
    font-size: var(--font-size-36);
    margin-top: 1rem; }
  .p-index-set .set__list-conte ._link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: .8rem;
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._link {
        display: block;
        margin-top: 2rem; } }
  .p-index-set .set__list-conte ._btn {
    width: calc(100% / 3);
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-main1);
    border-radius: .5rem;
    padding: 0 1.5rem 0 2.5rem;
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._btn {
        width: 100%;
        height: 4.4rem;
        max-width: 25rem; } }
  @media screen and (max-width: 799px) {
    .p-index-set .set__list-conte ._btn + ._btn {
      margin-top: .5rem; } }
  .p-index-set .set__list-conte ._btn:hover {
    background: #8d5140; }
  .p-index-set .set__list-conte ._btn:nth-child(2) {
    background: var(--color-main2); }
  .p-index-set .set__list-conte ._btn:nth-child(2):hover {
    background: #8d5140; }
  .p-index-set .set__list-conte ._btn:nth-child(3) {
    background: var(--color-main3); }
  .p-index-set .set__list-conte ._btn:nth-child(3):hover {
    background: #8d5140; }
  .p-index-set .set__list-conte ._label {
    color: var(--color-white);
    font-family: var(--font-family-serif);
    font-size: var(--font-size-14);
    font-weight: 700; }
  .p-index-set .set__list-conte ._icon {
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--color-white); }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-conte ._icon {
        width: 2rem;
        height: 2rem; } }

/* ==========================================================================
   #about
========================================================================== */
.p-index-about .about__wrap {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__wrap {
      margin-top: 7rem; } }
.p-index-about .about__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m); }
  @media screen and (max-width: 799px) {
    .p-index-about .about__head {
      width: 84%; } }
.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;
  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);
      margin-top: 4rem; } }
.p-index-about .about__list-item:nth-child(2n) {
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__list-item:nth-child(2n) {
      margin-top: 4rem; } }
.p-index-about .about__list-item ._num {
  font-family: "Times New Roman", Times, "serif";
  font-size: var(--font-size-16); }
  @media screen and (max-width: 799px) {
    .p-index-about .about__list-item ._num {
      font-size: 1.2rem; } }
.p-index-about .about__list-item img {
  width: 100%;
  margin-top: 1.4rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__list-item img {
      margin-top: 1rem; } }
.p-index-about .about__list-item ._cap {
  font-family: var(--font-family-serif-jp);
  font-size: var(--font-size-20);
  line-height: var(--line-height-s);
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__list-item ._cap {
      margin-top: 3.2rem; } }
.p-index-about .about__list-item ._label {
  color: var(--color-main4);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-14);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-s);
  margin-top: 1rem; }
.p-index-about .about__list-item ._txt {
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
  margin-top: 2.5rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__list-item ._txt {
      margin-top: 2.2rem; } }
.p-index-about .about__catch {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-about .about__catch {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-about .about__catch {
      margin-top: 7rem; } }
  .p-index-about .about__catch ._cap {
    position: relative;
    font-family: var(--font-family-serif);
    font-size: 5rem;
    font-weight: 300;
    line-height: var(--line-height-s);
    text-align: center;
    z-index: 1; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__catch ._cap {
        font-size: 3rem;
        line-height: 1.4; } }
  .p-index-about .about__catch ._photo {
    position: relative;
    padding-top: 42.5%;
    border-radius: 3rem;
    margin-top: -3.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__catch ._photo {
        padding-top: 115%;
        margin-top: -6rem; } }
  .p-index-about .about__catch img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3rem;
    object-fit: cover; }

/* ==========================================================================
   #staff
========================================================================== */
.p-index-staff .staff__wrap {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__wrap {
      margin-top: 7rem; } }
.p-index-staff .staff__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m); }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__head {
      width: 84%; } }
.p-index-staff .staff__list {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 9rem;
  grid-row-gap: 12rem;
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__list {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__list {
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 5rem;
      margin-top: 4rem; } }
.p-index-staff .staff__list-item {
  display: flex;
  align-items: flex-start;
  column-gap: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__list-item {
      display: block; } }
.p-index-staff .staff__list-photo {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  width: 35%; }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__list-photo {
      width: 55%;
      margin-left: auto;
      margin-right: 12%; } }
  .p-index-staff .staff__list-photo img {
    width: 100%;
    border-radius: 1rem; }
  .p-index-staff .staff__list-photo ._label {
    position: absolute;
    right: -3rem;
    bottom: -3rem;
    color: var(--color-main4);
    font-family: var(--font-family-serif);
    font-size: var(--font-size-28);
    font-weight: 300; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-photo ._label {
        right: -4rem;
        bottom: -2rem; } }
.p-index-staff .staff__list-note {
  flex: 1;
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .p-index-staff .staff__list-note {
      margin-top: 3rem; } }
  .p-index-staff .staff__list-note ._name {
    font-size: var(--font-size-20); }
  .p-index-staff .staff__list-note ._info {
    font-size: var(--font-size-13);
    margin-top: 1.5rem; }
  .p-index-staff .staff__list-note ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-15);
    line-height: var(--line-height-m);
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-note ._txt {
        margin-top: 1.5rem; } }
  .p-index-staff .staff__list-note ._btn {
    width: 100%;
    max-width: 25rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-main2);
    border-radius: .5rem;
    margin-top: 3rem;
    padding: 0 3rem;
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-note ._btn {
        max-width: 22.5rem;
        height: 4.4rem; } }
  .p-index-staff .staff__list-note ._btn:hover {
    background: #8d5140; }
  .p-index-staff .staff__list-note ._label {
    color: var(--color-white);
    font-family: var(--font-family-serif);
    font-size: var(--font-size-13);
    font-weight: 700; }
  .p-index-staff .staff__list-note ._icon {
    width: 2.2rem;
    height: 2.2rem;
    fill: var(--color-white); }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-note ._icon {
        width: 2rem;
        height: 2rem; } }

/* ==========================================================================
   #salon
========================================================================== */
.p-index-salon .salon__wrap {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__wrap {
      margin-top: 7rem; } }
.p-index-salon .salon__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m); }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__head {
      width: 84%; } }
.p-index-salon .salon__col {
  display: flex;
  align-items: flex-end;
  column-gap: 14rem;
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__col {
      display: block;
      margin-top: 5rem; } }
.p-index-salon .salon__col-photo {
  flex: 1; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__col-photo {
      padding-right: 8%; } }
  .p-index-salon .salon__col-photo img {
    width: 100%;
    border-radius: 0 27.5rem 0 0; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__col-photo img {
        border-radius: 0 15rem 0 0; } }
.p-index-salon .salon__col-info {
  width: 45%;
  padding-right: 8%; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__col-info {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      width: 100%;
      margin-top: 6rem;
      padding-right: 0; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-salon .salon__col-info {
      width: 84%; } }

  .p-index-salon .salon__col-info ._name {
    font-size: var(--font-size-15);
    margin-bottom: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__col-info ._name {
        margin-bottom: .5rem; } }
  .p-index-salon .salon__col-info dl {
    border-bottom: solid var(--color-gray1) 1px;
    padding: 3rem 0 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__col-info dl {
        padding: 2.5rem 0 1.5rem; } }
  .p-index-salon .salon__col-info dt {
    color: var(--color-main4);
    font-family: var(--font-family-serif);
    font-size: var(--font-size-15);
    font-weight: 700;
    letter-spacing: var(--letter-spacing-s); }
  .p-index-salon .salon__col-info dd {
    font-size: var(--font-size-15);
    line-height: var(--line-height-s);
    margin-top: 1rem; }
.p-index-salon .salon__map {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 16rem; }
  @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 ._label {
    color: var(--color-main4);
    font-family: var(--font-family-serif);
    font-size: var(--font-size-15);
    font-weight: 700;
    letter-spacing: var(--letter-spacing-s); }
  .p-index-salon .salon__map iframe {
    width: 100%;
    height: 50rem;
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__map iframe {
        height: 40rem;
        margin-top: 2.5rem; } }
