@charset "UTF-8";
/* ==========================================================================
 *
 * 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: #CCCCCC;
  --color-gray2: #A8A8A8;
  --color-main1: #839966;
  --color-main2: #C1584E;
  --color-main3: #AA8030;
  --color-main4: #ADA07E;
  --color-main5: #EA5D5D;
  --color-bg1: #FFFEF8;
  --color-bg2: #F2F0E9;
  --color-bg3: #6C805B;
}

/* ==========================================================================
   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, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  --font-family-sans: "Montserrat", sans-serif;
  --font-family-serif: "Noto Serif JP", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

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

/* ==========================================================================
   line-height
========================================================================== */
:root {
  --line-height-s: 1.8;
  --line-height-m: 2;
  --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: 128rem;
  --container-l: 144rem;
  --container-na: 132rem;
  --container-ns: 96rem;
}

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

/* ==========================================================================
 *
 * mixin scss
 * container / font-feature-settings / writing-mode-vertical
 *
========================================================================== */
/* ==========================================================================
   container
========================================================================== */
/* ==========================================================================
   font-feature-settings
========================================================================== */
/* ==========================================================================
   writing-mode-vertical
========================================================================== */
/* ==========================================================================
 *
 * nav scss
 * toggle / sitemap
 *
========================================================================== */
/* ==========================================================================
   toggle
========================================================================== */
.l-toggle.js-active .toggle__wrap {
  height: 1px;
}
.l-toggle.js-active span {
  border-radius: 0;
}
.l-toggle.js-active span:nth-child(1) {
  width: 100%;
  height: 1px;
}
.l-toggle.js-active span:nth-child(2) {
  opacity: 0;
}
.l-toggle.js-active span:nth-child(3) {
  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 / 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: 1s;
  transition-delay: .3s;
  transition-timing-function: ease;
}

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

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

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

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

/* ==========================================================================
 *
 * accordion scss
 * -
 *
========================================================================== */
.c-accordion {
  position: relative;
}
.c-accordion .accordion__input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
}
.c-accordion .accordion__label {
  width: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  transition: 0.4s ease;
  display: flex;
  align-items: baseline;
  column-gap: 1.5rem;
  font-size: var(--font-size-18);
  font-weight: var(--font-wight-medium);
  line-height: var(--line-height-s);
  padding: 1.5rem 4rem;
}
@media screen and (max-width: 799px) {
  .c-accordion .accordion__label {
    column-gap: 1rem;
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 1.5rem 6rem 1.5rem 2rem;
  }
}
.c-accordion .accordion__label::before {
  position: absolute;
  content: '+';
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  border-radius: 100%;
  color: var(--color-white);
}
@media screen and (max-width: 799px) {
  .c-accordion .accordion__label::before {
    right: 2rem;
    width: 3rem;
    height: 3rem;
  }
}
.c-accordion .accordion__label ._en {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-24);
  font-weight: var(--font-wight-medium);
}
.c-accordion .accordion__label ._txt {
  flex: 1;
}
.c-accordion .accordion__conte {
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 0;
  transition: 0.4s ease;
  opacity: 0;
  display: flex;
  column-gap: 1.5rem;
  border-top: solid var(--color-gray1) 1px;
  padding: 0 4rem;
}
@media screen and (max-width: 799px) {
  .c-accordion .accordion__conte {
    column-gap: 1rem;
    padding: 0 3rem 0 2rem;
  }
}
.c-accordion .accordion__conte ._en {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-24);
  font-weight: var(--font-wight-medium);
}
.c-accordion .accordion__conte ._txt {
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
}
.c-accordion .accordion__input:checked ~ .accordion__conte {
  height: auto;
  opacity: 1;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 799px) {
  .c-accordion .accordion__input:checked ~ .accordion__conte {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.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: var(--color-bg1);
  font-family: var(--font-family-main);
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}

h1, h2, h3, h4, h5, p, li, dt, dd, a {
  font-weight: var(--font-wight-normal);
  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-sans);
  font-size: var(--font-size-34);
}
.c-head ._txt {
  color: var(--color-main3);
  font-size: var(--font-size-16);
  font-weight: var(--font-wight-medium);
  margin-top: 1rem;
}
@media screen and (max-width: 799px) {
  .c-head ._txt {
    font-size: 1.3rem;
  }
}
.c-head._ct ._cap,
.c-head._ct ._txt {
  text-align: center;
}

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: absolute;
  left: 5%;
  bottom: 40rem;
  z-index: var(--z-index-header);
}
@media screen and (max-width: 799px) {
  .l-header {
    top: 2rem;
    bottom: auto;
  }
}
.l-header .header__logo img {
  width: 7rem;
  height: 11.4rem;
}
@media screen and (max-width: 799px) {
  .l-header .header__logo img {
    width: 5rem;
    height: 8.1rem;
  }
}

