@charset "UTF-8";
/**
 * root css
 */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray1: #F8F8F8;
  --color-gray2: #CCCCCC;
  --color-gray3: #A8A8A8;
  --color-main1: #AA8030;
  --color-main2: #A08B62;
  --color-main3: #C3C0BE;
  --color-main4: #D37272; }

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

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

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

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

/**
 * mixin css
 */
/* ==========================================================================
   mixin
========================================================================== */
/**
 * nav css
 */
/* ==========================================================================
   トグルボタン
========================================================================== */
.l-toggle span {
  transition-property: transform, opacity, top, bottom, background;
  transition-duration: .25s;
  transition-timing-function: ease; }
.l-toggle.js-active span {
  background: var(--color-gray3); }
  .l-toggle.js-active span:nth-child(1) {
    top: 3px;
    transform: rotate(20deg); }
  .l-toggle.js-active span:nth-child(2) {
    bottom: 3px;
    transform: rotate(-20deg); }
.l-toggle.js-change span {
  background: var(--color-black); }

/* ==========================================================================
   ナビゲーションメニュー
========================================================================== */
.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; }

/**
 * scroll css
 */
/* ==========================================================================
   フェードイン
========================================================================== */
.c-fade {
  transform: translateY(30px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 3s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
  .c-fade.js-active {
    transform: translateY(0);
    opacity: 1; }

/* ==========================================================================
   イメージスケール
========================================================================== */
.c-img-scale {
  overflow: hidden; }
  .c-img-scale img {
    transform: scale(1.2);
    transition-property: transform;
    transition-duration: 3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
  .c-img-scale.js-active img {
    transform: scale(1); }

/* ==========================================================================
   フッター到達で非表示
========================================================================== */
.c-footer-hide {
  transition-property: opacity, visibility;
  transition-duration: .25s;
  transition-timing-function: ease; }
  .c-footer-hide.js-active {
    opacity: 0;
    visibility: hidden; }

/* ==========================================================================
   ページ内スクロール位置調整
========================================================================== */
.c-link-target {
  padding-top: .1rem;
  margin-top: -.1rem; }

/**
 * loop css
 */
/* ==========================================================================
   横方向無限スクロール
========================================================================== */
.c-loop {
  overflow: hidden;
  white-space: nowrap;
  display: flex; }

.c-loop__inner {
  display: inline-flex;
  animation: scroll 10s linear infinite;
  /* アニメーション設定 */ }

@keyframes scroll {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%);
    /* コンテンツの半分を左に移動 */ } }
/**
 * accordion css
 */
/* ==========================================================================
   アコーディオンメニュー
========================================================================== */
.c-accordion {
  position: relative; }

.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; }

.accordion__label {
  width: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  transition: 0.4s ease; }
  .accordion__label::before {
    position: absolute;
    content: '+';
    top: 0;
    right: 0; }

.accordion__conte {
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 0;
  transition: 0.4s ease;
  opacity: 0; }

.accordion__input:checked ~ .accordion__conte {
  height: auto;
  opacity: 1; }

.accordion__input:checked ~ .accordion__label::before {
  content: '-'; }

/**
 * btn css
 */
/* ==========================================================================
   ボタンデザイン1
========================================================================== */
.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); }

/* ==========================================================================
   ボタンデザイン2
========================================================================== */
.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); }

/* ==========================================================================
   ボタンデザイン3
========================================================================== */
.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; }

/* ==========================================================================
   ボタンデザイン4
========================================================================== */
.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%; }

/**
 * scroll css
 */
/* ==========================================================================
   テキストアニメーション1
========================================================================== */
.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); }

/* ==========================================================================
   テキストアニメーション2
========================================================================== */
.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 css
 */
/* ==========================================================================
   #general
========================================================================== */
html {
  font-size: 62.5%; }
  @media screen and (min-width: 1920px) {
    html {
      font-size: 0.5211047421vw; } }
  @media screen and (min-width: 800px) and (max-width: 1199px) {
    html {
      font-size: 0.834028357vw; } }
  @media screen and (max-width: 374px) {
    html {
      font-size: 2.6737967914vw; } }

body {
  font-family: var(--font-family-main);
  font-weight: 400;
  letter-spacing: .15em;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal; }

@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: 799px) {
    .c-spBlock {
      display: block; } }

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

.c-wrapper {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .c-wrapper {
      width: 84%; } }

