/* ==========================================================================
 *
 * root scss
 * media query / color / font-size/ font-family / line-height
 * width / z-index
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #333333;
  --color-white: #FFFFFF;
  --color-bg1: #E1E0D0;
  --color-bg2: #F2F2F2;
  --color-bg3: #DCDCDC;
  --color-line1: #CCCCCC;
  --color-main1: #62614B;
  --color-main2: #9A9988;
  --color-main3: #E26868; }

/* ==========================================================================
   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: YakuHanMPs, "Zen Old Mincho", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  --font-family-serif: "Lora", serif; }

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

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

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

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

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

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

.l-toggle.js-active span:nth-child(1) {
  top: 7px;
  transform: rotate(25deg); }
.l-toggle.js-active span:nth-child(2) {
  opacity: 0; }
.l-toggle.js-active span:nth-child(3) {
  bottom: 7px;
  width: 100%;
  transform: rotate(-25deg); }

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
 *
 * accordion scss
 * -
 *
========================================================================== */
.c-accordion {
  position: relative; }
  .c-accordion .accordion__input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0; }
  .c-accordion .accordion__label {
    width: 100%;
    display: block;
    cursor: pointer;
    position: relative;
    transition: 0.4s ease;
    border-bottom: solid var(--color-line1) 1px;
    font-size: var(--font-size-24);
    padding: 0 0 2.5rem 3rem; }
    @media screen and (max-width: 799px) {
      .c-accordion .accordion__label {
        padding: 0 5rem 2rem 2rem; } }
    .c-accordion .accordion__label::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 1rem;
      height: calc(100% - 2.5rem);
      background: var(--color-bg1); }
      @media screen and (max-width: 799px) {
        .c-accordion .accordion__label::before {
          width: .6rem; } }
    .c-accordion .accordion__label ._min {
      font-size: var(--font-size-16);
      margin-left: 2.5rem; }
      @media screen and (max-width: 799px) {
        .c-accordion .accordion__label ._min {
          margin-left: 0; } }
    .c-accordion .accordion__label ._icon {
      position: absolute;
      right: 0;
      bottom: 2rem;
      display: block;
      width: 3.6rem;
      height: 3.6rem;
      border: solid var(--color-line1) 1px;
      border-radius: 100%; }
      @media screen and (max-width: 799px) {
        .c-accordion .accordion__label ._icon {
          width: 3rem;
          height: 3rem; } }
      .c-accordion .accordion__label ._icon::before, .c-accordion .accordion__label ._icon::after {
        position: absolute;
        content: '';
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--color-line1); }
      .c-accordion .accordion__label ._icon::before {
        width: 1.6rem;
        height: 1px; }
        @media screen and (max-width: 799px) {
          .c-accordion .accordion__label ._icon::before {
            width: 1rem; } }
      .c-accordion .accordion__label ._icon::after {
        width: 1px;
        height: 1.6rem;
        transition: opacity .5s; }
        @media screen and (max-width: 799px) {
          .c-accordion .accordion__label ._icon::after {
            height: 1rem; } }
  .c-accordion .accordion__conte {
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    transition: 0.4s ease;
    opacity: 0; }
  .c-accordion .accordion__input:checked ~ .accordion__conte {
    height: auto;
    padding: 14rem 0;
    opacity: 1; }
    @media screen and (max-width: 799px) {
      .c-accordion .accordion__input:checked ~ .accordion__conte {
        padding: 6rem 0; } }
  .c-accordion .accordion__input:checked ~ .accordion__label ._icon::after {
    opacity: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

body {
  font-family: var(--font-family-main);
  font-weight: 400;
  font-optical-sizing: auto;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal; }

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

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

/* ==========================================================================
   #other
========================================================================== */
.c-spBlock {
  display: none; }
  @media screen and (max-width: 579px) {
    .c-spBlock {
      display: block; } }

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

.c-head._ct ._cap,
.c-head._ct ._label {
  text-align: center; }
.c-head ._cap {
  font-family: var(--font-family-serif);
  font-size: 4rem;
  letter-spacing: 0; }
  @media screen and (max-width: 799px) {
    .c-head ._cap {
      font-size: 3rem; } }
.c-head ._label {
  font-size: var(--font-size-14);
  margin-top: 1rem; }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  padding: 0 8rem 0 5rem;
  transition-property: height, padding;
  transition-duration: .3s;
  z-index: var(--z-index-header); }
  @media screen and (max-width: 799px) {
    .l-header {
      position: absolute;
      height: 8rem;
      padding: 0 0 0 4%; } }
  .l-header .header__logo img {
    width: 10rem;
    height: 4.4rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__logo img {
        width: 9rem;
        height: 4rem; } }
  .l-header .header__nav {
    display: flex;
    align-items: center;
    column-gap: 3.5rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__nav {
        display: none; } }
    .l-header .header__nav li {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-15); }