/* ==========================================================================
   #nav
========================================================================== */
.l-nav {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  z-index: var(--z-index-nav);
}
@media screen and (max-width: 799px) {
  .l-nav {
    display: none;
  }
}
.l-nav .nav__menu li {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-12);
  margin-top: 1.5rem;
}
.l-nav .nav__menu a {
  transition: color .3s;
}
.l-nav .nav__menu a:hover {
  color: var(--color-gray2);
}

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4A3818;
  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: 15px;
  height: 3px;
}
.l-toggle span {
  position: absolute;
  top: 0;
  width: 3px;
  height: 3px;
  background: var(--color-white);
  border-radius: 100%;
}
.l-toggle span:nth-child(1) {
  left: 0;
}
.l-toggle span:nth-child(2) {
  left: 6px;
}
.l-toggle span:nth-child(3) {
  right: 0;
}

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg1);
  z-index: var(--z-index-sitemap);
}
@media screen and (min-width: 800px) {
  .l-sitemap {
    display: none;
  }
}
.l-sitemap .sitmap__wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  column-gap: 3rem;
}
.l-sitemap .sitemap__photo {
  width: 57.5%;
  height: 100%;
}
.l-sitemap .sitemap__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 50%;
}
.l-sitemap .sitemap__list {
  flex: 1;
}
.l-sitemap .sitemap__nav {
  padding-bottom: 6rem;
}
.l-sitemap .sitemap__nav li {
  font-size: 1rem;
  font-weight: var(--font-wight-medium);
}
.l-sitemap .sitemap__nav li + li {
  margin-top: 1.5rem;
}
.l-sitemap .sitemap__nav span {
  display: block;
  color: var(--color-black);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-18);
  font-weight: var(--font-wight-normal);
  margin-bottom: .5rem;
}
.l-sitemap .sitemap__nav a {
  color: var(--color-main3);
}

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  top: 0;
  right: 0;
  width: 50rem;
  display: flex;
  z-index: var(--z-index-contact);
}
@media screen and (max-width: 799px) {
  .l-contact {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}
.l-contact .contact__btn {
  width: 50%;
  height: 7.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  background: var(--color-main1);
  transition: .3s ease;
}
@media screen and (max-width: 799px) {
  .l-contact .contact__btn {
    height: 6rem;
    column-gap: 1rem;
  }
}
.l-contact .contact__btn svg {
  width: 3.2rem;
  height: 3.2rem;
  fill: var(--color-white);
}
@media screen and (max-width: 799px) {
  .l-contact .contact__btn svg {
    width: 3rem;
    height: 3rem;
  }
}
.l-contact .contact__btn ._label {
  color: var(--color-white);
  font-size: var(--font-size-16);
  line-height: 1.4;
  margin-right: .5rem;
}
@media screen and (max-width: 799px) {
  .l-contact .contact__btn ._label {
    line-height: 1.3;
  }
}
.l-contact .contact__btn:hover {
  background: var(--color-gray2) !important;
}
.l-contact .contact__btn:nth-child(1) {
  border-radius: 0 0 0 1rem;
}
@media screen and (max-width: 799px) {
  .l-contact .contact__btn:nth-child(1) {
    border-radius: 0;
  }
}
.l-contact .contact__btn:nth-child(2) {
  background: var(--color-main2);
}

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  background: var(--color-bg3);
  margin-top: 18rem;
  padding: 8rem 0 7rem;
}
@media screen and (max-width: 799px) {
  .l-footer {
    margin-top: 8rem;
    padding: 6rem 0 5rem;
  }
}
.l-footer .footer__col {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 799px) {
  .l-footer .footer__col {
    width: 84%;
  }
}
@media screen and (max-width: 799px) {
  .l-footer .footer__col {
    align-items: flex-start;
  }
}
.l-footer .footer__logo img {
  width: 7rem;
  height: 11.4rem;
}
@media screen and (max-width: 799px) {
  .l-footer .footer__logo img {
    width: 5rem;
    height: 8.1rem;
  }
}
.l-footer .footer__nav {
  display: flex;
  column-gap: 3rem;
}
@media screen and (max-width: 799px) {
  .l-footer .footer__nav {
    width: 47.5%;
    display: block;
  }
}
.l-footer .footer__nav li {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-14);
}
@media screen and (max-width: 799px) {
  .l-footer .footer__nav li + li {
    margin-top: 1.5rem;
  }
}
.l-footer .footer__nav a {
  color: var(--color-white);
  transition: color .3s;
}
.l-footer .footer__nav a:hover {
  color: var(--color-gray1);
}
.l-footer .footer__copy {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  color: var(--color-gray1);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-12);
  margin-top: 3rem;
  text-align: right;
}
@media screen and (max-width: 799px) {
  .l-footer .footer__copy {
    width: 84%;
  }
}
@media screen and (max-width: 799px) {
  .l-footer .footer__copy {
    margin-top: 7rem;
    text-align: center;
  }
}

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding: 8rem 8rem 0 0;
}
@media screen and (max-width: 799px) {
  .p-index-hero {
    height: auto;
    padding: 0;
  }
}
.p-index-hero .hero__photo {
  width: 100%;
  height: 100%;
  border-radius: 0 3rem 3rem 0;
}
@media screen and (max-width: 799px) {
  .p-index-hero .hero__photo {
    width: 92%;
    height: 100vh;
    height: 100svh;
    padding-top: 2.5rem;
  }
}
.p-index-hero .hero__photo img {
  width: 100%;
  height: 100%;
  border-radius: 0 3rem 3rem 0;
  object-fit: cover;
  object-position: 50% 20%;
}
@media screen and (max-width: 799px) {
  .p-index-hero .hero__photo img {
    border-radius: 0 2rem 2rem 0;
    object-position: 75% 50%;
  }
}
.p-index-hero .hero__head {
  position: absolute;
  left: 5%;
  bottom: 12rem;
}
@media screen and (max-width: 799px) {
  .p-index-hero .hero__head {
    position: relative;
    left: 0;
    bottom: auto;
    margin-top: 7rem;
    padding: 0 8%;
  }
}
.p-index-hero .hero__head ._cap {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-34);
  line-height: var(--line-height-s);
  letter-spacing: var(--letter-spacing-l);
}
@media screen and (max-width: 799px) {
  .p-index-hero .hero__head ._cap {
    font-size: 2.4rem;
  }
}
.p-index-hero .hero__head ._txt {
  font-size: var(--font-size-15);
  margin-top: 2.5rem;
  line-height: var(--line-height-m);
}
@media screen and (max-width: 799px) {
  .p-index-hero .hero__head ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* ==========================================================================
   #concept
========================================================================== */
.p-index-concept {
  position: relative;
}
.p-index-concept .concept__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  position: relative;
  display: flex;
  column-gap: 10rem;
  margin-top: 18rem;
  z-index: 1;
}
@media screen and (max-width: 799px) {
  .p-index-concept .concept__wrap {
    width: 84%;
  }
}
@media screen and (max-width: 799px) {
  .p-index-concept .concept__wrap {
    width: 100%;
    display: block;
    margin-top: 7rem;
  }
}
.p-index-concept .concept__photo {
  flex: 1;
}
.p-index-concept .concept__photo img {
  width: 100%;
}
@media screen and (max-width: 799px) {
  .p-index-concept .concept__photo img {
    width: 92%;
  }
}
.p-index-concept .concept__mass {
  width: 47.5%;
  margin-top: 4rem;
}
@media screen and (max-width: 799px) {
  .p-index-concept .concept__mass {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 7rem;
  }
}
@media screen and (max-width: 799px) and (max-width: 799px) {
  .p-index-concept .concept__mass {
    width: 84%;
  }
}