.c-caption__heading {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-36); }
.c-caption__label {
  color: var(--color-main1);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-16);
  margin-top: 1.2rem; }

/**
 * header css
 * header / toggle / sitemap / contact
 */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.5rem;
  border-bottom: solid var(--color-gray1) 1px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-index-header); }
  @media screen and (max-width: 799px) {
    .l-header {
      height: 5.8rem;
      justify-content: flex-start;
      padding: 0 2rem; } }

.header__nav {
  position: absolute;
  left: 0;
  display: flex;
  column-gap: 2.5rem;
  margin-left: 5rem; }
  @media screen and (max-width: 799px) {
    .header__nav {
      display: none; } }
  .header__nav li {
    color: var(--color-main1);
    font-family: var(--font-family-serif);
    font-size: var(--font-size-16);
    letter-spacing: 0; }

.header__logo a {
  display: block; }
.header__logo svg {
  width: 16rem;
  height: 3.2rem; }
  @media screen and (max-width: 799px) {
    .header__logo svg {
      width: 12rem;
      height: 2.3rem; } }

/* ==========================================================================
   #toggle
========================================================================== */
.l-toggle {
  position: fixed;
  top: 2.5rem;
  right: 1.8rem;
  z-index: var(--z-index-toggle); }
  @media screen and (min-width: 800px) {
    .l-toggle {
      display: none; } }

.toggle__wrapper {
  position: relative;
  width: 22px;
  height: 7px; }
  .toggle__wrapper span {
    background: var(--color-black);
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px; }
    .toggle__wrapper span:nth-child(1) {
      top: 0; }
    .toggle__wrapper span:nth-child(2) {
      bottom: 0; }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  background: var(--color-white);
  padding-top: 5.8rem;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }

.l-sitemap__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%; }

.l-sitemap__image {
  width: 52.5%;
  height: 100%;
  position: relative; }
  .l-sitemap__image img {
    object-fit: cover;
    object-position: 35% 50%;
    width: 100%;
    height: 100%; }

.l-sitemap__menu {
  flex: 1;
  padding: 0 4% 0 8%; }

.l-sitemap__list li {
  font-family: var(--font-family-serif);
  font-size: 1.8rem;
  line-height: var(--line-height-s);
  letter-spacing: 0; }
  .l-sitemap__list li + li {
    margin-top: 2rem; }
  .l-sitemap__list li span {
    color: var(--color-main1);
    display: block;
    font-size: 1.2rem; }

.l-sitemap__copy {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  color: var(--color-white);
  font-family: var(--font-family-serif);
  font-size: 1.2rem;
  letter-spacing: 0; }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 799px) {
    .l-contact {
      top: 1.2rem;
      right: 5.5rem; } }

.l-contact__link {
  width: 20rem;
  height: 4.8rem;
  background: var(--color-main2);
  border-radius: 2.4rem;
  color: var(--color-white);
  font-size: var(--font-size-13);
  padding: 0 2.5rem 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media screen and (max-width: 799px) {
    .l-contact__link {
      width: 14rem;
      height: 3.4rem;
      padding: 0 1.5rem 0 2rem; } }
  .l-contact__link svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--color-white); }
    @media screen and (max-width: 799px) {
      .l-contact__link svg {
        width: 2rem;
        height: 2rem; } }

/* ==========================================================================
   #contact2
========================================================================== */
.l-contact2 {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 46rem;
  height: 7.4rem;
  display: flex;
  z-index: 65; }
  @media screen and (max-width: 799px) {
    .l-contact2 {
      width: 100%;
      height: 5.8rem; } }
  .l-contact2 .contact2__link {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    background: #f4a8b6; }
    .l-contact2 .contact2__link ._icon svg {
      width: 3rem;
      height: 3rem;
      fill: var(--color-white); }
      @media screen and (max-width: 799px) {
        .l-contact2 .contact2__link ._icon svg {
          width: 2.6rem;
          height: 2.6rem; } }
    .l-contact2 .contact2__link ._cap {
      margin-right: 1rem; }
    .l-contact2 .contact2__link ._txt {
      color: var(--color-white);
      font-size: var(--font-size-15);
      letter-spacing: .05em; }
    .l-contact2 .contact2__link ._min {
      color: var(--color-white);
      font-size: var(--font-size-13);
      letter-spacing: .05em;
      margin-top: .5rem; }
      @media screen and (max-width: 799px) {
        .l-contact2 .contact2__link ._min {
          margin-top: .3rem; } }
  .l-contact2 .contact2__link:nth-child(2) {
    background: #4ab450; }

/**
 * footer css
 */
/* ==========================================================================
   #footer / logo
========================================================================== */
.l-footer {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 20rem;
  padding-bottom: 6rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 7rem;
      padding-bottom: 3rem; } }

.footer-logo svg {
  width: 20rem;
  height: 4rem; }
  @media screen and (max-width: 799px) {
    .footer-logo svg {
      width: 18rem;
      height: 3.6rem; } }

.footer-conte {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .footer-conte {
      align-items: flex-end;
      margin-top: 5rem; } }

.footer-nav {
  display: flex;
  column-gap: 3rem; }
  @media screen and (max-width: 799px) {
    .footer-nav {
      display: block; } }
  .footer-nav li {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-16);
    letter-spacing: 0; }
    @media screen and (max-width: 799px) {
      .footer-nav li {
        margin-top: 1.8rem; } }

