/* ==========================================================================
 *
 * root scss
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #000000;
  --color-white: #FFFFFF; }

/* ==========================================================================
   font-size
========================================================================== */
:root {
  --font-size-10: 1rem;
  --font-size-11: 1.1rem;
  --font-size-12: 1.2rem;
  --font-size-13: 1.3rem;
  --font-size-14: 1.4rem;
  --font-size-15: 1.5rem;
  --font-size-16: 1.6rem;
  --font-size-17: 1.7rem;
  --font-size-18: 1.8rem;
  --font-size-19: 1.9rem;
  --font-size-20: 2rem;
  --font-size-22: 2.2rem;
  --font-size-24: 2.4rem;
  --font-size-26: 2.6rem;
  --font-size-28: 2.8rem;
  --font-size-30: 3.0rem;
  --font-size-32: 3.2rem;
  --font-size-34: 3.4rem;
  --font-size-36: 3.6rem; }

@media screen and (max-width: 799px) {
  :root {
    --font-size-11: 1rem;
    --font-size-12: 1.1rem;
    --font-size-13: 1.2rem;
    --font-size-14: 1.3rem;
    --font-size-15: 1.4rem;
    --font-size-16: 1.5rem;
    --font-size-17: 1.6rem;
    --font-size-18: 1.6rem;
    --font-size-19: 1.7rem;
    --font-size-20: 1.8rem;
    --font-size-22: 1.8rem;
    --font-size-24: 2rem;
    --font-size-26: 2rem;
    --font-size-28: 2.2rem;
    --font-size-30: 2.4rem;
    --font-size-32: 2.6rem;
    --font-size-34: 2.8rem;
    --font-size-36: 3rem; } }
/* ==========================================================================
   font-family
========================================================================== */
:root {
  --font-family-main: YakuHanMPs, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  --font-family-sans: YakuHanMPs, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  --font-family-serif: "Cormorant", 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; }

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

/* ==========================================================================
   width
========================================================================== */
:root {
  --container-s: 96rem;
  --container-m: 132rem;
  --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, top, bottom;
  transition-duration: .3s;
  transition-timing-function: ease; }

.l-toggle.js-active span:nth-child(1) {
  top: .3rem;
  transform: rotate(15deg); }
.l-toggle.js-active span:nth-child(2) {
  bottom: .2rem;
  transform: rotate(-15deg); }

/* ==========================================================================
   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; }
    .c-accordion .accordion__label::before {
      position: absolute;
      content: '+';
      top: 0;
      right: 0; }
  .c-accordion .accordion__conte {
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    transition: 0.4s ease;
    opacity: 0; }
  .c-accordion .accordion__input:checked ~ .accordion__conte {
    height: auto;
    opacity: 1; }
  .c-accordion .accordion__input:checked ~ .accordion__label::before {
    content: '-'; }

/* ==========================================================================
 *
 * btn scss
 *
========================================================================== */
/* ==========================================================================
   btn1
========================================================================== */
.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;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal; }

h1, h2, h3, h4, h5, p, li, dt, dd {
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: 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-tbBlock {
  display: none; }
  @media screen and (max-width: 799px) {
    .c-tbBlock {
      display: block; } }

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

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

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

.c-head ._cap {
  font-size: 4.4rem; }
  @media screen and (max-width: 799px) {
    .c-head ._cap {
      font-size: 3.2rem; } }
.c-head ._label {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-28);
  margin-top: 1.5rem;
  margin-left: .5rem; }
  @media screen and (max-width: 799px) {
    .c-head ._label {
      font-size: 1.8rem; } }

/* ==========================================================================
   #404
========================================================================== */
.p-404-hero {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 24rem; }
  @media screen and (max-width: 799px) {
    .p-404-hero {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-404-hero {
      margin-top: 14rem; } }
  .p-404-hero h1 {
    font-size: 4.6rem; }
    @media screen and (max-width: 799px) {
      .p-404-hero h1 {
        font-size: 3.4rem; } }
  .p-404-hero p {
    font-size: var(--font-size-15);
    margin-top: 1rem; }

.p-404-content {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  margin-top: 8rem; }
  @media screen and (max-width: 799px) {
    .p-404-content {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-404-content {
      margin-top: 5rem; } }
  .p-404-content p {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-15);
    line-height: var(--line-height-m); }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 4.2rem 6rem 0 6rem;
  z-index: var(--z-index-header); }
  @media screen and (max-width: 799px) {
    .l-header {
      padding: 3rem 0 0 4%; } }
  @media screen and (max-width: 579px) {
    .l-header {
      padding: 2rem 0 0 4%; } }
  .l-header .header__logo img {
    width: 18rem;
    height: 8.3rem; }
    @media screen and (max-width: 799px) {
      .l-header .header__logo img {
        width: 12rem;
        height: 5.6rem; } }
  @media screen and (max-width: 799px) {
    .l-header .header__nav {
      display: none; } }
  .l-header .header__nav ul {
    display: flex;
    column-gap: 4rem; }
  .l-header .header__nav li {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-15);
    letter-spacing: .1em; }
  .l-header .header__nav a {
    transition: opacity .3s; }
    .l-header .header__nav a:hover {
      opacity: .5; }