.p-index-concept .concept__mass-note {
  margin-top: 6rem;
}
@media screen and (max-width: 799px) {
  .p-index-concept .concept__mass-note {
    margin-top: 4rem;
  }
}
.p-index-concept .concept__mass-note ._cap {
  font-size: var(--font-size-24);
  margin-bottom: 2.5rem;
}
.p-index-concept .concept__mass-note ._txt {
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
}
.p-index-concept .concept__mass-note ._txt + ._txt {
  margin-top: 1.5rem;
}
.p-index-concept .concept__dot {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 799px) {
  .p-index-concept .concept__dot {
    top: 1rem;
  }
}
.p-index-concept .concept__dot img {
  width: 25rem;
  height: 25rem;
}
@media screen and (max-width: 799px) {
  .p-index-concept .concept__dot img {
    width: 15rem;
    height: 15rem;
  }
}

/* ==========================================================================
   #menu
========================================================================== */
.p-index-menu {
  position: relative;
  margin-top: 18rem;
}
@media screen and (max-width: 799px) {
  .p-index-menu {
    margin-top: 7rem;
  }
}
.p-index-menu .menu__wave svg {
  width: 100%;
}
.p-index-menu .menu__wrap {
  background: var(--color-bg2);
  padding: 8rem 0;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__wrap {
    padding: 6rem 0;
  }
}
.p-index-menu .menu__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__head {
    width: 84%;
  }
}
.p-index-menu .menu__head ._limit {
  max-width: 58rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 1rem;
  font-size: var(--font-size-16);
  font-weight: var(--font-wight-bold);
  margin: 6rem auto 0;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__head ._limit {
    height: 4.4rem;
    border-radius: .5rem;
    font-size: 1.4rem;
    margin: 4rem auto 0;
  }
}
.p-index-menu .menu__list {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list {
    width: 84%;
  }
}
.p-index-menu .menu__list-item {
  display: flex;
  align-items: flex-start;
  column-gap: 10rem;
  margin-top: 10rem;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list-item {
    display: block;
    margin-top: 5rem;
  }
}
.p-index-menu .menu__list-photo {
  position: relative;
  flex: 1;
}
.p-index-menu .menu__list-photo ._num {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  left: -3rem;
  bottom: 0;
  color: var(--color-main3);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-14);
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list-photo ._num {
    position: relative;
    left: auto;
    bottom: auto;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    margin-bottom: 1.5rem;
  }
}
.p-index-menu .menu__list-photo img {
  width: 100%;
}
.p-index-menu .menu__list-mass {
  width: 47.5%;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list-mass {
    position: relative;
    width: 100%;
    z-index: 1;
  }
}
.p-index-menu .menu__list-mass ._label {
  width: fit-content;
  height: 3.6rem;
  display: flex;
  align-items: center;
  background: var(--color-main4);
  border-radius: 1.8rem;
  color: var(--color-white);
  font-size: var(--font-size-16);
  font-weight: var(--font-wight-bold);
  padding: 0 2.5rem;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list-mass ._label {
    font-size: 1.4rem;
    margin-top: -1rem;
    margin-left: auto;
    margin-right: -1rem;
    padding: 0 2rem;
  }
}
.p-index-menu .menu__list-mass ._note {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: .5rem;
  background: var(--color-white);
  border-radius: 1rem;
  margin-top: 3rem;
  padding: 2rem;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list-mass ._note {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 0;
    margin-top: 2.5rem;
  }
}
.p-index-menu .menu__list-mass ._note li {
  position: relative;
  font-size: var(--font-size-14);
  line-height: var(--line-height-s);
  padding-left: 2rem;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list-mass ._note li {
    padding-left: 1.6rem;
  }
}
.p-index-menu .menu__list-mass ._note li::before {
  position: absolute;
  content: '・';
  top: 0;
  left: 0;
}
.p-index-menu .menu__list-mass ._cap {
  font-size: var(--font-size-24);
  line-height: var(--line-height-s);
  margin-top: 3.5rem;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list-mass ._cap {
    margin-top: 3rem;
  }
}
.p-index-menu .menu__list-mass ._min {
  font-size: var(--font-size-13);
  line-height: var(--line-height-s);
  margin-top: 1rem;
}
.p-index-menu .menu__list-mass ._price {
  margin-top: 2rem;
  border-bottom: solid var(--color-gray1) 1px;
  padding-bottom: 1rem;
}
.p-index-menu .menu__list-mass ._price li:nth-child(1) {
  font-size: var(--font-size-15);
}
.p-index-menu .menu__list-mass ._price li:nth-child(2) {
  font-size: var(--font-size-16);
  text-align: right;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list-mass ._price li:nth-child(2) {
    margin-top: 1.5rem;
  }
}
.p-index-menu .menu__list-mass ._price li:nth-child(2) span {
  color: var(--color-main5);
  font-family: "Times New Roman", Times, "serif";
  font-size: 3.8rem;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list-mass ._price li:nth-child(2) span {
    font-size: 3rem;
  }
}
.p-index-menu .menu__list-mass ._btn {
  width: 27.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-main1);
  border-radius: .5rem;
  margin: 2.5rem 0 0 auto;
  padding: 0 2rem 0 4rem;
  transition: .3s ease;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__list-mass ._btn {
    width: 22.5rem;
  }
}
.p-index-menu .menu__list-mass ._btn:hover {
  background: var(--color-gray2);
}
.p-index-menu .menu__list-mass ._btn span {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: var(--font-wight-bold);
}
.p-index-menu .menu__list-mass ._btn svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--color-white);
}
.p-index-menu .menu__dot {
  position: absolute;
  top: -6rem;
  right: 0;
}
.p-index-menu .menu__dot img {
  width: 25rem;
  height: 25rem;
}
@media screen and (max-width: 799px) {
  .p-index-menu .menu__dot img {
    width: 15rem;
    height: 15rem;
  }
}