.l-header.js-change {
  height: 8rem;
  padding: 0 6rem 0 3rem; }
  @media screen and (max-width: 799px) {
    .l-header.js-change {
      padding: 0 0 0 4%; } }

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

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg1);
  padding: 10rem 6%;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }
  .l-sitemap .sitemap__wrap {
    height: 100%;
    overflow-y: scroll;
    padding: 0 1rem 3rem; }
  .l-sitemap .sitemap__nav-list li {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-20); }
  .l-sitemap .sitemap__nav-list li + li {
    margin-top: 2.5rem; }
  .l-sitemap .sitemap__nav-list-sub {
    margin-top: 2rem;
    padding-left: 1.5rem; }
    .l-sitemap .sitemap__nav-list-sub li {
      font-family: var(--font-family-main);
      font-size: var(--font-size-14); }
    .l-sitemap .sitemap__nav-list-sub li + li {
      margin-top: 1rem; }
  .l-sitemap .sitemap__info {
    margin-top: 6rem; }
  .l-sitemap .sitemap__info-item + .sitemap__info-item {
    margin-top: 3.5rem; }
  .l-sitemap .sitemap__info-data ._cap {
    font-size: var(--font-size-13); }
  .l-sitemap .sitemap__info-data ._cap span {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-20);
    margin-right: 1rem; }
  .l-sitemap .sitemap__info-data ._add {
    font-size: var(--font-size-13);
    margin-top: 1.2rem; }
  .l-sitemap .sitemap__info-contact {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    margin-top: 2rem; }
    .l-sitemap .sitemap__info-contact ._tel {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 4.6rem;
      background: #EDEDED;
      border-radius: .5rem;
      padding: 0 2rem 0 3rem; }
    .l-sitemap .sitemap__info-contact ._tel span {
      font-size: var(--font-size-15); }
    .l-sitemap .sitemap__info-contact ._icon {
      width: 4.6rem;
      height: 4.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #EDEDED;
      border-radius: 100%; }
    .l-sitemap .sitemap__info-contact svg {
      width: 2.6rem;
      height: 2.6rem; }
  .l-sitemap .sitemap__copy {
    position: absolute;
    left: calc(6% + 1rem);
    bottom: 3rem;
    font-family: var(--font-size-serif);
    font-size: var(--font-size-12);
    margin-top: 6rem; }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 579px) {
    .l-contact {
      right: 1rem;
      bottom: 1rem;
      width: calc(100% - 2rem); } }
  .l-contact .contact__link {
    width: 38rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: .5rem; }
    @media screen and (max-width: 579px) {
      .l-contact .contact__link {
        width: 100%; } }
    .l-contact .contact__link ._btn {
      background: var(--color-bg1);
      border-radius: 1rem;
      color: var(--color-main1);
      padding: 1.2rem 0 1.2rem;
      text-align: center; }

    .l-contact .contact__link ._btn .address {
      font-size: 1.1rem;
      margin-top: .5rem;}

      @media screen and (max-width: 579px) {
        .l-contact .contact__link ._btn {
          padding: 1rem 0 1rem; }}
    .l-contact .contact__link ._btn svg {
      width: 3rem;
      height: 3rem;
      fill: var(--color-main1); }
      @media screen and (max-width: 579px) {
        .l-contact .contact__link ._btn svg {
          width: 2.6rem;
          height: 2.6rem; } }
    .l-contact .contact__link ._btn ._label {
      display: block;
      font-family: var(--font-family-serif);
      font-size: var(--font-size-14);
      margin-top: .5rem; }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  background: var(--color-bg3);
  margin-top: 18rem;
  padding: 12rem 0 16rem; }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 7rem;
      padding: 7rem 0 5rem; } }
  .l-footer .footer__logo {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .l-footer .footer__logo {
        width: 84%; } }
    .l-footer .footer__logo img {
      width: 12rem;
      height: 5.3rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__logo img {
          width: 11rem;
          height: 4.9rem; } }
  .l-footer .footer__col {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    column-gap: 18rem;
    margin-top: 7rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col {
        display: block;
        margin-top: 5rem; } }
  .l-footer .footer__col-info {
    flex: 1; }
  .l-footer .footer__col-info-block {
    position: relative; }
    .l-footer .footer__col-info-block ._cap {
      font-size: var(--font-size-16); }
    .l-footer .footer__col-info-block ._cap span {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-24);
      margin-right: 1.5rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-info-block ._cap span {
          margin-right: 1rem; } }
    .l-footer .footer__col-info-block ._add {
      font-size: var(--font-size-15);
      margin-top: 2.5rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-info-block ._add {
          margin-top: 1.5rem; } }
    .l-footer .footer__col-info-block ._btn {
      height: 6rem;
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.5);
      border-radius: .5rem;
      margin-top: 2rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-info-block ._btn {
          height: 5.6rem;
          margin-top: 2.5rem; } }
    .l-footer .footer__col-info-block ._label {
      width: 45%;
      font-size: var(--font-size-16);
      text-align: center; }
    .l-footer .footer__col-info-block ._tel {
      flex: 1;
      border-left: solid var(--color-line1) 1px;
      font-size: var(--font-size-22);
      text-align: center; }
    .l-footer .footer__col-info-block ._sns {
      position: absolute;
      top: .5rem;
      right: 0; }
    .l-footer .footer__col-info-block ._sns svg {
      width: 2.6rem;
      height: 2.6rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-info-block ._sns svg {
          width: 2.4rem;
          height: 2.4rem; } }
  .l-footer .footer__col-info-block + .footer__col-info-block {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-info-block + .footer__col-info-block {
        margin-top: 4rem; } }
  .l-footer .footer__col-menu {
    width: 45%;
    display: flex;
    flex-direction: column; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-menu {
        width: 100%;
        margin-top: 6rem; } }
  .l-footer .footer__col-menu-nav {
    display: flex; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-menu-nav {
        display: block; } }
    .l-footer .footer__col-menu-nav ._main {
      width: 50%; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-menu-nav ._main {
          width: 100%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-menu-nav ._main + ._main {
        margin-top: 2.5rem; } }
    .l-footer .footer__col-menu-nav ._main li {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-18);
      letter-spacing: 0; }
    .l-footer .footer__col-menu-nav ._main li + li {
      margin-top: 2.5rem; }
    .l-footer .footer__col-menu-nav ._sub {
      margin-top: 2.5rem; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__col-menu-nav ._sub {
          margin-top: 2rem;
          padding-left: 1rem; } }
    .l-footer .footer__col-menu-nav ._sub li {
      font-family: var(--font-family-main);
      font-size: var(--font-size-14); }
    .l-footer .footer__col-menu-nav ._sub li + li {
      margin-top: 1.2rem; }
  .l-footer .footer__col-menu-copy {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-14);
    margin-top: auto; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-menu-copy {
        margin-top: 7rem;
        text-align: right; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding: 10rem 0 0 0; }
  @media screen and (max-width: 799px) {
    .p-index-hero {
      height: auto;
      height: auto;
      padding: 8rem 0 0 0; } }
  .p-index-hero .hero__photo {
    width: 75%;
    height: 100%;
    margin-left: auto; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__photo {
        width: 85%;
        height: 42.5vh; } }
    .p-index-hero .hero__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__photo img {
          object-position: 70% 50%; } }
  .p-index-hero .hero__bundle {
    position: absolute;
    left: 0;
    bottom: 14rem;
    padding-left: 7%; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__bundle {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: -2.5rem;
        padding-left: 8%;
        padding-right: 8%; } }
    .p-index-hero .hero__bundle ._cap {
      font-size: var(--font-size-34);
      line-height: 1.6;
      letter-spacing: var(--letter-spacing-l); }
    .p-index-hero .hero__bundle ._txt {
      font-size: var(--font-size-16);
      line-height: var(--line-height-m);
      margin: 3rem 0 0 0; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__bundle ._txt {
          margin: 2rem 0 0 0; } }
    .p-index-hero .hero__bundle img {
      position: absolute;
      left: 0;
      bottom: 6rem;
      width: 24rem;
      height: 40rem;
      opacity: .15; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__bundle img {
          left: auto;
          right: 0;
          bottom: -4rem;
          width: 18rem;
          height: 30rem; } }