.footer-copy {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-12);
  letter-spacing: 0; }

/**
 * home css
 */
/* ==========================================================================
   #home / hero
========================================================================== */
.home-hero {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding-top: 8.5rem;
  position: relative; }
  @media screen and (max-width: 799px) {
    .home-hero {
      padding-top: 5.8rem; } }

.home-hero__image {
  width: 70%;
  height: 100%;
  margin-left: auto; }
  @media screen and (max-width: 799px) {
    .home-hero__image {
      width: 90%;
      height: 80%; } }
  .home-hero__image img {
    object-fit: cover;
    object-position: 0 50%;
    width: 100%;
    height: 100%; }
    @media screen and (max-width: 799px) {
      .home-hero__image img {
        object-position: 25% 50%; } }

.home-hero__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 57.5%;
  background: rgba(255, 255, 255, 0.4);
  padding: 7rem 8rem 5rem 8rem; }
  @media screen and (max-width: 799px) {
    .home-hero__caption {
      background: rgba(255, 255, 255, 0.6);
      width: 100%;
      padding: 9% 8% 8% 8%; } }

.home-hero__heading {
  font-family: var(--font-family-serif);
  font-size: 4.4rem;
  line-height: var(--line-height-s);
  letter-spacing: .175em; }
  @media screen and (max-width: 799px) {
    .home-hero__heading {
      font-size: 2.7rem; } }

.home-hero__text {
  font-size: var(--font-size-15);
  line-height: var(--line-height-l);
  margin-top: 2.5rem;
  padding-left: 8rem; }
  @media screen and (max-width: 799px) {
    .home-hero__text {
      font-feature-settings: "palt";
      text-align: justify;
      text-justify: inter-ideograph;
      margin-top: 1rem;
      padding-left: 0;
      line-height: 1.8; } }

/* ==========================================================================
   #home / concept
========================================================================== */
.home-concept {
  position: relative; }
  @media screen and (max-width: 799px) {
    .home-concept {
      margin-top: 4rem; } }
  .home-concept::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: var(--color-gray1);
    z-index: -1; }
    @media screen and (max-width: 799px) {
      .home-concept::before {
        width: 75%; } }

