@charset "UTF-8";
/* ==========================================================================
 *
 * root scss
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #333333;
  --color-white: #FFFFFF;
  --color-gray: #818181;
  --color-bg: #F2F2F2; }

/* ==========================================================================
   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.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: YakuHanMPs, "Noto Serif JP", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  --font-family-serif: "Times New Roman", serif; }

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

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

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

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

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

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

.l-toggle.js-active span {
  background: var(--color-black); }
.l-toggle.js-active span:nth-child(1) {
  top: 4px;
  transform: rotate(15deg); }
.l-toggle.js-active span:nth-child(2) {
  bottom: 4px;
  transform: rotate(-15deg); }

.l-toggle.js-change span {
  background: var(--color-black); }

/* ==========================================================================
   sitemap
========================================================================== */
.l-sitemap {
  opacity: 0;
  visibility: hidden;
  transition-property: transform, opacity;
  transition-duration: .25s;
  transition-timing-function: ease; }
  .l-sitemap ul li {
    transform: translate(0, 20px);
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .l-sitemap ul li:nth-child(2) {
      transition-delay: 0.2s; }
    .l-sitemap ul li:nth-child(3) {
      transition-delay: 0.4s; }
    .l-sitemap ul li:nth-child(4) {
      transition-delay: 0.6s; }
    .l-sitemap ul li:nth-child(5) {
      transition-delay: 0.8s; }
    .l-sitemap ul li:nth-child(6) {
      transition-delay: 1s; }
    .l-sitemap ul li:nth-child(7) {
      transition-delay: 1.2s; }
    .l-sitemap ul li:nth-child(8) {
      transition-delay: 1.4s; }
    .l-sitemap ul li:nth-child(9) {
      transition-delay: 1.6s; }
    .l-sitemap ul li:nth-child(10) {
      transition-delay: 1.8s; }
    .l-sitemap ul li:nth-child(11) {
      transition-delay: 2s; }

.l-sitemap.js-active {
  opacity: 1;
  visibility: visible; }
  .l-sitemap.js-active ul li {
    transform: translate(0, 0);
    opacity: 1; }

/* ==========================================================================
 *
 * nav scss
 *
========================================================================== */
/* ==========================================================================
   img-scale
========================================================================== */
.c-img-scale {
  overflow: hidden; }
  .c-img-scale img {
    transform: scale(1.2);
    transition-property: transform;
    transition-duration: 3.5s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }

.c-img-scale.js-active img {
  transform: scale(1); }

/* ==========================================================================
   footer-hide
========================================================================== */
.c-footer-hide {
  transition-property: opacity, visibility;
  transition-duration: .25s;
  transition-timing-function: ease; }

.c-footer-hide.js-active {
  opacity: 0;
  visibility: hidden; }

/* ==========================================================================
   fade
========================================================================== */
.c-fade {
  transform: translateY(10px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 1s;
  transition-delay: .3s;
  transition-timing-function: ease; }

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

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

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

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

/* ==========================================================================
 *
 * accordion scss
 * -
 *
========================================================================== */
.c-accordion {
  position: relative; }
  .c-accordion .accordion__input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0; }
  .c-accordion .accordion__label {
    width: 100%;
    display: block;
    cursor: pointer;
    position: relative;
    transition: 0.4s ease;
    height: 8.4rem;
    display: flex;
    align-items: center;
    column-gap: 3rem;
    background: var(--color-bg);
    border-radius: 1rem;
    padding: 0 8rem 0 5rem; }
    @media screen and (max-width: 799px) {
      .c-accordion .accordion__label {
        column-gap: 1.5rem;
        padding: 0 5rem 0 2.5rem; } }
    .c-accordion .accordion__label ._num {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-22);
      line-height: var(--line-height-s); }
    .c-accordion .accordion__label ._cap {
      flex: 1;
      font-size: var(--font-size-18);
      line-height: var(--line-height-s); }
      @media screen and (max-width: 799px) {
        .c-accordion .accordion__label ._cap {
          font-size: 1.5rem; } }
    .c-accordion .accordion__label::before {
      position: absolute;
      content: '+';
      top: 50%;
      right: 3.5rem;
      transform: translateY(-50%);
      font-size: var(--font-size-24); }
      @media screen and (max-width: 799px) {
        .c-accordion .accordion__label::before {
          right: 2rem; } }
  .c-accordion .accordion__conte {
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    transition: 0.4s ease;
    opacity: 0;
    display: flex;
    column-gap: 3rem;
    align-items: baseline;
    padding: 0 8rem 0 5rem; }
    @media screen and (max-width: 799px) {
      .c-accordion .accordion__conte {
        column-gap: 1.5rem;
        padding: 0 2.5rem 0 2.5rem; } }
    .c-accordion .accordion__conte ._num {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-22);
      line-height: var(--line-height-m); }
    .c-accordion .accordion__conte ._note {
      flex: 1; }
    .c-accordion .accordion__conte ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m); }
    .c-accordion .accordion__conte ._list li {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      position: relative;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding-left: 2rem; }
    .c-accordion .accordion__conte ._list li::before {
      position: absolute;
      content: '・';
      top: 0;
      left: 0; }
    .c-accordion .accordion__conte ._mt {
      margin-top: 2rem; }
  .c-accordion .accordion__input:checked ~ .accordion__conte {
    height: auto;
    opacity: 1;
    padding-top: 3rem;
    padding-bottom: 3rem; }
    @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: '-'; }