/* ==========================================================================
   #greet
========================================================================== */
.p-index-greet .greet__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 20rem; }
  @media screen and (max-width: 799px) {
    .p-index-greet .greet__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-greet .greet__wrap {
      margin-top: 8rem; } }
  .p-index-greet .greet__wrap ._cap {
    font-size: var(--font-size-30);
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-greet .greet__wrap ._cap {
        font-size: var(--font-size-26);
        line-height: 1.6;
        text-align: left; } }
  .p-index-greet .greet__wrap ._txt {
    font-size: var(--font-size-18);
    line-height: var(--line-height-m);
    margin-top: 4rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-greet .greet__wrap ._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-16);
        margin-top: 2rem; } }

/* ==========================================================================
   #set
========================================================================== */
.p-index-set {
  position: relative;
  margin-top: 36rem; }
  @media screen and (max-width: 799px) {
    .p-index-set {
      margin-top: 14rem; } }
  .p-index-set::before {
    position: absolute;
    content: '';
    top: -20rem;
    left: 0;
    width: 100%;
    height: 80rem;
    background: var(--color-bg2);
    border-radius: 50%;
    z-index: -2; }
    @media screen and (max-width: 799px) {
      .p-index-set::before {
        top: -8rem;
        height: 20rem; } }
  .p-index-set::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 20rem);
    background: var(--color-bg2);
    z-index: -1; }
    @media screen and (max-width: 799px) {
      .p-index-set::after {
        height: calc(100% - 2rem); } }
  .p-index-set .set__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    position: relative; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__head {
        width: 84%; } }
    .p-index-set .set__head ._check {
      font-size: var(--font-size-18);
      margin-top: 4rem;
      text-align: center;
      position: relative;
      z-index: 1; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__head ._check {
          text-align: left; } }
    .p-index-set .set__head ._check span {
      background: var(--color-white);
      padding: .2rem 1rem; }
    .p-index-set .set__head ._txt2 {
      font-size: var(--font-size-15);
      line-height: var(--line-height-s);
      margin-top: 1.5rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__head ._txt2 {
          text-align: left; } }
    .p-index-set .set__head ._txt {
      font-size: var(--font-size-14);
      line-height: var(--line-height-s);
      margin-top: 1.5rem;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__head ._txt {
          text-align: left; } }
    .p-index-set .set__head img {
      position: absolute;
      right: 25%;
      bottom: -4rem;
      width: 12rem;
      height: 25rem;
      opacity: .35; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__head img {
          right: 0;
          bottom: 0;
          width: 7rem;
          height: 14.6rem; } }
  .p-index-set .set__body {
    margin-top: 12rem;
    padding-bottom: 18rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__body {
        margin-top: 5rem;
        padding-bottom: 7rem; } }
  .p-index-set .set__list {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list {
        width: 84%; } }
  .p-index-set .set__list-item {
    border-top: solid var(--color-line1) 1px;
    padding: 8rem 0; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-item {
        padding: 4rem 0; } }
    .p-index-set .set__list-item:last-child {
      border-bottom: solid var(--color-line1) 1px; }
  .p-index-set .set__list-head {
    display: flex;
    align-items: center;
    column-gap: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-head {
        display: block; } }
  .p-index-set .set__list-head-num {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: .8rem;
    padding-left: 3rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-head-num {
        padding-left: 2rem; } }
    .p-index-set .set__list-head-num::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 1rem;
      height: 100%;
      background: var(--color-bg1); }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-head-num::before {
          width: .7rem; } }
    .p-index-set .set__list-head-num ._label {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-15); }
    .p-index-set .set__list-head-num ._num {
      font-family: var(--font-family-serif);
      font-size: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-head-num ._num {
          font-size: 3.6rem; } }
  .p-index-set .set__list-head-cap {
    flex: 1;
    font-size: var(--font-size-26); }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-head-cap {
        line-height: 1.6;
        margin-top: 2rem; } }
  .p-index-set .set__list-col {
    display: flex;
    column-gap: 9rem;
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-col {
        display: block;
        margin-top: 2rem; } }
  .p-index-set .set__list-col-photo {
    width: 45%; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-col-photo {
        width: 100%; } }
    .p-index-set .set__list-col-photo img {
      border-radius: 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-col-photo img {
          border-radius: 1rem; } }
  .p-index-set .set__list-col-bundle {
    flex: 1; }
  @media screen and (max-width: 799px) {
    .p-index-set .set__list-col-bundle-menu {
      margin-top: 2.5rem; } }
  .p-index-set .set__list-col-bundle-menu ._cap {
    font-size: var(--font-size-32);
    line-height: 1.6; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-col-bundle-menu ._cap {
        font-size: var(--font-size-28); } }
  .p-index-set .set__list-col-bundle-menu ._txt {
    font-size: var(--font-size-16);
    margin-top: 2rem; }
  .p-index-set .set__list-col-bundle-menu ._price {
    font-size: var(--font-size-20);
    margin-top: 1rem;
    text-align: right; }
  .p-index-set .set__list-col-bundle-menu ._price span {
    color: var(--color-main3);
    font-size: 4.2rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-col-bundle-menu ._price span {
        font-size: 3.4rem; } }
  .p-index-set .set__list-col-bundle-note {
    background: var(--color-white);
    margin-top: 2.5rem;
    padding: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-col-bundle-note {
        margin-top: 2rem; } }
    .p-index-set .set__list-col-bundle-note ._label {
      width: 8.5rem;
      height: 2.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--color-bg1);
      border-radius: 1.3rem;
      font-family: var(--font-family-serif);
      font-size: var(--font-size-16); }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-col-bundle-note ._label {
          width: 8rem; } }
    .p-index-set .set__list-col-bundle-note ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-size: var(--font-size-15);
      line-height: 1.6;
      margin-top: 1rem; }
  .p-index-set .set__list-col-bundle-link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: .8rem;
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-col-bundle-link {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 2.5rem; } }
    .p-index-set .set__list-col-bundle-link ._btn {
      height: 6rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--color-main2);
      border-radius: 3rem;
      padding: 0 2rem 0 2.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-col-bundle-link ._btn {
          max-width: 27.5rem;
          height: 5.4rem;
          border-radius: 2.7rem; } }
    @media screen and (max-width: 799px) {
      .p-index-set .set__list-col-bundle-link ._btn + ._btn {
        margin-top: .5rem; } }
    .p-index-set .set__list-col-bundle-link ._label {
      color: var(--color-white);
      font-size: var(--font-size-16); }

    .p-index-set .set__list-col-bundle-link ._label .address{
      font-size: 1.2rem; }

    .p-index-set .set__list-col-bundle-link svg {
      width: 3rem;
      height: 3rem;
      fill: var(--color-white); }
      @media screen and (max-width: 799px) {
        .p-index-set .set__list-col-bundle-link svg {
          width: 2.6rem;
          height: 2.6rem; } }