.home-concept__wrapper {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  padding-top: 24rem;
  padding-bottom: 16rem;
  display: flex; }
  @media screen and (max-width: 799px) {
    .home-concept__wrapper {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .home-concept__wrapper {
      display: block;
      padding-top: 6rem;
      padding-bottom: 7rem; } }

.home-concept__image {
  width: 52.5%;
  display: flex;
  align-items: flex-start;
  column-gap: 1rem; }
  @media screen and (max-width: 799px) {
    .home-concept__image {
      width: 100%; } }
  .home-concept__image img:nth-child(1) {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .home-concept__image img:nth-child(1) {
        margin-top: 6rem; } }

.home-concept__conte {
  flex: 1;
  margin-top: 6rem;
  margin-left: 8rem; }
  @media screen and (max-width: 799px) {
    .home-concept__conte {
      margin-top: 6rem;
      margin-left: 0; } }

.home-concept__text {
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .home-concept__text {
      margin-top: 4rem; } }
  .home-concept__text p {
    font-size: var(--font-size-15);
    line-height: var(--line-height-m); }
    @media screen and (max-width: 799px) {
      .home-concept__text p {
        font-feature-settings: "palt";
        text-align: justify;
        text-justify: inter-ideograph; } }
    .home-concept__text p + p {
      margin-top: 2rem; }

/* ==========================================================================
   #home / set menu
========================================================================== */
.home-set__wrapper {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  padding-top: 12rem; }
  @media screen and (max-width: 799px) {
    .home-set__wrapper {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .home-set__wrapper {
      padding-top: 7rem; } }

.home-set__list {
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    .home-set__list {
      margin-top: 5rem; } }

.home-set__item + .home-set__item {
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .home-set__item + .home-set__item {
      margin-top: 5rem; } }

.home-set__item-num {
  color: var(--color-main1);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-14);
  letter-spacing: .1em; }
  .home-set__item-num span {
    font-size: var(--font-size-32);
    margin-left: 1rem; }
    @media screen and (max-width: 799px) {
      .home-set__item-num span {
        margin-left: .8rem; } }

.home-set__item-label {
  font-size: var(--font-size-24);
  margin-top: 1.5rem; }
  @media screen and (max-width: 799px) {
    .home-set__item-label {
      line-height: var(--line-height-s);
      margin-top: 1rem; } }

.home-set__item-inner {
  display: flex;
  align-items: flex-start;
  column-gap: 8rem;
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .home-set__item-inner {
      display: block;
      margin-top: 2rem; } }

.home-set__item-image {
  width: 50%;
  background: var(--color-gray1);
  text-align: center; }
  @media screen and (max-width: 799px) {
    .home-set__item-image {
      width: 100%; } }

.home-set__item-image img {
  width: 60%;
  padding: 3rem; }
  @media screen and (max-width: 799px) {
    .home-set__item-image img {
      width: 70%;
      padding: 1.5rem; } }

.home-set__item-conte {
  width: 50%; }
  @media screen and (max-width: 799px) {
    .home-set__item-conte {
      width: 100%; } }

.home-set__item-note {
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  border: solid var(--color-gray2) 1px;
  font-size: var(--font-size-14);
  line-height: var(--line-height-m);
  padding: 2rem 2.5rem; }
  @media screen and (max-width: 799px) {
    .home-set__item-note {
      margin-top: 2.5rem; } }

.home-set__item-caption {
  font-size: var(--font-size-24);
  line-height: 1.8;
  margin-top: 5rem; }
  @media screen and (max-width: 799px) {
    .home-set__item-caption {
      margin-top: 3rem; } }

.home-set__item-notice {
  font-size: var(--font-size-13);
  line-height: var(--line-height-s);
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .home-set__item-notice {
      margin-top: 1.5rem; } }

.home-set__item-price {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-15);
  margin-top: 2rem;
  text-align: right; }
  .home-set__item-price span {
    color: var(--color-main4);
    font-family: "Times New Roman", Times, "serif";
    font-size: 4.2rem; }
    @media screen and (max-width: 799px) {
      .home-set__item-price span {
        font-size: 3.6rem; } }

.home-set__item-link {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 1rem; }
  @media screen and (max-width: 799px) {
    .home-set__item-link {
      margin-top: 2rem;
      display: block; } }

.home-set__item-btn {
  width: 25rem;
  height: 5rem;
  background: var(--color-main2);
  border-radius: 2.5rem;
  color: var(--color-white);
  font-size: var(--font-size-14);
  padding: 0 2.5rem 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .home-set__item-btn:nth-child(2) {
    background: #d6587c; }
    @media screen and (max-width: 799px) {
      .home-set__item-btn:nth-child(2) {
        margin-top: .5rem; } }
  .home-set__item-btn svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--color-white); }

/* ==========================================================================
   #home / about
========================================================================== */
.home-about__wrapper {
  padding-top: 18rem; }
  @media screen and (max-width: 799px) {
    .home-about__wrapper {
      padding-top: 7rem; } }

.home-about__catch {
  width: 100%;
  height: 65rem;
  position: relative; }
  @media screen and (max-width: 799px) {
    .home-about__catch {
      height: 35rem; } }

.home-about__image {
  width: 100%;
  height: 100%;
  position: relative; }
  .home-about__image::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    opacity: .3;
    z-index: 1; }
  .home-about__image img {
    object-fit: cover;
    width: 100%;
    height: 100%; }
    @media screen and (max-width: 799px) {
      .home-about__image img {
        object-position: 20% 50%; } }