/* ==========================================================================
   #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: 4rem;
    height: .6rem; }
  .l-toggle span {
    background: var(--color-black);
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px; }
  .l-toggle span:nth-child(1) {
    top: 0; }
  .l-toggle span:nth-child(2) {
    bottom: 0; }

/* ==========================================================================
   #sitemap
========================================================================== */
.l-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-index-sitemap); }
  @media screen and (min-width: 800px) {
    .l-sitemap {
      display: none; } }
  .l-sitemap .sitemap__nav li {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center; }
    .l-sitemap .sitemap__nav li span {
      display: block;
      font-family: var(--font-family-serif);
      font-size: 1.4rem;
      letter-spacing: .1em; }
    .l-sitemap .sitemap__nav li + li {
      margin-top: 1.5rem; }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 799px) {
    .l-contact {
      width: 100%;
      max-width: 40rem; } }
  @media screen and (max-width: 579px) {
    .l-contact {
      right: .6rem;
      bottom: .6rem;
      width: calc(100% - 1.2rem); } }
  .l-contact .contact__btn {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
    background: #65CC65;
    border-radius: 1.5rem;
    padding: 2.5rem 4rem 2.5rem 2.5rem;
    transition: background .3s; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__btn {
        justify-content: center;
        padding: 0; } }
    .l-contact .contact__btn:hover {
      background: #41c541; }
  .l-contact .contact__btn-icon svg {
    width: 5.5rem;
    height: 5.5rem;
    fill: var(--color-white); }
    @media screen and (max-width: 799px) {
      .l-contact .contact__btn-icon svg {
        width: 4rem;
        height: 4rem; } }
  .l-contact .contact__btn-note {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .l-contact .contact__btn-note {
        flex: none;
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 1.2rem; } }
    .l-contact .contact__btn-note p {
      color: var(--color-white);
      font-family: var(--font-family-sans); }
    .l-contact .contact__btn-note ._label {
      font-size: var(--font-size-18);
      font-weight: 600;
      display: block; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__btn-note ._label {
          display: inline;
          font-size: 1.8rem; } }
    .l-contact .contact__btn-note ._cap {
      font-size: var(--font-size-28);
      font-weight: 600;
      line-height: 1.4; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__btn-note ._cap {
          font-size: 1.8rem; } }
    .l-contact .contact__btn-note ._txt {
      border-top: solid var(--color-white) 1px;
      font-size: var(--font-size-15);
      margin-top: 1rem;
      padding-top: 1.5rem; }
      @media screen and (max-width: 799px) {
        .l-contact .contact__btn-note ._txt {
          border-top: none;
          border-bottom: solid var(--color-white) 1px;
          margin-top: 0;
          padding-bottom: 0;
          margin-bottom: .8rem;
          padding-bottom: .9rem; } }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  background: #25262A;
  margin-top: 16rem;
  padding: 8rem 0; }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 7rem;
      padding: 6rem 0; } }
  .l-footer .footer__col {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col {
        display: block; } }
  .l-footer .footer__col-logo img {
    width: 20rem;
    height: 9.2rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-logo img {
        width: 14rem;
        height: 6.5rem; } }
  @media screen and (max-width: 799px) {
    .l-footer .footer__col-nav {
      margin-top: 6rem; } }
  .l-footer .footer__col-nav ul {
    display: flex;
    column-gap: 4rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__col-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 2rem;
        column-gap: 0; } }
  .l-footer .footer__col-nav li {
    font-family: var(--font-family-serif);
    font-size: var(--font-size-16);
    letter-spacing: .1em; }
  .l-footer .footer__col-nav a {
    color: var(--color-white);
    transition: opacity .3s; }
    .l-footer .footer__col-nav a:hover {
      opacity: .5; }
  .l-footer .footer__copy {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__copy {
        width: 84%; } }
    .l-footer .footer__copy ._copy {
      color: var(--color-white);
      font-family: var(--font-family-serif);
      font-size: var(--font-size-14);
      letter-spacing: .1em;
      text-align: right; }
      @media screen and (max-width: 799px) {
        .l-footer .footer__copy ._copy {
          text-align: left; } }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #hero
========================================================================== */
.p-index-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding-top: 10rem; }
  @media screen and (max-width: 799px) {
    .p-index-hero {
      padding-top: 16rem; } }
  .p-index-hero .hero__head {
    position: absolute;
    left: 8%;
    bottom: 10rem;
    z-index: 1; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__head {
        top: 12rem;
        left: 5%;
        bottom: auto;
        background: rgba(0, 0, 0, 0.75);
        padding: 2.5rem 5% 2rem; } }
    @media screen and (max-width: 579px) {
      .p-index-hero .hero__head {
        top: 9.5rem; } }
    .p-index-hero .hero__head h1 {
      font-size: 6rem; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__head h1 {
          color: var(--color-white);
          font-size: 2.6rem; } }
    .p-index-hero .hero__head p {
      font-size: 2rem;
      line-height: var(--line-height-l);
      margin-top: 3.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__head p {
          color: var(--color-white);
          font-size: 1.5rem;
          margin-top: 1.2rem;
          line-height: var(--line-height-m); } }
  .p-index-hero .hero__body {
    width: 77.5%;
    height: 100%;
    margin-left: auto; }
    @media screen and (max-width: 799px) {
      .p-index-hero .hero__body {
        width: 82.5%; } }
    .p-index-hero .hero__body img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 0; }
      @media screen and (max-width: 799px) {
        .p-index-hero .hero__body img {
          object-position: 80% 50%; } }