/* ==========================================================================
   #about
========================================================================== */
.p-index-about {
  position: relative;
}
.p-index-about .about__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  position: relative;
  display: flex;
  column-gap: 10rem;
  margin-top: 18rem;
  z-index: 1;
}
@media screen and (max-width: 799px) {
  .p-index-about .about__wrap {
    width: 84%;
  }
}
@media screen and (max-width: 799px) {
  .p-index-about .about__wrap {
    display: block;
    margin-top: 7rem;
  }
}
.p-index-about .about__mass {
  width: 47.5%;
}
@media screen and (max-width: 799px) {
  .p-index-about .about__mass {
    width: 100%;
  }
}
.p-index-about .about__mass-inner {
  position: sticky;
  top: 12rem;
}
.p-index-about .about__mass-note {
  margin-top: 6rem;
}
@media screen and (max-width: 799px) {
  .p-index-about .about__mass-note {
    margin-top: 5rem;
  }
}
.p-index-about .about__mass-note ._cap {
  font-size: var(--font-size-24);
  line-height: var(--line-height-s);
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 799px) {
  .p-index-about .about__mass-note ._cap {
    margin-bottom: 2rem;
  }
}
.p-index-about .about__mass-note ._txt {
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
}
.p-index-about .about__list {
  flex: 1;
}
@media screen and (max-width: 799px) {
  .p-index-about .about__list {
    margin-top: 4rem;
  }
}
.p-index-about .about__list-item img {
  width: 100%;
  border-radius: 1.5rem;
}
@media screen and (max-width: 799px) {
  .p-index-about .about__list-item img {
    border-radius: 1rem;
  }
}
.p-index-about .about__list-item ._label {
  color: var(--color-main3);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-12);
  margin-top: 2.5rem;
}
.p-index-about .about__list-item ._cap {
  font-size: var(--font-size-18);
  line-height: var(--line-height-s);
  margin-top: 1rem;
}
.p-index-about .about__list-item + .about__list-item {
  margin-top: 5rem;
}
@media screen and (max-width: 799px) {
  .p-index-about .about__list-item + .about__list-item {
    margin-top: 3rem;
  }
}
.p-index-about .about__dot {
  position: absolute;
  top: 0;
  right: 0;
}
.p-index-about .about__dot img {
  width: 25rem;
  height: 25rem;
}
@media screen and (max-width: 799px) {
  .p-index-about .about__dot img {
    width: 15rem;
    height: 15rem;
  }
}