.home-about__loop {
  position: absolute;
  left: 0;
  bottom: -3rem;
  width: 100%;
  overflow: hidden; }
  @media screen and (max-width: 799px) {
    .home-about__loop {
      bottom: -2.2rem; } }
  .home-about__loop .swiper {
    overflow: visible; }
  .home-about__loop .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important; }
  .home-about__loop .swiper-slide {
    color: var(--color-white);
    font-family: var(--font-family-serif);
    font-size: 10.5rem;
    width: max-content; }
    @media screen and (max-width: 799px) {
      .home-about__loop .swiper-slide {
        font-size: 8.5rem; } }

.home-about__conte {
  background: var(--color-gray1);
  padding-top: 18rem;
  padding-bottom: 14rem; }
  @media screen and (max-width: 799px) {
    .home-about__conte {
      padding-top: 7rem;
      padding-bottom: 7rem; } }
  .home-about__conte .c-caption {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .home-about__conte .c-caption {
        width: 84%; } }

.home-about__list {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .home-about__list {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .home-about__list {
      margin-top: 5rem; } }

.home-about__item {
  background: var(--color-white);
  border: solid #D0CCC3 1px;
  padding: 6rem 8rem;
  display: flex;
  column-gap: 8rem; }
  @media screen and (max-width: 799px) {
    .home-about__item {
      display: block;
      padding: 3rem 2.5rem; } }
  .home-about__item:nth-child(2n) {
    flex-direction: row-reverse; }
  .home-about__item + .home-about__item {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .home-about__item + .home-about__item {
        margin-top: 3rem; } }

.home-about__item-image {
  width: 42.5%; }
  @media screen and (max-width: 799px) {
    .home-about__item-image {
      width: 100%; } }

.home-about__item-note {
  flex: 1; }
  @media screen and (max-width: 799px) {
    .home-about__item-note {
      margin-top: 2rem; } }

.home-about__item-num {
  color: var(--color-main1);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-14);
  letter-spacing: .1em; }
  .home-about__item-num span {
    font-size: var(--font-size-32);
    margin-left: 1rem; }
    @media screen and (max-width: 799px) {
      .home-about__item-num span {
        margin-left: .8rem; } }

.home-about__item-heading {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-28);
  margin-top: 2.5rem; }
  @media screen and (max-width: 799px) {
    .home-about__item-heading {
      margin-top: 1rem;
      line-height: 1.2; } }

.home-about__item-text {
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: var(--font-size-14);
  line-height: var(--line-height-m);
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .home-about__item-text {
      margin-top: 1.5rem; } }

/* ==========================================================================
   #home / staff
========================================================================== */
.home-staff__wrapper {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  padding-top: 18rem; }
  @media screen and (max-width: 799px) {
    .home-staff__wrapper {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .home-staff__wrapper {
      padding-top: 7rem; } }

.home-staff__list {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10rem;
  grid-row-gap: 10rem; }
  @media screen and (max-width: 799px) {
    .home-staff__list {
      margin-top: 5rem;
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 5rem; } }

.home-staff__item-detail {
  display: flex;
  align-items: flex-end;
  column-gap: 6rem; }
  @media screen and (max-width: 799px) {
    .home-staff__item-detail {
      display: block; } }

.home-staff__item-image {
  width: 40%; }
  @media screen and (max-width: 799px) {
    .home-staff__item-image {
      width: 60%;
      margin-left: auto; } }

.home-staff__item-info {
  flex: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1; }
  @media screen and (max-width: 799px) {
    .home-staff__item-info {
      margin-top: -7rem;
      margin-bottom: 0; } }

.home-staff__item-en {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-28); }
  @media screen and (max-width: 799px) {
    .home-staff__item-en {
      font-size: 2.6rem;
      color: var(--color-gray3); } }

.home-staff__item-name {
  font-size: var(--font-size-20);
  margin-top: 3rem; }
  @media screen and (max-width: 799px) {
    .home-staff__item-name {
      margin-top: 4rem; } }

.home-staff__item-lank {
  font-size: var(--font-size-12);
  margin-top: 1.5rem; }

.home-staff__item-link {
  margin-top: 4rem; }

.home-staff__item-btn {
  width: 22rem;
  height: 4.6rem;
  background: var(--color-main2);
  border-radius: 2.3rem;
  color: var(--color-white);
  font-size: var(--font-size-13);
  padding: 0 2.5rem 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .home-staff__item-btn:nth-child(2) {
    background: var(--color-main3);
    margin-top: .5rem; }
  .home-staff__item-btn svg {
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--color-white); }
    @media screen and (max-width: 799px) {
      .home-staff__item-btn svg {
        width: 2.2rem;
        height: 2.2rem; } }