/* ==========================================================================
   #menu
========================================================================== */
.p-index-menu {
  position: relative;
  background: var(--color-bg1);
  padding-bottom: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-menu {
      padding-bottom: 7rem; } }
  .p-index-menu .menu__flower {
    position: absolute;
    top: 6rem;
    right: 0; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__flower {
        top: 3rem; } }
    .p-index-menu .menu__flower img {
      width: 30rem;
      height: 21rem;
      opacity: .35; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__flower img {
          width: 18rem;
          height: 21rem; } }
  .p-index-menu .menu__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 18rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__head {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__head {
        margin-top: 7rem; } }
    .p-index-menu .menu__head ._txt {
      font-size: var(--font-size-18);
      line-height: var(--line-height-s);
      margin-top: 6rem; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__head ._txt {
          margin-top: 3.5rem; } }
    .p-index-menu .menu__head ._tax {
      font-size: var(--font-size-14);
      margin-top: 1.5rem; }
  .p-index-menu .menu__col {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__col {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__col {
        width: 94%;
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 1.5rem;
        margin-top: 4rem; } }
  .p-index-menu .menu__col-item {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 4rem;
    padding: 5rem 5rem 7rem 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__col-item {
        border-radius: 3rem;
        padding: 4.5rem 7% 2.5rem 7%; } }
  .p-index-menu .menu__col-head ._cap {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-28);
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__col-head ._cap {
        text-align: left; } }
  .p-index-menu .menu__col-head ._label {
    font-size: var(--font-size-16);
    margin-top: .6rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__col-head ._label {
        text-align: left; } }
  .p-index-menu .menu__col-body {
    position: relative;
    flex-grow: 1;
    margin-top: 4rem;
    padding: 3rem 0; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__col-body {
        margin-top: 3rem;
        padding: 2.5rem 0; } }
    .p-index-menu .menu__col-body::before, .p-index-menu .menu__col-body::after {
      position: absolute;
      content: '';
      left: 0;
      width: 100%;
      height: 1px;
      background-image: linear-gradient(to right, var(--color-line1) 50%, transparent 50%);
      background-size: 26px 1px;
      background-repeat: repeat-x;
      background-position: left bottom; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__col-body::before, .p-index-menu .menu__col-body::after {
          background-size: 18px 1px; } }
    .p-index-menu .menu__col-body::before {
      top: 0; }
    .p-index-menu .menu__col-body::after {
      bottom: 0; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__col-body::after {
          display: none; } }
  .p-index-menu .menu__col-body-min {
    font-size: var(--font-size-14);
    margin-bottom: 2.5rem;
    text-align: right; }
  .p-index-menu .menu__col-body-txt {
    font-size: var(--font-size-15);
    line-height: var(--line-height-s);
    margin-bottom: 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__col-body-txt {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word; } }
  .p-index-menu .menu__col-body-list ._col {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__col-body-list ._col {
        display: block;
        border-bottom: solid var(--color-line1) 1px;
        padding-bottom: .5rem; } }
  .p-index-menu .menu__col-body-list ._col + ._col {
    margin-top: 1.5rem; }
  @media screen and (max-width: 799px) {
    .p-index-menu .menu__col-body-list ._block {
      border-bottom: solid var(--color-line1) 1px;
      padding-bottom: .5rem; } }
  .p-index-menu .menu__col-body-list ._block dd {
    text-align: right; }
  .p-index-menu .menu__col-body-list ._block + ._block {
    margin-top: 1.5rem; }
  .p-index-menu .menu__col-body-list dt {
    font-size: var(--font-size-16);
    line-height: var(--line-height-s); }
  .p-index-menu .menu__col-body-list dt span {
    color: #BBBBBB; }
  .p-index-menu .menu__col-body-list dd {
    font-size: var(--font-size-18);
    line-height: var(--line-height-s);
    letter-spacing: 0; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__col-body-list dd {
        text-align: right; } }
  .p-index-menu .menu__col-body-list dd span {
    font-size: var(--font-size-14); }
  .p-index-menu .menu__pay {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-s);
    display: flex;
    align-items: center;
    column-gap: 6rem;
    margin-top: 14rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__pay {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__pay {
        display: block;
        margin-top: 6rem; } }
    .p-index-menu .menu__pay .menu__pay-head {
      width: 30rem;
      height: 12rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border: solid var(--color-black) 1px; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__pay .menu__pay-head {
          width: 100%;
          height: 7.6rem; } }
      .p-index-menu .menu__pay .menu__pay-head ._cap {
        font-size: var(--font-size-20); }
    .p-index-menu .menu__pay .menu__pay-note {
      flex: 1; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__pay .menu__pay-note {
          margin-top: 2.5rem; } }
      .p-index-menu .menu__pay .menu__pay-note ._txt {
        font-size: var(--font-size-18);
        line-height: var(--line-height-s); }
      .p-index-menu .menu__pay .menu__pay-note ._min {
        font-size: var(--font-size-14);
        line-height: var(--line-height-s);
        margin-top: 1rem; }
        @media screen and (max-width: 799px) {
          .p-index-menu .menu__pay .menu__pay-note ._min {
            margin-top: .8rem; } }

/* ==========================================================================
   #about
========================================================================== */
.p-index-about {
  background: var(--color-bg2);
  padding-bottom: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-about {
      padding-bottom: 7rem; } }
  .p-index-about .about__slide .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important; }
  .p-index-about .about__slide .swiper-slide {
    width: 34%; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__slide .swiper-slide {
        width: 85%; } }
  .p-index-about .about__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    position: relative;
    margin-top: 18rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head {
        margin-top: 9rem; } }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head .c-head ._cap,
      .p-index-about .about__head .c-head ._label {
        text-align: left; } }
    .p-index-about .about__head img {
      position: absolute;
      left: 60%;
      bottom: -6rem;
      width: 12rem;
      height: 25rem;
      opacity: .35; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__head img {
          top: -5rem;
          left: auto;
          right: 0;
          bottom: auto;
          width: 8rem;
          height: 16.7rem; } }
  .p-index-about .about__conte {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__conte {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-about .about__conte {
        margin-top: 5rem; } }
  .p-index-about .about__conte-block ._cap {
    font-size: var(--font-size-26);
    margin-bottom: 2.5rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__conte-block ._cap {
        margin-bottom: 1.5rem;
        text-align: left; } }
  .p-index-about .about__conte-block ._txt {
    font-size: var(--font-size-16);
    line-height: var(--line-height-m);
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__conte-block ._txt {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left; } }
  .p-index-about .about__conte-block ._price {
    font-size: var(--font-size-18);
    line-height: var(--line-height-s);
    margin-bottom: .5rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__conte-block ._price {
        line-height: 1.6;
        text-align: left; } }
    .p-index-about .about__conte-block ._price span {
      font-size: var(--font-size-26); }
  .p-index-about .about__conte-block + .about__conte-block {
    margin-top: 7rem; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__conte-block + .about__conte-block {
        margin-top: 4rem; } }

/* ==========================================================================
   #service
========================================================================== */
.p-index-service .service__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-service .service__head {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-service .service__head {
      margin-top: 7rem; } }
.p-index-service .service__body {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-index-service .service__body {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-service .service__body {
      margin-top: 4.5rem; } }

#service1 .service1__catch {
  font-size: var(--font-size-16);
  line-height: var(--line-height-m);
  text-align: center; }
  @media screen and (max-width: 799px) {
    #service1 .service1__catch {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word; } }
#service1 .service1__flow-head {
  position: relative;
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__flow-head {
      margin-top: 5rem; } }
  #service1 .service1__flow-head::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 49%;
    width: 100%;
    height: 1px;
    background: var(--color-line1);
    z-index: -1; }
  #service1 .service1__flow-head ._cap {
    width: fit-content;
    background: var(--color-white);
    font-size: var(--font-size-24);
    margin: 0 auto;
    padding: 0 3rem; }
    @media screen and (max-width: 799px) {
      #service1 .service1__flow-head ._cap {
        font-size: 1.8rem;
        margin: 0;
        padding: 0 1.5rem 0 0; } }