.c-accordion + .c-accordion {
  margin-top: 1.5rem; }
  @media screen and (max-width: 799px) {
    .c-accordion + .c-accordion {
      margin-top: 1rem; } }

/* ==========================================================================
 *
 * btn scss
 *
========================================================================== */
/* ==========================================================================
   btn1
========================================================================== */
.c-btn1 {
  background: var(--color-main1);
  border-radius: 3.2rem;
  color: var(--color-white);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 27.5rem;
  height: 6.4rem;
  padding: 0 3rem 0 4rem;
  transition: background .25s ease; }
  .c-btn1 svg {
    fill: var(--color-white);
    width: 1.8rem;
    height: 1.8rem; }
  .c-btn1:hover {
    background: var(--color-black); }

/* ==========================================================================
   btn2
========================================================================== */
.c-btn2 {
  background: var(--color-main1);
  border-radius: 3.2rem;
  color: var(--color-white);
  font-family: var(--font-family-sans);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 27.5rem;
  height: 6.4rem;
  padding: 0 3rem 0 4rem;
  transition: background .25s ease; }
  .c-btn2 svg {
    fill: var(--color-white);
    width: 2.6rem;
    height: 2.6rem; }
  .c-btn2:hover {
    background: var(--color-black); }

.c-btn2__label {
  flex: 1;
  margin-left: 2rem; }

.c-btn2__txt {
  display: block;
  font-size: var(--font-size-15);
  margin-bottom: .3rem; }

.c-btn2__num {
  font-size: var(--font-size-10); }

/* ==========================================================================
   btn3
========================================================================== */
.c-btn3 {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15);
  display: flex;
  align-items: center; }
  .c-btn3 svg {
    width: 1.6rem;
    height: 1.6rem; }
  .c-btn3:hover .c-btn3__icon {
    background: var(--color-black); }
  .c-btn3:hover svg {
    fill: var(--color-white); }

.c-btn3__icon {
  border: solid var(--color-black) 1px;
  border-radius: 50%;
  margin-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 3.6rem;
  transition: background .25s ease; }

/* ==========================================================================
   btn4
========================================================================== */
.c-btn4 {
  position: relative;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15); }
  .c-btn4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.5rem;
    width: 0;
    height: 1px;
    background-color: var(--color-black);
    transition: width .25s ease; }
  .c-btn4:hover::after {
    width: 100%; }

/* ==========================================================================
 *
 * text scss
 * text-anime1 / text-anime2
 *
========================================================================== */
/* ==========================================================================
   text-anime1
========================================================================== */
.c-text-anime1 .c-text-block {
  display: block; }