.home-staff__item-comment {
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  border: solid #D0CCC3 1px;
  font-size: var(--font-size-15);
  line-height: var(--line-height-m);
  margin-top: 3rem;
  padding: 2.5rem 3rem; }

/* ==========================================================================
   #home / menu
========================================================================== */
.home-menu__tax {
  font-size: var(--font-size-13);
  margin-top: 5rem;
  text-align: right; }
  @media screen and (max-width: 799px) {
    .home-menu__tax {
      margin-top: 3rem; } }

.home-menu__wrapper {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  padding-top: 18rem; }
  @media screen and (max-width: 799px) {
    .home-menu__wrapper {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .home-menu__wrapper {
      padding-top: 7rem; } }

.home-menu__container {
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    .home-menu__container {
      margin-top: 3rem; } }

.home-menu__block {
  border-top: solid var(--color-gray2) 1px;
  padding-top: 2rem; }
  .home-menu__block + .home-menu__block {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .home-menu__block + .home-menu__block {
        margin-top: 5rem; } }

.home-menu__label {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-28);
  line-height: 6rem;
  text-align: center; }
  @media screen and (max-width: 799px) {
    .home-menu__label {
      font-size: 2rem;
      line-height: 4rem;
      text-align: left; } }
  .home-menu__label::before {
    width: 6rem;
    height: 6rem;
    background: var(--color-gray1);
    border-radius: 100%;
    font-family: var(--font-family-main);
    font-size: var(--font-size-16);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; }
    @media screen and (max-width: 799px) {
      .home-menu__label::before {
        width: 4rem;
        height: 4rem; } }

.home-menu__input:checked ~ .home-menu__conte {
  margin-top: 5rem; }
  @media screen and (max-width: 799px) {
    .home-menu__input:checked ~ .home-menu__conte {
      margin-top: 4rem; } }

.home-menu__conte-cat + .home-menu__conte-cat {
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .home-menu__conte-cat + .home-menu__conte-cat {
      margin-top: 6rem; } }

.home-menu__conte-caption {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-24); }

.home-menu__conte-notice {
  font-size: var(--font-size-12);
  line-height: var(--line-height-s);
  margin-top: 1.5rem; }

.home-menu__conte-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 8rem;
  grid-row-gap: 4rem;
  margin-top: 5rem; }
  @media screen and (max-width: 799px) {
    .home-menu__conte-list {
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 2.5rem;
      margin-top: 3rem; } }

.home-menu__conte-item {
  border-bottom: solid var(--color-gray2) 1px;
  padding-bottom: 2rem; }
  @media screen and (max-width: 799px) {
    .home-menu__conte-item {
      padding-bottom: 1.2; } }

.home-menu__conte-menu {
  display: flex;
  align-items: flex-start;
  justify-content: space-between; }
  @media screen and (max-width: 799px) {
    .home-menu__conte-menu {
      display: block; } }
  .home-menu__conte-menu li {
    font-size: var(--font-size-15);
    line-height: var(--line-height-s); }
    .home-menu__conte-menu li:nth-child(2) {
      text-align: right; }
      @media screen and (max-width: 799px) {
        .home-menu__conte-menu li:nth-child(2) {
          margin-top: .8rem;
          letter-spacing: .05em; } }

.home-menu__conte-text {
  color: var(--color-gray2);
  font-size: var(--font-size-12);
  margin-top: .8rem; }
  @media screen and (max-width: 799px) {
    .home-menu__conte-text {
      margin-top: .5rem;
      line-height: 1.4; } }

/* ==========================================================================
   #home / salon
========================================================================== */
.home-salon__wrapper {
  padding-top: 18rem;
  padding-bottom: 8rem;
  position: relative; }
  @media screen and (max-width: 799px) {
    .home-salon__wrapper {
      padding-top: 7rem;
      padding-bottom: 10rem; } }
  .home-salon__wrapper::before {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 75%;
    height: calc(100% - 36rem);
    background: var(--color-gray1);
    z-index: -1; }

.home-salon__gallery {
  overflow: hidden; }
  .home-salon__gallery .swiper {
    overflow: visible; }
  .home-salon__gallery .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important; }
  .home-salon__gallery .swiper-slide {
    color: var(--color-white);
    font-family: var(--font-family-serif);
    width: 30%; }
    @media screen and (max-width: 799px) {
      .home-salon__gallery .swiper-slide {
        width: 70%; } }