#service1 .service1__flow-list {
  position: relative;
  margin-top: 10rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__flow-list {
      margin-top: 4rem; } }
  #service1 .service1__flow-list::before {
    position: absolute;
    content: '';
    top: 10rem;
    left: 5rem;
    width: 1px;
    height: calc(100% - 20rem);
    background: var(--color-line1);
    z-index: -1; }
    @media screen and (max-width: 799px) {
      #service1 .service1__flow-list::before {
        top: 3rem;
        left: 2rem;
        height: calc(100% - 3rem); } }
#service1 .service1__flow-list-item {
  display: flex;
  align-items: center;
  column-gap: 7.5rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__flow-list-item {
      align-items: flex-start;
      column-gap: 2rem; } }
  #service1 .service1__flow-list-item ._num {
    width: 10rem;
    color: #E2E2E2;
    background: var(--color-white);
    font-family: var(--font-family-serif);
    font-size: 6.4rem;
    padding: 2rem 0;
    text-align: center; }
    @media screen and (max-width: 799px) {
      #service1 .service1__flow-list-item ._num {
        width: 4rem;
        font-size: 3.6rem; } }
  #service1 .service1__flow-list-item ._inner {
    flex: 1;
    display: flex;
    align-items: center;
    column-gap: 7.5rem; }
    @media screen and (max-width: 799px) {
      #service1 .service1__flow-list-item ._inner {
        display: block; } }
  #service1 .service1__flow-list-item img {
    width: 32rem;
    border-radius: 1rem; }
    @media screen and (max-width: 799px) {
      #service1 .service1__flow-list-item img {
        width: 100%; } }
  #service1 .service1__flow-list-item ._note {
    flex: 1; }
    @media screen and (max-width: 799px) {
      #service1 .service1__flow-list-item ._note {
        margin-top: 2.5rem; } }
  #service1 .service1__flow-list-item ._cap {
    font-size: var(--font-size-22); }
  #service1 .service1__flow-list-item ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-16);
    line-height: var(--line-height-s);
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      #service1 .service1__flow-list-item ._txt {
        margin-top: 1.5rem; } }
#service1 .service1__flow-list-item + .service1__flow-list-item {
  margin-top: 6rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__flow-list-item + .service1__flow-list-item {
      margin-top: 4rem; } }
#service1 .service1__price {
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__price {
      margin-top: 6rem; } }
#service1 .service1__price-head {
  position: relative;
  font-size: var(--font-size-24);
  line-height: 1.6;
  padding-left: 3rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__price-head {
      padding-left: 2rem; } }
  #service1 .service1__price-head::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 1rem;
    height: 100%;
    background: var(--color-bg1); }
    @media screen and (max-width: 799px) {
      #service1 .service1__price-head::before {
        width: .6rem; } }
#service1 .service1__price-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2rem;
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__price-col {
      grid-template-columns: repeat(1, 1fr);
      margin-top: 3rem;
      grid-row-gap: 1rem; } }
#service1 .service1__price-col-item {
  background: var(--color-bg2);
  border-radius: 1rem;
  padding: 4rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__price-col-item {
      padding: 2.5rem; } }
  #service1 .service1__price-col-item ._head {
    font-size: var(--font-size-20);
    margin-bottom: 2rem; }
  #service1 .service1__price-col-item ._menu {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      #service1 .service1__price-col-item ._menu {
        display: block; } }
  #service1 .service1__price-col-item ._menu dt {
    font-size: var(--font-size-20); }
    @media screen and (max-width: 799px) {
      #service1 .service1__price-col-item ._menu dt {
        font-size: 1.6rem; } }
  #service1 .service1__price-col-item ._menu dd {
    font-size: var(--font-size-16);
    letter-spacing: 0; }
    @media screen and (max-width: 799px) {
      #service1 .service1__price-col-item ._menu dd {
        border-bottom: solid var(--color-line1) 1px;
        margin-top: .5rem;
        padding-bottom: .8rem;
        text-align: right; } }
  #service1 .service1__price-col-item ._menu dd span {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-26); }
  #service1 .service1__price-col-item ._tel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .5rem; }
    @media screen and (max-width: 799px) {
      #service1 .service1__price-col-item ._tel {
        display: block;
        margin-top: 2rem; } }
  #service1 .service1__price-col-item ._tel dt {
    font-size: var(--font-size-14);
    line-height: 1.4; }
  #service1 .service1__price-col-item ._tel dt span {
    display: block;
    font-size: var(--font-size-20); }
    @media screen and (max-width: 799px) {
      #service1 .service1__price-col-item ._tel dt span {
        display: inline;
        font-size: 1.6rem;
        margin-right: 1rem; } }
  #service1 .service1__price-col-item ._tel dd {
    font-size: var(--font-size-16);
    letter-spacing: 0; }
    @media screen and (max-width: 799px) {
      #service1 .service1__price-col-item ._tel dd {
        border-bottom: solid var(--color-line1) 1px;
        margin-top: .5rem;
        padding-bottom: .8rem;
        text-align: right; } }
  #service1 .service1__price-col-item ._tel dd span {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-26); }
#service1 .service1__shop {
  margin-top: 9rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__shop {
      margin-top: 5rem; } }
#service1 .service1__shop-head {
  position: relative;
  font-size: var(--font-size-24);
  line-height: 1.6;
  padding-left: 3rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__shop-head {
      padding-left: 2rem; } }
  #service1 .service1__shop-head::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 1rem;
    height: 100%;
    background: var(--color-bg1); }
    @media screen and (max-width: 799px) {
      #service1 .service1__shop-head::before {
        width: .6rem; } }