/* ==========================================================================
   #qa
========================================================================== */
.p-index-qa {
  position: relative;
  margin-top: 18rem;
}
@media screen and (max-width: 799px) {
  .p-index-qa {
    margin-top: 7rem;
  }
}
.p-index-qa .qa__wave svg {
  width: 100%;
}
.p-index-qa .qa__wrap {
  background: var(--color-bg2);
  padding: 8rem 0;
}
@media screen and (max-width: 799px) {
  .p-index-qa .qa__wrap {
    padding: 6rem 0;
  }
}
.p-index-qa .qa__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
}
@media screen and (max-width: 799px) {
  .p-index-qa .qa__head {
    width: 84%;
  }
}
.p-index-qa .qa__list {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-s);
  margin-top: 6rem;
}
@media screen and (max-width: 799px) {
  .p-index-qa .qa__list {
    width: 84%;
  }
}
@media screen and (max-width: 799px) {
  .p-index-qa .qa__list {
    margin-top: 5rem;
  }
}
.p-index-qa .qa__list-item {
  background: var(--color-white);
  border-radius: 1rem;
}
@media screen and (max-width: 799px) {
  .p-index-qa .qa__list-item {
    border-radius: .5rem;
  }
}
.p-index-qa .qa__list-item + .qa__list-item {
  margin-top: .8rem;
}