.home-salon__conte {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: flex;
  column-gap: 12rem;
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .home-salon__conte {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .home-salon__conte {
      display: block;
      margin-top: 8rem; } }

.home-salon__image {
  width: 42.5%; }
  @media screen and (max-width: 799px) {
    .home-salon__image {
      width: 70%;
      margin-left: auto; } }

.home-salon__info {
  flex: 1;
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    .home-salon__info {
      margin-top: 6rem; } }

.home-salon__info-caption {
  font-size: var(--font-size-16);
  font-weight: 500;
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .home-salon__info-caption {
      margin-top: 5rem; } }

.home-salon__info-list {
  margin-top: 3.5rem; }
  @media screen and (max-width: 799px) {
    .home-salon__info-list {
      margin-top: 3rem; } }

.home-salon__info-item {
  border-bottom: solid var(--color-gray2) 1px;
  display: flex;
  padding: 2.5rem 0; }
  @media screen and (max-width: 799px) {
    .home-salon__info-item {
      padding: 2.2rem 0; } }
  .home-salon__info-item:nth-child(1) {
    border-top: solid var(--color-gray2) 1px; }
  .home-salon__info-item dt, .home-salon__info-item dd {
    font-size: var(--font-size-15);
    line-height: var(--line-height-s); }
  .home-salon__info-item dt {
    width: 15rem;
    font-weight: 400; }
    @media screen and (max-width: 799px) {
      .home-salon__info-item dt {
        width: 10rem; } }
  .home-salon__info-item dd {
    flex: 1; }

.home-salon__foot {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: flex;
  column-gap: 8rem;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .home-salon__foot {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .home-salon__foot {
      flex-direction: column-reverse;
      margin-top: 6rem; } }

.home-salon__map {
  width: 65%; }
  @media screen and (max-width: 799px) {
    .home-salon__map {
      width: 100%;
      margin-top: 7rem; } }
  .home-salon__map iframe {
    width: 100%; }
    @media screen and (max-width: 799px) {
      .home-salon__map iframe {
        height: 40rem; } }

.home-salon__cal {
  flex: 1; }
  @media screen and (max-width: 799px) {
    .home-salon__cal {
      flex: auto; } }
  .home-salon__cal .c-caption {
    margin-top: 2rem;
    margin-bottom: 3rem; }
  .home-salon__cal .c-caption__heading {
    font-size: var(--font-size-26); }
  .home-salon__cal p {
    font-size: var(--font-size-15); }
  .home-salon__cal .cal_wrapper {
    position: relative;
    padding-top: .6rem; }
  .home-salon__cal .cal_ui {
    position: absolute;
    top: 0;
    right: 0;
    width: 9rem;
    height: 3rem;
    display: flex; }
    .home-salon__cal .cal_ui .cal_prev,
    .home-salon__cal .cal_ui .cal_to,
    .home-salon__cal .cal_ui .cal_next {
      width: 3rem;
      height: 3rem;
      position: relative; }
      .home-salon__cal .cal_ui .cal_prev::before,
      .home-salon__cal .cal_ui .cal_to::before,
      .home-salon__cal .cal_ui .cal_next::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .home-salon__cal .cal_ui .cal_prev::before {
      content: '＜'; }
    .home-salon__cal .cal_ui .cal_to::before {
      content: '■'; }
    .home-salon__cal .cal_ui .cal_next::before {
      content: '＞'; }
  .home-salon__cal .cal_main {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: solid var(--color-gray2) 1px;
    border-left: solid var(--color-gray2) 1px;
    margin-top: 2rem; }
    .home-salon__cal .cal_main li {
      border-right: solid var(--color-gray2) 1px;
      border-bottom: solid var(--color-gray2) 1px;
      font-family: Arial, Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
      font-size: var(--font-size-15);
      text-align: center;
      padding: 1.3rem 0; }
      @media screen and (max-width: 799px) {
        .home-salon__cal .cal_main li {
          padding: 1.1rem 0; } }
      .home-salon__cal .cal_main li.sun, .home-salon__cal .cal_main li.holiday {
        color: var(--color-white);
        background: var(--color-main3); }

.home-salon__cal-text {
  margin-top: 2rem; }
  .home-salon__cal-text span {
    color: var(--color-main3); }