#service1 .service1__shop-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 6rem;
  align-items: center;
  background: var(--color-bg2);
  border-radius: 1rem;
  margin-top: 4rem;
  padding: 4rem; }
  @media screen and (max-width: 799px) {
    #service1 .service1__shop-col {
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 2rem;
      margin-top: 3rem;
      padding: 2.5rem; } }
#service1 .service1__shop-col-item {
  position: relative; }
  #service1 .service1__shop-col-item._line {
    border: solid var(--color-line1) 1px;
    border-radius: 1rem;
    padding: 2.5rem 3rem; }
    @media screen and (max-width: 799px) {
      #service1 .service1__shop-col-item._line {
        padding: 2rem; } }
  #service1 .service1__shop-col-item ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-16);
    line-height: var(--line-height-m); }
  #service1 .service1__shop-col-item ._name {
    font-size: var(--font-size-18);
    margin-bottom: 1rem; }
  #service1 .service1__shop-col-item ._info {
    font-size: var(--font-size-15);
    line-height: var(--line-height-s); }
  #service1 .service1__shop-col-item ._btn {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    font-size: var(--font-size-14);
    margin-left: auto;
    text-decoration: underline; }
    @media screen and (max-width: 799px) {
      #service1 .service1__shop-col-item ._btn {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 1rem;
        display: inline-block;
        margin-top: 1rem; } }

#service2 .service2__catch ._cap {
  font-size: var(--font-size-24);
  text-align: center; }
  @media screen and (max-width: 799px) {
    #service2 .service2__catch ._cap {
      line-height: 1.6;
      text-align: left; } }
#service2 .service2__list {
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    #service2 .service2__list {
      margin-top: 5rem; } }
#service2 .service2__list-item {
  display: flex;
  align-items: center;
  column-gap: 6rem; }
  @media screen and (max-width: 799px) {
    #service2 .service2__list-item {
      display: block; } }
#service2 .service2__list-item:nth-child(2n) {
  flex-direction: row-reverse; }
#service2 .service2__list-item + .service2__list-item {
  margin-top: 6rem; }
  @media screen and (max-width: 799px) {
    #service2 .service2__list-item + .service2__list-item {
      margin-top: 5rem; } }
#service2 .service2__list-item-photo {
  width: 43.5%; }
  @media screen and (max-width: 799px) {
    #service2 .service2__list-item-photo {
      width: 100%; } }
  #service2 .service2__list-item-photo img {
    border-radius: 2rem; }
#service2 .service2__list-item-note {
  flex: 1;
  padding: 0 4rem; }
  @media screen and (max-width: 799px) {
    #service2 .service2__list-item-note {
      margin-top: 3rem;
      padding: 0; } }
  #service2 .service2__list-item-note ._cap {
    background-image: linear-gradient(to right, var(--color-line1) 50%, transparent 50%);
    background-size: 26px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
    font-size: var(--font-size-24);
    line-height: 1.6;
    padding-bottom: 1.5rem; }
    @media screen and (max-width: 799px) {
      #service2 .service2__list-item-note ._cap {
        background-size: 13px 1px; } }
  #service2 .service2__list-item-note ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-16);
    line-height: var(--line-height-s);
    margin-top: 2rem; }
#service2 .service2__scene {
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    #service2 .service2__scene {
      margin-top: 6rem; } }
#service2 .service2__scene-cap {
  font-size: var(--font-size-24);
  text-align: center; }
#service2 .service2__scene-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4rem;
  grid-row-gap: 6rem;
  justify-content: center;
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    #service2 .service2__scene-list {
      column-gap: 2rem;
      grid-row-gap: 3rem;
      margin-top: 5rem;
      justify-content: flex-start; } }
#service2 .service2__scene-list-item {
  width: calc( (100% - 12rem) / 4); }
  @media screen and (max-width: 799px) {
    #service2 .service2__scene-list-item {
      width: calc( (100% - 2rem) / 2); } }
  #service2 .service2__scene-list-item img {
    border-radius: 3rem; }
  #service2 .service2__scene-list-item ._label {
    font-size: var(--font-size-18);
    margin-top: 3rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      #service2 .service2__scene-list-item ._label {
        margin-top: 2rem; } }

#service3 .service3__catch ._cap {
  font-size: var(--font-size-24);
  text-align: center; }
  @media screen and (max-width: 799px) {
    #service3 .service3__catch ._cap {
      line-height: 1.6;
      text-align: left; } }
#service3 .service3__about {
  display: flex;
  column-gap: 6rem;
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    #service3 .service3__about {
      display: block;
      margin-top: 5rem; } }
#service3 .service3__about-logo {
  width: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid var(--color-black) 1px;
  border-radius: 1rem; }
  @media screen and (max-width: 799px) {
    #service3 .service3__about-logo {
      width: 100%;
      height: 12rem; } }
  #service3 .service3__about-logo img {
    width: 15rem; }
    @media screen and (max-width: 799px) {
      #service3 .service3__about-logo img {
        width: 12rem; } }
#service3 .service3__about-note {
  flex: 1;
  padding: 1rem 0; }
  @media screen and (max-width: 799px) {
    #service3 .service3__about-note {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin-top: 2rem; } }
  #service3 .service3__about-note ._txt {
    font-size: var(--font-size-16);
    line-height: var(--line-height-m); }
#service3 .service3__point {
  border-bottom: solid var(--color-line1) 1px;
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    #service3 .service3__point {
      margin-top: 5rem; } }