/* ==========================================================================
   #salon
========================================================================== */
.p-index-salon .salon__head {
  margin-top: 18rem;
}
@media screen and (max-width: 799px) {
  .p-index-salon .salon__head {
    margin-top: 7rem;
  }
}
.p-index-salon .salon__col {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  column-gap: 10rem;
  margin-top: 12rem;
}
@media screen and (max-width: 799px) {
  .p-index-salon .salon__col {
    display: block;
    margin-top: 7rem;
  }
}
.p-index-salon .salon__col-photo {
  position: relative;
  width: 47.5%;
  z-index: 1;
}
@media screen and (max-width: 799px) {
  .p-index-salon .salon__col-photo {
    width: 92%;
  }
}
.p-index-salon .salon__col-photo img {
  width: 100%;
}
.p-index-salon .salon__col-mass {
  flex: 1;
  padding-left: 12%;
}
@media screen and (max-width: 799px) {
  .p-index-salon .salon__col-mass {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 6rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 799px) and (max-width: 799px) {
  .p-index-salon .salon__col-mass {
    width: 84%;
  }
}

.p-index-salon .salon__col-mass ._cap {
  font-size: var(--font-size-18);
  line-height: var(--line-height-s);
}
@media screen and (max-width: 799px) {
  .p-index-salon .salon__col-mass ._cap {
    font-size: 1.5rem;
    line-height: var(--line-height-m);
    letter-spacing: 0;
  }
}
.p-index-salon .salon__col-mass ._info {
  margin-top: 2rem;
}
@media screen and (max-width: 799px) {
  .p-index-salon .salon__col-mass ._info {
    margin-top: 1rem;
  }
}
.p-index-salon .salon__col-mass ._info dl {
  display: flex;
}
.p-index-salon .salon__col-mass ._info dt {
  width: 10rem;
  border-bottom: solid var(--color-black) 1px;
  font-size: var(--font-size-15);
  line-height: var(--line-height-s);
  padding: 2rem 0 1rem;
}
@media screen and (max-width: 799px) {
  .p-index-salon .salon__col-mass ._info dt {
    width: 8rem;
  }
}
.p-index-salon .salon__col-mass ._info dd {
  flex: 1;
  border-bottom: solid var(--color-gray1) 1px;
  font-size: var(--font-size-15);
  line-height: var(--line-height-s);
  padding: 2rem 0 1rem 1rem;
}
.p-index-salon .salon__col-mass ._note {
  margin-top: 4rem;
}
.p-index-salon .salon__col-mass ._txt {
  font-size: var(--font-size-14);
  line-height: var(--line-height-m);
}
.p-index-salon .salon__col-mass ._btn {
  color: var(--color-main2);
  text-decoration: underline;
}
.p-index-salon .salon__col-dot {
  position: absolute;
  top: -16rem;
  right: 0;
}
@media screen and (max-width: 799px) {
  .p-index-salon .salon__col-dot {
    top: -6rem;
  }
}
.p-index-salon .salon__col-dot img {
  width: 25rem;
  height: 25rem;
}
@media screen and (max-width: 799px) {
  .p-index-salon .salon__col-dot img {
    width: 15rem;
    height: 15rem;
  }
}
.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: 6rem;
  }
}
.p-index-salon .salon__map iframe {
  width: 100%;
  height: 55rem;
}
@media screen and (max-width: 799px) {
  .p-index-salon .salon__map iframe {
    height: 45rem;
  }
}