.c-text-anime1 .c-text-divide {
  display: block;
  overflow: hidden; }
  .c-text-anime1 .c-text-divide .js-char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
    .c-text-anime1 .c-text-divide .js-char:nth-child(1) {
      transition-delay: .3s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(2) {
      transition-delay: 0.35s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(3) {
      transition-delay: 0.4s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(4) {
      transition-delay: 0.45s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(5) {
      transition-delay: 0.5s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(6) {
      transition-delay: 0.55s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(7) {
      transition-delay: 0.6s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(8) {
      transition-delay: 0.65s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(9) {
      transition-delay: 0.7s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(10) {
      transition-delay: 0.75s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(11) {
      transition-delay: 0.8s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(12) {
      transition-delay: 0.85s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(13) {
      transition-delay: 0.9s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(14) {
      transition-delay: 0.95s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(15) {
      transition-delay: 1s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(16) {
      transition-delay: 1.05s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(17) {
      transition-delay: 1.1s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(18) {
      transition-delay: 1.15s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(19) {
      transition-delay: 1.2s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(20) {
      transition-delay: 1.25s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(21) {
      transition-delay: 1.3s; }
.c-text-anime1.js-active .c-text-block {
  display: block; }
.c-text-anime1.js-active .c-text-divide .js-char {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

/* ==========================================================================
   text-anime2
========================================================================== */
.c-text-anime2 .c-text-block {
  display: block; }
.c-text-anime2 .c-text-divide {
  display: block;
  overflow: hidden; }
  .c-text-anime2 .c-text-divide .js-char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(-100%, 0, 0) scale(2);
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
    .c-text-anime2 .c-text-divide .js-char:nth-child(1) {
      transition-delay: .3s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(2) {
      transition-delay: 0.35s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(3) {
      transition-delay: 0.4s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(4) {
      transition-delay: 0.45s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(5) {
      transition-delay: 0.5s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(6) {
      transition-delay: 0.55s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(7) {
      transition-delay: 0.6s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(8) {
      transition-delay: 0.65s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(9) {
      transition-delay: 0.7s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(10) {
      transition-delay: 0.75s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(11) {
      transition-delay: 0.8s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(12) {
      transition-delay: 0.85s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(13) {
      transition-delay: 0.9s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(14) {
      transition-delay: 0.95s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(15) {
      transition-delay: 1s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(16) {
      transition-delay: 1.05s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(17) {
      transition-delay: 1.1s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(18) {
      transition-delay: 1.15s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(19) {
      transition-delay: 1.2s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(20) {
      transition-delay: 1.25s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(21) {
      transition-delay: 1.3s; }
.c-text-anime2.js-active .c-text-block {
  display: block; }
.c-text-anime2.js-active .c-text-divide .js-char {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1); }

/* ==========================================================================
 *
 * common scss
 *
========================================================================== */
/* ==========================================================================
   #general
========================================================================== */
html {
  font-size: 62.5%; }
  @media screen and (min-width: 1920px) {
    html {
      font-size: 0.5211047421vw; } }
  @media screen and (min-width: 800px) and (max-width: 1199px) {
    html {
      font-size: 0.834028357vw; } }
  @media screen and (max-width: 374px) {
    html {
      font-size: 2.6737967914vw; } }

body {
  font-family: var(--font-family-main);
  font-optical-sizing: auto; }

h1, h2, h3, h4, h5, p, li, dt, dd {
  color: var(--color-black);
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing-m); }

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

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

.c-head {
  width: fit-content; }
  .c-head ._cap {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-36);
    text-align: center; }
  .c-head ._label {
    font-size: var(--font-size-15);
    margin-top: .8rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .c-head ._label {
        font-size: 1.3rem; } }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 3rem 3rem 0;
  z-index: var(--z-index-header); }
  @media screen and (max-width: 799px) {
    .l-header {
      padding: 2rem; } }
  .l-header .header__logo img {
    width: 12.5rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__logo img {
        width: 9rem; } }
  .l-header .header__nav {
    height: 5.6rem;
    display: flex;
    align-items: center;
    column-gap: 3rem;
    background: var(--color-white);
    border-radius: 2.8rem;
    padding: 0 4rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__nav {
        display: none; } }
    .l-header .header__nav li {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-14);
      letter-spacing: 0; }
    .l-header .header__nav a {
      transition: opacity .3s; }
    .l-header .header__nav a:hover {
      opacity: .5; }

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

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg);
  padding-top: 15vh;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }
  .l-sitemap .sitemap__wrap {
    padding: 0 8%; }
  .l-sitemap .sitemap__nav li {
    position: relative;
    font-size: var(--font-size-14);
    padding-left: 2.5rem;
    line-height: 1.4; }
  .l-sitemap .sitemap__nav li span {
    display: block;
    font-family: var(--font-family-serif);
    font-size: var(--font-size-18); }
  .l-sitemap .sitemap__nav li::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: .8rem;
    height: .8rem;
    background: #AC6455; }
  .l-sitemap .sitemap__nav li + li {
    margin-top: 2.5rem; }
  .l-sitemap .sitemap__copy {
    position: absolute;
    right: 8%;
    bottom: 3rem;
    font-family: var(--font-family-serif);
    font-size: var(--font-size-12);
    letter-spacing: 0; }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  right: .5rem;
  bottom: .5rem;
  width: 56rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 579px) {
    .l-contact {
      width: calc(100% - 1rem); } }
  .l-contact::before {
    position: absolute;
    content: '';
    top: 30%;
    left: 50%;
    width: 1px;
    height: 40%;
    background: var(--color-white); }
  .l-contact ._btn {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
    background: var(--color-gray);
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .l-contact ._btn {
        height: 5.6rem;
        column-gap: 1.5rem; } }
    .l-contact ._btn svg {
      width: 2.6rem;
      height: 2.6rem;
      fill: var(--color-white); }
      @media screen and (max-width: 799px) {
        .l-contact ._btn svg {
          width: 2.2rem;
          height: 2.2rem; } }
    .l-contact ._btn ._label {
      color: var(--color-white);
      font-size: var(--font-size-15);
      margin-right: 1rem; }
  .l-contact ._btn:hover {
    background: var(--color-black); }
  .l-contact ._btn:nth-child(1) {
    border-radius: .5rem 0 0 .5rem; }
  .l-contact ._btn:nth-child(2) {
    border-radius: 0 .5rem .5rem 0; }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  margin-left: auto;
  margin-right: auto;
  width: 88%;
  max-width: var(--container-l);
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  margin-top: 16rem;
  padding-bottom: 14rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .l-footer {
      display: block;
      margin-top: 8rem;
      padding-bottom: 6rem; } }
  .l-footer .footer__logo {
    width: 18rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__logo {
        width: 10rem;
        margin: 0 auto; } }
    .l-footer .footer__logo img {
      width: 100%; }
  .l-footer .footer__conte {
    position: relative;
    flex: 1;
    margin-bottom: 2rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__conte {
        margin-top: 4rem;
        margin-bottom: 0;
        padding-top: 3rem; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__conte::before {
        position: absolute;
        content: '';
        top: 0;
        left: 50%;
        width: 5rem;
        height: 1px;
        transform: translateX(-50%);
        background: var(--color-black); } }
  .l-footer .footer__conte-nav {
    display: flex;
    column-gap: 3.5rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__conte-nav {
        display: block; } }
    .l-footer .footer__conte-nav li {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-16);
      letter-spacing: 0; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__conte-nav li {
          margin-top: 2rem;
          text-align: center; } }
    .l-footer .footer__conte-nav a {
      transition: opacity .3s; }
    .l-footer .footer__conte-nav a:hover {
      opacity: .5; }
  .l-footer .footer__conte-copy {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-13);
    letter-spacing: 0;
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__conte-copy {
        margin-top: 5rem;
        text-align: center; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 10vh;
  height: 100svh; }
  .p-index-hero .hero__photo {
    position: relative;
    width: 100%;
    height: 100%; }
    .p-index-hero .hero__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 0; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__photo img {
          object-position: 87.5% 50%; } }
    .p-index-hero .hero__photo::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background: var(--color-black);
      opacity: .2; }
  .p-index-hero .hero__head {
    position: absolute;
    bottom: 50%;
    left: 8%;
    transform: translateY(50%); }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__head {
        left: auto;
        bottom: 32.5%;
        right: 7%; } }
    .p-index-hero .hero__head ._cap {
      font-size: var(--font-size-24);
      line-height: var(--line-height-l);
      letter-spacing: var(--letter-spacing-l); }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__head ._cap {
          font-size: 1.6rem;
          color: var(--color-white); } }

/* ==========================================================================
   #message
========================================================================== */
.p-index-message .message__wrap {
  margin-left: auto;
  margin-right: auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-message .message__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-message .message__wrap {
      margin-top: 8rem; } }
.p-index-message .message__head .c-head {
  margin: 0 auto; }
.p-index-message .message__note {
  margin-top: 6rem; }
  @media screen and (max-width: 799px) {
    .p-index-message .message__note {
      margin-top: 4rem; } }
  .p-index-message .message__note p {
    font-size: var(--font-size-16);
    line-height: var(--line-height-l);
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__note p {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 2; } }
  .p-index-message .message__note p + p {
    margin-top: 1.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__note p + p {
        margin-top: 1.2rem; } }

/* ==========================================================================
   #pickup
========================================================================== */
.p-index-pickup {
  background: var(--color-bg);
  margin-top: 14rem;
  padding-top: 12rem;
  padding-bottom: 12rem; }
  @media screen and (max-width: 799px) {
    .p-index-pickup {
      margin-top: 6rem;
      padding-top: 6rem;
      padding-bottom: 6rem; } }
  .p-index-pickup .pickup__wrap {
    margin-left: auto;
    margin-right: auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-index-pickup .pickup__wrap {
        width: 84%; } }
  .p-index-pickup .pickup__cat {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-pickup .pickup__cat {
        margin-top: 5rem; } }
  .p-index-pickup .pickup__cat-head ._cat {
    border-left: solid #8E9A92 1rem;
    font-size: var(--font-size-26);
    font-weight: var(--font-wight-semibold);
    padding-left: 1.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-pickup .pickup__cat-head ._cat {
        border-left: solid #8E9A92 .8rem;
        font-size: 1.8rem;
        padding-left: 1.2rem; } }
  .p-index-pickup .pickup__cat-list {
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-pickup .pickup__cat-list {
        margin-top: 3rem; } }
  .p-index-pickup .pickup__cat-list-item + .pickup__cat-list-item {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-pickup .pickup__cat-list-item + .pickup__cat-list-item {
        margin-top: 5rem; } }
  .p-index-pickup .pickup__cat-list-head {
    position: relative;
    font-family: var(--font-family-serif);
    font-size: var(--font-size-22);
    letter-spacing: .05em;
    padding-left: 2.5rem; }
    .p-index-pickup .pickup__cat-list-head::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 1.5rem;
      height: 1.5rem;
      background: #AC6455; }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-head::before {
          width: 1.2rem;
          height: 1.2rem; } }
  .p-index-pickup .pickup__cat-list-col {
    display: flex;
    column-gap: 8rem;
    margin-top: 1rem; }
    @media screen and (max-width: 799px) {
      .p-index-pickup .pickup__cat-list-col {
        display: block; } }
  .p-index-pickup .pickup__cat-list-photo {
    flex: 1;
    padding-left: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-pickup .pickup__cat-list-photo {
        padding-left: 0; } }
    .p-index-pickup .pickup__cat-list-photo img {
      width: 100%; }
  .p-index-pickup .pickup__cat-list-conte {
    width: 52.5%; }
    @media screen and (max-width: 799px) {
      .p-index-pickup .pickup__cat-list-conte {
        width: 100%;
        margin-top: 2.5rem; } }
    .p-index-pickup .pickup__cat-list-conte ._head {
      display: flex;
      align-items: center;
      column-gap: 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-conte ._head {
          display: block; } }
    .p-index-pickup .pickup__cat-list-conte ._head ._pop {
      display: flex;
      column-gap: .6rem; }
    .p-index-pickup .pickup__cat-list-conte ._head ._pop li {
      width: 8.6rem;
      height: 8.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100%;
      font-size: var(--font-size-14);
      line-height: 1.2;
      letter-spacing: 0;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-conte ._head ._pop li {
          width: auto;
          height: 3.4rem;
          border-radius: 1.7rem;
          padding: 0 1.5rem; } }
    .p-index-pickup .pickup__cat-list-conte ._pop li._c1 {
      background: #CADED0; }
    .p-index-pickup .pickup__cat-list-conte ._pop li._c2 {
      background: #DED8CA; }
    .p-index-pickup .pickup__cat-list-conte ._head ._cap {
      flex: 1; }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-conte ._head ._cap {
          margin-top: 1.5rem; } }
    .p-index-pickup .pickup__cat-list-conte ._head ._cap ._label {
      font-size: var(--font-size-18);
      line-height: var(--line-height-s); }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-conte ._head ._cap ._label {
          font-size: 1.4rem; } }
    .p-index-pickup .pickup__cat-list-conte ._head ._cap ._menu {
      font-size: var(--font-size-24);
      font-weight: var(--font-wight-semibold);
      line-height: var(--line-height-s);
      margin-top: .3rem; }
    .p-index-pickup .pickup__cat-list-conte ._head ._cap ._menu span {
      font-size: var(--font-size-16); }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-conte ._head ._cap ._menu span {
          display: block; } }
    .p-index-pickup .pickup__cat-list-conte ._notice {
      font-size: var(--font-size-13);
      line-height: var(--line-height-m);
      margin-top: 1.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-conte ._notice {
          margin-top: 1rem; } }
    .p-index-pickup .pickup__cat-list-conte ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      background: var(--color-white);
      border-radius: 1rem;
      font-size: var(--font-size-14);
      line-height: var(--line-height-m);
      margin-top: 2.5rem;
      padding: 1.5rem 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-conte ._txt {
          margin-top: 1.5rem; } }
    .p-index-pickup .pickup__cat-list-conte ._price {
      font-size: var(--font-size-18);
      margin-top: 2.5rem;
      text-align: right; }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-conte ._price {
          margin-top: 1.5rem; } }
    .p-index-pickup .pickup__cat-list-conte ._price span {
      color: #B44D4D;
      font-family: var(--font-family-serif);
      font-size: 4.6rem; }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-conte ._price span {
          font-size: 4rem; } }
    .p-index-pickup .pickup__cat-list-conte ._link {
      width: 50rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: .8rem;
      margin-top: 1.5rem;
      margin-left: auto; }
      @media screen and (max-width: 799px) {
        .p-index-pickup .pickup__cat-list-conte ._link {
          width: 100%;
          grid-row-gap: .6rem;
          margin-top: 1rem; } }
      @media screen and (max-width: 579px) {
        .p-index-pickup .pickup__cat-list-conte ._link {
          grid-template-columns: repeat(1, 1fr); } }
    .p-index-pickup .pickup__cat-list-conte ._link ._btn {
      height: 5.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 2rem;
      border-radius: 1rem;
      transition: background .3s; }
    .p-index-pickup .pickup__cat-list-conte ._link ._btn._c1 {
      background: #9AB2A1; }
    .p-index-pickup .pickup__cat-list-conte ._link ._btn._c1:hover {
      background: #5f886b; }
    .p-index-pickup .pickup__cat-list-conte ._link ._btn._c2 {
      background: #707070; }
    .p-index-pickup .pickup__cat-list-conte ._link ._btn._c2:hover {
      background: var(--color-black); }
    .p-index-pickup .pickup__cat-list-conte ._link ._btn svg {
      width: 2.6rem;
      height: 2.6rem;
      fill: var(--color-white); }
    .p-index-pickup .pickup__cat-list-conte ._link ._btn ._label {
      color: var(--color-white);
      font-size: var(--font-size-15);
      margin-right: 1rem; }

/* ==========================================================================
   #features
========================================================================== */
.p-index-features .features__wrap {
  margin-left: auto;
  margin-right: auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-features .features__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-features .features__wrap {
      margin-top: 8rem; } }
.p-index-features .features__list {
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-features .features__list {
      margin-top: 5rem; } }
.p-index-features .features__list-item {
  display: flex;
  column-gap: 10rem; }
  @media screen and (max-width: 799px) {
    .p-index-features .features__list-item {
      display: block; } }
.p-index-features .features__list-item + .features__list-item {
  margin-top: 6rem; }
  @media screen and (max-width: 799px) {
    .p-index-features .features__list-item + .features__list-item {
      margin-top: 4rem; } }
.p-index-features .features__list-item:nth-child(2n) {
  flex-direction: row-reverse; }
.p-index-features .features__list-photo {
  width: 47.5%; }
  @media screen and (max-width: 799px) {
    .p-index-features .features__list-photo {
      width: 100%; } }
  .p-index-features .features__list-photo img {
    width: 100%; }
.p-index-features .features__list-conte {
  flex: 1;
  margin-top: 6rem; }
  @media screen and (max-width: 799px) {
    .p-index-features .features__list-conte {
      margin-top: 3.5rem; } }
  .p-index-features .features__list-conte ._label {
    position: relative;
    font-family: var(--font-family-serif);
    font-size: var(--font-size-16);
    padding-left: 2rem; }
  .p-index-features .features__list-conte ._label::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    background: #AC6455; }
  .p-index-features .features__list-conte ._cap {
    font-size: var(--font-size-24);
    line-height: var(--line-height-m);
    margin-top: 1rem; }
  .p-index-features .features__list-conte ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-15);
    line-height: var(--line-height-m);
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-features .features__list-conte ._txt {
        margin-top: 1rem; } }

/* ==========================================================================
   #faq
========================================================================== */
.p-index-faq .faq__wrap {
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-faq .faq__wrap {
      margin-top: 8rem; } }
.p-index-faq .faq__head {
  margin-left: auto;
  margin-right: auto;
  width: 88%;
  max-width: var(--container-l); }
  @media screen and (max-width: 799px) {
    .p-index-faq .faq__head {
      width: 84%; } }
.p-index-faq .faq__list {
  margin-left: auto;
  margin-right: auto;
  width: 88%;
  max-width: var(--container-s);
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-faq .faq__list {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-faq .faq__list {
      margin-top: 5rem; } }

/* ==========================================================================
   #staff
========================================================================== */
.p-index-staff {
  background: var(--color-bg);
  margin-top: 14rem;
  padding-top: 12rem;
  padding-bottom: 12rem; }
  @media screen and (max-width: 799px) {
    .p-index-staff {
      margin-top: 6rem;
      padding-top: 6rem;
      padding-bottom: 6rem; } }
  .p-index-staff .staff__head {
    margin-left: auto;
    margin-right: auto;
    width: 88%;
    max-width: var(--container-l); }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__head {
        width: 84%; } }
  .p-index-staff .staff__list {
    margin-left: auto;
    margin-right: auto;
    width: 88%;
    max-width: var(--container-m);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 12rem;
    grid-row-gap: 6rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 5rem;
        margin-top: 4rem; } }
  .p-index-staff .staff__list-col {
    display: flex;
    align-items: flex-end;
    column-gap: 2rem;
    flex-direction: row-reverse; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-col {
        display: block; } }
  .p-index-staff .staff__list-col-photo {
    width: 35%; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-col-photo {
        width: 50%;
        margin-left: auto; } }
    .p-index-staff .staff__list-col-photo img {
      width: 100%; }
  .p-index-staff .staff__list-col-info {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-col-info {
        margin-top: -5rem; } }
    .p-index-staff .staff__list-col-info ._name {
      font-size: var(--font-size-26); }
    .p-index-staff .staff__list-col-info ._kana {
      font-size: var(--font-size-13);
      margin-top: 1rem; }
    .p-index-staff .staff__list-col-info ._lank {
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      margin-top: 2.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-staff .staff__list-col-info ._lank {
          margin-top: 2rem; } }
    .p-index-staff .staff__list-col-info ._year {
      font-size: var(--font-size-15);
      line-height: var(--line-height-m); }
  .p-index-staff .staff__list-message {
    margin-top: 1.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__list-message {
        margin-top: 0; } }
    .p-index-staff .staff__list-message ._label {
      border-bottom: solid #707070 1px;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      padding-bottom: 1rem;
      text-align: right; }
    .p-index-staff .staff__list-message ._label span {
      margin-left: 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-staff .staff__list-message ._label span {
          margin-left: 1rem; } }
    .p-index-staff .staff__list-message ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      margin-top: 2rem; }

/* ==========================================================================
   #salon
========================================================================== */
.p-index-salon .salon__wrap {
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__wrap {
      margin-top: 8rem; } }
.p-index-salon .salon_gallery {
  position: relative; }
.p-index-salon ._sq {
  position: absolute;
  opacity: .4;
  z-index: -2; }
.p-index-salon ._sq1 {
  top: -4rem;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: #B5D3E7; }
  @media screen and (max-width: 799px) {
    .p-index-salon ._sq1 {
      top: -5rem;
      left: 0;
      width: 15rem;
      height: 15rem; } }
.p-index-salon ._sq2 {
  left: 32.5%;
  bottom: 8rem;
  width: 18rem;
  height: 18rem;
  background: #99AEB3; }
  @media screen and (max-width: 799px) {
    .p-index-salon ._sq2 {
      left: auto;
      right: 2%;
      bottom: 50%;
      width: 10rem;
      height: 10rem; } }
.p-index-salon ._sq3 {
  top: 4rem;
  right: 27.5%;
  width: 13rem;
  height: 13rem;
  background: #AC6455; }
  @media screen and (max-width: 799px) {
    .p-index-salon ._sq3 {
      top: auto;
      right: auto;
      left: 8%;
      bottom: 2rem;
      width: 5rem;
      height: 5rem; } }
.p-index-salon ._sq4 {
  top: 18rem;
  right: 15%;
  width: 6rem;
  height: 6rem;
  background: #B0A89A; }
  @media screen and (max-width: 799px) {
    .p-index-salon ._sq4 {
      top: auto;
      right: auto;
      left: calc(8% + 7rem);
      bottom: 0;
      width: 3rem;
      height: 3rem; } }
.p-index-salon .salon_gallery-inner {
  margin-left: auto;
  margin-right: auto;
  width: 88%;
  max-width: var(--container-m);
  position: relative;
  padding-bottom: 24rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon_gallery-inner {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon_gallery-inner {
      padding-bottom: 5rem; } }
  .p-index-salon .salon_gallery-inner img {
    width: 100%; }
  .p-index-salon .salon_gallery-inner ._photo1 {
    width: 55%; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon_gallery-inner ._photo1 {
        width: 100%; } }
  .p-index-salon .salon_gallery-inner ._photo2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: -1; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon_gallery-inner ._photo2 {
        position: relative;
        right: auto;
        bottom: auto;
        width: 80%;
        margin-top: 5rem;
        margin-left: auto; } }
.p-index-salon .salon__head {
  margin-left: auto;
  margin-right: auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__head {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon__head {
      margin-top: 5rem; } }
.p-index-salon .salon_info {
  margin-left: auto;
  margin-right: auto;
  width: 88%;
  max-width: var(--container-l);
  display: flex;
  align-items: flex-end;
  column-gap: 12rem;
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon_info {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon_info {
      display: block;
      margin-top: 4rem; } }
.p-index-salon .salon_info-conte {
  width: 50%; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon_info-conte {
      width: 100%; } }
  .p-index-salon .salon_info-conte ._label {
    font-size: var(--font-size-14); }
  .p-index-salon .salon_info-conte ._cap {
    font-size: var(--font-size-18);
    margin-top: 1.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon_info-conte ._cap {
        margin-top: 1rem; } }
  .p-index-salon .salon_info-conte ._table {
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon_info-conte ._table {
        margin-top: 2.5rem; } }
  .p-index-salon .salon_info-conte ._table dl {
    display: flex;
    column-gap: 1rem; }
  .p-index-salon .salon_info-conte ._table dl + dl {
    margin-top: 2.5rem; }
  .p-index-salon .salon_info-conte ._table dt {
    width: 15rem;
    font-size: var(--font-size-15);
    line-height: var(--line-height-m);
    border-bottom: solid #ccc 1px;
    padding-bottom: .5rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon_info-conte ._table dt {
        width: 8.5rem; } }
  .p-index-salon .salon_info-conte ._table dd {
    flex: 1;
    font-size: var(--font-size-15);
    line-height: var(--line-height-m);
    border-bottom: solid #ccc 1px;
    padding-bottom: .8rem; }
.p-index-salon .salon_info-map {
  flex: 1; }
  @media screen and (max-width: 799px) {
    .p-index-salon .salon_info-map {
      margin-top: 5rem; } }
  .p-index-salon .salon_info-map iframe {
    width: 100%;
    height: 45rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon_info-map iframe {
        height: 40rem; } }