#service3 .service3__point-item {
  border-top: solid var(--color-line1) 1px;
  padding: 7rem 0; }
  @media screen and (max-width: 799px) {
    #service3 .service3__point-item {
      padding: 4rem 0; } }
  #service3 .service3__point-item ._cap {
    font-size: var(--font-size-24);
    line-height: 1.6; }
  #service3 .service3__point-item ._txt {
    font-size: var(--font-size-16);
    line-height: var(--line-height-m);
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      #service3 .service3__point-item ._txt {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-top: 1.5rem; } }
  #service3 .service3__point-item ._txt2 {
    font-size: var(--font-size-14);
    margin-top: 2.5rem;
    text-align: center; }
  #service3 .service3__point-item ._col {
    display: flex;
    column-gap: 8rem; }
    @media screen and (max-width: 799px) {
      #service3 .service3__point-item ._col {
        display: block; } }
  #service3 .service3__point-item ._note {
    flex: 1; }
  #service3 .service3__point-item ._hand {
    width: 30%; }
    @media screen and (max-width: 799px) {
      #service3 .service3__point-item ._hand {
        width: 100%;
        margin-top: 3rem; } }
  #service3 .service3__point-item ._graph {
    margin-top: 6rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      #service3 .service3__point-item ._graph {
        overflow-x: auto;
        margin-top: 3rem; } }
  @media screen and (max-width: 799px) {
    #service3 .service3__point-item ._graph img {
      width: 60rem;
      max-width: 60rem; } }
  #service3 .service3__point-item ._list {
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      #service3 .service3__point-item ._list {
        margin-top: 5rem; } }
  #service3 .service3__point-item ._head {
    position: relative;
    font-size: var(--font-size-20);
    line-height: 1.6;
    padding-left: 3rem; }
    @media screen and (max-width: 799px) {
      #service3 .service3__point-item ._head {
        padding-left: 2rem; } }
    #service3 .service3__point-item ._head::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 1rem;
      height: 100%;
      background: var(--color-bg1); }
      @media screen and (max-width: 799px) {
        #service3 .service3__point-item ._head::before {
          width: .6rem; } }
  #service3 .service3__point-item ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
    background: var(--color-bg2);
    border-radius: 1rem;
    margin-top: 4rem;
    padding: 4rem; }
    @media screen and (max-width: 799px) {
      #service3 .service3__point-item ul {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 1.5rem;
        margin-top: 3rem;
        padding: 2.5rem; } }
  #service3 .service3__point-item li {
    display: flex;
    align-items: center;
    font-size: var(--font-size-16); }
    @media screen and (max-width: 799px) {
      #service3 .service3__point-item li {
        line-height: 1.5; } }
  #service3 .service3__point-item li img {
    width: 2.6rem; }
    @media screen and (max-width: 799px) {
      #service3 .service3__point-item li img {
        width: 2rem; } }
  #service3 .service3__point-item li span {
    flex: 1;
    margin-left: 1rem; }
#service3 .service3__menu {
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    #service3 .service3__menu {
      margin-top: 6rem; } }
#service3 .service3__menu-cap {
  font-size: var(--font-size-24); }
#service3 .service3__menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 8rem;
  grid-row-gap: 7rem;
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    #service3 .service3__menu-list {
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 4rem;
      margin-top: 5rem; } }
#service3 .service3__menu-list-item ._cap {
  position: relative;
  font-family: var(--font-family-serif);
  font-size: var(--font-size-24);
  letter-spacing: 0;
  padding-left: 2.5rem; }
  @media screen and (max-width: 799px) {
    #service3 .service3__menu-list-item ._cap {
      padding-left: 2rem; } }
#service3 .service3__menu-list-item ._cap::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background: #BBBBBB; }
  @media screen and (max-width: 799px) {
    #service3 .service3__menu-list-item ._cap::before {
      width: .8rem;
      height: .8rem; } }
#service3 .service3__menu-list-item ._label {
  font-size: var(--font-size-14);
  padding-left: 2.5rem;
  margin-top: 1rem; }
  @media screen and (max-width: 799px) {
    #service3 .service3__menu-list-item ._label {
      padding-left: 2rem; } }
#service3 .service3__menu-list-item ._txt {
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: var(--font-size-16);
  line-height: var(--line-height-m);
  margin-top: 3rem; }
  @media screen and (max-width: 799px) {
    #service3 .service3__menu-list-item ._txt {
      margin-top: 2rem; } }
#service3 .service3__menu-list-item ._menu {
  margin-top: 2rem; }
#service3 .service3__menu-list-item ._menu li {
  width: fit-content;
  font-size: var(--font-size-16);
  background: var(--color-bg2);
  margin-top: .6rem;
  padding: .2rem .6rem; }

#service4 .service4__catch ._label {
  font-size: var(--font-size-18);
  text-align: center; }
  @media screen and (max-width: 799px) {
    #service4 .service4__catch ._label {
      text-align: left; } }
#service4 .service4__catch ._cap {
  font-size: var(--font-size-24);
  line-height: var(--line-height-s);
  margin-top: 2.5rem;
  text-align: center; }
  @media screen and (max-width: 799px) {
    #service4 .service4__catch ._cap {
      margin-top: 1.5rem;
      text-align: left; } }
#service4 .service4__col {
  display: flex;
  column-gap: 10rem;
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    #service4 .service4__col {
      display: block;
      margin-top: 5rem; } }
#service4 .service4__col-photo {
  flex: 1; }
  #service4 .service4__col-photo ._img1 {
    width: 95%; }
    @media screen and (max-width: 799px) {
      #service4 .service4__col-photo ._img1 {
        width: 90%; } }
  #service4 .service4__col-photo ._img2 {
    width: 75%;
    margin-top: 1rem;
    margin-left: auto; }
#service4 .service4__col-note {
  width: 47.5%;
  margin-top: 4rem; }
  @media screen and (max-width: 799px) {
    #service4 .service4__col-note {
      width: 100%; } }
  #service4 .service4__col-note ._txt {
    font-size: var(--font-size-16);
    line-height: var(--line-height-m); }
    @media screen and (max-width: 799px) {
      #service4 .service4__col-note ._txt {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word; } }
  #service4 .service4__col-note ._txt span {
    color: #BBBBBB;
    font-size: var(--font-size-12);
    margin-right: 1rem; }
  #service4 .service4__col-note ._txt + ._txt {
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      #service4 .service4__col-note ._txt + ._txt {
        margin-top: 1.5rem; } }
#service4 .service4__menu {
  margin-top: 12rem; }
  @media screen and (max-width: 799px) {
    #service4 .service4__menu {
      margin-top: 6rem; } }
#service4 .service4__menu-head {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 799px) {
    #service4 .service4__menu-head {
      display: block; } }
  #service4 .service4__menu-head ._cap {
    position: relative;
    font-size: var(--font-size-24);
    line-height: 1.6;
    padding-left: 3rem; }
    @media screen and (max-width: 799px) {
      #service4 .service4__menu-head ._cap {
        padding-left: 2rem; } }
    #service4 .service4__menu-head ._cap::before {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 1rem;
      height: 100%;
      background: var(--color-bg1); }
      @media screen and (max-width: 799px) {
        #service4 .service4__menu-head ._cap::before {
          width: .6rem; } }
  #service4 .service4__menu-head ._txt {
    font-size: var(--font-size-12);
    line-height: 1.6; }
    @media screen and (max-width: 799px) {
      #service4 .service4__menu-head ._txt {
        margin-top: 3rem;
        text-align: right; } }
#service4 .service4__menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 4rem;
  grid-row-gap: 3.5rem;
  background: var(--color-bg2);
  border-radius: 1rem;
  margin-top: 4rem;
  padding: 4rem; }
  @media screen and (max-width: 799px) {
    #service4 .service4__menu-list {
      grid-template-columns: repeat(1, 1fr);
      grid-row-gap: 2.5rem;
      margin-top: 2rem;
      padding: 2.5rem; } }