/* ==========================================================================
   #message
========================================================================== */
.p-index-message .message__check {
  background: #F7F7F7;
  padding: 18rem 0 0; }
  @media screen and (max-width: 799px) {
    .p-index-message .message__check {
      padding: 7rem 0 4rem; } }
.p-index-message .message__check-inner {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  text-align: center; }
  @media screen and (max-width: 799px) {
    .p-index-message .message__check-inner {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-message .message__check-inner {
      width: 96%; } }
  .p-index-message .message__check-inner ._txt {
    font-size: var(--font-size-34);
    line-height: var(--line-height-m); }
    @media screen and (max-width: 799px) {
      .p-index-message .message__check-inner ._txt {
        font-size: 1.8rem; } }
  .p-index-message .message__check-inner ._large {
    display: block;
    color: #DE5050;
    font-size: 4.4rem;
    margin: 1.5rem 0; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__check-inner ._large {
        font-size: 2.2rem;
        line-height: 1.6; } }
  .p-index-message .message__check-inner ._btn {
    display: inline-block;
    border-bottom: solid var(--color-black) 1px;
    font-family: var(--font-family-sans);
    font-size: var(--font-size-20);
    margin-top: 8rem;
    transition: opacity .3s; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__check-inner ._btn {
        font-size: 1.5rem;
        margin-top: 4rem; } }
    .p-index-message .message__check-inner ._btn:hover {
      opacity: .5; }
.p-index-message .message__col {
  display: flex;
  align-items: center;
  column-gap: 12rem;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-message .message__col {
      position: relative;
      display: block;
      margin-top: 7rem;
      padding-top: 12rem; } }
.p-index-message .message__col-photo {
  width: 47.5%; }
  @media screen and (max-width: 799px) {
    .p-index-message .message__col-photo {
      width: 100%; } }
.p-index-message .message__col-conte {
  flex: 1;
  padding-right: 8%; }
  @media screen and (max-width: 799px) {
    .p-index-message .message__col-conte {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      margin-top: 5rem;
      padding-right: 0; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-message .message__col-conte {
      width: 84%; } }

  @media screen and (max-width: 799px) {
    .p-index-message .message__col-conte .c-head {
      position: absolute;
      top: 0;
      left: 8%; } }
.p-index-message .message__col-conte-note {
  margin-top: 6rem; }
  @media screen and (max-width: 799px) {
    .p-index-message .message__col-conte-note {
      margin-top: 0; } }
  .p-index-message .message__col-conte-note ._cap {
    display: inline;
    background: linear-gradient(transparent 50%, #FFF2F1 0%);
    font-size: var(--font-size-34);
    line-height: var(--line-height-s); }
  .p-index-message .message__col-conte-note ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: var(--font-family-sans);
    font-size: var(--font-size-18);
    line-height: var(--line-height-l);
    margin-top: 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__col-conte-note ._txt {
        margin-top: 2rem; } }
.p-index-message .message__offer {
  position: relative;
  width: fit-content;
  margin-top: 20rem;
  margin-left: auto;
  margin-right: auto;
  padding: 9rem 0;
  text-align: center; }
  @media screen and (max-width: 799px) {
    .p-index-message .message__offer {
      margin: 0 auto;
      width: 88%;
      max-width: var(--container-m);
      margin-top: 5rem;
      padding: 3rem 0; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-message .message__offer {
      width: 84%; } }

  .p-index-message .message__offer::before, .p-index-message .message__offer::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 80%;
    height: 100%;
    border-radius: 100%;
    background: #FEAAA3;
    opacity: .15;
    z-index: -1; }
    @media screen and (max-width: 799px) {
      .p-index-message .message__offer::before, .p-index-message .message__offer::after {
        width: 100%; } }
  .p-index-message .message__offer::before {
    transform: translate(-50%, -50%) rotate(3deg); }
  .p-index-message .message__offer::after {
    transform: translate(-48%, -50%) rotate(-1deg); }
  .p-index-message .message__offer ._txt {
    display: inline;
    border-bottom: solid var(--color-black) 1px;
    font-size: var(--font-size-26);
    line-height: var(--line-height-m); }

/* ==========================================================================
   #set
========================================================================== */
.p-index-set {
  margin-top: 18rem; }
  @media screen and (max-width: 799px) {
    .p-index-set {
      margin-top: 7rem; } }
  .p-index-set .set__curve img {
    width: 100%; }
  .p-index-set .set__head {
    background: #F0F0F0;
    padding: 4rem 0 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__head {
        padding: 7rem 0 0; } }
  .p-index-set .set__head-inner {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-l);
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__head-inner {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-set .set__head-inner {
        text-align: left; } }
    .p-index-set .set__head-inner ._target {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-22);
      margin-top: 6rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__head-inner ._target {
          margin-top: 5rem; } }
      .p-index-set .set__head-inner ._target span {
        background-image: radial-gradient(circle at center, #000 20%, transparent 20%);
        background-position: 2% 0;
        background-repeat: repeat-x;
        background-size: 1em .5em;
        padding-top: .8em; }
    .p-index-set .set__head-inner ._txt {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      margin-top: 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__head-inner ._txt {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word; } }
  .p-index-set .set__body-block {
    background: #F0F0F0;
    padding: 12rem 0; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__body-block {
        padding: 6rem 0; } }
    .p-index-set .set__body-block:nth-child(2n) {
      background: #F7F7F7; }
    .p-index-set .set__body-block + .set__body-block {
      margin-top: 14rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__body-block + .set__body-block {
          margin-top: 5rem; } }
  .p-index-set .set__body-block-col {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 10rem;
    padding-left: 8%; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__body-block-col {
        display: block;
        padding-left: 0; } }
    .p-index-set .set__body-block-col .col-photo {
      flex: 1; }
      .p-index-set .set__body-block-col .col-photo img {
        width: 100%; }
    .p-index-set .set__body-block-col .col-note {
      width: 45%; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__body-block-col .col-note {
          margin: 0 auto;
          width: 88%;
          max-width: var(--container-m);
          margin-top: 4rem; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-set .set__body-block-col .col-note {
      width: 84%; } }

      .p-index-set .set__body-block-col .col-note ._cap {
        font-size: var(--font-size-36);
        line-height: var(--line-height-s);
        margin-bottom: 3rem; }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-col .col-note ._cap {
            font-size: 2.6rem;
            margin-bottom: 2rem; } }
      .p-index-set .set__body-block-col .col-note ._txt {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-family: var(--font-family-sans);
        font-size: var(--font-size-16);
        line-height: var(--line-height-m);
        margin-top: 2rem; }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-col .col-note ._txt {
            margin-top: 1.5rem; } }
      .p-index-set .set__body-block-col .col-note ._bold {
        font-weight: 600; }
      .p-index-set .set__body-block-col .col-note ._ul {
        text-decoration: underline; }
      .p-index-set .set__body-block-col .col-note ul {
        margin-top: 2rem; }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-col .col-note ul {
            margin-top: 1.5rem; } }
      .p-index-set .set__body-block-col .col-note li {
        text-align: justify;
        word-break: break-all;
        text-justify: inter-character;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-family: var(--font-family-sans);
        font-size: var(--font-size-16);
        line-height: var(--line-height-m); }
        .p-index-set .set__body-block-col .col-note li:nth-child(2) {
          font-size: var(--font-size-20);
          font-weight: 600; }
  .p-index-set .set__body-block-menu {
    width: 92%;
    margin-left: 4%;
    background: var(--color-white);
    border-radius: 2rem;
    margin-top: 12rem;
    padding: 10rem 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-set .set__body-block-menu {
        width: 96%;
        margin-left: 2%;
        margin-top: 6rem;
        padding: 4.5rem 8% 4rem; } }
    .p-index-set .set__body-block-menu .menu-item {
      display: flex;
      align-items: flex-start;
      column-gap: 10rem; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__body-block-menu .menu-item {
          display: block; } }
      .p-index-set .set__body-block-menu .menu-item + .menu-item {
        border-top: solid #BEBEBE 1px;
        margin-top: 10rem;
        padding-top: 10rem; }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-menu .menu-item + .menu-item {
            margin-top: 5rem;
            padding-top: 5rem; } }
    .p-index-set .set__body-block-menu .menu-item-photo {
      flex: 1;
      position: relative; }
      .p-index-set .set__body-block-menu .menu-item-photo img {
        width: 100%; }
      .p-index-set .set__body-block-menu .menu-item-photo ._lank {
        position: absolute;
        right: 1.5rem;
        bottom: 1.5rem;
        width: 11rem;
        height: 11rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #E85F3E;
        border-radius: 100%; }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-menu .menu-item-photo ._lank {
            right: 1rem;
            bottom: 1rem;
            width: 8.6rem;
            height: 8.6rem; } }
      .p-index-set .set__body-block-menu .menu-item-photo ._label {
        position: absolute;
        top: 3.8rem;
        left: 1.4rem;
        color: var(--color-white);
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0; }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-menu .menu-item-photo ._label {
            top: 2.6rem;
            left: 1rem; } }
      .p-index-set .set__body-block-menu .menu-item-photo ._num {
        color: var(--color-white);
        font-family: "Times New Roman", Times, "serif";
        font-size: 3rem;
        letter-spacing: 0; }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-menu .menu-item-photo ._num {
            font-size: 2.6rem; } }
        .p-index-set .set__body-block-menu .menu-item-photo ._num span {
          font-size: 6.6rem; }
          @media screen and (max-width: 799px) {
            .p-index-set .set__body-block-menu .menu-item-photo ._num span {
              font-size: 5.2rem; } }
    .p-index-set .set__body-block-menu .menu-item-conte {
      width: 50%; }
      @media screen and (max-width: 799px) {
        .p-index-set .set__body-block-menu .menu-item-conte {
          width: 100%;
          margin-top: 3.5rem; } }
      .p-index-set .set__body-block-menu .menu-item-conte ._cap {
        font-size: var(--font-size-26);
        line-height: var(--line-height-s); }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-menu .menu-item-conte ._cap {
            font-size: 2.4rem; } }
      .p-index-set .set__body-block-menu .menu-item-conte ._min {
        font-family: var(--font-family-sans);
        font-size: var(--font-size-14);
        line-height: var(--line-height-m);
        margin-top: 2rem; }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-menu .menu-item-conte ._min {
            margin-top: 1.5rem; } }
      .p-index-set .set__body-block-menu .menu-item-conte ._price {
        font-family: var(--font-family-sans);
        font-size: var(--font-size-18);
        margin-top: 2rem;
        text-align: right; }
        .p-index-set .set__body-block-menu .menu-item-conte ._price span {
          color: #FF5252;
          font-family: "Times New Roman", Times, "serif";
          font-size: 5.6rem; }
          @media screen and (max-width: 799px) {
            .p-index-set .set__body-block-menu .menu-item-conte ._price span {
              font-size: 4.6rem; } }
      .p-index-set .set__body-block-menu .menu-item-conte ._note {
        background: #F7F7F7;
        margin-top: 2.5rem;
        padding: 3rem; }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-menu .menu-item-conte ._note {
            margin-top: 2rem;
            padding: 2rem; } }
        .p-index-set .set__body-block-menu .menu-item-conte ._note p {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          font-family: var(--font-family-sans);
          font-size: var(--font-size-15);
          line-height: var(--line-height-m); }
          .p-index-set .set__body-block-menu .menu-item-conte ._note p + p {
            margin-top: 1rem; }
        .p-index-set .set__body-block-menu .menu-item-conte ._note ._ul {
          text-decoration: underline; }
        .p-index-set .set__body-block-menu .menu-item-conte ._note ._bold {
          font-weight: 600; }
        .p-index-set .set__body-block-menu .menu-item-conte ._note ul {
          margin: 3rem 0 2.5rem; }
          @media screen and (max-width: 799px) {
            .p-index-set .set__body-block-menu .menu-item-conte ._note ul {
              margin: 1.5rem 0 1rem; } }
          .p-index-set .set__body-block-menu .menu-item-conte ._note ul li {
            font-size: var(--font-size-18); }
            .p-index-set .set__body-block-menu .menu-item-conte ._note ul li + li {
              margin-top: 1rem; }
      .p-index-set .set__body-block-menu .menu-item-conte ._link {
        width: 100%;
        max-width: 62rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: .8rem;
        grid-row-gap: .8rem;
        margin-top: 4rem; }
        @media screen and (max-width: 799px) {
          .p-index-set .set__body-block-menu .menu-item-conte ._link {
            max-width: 30rem;
            grid-template-columns: repeat(1, 1fr);
            margin-top: 3.5rem; } }
        .p-index-set .set__body-block-menu .menu-item-conte ._link a {
          height: 6.6rem;
          display: flex;
          align-items: center;
          border-radius: 3.3rem;
          color: var(--color-white);
          padding: 0 3.5rem;
          transition: background .3s; }
          .p-index-set .set__body-block-menu .menu-item-conte ._link a._line {
            background: #65CC65; }
            .p-index-set .set__body-block-menu .menu-item-conte ._link a._line:hover {
              background: #41c541; }
          .p-index-set .set__body-block-menu .menu-item-conte ._link a._hpb {
            background: #E25050; }
            .p-index-set .set__body-block-menu .menu-item-conte ._link a._hpb:hover {
              background: #dd3535; }
          .p-index-set .set__body-block-menu .menu-item-conte ._link a._tel {
            background: #797979; }
            .p-index-set .set__body-block-menu .menu-item-conte ._link a._tel:hover {
              background: #676666; }
        .p-index-set .set__body-block-menu .menu-item-conte ._link svg {
          width: 3rem;
          height: 3rem;
          fill: var(--color-white); }
        .p-index-set .set__body-block-menu .menu-item-conte ._link ._label {
          font-family: var(--font-family-sans);
          font-size: var(--font-size-16);
          font-weight: 600;
          text-align: left;
		  padding-left: 2rem;}
        .p-index-set .set__body-block-menu .menu-item-conte ._link ._min {
          font-size: var(--font-size-12);
          letter-spacing: 0; }

/* ==========================================================================
   #menu
========================================================================== */
.p-index-menu {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-menu {
      margin-top: 7rem; } }
  .p-index-menu .menu__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__head {
        width: 84%; } }
    .p-index-menu .menu__head ._txt {
      font-size: var(--font-size-15);
      margin-top: 3rem; }
  .p-index-menu .menu__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__body {
        margin-top: 6rem; } }
  .p-index-menu .menu__body-block + .menu__body-block {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__body-block + .menu__body-block {
        margin-top: 5rem; } }
  .p-index-menu .menu__body-block-cap ._cap {
    font-size: var(--font-size-18); }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__body-block-cap ._cap {
        font-size: 1.4rem; } }
    .p-index-menu .menu__body-block-cap ._cap span {
      font-family: var(--font-family-serif);
      font-size: var(--font-size-36);
      margin-right: 1.5rem; }
  .p-index-menu .menu__body-block-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 6rem;
    grid-row-gap: 4rem;
    margin-top: 3rem; }
    @media screen and (max-width: 799px) {
      .p-index-menu .menu__body-block-list {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 2.5rem; } }
    .p-index-menu .menu__body-block-list dl {
      display: flex;
      column-gap: 2rem;
      border-bottom: solid #C9C9C9 1px;
      padding-bottom: 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-menu .menu__body-block-list dl {
          column-gap: 1rem; } }
    .p-index-menu .menu__body-block-list dt {
      flex: 1; }
      .p-index-menu .menu__body-block-list dt ._name {
        font-family: var(--font-family-sans);
        font-size: var(--font-size-16);
        line-height: var(--line-height-m); }
        @media screen and (max-width: 799px) {
          .p-index-menu .menu__body-block-list dt ._name {
            line-height: var(--line-height-s); } }
      .p-index-menu .menu__body-block-list dt ._txt {
        color: #8B8B8B;
        font-family: var(--font-family-sans);
        font-size: var(--font-size-13);
        line-height: var(--line-height-m); }
        @media screen and (max-width: 799px) {
          .p-index-menu .menu__body-block-list dt ._txt {
            font-size: 1.1rem;
            margin-top: .5rem; } }
    .p-index-menu .menu__body-block-list dd {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-16);
      line-height: var(--line-height-m);
      text-align: right; }

/* ==========================================================================
   #sns
========================================================================== */
.p-index-sns {
  background: #F7F7F7;
  margin-top: 16rem;
  padding: 16rem 0; }
  @media screen and (max-width: 799px) {
    .p-index-sns {
      margin-top: 7rem;
      padding: 6rem 0; } }
  .p-index-sns .sns__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-sns .sns__head {
        width: 84%; } }
    .p-index-sns .sns__head .c-head {
      text-align: center; }
  .p-index-sns .sns__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    margin-top: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-sns .sns__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-sns .sns__body {
        margin-top: 4rem; } }
    .p-index-sns .sns__body ._dammy {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-column-gap: 1rem;
      grid-row-gap: 1rem; }
      @media screen and (max-width: 799px) {
        .p-index-sns .sns__body ._dammy {
          grid-template-columns: repeat(2, 1fr); } }
      .p-index-sns .sns__body ._dammy li {
        background: #EAEAEA;
        padding-top: 100%; }
  .p-index-sns .sns__foot {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-sns .sns__foot {
        margin-top: 5rem; } }
    .p-index-sns .sns__foot a {
      width: 100%;
      max-width: 32.5rem;
      height: 6.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #E85F3E;
      border-radius: 3.3rem;
      color: var(--color-white);
      font-family: var(--font-family-sans);
      font-size: var(--font-size-16);
      font-weight: 600;
      margin: 0 auto;
      transition: background .3s; }
      @media screen and (max-width: 799px) {
        .p-index-sns .sns__foot a {
          max-width: 27.5rem;
          height: 6.2rem; } }
      .p-index-sns .sns__foot a:hover {
        background: #e6421a; }

/* ==========================================================================
   #salon
========================================================================== */
.p-index-salon {
  background: #F7F7F7; }
  .p-index-salon .salon__col {
    display: flex;
    align-items: flex-end; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__col {
        display: block; } }
  .p-index-salon .salon__col-conte {
    width: 52.5%;
    background: var(--color-white);
    padding: 18rem 6% 0 8%; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__col-conte {
        width: 92%;
        padding: 6rem 8% 14rem; } }
  .p-index-salon .salon__col-conte-note {
    margin-top: 8rem; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__col-conte-note {
        margin-top: 4rem; } }
    .p-index-salon .salon__col-conte-note ._cap {
      font-size: var(--font-size-26);
      line-height: var(--line-height-m);
      margin-bottom: 3rem; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__col-conte-note ._cap {
          margin-bottom: 2rem; } }
    .p-index-salon .salon__col-conte-note ._txt {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      margin-top: 2rem; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__col-conte-note ._txt {
          text-align: justify;
          word-break: break-all;
          text-justify: inter-character;
          word-wrap: break-word;
          overflow-wrap: break-word;
          margin-top: 1.5rem; } }
    .p-index-salon .salon__col-conte-note img {
      width: 12rem;
      height: 4.1rem;
      margin-top: 4rem; }
      @media screen and (max-width: 799px) {
        .p-index-salon .salon__col-conte-note img {
          margin-top: 3rem; } }
  .p-index-salon .salon__col-photo {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-index-salon .salon__col-photo {
        width: 92%;
        margin-top: -8rem;
        margin-left: auto; } }
    .p-index-salon .salon__col-photo img {
      width: 100%; }

/* ==========================================================================
   #staff
========================================================================== */
.p-index-staff {
  background: #F0F0F0;
  margin-top: 16rem;
  padding: 16rem 0; }
  @media screen and (max-width: 799px) {
    .p-index-staff {
      margin-top: 7rem;
      padding: 6rem 0; } }
  .p-index-staff .staff__col {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    column-gap: 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__col {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__col {
        display: block; } }
  .p-index-staff .staff__head {
    flex: 1; }
  .p-index-staff .staff__head-inner {
    position: sticky;
    top: 12rem; }
    .p-index-staff .staff__head-inner ._txt {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      margin-top: 3rem;
      text-decoration: underline; }
  .p-index-staff .staff__body {
    width: 47.5%; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__body {
        width: 100%;
        margin-top: 5rem; } }
  .p-index-staff .staff__body-item + .staff__body-item {
    margin-top: 10rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__body-item + .staff__body-item {
        margin-top: 6rem; } }
  .p-index-staff .staff__body-item-info {
    display: flex;
    align-items: flex-end;
    column-gap: 6rem; }
    @media screen and (max-width: 579px) {
      .p-index-staff .staff__body-item-info {
        display: block; } }
    .p-index-staff .staff__body-item-info .info__photo {
      width: 45%; }
      @media screen and (max-width: 579px) {
        .p-index-staff .staff__body-item-info .info__photo {
          width: 60%; } }
      .p-index-staff .staff__body-item-info .info__photo img {
        width: 100%; }
    .p-index-staff .staff__body-item-info .info__conte {
      flex: 1; }
      @media screen and (max-width: 579px) {
        .p-index-staff .staff__body-item-info .info__conte {
          position: relative;
          margin-top: 3rem;
          margin-top: -4rem;
          padding-top: 8rem; } }
    .p-index-staff .staff__body-item-info .info__conte-name {
      font-size: var(--font-size-24); }
      .p-index-staff .staff__body-item-info .info__conte-name span {
        font-family: var(--font-family-serif);
        font-size: var(--font-size-15);
        margin-left: 1.5rem; }
    .p-index-staff .staff__body-item-info .info__conte-age {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      margin-top: 2rem; }
      @media screen and (max-width: 579px) {
        .p-index-staff .staff__body-item-info .info__conte-age {
          margin-top: 1.5rem; } }
    .p-index-staff .staff__body-item-info .info__conte-link {
      margin-top: 5rem; }
      @media screen and (max-width: 579px) {
        .p-index-staff .staff__body-item-info .info__conte-link {
          margin-top: 3rem; } }
      .p-index-staff .staff__body-item-info .info__conte-link a {
        width: 100%;
        max-width: 27.5rem;
        height: 5.8rem;
        display: flex;
        align-items: center;
        border-radius: 2.9rem;
        padding: 0 3.25rem;
        transition: background .3s; }
        .p-index-staff .staff__body-item-info .info__conte-link a._line {
          background: #65CC65; }
          .p-index-staff .staff__body-item-info .info__conte-link a._line:hover {
            background: #41c541; }
        .p-index-staff .staff__body-item-info .info__conte-link a._hpb {
          background: #E25050; }
          .p-index-staff .staff__body-item-info .info__conte-link a._hpb:hover {
            background: #dd3535; }
        .p-index-staff .staff__body-item-info .info__conte-link a._tel {
          background: #797979; }
          .p-index-staff .staff__body-item-info .info__conte-link a._tel:hover {
            background: #676666; }
        .p-index-staff .staff__body-item-info .info__conte-link a + a {
          margin-top: .8rem; }
      .p-index-staff .staff__body-item-info .info__conte-link svg {
        width: 2.8rem;
        height: 2.8rem;
        fill: var(--color-white); }
      .p-index-staff .staff__body-item-info .info__conte-link ._label {
        color: var(--color-white);
        font-family: var(--font-family-sans);
        font-size: var(--font-size-14);
        font-weight: 600;
		padding-left: 2rem;}
    .p-index-staff .staff__body-item-info .info__conte-sns {
      width: fit-content;
      display: flex;
      align-items: center;
      margin-top: 2.5rem;
      transition: opacity .3s; }
      @media screen and (max-width: 579px) {
        .p-index-staff .staff__body-item-info .info__conte-sns {
          position: absolute;
          top: 0;
          right: 0;
          display: block;
          margin-top: 0;
          text-align: right; } }
      .p-index-staff .staff__body-item-info .info__conte-sns:hover {
        opacity: .5; }
      .p-index-staff .staff__body-item-info .info__conte-sns svg {
        width: 3rem;
        height: 3rem; }
      .p-index-staff .staff__body-item-info .info__conte-sns ._label {
        font-family: var(--font-family-serif);
        font-size: var(--font-size-15);
        margin-left: 1.5rem; }
        @media screen and (max-width: 799px) {
          .p-index-staff .staff__body-item-info .info__conte-sns ._label {
            display: block;
            margin-left: 0; } }
  .p-index-staff .staff__body-item-note {
    background: var(--color-white);
    margin-top: 4rem;
    padding: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-staff .staff__body-item-note {
        margin-top: 3rem; } }
    .p-index-staff .staff__body-item-note ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      line-height: var(--line-height-m); }
    .p-index-staff .staff__body-item-note ._min {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-family: var(--font-family-sans);
      font-size: 1.3rem;
      line-height: var(--line-height-m);
      margin-top: 1rem; }

/* ==========================================================================
   #about
========================================================================== */
.p-index-about {
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-about {
      margin-top: 7rem; } }
  .p-index-about .about__head {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-about .about__head {
        width: 84%; } }
    .p-index-about .about__head ._txt {
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      line-height: var(--line-height-m);
      margin-top: 3rem; }
  .p-index-about .about__body {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m); }
    @media screen and (max-width: 799px) {
      .p-index-about .about__body {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-about .about__body {
        width: 100%; } }
  .p-index-about .about__body-item {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    column-gap: 8rem;
    margin-top: 10rem;
    width: 90%; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__body-item {
        margin-top: 5rem;
        width: 100%;
        display: block; } }
    .p-index-about .about__body-item::before {
      position: absolute;
      content: '';
      left: 5%;
      bottom: 0;
      width: 85%;
      height: 90%;
      background: #F7F7F7;
      z-index: -1; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__body-item::before {
          left: auto;
          right: 0;
          height: calc(100% - 8rem); } }
    .p-index-about .about__body-item:nth-child(2n) {
      margin-left: 10%; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__body-item:nth-child(2n) {
          margin-left: 0; } }
  .p-index-about .about__body-item-photo {
    width: 47.5%; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__body-item-photo {
        width: 100%;
        padding-left: 8%;
        padding-right: 8%; } }
    .p-index-about .about__body-item-photo img {
      width: 100%; }
  .p-index-about .about__body-item-note {
    flex: 1;
    padding: 8rem 0; }
    @media screen and (max-width: 799px) {
      .p-index-about .about__body-item-note {
        margin: 0 auto;
        width: 88%;
        max-width: var(--container-m);
        padding: 0 0 4rem; } }
  @media screen and (max-width: 799px) and (max-width: 799px) {
    .p-index-about .about__body-item-note {
      width: 84%; } }

    .p-index-about .about__body-item-note ._num {
      color: #FBCFCD;
      font-family: var(--font-family-serif);
      font-size: 8.8rem; }
    .p-index-about .about__body-item-note ._cap {
      font-size: var(--font-size-26);
      line-height: var(--line-height-s);
      margin-top: 1rem; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__body-item-note ._cap {
          font-size: 2.2rem; } }
    .p-index-about .about__body-item-note ._txt {
      text-align: justify;
      word-break: break-all;
      text-justify: inter-character;
      word-wrap: break-word;
      overflow-wrap: break-word;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      line-height: var(--line-height-l);
      margin-top: 2.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-about .about__body-item-note ._txt {
          margin-top: 1.5rem; } }

/* ==========================================================================
   #access
========================================================================== */
.p-index-access {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  display: flex;
  flex-direction: row-reverse;
  column-gap: 8rem;
  margin-top: 16rem; }
  @media screen and (max-width: 799px) {
    .p-index-access {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-access {
      display: block;
      margin-top: 7rem; } }
  .p-index-access .access__info {
    width: 50%;
    padding: 5rem 0; }
    @media screen and (max-width: 799px) {
      .p-index-access .access__info {
        width: 100%;
        padding: 0; } }
    .p-index-access .access__info ._cap {
      font-size: var(--font-size-26); }
      .p-index-access .access__info ._cap span {
        font-size: var(--font-size-20);
        margin-left: 1.5rem; }
    .p-index-access .access__info .access__info-table {
      margin-top: 4rem; }
    .p-index-access .access__info dl {
      display: flex;
      border-top: solid #C9C9C9 1px;
      padding: 2rem 0; }
      .p-index-access .access__info dl:last-child {
        border-bottom: solid #C9C9C9 1px; }
    .p-index-access .access__info dt {
      width: 15rem;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      line-height: var(--line-height-m); }
      @media screen and (max-width: 799px) {
        .p-index-access .access__info dt {
          width: 12rem; } }
    .p-index-access .access__info dd {
      flex: 1;
      font-family: var(--font-family-sans);
      font-size: var(--font-size-15);
      line-height: var(--line-height-m); }
  .p-index-access .access__map {
    flex: 1; }
    @media screen and (max-width: 799px) {
      .p-index-access .access__map {
        margin-top: 6rem; } }
    .p-index-access .access__map iframe {
      width: 100%;
      height: 100%; }
      @media screen and (max-width: 799px) {
        .p-index-access .access__map iframe {
          height: 35rem; } }