#service4 .service4__menu-list-item {
  border-bottom: solid var(--color-line1) 1px;
  padding-bottom: 2rem; }
  #service4 .service4__menu-list-item dl {
    display: flex;
    justify-content: space-between; }
  #service4 .service4__menu-list-item dt {
    font-size: var(--font-size-20); }
    @media screen and (max-width: 799px) {
      #service4 .service4__menu-list-item dt {
        font-size: 1.6rem; } }
  #service4 .service4__menu-list-item dd {
    font-size: var(--font-size-16); }
  #service4 .service4__menu-list-item dd span {
    font-size: var(--font-size-20); }
    @media screen and (max-width: 799px) {
      #service4 .service4__menu-list-item dd span {
        font-size: 1.6rem; } }
  #service4 .service4__menu-list-item ._txt {
    font-size: var(--font-size-15);
    line-height: 1.6;
    margin-top: 1rem; }

/* ==========================================================================
   #salon
========================================================================== */
.p-index-salon {
  background: var(--color-bg1);
  margin-top: 18rem;
  padding-top: 18rem;
  padding-bottom: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-salon {
      margin-top: 7rem;
      padding-top: 7rem;
      padding-bottom: 7rem; } }
  .p-index-salon .salon__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__head {
        width: 84%; } }
  .p-index-salon .salon__list {
    margin-top: 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__list {
        margin-top: 6rem; } }
  .p-index-salon .salon__list-block + .salon__list-block {
    margin-top: 16rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__list-block + .salon__list-block {
        margin-top: 6rem; } }
  .p-index-salon .salon__list-photo {
    display: flex; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__list-photo {
        display: block; } }
    .p-index-salon .salon__list-photo ._sub {
      display: flex; }
  .p-index-salon .salon__list-info {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    flex-direction: row-reverse;
    column-gap: 9rem;
    margin-top: 12rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__list-info {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__list-info {
        display: block;
        margin-top: 6rem; } }
  .p-index-salon .salon__list-info-bundle {
    flex: 1; }
  .p-index-salon .salon__list-info-logo {
    display: flex;
    align-items: flex-end;
    column-gap: 3rem; }
    .p-index-salon .salon__list-info-logo ._photo {
      width: 20rem;
      height: 9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #EBEBDE; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__list-info-logo ._photo {
          width: 47.5%;
          height: 8rem; } }
    .p-index-salon .salon__list-info-logo ._photo img {
      width: 11rem; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__list-info-logo ._photo img {
          width: 8rem; } }
    .p-index-salon .salon__list-info-logo ._label {
      font-size: var(--font-size-16); }
  .p-index-salon .salon__list-info-data {
    margin-top: 5rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__list-info-data {
        margin-top: 4rem; } }
    .p-index-salon .salon__list-info-data dl {
      display: flex;
      background-image: linear-gradient(to right, #bababa 50%, transparent 50%);
      background-size: 2.6rem 1px;
      background-repeat: repeat-x;
      background-position: left bottom;
      padding-bottom: .8rem; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__list-info-data dl {
          display: block;
          background-size: 1.8rem 1px;
          padding-bottom: 1.2rem; } }
    .p-index-salon .salon__list-info-data dl + dl {
      margin-top: 1.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__list-info-data dl + dl {
          margin-top: 2rem; } }
    .p-index-salon .salon__list-info-data dt {
      width: 12.5rem;
      font-size: var(--font-size-16);
      line-height: var(--line-height-s); }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__list-info-data dt {
          width: 100%; } }
    .p-index-salon .salon__list-info-data dd {
      flex: 1;
      font-size: var(--font-size-16);
      line-height: var(--line-height-s); }
  .p-index-salon .salon__list-info-map {
    width: 47.5%; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__list-info-map {
        width: 100%;
        margin-top: 5rem; } }
    .p-index-salon .salon__list-info-map iframe {
      width: 100%;
      height: 100%; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__list-info-map iframe {
          height: 45rem; } }

/* ==========================================================================
   #calendar
========================================================================== */
.p-index-calendar .calendar__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-calendar .calendar__head {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-calendar .calendar__head {
      margin-top: 7rem; } }
  .p-index-calendar .calendar__head ._txt {
    font-size: var(--font-size-18);
    line-height: var(--line-height-s);
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-calendar .calendar__head ._txt {
        margin-top: 4rem; } }
  .p-index-calendar .calendar__head ._min {
    font-size: var(--font-size-14);
    margin-top: 1.5rem; }
  .p-index-calendar .calendar__head ._min span {
    color: #a9a898; }
.p-index-calendar .calendar__col {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6rem;
  margin-top: 5rem; }
  @media screen and (max-width: 799px) {
    .p-index-calendar .calendar__col {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-calendar .calendar__col {
      grid-template-columns: repeat(1, 1fr);
      margin-top: 4rem; } }
.p-index-calendar .calendar__col-item ._cap {
  font-size: var(--font-size-18); }
.p-index-calendar .calendar__col-item ._cal {
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .p-index-calendar .calendar__col-item ._cal {
      margin-top: 1.3rem; } }
.p-index-calendar .calendar__col-item .cal_ui {
  display: none; }
.p-index-calendar .calendar__col-item .cal_base p {
  font-size: var(--font-size-15); }
.p-index-calendar .calendar__col-item .cal_main {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-left: solid var(--color-line1) 1px;
  border-bottom: solid var(--color-line1) 1px;
  margin-top: 2rem; }
  @media screen and (max-width: 799px) {
    .p-index-calendar .calendar__col-item .cal_main {
      margin-top: 1rem; } }
.p-index-calendar .calendar__col-item .cal_main li {
  font-size: var(--font-size-14);
  border-top: solid var(--color-line1) 1px;
  border-right: solid var(--color-line1) 1px;
  letter-spacing: 0;
  padding: .8rem 0 4rem .8rem; }
  @media screen and (max-width: 799px) {
    .p-index-calendar .calendar__col-item .cal_main li {
      padding: .6rem 0 2.5rem .6rem; } }
.p-index-calendar .calendar__col-item .cal_main .cal_headline {
  background: var(--color-bg1);
  padding: 1rem 0 1rem 0;
  text-align: center; }
.p-index-calendar .calendar__col-item .cal_main .sun,
.p-index-calendar .calendar__col-item .cal_main .holiday {
  background: #a9a898;
  color: var(--color-white); }
@media screen and (max-width: 799px) {
  .p-index-calendar .calendar__col-item + .calendar__col-item {
    margin-top: 3rem; } }
